/* 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;
	        -ms-user-select: none;
	    user-select: none;
	  -webkit-user-drag: none;
	}

/* Prevents IE11 from highlighting tiles in blue */

.leaflet-tile::-moz-selection {
	background: transparent;
}

.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,
.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;
	}

.leaflet-container.leaflet-touch-zoom {
	touch-action: pan-x pan-y;
	}

.leaflet-container.leaflet-touch-drag {
	/* Fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	touch-action: pinch-zoom;
}

.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	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;
	box-sizing: border-box;
	z-index: 800;
	}

/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */

.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }

.leaflet-overlay-pane { z-index: 400; }

.leaflet-shadow-pane  { z-index: 500; }

.leaflet-marker-pane  { z-index: 600; }

.leaflet-tooltip-pane   { z-index: 650; }

.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }

.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}

.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}

/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}

.leaflet-top {
	top: 0;
	}

.leaflet-right {
	right: 0;
	}

.leaflet-bottom {
	bottom: 0;
	}

.leaflet-left {
	left: 0;
	}

.leaflet-control {
	float: left;
	clear: both;
	}

.leaflet-right .leaflet-control {
	float: right;
	}

.leaflet-top .leaflet-control {
	margin-top: 10px;
	}

.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}

.leaflet-left .leaflet-control {
	margin-left: 10px;
	}

.leaflet-right .leaflet-control {
	margin-right: 10px;
	}

/* zoom and fade animations */

.leaflet-fade-anim .leaflet-tile {
	will-change: opacity;
	}

.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	transition: opacity 0.2s linear;
	}

.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}

.leaflet-zoom-animated {
	transform-origin: 0 0;
	}

.leaflet-zoom-anim .leaflet-zoom-animated {
	will-change: transform;
	}

.leaflet-zoom-anim .leaflet-zoom-animated {
	transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}

.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}

/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}

.leaflet-grab {
	cursor: -webkit-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:         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: 0;
	}

.leaflet-container a {
	color: #0078A8;
	}

.leaflet-container a.leaflet-active {
	outline: 2px solid orange;
	}

.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}

/* general typography */

.leaflet-container {
	font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
	}

/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}

.leaflet-bar a,
.leaflet-bar a:hover {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}

.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}

.leaflet-bar a:hover {
	background-color: #f4f4f4;
	}

.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}

.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}

.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}

.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	}

.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
	font-size: 22px;
	}

/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}

.leaflet-control-layers-toggle {
	background-image: url('layers.416d91365b44e4b4f477.png');
	width: 36px;
	height: 36px;
	}

.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url('layers-2x.8f2c4d11474275fbc161.png');
	background-size: 26px 26px;
	}

.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}

.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}

.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}

.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}

.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
	}

.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}

.leaflet-control-layers label {
	display: block;
	}

.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */

.leaflet-default-icon-path {
	background-image: url('marker-icon.2b3e1faf89f94a483539.png');
	}

/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.7);
	margin: 0;
	}

.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	}

.leaflet-control-attribution a {
	text-decoration: none;
	}

.leaflet-control-attribution a:hover {
	text-decoration: underline;
	}

.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
	font-size: 11px;
	}

.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}

.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}

.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	font-size: 11px;
	white-space: nowrap;
	overflow: hidden;
	box-sizing: border-box;

	background: #fff;
	background: rgba(255, 255, 255, 0.5);
	}

.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}

.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}

.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}

/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}

.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}

.leaflet-popup-content {
	margin: 13px 19px;
	line-height: 1.4;
	}

.leaflet-popup-content p {
	margin: 18px 0;
	}

.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}

.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;
	transform: rotate(45deg);
	}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}

.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	padding: 4px 4px 0 0;
	border: none;
	text-align: center;
	width: 18px;
	height: 14px;
	font: 16px/14px Tahoma, Verdana, sans-serif;
	color: #c3c3c3;
	text-decoration: none;
	font-weight: bold;
	background: transparent;
	}

.leaflet-container a.leaflet-popup-close-button:hover {
	color: #999;
	}

.leaflet-popup-scrolled {
	overflow: auto;
	border-bottom: 1px solid #ddd;
	border-top: 1px solid #ddd;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	zoom: 1;
	}

.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}

.leaflet-oldie .leaflet-popup-tip-container {
	margin-top: -1px;
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}

/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}

/* Tooltip */

/* Base styles for the element that has a tooltip */

.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}

.leaflet-tooltip.leaflet-clickable {
	cursor: pointer;
	pointer-events: auto;
	}

.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}

.leaflet-tooltip-top {
	margin-top: -6px;
}

.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}

.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}

.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}

.leaflet-tooltip-left {
	margin-left: -6px;
}

.leaflet-tooltip-right {
	margin-left: 6px;
}

.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}

.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}

.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}

/**
 * Swiper 3.4.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * 
 * http://www.idangero.us/swiper/
 * 
 * Copyright 2017, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us/
 * 
 * Licensed under MIT
 * 
 * Released on: March 10, 2017
 */
.swiper-container{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;z-index:1}
.swiper-container-no-flexbox .swiper-slide{float:left}
.swiper-container-vertical>.swiper-wrapper{flex-direction:column}
.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}
.swiper-container-android .swiper-slide,.swiper-wrapper{transform:translate3d(0,0,0)}
.swiper-container-multirow>.swiper-wrapper{-webkit-box-lines:multiple;-moz-box-lines:multiple;flex-wrap:wrap}
.swiper-container-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}
.swiper-slide{-webkit-flex-shrink:0;-ms-flex:0 0 auto;flex-shrink:0;width:100%;height:100%;position:relative}
.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{height:auto}
.swiper-container-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}
.swiper-container .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}
.swiper-wp8-horizontal{touch-action:pan-y}
.swiper-wp8-vertical{touch-action:pan-x}
.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:27px;height:44px;margin-top:-22px;z-index:10;cursor:pointer;background-size:27px 44px;background-position:center;background-repeat:no-repeat}
.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}
.swiper-button-prev,.swiper-container-rtl .swiper-button-next{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");left:10px;right:auto}
.swiper-button-prev.swiper-button-black,.swiper-container-rtl .swiper-button-next.swiper-button-black{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")}
.swiper-button-prev.swiper-button-white,.swiper-container-rtl .swiper-button-next.swiper-button-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")}
.swiper-button-next,.swiper-container-rtl .swiper-button-prev{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");right:10px;left:auto}
.swiper-button-next.swiper-button-black,.swiper-container-rtl .swiper-button-prev.swiper-button-black{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")}
.swiper-button-next.swiper-button-white,.swiper-container-rtl .swiper-button-prev.swiper-button-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")}
.swiper-pagination{position:absolute;text-align:center;transition:.3s;transform:translate3d(0,0,0);z-index:10}
.swiper-pagination.swiper-pagination-hidden{opacity:0}
.swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}
.swiper-pagination-bullet{width:8px;height:8px;display:inline-block;border-radius:100%;background:#000;opacity:.2}
button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-moz-appearance:none;-webkit-appearance:none;appearance:none}
.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}
.swiper-pagination-white .swiper-pagination-bullet{background:#fff}
.swiper-pagination-bullet-active{opacity:1;background:#007aff}
.swiper-pagination-white .swiper-pagination-bullet-active{background:#fff}
.swiper-pagination-black .swiper-pagination-bullet-active{background:#000}
.swiper-container-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0,-50%,0)}
.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:5px 0;display:block}
.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 5px}
.swiper-pagination-progress{background:rgba(0,0,0,.25);position:absolute}
.swiper-pagination-progress .swiper-pagination-progressbar{background:#007aff;position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}
.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar{transform-origin:right top}
.swiper-container-horizontal>.swiper-pagination-progress{width:100%;height:4px;left:0;top:0}
.swiper-container-vertical>.swiper-pagination-progress{width:4px;height:100%;left:0;top:0}
.swiper-pagination-progress.swiper-pagination-white{background:rgba(255,255,255,.5)}
.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar{background:#fff}
.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar{background:#000}
.swiper-container-3d{-o-perspective:1200px;perspective:1200px}
.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper{transform-style:preserve-3d}
.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}
.swiper-container-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}
.swiper-container-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}
.swiper-container-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}
.swiper-container-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}
.swiper-container-coverflow .swiper-wrapper,.swiper-container-flip .swiper-wrapper{-ms-perspective:1200px}
.swiper-container-cube,.swiper-container-flip{overflow:visible}
.swiper-container-cube .swiper-slide,.swiper-container-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}
.swiper-container-cube .swiper-slide .swiper-slide,.swiper-container-flip .swiper-slide .swiper-slide{pointer-events:none}
.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active,.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}
.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top,.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}
.swiper-container-cube .swiper-slide{visibility:hidden;transform-origin:0 0;width:100%;height:100%}
.swiper-container-cube.swiper-container-rtl .swiper-slide{transform-origin:100% 0}
.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}
.swiper-container-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0;width:100%;height:100%;background:#000;opacity:.6;filter:blur(50px);z-index:0}
.swiper-container-fade.swiper-container-free-mode .swiper-slide{transition-timing-function:ease-out}
.swiper-container-fade .swiper-slide{pointer-events:none;transition-property:opacity}
.swiper-container-fade .swiper-slide .swiper-slide{pointer-events:none}
.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}
.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}
.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;-o-object-fit:contain;object-fit:contain}
.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}
.swiper-container-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}
.swiper-container-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}
.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}
.swiper-scrollbar-cursor-drag{cursor:move}
.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;-webkit-animation:swiper-preloader-spin 1s steps(12,end) infinite;animation:swiper-preloader-spin 1s steps(12,end) infinite}
.swiper-lazy-preloader:after{display:block;content:"";width:100%;height:100%;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");background-position:50%;background-size:100%;background-repeat:no-repeat}
.swiper-lazy-preloader-white:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")}
@-webkit-keyframes swiper-preloader-spin{100%{-webkit-transform:rotate(360deg)}}
@keyframes swiper-preloader-spin{100%{transform:rotate(360deg)}}
/*!
 * Cropper.js v1.5.1
 * https://fengyuanchen.github.io/cropperjs
 *
 * Copyright 2015-present Chen Fengyuan
 * Released under the MIT license
 *
 * Date: 2019-03-10T09:55:50.492Z
 */.cropper-container{direction:ltr;font-size:0;line-height:0;position:relative;-ms-touch-action:none;touch-action:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.cropper-container img{display:block;height:100%;image-orientation:0deg;max-height:none!important;max-width:none!important;min-height:0!important;min-width:0!important;width:100%}.cropper-canvas,.cropper-crop-box,.cropper-drag-box,.cropper-modal,.cropper-wrap-box{bottom:0;left:0;position:absolute;right:0;top:0}.cropper-canvas,.cropper-wrap-box{overflow:hidden}.cropper-drag-box{background-color:#fff;opacity:0}.cropper-modal{background-color:#000;opacity:.5}.cropper-view-box{display:block;height:100%;outline:1px solid #39f;outline-color:rgba(51,153,255,.75);overflow:hidden;width:100%}.cropper-dashed{border:0 dashed #eee;display:block;opacity:.5;position:absolute}.cropper-dashed.dashed-h{border-bottom-width:1px;border-top-width:1px;height:33.33333%;left:0;top:33.33333%;width:100%}.cropper-dashed.dashed-v{border-left-width:1px;border-right-width:1px;height:100%;left:33.33333%;top:0;width:33.33333%}.cropper-center{display:block;height:0;left:50%;opacity:.75;position:absolute;top:50%;width:0}.cropper-center:after,.cropper-center:before{background-color:#eee;content:" ";display:block;position:absolute}.cropper-center:before{height:1px;left:-3px;top:0;width:7px}.cropper-center:after{height:7px;left:0;top:-3px;width:1px}.cropper-face,.cropper-line,.cropper-point{display:block;height:100%;opacity:.1;position:absolute;width:100%}.cropper-face{background-color:#fff;left:0;top:0}.cropper-line{background-color:#39f}.cropper-line.line-e{cursor:ew-resize;right:-3px;top:0;width:5px}.cropper-line.line-n{cursor:ns-resize;height:5px;left:0;top:-3px}.cropper-line.line-w{cursor:ew-resize;left:-3px;top:0;width:5px}.cropper-line.line-s{bottom:-3px;cursor:ns-resize;height:5px;left:0}.cropper-point{background-color:#39f;height:5px;opacity:.75;width:5px}.cropper-point.point-e{cursor:ew-resize;margin-top:-3px;right:-3px;top:50%}.cropper-point.point-n{cursor:ns-resize;left:50%;margin-left:-3px;top:-3px}.cropper-point.point-w{cursor:ew-resize;left:-3px;margin-top:-3px;top:50%}.cropper-point.point-s{bottom:-3px;cursor:s-resize;left:50%;margin-left:-3px}.cropper-point.point-ne{cursor:nesw-resize;right:-3px;top:-3px}.cropper-point.point-nw{cursor:nwse-resize;left:-3px;top:-3px}.cropper-point.point-sw{bottom:-3px;cursor:nesw-resize;left:-3px}.cropper-point.point-se{bottom:-3px;cursor:nwse-resize;height:20px;opacity:1;right:-3px;width:20px}@media (min-width:768px){.cropper-point.point-se{height:15px;width:15px}}@media (min-width:992px){.cropper-point.point-se{height:10px;width:10px}}@media (min-width:1200px){.cropper-point.point-se{height:5px;opacity:.75;width:5px}}.cropper-point.point-se:before{background-color:#39f;bottom:-50%;content:" ";display:block;height:200%;opacity:0;position:absolute;right:-50%;width:200%}.cropper-invisible{opacity:0}.cropper-bg{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC")}.cropper-hide{display:block;height:0;position:absolute;width:0}.cropper-hidden{display:none!important}.cropper-move{cursor:move}.cropper-crop{cursor:crosshair}.cropper-disabled .cropper-drag-box,.cropper-disabled .cropper-face,.cropper-disabled .cropper-line,.cropper-disabled .cropper-point{cursor:not-allowed}
.flatpickr-calendar{background:transparent;opacity:0;display:none;text-align:center;visibility:hidden;padding:0;-webkit-animation:none;animation:none;direction:ltr;border:0;font-size:14px;line-height:24px;border-radius:5px;position:absolute;width:307.875px;-webkit-box-sizing:border-box;box-sizing:border-box;-ms-touch-action:manipulation;touch-action:manipulation;background:#fff;-webkit-box-shadow:1px 0 0 #e6e6e6,-1px 0 0 #e6e6e6,0 1px 0 #e6e6e6,0 -1px 0 #e6e6e6,0 3px 13px rgba(0,0,0,0.08);box-shadow:1px 0 0 #e6e6e6,-1px 0 0 #e6e6e6,0 1px 0 #e6e6e6,0 -1px 0 #e6e6e6,0 3px 13px rgba(0,0,0,0.08);}.flatpickr-calendar.open,.flatpickr-calendar.inline{opacity:1;max-height:640px;visibility:visible}.flatpickr-calendar.open{display:inline-block;z-index:99999}.flatpickr-calendar.animate.open{-webkit-animation:fpFadeInDown 300ms cubic-bezier(.23,1,.32,1);animation:fpFadeInDown 300ms cubic-bezier(.23,1,.32,1)}.flatpickr-calendar.inline{display:block;position:relative;top:2px}.flatpickr-calendar.static{position:absolute;top:calc(100% + 2px);}.flatpickr-calendar.static.open{z-index:999;display:block}.flatpickr-calendar.multiMonth .prevMonthDay,.flatpickr-calendar.multiMonth .nextMonthDay{visibility:hidden}.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7){-webkit-box-shadow:none !important;box-shadow:none !important}.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1){-webkit-box-shadow:-2px 0 0 #e6e6e6,5px 0 0 #e6e6e6;box-shadow:-2px 0 0 #e6e6e6,5px 0 0 #e6e6e6}.flatpickr-calendar .hasWeeks .dayContainer,.flatpickr-calendar .hasTime .dayContainer{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.flatpickr-calendar .hasWeeks .dayContainer{border-left:0}.flatpickr-calendar.showTimeInput.hasTime .flatpickr-time{height:40px;border-top:1px solid #e6e6e6}.flatpickr-calendar.noCalendar.hasTime .flatpickr-time{height:auto}.flatpickr-calendar:before,.flatpickr-calendar:after{position:absolute;display:block;pointer-events:none;border:solid transparent;content:'';height:0;width:0;left:22px}.flatpickr-calendar.rightMost:before,.flatpickr-calendar.rightMost:after{left:auto;right:22px}.flatpickr-calendar:before{border-width:5px;margin:0 -5px}.flatpickr-calendar:after{border-width:4px;margin:0 -4px}.flatpickr-calendar.arrowTop:before,.flatpickr-calendar.arrowTop:after{bottom:100%}.flatpickr-calendar.arrowTop:before{border-bottom-color:#e6e6e6}.flatpickr-calendar.arrowTop:after{border-bottom-color:#fff}.flatpickr-calendar.arrowBottom:before,.flatpickr-calendar.arrowBottom:after{top:100%}.flatpickr-calendar.arrowBottom:before{border-top-color:#e6e6e6}.flatpickr-calendar.arrowBottom:after{border-top-color:#fff}.flatpickr-calendar:focus{outline:0}.flatpickr-wrapper{position:relative;display:inline-block}.flatpickr-months{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}.flatpickr-months .flatpickr-month{background:transparent;color:rgba(0,0,0,0.9);fill:rgba(0,0,0,0.9);height:28px;line-height:1;text-align:center;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;overflow:hidden;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}.flatpickr-months .flatpickr-prev-month,.flatpickr-months .flatpickr-next-month{text-decoration:none;cursor:pointer;position:absolute;top:0;line-height:16px;height:28px;padding:10px;z-index:3;}.flatpickr-months .flatpickr-prev-month.disabled,.flatpickr-months .flatpickr-next-month.disabled{display:none}.flatpickr-months .flatpickr-prev-month i,.flatpickr-months .flatpickr-next-month i{position:relative}.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,.flatpickr-months .flatpickr-next-month.flatpickr-prev-month{/*
      /*rtl:begin:ignore*/left:0;/*
      /*rtl:end:ignore*/}/*
      /*rtl:begin:ignore*//*
      /*rtl:end:ignore*/.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,.flatpickr-months .flatpickr-next-month.flatpickr-next-month{/*
      /*rtl:begin:ignore*/right:0;/*
      /*rtl:end:ignore*/}/*
      /*rtl:begin:ignore*//*
      /*rtl:end:ignore*/.flatpickr-months .flatpickr-prev-month:hover,.flatpickr-months .flatpickr-next-month:hover{color:#959ea9;}.flatpickr-months .flatpickr-prev-month:hover svg,.flatpickr-months .flatpickr-next-month:hover svg{fill:#f64747}.flatpickr-months .flatpickr-prev-month svg,.flatpickr-months .flatpickr-next-month svg{width:14px;height:14px;}.flatpickr-months .flatpickr-prev-month svg path,.flatpickr-months .flatpickr-next-month svg path{-webkit-transition:fill .1s;transition:fill .1s;fill:inherit}.numInputWrapper{position:relative;height:auto;}.numInputWrapper input,.numInputWrapper span{display:inline-block}.numInputWrapper input{width:100%;}.numInputWrapper input::-ms-clear{display:none}.numInputWrapper span{position:absolute;right:0;width:14px;padding:0 4px 0 2px;height:50%;line-height:50%;opacity:0;cursor:pointer;border:1px solid rgba(57,57,57,0.15);-webkit-box-sizing:border-box;box-sizing:border-box;}.numInputWrapper span:hover{background:rgba(0,0,0,0.1)}.numInputWrapper span:active{background:rgba(0,0,0,0.2)}.numInputWrapper span:after{display:block;content:"";position:absolute}.numInputWrapper span.arrowUp{top:0;border-bottom:0;}.numInputWrapper span.arrowUp:after{border-left:4px solid transparent;border-right:4px solid transparent;border-bottom:4px solid rgba(57,57,57,0.6);top:26%}.numInputWrapper span.arrowDown{top:50%;}.numInputWrapper span.arrowDown:after{border-left:4px solid transparent;border-right:4px solid transparent;border-top:4px solid rgba(57,57,57,0.6);top:40%}.numInputWrapper span svg{width:inherit;height:auto;}.numInputWrapper span svg path{fill:rgba(0,0,0,0.5)}.numInputWrapper:hover{background:rgba(0,0,0,0.05);}.numInputWrapper:hover span{opacity:1}.flatpickr-current-month{font-size:135%;line-height:inherit;font-weight:300;color:inherit;position:absolute;width:75%;left:12.5%;padding:6.16px 0 0 0;line-height:1;height:28px;display:inline-block;text-align:center;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);}.flatpickr-current-month span.cur-month{font-family:inherit;font-weight:700;color:inherit;display:inline-block;margin-left:.5ch;padding:0;}.flatpickr-current-month span.cur-month:hover{background:rgba(0,0,0,0.05)}.flatpickr-current-month .numInputWrapper{width:6ch;width:7ch\0;display:inline-block;}.flatpickr-current-month .numInputWrapper span.arrowUp:after{border-bottom-color:rgba(0,0,0,0.9)}.flatpickr-current-month .numInputWrapper span.arrowDown:after{border-top-color:rgba(0,0,0,0.9)}.flatpickr-current-month input.cur-year{background:transparent;-webkit-box-sizing:border-box;box-sizing:border-box;color:inherit;cursor:text;padding:0 0 0 .5ch;margin:0;display:inline-block;font-size:inherit;font-family:inherit;font-weight:300;line-height:inherit;height:auto;border:0;border-radius:0;vertical-align:initial;}.flatpickr-current-month input.cur-year:focus{outline:0}.flatpickr-current-month input.cur-year[disabled],.flatpickr-current-month input.cur-year[disabled]:hover{font-size:100%;color:rgba(0,0,0,0.5);background:transparent;pointer-events:none}.flatpickr-weekdays{background:transparent;text-align:center;overflow:hidden;width:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;height:28px;}.flatpickr-weekdays .flatpickr-weekdaycontainer{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}span.flatpickr-weekday{cursor:default;font-size:90%;background:transparent;color:rgba(0,0,0,0.54);line-height:1;margin:0;text-align:center;display:block;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;font-weight:bolder}.dayContainer,.flatpickr-weeks{padding:1px 0 0 0}.flatpickr-days{position:relative;overflow:hidden;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start;width:307.875px;}.flatpickr-days:focus{outline:0}.dayContainer{padding:0;outline:0;text-align:left;width:307.875px;min-width:307.875px;max-width:307.875px;-webkit-box-sizing:border-box;box-sizing:border-box;display:inline-block;display:-ms-flexbox;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-wrap:wrap;-ms-flex-pack:justify;-webkit-justify-content:space-around;justify-content:space-around;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1;}.dayContainer + .dayContainer{-webkit-box-shadow:-1px 0 0 #e6e6e6;box-shadow:-1px 0 0 #e6e6e6}.flatpickr-day{background:none;border:1px solid transparent;border-radius:150px;-webkit-box-sizing:border-box;box-sizing:border-box;color:#393939;cursor:pointer;font-weight:400;width:14.2857143%;-webkit-flex-basis:14.2857143%;-ms-flex-preferred-size:14.2857143%;flex-basis:14.2857143%;max-width:39px;height:39px;line-height:39px;margin:0;display:inline-block;position:relative;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;text-align:center;}.flatpickr-day.inRange,.flatpickr-day.prevMonthDay.inRange,.flatpickr-day.nextMonthDay.inRange,.flatpickr-day.today.inRange,.flatpickr-day.prevMonthDay.today.inRange,.flatpickr-day.nextMonthDay.today.inRange,.flatpickr-day:hover,.flatpickr-day.prevMonthDay:hover,.flatpickr-day.nextMonthDay:hover,.flatpickr-day:focus,.flatpickr-day.prevMonthDay:focus,.flatpickr-day.nextMonthDay:focus{cursor:pointer;outline:0;background:#e6e6e6;border-color:#e6e6e6}.flatpickr-day.today{border-color:#959ea9;}.flatpickr-day.today:hover,.flatpickr-day.today:focus{border-color:#959ea9;background:#959ea9;color:#fff}.flatpickr-day.selected,.flatpickr-day.startRange,.flatpickr-day.endRange,.flatpickr-day.selected.inRange,.flatpickr-day.startRange.inRange,.flatpickr-day.endRange.inRange,.flatpickr-day.selected:focus,.flatpickr-day.startRange:focus,.flatpickr-day.endRange:focus,.flatpickr-day.selected:hover,.flatpickr-day.startRange:hover,.flatpickr-day.endRange:hover,.flatpickr-day.selected.prevMonthDay,.flatpickr-day.startRange.prevMonthDay,.flatpickr-day.endRange.prevMonthDay,.flatpickr-day.selected.nextMonthDay,.flatpickr-day.startRange.nextMonthDay,.flatpickr-day.endRange.nextMonthDay{background:#569ff7;-webkit-box-shadow:none;box-shadow:none;color:#fff;border-color:#569ff7}.flatpickr-day.selected.startRange,.flatpickr-day.startRange.startRange,.flatpickr-day.endRange.startRange{border-radius:50px 0 0 50px}.flatpickr-day.selected.endRange,.flatpickr-day.startRange.endRange,.flatpickr-day.endRange.endRange{border-radius:0 50px 50px 0}.flatpickr-day.selected.startRange + .endRange,.flatpickr-day.startRange.startRange + .endRange,.flatpickr-day.endRange.startRange + .endRange{-webkit-box-shadow:-10px 0 0 #569ff7;box-shadow:-10px 0 0 #569ff7}.flatpickr-day.selected.startRange.endRange,.flatpickr-day.startRange.startRange.endRange,.flatpickr-day.endRange.startRange.endRange{border-radius:50px}.flatpickr-day.inRange{border-radius:0;-webkit-box-shadow:-5px 0 0 #e6e6e6,5px 0 0 #e6e6e6;box-shadow:-5px 0 0 #e6e6e6,5px 0 0 #e6e6e6}.flatpickr-day.disabled,.flatpickr-day.disabled:hover,.flatpickr-day.prevMonthDay,.flatpickr-day.nextMonthDay,.flatpickr-day.notAllowed,.flatpickr-day.notAllowed.prevMonthDay,.flatpickr-day.notAllowed.nextMonthDay{color:rgba(57,57,57,0.3);background:transparent;border-color:transparent;cursor:default}.flatpickr-day.disabled,.flatpickr-day.disabled:hover{cursor:not-allowed;color:rgba(57,57,57,0.1)}.flatpickr-day.week.selected{border-radius:0;-webkit-box-shadow:-5px 0 0 #569ff7,5px 0 0 #569ff7;box-shadow:-5px 0 0 #569ff7,5px 0 0 #569ff7}.rangeMode .flatpickr-day{margin-top:1px}.flatpickr-weekwrapper{display:inline-block;float:left;}.flatpickr-weekwrapper .flatpickr-weeks{padding:0 12px;-webkit-box-shadow:1px 0 0 #e6e6e6;box-shadow:1px 0 0 #e6e6e6}.flatpickr-weekwrapper .flatpickr-weekday{float:none;width:100%;line-height:28px}.flatpickr-weekwrapper span.flatpickr-day,.flatpickr-weekwrapper span.flatpickr-day:hover{display:block;width:100%;max-width:none;color:rgba(57,57,57,0.3);background:transparent;cursor:default;border:none}.flatpickr-innerContainer{display:block;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;}.flatpickr-rContainer{display:inline-block;padding:0;-webkit-box-sizing:border-box;box-sizing:border-box}.flatpickr-time{text-align:center;outline:0;display:block;height:0;line-height:40px;max-height:40px;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}.flatpickr-time:after{content:"";display:table;clear:both}.flatpickr-time .numInputWrapper{-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;width:40%;height:40px;float:left;}.flatpickr-time .numInputWrapper span.arrowUp:after{border-bottom-color:#393939}.flatpickr-time .numInputWrapper span.arrowDown:after{border-top-color:#393939}.flatpickr-time.hasSeconds .numInputWrapper{width:26%}.flatpickr-time.time24hr .numInputWrapper{width:49%}.flatpickr-time input{background:transparent;-webkit-box-shadow:none;box-shadow:none;border:0;border-radius:0;text-align:center;margin:0;padding:0;height:inherit;line-height:inherit;cursor:pointer;color:#393939;font-size:14px;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;}.flatpickr-time input.flatpickr-hour{font-weight:bold}.flatpickr-time input.flatpickr-minute,.flatpickr-time input.flatpickr-second{font-weight:400}.flatpickr-time input:focus{outline:0;border:0}.flatpickr-time .flatpickr-time-separator,.flatpickr-time .flatpickr-am-pm{height:inherit;display:inline-block;float:left;line-height:inherit;color:#393939;font-weight:bold;width:2%;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center}.flatpickr-time .flatpickr-am-pm{outline:0;width:18%;cursor:pointer;text-align:center;font-weight:400;}.flatpickr-time .flatpickr-am-pm:hover,.flatpickr-time .flatpickr-am-pm:focus{background:#f0f0f0}.flatpickr-input[readonly]{cursor:pointer}@-webkit-keyframes fpFadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fpFadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}
/*! nouislider - 9.2.0 - 2017-01-11 10:35:35 */.noUi-target,.noUi-target *{-webkit-touch-callout:none;-webkit-tap-highlight-color:transparent;-webkit-user-select:none;touch-action:none;-ms-user-select:none;-moz-user-select:none;user-select:none;box-sizing:border-box}.noUi-target{position:relative;direction:ltr}.noUi-base{width:100%;height:100%;position:relative;z-index:1}.noUi-connect{position:absolute;right:0;top:0;left:0;bottom:0}.noUi-origin{position:absolute;height:0;width:0}.noUi-handle{position:relative;z-index:1}.noUi-state-tap .noUi-connect,.noUi-state-tap .noUi-origin{transition:top .3s,right .3s,bottom .3s,left .3s}.noUi-state-drag *{cursor:inherit!important}.noUi-base,.noUi-handle{transform:translate3d(0,0,0)}.noUi-horizontal{height:18px}.noUi-horizontal .noUi-handle{width:34px;height:28px;left:-17px;top:-6px}.noUi-vertical{width:18px}.noUi-vertical .noUi-handle{width:28px;height:34px;left:-6px;top:-17px}.noUi-target{background:#FAFAFA;border-radius:4px;border:1px solid #D3D3D3;box-shadow:inset 0 1px 1px #F0F0F0,0 3px 6px -5px #BBB}.noUi-connect{background:#3FB8AF;box-shadow:inset 0 0 3px rgba(51,51,51,.45);transition:background 450ms}.noUi-draggable{cursor:ew-resize}.noUi-vertical .noUi-draggable{cursor:ns-resize}.noUi-handle{border:1px solid #D9D9D9;border-radius:3px;background:#FFF;cursor:default;box-shadow:inset 0 0 1px #FFF,inset 0 1px 7px #EBEBEB,0 3px 6px -3px #BBB}.noUi-active{box-shadow:inset 0 0 1px #FFF,inset 0 1px 7px #DDD,0 3px 6px -3px #BBB}.noUi-handle:after,.noUi-handle:before{content:"";display:block;position:absolute;height:14px;width:1px;background:#E8E7E6;left:14px;top:6px}.noUi-handle:after{left:17px}.noUi-vertical .noUi-handle:after,.noUi-vertical .noUi-handle:before{width:14px;height:1px;left:6px;top:14px}.noUi-vertical .noUi-handle:after{top:17px}[disabled] .noUi-connect{background:#B8B8B8}[disabled] .noUi-handle,[disabled].noUi-handle,[disabled].noUi-target{cursor:not-allowed}.noUi-pips,.noUi-pips *{box-sizing:border-box}.noUi-pips{position:absolute;color:#999}.noUi-value{position:absolute;text-align:center}.noUi-value-sub{color:#ccc;font-size:10px}.noUi-marker{position:absolute;background:#CCC}.noUi-marker-large,.noUi-marker-sub{background:#AAA}.noUi-pips-horizontal{padding:10px 0;height:80px;top:100%;left:0;width:100%}.noUi-value-horizontal{transform:translate3d(-50%,50%,0)}.noUi-marker-horizontal.noUi-marker{margin-left:-1px;width:2px;height:5px}.noUi-marker-horizontal.noUi-marker-sub{height:10px}.noUi-marker-horizontal.noUi-marker-large{height:15px}.noUi-pips-vertical{padding:0 10px;height:100%;top:0;left:100%}.noUi-value-vertical{transform:translate3d(0,50%,0);padding-left:25px}.noUi-marker-vertical.noUi-marker{width:5px;height:2px;margin-top:-1px}.noUi-marker-vertical.noUi-marker-sub{width:10px}.noUi-marker-vertical.noUi-marker-large{width:15px}.noUi-tooltip{display:block;position:absolute;border:1px solid #D9D9D9;border-radius:3px;background:#fff;color:#000;padding:5px;text-align:center}.noUi-horizontal .noUi-tooltip{transform:translate(-50%,0);left:50%;bottom:120%}.noUi-vertical .noUi-tooltip{transform:translate(0,-50%);top:50%;right:120%}
.c3 svg{font:10px sans-serif;-webkit-tap-highlight-color:transparent}.c3 line,.c3 path{fill:none;stroke:#000}.c3 text{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.c3-bars path,.c3-event-rect,.c3-legend-item-tile,.c3-xgrid-focus,.c3-ygrid{shape-rendering:crispEdges}.c3-chart-arc path{stroke:#fff}.c3-chart-arc text{fill:#fff;font-size:13px}.c3-grid line{stroke:#aaa}.c3-grid text{fill:#aaa}.c3-xgrid,.c3-ygrid{stroke-dasharray:3 3}.c3-text.c3-empty{fill:grey;font-size:2em}.c3-line{stroke-width:1px}.c3-circle._expanded_{stroke-width:1px;stroke:#fff}.c3-selected-circle{fill:#fff;stroke-width:2px}.c3-bar{stroke-width:0}.c3-bar._expanded_{fill-opacity:.75}.c3-target.c3-focused{opacity:1}.c3-target.c3-focused path.c3-line,.c3-target.c3-focused path.c3-step{stroke-width:2px}.c3-target.c3-defocused{opacity:.3!important}.c3-region{fill:#4682b4;fill-opacity:.1}.c3-brush .extent{fill-opacity:.1}.c3-legend-item{font-size:12px}.c3-legend-item-hidden{opacity:.15}.c3-legend-background{opacity:.75;fill:#fff;stroke:#d3d3d3;stroke-width:1}.c3-title{font:14px sans-serif}.c3-tooltip-container{z-index:10}.c3-tooltip{border-collapse:collapse;border-spacing:0;background-color:#fff;empty-cells:show;box-shadow:7px 7px 12px -9px #777;opacity:.9}.c3-tooltip tr{border:1px solid #ccc}.c3-tooltip th{background-color:#aaa;font-size:14px;padding:2px 5px;text-align:left;color:#fff}.c3-tooltip td{font-size:13px;padding:3px 6px;background-color:#fff;border-left:1px dotted #999}.c3-tooltip td>span{display:inline-block;width:10px;height:10px;margin-right:6px}.c3-tooltip td.value{text-align:right}.c3-area{stroke-width:0;opacity:.2}.c3-chart-arcs-title{dominant-baseline:middle;font-size:1.3em}.c3-chart-arcs .c3-chart-arcs-background{fill:#e0e0e0;stroke:none}.c3-chart-arcs .c3-chart-arcs-gauge-unit{fill:#000;font-size:16px}.c3-chart-arcs .c3-chart-arcs-gauge-max{fill:#777}.c3-chart-arcs .c3-chart-arcs-gauge-min{fill:#777}.c3-chart-arc .c3-gauge-value{fill:#000}
div.jsoneditor .jsoneditor-search input{height:auto;border:inherit}div.jsoneditor .jsoneditor-search input:focus{border:none!important;box-shadow:none!important}div.jsoneditor table{border-collapse:collapse;width:auto}div.jsoneditor td,div.jsoneditor th{padding:0;display:table-cell;text-align:left;vertical-align:inherit;border-radius:inherit}div.jsoneditor-default,div.jsoneditor-field,div.jsoneditor-readonly,div.jsoneditor-value{border:1px solid transparent;min-height:16px;min-width:32px;padding:2px;margin:1px;word-wrap:break-word;float:left}div.jsoneditor-field p,div.jsoneditor-value p{margin:0}div.jsoneditor-value{word-break:break-word}div.jsoneditor-readonly{min-width:16px;color:grey}div.jsoneditor-empty{border-color:#d3d3d3;border-style:dashed;border-radius:2px}div.jsoneditor-field.jsoneditor-empty::after,div.jsoneditor-value.jsoneditor-empty::after{pointer-events:none;color:#d3d3d3;font-size:8pt}div.jsoneditor-field.jsoneditor-empty::after{content:"field"}div.jsoneditor-value.jsoneditor-empty::after{content:"value"}a.jsoneditor-value.jsoneditor-url,div.jsoneditor-value.jsoneditor-url{color:green;text-decoration:underline}a.jsoneditor-value.jsoneditor-url{display:inline-block;padding:2px;margin:2px}a.jsoneditor-value.jsoneditor-url:focus,a.jsoneditor-value.jsoneditor-url:hover{color:#ee422e}div.jsoneditor td.jsoneditor-separator{padding:3px 0;vertical-align:top;color:grey}div.jsoneditor-field.jsoneditor-highlight,div.jsoneditor-field[contenteditable=true]:focus,div.jsoneditor-field[contenteditable=true]:hover,div.jsoneditor-value.jsoneditor-highlight,div.jsoneditor-value[contenteditable=true]:focus,div.jsoneditor-value[contenteditable=true]:hover{background-color:#ffffab;border:1px solid #ff0;border-radius:2px}div.jsoneditor-field.jsoneditor-highlight-active,div.jsoneditor-field.jsoneditor-highlight-active:focus,div.jsoneditor-field.jsoneditor-highlight-active:hover,div.jsoneditor-value.jsoneditor-highlight-active,div.jsoneditor-value.jsoneditor-highlight-active:focus,div.jsoneditor-value.jsoneditor-highlight-active:hover{background-color:#fe0;border:1px solid #ffc700;border-radius:2px}div.jsoneditor-value.jsoneditor-string{color:#006000}div.jsoneditor-value.jsoneditor-array,div.jsoneditor-value.jsoneditor-object{min-width:16px}div.jsoneditor-value.jsoneditor-number{color:#ee422e}div.jsoneditor-value.jsoneditor-boolean{color:#ff8c00}div.jsoneditor-value.jsoneditor-null{color:#004ed0}div.jsoneditor-value.jsoneditor-invalid{color:#000}div.jsoneditor-default{color:grey;padding-left:10px}div.jsoneditor-tree button.jsoneditor-button{width:24px;height:24px;padding:0;margin:0;border:none;cursor:pointer;background:transparent url('jsoneditor-icons.ffbb30248a6fc9adfc7f.svg')}div.jsoneditor-mode-form tr.jsoneditor-expandable td.jsoneditor-tree,div.jsoneditor-mode-view tr.jsoneditor-expandable td.jsoneditor-tree{cursor:pointer}div.jsoneditor-tree button.jsoneditor-collapsed{background-position:0 -48px}div.jsoneditor-tree button.jsoneditor-expanded{background-position:0 -72px}div.jsoneditor-tree button.jsoneditor-contextmenu{background-position:-48px -72px}div.jsoneditor-tree button.jsoneditor-contextmenu.jsoneditor-selected,div.jsoneditor-tree button.jsoneditor-contextmenu:focus,div.jsoneditor-tree button.jsoneditor-contextmenu:hover,tr.jsoneditor-selected.jsoneditor-first button.jsoneditor-contextmenu{background-position:-48px -48px}div.jsoneditor-tree :focus{outline:0}div.jsoneditor-tree button.jsoneditor-button:focus{background-color:#f5f5f5;outline:#e5e5e5 solid 1px}div.jsoneditor-tree button.jsoneditor-invisible{visibility:hidden;background:0 0}div.jsoneditor-tree div.jsoneditor-show-more{display:inline-block;padding:3px 4px;margin:2px 0;background-color:#e5e5e5;border-radius:3px;color:grey;font-family:arial,sans-serif;font-size:10pt}div.jsoneditor-tree div.jsoneditor-show-more a{display:inline-block;color:grey}div.jsoneditor-tree div.jsoneditor-show-more a:focus,div.jsoneditor-tree div.jsoneditor-show-more a:hover{color:#ee422e}div.jsoneditor-tree div.jsoneditor-color{display:inline-block;width:12px;height:12px;margin:4px;border:1px solid grey;cursor:pointer}div.jsoneditor div.jsoneditor-anchor .picker_wrapper.popup.popup_bottom{top:28px;left:-10px}div.jsoneditor-tree div.jsoneditor-date{background:#a1a1a1;color:#fff;font-family:arial,sans-serif;border-radius:3px;display:inline-block;padding:3px;margin:0 3px}div.jsoneditor{color:#1a1a1a;border:thin solid #3883fa;box-sizing:border-box;width:100%;height:100%;position:relative;padding:0;line-height:100%}div.jsoneditor-tree table.jsoneditor-tree{border-collapse:collapse;border-spacing:0;width:100%}div.jsoneditor-outer{position:static;width:100%;height:100%;margin:0;padding:0;box-sizing:border-box}div.jsoneditor-outer.has-nav-bar{margin-top:-26px;padding-top:26px}div.jsoneditor-outer.has-status-bar{margin-bottom:-26px;padding-bottom:26px}div.jsoneditor-outer.has-main-menu-bar{margin-top:-35px;padding-top:35px}div.jsoneditor-outer.has-nav-bar.has-main-menu-bar{margin-top:-61px;padding-top:61px}.ace-jsoneditor,textarea.jsoneditor-text{min-height:150px}div.jsoneditor-tree{width:100%;height:100%;position:relative;overflow:auto}textarea.jsoneditor-text{width:100%;height:100%;margin:0;box-sizing:border-box;outline-width:0;border:none;background-color:#fff;resize:none}tr.jsoneditor-highlight,tr.jsoneditor-selected{background-color:#d3d3d3}tr.jsoneditor-selected button.jsoneditor-contextmenu,tr.jsoneditor-selected button.jsoneditor-dragarea{visibility:hidden}tr.jsoneditor-selected.jsoneditor-first button.jsoneditor-contextmenu,tr.jsoneditor-selected.jsoneditor-first button.jsoneditor-dragarea{visibility:visible}div.jsoneditor-tree button.jsoneditor-dragarea{background:url('jsoneditor-icons.ffbb30248a6fc9adfc7f.svg') -72px -72px;cursor:move}div.jsoneditor-tree button.jsoneditor-dragarea:focus,div.jsoneditor-tree button.jsoneditor-dragarea:hover,tr.jsoneditor-selected.jsoneditor-first button.jsoneditor-dragarea{background-position:-72px -48px}div.jsoneditor td,div.jsoneditor th,div.jsoneditor tr{padding:0;margin:0}div.jsoneditor td{vertical-align:top}div.jsoneditor td.jsoneditor-tree{vertical-align:top}.jsoneditor-schema-error,div.jsoneditor td,div.jsoneditor textarea,div.jsoneditor th,div.jsoneditor-field,div.jsoneditor-value{font-family:"dejavu sans mono","droid sans mono",consolas,monaco,"lucida console","courier new",courier,monospace,sans-serif;font-size:10pt;color:#1a1a1a}.jsoneditor-schema-error{cursor:default;display:inline-block;height:24px;line-height:24px;position:relative;text-align:center;width:24px}div.jsoneditor-tree .jsoneditor-button.jsoneditor-schema-error{width:24px;height:24px;padding:0;margin:0 4px 0 0;background:url('jsoneditor-icons.ffbb30248a6fc9adfc7f.svg') -168px -48px}.jsoneditor-text-errors tr.jump-to-line:hover{text-decoration:underline;cursor:pointer}.jsoneditor-schema-error .jsoneditor-popover{background-color:#4c4c4c;border-radius:3px;box-shadow:0 0 5px rgba(0,0,0,.4);color:#fff;display:none;padding:7px 10px;position:absolute;width:200px;z-index:4}.jsoneditor-schema-error .jsoneditor-popover.jsoneditor-above{bottom:32px;left:-98px}.jsoneditor-schema-error .jsoneditor-popover.jsoneditor-below{top:32px;left:-98px}.jsoneditor-schema-error .jsoneditor-popover.jsoneditor-left{top:-7px;right:32px}.jsoneditor-schema-error .jsoneditor-popover.jsoneditor-right{top:-7px;left:32px}.jsoneditor-schema-error .jsoneditor-popover:before{border-right:7px solid transparent;border-left:7px solid transparent;content:'';display:block;left:50%;margin-left:-7px;position:absolute}.jsoneditor-schema-error .jsoneditor-popover.jsoneditor-above:before{border-top:7px solid #4c4c4c;bottom:-7px}.jsoneditor-schema-error .jsoneditor-popover.jsoneditor-below:before{border-bottom:7px solid #4c4c4c;top:-7px}.jsoneditor-schema-error .jsoneditor-popover.jsoneditor-left:before{border-left:7px solid #4c4c4c;border-top:7px solid transparent;border-bottom:7px solid transparent;content:'';top:19px;right:-14px;left:inherit;margin-left:inherit;margin-top:-7px;position:absolute}.jsoneditor-schema-error .jsoneditor-popover.jsoneditor-right:before{border-right:7px solid #4c4c4c;border-top:7px solid transparent;border-bottom:7px solid transparent;content:'';top:19px;left:-14px;margin-left:inherit;margin-top:-7px;position:absolute}.jsoneditor-schema-error:focus .jsoneditor-popover,.jsoneditor-schema-error:hover .jsoneditor-popover{display:block;-webkit-animation:fade-in .3s linear 1,move-up .3s linear 1;-moz-animation:fade-in .3s linear 1,move-up .3s linear 1;-ms-animation:fade-in .3s linear 1,move-up .3s linear 1}@-webkit-keyframes fade-in{from{opacity:0}to{opacity:1}}.jsoneditor .jsoneditor-validation-errors-container{max-height:130px;overflow-y:auto}.jsoneditor .jsoneditor-additional-errors{position:absolute;margin:auto;bottom:31px;left:calc(50% - 92px);color:grey;background-color:#ebebeb;padding:7px 15px;border-radius:8px}.jsoneditor .jsoneditor-additional-errors.visible{visibility:visible;opacity:1;transition:opacity 2s linear}.jsoneditor .jsoneditor-additional-errors.hidden{visibility:hidden;opacity:0;transition:visibility 0s 2s,opacity 2s linear}.jsoneditor .jsoneditor-text-errors{width:100%;border-collapse:collapse;border-top:1px solid gold}.jsoneditor .jsoneditor-text-errors td{padding:3px 6px;vertical-align:middle}.jsoneditor .jsoneditor-text-errors tr{background-color:#ffef8b}.jsoneditor .jsoneditor-text-errors tr.parse-error{background-color:#ee2e2e70}.jsoneditor-text-errors .jsoneditor-schema-error{border:none;width:24px;height:24px;padding:0;margin:0 4px 0 0;cursor:pointer}.jsoneditor-text-errors tr .jsoneditor-schema-error{background:url('jsoneditor-icons.ffbb30248a6fc9adfc7f.svg') -168px -48px}.jsoneditor-text-errors tr.parse-error .jsoneditor-schema-error{background:url('jsoneditor-icons.ffbb30248a6fc9adfc7f.svg') -25px 0}.fadein{-webkit-animation:fadein .3s;animation:fadein .3s;-moz-animation:fadein .3s;-o-animation:fadein .3s}@-webkit-keyframes fadein{0%{opacity:0}100%{opacity:1}}@keyframes fadein{0%{opacity:0}100%{opacity:1}}div.jsoneditor-contextmenu-root{position:relative;width:0;height:0}div.jsoneditor-contextmenu{position:absolute;box-sizing:content-box;z-index:99999}div.jsoneditor-contextmenu li,div.jsoneditor-contextmenu ul{box-sizing:content-box;position:relative}div.jsoneditor-contextmenu ul{position:relative;left:0;top:0;width:128px;background:#fff;border:1px solid #d3d3d3;box-shadow:2px 2px 12px rgba(128,128,128,.3);list-style:none;margin:0;padding:0}div.jsoneditor-contextmenu ul li button{position:relative;padding:0 4px 0 0;margin:0;width:128px;height:auto;border:none;cursor:pointer;color:#4d4d4d;background:0 0;font-size:10pt;font-family:arial,sans-serif;box-sizing:border-box;text-align:left}div.jsoneditor-contextmenu ul li button::-moz-focus-inner{padding:0;border:0}div.jsoneditor-contextmenu ul li button:focus,div.jsoneditor-contextmenu ul li button:hover{color:#1a1a1a;background-color:#f5f5f5;outline:0}div.jsoneditor-contextmenu ul li button.jsoneditor-default{width:96px}div.jsoneditor-contextmenu ul li button.jsoneditor-expand{float:right;width:32px;height:24px;border-left:1px solid #e5e5e5}div.jsoneditor-contextmenu div.jsoneditor-icon{position:absolute;top:0;left:0;width:24px;height:24px;border:none;padding:0;margin:0;background-image:url('jsoneditor-icons.ffbb30248a6fc9adfc7f.svg')}div.jsoneditor-contextmenu ul li ul div.jsoneditor-icon{margin-left:24px}div.jsoneditor-contextmenu div.jsoneditor-text{padding:4px 0 4px 24px;word-wrap:break-word}div.jsoneditor-contextmenu div.jsoneditor-text.jsoneditor-right-margin{padding-right:24px}div.jsoneditor-contextmenu ul li button div.jsoneditor-expand{position:absolute;top:0;right:0;width:24px;height:24px;padding:0;margin:0 4px 0 0;background:url('jsoneditor-icons.ffbb30248a6fc9adfc7f.svg') 0 -72px}div.jsoneditor-contextmenu div.jsoneditor-separator{height:0;border-top:1px solid #e5e5e5;padding-top:5px;margin-top:5px}div.jsoneditor-contextmenu button.jsoneditor-remove>div.jsoneditor-icon{background-position:-24px 0}div.jsoneditor-contextmenu button.jsoneditor-append>div.jsoneditor-icon{background-position:0 0}div.jsoneditor-contextmenu button.jsoneditor-insert>div.jsoneditor-icon{background-position:0 0}div.jsoneditor-contextmenu button.jsoneditor-duplicate>div.jsoneditor-icon{background-position:-48px 0}div.jsoneditor-contextmenu button.jsoneditor-sort-asc>div.jsoneditor-icon{background-position:-168px 0}div.jsoneditor-contextmenu button.jsoneditor-sort-desc>div.jsoneditor-icon{background-position:-192px 0}div.jsoneditor-contextmenu button.jsoneditor-transform>div.jsoneditor-icon{background-position:-216px 0}div.jsoneditor-contextmenu ul li button.jsoneditor-selected,div.jsoneditor-contextmenu ul li button.jsoneditor-selected:focus,div.jsoneditor-contextmenu ul li button.jsoneditor-selected:hover{color:#fff;background-color:#ee422e}div.jsoneditor-contextmenu ul li{overflow:hidden}div.jsoneditor-contextmenu ul li ul{display:none;position:relative;left:-10px;top:0;border:none;box-shadow:inset 0 0 10px rgba(128,128,128,.5);padding:0 10px;transition:all .3s ease-out}div.jsoneditor-contextmenu ul li ul li button{padding-left:24px;-webkit-animation:all ease-in-out 1s;animation:all ease-in-out 1s}div.jsoneditor-contextmenu ul li ul li button:focus,div.jsoneditor-contextmenu ul li ul li button:hover{background-color:#f5f5f5}div.jsoneditor-contextmenu button.jsoneditor-type-string>div.jsoneditor-icon{background-position:-144px 0}div.jsoneditor-contextmenu button.jsoneditor-type-auto>div.jsoneditor-icon{background-position:-120px 0}div.jsoneditor-contextmenu button.jsoneditor-type-object>div.jsoneditor-icon{background-position:-72px 0}div.jsoneditor-contextmenu button.jsoneditor-type-array>div.jsoneditor-icon{background-position:-96px 0}div.jsoneditor-contextmenu button.jsoneditor-type-modes>div.jsoneditor-icon{background-image:none;width:6px}.jsoneditor-modal-overlay{position:absolute!important;background:#010101!important;opacity:.3!important}.jsoneditor-modal{position:absolute!important;max-width:95%!important;width:auto!important;border-radius:2px!important;padding:45px 15px 15px 15px!important;box-shadow:2px 2px 12px rgba(128,128,128,.3)!important;color:#4d4d4d;line-height:1.3em}.jsoneditor-modal.jsoneditor-modal-transform{width:600px!important}.jsoneditor-modal .pico-modal-header{position:absolute;box-sizing:border-box;top:0;left:0;width:100%;padding:0 10px;height:30px;line-height:30px;font-family:arial,sans-serif;font-size:11pt;background:#3883fa;color:#fff}.jsoneditor-modal table{width:100%}.jsoneditor-modal table td,.jsoneditor-modal table th{text-align:left;vertical-align:top;font-weight:400;color:#4d4d4d;border-spacing:0;border-collapse:collapse}.jsoneditor-modal table td{padding:3px 0}.jsoneditor-modal p:first-child{margin-top:0}.jsoneditor-modal a{color:#3883fa}.jsoneditor-modal .jsoneditor-jmespath-block{margin-bottom:10px}.jsoneditor-modal table td.jsoneditor-modal-input{text-align:right;padding-right:0;white-space:nowrap}.jsoneditor-modal table td.jsoneditor-modal-actions{padding-top:15px}.jsoneditor-modal .pico-close{background:0 0!important;font-size:24px!important;top:7px!important;right:7px!important;color:#fff}.jsoneditor-modal #query,.jsoneditor-modal input,.jsoneditor-modal select,.jsoneditor-modal textarea{background:#fff;border:1px solid #d3d3d3;color:#4d4d4d;border-radius:3px;padding:4px}.jsoneditor-modal,.jsoneditor-modal #query,.jsoneditor-modal input,.jsoneditor-modal option,.jsoneditor-modal select,.jsoneditor-modal table td,.jsoneditor-modal table th,.jsoneditor-modal textarea{font-size:10.5pt;font-family:arial,sans-serif}.jsoneditor-modal table th{vertical-align:middle}.jsoneditor-modal #query,.jsoneditor-modal .jsoneditor-transform-preview{font-family:"dejavu sans mono","droid sans mono",consolas,monaco,"lucida console","courier new",courier,monospace,sans-serif;font-size:10pt}.jsoneditor-modal input[type=button],.jsoneditor-modal input[type=submit]{background:#f5f5f5;padding:4px 20px}.jsoneditor-modal input,.jsoneditor-modal select{cursor:pointer}.jsoneditor-modal input{padding:4px}.jsoneditor-modal input[type=text]{cursor:inherit}.jsoneditor-modal input[disabled]{background:#d3d3d3;color:grey}.jsoneditor-modal .jsoneditor-select-wrapper{position:relative;display:inline-block}.jsoneditor-modal .jsoneditor-select-wrapper:after{content:"";width:0;height:0;border-left:5px solid transparent;border-right:5px solid transparent;border-top:6px solid #666;position:absolute;right:8px;top:14px;pointer-events:none}.jsoneditor-modal select{padding:3px 24px 3px 10px;min-width:180px;max-width:350px;-webkit-appearance:none;-moz-appearance:none;appearance:none;text-indent:0;text-overflow:"";font-size:10pt;line-height:1.5em}.jsoneditor-modal select::-ms-expand{display:none}.jsoneditor-modal .jsoneditor-button-group input{padding:4px 10px;margin:0;border-radius:0;border-left-style:none}.jsoneditor-modal .jsoneditor-button-group input.jsoneditor-button-first{border-top-left-radius:3px;border-bottom-left-radius:3px;border-left-style:solid}.jsoneditor-modal .jsoneditor-button-group input.jsoneditor-button-last{border-top-right-radius:3px;border-bottom-right-radius:3px}.jsoneditor-modal .jsoneditor-button-group.jsoneditor-button-group-value-asc input.jsoneditor-button-asc,.jsoneditor-modal .jsoneditor-button-group.jsoneditor-button-group-value-desc input.jsoneditor-button-desc{background:#3883fa;border-color:#3883fa;color:#fff}.jsoneditor-modal #query,.jsoneditor-modal .jsoneditor-transform-preview{width:100%;box-sizing:border-box}.jsoneditor-modal .jsoneditor-transform-preview{background:#f5f5f5;height:200px}.jsoneditor-modal .jsoneditor-transform-preview.jsoneditor-error{color:#ee422e}.jsoneditor-modal .jsoneditor-jmespath-wizard{line-height:1.2em;width:100%;padding:0;border-radius:3px}.jsoneditor-modal .jsoneditor-jmespath-label{font-weight:700;color:#1e90ff;margin-top:20px;margin-bottom:5px}.jsoneditor-modal .jsoneditor-jmespath-wizard-table{width:100%}.jsoneditor-modal .jsoneditor-jmespath-wizard-label{font-style:italic;margin:4px 0 2px 0}.jsoneditor-modal .jsoneditor-inline{position:relative;display:inline-block;width:100%;padding-top:2px;padding-bottom:2px}.jsoneditor-modal .jsoneditor-inline:not(:last-child){padding-right:2px}.jsoneditor-modal .jsoneditor-jmespath-filter{display:flex;flex-wrap:wrap}.jsoneditor-modal .jsoneditor-jmespath-filter-field{width:180px}.jsoneditor-modal .jsoneditor-jmespath-filter-relation{width:100px}.jsoneditor-modal .jsoneditor-jmespath-filter-value{min-width:180px;flex:1}.jsoneditor-modal .jsoneditor-jmespath-sort-field{width:170px}.jsoneditor-modal .jsoneditor-jmespath-sort-order{width:150px}.jsoneditor-modal .jsoneditor-jmespath-select-fields{width:100%}.jsoneditor-modal .selectr-selected{border-color:#d3d3d3;padding:4px 28px 4px 8px}.jsoneditor-modal .selectr-selected .selectr-tag{background-color:#3883fa;border-radius:5px}div.jsoneditor-menu{width:100%;height:35px;padding:2px;margin:0;box-sizing:border-box;color:#fff;background-color:#3883fa;border-bottom:1px solid #3883fa}div.jsoneditor-menu>button,div.jsoneditor-menu>div.jsoneditor-modes>button{width:26px;height:26px;margin:2px;padding:0;border-radius:2px;border:1px solid transparent;background:transparent url('jsoneditor-icons.ffbb30248a6fc9adfc7f.svg');color:#fff;opacity:.8;font-family:arial,sans-serif;font-size:10pt;float:left}div.jsoneditor-menu>button:hover,div.jsoneditor-menu>div.jsoneditor-modes>button:hover{background-color:rgba(255,255,255,.2);border:1px solid rgba(255,255,255,.4)}div.jsoneditor-menu>button:active,div.jsoneditor-menu>button:focus,div.jsoneditor-menu>div.jsoneditor-modes>button:active,div.jsoneditor-menu>div.jsoneditor-modes>button:focus{background-color:rgba(255,255,255,.3)}div.jsoneditor-menu>button:disabled,div.jsoneditor-menu>div.jsoneditor-modes>button:disabled{opacity:.5}div.jsoneditor-menu>button.jsoneditor-collapse-all{background-position:0 -96px}div.jsoneditor-menu>button.jsoneditor-expand-all{background-position:0 -120px}div.jsoneditor-menu>button.jsoneditor-sort{background-position:-120px -96px}div.jsoneditor-menu>button.jsoneditor-transform{background-position:-144px -96px}div.jsoneditor.jsoneditor-mode-form>div.jsoneditor-menu>button.jsoneditor-sort,div.jsoneditor.jsoneditor-mode-form>div.jsoneditor-menu>button.jsoneditor-transform,div.jsoneditor.jsoneditor-mode-view>div.jsoneditor-menu>button.jsoneditor-sort,div.jsoneditor.jsoneditor-mode-view>div.jsoneditor-menu>button.jsoneditor-transform{display:none}div.jsoneditor-menu>button.jsoneditor-undo{background-position:-24px -96px}div.jsoneditor-menu>button.jsoneditor-undo:disabled{background-position:-24px -120px}div.jsoneditor-menu>button.jsoneditor-redo{background-position:-48px -96px}div.jsoneditor-menu>button.jsoneditor-redo:disabled{background-position:-48px -120px}div.jsoneditor-menu>button.jsoneditor-compact{background-position:-72px -96px}div.jsoneditor-menu>button.jsoneditor-format{background-position:-72px -120px}div.jsoneditor-menu>button.jsoneditor-repair{background-position:-96px -96px}div.jsoneditor-menu>div.jsoneditor-modes{display:inline-block;float:left}div.jsoneditor-menu>div.jsoneditor-modes>button{background-image:none;width:auto;padding-left:6px;padding-right:6px}div.jsoneditor-menu>button.jsoneditor-separator,div.jsoneditor-menu>div.jsoneditor-modes>button.jsoneditor-separator{margin-left:10px}div.jsoneditor-menu a{font-family:arial,sans-serif;font-size:10pt;color:#fff;opacity:.8;vertical-align:middle}div.jsoneditor-menu a:hover{opacity:1}div.jsoneditor-menu a.jsoneditor-poweredBy{font-size:8pt;position:absolute;right:0;top:0;padding:10px}table.jsoneditor-search div.jsoneditor-results,table.jsoneditor-search input{font-family:arial,sans-serif;font-size:10pt;color:#1a1a1a;background:0 0}table.jsoneditor-search div.jsoneditor-results{color:#fff;padding-right:5px;line-height:24px;padding-top:2px}table.jsoneditor-search{position:absolute;right:4px;top:4px;border-collapse:collapse;border-spacing:0}table.jsoneditor-search div.jsoneditor-frame{border:1px solid transparent;background-color:#fff;padding:0 2px;margin:0}table.jsoneditor-search div.jsoneditor-frame table{border-collapse:collapse}table.jsoneditor-search input{width:120px;border:none;outline:0;margin:1px;line-height:20px}table.jsoneditor-search button{width:16px;height:24px;padding:0;margin:0;border:none;background:url('jsoneditor-icons.ffbb30248a6fc9adfc7f.svg');vertical-align:top}table.jsoneditor-search button:hover{background-color:transparent}table.jsoneditor-search button.jsoneditor-refresh{width:18px;background-position:-99px -73px}table.jsoneditor-search button.jsoneditor-next{cursor:pointer;background-position:-124px -73px}table.jsoneditor-search button.jsoneditor-next:hover{background-position:-124px -49px}table.jsoneditor-search button.jsoneditor-previous{cursor:pointer;background-position:-148px -73px;margin-right:2px}table.jsoneditor-search button.jsoneditor-previous:hover{background-position:-148px -49px}div.jsoneditor div.autocomplete.dropdown{position:absolute;background:#fff;box-shadow:2px 2px 12px rgba(128,128,128,.3);border:1px solid #d3d3d3;z-index:100;overflow-x:hidden;overflow-y:auto;cursor:default;margin:0;padding-left:2pt;padding-right:5pt;text-align:left;outline:0;font-family:"dejavu sans mono","droid sans mono",consolas,monaco,"lucida console","courier new",courier,monospace,sans-serif;font-size:10pt}div.jsoneditor div.autocomplete.dropdown .item{color:#333}div.jsoneditor div.autocomplete.dropdown .item.hover{background-color:#ddd}div.jsoneditor div.autocomplete.hint{color:#aaa;top:4px;left:4px}div.jsoneditor-treepath{padding:0 5px;overflow:hidden;white-space:nowrap;outline:0}div.jsoneditor-treepath.show-all{word-wrap:break-word;white-space:normal;position:absolute;background-color:#ebebeb;z-index:999;box-shadow:2px 2px 12px rgba(128,128,128,.3)}div.jsoneditor-treepath div.jsoneditor-contextmenu-root{position:absolute;left:0}div.jsoneditor-treepath span.jsoneditor-treepath-show-all-btn{position:absolute;background-color:#ebebeb;left:0;height:20px;padding:0 3px;cursor:pointer}div.jsoneditor-treepath.show-all span.jsoneditor-treepath-show-all-btn{display:none}div.jsoneditor-treepath span.jsoneditor-treepath-element{margin:1px;font-family:arial,sans-serif;font-size:10pt}div.jsoneditor-treepath span.jsoneditor-treepath-seperator{margin:2px;font-size:9pt;font-family:arial,sans-serif}div.jsoneditor-treepath span.jsoneditor-treepath-element:hover,div.jsoneditor-treepath span.jsoneditor-treepath-seperator:hover{cursor:pointer;text-decoration:underline}div.jsoneditor-statusbar{line-height:26px;height:26px;margin-top:-1px;color:grey;background-color:#ebebeb;border-top:1px solid #d3d3d3;box-sizing:border-box;font-size:10pt}div.jsoneditor-statusbar>.jsoneditor-curserinfo-label{margin:0 2px 0 4px}div.jsoneditor-statusbar>.jsoneditor-curserinfo-val{margin-right:12px}div.jsoneditor-statusbar>.jsoneditor-curserinfo-count{margin-left:4px}div.jsoneditor-statusbar>.jsoneditor-validation-error-icon{float:right;width:24px;height:24px;padding:0;margin-top:1px;background:url('jsoneditor-icons.ffbb30248a6fc9adfc7f.svg') -168px -48px;cursor:pointer}div.jsoneditor-statusbar>.jsoneditor-validation-error-count{float:right;margin:0 4px 0 0;cursor:pointer}div.jsoneditor-statusbar>.jsoneditor-parse-error-icon{float:right;width:24px;height:24px;padding:0;margin:1px;background:url('jsoneditor-icons.ffbb30248a6fc9adfc7f.svg') -25px 0}div.jsoneditor-navigation-bar{width:100%;height:26px;line-height:26px;padding:0;margin:0;border-bottom:1px solid #d3d3d3;box-sizing:border-box;color:grey;background-color:#ebebeb;overflow:hidden;font-family:arial,sans-serif;font-size:10pt}/*!
 * Selectr 2.4.0
 * https://github.com/Mobius1/Selectr
 *
 * Released under the MIT license
 */.selectr-container{position:relative}.selectr-container li{list-style:none}.selectr-hidden{position:absolute;overflow:hidden;clip:rect(0,0,0,0);width:1px;height:1px;margin:-1px;padding:0;border:0 none}.selectr-visible{position:absolute;left:0;top:0;width:100%;height:100%;opacity:0;z-index:11}.selectr-desktop.multiple .selectr-visible{display:none}.selectr-desktop.multiple.native-open .selectr-visible{top:100%;min-height:200px!important;height:auto;opacity:1;display:block}.selectr-container.multiple.selectr-mobile .selectr-selected{z-index:0}.selectr-selected{position:relative;z-index:1;box-sizing:border-box;width:100%;padding:7px 28px 7px 14px;cursor:pointer;border:1px solid #999;border-radius:3px;background-color:#fff}.selectr-selected::before{position:absolute;top:50%;right:10px;width:0;height:0;content:'';transform:rotate(0) translate3d(0,-50%,0);border-width:4px 4px 0 4px;border-style:solid;border-color:#6c7a86 transparent transparent}.selectr-container.native-open .selectr-selected::before,.selectr-container.open .selectr-selected::before{border-width:0 4px 4px 4px;border-style:solid;border-color:transparent transparent #6c7a86}.selectr-label{display:none;overflow:hidden;width:100%;white-space:nowrap;text-overflow:ellipsis}.selectr-placeholder{color:#6c7a86}.selectr-tags{margin:0;padding:0;white-space:normal}.has-selected .selectr-tags{margin:0 0 -2px}.selectr-tag{list-style:none;position:relative;float:left;padding:2px 25px 2px 8px;margin:0 2px 2px 0;cursor:default;color:#fff;border:medium none;border-radius:10px;background:#acb7bf none repeat scroll 0 0}.selectr-container.multiple.has-selected .selectr-selected{padding:5px 28px 5px 5px}.selectr-options-container{position:absolute;z-index:10000;top:calc(100% - 1px);left:0;display:none;box-sizing:border-box;width:100%;border-width:0 1px 1px;border-style:solid;border-color:transparent #999 #999;border-radius:0 0 3px 3px;background-color:#fff}.selectr-container.open .selectr-options-container{display:block}.selectr-input-container{position:relative;display:none}.selectr-clear,.selectr-input-clear,.selectr-tag-remove{position:absolute;top:50%;right:22px;width:20px;height:20px;padding:0;cursor:pointer;transform:translate3d(0,-50%,0);border:medium none;background-color:transparent;z-index:11}.selectr-clear,.selectr-input-clear{display:none}.selectr-container.has-selected .selectr-clear,.selectr-input-container.active .selectr-input-clear{display:block}.selectr-selected .selectr-tag-remove{right:2px}.selectr-clear::after,.selectr-clear::before,.selectr-input-clear::after,.selectr-input-clear::before,.selectr-tag-remove::after,.selectr-tag-remove::before{position:absolute;top:5px;left:9px;width:2px;height:10px;content:' ';background-color:#6c7a86}.selectr-tag-remove::after,.selectr-tag-remove::before{top:4px;width:3px;height:12px;background-color:#fff}.selectr-clear:before,.selectr-input-clear::before,.selectr-tag-remove::before{transform:rotate(45deg)}.selectr-clear:after,.selectr-input-clear::after,.selectr-tag-remove::after{transform:rotate(-45deg)}.selectr-input-container.active,.selectr-input-container.active .selectr-clear{display:block}.selectr-input{top:5px;left:5px;box-sizing:border-box;width:calc(100% - 30px);margin:10px 15px;padding:7px 30px 7px 9px;border:1px solid #999;border-radius:3px}.selectr-notice{display:none;box-sizing:border-box;width:100%;padding:8px 16px;border-top:1px solid #999;border-radius:0 0 3px 3px;background-color:#fff}.selectr-container.notice .selectr-notice{display:block}.selectr-container.notice .selectr-selected{border-radius:3px 3px 0 0}.selectr-options{position:relative;top:calc(100% + 2px);display:none;overflow-x:auto;overflow-y:scroll;max-height:200px;margin:0;padding:0}.selectr-container.notice .selectr-options-container,.selectr-container.open .selectr-input-container,.selectr-container.open .selectr-options{display:block}.selectr-option{position:relative;display:block;padding:5px 20px;list-style:outside none none;cursor:pointer;font-weight:400}.selectr-options.optgroups>.selectr-option{padding-left:25px}.selectr-optgroup{font-weight:700;padding:0}.selectr-optgroup--label{font-weight:700;margin-top:10px;padding:5px 15px}.selectr-match{text-decoration:underline}.selectr-option.selected{background-color:#ddd}.selectr-option.active{color:#fff;background-color:#5897fb}.selectr-option.disabled{opacity:.4}.selectr-option.excluded{display:none}.selectr-container.open .selectr-selected{border-color:#999 #999 transparent #999;border-radius:3px 3px 0 0}.selectr-container.open .selectr-selected::after{transform:rotate(180deg) translate3d(0,50%,0)}.selectr-disabled{opacity:.6}.has-selected .selectr-placeholder,.selectr-empty{display:none}.has-selected .selectr-label{display:block}.taggable .selectr-selected{padding:4px 28px 4px 4px}.taggable .selectr-selected::after{display:table;content:" ";clear:both}.taggable .selectr-label{width:auto}.taggable .selectr-tags{float:left;display:block}.taggable .selectr-placeholder{display:none}.input-tag{float:left;min-width:90px;width:auto}.selectr-tag-input{border:medium none;padding:3px 10px;width:100%;font-family:inherit;font-weight:inherit;font-size:inherit}.selectr-input-container.loading::after{position:absolute;top:50%;right:20px;width:20px;height:20px;content:'';transform:translate3d(0,-50%,0);transform-origin:50% 0 0;-webkit-animation:.5s linear 0s normal forwards infinite running spin;animation:.5s linear 0s normal forwards infinite running spin;border-width:3px;border-style:solid;border-color:#aaa #ddd #ddd;border-radius:50%}@-webkit-keyframes spin{0%{transform:rotate(0) translate3d(0,-50%,0)}100%{transform:rotate(360deg) translate3d(0,-50%,0)}}@keyframes spin{0%{transform:rotate(0) translate3d(0,-50%,0)}100%{transform:rotate(360deg) translate3d(0,-50%,0)}}.selectr-container.open.inverted .selectr-selected{border-color:transparent #999 #999;border-radius:0 0 3px 3px}.selectr-container.inverted .selectr-options-container{border-width:1px 1px 0;border-color:#999 #999 transparent;border-radius:3px 3px 0 0;background-color:#fff}.selectr-container.inverted .selectr-options-container{top:auto;bottom:calc(100% - 1px)}.selectr-container ::-moz-placeholder{color:#6c7a86;opacity:1}.selectr-container :-ms-input-placeholder{color:#6c7a86;opacity:1}.selectr-container ::placeholder{color:#6c7a86;opacity:1}
/*!-----------------------------------------------------------
 * Copyright (c) Microsoft Corporation. All rights reserved.
 * Version: 0.15.5(3d42593a5844407ab71d47b348ea3a8de5fec848)
 * Released under the MIT license
 * https://github.com/Microsoft/vscode/blob/master/LICENSE.txt
 *-----------------------------------------------------------*/.monaco-action-bar{text-align:right;overflow:hidden;white-space:nowrap}.monaco-action-bar .actions-container{display:flex;margin:0 auto;padding:0;width:100%;justify-content:flex-end}.monaco-action-bar.vertical .actions-container{display:inline-block}.monaco-action-bar.reverse .actions-container{flex-direction:row-reverse}.monaco-action-bar .action-item{cursor:pointer;display:inline-block;transition:transform 50ms ease;position:relative}.monaco-action-bar .action-item.disabled{cursor:default}.monaco-action-bar.animated .action-item.active{transform:scale(1.272019649)}.monaco-action-bar .action-item .icon{display:inline-block}.monaco-action-bar .action-label{font-size:11px;margin-right:4px}.monaco-action-bar .action-label.octicon{font-size:15px;line-height:35px;text-align:center}.monaco-action-bar .action-item.disabled .action-label,.monaco-action-bar .action-item.disabled .action-label:hover{opacity:.4}.monaco-action-bar.vertical{text-align:left}.monaco-action-bar.vertical .action-item{display:block}.monaco-action-bar.vertical .action-label.separator{display:block;border-bottom:1px solid #bbb;padding-top:1px;margin-left:.8em;margin-right:.8em}.monaco-action-bar.animated.vertical .action-item.active{transform:translate(5px)}.secondary-actions .monaco-action-bar .action-label{margin-left:6px}.monaco-action-bar .action-item.select-container{overflow:hidden;flex:1;max-width:170px;min-width:60px;display:flex;align-items:center;justify-content:center}.monaco-aria-container{position:absolute;left:-999em}.monaco-custom-checkbox{margin-left:2px;float:left;cursor:pointer;overflow:hidden;opacity:.7;width:20px;height:20px;border:1px solid transparent;padding:1px;-o-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-o-user-select:none;-ms-user-select:none;user-select:none}.monaco-custom-checkbox.checked,.monaco-custom-checkbox:hover{opacity:1}.hc-black .monaco-custom-checkbox,.hc-black .monaco-custom-checkbox:hover{background:none}.context-view{position:absolute;z-index:9}.monaco-count-badge{padding:.3em .5em;border-radius:1em;font-size:85%;min-width:1.6em;line-height:1em;font-weight:400;text-align:center;display:inline-block;box-sizing:border-box}.monaco-findInput{position:relative}.monaco-findInput .monaco-inputbox{font-size:13px;width:100%;height:25px}.monaco-findInput>.controls{position:absolute;top:3px;right:2px}.vs .monaco-findInput.disabled{background-color:#e1e1e1}.vs-dark .monaco-findInput.disabled{background-color:#333}.monaco-findInput.highlight-0 .controls{-webkit-animation:monaco-findInput-highlight-0 .1s linear 0s;animation:monaco-findInput-highlight-0 .1s linear 0s}.monaco-findInput.highlight-1 .controls{-webkit-animation:monaco-findInput-highlight-1 .1s linear 0s;animation:monaco-findInput-highlight-1 .1s linear 0s}.hc-black .monaco-findInput.highlight-0 .controls,.vs-dark .monaco-findInput.highlight-0 .controls{-webkit-animation:monaco-findInput-highlight-dark-0 .1s linear 0s;animation:monaco-findInput-highlight-dark-0 .1s linear 0s}.hc-black .monaco-findInput.highlight-1 .controls,.vs-dark .monaco-findInput.highlight-1 .controls{-webkit-animation:monaco-findInput-highlight-dark-1 .1s linear 0s;animation:monaco-findInput-highlight-dark-1 .1s linear 0s}@-webkit-keyframes monaco-findInput-highlight-0{0%{background:rgba(253,255,0,.8)}to{background:transparent}}@keyframes monaco-findInput-highlight-0{0%{background:rgba(253,255,0,.8)}to{background:transparent}}@-webkit-keyframes monaco-findInput-highlight-1{0%{background:rgba(253,255,0,.8)}99%{background:transparent}}@keyframes monaco-findInput-highlight-1{0%{background:rgba(253,255,0,.8)}99%{background:transparent}}@-webkit-keyframes monaco-findInput-highlight-dark-0{0%{background:hsla(0,0%,100%,.44)}to{background:transparent}}@keyframes monaco-findInput-highlight-dark-0{0%{background:hsla(0,0%,100%,.44)}to{background:transparent}}@-webkit-keyframes monaco-findInput-highlight-dark-1{0%{background:hsla(0,0%,100%,.44)}99%{background:transparent}}@keyframes monaco-findInput-highlight-dark-1{0%{background:hsla(0,0%,100%,.44)}99%{background:transparent}}.vs .monaco-custom-checkbox.monaco-case-sensitive{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiI+PHN0eWxlIHR5cGU9InRleHQvY3NzIj4uc3Qwe29wYWNpdHk6MDtmaWxsOiNGNkY2RjY7fSAuc3Qxe2ZpbGw6I0Y2RjZGNjt9IC5zdDJ7ZmlsbDojNDI0MjQyO308L3N0eWxlPjxnIGlkPSJvdXRsaW5lIj48cmVjdCBjbGFzcz0ic3QwIiB3aWR0aD0iMTYiIGhlaWdodD0iMTYiLz48cGF0aCBjbGFzcz0ic3QxIiBkPSJNMTQuMTc2IDUuNTkyYy0uNTU1LS42LTEuMzM2LS45MDQtMi4zMjItLjkwNC0uMjU4IDAtLjUyMS4wMjQtLjc4NC4wNzItLjI0Ni4wNDQtLjQ3OS4xMDEtLjcuMTY5LS4yMjguMDctLjQzMi4xNDctLjYxMy4yMjktLjIyLjA5OS0uMzg5LjE5Ni0uNTEyLjI4NGwtLjQxOS4yOTl2Mi43MDFjLS4wODYuMTA4LS4xNjIuMjIzLS4yMjkuMzQ0bC0yLjQ1LTYuMzU0aC0yLjM5NGwtMy43NTMgOS44MDR2LjU5OGgzLjAyNWwuODM4LTIuMzVoMi4xNjdsLjg5MSAyLjM1aDMuMjM3bC0uMDAxLS4wMDNjLjMwNS4wOTIuNjMzLjE1Ljk5My4xNS4zNDQgMCAuNjcxLS4wNDkuOTc4LS4xNDZoMi44NTN2LTQuOTAzYy0uMDAxLS45NzUtLjI3MS0xLjc2My0uODA1LTIuMzR6Ii8+PC9nPjxnIGlkPSJpY29uX3g1Rl9iZyI+PHBhdGggY2xhc3M9InN0MiIgZD0iTTcuNjExIDExLjgzNGwtLjg5MS0yLjM1aC0zLjU2MmwtLjgzOCAyLjM1aC0xLjA5NWwzLjIxNy04LjQwMmgxLjAybDMuMjQgOC40MDJoLTEuMDkxem0tMi41MzEtNi44MTRsLS4wNDQtLjEzNS0uMDM4LS4xNTYtLjAyOS0uMTUyLS4wMjQtLjEyNmgtLjAyM2wtLjAyMS4xMjYtLjAzMi4xNTItLjAzOC4xNTYtLjA0NC4xMzUtMS4zMDcgMy41NzRoMi45MThsLTEuMzE4LTMuNTc0eiIvPjxwYXRoIGNsYXNzPSJzdDIiIGQ9Ik0xMy4wMiAxMS44MzR2LS45MzhoLS4wMjNjLS4xOTkuMzUyLS40NTYuNjItLjc3MS44MDZzLS42NzMuMjc4LTEuMDc1LjI3OGMtLjMxMyAwLS41ODgtLjA0NS0uODI2LS4xMzVzLS40MzgtLjIxMi0uNTk4LS4zNjYtLjI4MS0uMzM4LS4zNjMtLjU1MS0uMTI0LS40NDItLjEyNC0uNjg4YzAtLjI2Mi4wMzktLjUwMi4xMTctLjcyMXMuMTk4LS40MTIuMzYtLjU4LjM2Ny0uMzA4LjYxNS0uNDE5LjU0NC0uMTkuODg4LS4yMzdsMS44MTEtLjI1MmMwLS4yNzMtLjAyOS0uNTA3LS4wODgtLjdzLS4xNDMtLjM1MS0uMjUyLS40NzItLjI0MS0uMjEtLjM5Ni0uMjY3LS4zMjUtLjA4NS0uNTEzLS4wODVjLS4zNjMgMC0uNzE0LjA2NC0xLjA1Mi4xOTNzLS42MzguMzEtLjkwNC41NHYtLjk4NGMuMDgyLS4wNTkuMTk2LS4xMjEuMzQzLS4xODhzLjMxMi0uMTI4LjQ5NS0uMTg1LjM3OC0uMTA0LjU4My0uMTQxLjQwNy0uMDU2LjYwNi0uMDU2Yy42OTkgMCAxLjIyOS4xOTQgMS41ODguNTgzcy41MzkuOTQyLjUzOSAxLjY2MXYzLjkwMmgtLjk2em0tMS40NTQtMi44M2MtLjI3My4wMzUtLjQ5OC4wODUtLjY3NC4xNDlzLS4zMTMuMTQ0LS40MS4yMzctLjE2NS4yMDUtLjIwMi4zMzQtLjA1NS4yNzYtLjA1NS40NGMwIC4xNDEuMDI1LjI3MS4wNzYuMzkzcy4xMjQuMjI3LjIyLjMxNi4yMTUuMTYuMzU3LjIxMS4zMDguMDc2LjQ5NS4wNzZjLjI0MiAwIC40NjUtLjA0NS42NjgtLjEzNXMuMzc4LS4yMTQuNTI0LS4zNzIuMjYxLS4zNDQuMzQzLS41NTcuMTIzLS40NDIuMTIzLS42ODh2LS42MDlsLTEuNDY1LjIwNXoiLz48L2c+PC9zdmc+) 50% no-repeat}.hc-black .monaco-custom-checkbox.monaco-case-sensitive,.hc-black .monaco-custom-checkbox.monaco-case-sensitive:hover,.vs-dark .monaco-custom-checkbox.monaco-case-sensitive{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiI+PHN0eWxlIHR5cGU9InRleHQvY3NzIj4uc3Qwe29wYWNpdHk6MDtmaWxsOiMyNjI2MjY7fSAuc3Qxe2ZpbGw6IzI2MjYyNjt9IC5zdDJ7ZmlsbDojQzVDNUM1O308L3N0eWxlPjxnIGlkPSJvdXRsaW5lIj48cmVjdCBjbGFzcz0ic3QwIiB3aWR0aD0iMTYiIGhlaWdodD0iMTYiLz48cGF0aCBjbGFzcz0ic3QxIiBkPSJNMTQuMTc2IDUuNTkyYy0uNTU1LS42LTEuMzM2LS45MDQtMi4zMjItLjkwNC0uMjU4IDAtLjUyMS4wMjQtLjc4NC4wNzItLjI0Ni4wNDQtLjQ3OS4xMDEtLjcuMTY5LS4yMjguMDctLjQzMi4xNDctLjYxMy4yMjktLjIyLjA5OS0uMzg5LjE5Ni0uNTEyLjI4NGwtLjQxOS4yOTl2Mi43MDFjLS4wODYuMTA4LS4xNjIuMjIzLS4yMjkuMzQ0bC0yLjQ1LTYuMzU0aC0yLjM5NGwtMy43NTMgOS44MDR2LjU5OGgzLjAyNWwuODM4LTIuMzVoMi4xNjdsLjg5MSAyLjM1aDMuMjM3bC0uMDAxLS4wMDNjLjMwNS4wOTIuNjMzLjE1Ljk5My4xNS4zNDQgMCAuNjcxLS4wNDkuOTc4LS4xNDZoMi44NTN2LTQuOTAzYy0uMDAxLS45NzUtLjI3MS0xLjc2My0uODA1LTIuMzR6Ii8+PC9nPjxnIGlkPSJpY29uX3g1Rl9iZyI+PHBhdGggY2xhc3M9InN0MiIgZD0iTTcuNjExIDExLjgzNGwtLjg5MS0yLjM1aC0zLjU2MmwtLjgzOCAyLjM1aC0xLjA5NWwzLjIxNy04LjQwMmgxLjAybDMuMjQgOC40MDJoLTEuMDkxem0tMi41MzEtNi44MTRsLS4wNDQtLjEzNS0uMDM4LS4xNTYtLjAyOS0uMTUyLS4wMjQtLjEyNmgtLjAyM2wtLjAyMS4xMjYtLjAzMi4xNTItLjAzOC4xNTYtLjA0NC4xMzUtMS4zMDcgMy41NzRoMi45MThsLTEuMzE4LTMuNTc0eiIvPjxwYXRoIGNsYXNzPSJzdDIiIGQ9Ik0xMy4wMiAxMS44MzR2LS45MzhoLS4wMjNjLS4xOTkuMzUyLS40NTYuNjItLjc3MS44MDZzLS42NzMuMjc4LTEuMDc1LjI3OGMtLjMxMyAwLS41ODgtLjA0NS0uODI2LS4xMzVzLS40MzgtLjIxMi0uNTk4LS4zNjYtLjI4MS0uMzM4LS4zNjMtLjU1MS0uMTI0LS40NDItLjEyNC0uNjg4YzAtLjI2Mi4wMzktLjUwMi4xMTctLjcyMXMuMTk4LS40MTIuMzYtLjU4LjM2Ny0uMzA4LjYxNS0uNDE5LjU0NC0uMTkuODg4LS4yMzdsMS44MTEtLjI1MmMwLS4yNzMtLjAyOS0uNTA3LS4wODgtLjdzLS4xNDMtLjM1MS0uMjUyLS40NzItLjI0MS0uMjEtLjM5Ni0uMjY3LS4zMjUtLjA4NS0uNTEzLS4wODVjLS4zNjMgMC0uNzE0LjA2NC0xLjA1Mi4xOTNzLS42MzguMzEtLjkwNC41NHYtLjk4NGMuMDgyLS4wNTkuMTk2LS4xMjEuMzQzLS4xODhzLjMxMi0uMTI4LjQ5NS0uMTg1LjM3OC0uMTA0LjU4My0uMTQxLjQwNy0uMDU2LjYwNi0uMDU2Yy42OTkgMCAxLjIyOS4xOTQgMS41ODguNTgzcy41MzkuOTQyLjUzOSAxLjY2MXYzLjkwMmgtLjk2em0tMS40NTQtMi44M2MtLjI3My4wMzUtLjQ5OC4wODUtLjY3NC4xNDlzLS4zMTMuMTQ0LS40MS4yMzctLjE2NS4yMDUtLjIwMi4zMzQtLjA1NS4yNzYtLjA1NS40NGMwIC4xNDEuMDI1LjI3MS4wNzYuMzkzcy4xMjQuMjI3LjIyLjMxNi4yMTUuMTYuMzU3LjIxMS4zMDguMDc2LjQ5NS4wNzZjLjI0MiAwIC40NjUtLjA0NS42NjgtLjEzNXMuMzc4LS4yMTQuNTI0LS4zNzIuMjYxLS4zNDQuMzQzLS41NTcuMTIzLS40NDIuMTIzLS42ODh2LS42MDlsLTEuNDY1LjIwNXoiLz48L2c+PC9zdmc+) 50% no-repeat}.vs .monaco-custom-checkbox.monaco-whole-word{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiI+PHN0eWxlIHR5cGU9InRleHQvY3NzIj4uc3Qwe29wYWNpdHk6MDtmaWxsOiNGNkY2RjY7fSAuc3Qxe2ZpbGw6I0Y2RjZGNjt9IC5zdDJ7ZmlsbDojNDI0MjQyO308L3N0eWxlPjxnIGlkPSJvdXRsaW5lIj48cmVjdCBjbGFzcz0ic3QwIiB3aWR0aD0iMTYiIGhlaWdodD0iMTYiLz48cGF0aCBjbGFzcz0ic3QxIiBkPSJNMTYgNC4wMjJ2LTMuMDIyaC0xNi4wMTR2My4wMjJoMy4wNDZsLTMuMDQzIDcuOTQ1aC0uMDA0di4wMWwuMDE1IDEuMDIzaC0uMDE0djEuOTkxaDE2LjAxNHYtMy4wMjNoLTF2LTcuOTQ2aDF6bS01LjkxNCA1LjMwMWMwIC4yMzMtLjAyMy40NDEtLjA2Ni41OTUtLjA0Ny4xNjQtLjA5OS4yNDctLjEyNy4yODRsLS4wNzguMDY5LS4xNTEuMDI2LS4xMTUtLjAxNy0uMTM5LS4xMzdjLS4wMzEtLjA3OC0uMTEyLS4zMzItLjExMi0uNTY2IDAtLjI1NC4wOTEtLjU2MS4xMjYtLjY1NmwuMDY5LS4xNDEuMTA5LS4wODIuMTc4LS4wMjdjLjA3NyAwIC4xMTcuMDE0LjE3Ny4wNTZsLjA4Ny4xNzkuMDUxLjIzNy0uMDA5LjE4em0tMy42OTUtNS4zMDF2Mi44OTNsLTEuMTE2LTIuODkzaDEuMTE2em0tMy4wMjYgNy4wMmgxLjU3M2wuMzUxLjkyNmgtMi4yNTRsLjMzLS45MjZ6bTguNjM1LTQuMzU0Yy0uMjA2LS4yLS40MzEtLjM4LS42OTUtLjUxMi0uMzk2LS4xOTgtLjg1My0uMjk4LTEuMzU1LS4yOTgtLjIxNSAwLS40MjMuMDItLjYyMS4wNTh2LTEuOTE0aDIuNjcxdjIuNjY2eiIvPjwvZz48ZyBpZD0iaWNvbl94NUZfYmciPjxyZWN0IHg9IjEzIiB5PSI0IiBjbGFzcz0ic3QyIiB3aWR0aD0iMSIgaGVpZ2h0PSI4Ii8+PHBhdGggY2xhc3M9InN0MiIgZD0iTTExLjIyNSA4LjM4N2MtLjA3OC0uMjk5LS4xOTktLjU2Mi0uMzYtLjc4NnMtLjM2NS0uNDAxLS42MDktLjUzLS41MzQtLjE5My0uODY2LS4xOTNjLS4xOTggMC0uMzguMDI0LS41NDcuMDczLS4xNjUuMDQ5LS4zMTYuMTE3LS40NTMuMjA1LS4xMzYuMDg4LS4yNTcuMTk0LS4zNjUuMzE4bC0uMTc5LjI1OHYtMy4xNTRoLS44OTN2Ny40MjJoLjg5M3YtLjU3NWwuMTI2LjE3NWMuMDg3LjEwMi4xODkuMTkuMzA0LjI2OS4xMTcuMDc4LjI0OS4xNC4zOTguMTg2LjE0OS4wNDYuMzE0LjA2OC40OTguMDY4LjM1MyAwIC42NjYtLjA3MS45MzctLjIxMi4yNzItLjE0My40OTktLjMzOC42ODItLjU4Ni4xODMtLjI1LjMyMS0uNTQzLjQxNC0uODc5LjA5My0uMzM4LjE0LS43MDMuMTQtMS4wOTctLjAwMS0uMzQyLS4wNC0uNjYzLS4xMi0uOTYyem0tMS40NzktLjYwN2MuMTUxLjA3MS4yODIuMTc2LjM5LjMxNC4xMDkuMTQuMTk0LjMxMy4yNTUuNTE3LjA1MS4xNzQuMDgyLjM3MS4wODkuNTg3bC0uMDA3LjEyNWMwIC4zMjctLjAzMy42Mi0uMS44NjktLjA2Ny4yNDYtLjE2MS40NTMtLjI3OC42MTQtLjExNy4xNjItLjI2LjI4NS0uNDIxLjM2Ni0uMzIyLjE2Mi0uNzYuMTY2LTEuMDY5LjAxNS0uMTUzLS4wNzUtLjI4Ni0uMTc1LS4zOTMtLjI5Ni0uMDg1LS4wOTYtLjE1Ni0uMjE2LS4yMTgtLjM2NyAwIDAtLjE3OS0uNDQ3LS4xNzktLjk0NyAwLS41LjE3OS0xLjAwMi4xNzktMS4wMDIuMDYyLS4xNzcuMTM2LS4zMTguMjI0LS40My4xMTQtLjE0My4yNTYtLjI1OS40MjQtLjM0NS4xNjgtLjA4Ni4zNjUtLjEyOS41ODctLjEyOS4xOSAwIC4zNjQuMDM3LjUxNy4xMDl6Ii8+PHJlY3QgeD0iLjk4NyIgeT0iMiIgY2xhc3M9InN0MiIgd2lkdGg9IjE0LjAxMyIgaGVpZ2h0PSIxLjAyMyIvPjxyZWN0IHg9Ii45ODciIHk9IjEyLjk2OCIgY2xhc3M9InN0MiIgd2lkdGg9IjE0LjAxMyIgaGVpZ2h0PSIxLjAyMyIvPjxwYXRoIGNsYXNzPSJzdDIiIGQ9Ik0xLjk5MSAxMi4wMzFsLjcyOC0yLjAzMWgyLjIxOWwuNzc4IDIuMDMxaDEuMDgybC0yLjQ4NS03LjE1OGgtLjk0MWwtMi40NDEgNy4wODYtLjAyNS4wNzJoMS4wODV6bTEuODI3LTUuNjA5aC4wMjJsLjkxNCAyLjc1M2gtMS44NDFsLjkwNS0yLjc1M3oiLz48L2c+PC9zdmc+) 50% no-repeat}.hc-black .monaco-custom-checkbox.monaco-whole-word,.hc-black .monaco-custom-checkbox.monaco-whole-word:hover,.vs-dark .monaco-custom-checkbox.monaco-whole-word{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiI+PHN0eWxlIHR5cGU9InRleHQvY3NzIj4uc3Qwe29wYWNpdHk6MDtmaWxsOiMyNjI2MjY7fSAuc3Qxe2ZpbGw6IzI2MjYyNjt9IC5zdDJ7ZmlsbDojQzVDNUM1O308L3N0eWxlPjxnIGlkPSJvdXRsaW5lIj48cmVjdCBjbGFzcz0ic3QwIiB3aWR0aD0iMTYiIGhlaWdodD0iMTYiLz48cGF0aCBjbGFzcz0ic3QxIiBkPSJNMTYgNC4wMjJ2LTMuMDIyaC0xNi4wMTR2My4wMjJoMy4wNDZsLTMuMDQzIDcuOTQ1aC0uMDA0di4wMWwuMDE1IDEuMDIzaC0uMDE0djEuOTkxaDE2LjAxNHYtMy4wMjNoLTF2LTcuOTQ2aDF6bS01LjkxNCA1LjMwMWMwIC4yMzMtLjAyMy40NDEtLjA2Ni41OTUtLjA0Ny4xNjQtLjA5OS4yNDctLjEyNy4yODRsLS4wNzguMDY5LS4xNTEuMDI2LS4xMTUtLjAxNy0uMTM5LS4xMzdjLS4wMzEtLjA3OC0uMTEyLS4zMzItLjExMi0uNTY2IDAtLjI1NC4wOTEtLjU2MS4xMjYtLjY1NmwuMDY5LS4xNDEuMTA5LS4wODIuMTc4LS4wMjdjLjA3NyAwIC4xMTcuMDE0LjE3Ny4wNTZsLjA4Ny4xNzkuMDUxLjIzNy0uMDA5LjE4em0tMy42OTUtNS4zMDF2Mi44OTNsLTEuMTE2LTIuODkzaDEuMTE2em0tMy4wMjYgNy4wMmgxLjU3M2wuMzUxLjkyNmgtMi4yNTRsLjMzLS45MjZ6bTguNjM1LTQuMzU0Yy0uMjA2LS4yLS40MzEtLjM4LS42OTUtLjUxMi0uMzk2LS4xOTgtLjg1My0uMjk4LTEuMzU1LS4yOTgtLjIxNSAwLS40MjMuMDItLjYyMS4wNTh2LTEuOTE0aDIuNjcxdjIuNjY2eiIvPjwvZz48ZyBpZD0iaWNvbl94NUZfYmciPjxyZWN0IHg9IjEzIiB5PSI0IiBjbGFzcz0ic3QyIiB3aWR0aD0iMSIgaGVpZ2h0PSI4Ii8+PHBhdGggY2xhc3M9InN0MiIgZD0iTTExLjIyNSA4LjM4N2MtLjA3OC0uMjk5LS4xOTktLjU2Mi0uMzYtLjc4NnMtLjM2NS0uNDAxLS42MDktLjUzLS41MzQtLjE5My0uODY2LS4xOTNjLS4xOTggMC0uMzguMDI0LS41NDcuMDczLS4xNjUuMDQ5LS4zMTYuMTE3LS40NTMuMjA1LS4xMzYuMDg4LS4yNTcuMTk0LS4zNjUuMzE4bC0uMTc5LjI1OHYtMy4xNTRoLS44OTN2Ny40MjJoLjg5M3YtLjU3NWwuMTI2LjE3NWMuMDg3LjEwMi4xODkuMTkuMzA0LjI2OS4xMTcuMDc4LjI0OS4xNC4zOTguMTg2LjE0OS4wNDYuMzE0LjA2OC40OTguMDY4LjM1MyAwIC42NjYtLjA3MS45MzctLjIxMi4yNzItLjE0My40OTktLjMzOC42ODItLjU4Ni4xODMtLjI1LjMyMS0uNTQzLjQxNC0uODc5LjA5My0uMzM4LjE0LS43MDMuMTQtMS4wOTctLjAwMS0uMzQyLS4wNC0uNjYzLS4xMi0uOTYyem0tMS40NzktLjYwN2MuMTUxLjA3MS4yODIuMTc2LjM5LjMxNC4xMDkuMTQuMTk0LjMxMy4yNTUuNTE3LjA1MS4xNzQuMDgyLjM3MS4wODkuNTg3bC0uMDA3LjEyNWMwIC4zMjctLjAzMy42Mi0uMS44NjktLjA2Ny4yNDYtLjE2MS40NTMtLjI3OC42MTQtLjExNy4xNjItLjI2LjI4NS0uNDIxLjM2Ni0uMzIyLjE2Mi0uNzYuMTY2LTEuMDY5LjAxNS0uMTUzLS4wNzUtLjI4Ni0uMTc1LS4zOTMtLjI5Ni0uMDg1LS4wOTYtLjE1Ni0uMjE2LS4yMTgtLjM2NyAwIDAtLjE3OS0uNDQ3LS4xNzktLjk0NyAwLS41LjE3OS0xLjAwMi4xNzktMS4wMDIuMDYyLS4xNzcuMTM2LS4zMTguMjI0LS40My4xMTQtLjE0My4yNTYtLjI1OS40MjQtLjM0NS4xNjgtLjA4Ni4zNjUtLjEyOS41ODctLjEyOS4xOSAwIC4zNjQuMDM3LjUxNy4xMDl6Ii8+PHJlY3QgeD0iLjk4NyIgeT0iMiIgY2xhc3M9InN0MiIgd2lkdGg9IjE0LjAxMyIgaGVpZ2h0PSIxLjAyMyIvPjxyZWN0IHg9Ii45ODciIHk9IjEyLjk2OCIgY2xhc3M9InN0MiIgd2lkdGg9IjE0LjAxMyIgaGVpZ2h0PSIxLjAyMyIvPjxwYXRoIGNsYXNzPSJzdDIiIGQ9Ik0xLjk5MSAxMi4wMzFsLjcyOC0yLjAzMWgyLjIxOWwuNzc4IDIuMDMxaDEuMDgybC0yLjQ4NS03LjE1OGgtLjk0MWwtMi40NDEgNy4wODYtLjAyNS4wNzJoMS4wODV6bTEuODI3LTUuNjA5aC4wMjJsLjkxNCAyLjc1M2gtMS44NDFsLjkwNS0yLjc1M3oiLz48L2c+PC9zdmc+) 50% no-repeat}.vs .monaco-custom-checkbox.monaco-regex{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiI+PHBvbHlnb24gZmlsbD0iI0Y2RjZGNiIgcG9pbnRzPSIxMy42NCw3LjM5NiAxMi4xNjksMi44OTggMTAuNzA2LDMuNzYxIDExLjA4NywyIDYuNTU3LDIgNi45MzYsMy43NjIgNS40NzMsMi44OTggNCw3LjM5NiA1LjY4Miw3LjU1NCA0LjUxMyw4LjU2MSA1LjAxMyw5IDIsOSAyLDE0IDcsMTQgNywxMC43NDcgNy45NzgsMTEuNjA2IDguODIsOS43MjUgOS42NjEsMTEuNjAyIDEzLjE0NCw4LjU2MiAxMS45NjgsNy41NTQiLz48ZyBmaWxsPSIjNDI0MjQyIj48cGF0aCBkPSJNMTIuMzAxIDYuNTE4bC0yLjc3Mi4yNjIgMi4wODYgMS43ODgtMS41OTQgMS4zOTItMS4yMDEtMi42ODItMS4yMDEgMi42ODItMS41ODMtMS4zOTIgMi4wNzUtMS43ODgtMi43NzEtLjI2Mi42OTYtMi4xMjYgMi4zNTggMS4zOTItLjU5OS0yLjc4NGgyLjA1M2wtLjYwMiAyLjc4MyAyLjM1OS0xLjM5Mi42OTYgMi4xMjd6Ii8+PHJlY3QgeD0iMyIgeT0iMTAiIHdpZHRoPSIzIiBoZWlnaHQ9IjMiLz48L2c+PC9zdmc+) 50% no-repeat}.hc-black .monaco-custom-checkbox.monaco-regex,.hc-black .monaco-custom-checkbox.monaco-regex:hover,.vs-dark .monaco-custom-checkbox.monaco-regex{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiI+PHBvbHlnb24gZmlsbD0iIzJkMmQzMCIgcG9pbnRzPSIxMy42NCw3LjM5NiAxMi4xNjksMi44OTggMTAuNzA2LDMuNzYxIDExLjA4NywyIDYuNTU3LDIgNi45MzYsMy43NjIgNS40NzMsMi44OTggNCw3LjM5NiA1LjY4Miw3LjU1NCA0LjUxMyw4LjU2MSA1LjAxMyw5IDIsOSAyLDE0IDcsMTQgNywxMC43NDcgNy45NzgsMTEuNjA2IDguODIsOS43MjUgOS42NjEsMTEuNjAyIDEzLjE0NCw4LjU2MiAxMS45NjgsNy41NTQiLz48ZyBmaWxsPSIjQzVDNUM1Ij48cGF0aCBkPSJNMTIuMzAxIDYuNTE4bC0yLjc3Mi4yNjIgMi4wODYgMS43ODgtMS41OTQgMS4zOTItMS4yMDEtMi42ODItMS4yMDEgMi42ODItMS41ODMtMS4zOTIgMi4wNzUtMS43ODgtMi43NzEtLjI2Mi42OTYtMi4xMjYgMi4zNTggMS4zOTItLjU5OS0yLjc4NGgyLjA1M2wtLjYwMiAyLjc4MyAyLjM1OS0xLjM5Mi42OTYgMi4xMjd6Ii8+PHJlY3QgeD0iMyIgeT0iMTAiIHdpZHRoPSIzIiBoZWlnaHQ9IjMiLz48L2c+PC9zdmc+) 50% no-repeat}.monaco-icon-label{display:flex;overflow:hidden;text-overflow:ellipsis}.monaco-icon-label:before{background-size:16px;background-position:0;background-repeat:no-repeat;padding-right:6px;width:16px;height:22px;display:inline-block;-webkit-font-smoothing:antialiased;vertical-align:top;flex-shrink:0}.monaco-icon-label>.monaco-icon-label-description-container{overflow:hidden;text-overflow:ellipsis}.monaco-icon-label>.monaco-icon-label-description-container>.label-name{color:inherit;white-space:pre}.monaco-icon-label>.monaco-icon-label-description-container>.label-description{opacity:.7;margin-left:.5em;font-size:.9em;white-space:pre}.monaco-icon-label.italic>.monaco-icon-label-description-container>.label-description,.monaco-icon-label.italic>.monaco-icon-label-description-container>.label-name{font-style:italic}.monaco-icon-label:after{opacity:.75;font-size:90%;font-weight:600;padding:0 12px 0 5px;margin-left:auto;text-align:center}.monaco-list:focus .selected .monaco-icon-label,.monaco-list:focus .selected .monaco-icon-label:after,.monaco-tree.focused .selected .monaco-icon-label,.monaco-tree.focused .selected .monaco-icon-label:after{color:inherit!important}.monaco-list-row.focused.selected .label-description,.monaco-list-row.selected .label-description,.monaco-tree-row.focused.selected .label-description,.monaco-tree-row.selected .label-description{opacity:.8}.monaco-inputbox{position:relative;display:block;padding:0;-o-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;line-height:auto!important;font-size:inherit}.monaco-inputbox.idle{border:1px solid transparent}.monaco-inputbox>.wrapper>.input,.monaco-inputbox>.wrapper>.mirror{padding:4px}.monaco-inputbox>.wrapper{position:relative;width:100%;height:100%}.monaco-inputbox>.wrapper>.input{display:inline-block;-o-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;width:100%;height:100%;line-height:inherit;border:none;font-family:inherit;font-size:inherit;resize:none;color:inherit}.monaco-inputbox>.wrapper>input{text-overflow:ellipsis}.monaco-inputbox>.wrapper>textarea.input{display:block;overflow:hidden}.monaco-inputbox>.wrapper>.mirror{position:absolute;display:inline-block;width:100%;top:0;left:0;-o-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;white-space:pre-wrap;visibility:hidden;min-height:26px;word-wrap:break-word}.monaco-inputbox-container{text-align:right}.monaco-inputbox-container .monaco-inputbox-message{display:inline-block;overflow:hidden;text-align:left;width:100%;-o-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;padding:.4em;font-size:12px;line-height:17px;min-height:34px;margin-top:-1px;word-wrap:break-word}.monaco-inputbox .monaco-action-bar{position:absolute;right:2px;top:4px}.monaco-inputbox .monaco-action-bar .action-item{margin-left:2px}.monaco-inputbox .monaco-action-bar .action-item .icon{background-repeat:no-repeat;width:16px;height:16px}.monaco-keybinding{display:flex;align-items:center;line-height:10px}.monaco-keybinding>.monaco-keybinding-key{display:inline-block;border:1px solid hsla(0,0%,80%,.4);border-bottom-color:hsla(0,0%,73%,.4);border-radius:3px;box-shadow:inset 0 -1px 0 hsla(0,0%,73%,.4);background-color:hsla(0,0%,87%,.4);vertical-align:middle;color:#555;font-size:11px;padding:3px 5px}.hc-black .monaco-keybinding>.monaco-keybinding-key,.vs-dark .monaco-keybinding>.monaco-keybinding-key{background-color:hsla(0,0%,50%,.17);color:#ccc;border:1px solid rgba(51,51,51,.6);border-bottom-color:rgba(68,68,68,.6);box-shadow:inset 0 -1px 0 rgba(68,68,68,.6)}.monaco-keybinding>.monaco-keybinding-key-separator{display:inline-block}.monaco-keybinding>.monaco-keybinding-key-chord-separator{width:2px}.monaco-list{position:relative;height:100%;width:100%;white-space:nowrap;-webkit-user-select:none;-moz-user-select:-moz-none;-ms-user-select:none;-o-user-select:none;user-select:none}.monaco-list>.monaco-scrollable-element{height:100%}.monaco-list-rows{position:relative;width:100%;height:100%}.monaco-list-row{position:absolute;-o-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;cursor:pointer;overflow:hidden;width:100%;touch-action:none}.monaco-list-row.scrolling{display:none!important}.monaco-list.element-focused,.monaco-list.selection-multiple,.monaco-list.selection-single{outline:0!important}.monaco-menu .monaco-action-bar.vertical{margin-left:0;overflow:visible}.monaco-menu .monaco-action-bar.vertical .actions-container{display:block}.monaco-menu .monaco-action-bar.vertical .action-item{padding:0;transform:none;display:flex}.monaco-menu .monaco-action-bar.vertical .action-item.active{transform:none}.monaco-menu .monaco-action-bar.vertical .action-menu-item{flex:1 1 auto;display:flex;height:2em;align-items:center}.monaco-menu .monaco-action-bar.vertical .action-label{flex:1 1 auto;text-decoration:none;padding:0 1em;background:none;font-size:12px;line-height:1}.monaco-menu .monaco-action-bar.vertical .keybinding,.monaco-menu .monaco-action-bar.vertical .submenu-indicator{display:inline-block;flex:2 1 auto;padding:0 1em;text-align:right;font-size:12px;line-height:1}.monaco-menu .monaco-action-bar.vertical .submenu-indicator{height:100%;-webkit-mask:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxNCAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxwYXRoIGQ9Ik00LjUyMDUxIDEyLjM2NDNMOS44Nzc5MyA3TDQuNTIwNTEgMS42MzU3NDJMNS4xMzU3NCAxLjAyMDUwNzhMMTEuMTIyMSA3TDUuMTM1NzQgMTIuOTc5NUw0LjUyMDUxIDEyLjM2NDNaIiBmaWxsPSJibGFjayIvPg0KPC9zdmc+DQo=) no-repeat 90% 50%/13px 13px;mask:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxNCAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxwYXRoIGQ9Ik00LjUyMDUxIDEyLjM2NDNMOS44Nzc5MyA3TDQuNTIwNTEgMS42MzU3NDJMNS4xMzU3NCAxLjAyMDUwNzhMMTEuMTIyMSA3TDUuMTM1NzQgMTIuOTc5NUw0LjUyMDUxIDEyLjM2NDNaIiBmaWxsPSJibGFjayIvPg0KPC9zdmc+DQo=) no-repeat 90% 50%/13px 13px}.monaco-menu .monaco-action-bar.vertical .action-item.disabled .keybinding,.monaco-menu .monaco-action-bar.vertical .action-item.disabled .submenu-indicator{opacity:.4}.monaco-menu .monaco-action-bar.vertical .action-label:not(.separator){display:inline-block;-o-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;margin:0}.monaco-menu .monaco-action-bar.vertical .action-label.separator{padding:.5em 0 0;margin-bottom:.5em;width:100%}.monaco-menu .monaco-action-bar.vertical .action-label.separator.text{padding:.7em 1em .1em;font-weight:700;opacity:1}.monaco-menu .monaco-action-bar.vertical .action-label:hover{color:inherit}.monaco-menu .monaco-action-bar.vertical .menu-item-check{position:absolute;visibility:hidden;-webkit-mask:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iLTIgLTIgMTYgMTYiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgLTIgLTIgMTYgMTYiPjxwb2x5Z29uIGZpbGw9IiM0MjQyNDIiIHBvaW50cz0iOSwwIDQuNSw5IDMsNiAwLDYgMywxMiA2LDEyIDEyLDAiLz48L3N2Zz4=) no-repeat 50% 56%/15px 15px;mask:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iLTIgLTIgMTYgMTYiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgLTIgLTIgMTYgMTYiPjxwb2x5Z29uIGZpbGw9IiM0MjQyNDIiIHBvaW50cz0iOSwwIDQuNSw5IDMsNiAwLDYgMywxMiA2LDEyIDEyLDAiLz48L3N2Zz4=) no-repeat 50% 56%/15px 15px;width:1em;height:100%}.monaco-menu .monaco-action-bar.vertical .action-menu-item.checked .menu-item-check{visibility:visible}.context-view.monaco-menu-container{font-family:-apple-system,BlinkMacSystemFont,Segoe WPC,Segoe UI,HelveticaNeue-Light,Ubuntu,Droid Sans,sans-serif;outline:0;border:none;-webkit-animation:fadeIn 83ms linear;animation:fadeIn 83ms linear}.context-view.monaco-menu-container .monaco-action-bar.vertical:focus,.context-view.monaco-menu-container .monaco-action-bar.vertical :focus,.context-view.monaco-menu-container :focus{outline:0}.monaco-menu .monaco-action-bar.vertical .action-item{border:1px solid transparent}.hc-black .context-view.monaco-menu-container{box-shadow:none}.hc-black .monaco-menu .monaco-action-bar.vertical .action-item.focused{background:none}.monaco-progress-container{width:100%;height:5px;overflow:hidden}.monaco-progress-container .progress-bit{width:2%;height:5px;position:absolute;left:0;display:none}.monaco-progress-container.active .progress-bit{display:inherit}.monaco-progress-container.discrete .progress-bit{left:0;transition:width .1s linear}.monaco-progress-container.discrete.done .progress-bit{width:100%}.monaco-progress-container.infinite .progress-bit{animation-name:progress;animation-duration:4s;animation-iteration-count:infinite;animation-timing-function:linear;-ms-animation-name:progress;-ms-animation-duration:4s;-ms-animation-iteration-count:infinite;-ms-animation-timing-function:linear;-webkit-animation-name:progress;-webkit-animation-duration:4s;-webkit-animation-iteration-count:infinite;-webkit-animation-timing-function:linear;-moz-animation-name:progress;-moz-animation-duration:4s;-moz-animation-iteration-count:infinite;-moz-animation-timing-function:linear;will-change:transform}@keyframes progress{0%{transform:translateX(0) scaleX(1)}50%{transform:translateX(2500%) scaleX(3)}to{transform:translateX(4950%) scaleX(1)}}@-webkit-keyframes progress{0%{transform:translateX(0) scaleX(1)}50%{transform:translateX(2500%) scaleX(3)}to{transform:translateX(4950%) scaleX(1)}}.monaco-sash{position:absolute;z-index:6;touch-action:none}.monaco-sash.disabled{pointer-events:none}.monaco-sash.vertical{cursor:ew-resize;top:0;width:4px;height:100%}.monaco-sash.mac.vertical{cursor:col-resize}.monaco-sash.vertical.minimum{cursor:e-resize}.monaco-sash.vertical.maximum{cursor:w-resize}.monaco-sash.horizontal{cursor:ns-resize;left:0;width:100%;height:4px}.monaco-sash.mac.horizontal{cursor:row-resize}.monaco-sash.horizontal.minimum{cursor:s-resize}.monaco-sash.horizontal.maximum{cursor:n-resize}.monaco-sash:not(.disabled).orthogonal-end:after,.monaco-sash:not(.disabled).orthogonal-start:before{content:" ";height:8px;width:8px;z-index:7;display:block;cursor:all-scroll;position:absolute}.monaco-sash.orthogonal-start.vertical:before{left:-2px;top:-4px}.monaco-sash.orthogonal-end.vertical:after{left:-2px;bottom:-4px}.monaco-sash.orthogonal-start.horizontal:before{top:-2px;left:-4px}.monaco-sash.orthogonal-end.horizontal:after{top:-2px;right:-4px}.monaco-sash.disabled{cursor:default!important}.monaco-sash.touch.vertical{width:20px}.monaco-sash.touch.horizontal{height:20px}.monaco-sash.debug:not(.disabled){background:cyan}.monaco-sash.debug:not(.disabled).orthogonal-end:after,.monaco-sash.debug:not(.disabled).orthogonal-start:before{background:red}.monaco-scrollable-element>.scrollbar>.up-arrow{background:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTEgMTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0ibTkuNDgwNDYsOC45NjE1bDEuMjYsLTEuMjZsLTUuMDQsLTUuMDRsLTUuNDYsNS4wNGwxLjI2LDEuMjZsNC4yLC0zLjc4bDMuNzgsMy43OHoiIGZpbGw9IiM0MjQyNDIiLz48L3N2Zz4=);cursor:pointer}.monaco-scrollable-element>.scrollbar>.down-arrow{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMSAxMSI+PHBhdGggdHJhbnNmb3JtPSJyb3RhdGUoLTE4MCA1LjQ5MDQ1OTkxODk3NTgzLDUuODExNTAwMDcyNDc5MjQ4KSIgZmlsbD0iIzQyNDI0MiIgZD0ibTkuNDgwNDYsOC45NjE1bDEuMjYsLTEuMjZsLTUuMDQsLTUuMDRsLTUuNDYsNS4wNGwxLjI2LDEuMjZsNC4yLC0zLjc4bDMuNzgsMy43OHoiLz48L3N2Zz4=);cursor:pointer}.monaco-scrollable-element>.scrollbar>.left-arrow{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMSAxMSI+PHBhdGggdHJhbnNmb3JtPSJyb3RhdGUoLTkwIDUuNDkwNDU5OTE4OTc1ODMxLDUuNDMxMzgyMTc5MjYwMjU0KSIgZmlsbD0iIzQyNDI0MiIgZD0ibTkuNDgwNDYsOC41ODEzOGwxLjI2LC0xLjI2bC01LjA0LC01LjA0bC01LjQ2LDUuMDRsMS4yNiwxLjI2bDQuMiwtMy43OGwzLjc4LDMuNzh6Ii8+PC9zdmc+);cursor:pointer}.monaco-scrollable-element>.scrollbar>.right-arrow{background:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTEgMTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggdHJhbnNmb3JtPSJyb3RhdGUoOTAgNS42MTcxNjUwODg2NTM1NjQ1LDUuNTU4MDg5NzMzMTIzNzgpICIgZmlsbD0iIzQyNDI0MiIgZD0ibTkuNjA3MTcsOC43MDgwOWwxLjI2LC0xLjI2bC01LjA0LC01LjA0bC01LjQ2LDUuMDRsMS4yNiwxLjI2bDQuMiwtMy43OGwzLjc4LDMuNzh6Ii8+PC9zdmc+);cursor:pointer}.hc-black .monaco-scrollable-element>.scrollbar>.up-arrow,.vs-dark .monaco-scrollable-element>.scrollbar>.up-arrow{background:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTEgMTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0ibTkuNDgwNDYsOC45NjE1bDEuMjYsLTEuMjZsLTUuMDQsLTUuMDRsLTUuNDYsNS4wNGwxLjI2LDEuMjZsNC4yLC0zLjc4bDMuNzgsMy43OHoiIGZpbGw9IiNFOEU4RTgiLz48L3N2Zz4=)}.hc-black .monaco-scrollable-element>.scrollbar>.down-arrow,.vs-dark .monaco-scrollable-element>.scrollbar>.down-arrow{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMSAxMSI+PHBhdGggdHJhbnNmb3JtPSJyb3RhdGUoLTE4MCA1LjQ5MDQ1OTkxODk3NTgzLDUuODExNTAwMDcyNDc5MjQ4KSIgZmlsbD0iI0U4RThFOCIgZD0ibTkuNDgwNDYsOC45NjE1bDEuMjYsLTEuMjZsLTUuMDQsLTUuMDRsLTUuNDYsNS4wNGwxLjI2LDEuMjZsNC4yLC0zLjc4bDMuNzgsMy43OHoiLz48L3N2Zz4=)}.hc-black .monaco-scrollable-element>.scrollbar>.left-arrow,.vs-dark .monaco-scrollable-element>.scrollbar>.left-arrow{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMSAxMSI+PHBhdGggdHJhbnNmb3JtPSJyb3RhdGUoLTkwIDUuNDkwNDU5OTE4OTc1ODMxLDUuNDMxMzgyMTc5MjYwMjU0KSIgZmlsbD0iI0U4RThFOCIgZD0ibTkuNDgwNDYsOC41ODEzOGwxLjI2LC0xLjI2bC01LjA0LC01LjA0bC01LjQ2LDUuMDRsMS4yNiwxLjI2bDQuMiwtMy43OGwzLjc4LDMuNzh6Ii8+PC9zdmc+)}.hc-black .monaco-scrollable-element>.scrollbar>.right-arrow,.vs-dark .monaco-scrollable-element>.scrollbar>.right-arrow{background:url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTEgMTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggdHJhbnNmb3JtPSJyb3RhdGUoOTAgNS42MTcxNjUwODg2NTM1NjQ1LDUuNTU4MDg5NzMzMTIzNzgpICIgZmlsbD0iI0U4RThFOCIgZD0ibTkuNjA3MTcsOC43MDgwOWwxLjI2LC0xLjI2bC01LjA0LC01LjA0bC01LjQ2LDUuMDRsMS4yNiwxLjI2bDQuMiwtMy43OGwzLjc4LDMuNzh6Ii8+PC9zdmc+)}.monaco-scrollable-element>.visible{opacity:1;background:transparent;transition:opacity .1s linear}.monaco-scrollable-element>.invisible{opacity:0;pointer-events:none}.monaco-scrollable-element>.invisible.fade{transition:opacity .8s linear}.monaco-scrollable-element>.shadow{position:absolute;display:none}.monaco-scrollable-element>.shadow.top{display:block;top:0;left:3px;height:3px;width:100%;box-shadow:inset 0 6px 6px -6px #ddd}.monaco-scrollable-element>.shadow.left{display:block;top:3px;left:0;height:100%;width:3px;box-shadow:inset 6px 0 6px -6px #ddd}.monaco-scrollable-element>.shadow.top-left-corner{display:block;top:0;left:0;height:3px;width:3px}.monaco-scrollable-element>.shadow.top.left{box-shadow:inset 6px 6px 6px -6px #ddd}.vs .monaco-scrollable-element>.scrollbar>.slider{background:hsla(0,0%,39%,.4)}.vs-dark .monaco-scrollable-element>.scrollbar>.slider{background:hsla(0,0%,47%,.4)}.hc-black .monaco-scrollable-element>.scrollbar>.slider{background:rgba(111,195,223,.6)}.monaco-scrollable-element>.scrollbar>.slider:hover{background:hsla(0,0%,39%,.7)}.hc-black .monaco-scrollable-element>.scrollbar>.slider:hover{background:rgba(111,195,223,.8)}.monaco-scrollable-element>.scrollbar>.slider.active{background:rgba(0,0,0,.6)}.vs-dark .monaco-scrollable-element>.scrollbar>.slider.active{background:hsla(0,0%,75%,.4)}.hc-black .monaco-scrollable-element>.scrollbar>.slider.active{background:#6fc3df}.vs-dark .monaco-scrollable-element .shadow.top{box-shadow:none}.vs-dark .monaco-scrollable-element .shadow.left{box-shadow:inset 6px 0 6px -6px #000}.vs-dark .monaco-scrollable-element .shadow.top.left{box-shadow:inset 6px 6px 6px -6px #000}.hc-black .monaco-scrollable-element .shadow.left,.hc-black .monaco-scrollable-element .shadow.top,.hc-black .monaco-scrollable-element .shadow.top.left{box-shadow:none}.monaco-quick-open-widget{position:absolute;width:600px;z-index:9;padding-bottom:6px;left:50%;margin-left:-300px}.monaco-quick-open-widget .monaco-progress-container{position:absolute;left:0;top:38px;z-index:1;height:2px}.monaco-quick-open-widget .monaco-progress-container .progress-bit{height:2px}.monaco-quick-open-widget .quick-open-input{width:588px;border:none;margin:6px}.monaco-quick-open-widget .quick-open-input .monaco-inputbox{width:100%;height:25px}.monaco-quick-open-widget .quick-open-result-count{position:absolute;left:-10000px}.monaco-quick-open-widget .quick-open-tree{line-height:22px}.monaco-quick-open-widget .quick-open-tree .monaco-tree-row>.content>.sub-content{overflow:hidden}.monaco-quick-open-widget.content-changing .quick-open-tree .monaco-scrollable-element .slider{display:none}.monaco-quick-open-widget .quick-open-tree .quick-open-entry{overflow:hidden;text-overflow:ellipsis;display:flex;flex-direction:column;height:100%}.monaco-quick-open-widget .quick-open-tree .quick-open-entry>.quick-open-row{display:flex;align-items:center}.monaco-quick-open-widget .quick-open-tree .quick-open-entry .quick-open-entry-icon{overflow:hidden;width:16px;height:16px;margin-right:4px;display:inline-block;vertical-align:middle;flex-shrink:0}.monaco-quick-open-widget .quick-open-tree .monaco-icon-label,.monaco-quick-open-widget .quick-open-tree .monaco-icon-label .monaco-icon-label-description-container{flex:1}.monaco-quick-open-widget .quick-open-tree .quick-open-entry .monaco-highlighted-label span{opacity:1}.monaco-quick-open-widget .quick-open-tree .quick-open-entry-meta{opacity:.7;line-height:normal}.monaco-quick-open-widget .quick-open-tree .content.has-group-label .quick-open-entry-keybinding{margin-right:8px}.monaco-quick-open-widget .quick-open-tree .quick-open-entry-keybinding .monaco-keybinding-key{vertical-align:text-bottom}.monaco-quick-open-widget .quick-open-tree .results-group{margin-right:18px}.monaco-quick-open-widget .quick-open-tree .focused .monaco-tree-row.focused>.content.has-actions>.results-group,.monaco-quick-open-widget .quick-open-tree .monaco-tree-row.focused>.content.has-actions>.results-group,.monaco-quick-open-widget .quick-open-tree .monaco-tree-row:hover:not(.highlighted)>.content.has-actions>.results-group{margin-right:0}.monaco-quick-open-widget .quick-open-tree .results-group-separator{border-top-width:1px;border-top-style:solid;box-sizing:border-box;margin-left:-11px;padding-left:11px}.monaco-tree .monaco-tree-row>.content.actions{position:relative;display:flex}.monaco-tree .monaco-tree-row>.content.actions>.sub-content{flex:1}.monaco-tree .monaco-tree-row>.content.actions .action-item{margin:0}.monaco-tree .monaco-tree-row>.content.actions>.primary-action-bar{line-height:22px;display:none;padding:0 .8em 0 .4em}.monaco-tree .monaco-tree-row.focused>.content.has-actions>.primary-action-bar{width:0;display:block}.monaco-tree.focused .monaco-tree-row.focused>.content.has-actions>.primary-action-bar,.monaco-tree .monaco-tree-row:hover:not(.highlighted)>.content.has-actions>.primary-action-bar,.monaco-tree .monaco-tree-row>.content.has-actions.more>.primary-action-bar{width:inherit;display:block}.monaco-tree .monaco-tree-row>.content.actions>.primary-action-bar .action-label{margin-right:.4em;margin-top:4px;background-repeat:no-repeat;width:16px;height:16px}.monaco-quick-open-widget .quick-open-tree .monaco-highlighted-label .highlight{font-weight:700}.monaco-tree{height:100%;width:100%;white-space:nowrap;-webkit-user-select:none;-moz-user-select:-moz-none;-ms-user-select:none;-o-user-select:none;user-select:none;position:relative}.monaco-tree>.monaco-scrollable-element{height:100%}.monaco-tree>.monaco-scrollable-element>.monaco-tree-wrapper{height:100%;width:100%;position:relative}.monaco-tree .monaco-tree-rows{position:absolute;width:100%;height:100%}.monaco-tree .monaco-tree-rows>.monaco-tree-row{-o-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;cursor:pointer;overflow:hidden;width:100%;touch-action:none}.monaco-tree .monaco-tree-rows>.monaco-tree-row>.content{position:relative;height:100%}.monaco-tree-drag-image{display:inline-block;padding:1px 7px;border-radius:10px;font-size:12px;position:absolute}.monaco-tree .monaco-tree-rows>.monaco-tree-row.scrolling{display:none}.monaco-tree .monaco-tree-rows.show-twisties>.monaco-tree-row.has-children>.content:before{content:" ";position:absolute;display:block;background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZmlsbD0iIzY0NjQ2NSIgZD0iTTYgNHY4bDQtNC00LTR6bTEgMi40MTRMOC41ODYgOCA3IDkuNTg2VjYuNDE0eiIvPjwvc3ZnPg==) 50% 50% no-repeat;width:16px;height:100%;top:0;left:-16px}.monaco-tree .monaco-tree-rows.show-twisties>.monaco-tree-row.expanded>.content:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZmlsbD0iIzY0NjQ2NSIgZD0iTTExIDEwSDUuMzQ0TDExIDQuNDE0VjEweiIvPjwvc3ZnPg==)}.monaco-tree .monaco-tree-rows>.monaco-tree-row.has-children.loading>.content:before{background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0nMS4wJyBzdGFuZGFsb25lPSdubycgPz4NCjxzdmcgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJyB2ZXJzaW9uPScxLjEnIHdpZHRoPScxMHB4JyBoZWlnaHQ9JzEwcHgnPg0KCTxzdHlsZT4NCiAgICBjaXJjbGUgew0KICAgICAgYW5pbWF0aW9uOiBiYWxsIDAuNnMgbGluZWFyIGluZmluaXRlOw0KICAgIH0NCg0KICAgIGNpcmNsZTpudGgtY2hpbGQoMikgeyBhbmltYXRpb24tZGVsYXk6IDAuMDc1czsgfQ0KICAgIGNpcmNsZTpudGgtY2hpbGQoMykgeyBhbmltYXRpb24tZGVsYXk6IDAuMTVzOyB9DQogICAgY2lyY2xlOm50aC1jaGlsZCg0KSB7IGFuaW1hdGlvbi1kZWxheTogMC4yMjVzOyB9DQogICAgY2lyY2xlOm50aC1jaGlsZCg1KSB7IGFuaW1hdGlvbi1kZWxheTogMC4zczsgfQ0KICAgIGNpcmNsZTpudGgtY2hpbGQoNikgeyBhbmltYXRpb24tZGVsYXk6IDAuMzc1czsgfQ0KICAgIGNpcmNsZTpudGgtY2hpbGQoNykgeyBhbmltYXRpb24tZGVsYXk6IDAuNDVzOyB9DQogICAgY2lyY2xlOm50aC1jaGlsZCg4KSB7IGFuaW1hdGlvbi1kZWxheTogMC41MjVzOyB9DQoNCiAgICBAa2V5ZnJhbWVzIGJhbGwgew0KICAgICAgZnJvbSB7IG9wYWNpdHk6IDE7IH0NCiAgICAgIHRvIHsgb3BhY2l0eTogMC4zOyB9DQogICAgfQ0KCTwvc3R5bGU+DQoJPGc+DQoJCTxjaXJjbGUgY3g9JzUnIGN5PScxJyByPScxJyBzdHlsZT0nb3BhY2l0eTowLjM7JyAvPg0KCQk8Y2lyY2xlIGN4PSc3LjgyODQnIGN5PScyLjE3MTYnIHI9JzEnIHN0eWxlPSdvcGFjaXR5OjAuMzsnIC8+DQoJCTxjaXJjbGUgY3g9JzknIGN5PSc1JyByPScxJyBzdHlsZT0nb3BhY2l0eTowLjM7JyAvPg0KCQk8Y2lyY2xlIGN4PSc3LjgyODQnIGN5PSc3LjgyODQnIHI9JzEnIHN0eWxlPSdvcGFjaXR5OjAuMzsnIC8+DQoJCTxjaXJjbGUgY3g9JzUnIGN5PSc5JyByPScxJyBzdHlsZT0nb3BhY2l0eTowLjM7JyAvPg0KCQk8Y2lyY2xlIGN4PScyLjE3MTYnIGN5PSc3LjgyODQnIHI9JzEnIHN0eWxlPSdvcGFjaXR5OjAuMzsnIC8+DQoJCTxjaXJjbGUgY3g9JzEnIGN5PSc1JyByPScxJyBzdHlsZT0nb3BhY2l0eTowLjM7JyAvPg0KCQk8Y2lyY2xlIGN4PScyLjE3MTYnIGN5PScyLjE3MTYnIHI9JzEnIHN0eWxlPSdvcGFjaXR5OjAuMzsnIC8+DQoJPC9nPg0KPC9zdmc+DQo=)}.monaco-tree.highlighted .monaco-tree-rows>.monaco-tree-row:not(.highlighted){opacity:.3}.vs-dark .monaco-tree .monaco-tree-rows.show-twisties>.monaco-tree-row.has-children>.content:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZmlsbD0iI0U4RThFOCIgZD0iTTYgNHY4bDQtNC00LTR6bTEgMi40MTRMOC41ODYgOCA3IDkuNTg2VjYuNDE0eiIvPjwvc3ZnPg==)}.vs-dark .monaco-tree .monaco-tree-rows.show-twisties>.monaco-tree-row.expanded>.content:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZmlsbD0iI0U4RThFOCIgZD0iTTExIDEwSDUuMzQ0TDExIDQuNDE0VjEweiIvPjwvc3ZnPg==)}.vs-dark .monaco-tree .monaco-tree-rows>.monaco-tree-row.has-children.loading>.content:before{background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0nMS4wJyBzdGFuZGFsb25lPSdubycgPz4NCjxzdmcgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJyB2ZXJzaW9uPScxLjEnIHdpZHRoPScxMHB4JyBoZWlnaHQ9JzEwcHgnPg0KCTxzdHlsZT4NCiAgICBjaXJjbGUgew0KICAgICAgYW5pbWF0aW9uOiBiYWxsIDAuNnMgbGluZWFyIGluZmluaXRlOw0KICAgIH0NCg0KICAgIGNpcmNsZTpudGgtY2hpbGQoMikgeyBhbmltYXRpb24tZGVsYXk6IDAuMDc1czsgfQ0KICAgIGNpcmNsZTpudGgtY2hpbGQoMykgeyBhbmltYXRpb24tZGVsYXk6IDAuMTVzOyB9DQogICAgY2lyY2xlOm50aC1jaGlsZCg0KSB7IGFuaW1hdGlvbi1kZWxheTogMC4yMjVzOyB9DQogICAgY2lyY2xlOm50aC1jaGlsZCg1KSB7IGFuaW1hdGlvbi1kZWxheTogMC4zczsgfQ0KICAgIGNpcmNsZTpudGgtY2hpbGQoNikgeyBhbmltYXRpb24tZGVsYXk6IDAuMzc1czsgfQ0KICAgIGNpcmNsZTpudGgtY2hpbGQoNykgeyBhbmltYXRpb24tZGVsYXk6IDAuNDVzOyB9DQogICAgY2lyY2xlOm50aC1jaGlsZCg4KSB7IGFuaW1hdGlvbi1kZWxheTogMC41MjVzOyB9DQoNCiAgICBAa2V5ZnJhbWVzIGJhbGwgew0KICAgICAgZnJvbSB7IG9wYWNpdHk6IDE7IH0NCiAgICAgIHRvIHsgb3BhY2l0eTogMC4zOyB9DQogICAgfQ0KCTwvc3R5bGU+DQoJPGcgc3R5bGU9ImZpbGw6Z3JleTsiPg0KCQk8Y2lyY2xlIGN4PSc1JyBjeT0nMScgcj0nMScgc3R5bGU9J29wYWNpdHk6MC4zOycgLz4NCgkJPGNpcmNsZSBjeD0nNy44Mjg0JyBjeT0nMi4xNzE2JyByPScxJyBzdHlsZT0nb3BhY2l0eTowLjM7JyAvPg0KCQk8Y2lyY2xlIGN4PSc5JyBjeT0nNScgcj0nMScgc3R5bGU9J29wYWNpdHk6MC4zOycgLz4NCgkJPGNpcmNsZSBjeD0nNy44Mjg0JyBjeT0nNy44Mjg0JyByPScxJyBzdHlsZT0nb3BhY2l0eTowLjM7JyAvPg0KCQk8Y2lyY2xlIGN4PSc1JyBjeT0nOScgcj0nMScgc3R5bGU9J29wYWNpdHk6MC4zOycgLz4NCgkJPGNpcmNsZSBjeD0nMi4xNzE2JyBjeT0nNy44Mjg0JyByPScxJyBzdHlsZT0nb3BhY2l0eTowLjM7JyAvPg0KCQk8Y2lyY2xlIGN4PScxJyBjeT0nNScgcj0nMScgc3R5bGU9J29wYWNpdHk6MC4zOycgLz4NCgkJPGNpcmNsZSBjeD0nMi4xNzE2JyBjeT0nMi4xNzE2JyByPScxJyBzdHlsZT0nb3BhY2l0eTowLjM7JyAvPg0KCTwvZz4NCjwvc3ZnPg0K)}.hc-black .monaco-tree .monaco-tree-rows.show-twisties>.monaco-tree-row.has-children>.content:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiI+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTYgNHY4bDQtNC00LTR6bTEgMi40MTRsMS41ODYgMS41ODYtMS41ODYgMS41ODZ2LTMuMTcyeiIvPjwvc3ZnPg==)}.hc-black .monaco-tree .monaco-tree-rows.show-twisties>.monaco-tree-row.expanded>.content:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiI+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTExIDEwLjA3aC01LjY1Nmw1LjY1Ni01LjY1NnY1LjY1NnoiLz48L3N2Zz4=)}.hc-black .monaco-tree .monaco-tree-rows>.monaco-tree-row.has-children.loading>.content:before{background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0nMS4wJyBzdGFuZGFsb25lPSdubycgPz4NCjxzdmcgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJyB2ZXJzaW9uPScxLjEnIHdpZHRoPScxMHB4JyBoZWlnaHQ9JzEwcHgnPg0KCTxzdHlsZT4NCiAgICBjaXJjbGUgew0KICAgICAgYW5pbWF0aW9uOiBiYWxsIDAuNnMgbGluZWFyIGluZmluaXRlOw0KICAgIH0NCg0KICAgIGNpcmNsZTpudGgtY2hpbGQoMikgeyBhbmltYXRpb24tZGVsYXk6IDAuMDc1czsgfQ0KICAgIGNpcmNsZTpudGgtY2hpbGQoMykgeyBhbmltYXRpb24tZGVsYXk6IDAuMTVzOyB9DQogICAgY2lyY2xlOm50aC1jaGlsZCg0KSB7IGFuaW1hdGlvbi1kZWxheTogMC4yMjVzOyB9DQogICAgY2lyY2xlOm50aC1jaGlsZCg1KSB7IGFuaW1hdGlvbi1kZWxheTogMC4zczsgfQ0KICAgIGNpcmNsZTpudGgtY2hpbGQoNikgeyBhbmltYXRpb24tZGVsYXk6IDAuMzc1czsgfQ0KICAgIGNpcmNsZTpudGgtY2hpbGQoNykgeyBhbmltYXRpb24tZGVsYXk6IDAuNDVzOyB9DQogICAgY2lyY2xlOm50aC1jaGlsZCg4KSB7IGFuaW1hdGlvbi1kZWxheTogMC41MjVzOyB9DQoNCiAgICBAa2V5ZnJhbWVzIGJhbGwgew0KICAgICAgZnJvbSB7IG9wYWNpdHk6IDE7IH0NCiAgICAgIHRvIHsgb3BhY2l0eTogMC4zOyB9DQogICAgfQ0KCTwvc3R5bGU+DQoJPGcgc3R5bGU9ImZpbGw6d2hpdGU7Ij4NCgkJPGNpcmNsZSBjeD0nNScgY3k9JzEnIHI9JzEnIHN0eWxlPSdvcGFjaXR5OjAuMzsnIC8+DQoJCTxjaXJjbGUgY3g9JzcuODI4NCcgY3k9JzIuMTcxNicgcj0nMScgc3R5bGU9J29wYWNpdHk6MC4zOycgLz4NCgkJPGNpcmNsZSBjeD0nOScgY3k9JzUnIHI9JzEnIHN0eWxlPSdvcGFjaXR5OjAuMzsnIC8+DQoJCTxjaXJjbGUgY3g9JzcuODI4NCcgY3k9JzcuODI4NCcgcj0nMScgc3R5bGU9J29wYWNpdHk6MC4zOycgLz4NCgkJPGNpcmNsZSBjeD0nNScgY3k9JzknIHI9JzEnIHN0eWxlPSdvcGFjaXR5OjAuMzsnIC8+DQoJCTxjaXJjbGUgY3g9JzIuMTcxNicgY3k9JzcuODI4NCcgcj0nMScgc3R5bGU9J29wYWNpdHk6MC4zOycgLz4NCgkJPGNpcmNsZSBjeD0nMScgY3k9JzUnIHI9JzEnIHN0eWxlPSdvcGFjaXR5OjAuMzsnIC8+DQoJCTxjaXJjbGUgY3g9JzIuMTcxNicgY3k9JzIuMTcxNicgcj0nMScgc3R5bGU9J29wYWNpdHk6MC4zOycgLz4NCgk8L2c+DQo8L3N2Zz4NCg==)}.monaco-tree-action.collapse-all{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iLTEgMCAxNiAxNiIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAtMSAwIDE2IDE2Ij48cGF0aCBmaWxsPSIjNDI0MjQyIiBkPSJNMTQgMXY5aC0xdi04aC04di0xaDl6bS0xMSAydjFoOHY4aDF2LTloLTl6bTcgMnY5aC05di05aDl6bS0yIDJoLTV2NWg1di01eiIvPjxyZWN0IHg9IjQiIHk9IjkiIGZpbGw9IiMwMDUzOUMiIHdpZHRoPSIzIiBoZWlnaHQ9IjEiLz48L3N2Zz4=) 50% no-repeat}.hc-black .monaco-tree-action.collapse-all,.vs-dark .monaco-tree-action.collapse-all{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iLTEgMCAxNiAxNiIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAtMSAwIDE2IDE2Ij48cGF0aCBmaWxsPSIjQzVDNUM1IiBkPSJNMTQgMXY5aC0xdi04aC04di0xaDl6bS0xMSAydjFoOHY4aDF2LTloLTl6bTcgMnY5aC05di05aDl6bS0yIDJoLTV2NWg1di01eiIvPjxyZWN0IHg9IjQiIHk9IjkiIGZpbGw9IiM3NUJFRkYiIHdpZHRoPSIzIiBoZWlnaHQ9IjEiLz48L3N2Zz4=) 50% no-repeat}.monaco-editor .inputarea{min-width:0;min-height:0;margin:0;padding:0;position:absolute;outline:none!important;resize:none;border:none;overflow:hidden;color:transparent;background-color:transparent}.monaco-editor .inputarea.ime-input{z-index:3}.monaco-editor .margin-view-overlays .current-line,.monaco-editor .view-overlays .current-line{display:block;position:absolute;left:0;top:0;box-sizing:border-box}.monaco-editor .margin-view-overlays .current-line.current-line-margin.current-line-margin-both{border-right:0}.monaco-editor .lines-content .cdr{position:absolute}.monaco-editor .glyph-margin{position:absolute;top:0}.monaco-editor .lines-content .cigr,.monaco-editor .lines-content .cigra,.monaco-editor .margin-view-overlays .cgmr{position:absolute}.monaco-editor .margin-view-overlays .line-numbers{position:absolute;text-align:right;display:inline-block;vertical-align:middle;box-sizing:border-box;cursor:default;height:100%}.monaco-editor .relative-current-line-number{text-align:left;display:inline-block;width:100%}.monaco-editor .margin-view-overlays .line-numbers{cursor:-webkit-image-set(url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNSIgaGVpZ2h0PSIyMSIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCAxNSAyMSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMTUgMjE7Ij48cG9seWdvbiBzdHlsZT0iZmlsbDojRkZGRkZGO3N0cm9rZTojMDAwMDAwIiBwb2ludHM9IjE0LjUsMS4yIDEuOSwxMy44IDcuMSwxMy44IDQuNSwxOS4xIDcuNywyMC4xIDEwLjMsMTQuOSAxNC41LDE4Ii8+PC9zdmc+) 1x,url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iMzAiIGhlaWdodD0iNDIiIHZpZXdCb3g9IjAgMCAzMCA0MiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMzAgNDI7Ij48cG9seWdvbiBzdHlsZT0iZmlsbDojRkZGRkZGO3N0cm9rZTojMDAwMDAwO3N0cm9rZS13aWR0aDoyOyIgcG9pbnRzPSIyOSwyLjQgMy44LDI3LjYgMTQuMywyNy42IDksMzguMSAxNS40LDQwLjIgMjAuNiwyOS43IDI5LDM2Ii8+PC9zdmc+DQo=) 2x) 30 0,default}.monaco-editor.mac .margin-view-overlays .line-numbers{cursor:-webkit-image-set(url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMiIgaGVpZ2h0PSIxOCIgdmlld0JveD0iMCAwIDEyIDE4Ij48c3R5bGU+LnN0MHtmaWxsOiNmZmZ9PC9zdHlsZT48dGl0bGU+ZmxpcHBlZC1jdXJzb3ItbWFjPC90aXRsZT48cGF0aCBkPSJNNC4zIDE2LjVsMS42LTQuNkgxLjFMMTEuNSAxLjJ2MTQuNEw4LjcgMTNsLTEuNiA0LjV6Ii8+PHBhdGggY2xhc3M9InN0MCIgZD0iTTExIDE0LjVsLTIuNS0yLjNMNyAxNi43IDUgMTZsMS42LTQuNWgtNGw4LjUtOU0wIDEyLjVoNS4ybC0xLjUgNC4xTDcuNSAxOCA5IDE0LjJsMi45IDIuM1YwTDAgMTIuNXoiLz48L3N2Zz4=) 1x,url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIzNiIgdmlld0JveD0iMCAwIDI0IDM2LjEiPjxkZWZzPjxzdHlsZT4uYXtmaWxsOiNmZmY7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5mbGlwcGVkLWN1cnNvci1tYWMtMng8L3RpdGxlPjxwb2x5Z29uIHBvaW50cz0iOC42IDMzLjEgMTEuOCAyMy45IDIuMiAyMy45IDIzIDIuNSAyMyAzMS4zIDE3LjQgMjYuMSAxNC4yIDM1LjEgOC42IDMzLjEiLz48cGF0aCBjbGFzcz0iYSIgZD0iTTIyLDI5LjFsLTUtNC42LTMuMDYyLDguOTM4LTQuMDYyLTEuNUwxMywyM0g1TDIyLDVNMCwyNUgxMC40bC0zLDguM0wxNSwzNi4xbDMuMTI1LTcuNjYyTDI0LDMzVjBaIi8+PC9zdmc+) 2x) 24 3,default}.monaco-editor .margin-view-overlays .line-numbers.lh-odd{margin-top:1px}.monaco-editor.safari .lines-content,.monaco-editor.safari .view-line,.monaco-editor.safari .view-lines{-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}.monaco-editor .lines-content,.monaco-editor .view-line,.monaco-editor .view-lines{-webkit-user-select:none;-ms-user-select:none;-moz-user-select:none;-o-user-select:none;user-select:none}.monaco-editor .view-lines{cursor:text;white-space:nowrap}.monaco-editor.hc-black.mac .view-lines,.monaco-editor.vs-dark.mac .view-lines{cursor:-webkit-image-set(url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAQAAAC1+jfqAAAAL0lEQVQoz2NgCD3x//9/BhBYBWdhgFVAiVW4JBFKGIa4AqD0//9D3pt4I4tAdAMAHTQ/j5Zom30AAAAASUVORK5CYII=) 1x,url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAQAAADZc7J/AAAAz0lEQVRIx2NgYGBY/R8I/vx5eelX3n82IJ9FxGf6tksvf/8FiTMQAcAGQMDvSwu09abffY8QYSAScNk45G198eX//yev73/4///701eh//kZSARckrNBRvz//+8+6ZohwCzjGNjdgQxkAg7B9WADeBjIBqtJCbhRA0YNoIkBSNmaPEMoNmA0FkYNoFKhapJ6FGyAH3nauaSmPfwI0v/3OukVi0CIZ+F25KrtYcx/CTIy0e+rC7R1Z4KMICVTQQ14feVXIbR695u14+Ir4gwAAD49E54wc1kWAAAAAElFTkSuQmCC) 2x) 5 8,text}.monaco-editor .view-line{position:absolute;width:100%}.monaco-editor .lines-decorations{position:absolute;top:0;background:#fff}.monaco-editor .margin-view-overlays .cldr{position:absolute;height:100%}.monaco-editor .margin-view-overlays .cmdr{position:absolute;left:0;width:100%;height:100%}.monaco-editor .minimap.slider-mouseover .minimap-slider{opacity:0;transition:opacity .1s linear}.monaco-editor .minimap.slider-mouseover .minimap-slider.active,.monaco-editor .minimap.slider-mouseover:hover .minimap-slider{opacity:1}.monaco-editor .minimap-shadow-hidden{position:absolute;width:0}.monaco-editor .minimap-shadow-visible{position:absolute;left:-6px;width:6px}.monaco-editor .overlayWidgets{position:absolute;top:0;left:0}.monaco-editor .view-ruler{position:absolute;top:0}.monaco-editor .scroll-decoration{position:absolute;top:0;left:0;height:6px}.monaco-editor .lines-content .cslr{position:absolute}.monaco-editor .top-left-radius{border-top-left-radius:3px}.monaco-editor .bottom-left-radius{border-bottom-left-radius:3px}.monaco-editor .top-right-radius{border-top-right-radius:3px}.monaco-editor .bottom-right-radius{border-bottom-right-radius:3px}.monaco-editor.hc-black .top-left-radius{border-top-left-radius:0}.monaco-editor.hc-black .bottom-left-radius{border-bottom-left-radius:0}.monaco-editor.hc-black .top-right-radius{border-top-right-radius:0}.monaco-editor.hc-black .bottom-right-radius{border-bottom-right-radius:0}.monaco-editor .cursors-layer{position:absolute;top:0}.monaco-editor .cursors-layer>.cursor{position:absolute;cursor:text;overflow:hidden}.monaco-editor .cursors-layer.cursor-block-outline-style>.cursor{box-sizing:border-box;background:transparent!important;border-style:solid;border-width:1px}.monaco-editor .cursors-layer.cursor-underline-style>.cursor{border-bottom-width:2px;border-bottom-style:solid;background:transparent!important;box-sizing:border-box}.monaco-editor .cursors-layer.cursor-underline-thin-style>.cursor{border-bottom-width:1px;border-bottom-style:solid;background:transparent!important;box-sizing:border-box}@-webkit-keyframes monaco-cursor-smooth{0%,20%{opacity:1}60%,to{opacity:0}}@keyframes monaco-cursor-smooth{0%,20%{opacity:1}60%,to{opacity:0}}@-webkit-keyframes monaco-cursor-phase{0%,20%{opacity:1}90%,to{opacity:0}}@keyframes monaco-cursor-phase{0%,20%{opacity:1}90%,to{opacity:0}}@-webkit-keyframes monaco-cursor-expand{0%,20%{transform:scaleY(1)}80%,to{transform:scaleY(0)}}@keyframes monaco-cursor-expand{0%,20%{transform:scaleY(1)}80%,to{transform:scaleY(0)}}.cursor-smooth{-webkit-animation:monaco-cursor-smooth .5s ease-in-out 0s 20 alternate;animation:monaco-cursor-smooth .5s ease-in-out 0s 20 alternate}.cursor-phase{-webkit-animation:monaco-cursor-phase .5s ease-in-out 0s 20 alternate;animation:monaco-cursor-phase .5s ease-in-out 0s 20 alternate}.cursor-expand>.cursor{-webkit-animation:monaco-cursor-expand .5s ease-in-out 0s 20 alternate;animation:monaco-cursor-expand .5s ease-in-out 0s 20 alternate}.monaco-diff-editor .diffOverview{z-index:2}.monaco-diff-editor.vs .diffOverview{background:rgba(0,0,0,.03)}.monaco-diff-editor.vs-dark .diffOverview{background:hsla(0,0%,100%,.01)}.monaco-diff-editor .diffViewport{box-shadow:inset 0 0 1px 0 #b9b9b9;background:rgba(0,0,0,.1)}.monaco-diff-editor.hc-black .diffViewport,.monaco-diff-editor.vs-dark .diffViewport{background:hsla(0,0%,100%,.1)}.monaco-scrollable-element.modified-in-monaco-diff-editor.vs-dark .scrollbar,.monaco-scrollable-element.modified-in-monaco-diff-editor.vs .scrollbar{background:transparent}.monaco-scrollable-element.modified-in-monaco-diff-editor.hc-black .scrollbar{background:none}.monaco-scrollable-element.modified-in-monaco-diff-editor .slider{z-index:3}.modified-in-monaco-diff-editor .slider.active{background:hsla(0,0%,67%,.4)}.modified-in-monaco-diff-editor.hc-black .slider.active{background:none}.monaco-diff-editor .delete-sign,.monaco-diff-editor .insert-sign,.monaco-editor .delete-sign,.monaco-editor .insert-sign{background-size:60%;opacity:.7;background-repeat:no-repeat;background-position:50% 50%;background-position:50%;background-size:11px 11px}.monaco-diff-editor.hc-black .delete-sign,.monaco-diff-editor.hc-black .insert-sign,.monaco-editor.hc-black .delete-sign,.monaco-editor.hc-black .insert-sign{opacity:1}.monaco-diff-editor .insert-sign,.monaco-editor .insert-sign{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHRpdGxlPkxheWVyIDE8L3RpdGxlPjxyZWN0IGhlaWdodD0iMTEiIHdpZHRoPSIzIiB5PSIzIiB4PSI3IiBmaWxsPSIjNDI0MjQyIi8+PHJlY3QgaGVpZ2h0PSIzIiB3aWR0aD0iMTEiIHk9IjciIHg9IjMiIGZpbGw9IiM0MjQyNDIiLz48L3N2Zz4=)}.monaco-diff-editor .delete-sign,.monaco-editor .delete-sign{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHRpdGxlPkxheWVyIDE8L3RpdGxlPjxyZWN0IGhlaWdodD0iMyIgd2lkdGg9IjExIiB5PSI3IiB4PSIzIiBmaWxsPSIjNDI0MjQyIi8+PC9zdmc+)}.monaco-diff-editor.hc-black .insert-sign,.monaco-diff-editor.vs-dark .insert-sign,.monaco-editor.hc-black .insert-sign,.monaco-editor.vs-dark .insert-sign{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHRpdGxlPkxheWVyIDE8L3RpdGxlPjxyZWN0IGhlaWdodD0iMTEiIHdpZHRoPSIzIiB5PSIzIiB4PSI3IiBmaWxsPSIjQzVDNUM1Ii8+PHJlY3QgaGVpZ2h0PSIzIiB3aWR0aD0iMTEiIHk9IjciIHg9IjMiIGZpbGw9IiNDNUM1QzUiLz48L3N2Zz4=)}.monaco-diff-editor.hc-black .delete-sign,.monaco-diff-editor.vs-dark .delete-sign,.monaco-editor.hc-black .delete-sign,.monaco-editor.vs-dark .delete-sign{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHRpdGxlPkxheWVyIDE8L3RpdGxlPjxyZWN0IGhlaWdodD0iMyIgd2lkdGg9IjExIiB5PSI3IiB4PSIzIiBmaWxsPSIjQzVDNUM1Ii8+PC9zdmc+)}.monaco-editor .inline-added-margin-view-zone,.monaco-editor .inline-deleted-margin-view-zone{text-align:right}.monaco-editor .diagonal-fill{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAadEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjEwMPRyoQAAAChJREFUKFNjOH/+fAMDDgCSu3Dhwn9c8gwwBTgNGR4KQP4HhQOhsAIAZCBTkhtqePcAAAAASUVORK5CYII=)}.monaco-editor.vs-dark .diagonal-fill{opacity:.2}.monaco-editor.hc-black .diagonal-fill{background:none}.monaco-editor .view-zones .view-lines .view-line span{display:inline-block}.monaco-diff-editor .diff-review-line-number{text-align:right;display:inline-block}.monaco-diff-editor .diff-review{position:absolute;-webkit-user-select:none;-ms-user-select:none;-moz-user-select:none;-o-user-select:none;user-select:none}.monaco-diff-editor .diff-review-summary{padding-left:10px}.monaco-diff-editor .diff-review-shadow{position:absolute}.monaco-diff-editor .diff-review-row{white-space:pre}.monaco-diff-editor .diff-review-table{display:table;min-width:100%}.monaco-diff-editor .diff-review-row{display:table-row;width:100%}.monaco-diff-editor .diff-review-cell{display:table-cell}.monaco-diff-editor .diff-review-spacer{display:inline-block;width:10px}.monaco-diff-editor .diff-review-actions{display:inline-block;position:absolute;right:10px;top:2px}.monaco-diff-editor .diff-review-actions .action-label{width:16px;height:16px;margin:2px 0}.monaco-diff-editor .action-label.icon.close-diff-review{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMyAzIDE2IDE2IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDMgMyAxNiAxNiI+PHBvbHlnb24gZmlsbD0iIzQyNDI0MiIgcG9pbnRzPSIxMi41OTcsMTEuMDQyIDE1LjQsMTMuODQ1IDEzLjg0NCwxNS40IDExLjA0MiwxMi41OTggOC4yMzksMTUuNCA2LjY4MywxMy44NDUgOS40ODUsMTEuMDQyIDYuNjgzLDguMjM5IDguMjM4LDYuNjgzIDExLjA0Miw5LjQ4NiAxMy44NDUsNi42ODMgMTUuNCw4LjIzOSIvPjwvc3ZnPg==) 50% no-repeat}.monaco-diff-editor.hc-black .action-label.icon.close-diff-review,.monaco-diff-editor.vs-dark .action-label.icon.close-diff-review{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMyAzIDE2IDE2IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDMgMyAxNiAxNiI+PHBvbHlnb24gZmlsbD0iI2U4ZThlOCIgcG9pbnRzPSIxMi41OTcsMTEuMDQyIDE1LjQsMTMuODQ1IDEzLjg0NCwxNS40IDExLjA0MiwxMi41OTggOC4yMzksMTUuNCA2LjY4MywxMy44NDUgOS40ODUsMTEuMDQyIDYuNjgzLDguMjM5IDguMjM4LDYuNjgzIDExLjA0Miw5LjQ4NiAxMy44NDUsNi42ODMgMTUuNCw4LjIzOSIvPjwvc3ZnPg==) 50% no-repeat}::-ms-clear{display:none}.monaco-editor .editor-widget input{color:inherit}.monaco-editor{position:relative;overflow:visible;-webkit-text-size-adjust:100%;font-feature-settings:"liga" off,"calt" off}.monaco-editor.enable-ligatures{font-feature-settings:"liga" on,"calt" on}.monaco-editor .overflow-guard{position:relative;overflow:hidden}.monaco-editor .view-overlays{position:absolute;top:0}.monaco-editor .vs-whitespace{display:inline-block}.monaco-editor .bracket-match{box-sizing:border-box}.monaco-menu .monaco-action-bar.vertical .action-label.hover{background-color:#eee}.monaco-editor .lightbulb-glyph{display:flex;align-items:center;justify-content:center;height:16px;width:20px;padding-left:2px}.monaco-editor .lightbulb-glyph:hover{cursor:pointer}.monaco-editor.vs .lightbulb-glyph{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTYgMTYiIGhlaWdodD0iMTYiIHdpZHRoPSIxNiI+PHBhdGggZmlsbD0iI0Y2RjZGNiIgZD0iTTEzLjUgNC4yQzEzLjEgMi4xIDEwLjggMCA5LjMgMEg2LjdjLS40IDAtLjYuMi0uNi4yQzQgLjggMi41IDIuNyAyLjUgNC45YzAgLjUtLjEgMi4zIDEuNyAzLjguNS41IDEuMiAyIDEuMyAyLjR2My4zTDcuMSAxNmgybDEuNS0xLjZWMTFjLjEtLjQuOC0xLjkgMS4zLTIuMyAxLjEtLjkgMS41LTEuOSAxLjYtMi43VjQuMnoiLz48Zz48ZyBmaWxsPSIjODQ4NDg0Ij48cGF0aCBkPSJNNi41IDEyaDN2MWgtM3pNNy41IDE1aDEuMWwuOS0xaC0zeiIvPjwvZz48cGF0aCBmaWxsPSIjZmMwIiBkPSJNMTIuNiA1YzAtMi4zLTEuOC00LjEtNC4xLTQuMS0uMSAwLTEuNC4xLTEuNC4xLTIuMS4zLTMuNyAyLTMuNyA0IDAgLjEtLjIgMS42IDEuNCAzIC43LjcgMS41IDIuNCAxLjYgMi45bC4xLjFoM2wuMS0uMmMuMS0uNS45LTIuMiAxLjYtMi45IDEuNi0xLjMgMS40LTIuOCAxLjQtMi45em0tMyAxbC0uNSAzaC0uNlY2YzEuMSAwIC45LTEgLjktMUg2LjV2LjFjMCAuMi4xLjkgMSAuOXYzSDdsLS4yLS43TDYuNSA2Yy0uNyAwLS45LS40LTEtLjd2LS40YzAtLjguOS0uOS45LS45aDMuMXMxIC4xIDEgMWMwIDAgLjEgMS0uOSAxeiIvPjwvZz48cGF0aCBmaWxsPSIjRjBFRkYxIiBkPSJNMTAuNSA1YzAtLjktMS0xLTEtMUg2LjRzLS45LjEtLjkuOXYuNGMwIC4zLjMuNy45LjdsLjQgMi4zLjIuN2guNVY2Yy0xIDAtMS0uNy0xLS45VjVoM3MuMSAxLS45IDF2M2guNmwuNS0zYy45IDAgLjgtMSAuOC0xeiIvPjwvc3ZnPg==) 50% no-repeat}.monaco-editor.hc-black .lightbulb-glyph,.monaco-editor.vs-dark .lightbulb-glyph{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTYgMTYiIGhlaWdodD0iMTYiIHdpZHRoPSIxNiI+PHBhdGggZmlsbD0iIzFFMUUxRSIgZD0iTTEzLjUgNC4yQzEzLjEgMi4xIDEwLjggMCA5LjMgMEg2LjdjLS40IDAtLjYuMi0uNi4yQzQgLjggMi41IDIuNyAyLjUgNC45YzAgLjUtLjEgMi4zIDEuNyAzLjguNS41IDEuMiAyIDEuMyAyLjR2My4zTDcuMSAxNmgybDEuNS0xLjZWMTFjLjEtLjQuOC0xLjkgMS4zLTIuMyAxLjEtLjkgMS41LTEuOSAxLjYtMi43VjQuMnoiLz48Zz48ZyBmaWxsPSIjQzVDNUM1Ij48cGF0aCBkPSJNNi41IDEyaDN2MWgtM3pNNy41IDE1aDEuMWwuOS0xaC0zeiIvPjwvZz48cGF0aCBmaWxsPSIjRERCMjA0IiBkPSJNMTIuNiA1YzAtMi4zLTEuOC00LjEtNC4xLTQuMS0uMSAwLTEuNC4xLTEuNC4xLTIuMS4zLTMuNyAyLTMuNyA0IDAgLjEtLjIgMS42IDEuNCAzIC43LjcgMS41IDIuNCAxLjYgMi45bC4xLjFoM2wuMS0uMmMuMS0uNS45LTIuMiAxLjYtMi45IDEuNi0xLjMgMS40LTIuOCAxLjQtMi45em0tMyAxbC0uNSAzaC0uNlY2YzEuMSAwIC45LTEgLjktMUg2LjV2LjFjMCAuMi4xLjkgMSAuOXYzSDdsLS4yLS43TDYuNSA2Yy0uNyAwLS45LS40LTEtLjd2LS40YzAtLjguOS0uOS45LS45aDMuMXMxIC4xIDEgMWMwIDAgLjEgMS0uOSAxeiIvPjwvZz48cGF0aCBmaWxsPSIjMjUyNTI2IiBkPSJNMTAuNSA1YzAtLjktMS0xLTEtMUg2LjRzLS45LjEtLjkuOXYuNGMwIC4zLjMuNy45LjdsLjQgMi4zLjIuN2guNVY2Yy0xIDAtMS0uNy0xLS45VjVoM3MuMSAxLS45IDF2M2guNmwuNS0zYy45IDAgLjgtMSAuOC0xeiIvPjwvc3ZnPg==) 50% no-repeat}.monaco-editor .codelens-decoration{overflow:hidden;display:inline-block;text-overflow:ellipsis}.monaco-editor .codelens-decoration>a,.monaco-editor .codelens-decoration>span{-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap;vertical-align:sub}.monaco-editor .codelens-decoration>a{text-decoration:none}.monaco-editor .codelens-decoration>a:hover{text-decoration:underline;cursor:pointer}.monaco-editor .codelens-decoration.invisible-cl{opacity:0}@keyframes fadein{0%{opacity:0;visibility:visible}to{opacity:1}}@-webkit-keyframes fadein{0%{opacity:0;visibility:visible}to{opacity:1}}.monaco-editor .codelens-decoration.fadein{-webkit-animation:fadein .5s linear;animation:fadein .5s linear}.colorpicker-widget{height:190px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.monaco-editor .colorpicker-hover:focus{outline:none}.colorpicker-header{display:flex;height:24px;position:relative;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAZdEVYdFNvZnR3YXJlAHBhaW50Lm5ldCA0LjAuMTZEaa/1AAAAHUlEQVQYV2PYvXu3JAi7uLiAMaYAjAGTQBPYLQkAa/0Zef3qRswAAAAASUVORK5CYII=);background-size:9px 9px;-ms-interpolation-mode:nearest-neighbor;image-rendering:-moz-crisp-edges;image-rendering:pixelated}.colorpicker-header .picked-color{width:216px;line-height:24px;cursor:pointer;color:#fff;flex:1;text-align:center}.colorpicker-header .picked-color.light{color:#000}.colorpicker-header .original-color{width:74px;z-index:inherit;cursor:pointer}.colorpicker-body{display:flex;padding:8px;position:relative}.colorpicker-body .saturation-wrap{overflow:hidden;height:150px;position:relative;min-width:220px;flex:1}.colorpicker-body .saturation-box{height:150px;position:absolute}.colorpicker-body .saturation-selection{width:9px;height:9px;margin:-5px 0 0 -5px;border:1px solid #fff;border-radius:100%;box-shadow:0 0 2px rgba(0,0,0,.8);position:absolute}.colorpicker-body .strip{width:25px;height:150px}.colorpicker-body .hue-strip{position:relative;margin-left:8px;cursor:-webkit-grab;background:linear-gradient(180deg,red 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red)}.colorpicker-body .opacity-strip{position:relative;margin-left:8px;cursor:-webkit-grab;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAZdEVYdFNvZnR3YXJlAHBhaW50Lm5ldCA0LjAuMTZEaa/1AAAAHUlEQVQYV2PYvXu3JAi7uLiAMaYAjAGTQBPYLQkAa/0Zef3qRswAAAAASUVORK5CYII=);background-size:9px 9px;-ms-interpolation-mode:nearest-neighbor;image-rendering:-moz-crisp-edges;image-rendering:pixelated}.colorpicker-body .strip.grabbing{cursor:-webkit-grabbing}.colorpicker-body .slider{position:absolute;top:0;left:-2px;width:calc(100% + 4px);height:4px;box-sizing:border-box;border:1px solid hsla(0,0%,100%,.71);box-shadow:0 0 1px rgba(0,0,0,.85)}.colorpicker-body .strip .overlay{height:150px;pointer-events:none}.monaco-editor.vs .dnd-target{border-right:2px dotted #000;color:#fff}.monaco-editor.vs-dark .dnd-target{border-right:2px dotted #aeafad;color:#51504f}.monaco-editor.hc-black .dnd-target{border-right:2px dotted #fff;color:#000}.monaco-editor.hc-black.mac.mouse-default .view-lines,.monaco-editor.mouse-default .view-lines,.monaco-editor.vs-dark.mac.mouse-default .view-lines{cursor:default}.monaco-editor.hc-black.mac.mouse-copy .view-lines,.monaco-editor.mouse-copy .view-lines,.monaco-editor.vs-dark.mac.mouse-copy .view-lines{cursor:copy}.monaco-checkbox .label{width:12px;height:12px;border:1px solid #000;background-color:transparent;display:inline-block}.monaco-checkbox .checkbox{position:absolute;overflow:hidden;clip:rect(0 0 0 0);height:1px;width:1px;margin:-1px;padding:0;border:0}.monaco-checkbox .checkbox:checked+.label{background-color:#000}.monaco-editor .find-widget{position:absolute;z-index:3;top:-44px;height:34px;overflow:hidden;line-height:19px;transition:top .2s linear;padding:0 4px}.monaco-editor .find-widget.replaceToggled{top:-74px;height:64px}.monaco-editor .find-widget.replaceToggled>.replace-part{display:flex;display:-webkit-flex;align-items:center}.monaco-editor .find-widget.replaceToggled.visible,.monaco-editor .find-widget.visible{top:0}.monaco-editor .find-widget .monaco-inputbox .input{background-color:transparent;min-height:0}.monaco-editor .find-widget .replace-input .input{font-size:13px}.monaco-editor .find-widget>.find-part,.monaco-editor .find-widget>.replace-part{margin:4px 0 0 17px;font-size:12px;display:flex;display:-webkit-flex;align-items:center}.monaco-editor .find-widget>.find-part .monaco-inputbox,.monaco-editor .find-widget>.replace-part .monaco-inputbox{height:25px}.monaco-editor .find-widget>.find-part .monaco-inputbox>.wrapper>.input{width:100%!important;padding-right:66px}.monaco-editor .find-widget>.find-part .monaco-inputbox>.wrapper>.input,.monaco-editor .find-widget>.replace-part .monaco-inputbox>.wrapper>.input{padding-top:2px;padding-bottom:2px}.monaco-editor .find-widget .monaco-findInput{vertical-align:middle;display:flex;display:-webkit-flex;flex:1}.monaco-editor .find-widget .matchesCount{display:flex;display:-webkit-flex;flex:initial;margin:0 1px 0 3px;padding:2px 2px 0;height:25px;vertical-align:middle;box-sizing:border-box;text-align:center;line-height:23px}.monaco-editor .find-widget .button{min-width:20px;width:20px;height:20px;display:flex;display:-webkit-flex;flex:initial;margin-left:3px;background-position:50%;background-repeat:no-repeat;cursor:pointer}.monaco-editor .find-widget .button:not(.disabled):hover{background-color:rgba(0,0,0,.1)}.monaco-editor .find-widget .button.left{margin-left:0;margin-right:3px}.monaco-editor .find-widget .button.wide{width:auto;padding:1px 6px;top:-1px}.monaco-editor .find-widget .button.toggle{position:absolute;top:0;left:0;width:18px;height:100%;-o-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}.monaco-editor .find-widget .button.toggle.disabled{display:none}.monaco-editor .find-widget .previous{background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiDQoJIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiDQoJIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iMTZweCIgaGVpZ2h0PSIxNnB4IiB2aWV3Qm94PSItMSAtMyAxNiAxNiIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAtMSAtMyAxNiAxNiIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8cG9seWdvbiBmaWxsPSIjNDI0MjQyIiBwb2ludHM9IjEzLDQgNiw0IDksMSA2LDEgMiw1IDYsOSA5LDkgNiw2IDEzLDYgIi8+DQo8L3N2Zz4NCg==)}.monaco-editor .find-widget .next{background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiDQoJIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiDQoJIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iMTZweCIgaGVpZ2h0PSIxNnB4IiB2aWV3Qm94PSItMSAtMyAxNiAxNiIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAtMSAtMyAxNiAxNiIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8cGF0aCBmaWxsPSIjNDI0MjQyIiBkPSJNMSw0aDdMNSwxaDNsNCw0TDgsOUg1bDMtM0gxVjR6Ii8+DQo8L3N2Zz4NCg==)}.monaco-editor .find-widget .disabled{opacity:.3;cursor:default}.monaco-editor .find-widget .monaco-checkbox{width:20px;height:20px;display:inline-block;vertical-align:middle;margin-left:3px}.monaco-editor .find-widget .monaco-checkbox .label{content:"";display:inline-block;background-repeat:no-repeat;background-position:0 0;background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+DQo8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLC0xMDMyLjM2MjIpIj4NCiAgPHJlY3Qgd2lkdGg9IjkiIGhlaWdodD0iMiIgeD0iMiIgeT0iMTA0Ni4zNjIyIiBzdHlsZT0iZmlsbDojNDI0MjQyO2ZpbGwtb3BhY2l0eToxO3N0cm9rZTpub25lIiAvPg0KICA8cmVjdCB3aWR0aD0iMTMiIGhlaWdodD0iMiIgeD0iMiIgeT0iMTA0My4zNjIyIiBzdHlsZT0iZmlsbDojNDI0MjQyO2ZpbGwtb3BhY2l0eToxO3N0cm9rZTpub25lIiAvPg0KICA8cmVjdCB3aWR0aD0iNiIgaGVpZ2h0PSIyIiB4PSIyIiB5PSIxMDQwLjM2MjIiIHN0eWxlPSJmaWxsOiM0MjQyNDI7ZmlsbC1vcGFjaXR5OjE7c3Ryb2tlOm5vbmUiIC8+DQogIDxyZWN0IHdpZHRoPSIxMiIgaGVpZ2h0PSIyIiB4PSIyIiB5PSIxMDM3LjM2MjIiIHN0eWxlPSJmaWxsOiM0MjQyNDI7ZmlsbC1vcGFjaXR5OjE7c3Ryb2tlOm5vbmUiIC8+DQo8L2c+DQo8L3N2Zz4=);width:20px;height:20px;border:none}.monaco-editor .find-widget .monaco-checkbox .checkbox:disabled+.label{opacity:.3;cursor:default}.monaco-editor .find-widget .monaco-checkbox .checkbox:not(:disabled)+.label{cursor:pointer}.monaco-editor .find-widget .monaco-checkbox .checkbox:not(:disabled):hover:before+.label{background-color:#ddd}.monaco-editor .find-widget .monaco-checkbox .checkbox:checked+.label{background-color:hsla(0,0%,39%,.2)}.monaco-editor .find-widget .close-fw{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMyAzIDE2IDE2IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDMgMyAxNiAxNiI+PHBvbHlnb24gZmlsbD0iIzQyNDI0MiIgcG9pbnRzPSIxMi41OTcsMTEuMDQyIDE1LjQsMTMuODQ1IDEzLjg0NCwxNS40IDExLjA0MiwxMi41OTggOC4yMzksMTUuNCA2LjY4MywxMy44NDUgOS40ODUsMTEuMDQyIDYuNjgzLDguMjM5IDguMjM4LDYuNjgzIDExLjA0Miw5LjQ4NiAxMy44NDUsNi42ODMgMTUuNCw4LjIzOSIvPjwvc3ZnPg==)}.monaco-editor .find-widget .expand{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiI+PHBhdGggZmlsbD0iIzY0NjQ2NSIgZD0iTTExIDEwLjA3aC01LjY1Nmw1LjY1Ni01LjY1NnY1LjY1NnoiLz48L3N2Zz4=)}.monaco-editor .find-widget .collapse{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiI+PHBhdGggZmlsbD0iIzY0NjQ2NSIgZD0iTTYgNHY4bDQtNC00LTR6bTEgMi40MTRsMS41ODYgMS41ODYtMS41ODYgMS41ODZ2LTMuMTcyeiIvPjwvc3ZnPg==)}.monaco-editor .find-widget .replace{background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iMTZweCINCgkgaGVpZ2h0PSIxNnB4IiB2aWV3Qm94PSIwIDAgMTYgMTYiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDE2IDE2IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxnIGlkPSJpY29uX3g1Rl9iZyI+DQoJPGc+DQoJCTxwYXRoIGZpbGw9IiM0MjQyNDIiIGQ9Ik0xMSwzVjFoLTF2NXYxaDFoMmgxVjRWM0gxMXogTTEzLDZoLTJWNGgyVjZ6Ii8+DQoJCTxwYXRoIGZpbGw9IiM0MjQyNDIiIGQ9Ik0yLDE1aDdWOUgyVjE1eiBNNCwxMGgzdjFINXYyaDJ2MUg0VjEweiIvPg0KCTwvZz4NCjwvZz4NCjxnIGlkPSJjb2xvcl94NUZfaW1wb3J0YW5jZSI+DQoJPHBhdGggZmlsbD0iIzAwNTM5QyIgZD0iTTMuOTc5LDMuNUw0LDZMMyw1djEuNUw0LjUsOEw2LDYuNVY1TDUsNkw0Ljk3OSwzLjVjMC0wLjI3NSwwLjIyNS0wLjUsMC41LTAuNUg5VjJINS40NzkNCgkJQzQuNjUxLDIsMy45NzksMi42NzMsMy45NzksMy41eiIvPg0KPC9nPg0KPC9zdmc+DQo=)}.monaco-editor .find-widget .replace-all{background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iMTZweCINCgkgaGVpZ2h0PSIxNnB4IiB2aWV3Qm94PSIwIDAgMTYgMTYiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDE2IDE2IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxnIGlkPSJpY29uX3g1Rl9iZyI+DQoJPHBhdGggZmlsbD0iIzQyNDI0MiIgZD0iTTExLDE1VjlIMXY2SDExeiBNMiwxNHYtMmgxdi0xSDJ2LTFoM3Y0SDJ6IE0xMCwxMUg4djJoMnYxSDd2LTRoM1YxMXogTTMsMTN2LTFoMXYxSDN6IE0xMyw3djZoLTFWOEg1VjcNCgkJSDEzeiBNMTMsMlYxaC0xdjVoM1YySDEzeiBNMTQsNWgtMVYzaDFWNXogTTExLDJ2NEg4VjRoMXYxaDFWNEg5VjNIOFYySDExeiIvPg0KPC9nPg0KPGcgaWQ9ImNvbG9yX3g1Rl9hY3Rpb24iPg0KCTxwYXRoIGZpbGw9IiMwMDUzOUMiIGQ9Ik0xLjk3OSwzLjVMMiw2TDEsNXYxLjVMMi41LDhMNCw2LjVWNUwzLDZMMi45NzksMy41YzAtMC4yNzUsMC4yMjUtMC41LDAuNS0wLjVIN1YySDMuNDc5DQoJCUMyLjY1MSwyLDEuOTc5LDIuNjczLDEuOTc5LDMuNXoiLz4NCjwvZz4NCjwvc3ZnPg0K)}.monaco-editor .find-widget>.replace-part{display:none}.monaco-editor .find-widget>.replace-part>.replace-input{display:flex;display:-webkit-flex;vertical-align:middle;width:auto!important}.monaco-editor .find-widget.reduced-find-widget .matchesCount,.monaco-editor .find-widget.reduced-find-widget .monaco-checkbox{display:none}.monaco-editor .find-widget.narrow-find-widget{max-width:257px!important}.monaco-editor .find-widget.collapsed-find-widget{max-width:170px!important}.monaco-editor .find-widget.collapsed-find-widget .button.next,.monaco-editor .find-widget.collapsed-find-widget .button.previous,.monaco-editor .find-widget.collapsed-find-widget .button.replace,.monaco-editor .find-widget.collapsed-find-widget .button.replace-all,.monaco-editor .find-widget.collapsed-find-widget>.find-part .monaco-findInput .controls{display:none}.monaco-editor .findMatch{-webkit-animation-duration:0;-webkit-animation-name:inherit!important;-moz-animation-duration:0;-moz-animation-name:inherit!important;-ms-animation-duration:0;-ms-animation-name:inherit!important;animation-duration:0;animation-name:inherit!important}.monaco-editor .find-widget .monaco-sash{width:2px!important;margin-left:-4px}.monaco-editor.hc-black .find-widget .previous,.monaco-editor.vs-dark .find-widget .previous{background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiDQoJIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiDQoJIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iMTZweCIgaGVpZ2h0PSIxNnB4IiB2aWV3Qm94PSItMSAtMyAxNiAxNiIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAtMSAtMyAxNiAxNiIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8cG9seWdvbiBmaWxsPSIjQzVDNUM1IiBwb2ludHM9IjEzLDQgNiw0IDksMSA2LDEgMiw1IDYsOSA5LDkgNiw2IDEzLDYgIi8+DQo8L3N2Zz4NCg==)}.monaco-editor.hc-black .find-widget .next,.monaco-editor.vs-dark .find-widget .next{background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiDQoJIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiDQoJIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iMTZweCIgaGVpZ2h0PSIxNnB4IiB2aWV3Qm94PSItMSAtMyAxNiAxNiIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAtMSAtMyAxNiAxNiIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8cGF0aCBmaWxsPSIjQzVDNUM1IiBkPSJNMSw0aDdMNSwxaDNsNCw0TDgsOUg1bDMtM0gxVjR6Ii8+DQo8L3N2Zz4NCg==)}.monaco-editor.hc-black .find-widget .monaco-checkbox .label,.monaco-editor.vs-dark .find-widget .monaco-checkbox .label{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+DQo8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLC0xMDMyLjM2MjIpIj4NCiAgPHJlY3Qgd2lkdGg9IjkiIGhlaWdodD0iMiIgeD0iMiIgeT0iMTA0Ni4zNjIyIiBzdHlsZT0iZmlsbDojQzVDNUM1O2ZpbGwtb3BhY2l0eToxO3N0cm9rZTpub25lIiAvPg0KICA8cmVjdCB3aWR0aD0iMTMiIGhlaWdodD0iMiIgeD0iMiIgeT0iMTA0My4zNjIyIiBzdHlsZT0iZmlsbDojQzVDNUM1O2ZpbGwtb3BhY2l0eToxO3N0cm9rZTpub25lIiAvPg0KICA8cmVjdCB3aWR0aD0iNiIgaGVpZ2h0PSIyIiB4PSIyIiB5PSIxMDQwLjM2MjIiIHN0eWxlPSJmaWxsOiNDNUM1QzU7ZmlsbC1vcGFjaXR5OjE7c3Ryb2tlOm5vbmUiIC8+DQogIDxyZWN0IHdpZHRoPSIxMiIgaGVpZ2h0PSIyIiB4PSIyIiB5PSIxMDM3LjM2MjIiIHN0eWxlPSJmaWxsOiNDNUM1QzU7ZmlsbC1vcGFjaXR5OjE7c3Ryb2tlOm5vbmUiIC8+DQo8L2c+DQo8L3N2Zz4=)}.monaco-editor.vs-dark .find-widget .monaco-checkbox .checkbox:checked+.label,.monaco-editor.vs-dark .find-widget .monaco-checkbox .checkbox:not(:disabled):hover:before+.label{background-color:hsla(0,0%,100%,.1)}.monaco-editor.hc-black .find-widget .close-fw,.monaco-editor.vs-dark .find-widget .close-fw{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMyAzIDE2IDE2IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDMgMyAxNiAxNiI+PHBvbHlnb24gZmlsbD0iI2U4ZThlOCIgcG9pbnRzPSIxMi41OTcsMTEuMDQyIDE1LjQsMTMuODQ1IDEzLjg0NCwxNS40IDExLjA0MiwxMi41OTggOC4yMzksMTUuNCA2LjY4MywxMy44NDUgOS40ODUsMTEuMDQyIDYuNjgzLDguMjM5IDguMjM4LDYuNjgzIDExLjA0Miw5LjQ4NiAxMy44NDUsNi42ODMgMTUuNCw4LjIzOSIvPjwvc3ZnPg==)}.monaco-editor.hc-black .find-widget .replace,.monaco-editor.vs-dark .find-widget .replace{background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iMTZweCINCgkgaGVpZ2h0PSIxNnB4IiB2aWV3Qm94PSIwIDAgMTYgMTYiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDE2IDE2IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxnIGlkPSJpY29uX3g1Rl9iZyI+DQoJPGc+DQoJCTxwYXRoIGZpbGw9IiNDNUM1QzUiIGQ9Ik0xMSwzVjFoLTF2NXYxaDFoMmgxVjRWM0gxMXogTTEzLDZoLTJWNGgyVjZ6Ii8+DQoJCTxwYXRoIGZpbGw9IiNDNUM1QzUiIGQ9Ik0yLDE1aDdWOUgyVjE1eiBNNCwxMGgzdjFINXYyaDJ2MUg0VjEweiIvPg0KCTwvZz4NCjwvZz4NCjxnIGlkPSJjb2xvcl94NUZfaW1wb3J0YW5jZSI+DQoJPHBhdGggZmlsbD0iIzc1QkVGRiIgZD0iTTMuOTc5LDMuNUw0LDZMMyw1djEuNUw0LjUsOEw2LDYuNVY1TDUsNkw0Ljk3OSwzLjVjMC0wLjI3NSwwLjIyNS0wLjUsMC41LTAuNUg5VjJINS40NzkNCgkJQzQuNjUxLDIsMy45NzksMi42NzMsMy45NzksMy41eiIvPg0KPC9nPg0KPC9zdmc+DQo=)}.monaco-editor.hc-black .find-widget .replace-all,.monaco-editor.vs-dark .find-widget .replace-all{background-image:url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iMTZweCINCgkgaGVpZ2h0PSIxNnB4IiB2aWV3Qm94PSIwIDAgMTYgMTYiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDE2IDE2IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxnIGlkPSJpY29uX3g1Rl9iZyI+DQoJPHBhdGggZmlsbD0iI0M1QzVDNSIgZD0iTTExLDE1VjlIMXY2SDExeiBNMiwxNHYtMmgxdi0xSDJ2LTFoM3Y0SDJ6IE0xMCwxMUg4djJoMnYxSDd2LTRoM1YxMXogTTMsMTN2LTFoMXYxSDN6IE0xMyw3djZoLTFWOEg1VjcNCgkJSDEzeiBNMTMsMlYxaC0xdjVoM1YySDEzeiBNMTQsNWgtMVYzaDFWNXogTTExLDJ2NEg4VjRoMXYxaDFWNEg5VjNIOFYySDExeiIvPg0KPC9nPg0KPGcgaWQ9ImNvbG9yX3g1Rl9hY3Rpb24iPg0KCTxwYXRoIGZpbGw9IiM3NUJFRkYiIGQ9Ik0xLjk3OSwzLjVMMiw2TDEsNXYxLjVMMi41LDhMNCw2LjVWNUwzLDZMMi45NzksMy41YzAtMC4yNzUsMC4yMjUtMC41LDAuNS0wLjVIN1YySDMuNDc5DQoJCUMyLjY1MSwyLDEuOTc5LDIuNjczLDEuOTc5LDMuNXoiLz4NCjwvZz4NCjwvc3ZnPg0K)}.monaco-editor.hc-black .find-widget .expand,.monaco-editor.vs-dark .find-widget .expand{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiI+PHBhdGggZmlsbD0iI2U4ZThlOCIgZD0iTTExIDEwLjA3aC01LjY1Nmw1LjY1Ni01LjY1NnY1LjY1NnoiLz48L3N2Zz4=)}.monaco-editor.hc-black .find-widget .collapse,.monaco-editor.vs-dark .find-widget .collapse{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiI+PHBhdGggZmlsbD0iI2U4ZThlOCIgZD0iTTYgNHY4bDQtNC00LTR6bTEgMi40MTRsMS41ODYgMS41ODYtMS41ODYgMS41ODZ2LTMuMTcyeiIvPjwvc3ZnPg==)}.monaco-editor.hc-black .find-widget .button:not(.disabled):hover,.monaco-editor.vs-dark .find-widget .button:not(.disabled):hover{background-color:hsla(0,0%,100%,.1)}.monaco-editor.hc-black .find-widget .button:before{position:relative;top:1px;left:2px}.monaco-editor.hc-black .find-widget .monaco-checkbox .checkbox:checked+.label{background-color:hsla(0,0%,100%,.1)}.monaco-editor .margin-view-overlays .folding{cursor:pointer;background-repeat:no-repeat;background-origin:border-box;background-position:calc(50% + 2px) 50%;background-size:auto calc(100% - 3px);opacity:0;transition:opacity .5s;background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMTUgMTUiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDE1IDE1OyI+DQo8cGF0aCBzdHlsZT0iZmlsbDojQjZCNkI2IiBkPSJNMTEsNHY3SDRWNEgxMSBNMTIsM0gzdjloOVYzTDEyLDN6Ii8+DQo8bGluZSBzdHlsZT0iZmlsbDpub25lO3N0cm9rZTojNkI2QjZCO3N0cm9rZS1taXRlcmxpbWl0OjEwIiB4MT0iMTAiIHkxPSI3LjUiIHgyPSI1IiB5Mj0iNy41Ii8+DQo8L3N2Zz4=)}.monaco-editor.hc-black .margin-view-overlays .folding,.monaco-editor.vs-dark .margin-view-overlays .folding{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMTUgMTUiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDE1IDE1OyI+DQo8cGF0aCBzdHlsZT0iZmlsbDojNUE1QTVBIiBkPSJNMTEsNHY3SDRWNEgxMSBNMTIsM0gzdjloOVYzTDEyLDN6Ii8+DQo8bGluZSBzdHlsZT0iZmlsbDpub25lO3N0cm9rZTojQzVDNUM1O3N0cm9rZS1taXRlcmxpbWl0OjEwIiB4MT0iMTAiIHkxPSI3LjUiIHgyPSI1IiB5Mj0iNy41Ii8+DQo8L3N2Zz4=)}.monaco-editor .margin-view-overlays .folding.alwaysShowFoldIcons,.monaco-editor .margin-view-overlays:hover .folding{opacity:1}.monaco-editor .margin-view-overlays .folding.collapsed{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMTUgMTUiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDE1IDE1OyI+DQo8cmVjdCB4PSIzIiB5PSIzIiBzdHlsZT0iZmlsbDojRThFOEU4IiB3aWR0aD0iOSIgaGVpZ2h0PSI5Ii8+DQo8cGF0aCBzdHlsZT0iZmlsbDojQjZCNkI2IiBkPSJNMTEsNHY3SDRWNEgxMSBNMTIsM0gzdjloOVYzTDEyLDN6Ii8+DQo8bGluZSBzdHlsZT0iZmlsbDpub25lO3N0cm9rZTojNkI2QjZCO3N0cm9rZS1taXRlcmxpbWl0OjEwIiB4MT0iMTAiIHkxPSI3LjUiIHgyPSI1IiB5Mj0iNy41Ii8+DQo8bGluZSBzdHlsZT0iZmlsbDpub25lO3N0cm9rZTojNkI2QjZCO3N0cm9rZS1taXRlcmxpbWl0OjEwIiB4MT0iNy41IiB5MT0iNSIgeDI9IjcuNSIgeTI9IjEwIi8+DQo8L3N2Zz4=);opacity:1}.monaco-editor.hc-black .margin-view-overlays .folding.collapsed,.monaco-editor.vs-dark .margin-view-overlays .folding.collapsed{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMTUgMTUiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDE1IDE1OyI+DQo8cmVjdCB4PSIzIiB5PSIzIiBzdHlsZT0ib3BhY2l0eTowLjE7ZmlsbDojRkZGRkZGIiB3aWR0aD0iOSIgaGVpZ2h0PSI5Ii8+DQo8cGF0aCBzdHlsZT0iZmlsbDojNUE1QTVBIiBkPSJNMTEsNHY3SDRWNEgxMSBNMTIsM0gzdjloOVYzTDEyLDN6Ii8+DQo8bGluZSBzdHlsZT0iZmlsbDpub25lO3N0cm9rZTojQzVDNUM1O3N0cm9rZS1taXRlcmxpbWl0OjEwIiB4MT0iMTAiIHkxPSI3LjUiIHgyPSI1IiB5Mj0iNy41Ii8+DQo8bGluZSBzdHlsZT0iZmlsbDpub25lO3N0cm9rZTojQzVDNUM1O3N0cm9rZS1taXRlcmxpbWl0OjEwIiB4MT0iNy41IiB5MT0iNSIgeDI9IjcuNSIgeTI9IjEwIi8+DQo8L3N2Zz4=)}.monaco-editor .inline-folded:after{color:grey;margin:.1em .2em 0;content:"⋯";display:inline;line-height:1em;cursor:pointer}.monaco-editor .goto-definition-link{text-decoration:underline;cursor:pointer}.monaco-editor .marker-widget{padding:6px 12px;text-overflow:ellipsis;white-space:nowrap}.monaco-editor .marker-widget>.stale{opacity:.6;font-style:italic}.monaco-editor .marker-widget div.block{display:inline-block;vertical-align:top}.monaco-editor .marker-widget .title{display:inline-block;padding-right:5px}.monaco-editor .marker-widget .descriptioncontainer{position:relative;white-space:pre;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}.monaco-editor .marker-widget .descriptioncontainer .filename{cursor:pointer;opacity:.6}.monaco-editor-hover{cursor:default;position:absolute;overflow:hidden;z-index:5;-webkit-user-select:text;-ms-user-select:text;-moz-user-select:text;-o-user-select:text;user-select:text;box-sizing:initial;-webkit-animation:fadein .1s linear;animation:fadein .1s linear;line-height:1.5em}.monaco-editor-hover.hidden{display:none}.monaco-editor-hover .monaco-editor-hover-content{max-width:500px}.monaco-editor-hover .hover-row{padding:4px 5px}.monaco-editor-hover p,.monaco-editor-hover ul{margin:8px 0}.monaco-editor-hover p:first-child,.monaco-editor-hover ul:first-child{margin-top:0}.monaco-editor-hover p:last-child,.monaco-editor-hover ul:last-child{margin-bottom:0}.monaco-editor-hover ul{padding-left:20px}.monaco-editor-hover li>p{margin-bottom:0}.monaco-editor-hover li>ul{margin-top:0}.monaco-editor-hover code{border-radius:3px;padding:0 .4em}.monaco-editor-hover .monaco-tokenized-source{white-space:pre-wrap;word-break:break-all}.monaco-editor .detected-link,.monaco-editor .detected-link-active{text-decoration:underline;text-underline-position:under}.monaco-editor .detected-link-active{cursor:pointer}.monaco-editor .monaco-editor-overlaymessage{padding-bottom:8px}@-webkit-keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.monaco-editor .monaco-editor-overlaymessage.fadeIn{-webkit-animation:fadeIn .15s ease-out;animation:fadeIn .15s ease-out}@-webkit-keyframes fadeOut{0%{opacity:1}to{opacity:0}}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}.monaco-editor .monaco-editor-overlaymessage.fadeOut{-webkit-animation:fadeOut .1s ease-out;animation:fadeOut .1s ease-out}.monaco-editor .monaco-editor-overlaymessage .message{padding:1px 4px}.monaco-editor .monaco-editor-overlaymessage .anchor{width:0!important;height:0!important;border:8px solid transparent;z-index:8;position:absolute}.monaco-editor .parameter-hints-widget{z-index:3;display:flex;flex-direction:column;line-height:1.5em}.monaco-editor .parameter-hints-widget>.wrapper{max-width:440px;display:flex;flex-direction:column}.monaco-editor .parameter-hints-widget.multiple{min-height:3.3em;padding:0 0 0 1.9em}.monaco-editor .parameter-hints-widget.visible{transition:left .05s ease-in-out}.monaco-editor .parameter-hints-widget p,.monaco-editor .parameter-hints-widget ul{margin:8px 0}.monaco-editor .parameter-hints-widget .body,.monaco-editor .parameter-hints-widget .monaco-scrollable-element{display:flex;flex-direction:column}.monaco-editor .parameter-hints-widget .signature{padding:4px 5px}.monaco-editor .parameter-hints-widget .docs{padding:0 10px 0 5px;white-space:pre-wrap}.monaco-editor .parameter-hints-widget .docs .markdown-docs{white-space:normal}.monaco-editor .parameter-hints-widget .docs .code{white-space:pre-wrap}.monaco-editor .parameter-hints-widget .docs code{border-radius:3px;padding:0 .4em}.monaco-editor .parameter-hints-widget .buttons{position:absolute;display:none;bottom:0;left:0}.monaco-editor .parameter-hints-widget.multiple .buttons{display:block}.monaco-editor .parameter-hints-widget.multiple .button{position:absolute;left:2px;width:16px;height:16px;background-repeat:no-repeat;cursor:pointer}.monaco-editor .parameter-hints-widget .button.previous{bottom:24px;background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZmlsbD0iIzQyNDI0MiIgZD0iTTEwLjggOS41bC45LS45TDguMSA1IDQuMiA4LjZsLjkuOSAzLTIuNyAyLjcgMi43eiIvPjwvc3ZnPg==)}.monaco-editor .parameter-hints-widget .button.next{bottom:0;background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZmlsbD0iIzQyNDI0MiIgZD0iTTUuMSA1bC0uOS45IDMuNiAzLjYgMy45LTMuNi0xLS45LTMgMi43TDUuMSA1eiIvPjwvc3ZnPg==)}.monaco-editor .parameter-hints-widget .overloads{position:absolute;display:none;text-align:center;bottom:14px;left:0;width:22px;height:12px;line-height:12px;opacity:.5}.monaco-editor .parameter-hints-widget.multiple .overloads{display:block}.monaco-editor .parameter-hints-widget .signature .parameter.active{font-weight:700;text-decoration:underline}.monaco-editor .parameter-hints-widget .documentation-parameter>.parameter{font-weight:700;margin-right:.5em}.monaco-editor.hc-black .parameter-hints-widget .button.previous,.monaco-editor.vs-dark .parameter-hints-widget .button.previous{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZmlsbD0iI0U4RThFOCIgZD0iTTEwLjggOS41bC45LS45TDguMSA1IDQuMiA4LjZsLjkuOSAzLTIuNyAyLjcgMi43eiIvPjwvc3ZnPg==)}.monaco-editor.hc-black .parameter-hints-widget .button.next,.monaco-editor.vs-dark .parameter-hints-widget .button.next{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZmlsbD0iI0U4RThFOCIgZD0iTTUuMSA1bC0uOS45IDMuNiAzLjYgMy45LTMuNi0xLS45LTMgMi43TDUuMSA1eiIvPjwvc3ZnPg==)}.monaco-editor .peekview-widget .head{-o-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;display:flex}.monaco-editor .peekview-widget .head .peekview-title{display:inline-block;font-size:13px;margin-left:20px;cursor:pointer}.monaco-editor .peekview-widget .head .peekview-title .dirname:not(:empty){font-size:.9em;margin-left:.5em}.monaco-editor .peekview-widget .head .peekview-actions{flex:1;text-align:right;padding-right:2px}.monaco-editor .peekview-widget .head .peekview-actions>.monaco-action-bar{display:inline-block}.monaco-editor .peekview-widget .head .peekview-actions>.monaco-action-bar,.monaco-editor .peekview-widget .head .peekview-actions>.monaco-action-bar>.actions-container{height:100%}.monaco-editor .peekview-widget .head .peekview-actions>.monaco-action-bar .action-item{margin-left:4px}.monaco-editor .peekview-widget .head .peekview-actions>.monaco-action-bar .action-label{width:16px;height:100%;margin:0;line-height:inherit;background-repeat:no-repeat;background-position:50%}.monaco-editor .peekview-widget .head .peekview-actions>.monaco-action-bar .action-label.octicon{margin:0}.monaco-editor .peekview-widget .head .peekview-actions .action-label.icon.close-peekview-action{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMyAzIDE2IDE2IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDMgMyAxNiAxNiI+PHBvbHlnb24gZmlsbD0iIzQyNDI0MiIgcG9pbnRzPSIxMi41OTcsMTEuMDQyIDE1LjQsMTMuODQ1IDEzLjg0NCwxNS40IDExLjA0MiwxMi41OTggOC4yMzksMTUuNCA2LjY4MywxMy44NDUgOS40ODUsMTEuMDQyIDYuNjgzLDguMjM5IDguMjM4LDYuNjgzIDExLjA0Miw5LjQ4NiAxMy44NDUsNi42ODMgMTUuNCw4LjIzOSIvPjwvc3ZnPg==) 50% no-repeat}.monaco-editor .peekview-widget>.body{border-top:1px solid;position:relative}.monaco-editor.hc-black .peekview-widget .head .peekview-actions .action-label.icon.close-peekview-action,.monaco-editor.vs-dark .peekview-widget .head .peekview-actions .action-label.icon.close-peekview-action{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMyAzIDE2IDE2IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDMgMyAxNiAxNiI+PHBvbHlnb24gZmlsbD0iI2U4ZThlOCIgcG9pbnRzPSIxMi41OTcsMTEuMDQyIDE1LjQsMTMuODQ1IDEzLjg0NCwxNS40IDExLjA0MiwxMi41OTggOC4yMzksMTUuNCA2LjY4MywxMy44NDUgOS40ODUsMTEuMDQyIDYuNjgzLDguMjM5IDguMjM4LDYuNjgzIDExLjA0Miw5LjQ4NiAxMy44NDUsNi42ODMgMTUuNCw4LjIzOSIvPjwvc3ZnPg==) 50% no-repeat}.monaco-editor .zone-widget .zone-widget-container.reference-zone-widget{border-top-width:1px;border-bottom-width:1px}.monaco-editor .reference-zone-widget .inline{display:inline-block;vertical-align:top}.monaco-editor .reference-zone-widget .messages{height:100%;width:100%;text-align:center;padding:3em 0}.monaco-editor .reference-zone-widget .ref-tree{line-height:23px}.monaco-editor .reference-zone-widget .ref-tree .reference{text-overflow:ellipsis;overflow:hidden}.monaco-editor .reference-zone-widget .ref-tree .reference-file{display:inline-flex;width:100%;height:100%}.monaco-editor .reference-zone-widget .ref-tree .reference-file .count{margin-right:12px;margin-left:auto}.monaco-editor.hc-black .reference-zone-widget .ref-tree .reference-file{font-weight:700}.monaco-editor .rename-box{z-index:7;color:inherit}.monaco-editor .rename-box .rename-input{padding:4px}.monaco-editor .snippet-placeholder{min-width:2px}.monaco-editor .finish-snippet-placeholder,.monaco-editor .snippet-placeholder{outline-style:solid;outline-width:1px}.monaco-editor .suggest-widget{z-index:4;width:430px}.monaco-editor .suggest-widget>.details,.monaco-editor .suggest-widget>.message,.monaco-editor .suggest-widget>.tree{width:100%;border-style:solid;border-width:1px;box-sizing:border-box}.monaco-editor.hc-black .suggest-widget>.details,.monaco-editor.hc-black .suggest-widget>.message,.monaco-editor.hc-black .suggest-widget>.tree{border-width:2px}.monaco-editor .suggest-widget.docs-side{width:660px}.monaco-editor .suggest-widget.docs-side>.details,.monaco-editor .suggest-widget.docs-side>.tree{width:50%;float:left}.monaco-editor .suggest-widget.docs-side.list-right>.details,.monaco-editor .suggest-widget.docs-side.list-right>.tree{float:right}.monaco-editor .suggest-widget>.message{padding-left:22px}.monaco-editor .suggest-widget>.tree{height:100%}.monaco-editor .suggest-widget .monaco-list .monaco-list-row{display:flex;-mox-box-sizing:border-box;box-sizing:border-box;padding-right:10px;background-repeat:no-repeat;background-position:2px 2px;white-space:nowrap}.monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents{flex:1;height:100%;overflow:hidden;padding-left:2px}.monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents>.main{display:flex;overflow:hidden;text-overflow:ellipsis;white-space:pre}.monaco-editor .suggest-widget:not(.frozen) .monaco-highlighted-label .highlight{font-weight:700}.monaco-editor .suggest-widget .details>.monaco-scrollable-element>.body>.header>.close,.monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents>.main>.readMore{opacity:.6;background-position:50%;background-repeat:no-repeat;background-size:70%;cursor:pointer}.monaco-editor .suggest-widget .details>.monaco-scrollable-element>.body>.header>.close{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMyAzIDE2IDE2IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDMgMyAxNiAxNiI+PHBvbHlnb24gZmlsbD0iIzQyNDI0MiIgcG9pbnRzPSIxMi41OTcsMTEuMDQyIDE1LjQsMTMuODQ1IDEzLjg0NCwxNS40IDExLjA0MiwxMi41OTggOC4yMzksMTUuNCA2LjY4MywxMy44NDUgOS40ODUsMTEuMDQyIDYuNjgzLDguMjM5IDguMjM4LDYuNjgzIDExLjA0Miw5LjQ4NiAxMy44NDUsNi42ODMgMTUuNCw4LjIzOSIvPjwvc3ZnPg==);float:right;margin-right:5px}.monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents>.main>.readMore{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiI+PHBhdGggZD0iTTggMWMtMy44NjUgMC03IDMuMTM1LTcgN3MzLjEzNSA3IDcgNyA3LTMuMTM1IDctNy0zLjEzNS03LTctN3ptMSAxMmgtMnYtN2gydjd6bTAtOGgtMnYtMmgydjJ6IiBmaWxsPSIjMUJBMUUyIi8+PHBhdGggZD0iTTcgNmgydjdoLTJ2LTd6bTAtMWgydi0yaC0ydjJ6IiBmaWxsPSIjZmZmIi8+PC9zdmc+)}.monaco-editor .suggest-widget .details>.monaco-scrollable-element>.body>.header>.close:hover,.monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents>.main>.readMore:hover{opacity:1}.monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents>.main>.type-label{margin-left:.8em;flex:1;text-align:right;overflow:hidden;text-overflow:ellipsis;opacity:.7}.monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents>.main>.type-label>.monaco-tokenized-source{display:inline}.monaco-editor .suggest-widget.docs-below .monaco-list .monaco-list-row.focused>.contents>.main>.readMore,.monaco-editor .suggest-widget.docs-side .monaco-list .monaco-list-row.focused>.contents>.main>.readMore,.monaco-editor .suggest-widget.docs-side .monaco-list .monaco-list-row.focused>.contents>.main>.type-label,.monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents>.main>.readMore,.monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents>.main>.type-label{display:none}.monaco-editor .suggest-widget .monaco-list .monaco-list-row.focused>.contents>.main>.readMore,.monaco-editor .suggest-widget .monaco-list .monaco-list-row.focused>.contents>.main>.type-label{display:inline}.monaco-editor .suggest-widget .monaco-list .monaco-list-row .monaco-icon-label:before{height:100%}.monaco-editor .suggest-widget .monaco-list .monaco-list-row .icon{display:block;height:16px;width:16px;margin-left:2px;background-repeat:no-repeat;background-size:80%;background-position:50%}.monaco-editor .suggest-widget .monaco-list .monaco-list-row .icon.hide,.monaco-editor .suggest-widget.no-icons .monaco-list .monaco-list-row .icon,.monaco-editor .suggest-widget.no-icons .monaco-list .monaco-list-row .monaco-icon-label.suggest-icon:before{display:none}.monaco-editor .suggest-widget .monaco-list .monaco-list-row .monaco-icon-label.suggest-icon:before{content:" ";background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHN0eWxlPi5pY29uLWNhbnZhcy10cmFuc3BhcmVudHtvcGFjaXR5OjA7ZmlsbDojZjZmNmY2fS5pY29uLXZzLW91dHtmaWxsOiNmNmY2ZjZ9Lmljb24tdnMtYmd7ZmlsbDojNDI0MjQyfTwvc3R5bGU+PHBhdGggY2xhc3M9Imljb24tY2FudmFzLXRyYW5zcGFyZW50IiBkPSJNMTYgMTZIMFYwaDE2djE2eiIgaWQ9ImNhbnZhcyIvPjxwYXRoIGNsYXNzPSJpY29uLXZzLW91dCIgZD0iTTE2IDEwYzAgMi4yMDUtMS43OTQgNC00IDQtMS44NTggMC0zLjQxMS0xLjI3OS0zLjg1OC0zaC0uOTc4bDIuMzE4IDRIMHYtMS43MDNsMi0zLjQwOFYwaDExdjYuMTQyYzEuNzIxLjQ0NyAzIDIgMyAzLjg1OHoiIGlkPSJvdXRsaW5lIi8+PHBhdGggY2xhc3M9Imljb24tdnMtYmciIGQ9Ik0xMiAxdjQuNzVBNC4yNTUgNC4yNTUgMCAwIDAgNy43NSAxMGgtLjczMkw0LjI3NSA1LjI2OSAzIDcuNDQyVjFoOXpNNy43NDcgMTRMNC4yNjkgOCAuNzQ4IDE0aDYuOTk5ek0xNSAxMGEzIDMgMCAxIDEtNiAwIDMgMyAwIDAgMSA2IDB6IiBpZD0iaWNvbkJnIi8+PC9zdmc+);background-repeat:no-repeat;background-position:50%}.monaco-editor .suggest-widget .monaco-list .monaco-list-row .suggest-icon.constructor:before,.monaco-editor .suggest-widget .monaco-list .monaco-list-row .suggest-icon.function:before,.monaco-editor .suggest-widget .monaco-list .monaco-list-row .suggest-icon.method:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHN0eWxlPi5pY29uLWNhbnZhcy10cmFuc3BhcmVudHtvcGFjaXR5OjA7ZmlsbDojZjZmNmY2fS5pY29uLXZzLW91dHtmaWxsOiNmNmY2ZjZ9Lmljb24tdnMtZmd7ZmlsbDojZjBlZmYxfS5pY29uLXZzLWFjdGlvbi1wdXJwbGV7ZmlsbDojNjUyZDkwfTwvc3R5bGU+PHBhdGggY2xhc3M9Imljb24tY2FudmFzLXRyYW5zcGFyZW50IiBkPSJNMTYgMTZIMFYwaDE2djE2eiIgaWQ9ImNhbnZhcyIvPjxwYXRoIGNsYXNzPSJpY29uLXZzLW91dCIgZD0iTTE1IDMuMzQ5djguNDAzTDguOTc1IDE2SDguMDdMMSAxMS41ODJWMy4zMjdMNy41OTUgMGgxLjExOEwxNSAzLjM0OXoiIGlkPSJvdXRsaW5lIi8+PHBhdGggY2xhc3M9Imljb24tdnMtZmciIGQ9Ik0xMi43MTUgNC4zOThMOC40ODcgNy4wMiAzLjU2NSA0LjI3Mmw0LjU3OC0yLjMwOSA0LjU3MiAyLjQzNXpNMyA1LjEwMmw1IDIuNzkydjUuNzA1bC01LTMuMTI1VjUuMTAyem02IDguNDM0VjcuODc4bDQtMi40OHY1LjMxN2wtNCAyLjgyMXoiIGlkPSJpY29uRmciLz48cGF0aCBjbGFzcz0iaWNvbi12cy1hY3Rpb24tcHVycGxlIiBkPSJNOC4xNTYuODM3TDIgMy45NDJ2Ny4wODVMOC41MTcgMTUuMSAxNCAxMS4yMzNWMy45NUw4LjE1Ni44Mzd6bTQuNTU5IDMuNTYxTDguNDg3IDcuMDIgMy41NjUgNC4yNzJsNC41NzgtMi4zMDkgNC41NzIgMi40MzV6TTMgNS4xMDJsNSAyLjc5MnY1LjcwNWwtNS0zLjEyNVY1LjEwMnptNiA4LjQzNFY3Ljg3OGw0LTIuNDh2NS4zMTdsLTQgMi44MjF6IiBpZD0iaWNvbkJnIi8+PC9zdmc+)}.monaco-editor .suggest-widget .monaco-list .monaco-list-row .suggest-icon.field:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHN0eWxlPi5pY29uLWNhbnZhcy10cmFuc3BhcmVudHtvcGFjaXR5OjA7ZmlsbDojZjZmNmY2fS5pY29uLXZzLW91dHtmaWxsOiNmNmY2ZjZ9Lmljb24tdnMtZmd7ZmlsbDojZjBlZmYxfS5pY29uLXZzLWFjdGlvbi1ibHVle2ZpbGw6IzAwNTM5Y308L3N0eWxlPjxwYXRoIGNsYXNzPSJpY29uLWNhbnZhcy10cmFuc3BhcmVudCIgZD0iTTE2IDE2SDBWMGgxNnYxNnoiIGlkPSJjYW52YXMiLz48cGF0aCBjbGFzcz0iaWNvbi12cy1vdXQiIGQ9Ik0wIDEwLjczNlY0LjVMOSAwbDcgMy41djYuMjM2bC05IDQuNS03LTMuNXoiIGlkPSJvdXRsaW5lIi8+PHBhdGggY2xhc3M9Imljb24tdnMtYWN0aW9uLWJsdWUiIGQ9Ik05IDFMMSA1djVsNiAzIDgtNFY0TDkgMXpNNyA2Ljg4MkwzLjIzNiA1IDkgMi4xMTggMTIuNzY0IDQgNyA2Ljg4MnoiIGlkPSJpY29uQmciLz48cGF0aCBjbGFzcz0iaWNvbi12cy1mZyIgZD0iTTkgMi4xMThMMTIuNzY0IDQgNyA2Ljg4MiAzLjIzNiA1IDkgMi4xMTh6IiBpZD0iaWNvbkZnIi8+PC9zdmc+)}.monaco-editor .suggest-widget .monaco-list .monaco-list-row .suggest-icon.event:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHN0eWxlPi5pY29uLWNhbnZhcy10cmFuc3BhcmVudHtvcGFjaXR5OjA7ZmlsbDojZjZmNmY2fS5pY29uLXZzLW91dHtmaWxsOiNmNmY2ZjZ9Lmljb24tdnMtYWN0aW9uLW9yYW5nZXtmaWxsOiNjMjdkMWF9PC9zdHlsZT48cGF0aCBjbGFzcz0iaWNvbi1jYW52YXMtdHJhbnNwYXJlbnQiIGQ9Ik0xNiAxNkgwVjBoMTZ2MTZ6IiBpZD0iY2FudmFzIi8+PHBhdGggY2xhc3M9Imljb24tdnMtb3V0IiBkPSJNMTQgMS40MTRMOS40MTQgNkgxNHYxLjQxNEw1LjQxNCAxNkgzdi0xLjIzNEw1LjM3MSAxMEgyVjguNzY0TDYuMzgyIDBIMTR2MS40MTR6IiBpZD0ib3V0bGluZSIgc3R5bGU9ImRpc3BsYXk6IG5vbmU7Ii8+PHBhdGggY2xhc3M9Imljb24tdnMtYWN0aW9uLW9yYW5nZSIgZD0iTTcgN2g2bC04IDhINGwyLjk4NS02SDNsNC04aDZMNyA3eiIgaWQ9Imljb25CZyIvPjwvc3ZnPg==)}.monaco-editor .suggest-widget .monaco-list .monaco-list-row .suggest-icon.operator:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHN0eWxlPi5pY29uLWNhbnZhcy10cmFuc3BhcmVudHtvcGFjaXR5OjA7ZmlsbDojZjZmNmY2fS5pY29uLXZzLW91dHtmaWxsOiNmNmY2ZjZ9Lmljb24tdnMtZmd7ZmlsbDojZjBlZmYxfS5pY29uLXZzLWFjdGlvbi1ibHVle2ZpbGw6IzAwNTM5Y308L3N0eWxlPjxwYXRoIGNsYXNzPSJpY29uLWNhbnZhcy10cmFuc3BhcmVudCIgZD0iTTE2IDE2SDBWMGgxNnYxNnoiIGlkPSJjYW52YXMiLz48cGF0aCBjbGFzcz0iaWNvbi12cy1vdXQiIGQ9Ik0xNiAxNkgwVjBoMTZ2MTZ6IiBpZD0ib3V0bGluZSIgc3R5bGU9ImRpc3BsYXk6IG5vbmU7Ii8+PHBhdGggY2xhc3M9Imljb24tdnMtYWN0aW9uLWJsdWUiIGQ9Ik0xIDF2MTRoMTRWMUgxem02IDEySDN2LTFoNHYxem0wLTNIM1Y5aDR2MXptMC01SDV2Mkg0VjVIMlY0aDJWMmgxdjJoMnYxem0zLjI4MSA4SDguNzE5bDMtNGgxLjU2M2wtMy4wMDEgNHpNMTQgNUg5VjRoNXYxeiIgaWQ9Imljb25CZyIvPjxwYXRoIGNsYXNzPSJpY29uLXZzLWZnIiBkPSJNNyA1SDV2Mkg0VjVIMlY0aDJWMmgxdjJoMnYxem03LTFIOXYxaDVWNHpNNyA5SDN2MWg0Vjl6bTAgM0gzdjFoNHYtMXptMy4yODEgMWwzLTRoLTEuNTYzbC0zIDRoMS41NjN6IiBpZD0iaWNvbkZnIiBzdHlsZT0iZGlzcGxheTogbm9uZTsiLz48L3N2Zz4=)}.monaco-editor .suggest-widget .monaco-list .monaco-list-row .suggest-icon.variable:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHN0eWxlPi5pY29uLWNhbnZhcy10cmFuc3BhcmVudHtvcGFjaXR5OjA7ZmlsbDojZjZmNmY2fS5pY29uLXZzLW91dHtmaWxsOiNmNmY2ZjZ9Lmljb24tdnMtYmd7ZmlsbDojNDI0MjQyfS5pY29uLXZzLWZne2ZpbGw6I2YwZWZmMX0uaWNvbi12cy1hY3Rpb24tYmx1ZXtmaWxsOiMwMDUzOWN9PC9zdHlsZT48cGF0aCBjbGFzcz0iaWNvbi1jYW52YXMtdHJhbnNwYXJlbnQiIGQ9Ik0xNiAxNkgwVjBoMTZ2MTZ6IiBpZD0iY2FudmFzIi8+PHBhdGggY2xhc3M9Imljb24tdnMtb3V0IiBkPSJNMTEgM3YxLjAxNUw4LjczMyAyLjg4MiA1IDQuNzQ5VjNIMHYxMGg1di0xLjg1OWwyLjE1NiAxLjA3N0wxMSAxMC4yOTVWMTNoNVYzaC01eiIgaWQ9Im91dGxpbmUiIHN0eWxlPSJkaXNwbGF5OiBub25lOyIvPjxwYXRoIGNsYXNzPSJpY29uLXZzLWJnIiBkPSJNMiA1djZoMnYxSDFWNGgzdjFIMnptMTAgNnYxaDNWNGgtM3YxaDJ2NmgtMnoiIGlkPSJpY29uQmciLz48cGF0aCBjbGFzcz0iaWNvbi12cy1mZyIgZD0iTTcuMTU2IDcuMTU2bC0xLjU3OC0uNzg5IDMuMTU2LTEuNTc4IDEuNTc4Ljc4OS0zLjE1NiAxLjU3OHoiIGlkPSJpY29uRmciIHN0eWxlPSJkaXNwbGF5OiBub25lOyIvPjxwYXRoIGNsYXNzPSJpY29uLXZzLWFjdGlvbi1ibHVlIiBkPSJNOC43MzMgNEw0IDYuMzY3djMuMTU2TDcuMTU2IDExLjFsNC43MzMtMi4zNjdWNS41NzhMOC43MzMgNHpNNy4xNTYgNy4xNTZsLTEuNTc4LS43ODkgMy4xNTYtMS41NzggMS41NzguNzg5LTMuMTU2IDEuNTc4eiIgaWQ9ImNvbG9ySW1wb3J0YW5jZSIvPjwvc3ZnPg==)}.monaco-editor .suggest-widget .monaco-list .monaco-list-row .suggest-icon.class:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHN0eWxlPi5pY29uLWNhbnZhcy10cmFuc3BhcmVudHtvcGFjaXR5OjA7ZmlsbDojZjZmNmY2fS5pY29uLXZzLW91dHtmaWxsOiNmNmY2ZjZ9Lmljb24tdnMtYWN0aW9uLW9yYW5nZXtmaWxsOiNjMjdkMWF9PC9zdHlsZT48cGF0aCBjbGFzcz0iaWNvbi1jYW52YXMtdHJhbnNwYXJlbnQiIGQ9Ik0xNiAxNkgwVjBoMTZ2MTZ6IiBpZD0iY2FudmFzIi8+PHBhdGggY2xhc3M9Imljb24tdnMtb3V0IiBkPSJNMTYgNi41ODZsLTMtM0wxMS41ODYgNUg5LjQxNGwxLTEtNC00aC0uODI4TDAgNS41ODZ2LjgyOGw0IDRMNi40MTQgOEg3djVoMS41ODZsMyAzaC44MjhMMTYgMTIuNDE0di0uODI4TDEzLjkxNCA5LjUgMTYgNy40MTR2LS44Mjh6IiBpZD0ib3V0bGluZSIvPjxwYXRoIGNsYXNzPSJpY29uLXZzLWFjdGlvbi1vcmFuZ2UiIGQ9Ik0xMyAxMGwyIDItMyAzLTItMiAxLTFIOFY3SDZMNCA5IDEgNmw1LTUgMyAzLTIgMmg1bDEtMSAyIDItMyAzLTItMiAxLTFIOXY0bDIuOTk5LjAwMkwxMyAxMHoiIGlkPSJpY29uQmciLz48L3N2Zz4=)}.monaco-editor .suggest-widget .monaco-list .monaco-list-row .suggest-icon.interface:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHN0eWxlPi5pY29uLWNhbnZhcy10cmFuc3BhcmVudHtvcGFjaXR5OjA7ZmlsbDojZjZmNmY2fS5pY29uLXZzLW91dHtmaWxsOiNmNmY2ZjZ9Lmljb24tdnMtZmd7ZmlsbDojZjBlZmYxfS5pY29uLXZzLWFjdGlvbi1ibHVle2ZpbGw6IzAwNTM5Y308L3N0eWxlPjxwYXRoIGNsYXNzPSJpY29uLWNhbnZhcy10cmFuc3BhcmVudCIgZD0iTTE2IDE2SDBWMGgxNnYxNnoiIGlkPSJjYW52YXMiLz48cGF0aCBjbGFzcz0iaWNvbi12cy1vdXQiIGQ9Ik0xMS41IDEyYy0xLjkxNSAwLTMuNjAyLTEuMjQxLTQuMjI4LTNoLTEuNDFhMy4xMSAzLjExIDAgMCAxLTIuNzM3IDEuNjI1QzEuNDAyIDEwLjYyNSAwIDkuMjIzIDAgNy41czEuNDAyLTMuMTI1IDMuMTI1LTMuMTI1YzEuMTY1IDAgMi4yMDEuNjM5IDIuNzM3IDEuNjI1aDEuNDFjLjYyNi0xLjc1OSAyLjMxMy0zIDQuMjI4LTNDMTMuOTgxIDMgMTYgNS4wMTkgMTYgNy41UzEzLjk4MSAxMiAxMS41IDEyeiIgaWQ9Im91dGxpbmUiLz48cGF0aCBjbGFzcz0iaWNvbi12cy1mZyIgZD0iTTExLjUgOUExLjUwMSAxLjUwMSAwIDEgMSAxMyA3LjVjMCAuODI2LS42NzMgMS41LTEuNSAxLjV6IiBpZD0iaWNvbkZnIi8+PHBhdGggY2xhc3M9Imljb24tdnMtYWN0aW9uLWJsdWUiIGQ9Ik0xMS41IDRhMy40OSAzLjQ5IDAgMCAwLTMuNDUgM0g1LjE4NUEyLjEyMiAyLjEyMiAwIDAgMCAxIDcuNWEyLjEyMyAyLjEyMyAwIDEgMCA0LjE4NS41SDguMDVhMy40OSAzLjQ5IDAgMCAwIDMuNDUgMyAzLjUgMy41IDAgMSAwIDAtN3ptMCA1Yy0uODI3IDAtMS41LS42NzMtMS41LTEuNVMxMC42NzMgNiAxMS41IDZzMS41LjY3MyAxLjUgMS41UzEyLjMyNyA5IDExLjUgOXoiIGlkPSJpY29uQmciLz48L3N2Zz4=)}.monaco-editor .suggest-widget .monaco-list .monaco-list-row .suggest-icon.struct:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHN0eWxlPi5pY29uLWNhbnZhcy10cmFuc3BhcmVudHtvcGFjaXR5OjA7ZmlsbDojZjZmNmY2fS5pY29uLXZzLW91dHtmaWxsOiNmNmY2ZjZ9Lmljb24tdnMtYWN0aW9uLWJsdWV7ZmlsbDojMDA1MzljfTwvc3R5bGU+PHBhdGggY2xhc3M9Imljb24tY2FudmFzLXRyYW5zcGFyZW50IiBkPSJNMTYgMTZIMFYwaDE2djE2eiIgaWQ9ImNhbnZhcyIvPjxwYXRoIGNsYXNzPSJpY29uLXZzLW91dCIgZD0iTTkgMTRWOEg3djZIMVYyaDE0djEySDl6IiBpZD0ib3V0bGluZSIgc3R5bGU9ImRpc3BsYXk6IG5vbmU7Ii8+PHBhdGggY2xhc3M9Imljb24tdnMtYWN0aW9uLWJsdWUiIGQ9Ik0xMCA5aDR2NGgtNFY5em0tOCA0aDRWOUgydjR6TTIgM3Y0aDEyVjNIMnoiIGlkPSJpY29uQmciLz48L3N2Zz4=)}.monaco-editor .suggest-widget .monaco-list .monaco-list-row .suggest-icon.type-parameter:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHN0eWxlPi5pY29uLWNhbnZhcy10cmFuc3BhcmVudHtvcGFjaXR5OjA7ZmlsbDojZjZmNmY2fS5pY29uLXZzLW91dHtmaWxsOiNmNmY2ZjZ9Lmljb24tdnMtYmd7ZmlsbDojNDI0MjQyfTwvc3R5bGU+PHBhdGggY2xhc3M9Imljb24tY2FudmFzLXRyYW5zcGFyZW50IiBkPSJNMTYgMTZIMFYwaDE2djE2eiIgaWQ9ImNhbnZhcyIvPjxwYXRoIGNsYXNzPSJpY29uLXZzLW91dCIgZD0iTTEwLjcwMiAxMC41bDItMi0yLTIgLjUtLjVIMTB2NWgxdjNINXYtM2gxVjZINC43OThsLjUuNS0yIDIgMiAyTDMgMTIuNzk3bC0zLTNWNy4yMDFsMy0zVjJoMTB2Mi4yMDFsMyAzdjIuNTk2bC0zIDMtMi4yOTgtMi4yOTd6IiBpZD0ib3V0bGluZSIgc3R5bGU9ImRpc3BsYXk6IG5vbmU7Ii8+PHBhdGggY2xhc3M9Imljb24tdnMtYmciIGQ9Ik00IDNoOHYyaC0xdi0uNWMwLS4yNzctLjIyNC0uNS0uNS0uNUg5djcuNWMwIC4yNzUuMjI0LjUuNS41aC41djFINnYtMWguNWEuNS41IDAgMCAwIC41LS41VjRINS41YS41LjUgMCAwIDAtLjUuNVY1SDRWM3pNMyA1LjYxNUwuMTE2IDguNSAzIDExLjM4M2wuODg0LS44ODMtMi0yIDItMkwzIDUuNjE1em0xMCAwbC0uODg0Ljg4NSAyIDItMiAyIC44ODQuODgzTDE1Ljg4NCA4LjUgMTMgNS42MTV6IiBpZD0iaWNvbkJnIi8+PC9zdmc+)}.monaco-editor .suggest-widget .monaco-list .monaco-list-row .suggest-icon.module:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHN0eWxlPi5pY29uLWNhbnZhcy10cmFuc3BhcmVudHtvcGFjaXR5OjA7ZmlsbDojZjZmNmY2fS5pY29uLXZzLW91dHtmaWxsOiNmNmY2ZjZ9Lmljb24tdnMtYmd7ZmlsbDojNDI0MjQyfTwvc3R5bGU+PHBhdGggY2xhc3M9Imljb24tY2FudmFzLXRyYW5zcGFyZW50IiBkPSJNMTYgMTZIMFYwaDE2djE2eiIgaWQ9ImNhbnZhcyIvPjxwYXRoIGNsYXNzPSJpY29uLXZzLW91dCIgZD0iTTkuMjYgMTEuOTg0bC45NzgtLjAyMWEuOTYyLjk2MiAwIDAgMCAuMDktLjAwNmMuMDExLS4wNjMuMDI2LS4xNzkuMDI2LS4zNjFWOS42ODhjMC0uNjc5LjE4NS0xLjI1Ny41My0xLjcwNy0uMzQ2LS40NTItLjUzLTEuMDMtLjUzLTEuNzA1VjQuMzVjMC0uMTY3LS4wMjEtLjI1OS0uMDM0LS4zMDJMOS4yNiA0LjAyVi45NzNsMS4wMTEuMDExYzIuMTY3LjAyNCAzLjQwOSAxLjE1NiAzLjQwOSAzLjEwNXYxLjk2MmMwIC4zNTEuMDcxLjQ2MS4wNzIuNDYybC45MzYuMDYuMDUzLjkyN3YxLjkzNmwtLjkzNi4wNjFjLS4wNzYuMDE2LS4xMjUuMTQ2LS4xMjUuNDI0djIuMDE3YzAgLjkxNC0uMzMyIDMuMDQzLTMuNDA4IDMuMDc4bC0xLjAxMi4wMTF2LTMuMDQzem0tMy41MjEgMy4wMzJjLTMuMDg5LS4wMzUtMy40MjItMi4xNjQtMy40MjItMy4wNzhWOS45MjFjMC0uMzI3LS4wNjYtLjQzMi0uMDY3LS40MzNsLS45MzctLjA2LS4wNjMtLjkyOVY2LjU2M2wuOTQyLS4wNmMuMDU4IDAgLjEyNS0uMTE0LjEyNS0uNDUyVjQuMDljMC0xLjk0OSAxLjI0OC0zLjA4MSAzLjQyMi0zLjEwNUw2Ljc1Ljk3M1Y0LjAybC0uOTc1LjAyM2EuNTcyLjU3MiAwIDAgMC0uMDkzLjAxYy4wMDYuMDIxLS4wMTkuMTE1LS4wMTkuMjk3djEuOTI4YzAgLjY3NS0uMTg2IDEuMjUzLS41MzQgMS43MDUuMzQ4LjQ1LjUzNCAxLjAyOC41MzQgMS43MDd2MS45MDdjMCAuMTc1LjAxNC4yOTEuMDI3LjM2My4wMjMuMDAyIDEuMDYuMDI1IDEuMDYuMDI1djMuMDQzbC0xLjAxMS0uMDEyeiIgaWQ9Im91dGxpbmUiLz48cGF0aCBjbGFzcz0iaWNvbi12cy1iZyIgZD0iTTUuNzUgMTQuMDE2Yy0xLjYyMy0uMDE5LTIuNDM0LS43MTEtMi40MzQtMi4wNzhWOS45MjFjMC0uOTAyLS4zNTUtMS4zNzYtMS4wNjYtMS40MjJ2LS45OThjLjcxMS0uMDQ1IDEuMDY2LS41MjkgMS4wNjYtMS40NDlWNC4wOWMwLTEuMzg1LjgxMS0yLjA4NyAyLjQzNC0yLjEwNXYxLjA2Yy0uNzI1LjAxNy0xLjA4Ny40NTMtMS4wODcgMS4zMDV2MS45MjhjMCAuOTItLjQ1NCAxLjQ4OC0xLjM2IDEuNzAyVjhjLjkwNy4yMDEgMS4zNi43NjMgMS4zNiAxLjY4OHYxLjkwN2MwIC40ODguMDgxLjgzNS4yNDMgMS4wNDIuMTYyLjIwOC40NDMuMzE2Ljg0NC4zMjV2MS4wNTR6bTcuOTktNS41MTdjLS43MDYuMDQ1LTEuMDYuNTItMS4wNiAxLjQyMnYyLjAxN2MwIDEuMzY3LS44MDcgMi4wNi0yLjQyIDIuMDc4di0xLjA1M2MuMzk2LS4wMDkuNjc4LS4xMTguODQ0LS4zMjguMTY3LS4yMS4yNS0uNTU2LjI1LTEuMDM5VjkuNjg4YzAtLjkyNS40NDktMS40ODggMS4zNDctMS42ODh2LS4wMjFjLS44OTgtLjIxNC0xLjM0Ny0uNzgyLTEuMzQ3LTEuNzAyVjQuMzVjMC0uODUyLS4zNjQtMS4yODgtMS4wOTQtMS4zMDZ2LTEuMDZjMS42MTMuMDE4IDIuNDIuNzIgMi40MiAyLjEwNXYxLjk2MmMwIC45Mi4zNTQgMS40MDQgMS4wNiAxLjQ0OXYuOTk5eiIgaWQ9Imljb25CZyIvPjwvc3ZnPg==)}.monaco-editor .suggest-widget .monaco-list .monaco-list-row .suggest-icon.property:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHN0eWxlPi5pY29uLWNhbnZhcy10cmFuc3BhcmVudHtvcGFjaXR5OjA7ZmlsbDojZjZmNmY2fS5pY29uLXZzLW91dHtmaWxsOiNmNmY2ZjZ9Lmljb24tdnMtYmd7ZmlsbDojNDI0MjQyfTwvc3R5bGU+PHBhdGggY2xhc3M9Imljb24tY2FudmFzLXRyYW5zcGFyZW50IiBkPSJNMTYgMTZIMFYwaDE2djE2eiIgaWQ9ImNhbnZhcyIvPjxwYXRoIGNsYXNzPSJpY29uLXZzLW91dCIgZD0iTTE2IDUuNWE1LjUgNS41IDAgMCAxLTUuNSA1LjVjLS4yNzUgMC0uNTQzLS4wMjctLjgwNy0uMDY2bC0uMDc5LS4wMTJhNS40MjkgNS40MjkgMCAwIDEtLjgxLS4xOTJsLTQuNTM3IDQuNTM3Yy0uNDcyLjQ3My0xLjEuNzMzLTEuNzY3LjczM3MtMS4yOTUtLjI2LTEuNzY4LS43MzJhMi41MDIgMi41MDIgMCAwIDEgMC0zLjUzNWw0LjUzNy00LjUzN2E1LjQ1MiA1LjQ1MiAwIDAgMS0uMTkxLS44MTJjLS4wMDUtLjAyNS0uMDA4LS4wNTEtLjAxMi0uMDc3QTUuNTAzIDUuNTAzIDAgMCAxIDUgNS41YTUuNSA1LjUgMCAxIDEgMTEgMHoiIGlkPSJvdXRsaW5lIi8+PHBhdGggY2xhc3M9Imljb24tdnMtYmciIGQ9Ik0xNSA1LjVhNC41IDQuNSAwIDAgMS00LjUgNC41Yy0uNjkzIDAtMS4zNDItLjE3LTEuOTI5LS40NWwtNS4wMSA1LjAxYy0uMjkzLjI5NC0uNjc3LjQ0LTEuMDYxLjQ0cy0uNzY4LS4xNDYtMS4wNjEtLjQzOWExLjUgMS41IDAgMCAxIDAtMi4xMjFsNS4wMS01LjAxQTQuNDgzIDQuNDgzIDAgMCAxIDYgNS41IDQuNSA0LjUgMCAwIDEgMTAuNSAxYy42OTMgMCAxLjM0Mi4xNyAxLjkyOS40NUw5LjYzNiA0LjI0M2wyLjEyMSAyLjEyMSAyLjc5My0yLjc5M2MuMjguNTg3LjQ1IDEuMjM2LjQ1IDEuOTI5eiIgaWQ9Imljb25CZyIvPjwvc3ZnPg==)}.monaco-editor .suggest-widget .monaco-list .monaco-list-row .suggest-icon.unit:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHN0eWxlPi5pY29uLWNhbnZhcy10cmFuc3BhcmVudHtvcGFjaXR5OjA7ZmlsbDojZjZmNmY2fS5pY29uLXZzLW91dHtmaWxsOiNmNmY2ZjZ9Lmljb24tdnMtYmd7ZmlsbDojNDI0MjQyfS5pY29uLXZzLWZne2ZpbGw6I2YwZWZmMX08L3N0eWxlPjxwYXRoIGNsYXNzPSJpY29uLWNhbnZhcy10cmFuc3BhcmVudCIgZD0iTTE2IDE2SDBWMGgxNnYxNnoiIGlkPSJjYW52YXMiLz48cGF0aCBjbGFzcz0iaWNvbi12cy1vdXQiIGQ9Ik0xNiAxMS4wMTNIMVY0aDE1djcuMDEzeiIgaWQ9Im91dGxpbmUiLz48cGF0aCBjbGFzcz0iaWNvbi12cy1mZyIgZD0iTTggOUg3VjZoM3YzSDlWN0g4djJ6TTQgN2gxdjJoMVY2SDN2M2gxVjd6bTggMGgxdjJoMVY2aC0zdjNoMVY3eiIgaWQ9Imljb25GZyIvPjxwYXRoIGNsYXNzPSJpY29uLXZzLWJnIiBkPSJNMiA1djVoMTNWNUgyem00IDRINVY3SDR2MkgzVjZoM3Yzem00IDBIOVY3SDh2Mkg3VjZoM3Yzem00IDBoLTFWN2gtMXYyaC0xVjZoM3YzeiIgaWQ9Imljb25CZyIvPjwvc3ZnPg==)}.monaco-editor .suggest-widget .monaco-list .monaco-list-row .suggest-icon.constant:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHN0eWxlPi5pY29uLWNhbnZhcy10cmFuc3BhcmVudHtvcGFjaXR5OjA7ZmlsbDojZjZmNmY2fS5pY29uLXZzLW91dHtmaWxsOiNmNmY2ZjZ9Lmljb24tdnMtYmd7ZmlsbDojNDI0MjQyfS5pY29uLXZzLWZne2ZpbGw6I2YwZWZmMX0uaWNvbi12cy1hY3Rpb24tYmx1ZXtmaWxsOiMwMDUzOWN9PC9zdHlsZT48cGF0aCBjbGFzcz0iaWNvbi1jYW52YXMtdHJhbnNwYXJlbnQiIGQ9Ik0xNiAxNkgwVjBoMTZ2MTZ6IiBpZD0iY2FudmFzIi8+PHBhdGggY2xhc3M9Imljb24tdnMtb3V0IiBkPSJNMi44NzkgMTRMMSAxMi4xMjFWMy44NzlMMi44NzkgMmgxMC4yNDJMMTUgMy44Nzl2OC4yNDJMMTMuMTIxIDE0SDIuODc5eiIgaWQ9Im91dGxpbmUiLz48cGF0aCBjbGFzcz0iaWNvbi12cy1mZyIgZD0iTTEyLjI5MyA0SDMuNzA3TDMgNC43MDd2Ni41ODZsLjcwNy43MDdoOC41ODZsLjcwNy0uNzA3VjQuNzA3TDEyLjI5MyA0ek0xMSAxMEg1VjloNnYxem0wLTNINVY2aDZ2MXoiIGlkPSJpY29uRmciLz48ZyBpZD0iaWNvbkJnIj48cGF0aCBjbGFzcz0iaWNvbi12cy1iZyIgZD0iTTEyLjcwNyAxM0gzLjI5M0wyIDExLjcwN1Y0LjI5M0wzLjI5MyAzaDkuNDE0TDE0IDQuMjkzdjcuNDE0TDEyLjcwNyAxM3ptLTktMWg4LjU4NmwuNzA3LS43MDdWNC43MDdMMTIuMjkzIDRIMy43MDdMMyA0LjcwN3Y2LjU4NmwuNzA3LjcwN3oiLz48cGF0aCBjbGFzcz0iaWNvbi12cy1hY3Rpb24tYmx1ZSIgZD0iTTExIDdINVY2aDZ2MXptMCAySDV2MWg2Vjl6Ii8+PC9nPjwvc3ZnPg==)}.monaco-editor .suggest-widget .monaco-list .monaco-list-row .suggest-icon.enum:before,.monaco-editor .suggest-widget .monaco-list .monaco-list-row .suggest-icon.value:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHN0eWxlPi5pY29uLWNhbnZhcy10cmFuc3BhcmVudHtvcGFjaXR5OjA7ZmlsbDojZjZmNmY2fS5pY29uLXZzLW91dHtmaWxsOiNmNmY2ZjZ9Lmljb24tdnMtZmd7ZmlsbDojZjBlZmYxfS5pY29uLXZzLWFjdGlvbi1vcmFuZ2V7ZmlsbDojYzI3ZDFhfTwvc3R5bGU+PHBhdGggY2xhc3M9Imljb24tY2FudmFzLXRyYW5zcGFyZW50IiBkPSJNMTYgMTZIMFYwaDE2djE2eiIgaWQ9ImNhbnZhcyIvPjxwYXRoIGNsYXNzPSJpY29uLXZzLW91dCIgZD0iTTE0LjQxNCAxTDE2IDIuNTg2djUuODI4TDE0LjQxNCAxMEgxMHYzLjQxNkw4LjQxNCAxNUgxLjU4NkwwIDEzLjQxNnYtNS44M0wxLjU4NiA2SDZWMi41ODZMNy41ODYgMWg2LjgyOHoiIGlkPSJvdXRsaW5lIi8+PHBhdGggY2xhc3M9Imljb24tdnMtZmciIGQ9Ik0yIDEzaDZWOEgydjV6bTEtNGg0djFIM1Y5em0wIDJoNHYxSDN2LTF6bTExLTVWM0g4djNoLjQxNEw5IDYuNTg2VjZoNHYxSDkuNDE0bC41ODYuNTg2VjhoNFY2em0tMS0xSDlWNGg0djF6IiBpZD0iaWNvbkZnIi8+PHBhdGggY2xhc3M9Imljb24tdnMtYWN0aW9uLW9yYW5nZSIgZD0iTTMgMTFoNC4wMDF2MUgzdi0xem0wLTFoNC4wMDFWOUgzdjF6bTYtMnY1bC0xIDFIMmwtMS0xVjhsMS0xaDZsMSAxek04IDhIMnY1aDZWOHptMS0ybDEgMWgzVjZIOXptMC0xaDRWNEg5djF6bTUtM0g4TDcgM3YzaDFWM2g2djVoLTR2MWg0bDEtMVYzbC0xLTF6IiBpZD0iaWNvbkJnIi8+PC9zdmc+)}.monaco-editor .suggest-widget .monaco-list .monaco-list-row .suggest-icon.enum-member:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHN0eWxlPi5pY29uLWNhbnZhcy10cmFuc3BhcmVudHtvcGFjaXR5OjA7ZmlsbDojZjZmNmY2fS5pY29uLXZzLW91dHtmaWxsOiNmNmY2ZjZ9Lmljb24tdnMtZmd7ZmlsbDojZjBlZmYxfS5pY29uLXZzLWFjdGlvbi1ibHVle2ZpbGw6IzAwNTM5Y308L3N0eWxlPjxwYXRoIGNsYXNzPSJpY29uLWNhbnZhcy10cmFuc3BhcmVudCIgZD0iTTE2IDE2SDBWMGgxNnYxNnoiIGlkPSJjYW52YXMiLz48cGF0aCBjbGFzcz0iaWNvbi12cy1vdXQiIGQ9Ik0wIDE1VjZoNlYyLjU4Nkw3LjU4NSAxaDYuODI5TDE2IDIuNTg2djUuODI5TDE0LjQxNCAxMEgxMHY1SDB6bTMtNnoiIGlkPSJvdXRsaW5lIi8+PHBhdGggY2xhc3M9Imljb24tdnMtZmciIGQ9Ik04IDN2M2g1djFoLTN2MWg0VjNIOHptNSAySDlWNGg0djF6TTIgOHY1aDZWOEgyem01IDNIM3YtMWg0djF6IiBpZD0iaWNvbkZnIi8+PHBhdGggY2xhc3M9Imljb24tdnMtYWN0aW9uLWJsdWUiIGQ9Ik0xMCA2aDN2MWgtM1Y2ek05IDR2MWg0VjRIOXptNS0ySDhMNyAzdjNoMVYzaDZ2NWgtNHYxaDRsMS0xVjNsLTEtMXptLTcgOEgzdjFoNHYtMXptMi0zdjdIMVY3aDh6TTggOEgydjVoNlY4eiIgaWQ9Imljb25CZyIvPjwvc3ZnPg==)}.monaco-editor .suggest-widget .monaco-list .monaco-list-row .suggest-icon.keyword:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHN0eWxlPi5pY29uLWNhbnZhcy10cmFuc3BhcmVudHtvcGFjaXR5OjA7ZmlsbDojZjZmNmY2fS5pY29uLXZzLW91dHtmaWxsOiNmNmY2ZjZ9Lmljb24tdnMtYmd7ZmlsbDojNDI0MjQyfS5pY29uLXZzLWZne2ZpbGw6I2YwZWZmMX08L3N0eWxlPjxwYXRoIGNsYXNzPSJpY29uLWNhbnZhcy10cmFuc3BhcmVudCIgZD0iTTE2IDE2SDBWMGgxNnYxNnoiIGlkPSJjYW52YXMiLz48cGF0aCBjbGFzcz0iaWNvbi12cy1vdXQiIGQ9Ik0xNiA1VjJIOVYxSDB2MTRoMTN2LTNoM1Y5aC0xVjZIOVY1aDd6bS04IDdWOWgxdjNIOHoiIGlkPSJvdXRsaW5lIi8+PHBhdGggY2xhc3M9Imljb24tdnMtZmciIGQ9Ik0yIDNoNXYxSDJWM3oiIGlkPSJpY29uRmciLz48cGF0aCBjbGFzcz0iaWNvbi12cy1iZyIgZD0iTTE1IDRoLTVWM2g1djF6bS0xIDNoLTJ2MWgyVjd6bS00IDBIMXYxaDlWN3ptMiA2SDF2MWgxMXYtMXptLTUtM0gxdjFoNnYtMXptOCAwaC01djFoNXYtMXpNOCAydjNIMVYyaDd6TTcgM0gydjFoNVYzeiIgaWQ9Imljb25CZyIvPjwvc3ZnPg==)}.monaco-editor .suggest-widget .monaco-list .monaco-list-row .suggest-icon.text:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHN0eWxlPi5pY29uLWNhbnZhcy10cmFuc3BhcmVudHtvcGFjaXR5OjA7ZmlsbDojZjZmNmY2fS5pY29uLXZzLW91dHtmaWxsOiNmNmY2ZjZ9Lmljb24tdnMtYmd7ZmlsbDojNDI0MjQyfS5pY29uLXZzLWZne2ZpbGw6I2YwZWZmMX08L3N0eWxlPjxwYXRoIGNsYXNzPSJpY29uLWNhbnZhcy10cmFuc3BhcmVudCIgZD0iTTE2IDE2SDBWMGgxNnYxNnoiIGlkPSJjYW52YXMiLz48cGF0aCBjbGFzcz0iaWNvbi12cy1vdXQiIGQ9Ik0xNiAxNUgwVjFoMTZ2MTR6IiBpZD0ib3V0bGluZSIvPjxwYXRoIGNsYXNzPSJpY29uLXZzLWZnIiBkPSJNOS4yMjkgNy4zNTRjLjAzNS4xNDYuMDUyLjMxLjA1Mi40OTQgMCAuMjM0LS4wMi40NDEtLjA2LjYyMS0uMDM5LjE4LS4wOTUuMzI4LS4xNjguNDQ1YS42ODcuNjg3IDAgMCAxLS45MTQuMjgxLjc2Ljc2IDAgMCAxLS4yMzctLjIwNy45ODguOTg4IDAgMCAxLS4xNTQtLjMwNiAxLjI2MiAxLjI2MiAwIDAgMS0uMDU3LS4zODF2LS41MDZjMC0uMTcuMDItLjMyNi4wNjEtLjQ2NXMuMDk2LS4yNTguMTY4LS4zNTlhLjc1Ni43NTYgMCAwIDEgLjI1Ny0uMjMyYy4xLS4wNTUuMjEtLjA4Mi4zMzEtLjA4MmEuNjQ2LjY0NiAwIDAgMSAuNTcxLjMyYy4wNjcuMTA1LjExNi4yMy4xNS4zNzd6bS01LjEyNi44NjlhLjU1Ny41NTcgMCAwIDAtLjE5Ni4xMzJjLS4wNDcuMDUzLS4wOC4xMTItLjA5Ny4xOHMtLjAyOC4xNDctLjAyOC4yMzNhLjUxMy41MTMgMCAwIDAgLjE1Ny4zOS41MjguNTI4IDAgMCAwIC4xODYuMTEzLjY4Mi42ODIgMCAwIDAgLjI0Mi4wNDEuNzYuNzYgMCAwIDAgLjU5My0uMjcxLjg5Ny44OTcgMCAwIDAgLjE2NS0uMjk1Yy4wMzgtLjExMy4wNTktLjIzNC4wNTktLjM2NXYtLjM0NmwtLjc2MS4xMWExLjI5IDEuMjkgMCAwIDAtLjMyLjA3OHpNMTQgM3YxMEgyVjNoMTJ6TTUuOTYyIDcuNDY5YzAtLjIzOC0uMDI3LS40NTEtLjA4My0uNjM3YTEuMjg2IDEuMjg2IDAgMCAwLS4yNDktLjQ3MSAxLjA4IDEuMDggMCAwIDAtLjQyNC0uMjk1IDEuNjQ0IDEuNjQ0IDAgMCAwLS42MDgtLjEwMWMtLjExOSAwLS4yNDEuMDEyLS4zNjguMDMzYTMuMjEzIDMuMjEzIDAgMCAwLS42NzMuMTk1IDEuMzEzIDEuMzEzIDAgMCAwLS4yMTIuMTE0di43NjhjLjE1OC0uMTMyLjM0MS0uMjM1LjU0NC0uMzEzLjIwNC0uMDc4LjQxMy0uMTE3LjYyNy0uMTE3LjIxMyAwIC4zNzcuMDYzLjQ5NC4xODYuMTE2LjEyNS4xNzQuMzI0LjE3NC42bC0xLjAzLjE1NGMtLjIwNS4wMjYtLjM4LjA3Ny0uNTI2LjE1MWExLjA4MyAxLjA4MyAwIDAgMC0uNTYzLjY2QTEuNTYyIDEuNTYyIDAgMCAwIDMgOC44NTdjMCAuMTcuMDI1LjMyMy4wNzQuNDYzYS45NDUuOTQ1IDAgMCAwIC41NjguNTk2Yy4xMzkuMDU3LjI5Ny4wODQuNDc4LjA4NC4yMjkgMCAuNDMxLS4wNTMuNjA0LS4xNmExLjMgMS4zIDAgMCAwIC40MzktLjQ2M2guMDE0di41MjloLjc4NVY3LjQ2OXpNMTAgNy44NjFhMy41NCAzLjU0IDAgMCAwLS4wNzQtLjczNCAyLjA0NyAyLjA0NyAwIDAgMC0uMjI4LS42MTEgMS4yMDMgMS4yMDMgMCAwIDAtLjM5NC0uNDE2IDEuMDMgMS4wMyAwIDAgMC0uNTc0LS4xNTNjLS4xMjMgMC0uMjM0LjAxOC0uMzM2LjA1MWExIDEgMCAwIDAtLjI3OC4xNDcgMS4xNTMgMS4xNTMgMCAwIDAtLjIyNS4yMjIgMi4wMjIgMi4wMjIgMCAwIDAtLjE4MS4yODloLS4wMTNWNUg3djQuODg3aC42OTd2LS40ODVoLjAxM2MuMDQ0LjA4Mi4wOTUuMTU4LjE1MS4yMjkuMDU3LjA3LjExOS4xMzMuMTkxLjE4NmEuODM1LjgzNSAwIDAgMCAuMjM4LjEyMS45NDMuOTQzIDAgMCAwIC4yOTMuMDQyYy4yMyAwIC40MzQtLjA1My42MDktLjE2YTEuMzQgMS4zNCAwIDAgMCAuNDQzLS40NDNjLjEyLS4xODguMjExLS40MTIuMjcyLS42NzJBMy42MiAzLjYyIDAgMCAwIDEwIDcuODYxem0zLTEuNjU4YS43LjcgMCAwIDAtLjEwNi0uMDY2IDEuMTgzIDEuMTgzIDAgMCAwLS4xNDItLjA2MyAxLjIzMyAxLjIzMyAwIDAgMC0uMzYzLS4wNjVjLS4yMDkgMC0uMzk5LjA1MS0uNTY5LjE1YTEuMzU1IDEuMzU1IDAgMCAwLS40MzMuNDI0Yy0uMTE4LjE4Mi0uMjEuNDAyLS4yNzMuNjZhMy42MyAzLjYzIDAgMCAwLS4wMDggMS42MTVjLjA2LjIzLjE0My40My4yNTIuNjAyLjEwOS4xNjguMjQxLjMwMy4zOTYuMzk2YS45NzIuOTcyIDAgMCAwIC41MjQuMTQ0Yy4xNTggMCAuMjk2LS4wMjEuNDEzLS4wNjguMTE3LS4wNDUuMjE5LS4xMDguMzA5LS4xODR2LS43N2ExLjA5NCAxLjA5NCAwIDAgMS0uMjg4LjIyNS44MTkuODE5IDAgMCAxLS4xNTguMDY4LjQ4LjQ4IDAgMCAxLS4xNTMuMDI3LjYyLjYyIDAgMCAxLS4yNzQtLjA3NGMtLjI0MS0uMTM2LS40MjMtLjQ3OS0uNDIzLTEuMTQ2IDAtLjcxNS4yMDYtMS4xMi40NjktMS4zMDEuMDc3LS4wMzIuMTUzLS4wNjQuMjM4LS4wNjQuMTEzIDAgLjIyLjAyNy4zMTcuMDgyLjA5Ni4wNTcuMTg4LjEzMS4yNzIuMjIzdi0uODE1eiIgaWQ9Imljb25GZyIvPjxwYXRoIGNsYXNzPSJpY29uLXZzLWJnIiBkPSJNMSAydjEyaDE0VjJIMXptMTMgMTFIMlYzaDEydjEwek01LjYzIDYuMzYxYTEuMDggMS4wOCAwIDAgMC0uNDI0LS4yOTUgMS42NDQgMS42NDQgMCAwIDAtLjYwOC0uMTAxYy0uMTE5IDAtLjI0MS4wMTItLjM2OC4wMzNhMy4yMTMgMy4yMTMgMCAwIDAtLjY3My4xOTUgMS4zMTMgMS4zMTMgMCAwIDAtLjIxMi4xMTR2Ljc2OGMuMTU4LS4xMzIuMzQxLS4yMzUuNTQ0LS4zMTMuMjA0LS4wNzguNDEzLS4xMTcuNjI3LS4xMTcuMjEzIDAgLjM3Ny4wNjMuNDk0LjE4Ni4xMTYuMTI1LjE3NC4zMjQuMTc0LjZsLTEuMDMuMTU0Yy0uMjA1LjAyNi0uMzguMDc3LS41MjYuMTUxYTEuMDgzIDEuMDgzIDAgMCAwLS41NjMuNjZBMS41NjIgMS41NjIgMCAwIDAgMyA4Ljg1N2MwIC4xNy4wMjUuMzIzLjA3NC40NjNhLjk0NS45NDUgMCAwIDAgLjU2OC41OTZjLjEzOS4wNTcuMjk3LjA4NC40NzguMDg0LjIyOSAwIC40MzEtLjA1My42MDQtLjE2YTEuMyAxLjMgMCAwIDAgLjQzOS0uNDYzaC4wMTR2LjUyOWguNzg1VjcuNDY5YzAtLjIzOC0uMDI3LS40NTEtLjA4My0uNjM3YTEuMjg2IDEuMjg2IDAgMCAwLS4yNDktLjQ3MXptLS40NDYgMi4wMmMwIC4xMzEtLjAyLjI1Mi0uMDU5LjM2NWEuODk3Ljg5NyAwIDAgMS0uMTY1LjI5NS43NTguNzU4IDAgMCAxLS41OTMuMjcyLjY4Mi42ODIgMCAwIDEtLjI0Mi0uMDQxLjUwNy41MDcgMCAwIDEtLjMwMi0uMjg2LjU4My41ODMgMCAwIDEtLjA0MS0uMjE4YzAtLjA4Ni4wMS0uMTY0LjAyNy0uMjMycy4wNTEtLjEyNy4wOTgtLjE4YS41NDYuNTQ2IDAgMCAxIC4xOTYtLjEzM2MuMDgzLS4wMzMuMTg5LS4wNjEuMzItLjA3OGwuNzYxLS4xMDl2LjM0NXptNC41MTQtMS44NjVhMS4yMDMgMS4yMDMgMCAwIDAtLjM5NC0uNDE2IDEuMDMgMS4wMyAwIDAgMC0uNTc0LS4xNTNjLS4xMjMgMC0uMjM0LjAxOC0uMzM2LjA1MWExIDEgMCAwIDAtLjI3OC4xNDcgMS4xNTMgMS4xNTMgMCAwIDAtLjIyNS4yMjIgMi4wMjIgMi4wMjIgMCAwIDAtLjE4MS4yODloLS4wMTNWNUg3djQuODg3aC42OTd2LS40ODVoLjAxM2MuMDQ0LjA4Mi4wOTUuMTU4LjE1MS4yMjkuMDU3LjA3LjExOS4xMzMuMTkxLjE4NmEuODM1LjgzNSAwIDAgMCAuMjM4LjEyMS45NDMuOTQzIDAgMCAwIC4yOTMuMDQyYy4yMyAwIC40MzQtLjA1My42MDktLjE2YTEuMzQgMS4zNCAwIDAgMCAuNDQzLS40NDNjLjEyLS4xODguMjExLS40MTIuMjcyLS42NzJBMy42MiAzLjYyIDAgMCAwIDEwIDcuODYxYTMuNTQgMy41NCAwIDAgMC0uMDc0LS43MzQgMi4wNDcgMi4wNDcgMCAwIDAtLjIyOC0uNjExem0tLjQ3NiAxLjk1M2MtLjAzOS4xOC0uMDk1LjMyOC0uMTY4LjQ0NWEuNzU1Ljc1NSAwIDAgMS0uMjY0LjI2Ni42ODcuNjg3IDAgMCAxLS42NTEuMDE1Ljc2Ljc2IDAgMCAxLS4yMzctLjIwNy45ODguOTg4IDAgMCAxLS4xNTQtLjMwNiAxLjI2MiAxLjI2MiAwIDAgMS0uMDU3LS4zODF2LS41MDZjMC0uMTcuMDItLjMyNi4wNjEtLjQ2NXMuMDk2LS4yNTguMTY4LS4zNTlhLjc1Ni43NTYgMCAwIDEgLjI1Ny0uMjMyYy4xLS4wNTUuMjEtLjA4Mi4zMzEtLjA4MmEuNjQ2LjY0NiAwIDAgMSAuNTcxLjMyYy4wNjYuMTA1LjExNi4yMy4xNS4zNzcuMDM1LjE0Ni4wNTIuMzEuMDUyLjQ5NCAwIC4yMzQtLjAxOS40NDEtLjA1OS42MjF6bTMuNjcyLTIuMzMyYS43LjcgMCAwIDEgLjEwNi4wNjZ2LjgxNGExLjE3OCAxLjE3OCAwIDAgMC0uMjczLS4yMjMuNjQ1LjY0NSAwIDAgMC0uMzE3LS4wODFjLS4wODUgMC0uMTYxLjAzMi0uMjM4LjA2NC0uMjYzLjE4MS0uNDY5LjU4Ni0uNDY5IDEuMzAxIDAgLjY2OC4xODIgMS4wMTEuNDIzIDEuMTQ2LjA4NC4wNC4xNzEuMDc0LjI3NC4wNzQuMDQ5IDAgLjEwMS0uMDEuMTUzLS4wMjdhLjg1Ni44NTYgMCAwIDAgLjE1OC0uMDY4IDEuMTYgMS4xNiAwIDAgMCAuMjg4LS4yMjV2Ljc3Yy0uMDkuMDc2LS4xOTIuMTM5LS4zMDkuMTg0YTEuMDk4IDEuMDk4IDAgMCAxLS40MTIuMDY4Ljk3NC45NzQgMCAwIDEtLjUyMy0uMTQzIDEuMjU3IDEuMjU3IDAgMCAxLS4zOTYtLjM5NiAyLjA5OCAyLjA5OCAwIDAgMS0uMjUyLS42MDIgMy4xMTggMy4xMTggMCAwIDEtLjA4OC0uNzU0YzAtLjMxNi4wMzItLjYwNC4wOTYtLjg2MS4wNjMtLjI1OC4xNTUtLjQ3OS4yNzMtLjY2LjExOS0uMTgyLjI2NS0uMzIyLjQzMy0uNDI0YTEuMTAyIDEuMTAyIDAgMCAxIDEuMDczLS4wMjN6IiBpZD0iaWNvbkJnIi8+PC9zdmc+)}.monaco-editor .suggest-widget .monaco-list .monaco-list-row .suggest-icon.color:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHN0eWxlPi5pY29uLWNhbnZhcy10cmFuc3BhcmVudHtvcGFjaXR5OjA7ZmlsbDojZjZmNmY2fS5pY29uLXZzLW91dHtmaWxsOiNmNmY2ZjZ9Lmljb24tdnMtYmd7ZmlsbDojNDI0MjQyfS5pY29uLXZzLXJlZHtmaWxsOiNlNTE0MDB9Lmljb24tdnMteWVsbG93e2ZpbGw6I2ZmY2MwMH0uaWNvbi12cy1ncmVlbntmaWxsOiMzMzk5MzN9Lmljb24tdnMtYmx1ZXtmaWxsOiMxYmExZTJ9Lmljb24tdnMtYWN0aW9uLXB1cnBsZXtmaWxsOiM2NTJkOTB9Lmljb24td2hpdGV7ZmlsbDojZmZmZmZmfTwvc3R5bGU+PHBhdGggY2xhc3M9Imljb24tY2FudmFzLXRyYW5zcGFyZW50IiBkPSJNMTYgMTZIMFYwaDE2djE2eiIgaWQ9ImNhbnZhcyIvPjxwYXRoIGNsYXNzPSJpY29uLXZzLW91dCIgZD0iTTE2IDhjMCA0LjQxMS0zLjU4OSA4LTggOGEyLjgwMyAyLjgwMyAwIDAgMS0yLjgtMi44YzAtLjgzMy4yNzItMS42MjkuNzY2LTIuMjQxYS41OTYuNTk2IDAgMCAwIC4xMDEtLjM1OS42NjcuNjY3IDAgMCAwLS42NjctLjY2Ni41OC41OCAwIDAgMC0uMzU4LjEwMkEzLjU4NCAzLjU4NCAwIDAgMSAyLjggMTAuOCAyLjgwMyAyLjgwMyAwIDAgMSAwIDhjMC00LjQxMSAzLjU4OS04IDgtOHM4IDMuNTg5IDggOHoiIGlkPSJvdXRsaW5lIi8+PHBhdGggY2xhc3M9Imljb24td2hpdGUiIGQ9Ik01LjQgNy45MzNhMi42NyAyLjY3IDAgMCAxIDIuNjY3IDIuNjY2YzAgLjYwNi0uMTkzIDEuMTc5LS41NDQgMS42MTRhMS41OTkgMS41OTkgMCAwIDAtLjMyMy45ODcuOC44IDAgMCAwIC44LjhjMy4zMDkgMCA2LTIuNjkxIDYtNnMtMi42OTEtNi02LTYtNiAyLjY5MS02IDZjMCAuNDQxLjM1OS44LjguOC4zNzggMCAuNzI5LS4xMTQuOTg2LS4zMjJBMi41NjggMi41NjggMCAwIDEgNS40IDcuOTMzeiIgaWQ9Imljb25GZyIvPjxnIGlkPSJpY29uQmciPjxwYXRoIGNsYXNzPSJpY29uLXZzLWJnIiBkPSJNOCAxNWMtLjk5MiAwLTEuOC0uODA4LTEuOC0xLjggMC0uNjA2LjE5My0xLjE3OS41NDQtMS42MTMuMjA4LS4yNTkuMzIzLS42MDkuMzIzLS45ODcgMC0uOTE5LS43NDgtMS42NjYtMS42NjctMS42NjYtLjM3NyAwLS43MjguMTE1LS45ODYuMzIzQTIuNTggMi41OCAwIDAgMSAyLjggOS44QzEuODA4IDkuOCAxIDguOTkyIDEgOGMwLTMuODYgMy4xNC03IDctNyAzLjg1OSAwIDcgMy4xNCA3IDcgMCAzLjg1OS0zLjE0MSA3LTcgN3pNNS40IDcuOTMzYTIuNjcgMi42NyAwIDAgMSAyLjY2NyAyLjY2NmMwIC42MDYtLjE5MyAxLjE3OS0uNTQ0IDEuNjE0YTEuNTk5IDEuNTk5IDAgMCAwLS4zMjMuOTg3LjguOCAwIDAgMCAuOC44YzMuMzA5IDAgNi0yLjY5MSA2LTZzLTIuNjkxLTYtNi02LTYgMi42OTEtNiA2YzAgLjQ0MS4zNTkuOC44LjguMzc4IDAgLjcyOS0uMTE0Ljk4Ni0uMzIyQTIuNTY4IDIuNTY4IDAgMCAxIDUuNCA3LjkzM3oiLz48cGF0aCBjbGFzcz0iaWNvbi12cy1hY3Rpb24tcHVycGxlIiBkPSJNNC41IDUuMzc1YS44NzUuODc1IDAgMSAwIDAgMS43NS44NzUuODc1IDAgMCAwIDAtMS43NXoiLz48cGF0aCBjbGFzcz0iaWNvbi12cy1ibHVlIiBkPSJNNy4xMjUgMy42MjVhLjg3NS44NzUgMCAxIDAgMCAxLjc1Ljg3NS44NzUgMCAwIDAgMC0xLjc1eiIvPjxwYXRoIGNsYXNzPSJpY29uLXZzLWdyZWVuIiBkPSJNMTAuNjI1IDQuNWEuODc1Ljg3NSAwIDEgMCAwIDEuNzUuODc1Ljg3NSAwIDAgMCAwLTEuNzV6Ii8+PHBhdGggY2xhc3M9Imljb24tdnMteWVsbG93IiBkPSJNMTEuNSA4YS44NzUuODc1IDAgMSAwIDAgMS43NS44NzUuODc1IDAgMCAwIDAtMS43NXoiLz48cGF0aCBjbGFzcz0iaWNvbi12cy1yZWQiIGQ9Ik05Ljc1IDEwLjYyNWEuODc1Ljg3NSAwIDEgMCAwIDEuNzUuODc1Ljg3NSAwIDAgMCAwLTEuNzV6Ii8+PC9nPjwvc3ZnPg==)}.monaco-editor .suggest-widget .monaco-list .monaco-list-row .suggest-icon.file:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHN0eWxlPi5pY29uLWNhbnZhcy10cmFuc3BhcmVudHtvcGFjaXR5OjA7ZmlsbDojZjZmNmY2fS5pY29uLXZzLW91dHtmaWxsOiNmNmY2ZjZ9Lmljb24tdnMtYmd7ZmlsbDojNDI0MjQyfS5pY29uLXZzLWZne2ZpbGw6I2YwZWZmMX08L3N0eWxlPjxwYXRoIGNsYXNzPSJpY29uLWNhbnZhcy10cmFuc3BhcmVudCIgZD0iTTE2IDE2SDBWMGgxNnYxNnoiIGlkPSJjYW52YXMiLz48cGF0aCBjbGFzcz0iaWNvbi12cy1vdXQiIGQ9Ik0xNSAxNkgyVjBoOC42MjFMMTUgNC4zNzlWMTZ6IiBpZD0ib3V0bGluZSIvPjxwYXRoIGNsYXNzPSJpY29uLXZzLWZnIiBkPSJNMTMgMTRINFYyaDV2NGg0djh6bS0zLTlWMi4yMDdMMTIuNzkzIDVIMTB6IiBpZD0iaWNvbkZnIi8+PHBhdGggY2xhc3M9Imljb24tdnMtYmciIGQ9Ik0zIDF2MTRoMTFWNC43OTNMMTAuMjA3IDFIM3ptMTAgMTNINFYyaDV2NGg0djh6bS0zLTlWMi4yMDdMMTIuNzkzIDVIMTB6IiBpZD0iaWNvbkJnIi8+PC9zdmc+)}.monaco-editor .suggest-widget .monaco-list .monaco-list-row .suggest-icon.reference:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHN0eWxlPi5pY29uLWNhbnZhcy10cmFuc3BhcmVudHtvcGFjaXR5OjA7ZmlsbDojZjZmNmY2fS5pY29uLXZzLW91dHtmaWxsOiNmNmY2ZjZ9Lmljb24tdnMtYmd7ZmlsbDojNDI0MjQyfS5pY29uLXZzLWZne2ZpbGw6I2YwZWZmMX0uaWNvbi12cy1hY3Rpb24tYmx1ZXtmaWxsOiMwMDUzOWN9PC9zdHlsZT48cGF0aCBjbGFzcz0iaWNvbi1jYW52YXMtdHJhbnNwYXJlbnQiIGQ9Ik0xNiAxNkgwVjBoMTZ2MTZ6IiBpZD0iY2FudmFzIi8+PHBhdGggY2xhc3M9Imljb24tdnMtb3V0IiBkPSJNMTQgNC41NTZWMTNjMCAuOTctLjcwMSAyLTIgMkg0Yy0uOTcgMC0yLS43MDEtMi0yVjYuNjQ5QTMuNDk1IDMuNDk1IDAgMCAxIDAgMy41QzAgMS41NyAxLjU3IDAgMy41IDBINXYxaDUuMDYxTDE0IDQuNTU2eiIgaWQ9Im91dGxpbmUiIHN0eWxlPSJkaXNwbGF5OiBub25lOyIvPjxwYXRoIGNsYXNzPSJpY29uLXZzLWJnIiBkPSJNMTMgNXY4cy0uMDM1IDEtMS4wMzUgMWgtOFMzIDE0IDMgMTNWOWgxdjRoOFY2SDkuMzk3bC41MTctLjUyTDkgNC41NzJWM0g3LjQxOUw2LjQxMyAyaDMuMjI4TDEzIDV6IiBpZD0iaWNvbkJnIi8+PHBhdGggY2xhc3M9Imljb24tdnMtZmciIGQ9Ik03LjQxOSAzSDl2MS41NzJMNy40MTkgM3ptMS45NzggM0w2LjQxNiA5SDR2NGg4VjZIOS4zOTd6IiBpZD0iaWNvbkZnIiBzdHlsZT0iZGlzcGxheTogbm9uZTsiLz48cGF0aCBjbGFzcz0iaWNvbi12cy1hY3Rpb24tYmx1ZSIgZD0iTTUuOTg4IDZIMy41YTIuNSAyLjUgMCAxIDEgMC01SDR2MWgtLjVDMi42NzMgMiAyIDIuNjczIDIgMy41UzIuNjczIDUgMy41IDVoMi41MTNMNCAzaDJsMi41IDIuNDg0TDYgOEg0bDEuOTg4LTJ6IiBpZD0iY29sb3JBY3Rpb24iLz48L3N2Zz4=)}.monaco-editor .suggest-widget .monaco-list .monaco-list-row .suggest-icon.snippet:before{background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+DQo8c3ZnDQogICB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iDQogICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIg0KICAgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIg0KICAgeG1sbnM6c3ZnPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyINCiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyINCiAgIHZlcnNpb249IjEuMSINCiAgIGlkPSJzdmc0Njk0Ig0KICAgdmlld0JveD0iMCAwIDE2IDE2Ij4NCiAgPG1ldGFkYXRhDQogICAgIGlkPSJtZXRhZGF0YTQ3MDUiPg0KICAgIDxyZGY6UkRGPg0KICAgICAgPGNjOldvcmsNCiAgICAgICAgIHJkZjphYm91dD0iIj4NCiAgICAgICAgPGRjOmZvcm1hdD5pbWFnZS9zdmcreG1sPC9kYzpmb3JtYXQ+DQogICAgICAgIDxkYzp0eXBlDQogICAgICAgICAgIHJkZjpyZXNvdXJjZT0iaHR0cDovL3B1cmwub3JnL2RjL2RjbWl0eXBlL1N0aWxsSW1hZ2UiIC8+DQogICAgICAgIDxkYzp0aXRsZT48L2RjOnRpdGxlPg0KICAgICAgPC9jYzpXb3JrPg0KICAgIDwvcmRmOlJERj4NCiAgPC9tZXRhZGF0YT4NCiAgPGRlZnMNCiAgICAgaWQ9ImRlZnM0NzAzIiAvPg0KICA8c3R5bGUNCiAgICAgaWQ9InN0eWxlNDY5NiI+Lmljb24tY2FudmFzLXRyYW5zcGFyZW50e29wYWNpdHk6MDtmaWxsOiNmNmY2ZjZ9Lmljb24tdnMtb3V0e2ZpbGw6I2Y2ZjZmNn0uaWNvbi12cy1hY3Rpb24tb3Jhbmdle2ZpbGw6I2MyN2QxYX08L3N0eWxlPg0KICA8Zw0KICAgICBpZD0iZzQ3MDciDQogICAgIHRyYW5zZm9ybT0ibWF0cml4KDEuMzMzMzMzMywwLDAsMS4zMzMzMzMzLC0yNDUuOTk5OTksLTUuMzMzMzMzKSI+DQogICAgPHBhdGgNCiAgICAgICBkPSJtIDE4NSw0IDExLDAgMCwxMiAtMTEsMCB6Ig0KICAgICAgIGlkPSJwYXRoNDUzNCINCiAgICAgICBzdHlsZT0iZmlsbDojZjZmNmY2IiAvPg0KICAgIDxwYXRoDQogICAgICAgZD0ibSAxOTQsMTMgMCwtNyAtNywwIDAsNyAtMSwwIDAsLTggOSwwIDAsOCAtMSwwIHogbSAtNywyIC0xLDAgMCwtMSAxLDAgMCwxIHogbSAyLC0xIC0xLDAgMCwxIDEsMCAwLC0xIHogbSAyLDAgLTEsMCAwLDEgMSwwIDAsLTEgeiBtIDIsMSAtMSwwIDAsLTEgMSwwIDAsMSB6IG0gMiwtMSAtMSwwIDAsMSAxLDAgMCwtMSB6Ig0KICAgICAgIGlkPSJwYXRoNDUzNiINCiAgICAgICBzdHlsZT0iZmlsbDojNDI0MjQyIiAvPg0KICAgIDxwYXRoDQogICAgICAgZD0ibSAxODcsMTMgMCwtNyA3LDAgMCw3IC03LDAgeiINCiAgICAgICBpZD0icGF0aDQ1MzgiDQogICAgICAgc3R5bGU9ImZpbGw6I2YwZWZmMSIgLz4NCiAgPC9nPg0KICA8cGF0aA0KICAgICBpZD0iY2FudmFzIg0KICAgICBkPSJNMTYgMTZIMFYwaDE2djE2eiINCiAgICAgY2xhc3M9Imljb24tY2FudmFzLXRyYW5zcGFyZW50IiAvPg0KPC9zdmc+DQo=)}.monaco-editor .suggest-widget .monaco-list .monaco-list-row .suggest-icon.customcolor:before{background-image:none}.monaco-editor .suggest-widget .monaco-list .monaco-list-row .suggest-icon.folder:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiI+PHN0eWxlIHR5cGU9InRleHQvY3NzIj4uaWNvbi1jYW52YXMtdHJhbnNwYXJlbnR7b3BhY2l0eTowO2ZpbGw6I0Y2RjZGNjt9IC5pY29uLXZzLW91dHtvcGFjaXR5OjA7ZmlsbDojRjZGNkY2O30gLmljb24tdnMtZmd7ZmlsbDojRjBFRkYxO30gLmljb24tZm9sZGVye2ZpbGw6IzY1NjU2NTt9PC9zdHlsZT48cGF0aCBjbGFzcz0iaWNvbi1jYW52YXMtdHJhbnNwYXJlbnQiIGQ9Ik0xNiAxNmgtMTZ2LTE2aDE2djE2eiIgaWQ9ImNhbnZhcyIvPjxwYXRoIGNsYXNzPSJpY29uLXZzLW91dCIgZD0iTTE2IDIuNXYxMGMwIC44MjctLjY3MyAxLjUtMS41IDEuNWgtMTEuOTk2Yy0uODI3IDAtMS41LS42NzMtMS41LTEuNXYtOGMwLS44MjcuNjczLTEuNSAxLjUtMS41aDIuODg2bDEtMmg4LjExYy44MjcgMCAxLjUuNjczIDEuNSAxLjV6IiBpZD0ib3V0bGluZSIvPjxwYXRoIGNsYXNzPSJpY29uLWZvbGRlciIgZD0iTTE0LjUgMmgtNy40OTJsLTEgMmgtMy41MDRjLS4yNzcgMC0uNS4yMjQtLjUuNXY4YzAgLjI3Ni4yMjMuNS41LjVoMTEuOTk2Yy4yNzUgMCAuNS0uMjI0LjUtLjV2LTEwYzAtLjI3Ni0uMjI1LS41LS41LS41em0tLjQ5NiAyaC02LjQ5NmwuNS0xaDUuOTk2djF6IiBpZD0iaWNvbkJnIi8+PHBhdGggY2xhc3M9Imljb24tdnMtZmciIGQ9Ik0xNCAzdjFoLTYuNWwuNS0xaDZ6IiBpZD0iaWNvbkZnIi8+PC9zdmc+)}.monaco-editor .suggest-widget .monaco-list .monaco-list-row .icon.customcolor .colorspan{margin:0 0 0 .3em;border:.1em solid #000;width:.7em;height:.7em;display:inline-block}.monaco-editor .suggest-widget .details{display:flex;flex-direction:column;cursor:default}.monaco-editor .suggest-widget .details.no-docs{display:none}.monaco-editor .suggest-widget.docs-below .details{border-top-width:0}.monaco-editor .suggest-widget .details>.monaco-scrollable-element{flex:1}.monaco-editor .suggest-widget .details>.monaco-scrollable-element>.body{position:absolute;box-sizing:border-box;height:100%;width:100%}.monaco-editor .suggest-widget .details>.monaco-scrollable-element>.body>.header>.type{flex:2;overflow:hidden;text-overflow:ellipsis;opacity:.7;word-break:break-all;margin:0;padding:4px 0 12px 5px}.monaco-editor .suggest-widget .details>.monaco-scrollable-element>.body>.docs{margin:0;padding:4px 5px;white-space:pre-wrap}.monaco-editor .suggest-widget .details>.monaco-scrollable-element>.body>.docs.markdown-docs{padding:0;white-space:normal}.monaco-editor .suggest-widget .details>.monaco-scrollable-element>.body>.docs.markdown-docs>div,.monaco-editor .suggest-widget .details>.monaco-scrollable-element>.body>.docs.markdown-docs>span:not(:empty){padding:4px 5px}.monaco-editor .suggest-widget .details>.monaco-scrollable-element>.body>.docs.markdown-docs>div>p:first-child{margin-top:0}.monaco-editor .suggest-widget .details>.monaco-scrollable-element>.body>.docs.markdown-docs>div>p:last-child{margin-bottom:0}.monaco-editor .suggest-widget .details>.monaco-scrollable-element>.body>.docs .code{white-space:pre-wrap;word-wrap:break-word}.monaco-editor .suggest-widget .details>.monaco-scrollable-element>.body>p:empty{display:none}.monaco-editor .suggest-widget .details code{border-radius:3px;padding:0 .4em}.monaco-editor.hc-black .suggest-widget .details>.monaco-scrollable-element>.body>.header>.close,.monaco-editor.vs-dark .suggest-widget .details>.monaco-scrollable-element>.body>.header>.close{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMyAzIDE2IDE2IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDMgMyAxNiAxNiI+PHBvbHlnb24gZmlsbD0iI2U4ZThlOCIgcG9pbnRzPSIxMi41OTcsMTEuMDQyIDE1LjQsMTMuODQ1IDEzLjg0NCwxNS40IDExLjA0MiwxMi41OTggOC4yMzksMTUuNCA2LjY4MywxMy44NDUgOS40ODUsMTEuMDQyIDYuNjgzLDguMjM5IDguMjM4LDYuNjgzIDExLjA0Miw5LjQ4NiAxMy44NDUsNi42ODMgMTUuNCw4LjIzOSIvPjwvc3ZnPg==)}.monaco-editor.hc-black .suggest-widget .monaco-list .monaco-list-row .suggest-icon:before,.monaco-editor.vs-dark .suggest-widget .monaco-list .monaco-list-row .suggest-icon:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHN0eWxlPi5pY29uLWNhbnZhcy10cmFuc3BhcmVudHtvcGFjaXR5OjA7ZmlsbDojMmQyZDMwfS5pY29uLXZzLW91dHtmaWxsOiMyZDJkMzB9Lmljb24tdnMtYmd7ZmlsbDojYzVjNWM1fTwvc3R5bGU+PHBhdGggY2xhc3M9Imljb24tY2FudmFzLXRyYW5zcGFyZW50IiBkPSJNMTYgMTZIMFYwaDE2djE2eiIgaWQ9ImNhbnZhcyIvPjxwYXRoIGNsYXNzPSJpY29uLXZzLW91dCIgZD0iTTE2IDEwYzAgMi4yMDUtMS43OTQgNC00IDQtMS44NTggMC0zLjQxMS0xLjI3OS0zLjg1OC0zaC0uOTc4bDIuMzE4IDRIMHYtMS43MDNsMi0zLjQwOFYwaDExdjYuMTQyYzEuNzIxLjQ0NyAzIDIgMyAzLjg1OHoiIGlkPSJvdXRsaW5lIi8+PHBhdGggY2xhc3M9Imljb24tdnMtYmciIGQ9Ik0xMiAxdjQuNzVBNC4yNTUgNC4yNTUgMCAwIDAgNy43NSAxMGgtLjczMkw0LjI3NSA1LjI2OSAzIDcuNDQyVjFoOXpNNy43NDcgMTRMNC4yNjkgOCAuNzQ4IDE0aDYuOTk5ek0xNSAxMGEzIDMgMCAxIDEtNiAwIDMgMyAwIDAgMSA2IDB6IiBpZD0iaWNvbkJnIi8+PC9zdmc+)}.monaco-editor.hc-black .suggest-widget .monaco-list .monaco-list-row .suggest-icon.constructor:before,.monaco-editor.hc-black .suggest-widget .monaco-list .monaco-list-row .suggest-icon.function:before,.monaco-editor.hc-black .suggest-widget .monaco-list .monaco-list-row .suggest-icon.method:before,.monaco-editor.vs-dark .suggest-widget .monaco-list .monaco-list-row .suggest-icon.constructor:before,.monaco-editor.vs-dark .suggest-widget .monaco-list .monaco-list-row .suggest-icon.function:before,.monaco-editor.vs-dark .suggest-widget .monaco-list .monaco-list-row .suggest-icon.method:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHN0eWxlPi5pY29uLWNhbnZhcy10cmFuc3BhcmVudHtvcGFjaXR5OjA7ZmlsbDojMmQyZDMwfS5pY29uLXZzLW91dHtmaWxsOiMyZDJkMzB9Lmljb24tdnMtZmd7ZmlsbDojMmIyODJlfS5pY29uLXZzLWFjdGlvbi1wdXJwbGV7ZmlsbDojYjE4MGQ3fTwvc3R5bGU+PHBhdGggY2xhc3M9Imljb24tY2FudmFzLXRyYW5zcGFyZW50IiBkPSJNMTYgMTZIMFYwaDE2djE2eiIgaWQ9ImNhbnZhcyIvPjxwYXRoIGNsYXNzPSJpY29uLXZzLW91dCIgZD0iTTE1IDMuMzQ5djguNDAzTDguOTc1IDE2SDguMDdMMSAxMS41ODJWMy4zMjdMNy41OTUgMGgxLjExOEwxNSAzLjM0OXoiIGlkPSJvdXRsaW5lIi8+PHBhdGggY2xhc3M9Imljb24tdnMtZmciIGQ9Ik0xMi43MTUgNC4zOThMOC40ODcgNy4wMiAzLjU2NSA0LjI3Mmw0LjU3OC0yLjMwOSA0LjU3MiAyLjQzNXpNMyA1LjEwMmw1IDIuNzkydjUuNzA1bC01LTMuMTI1VjUuMTAyem02IDguNDM0VjcuODc4bDQtMi40OHY1LjMxN2wtNCAyLjgyMXoiIGlkPSJpY29uRmciLz48cGF0aCBjbGFzcz0iaWNvbi12cy1hY3Rpb24tcHVycGxlIiBkPSJNOC4xNTYuODM3TDIgMy45NDJ2Ny4wODVMOC41MTcgMTUuMSAxNCAxMS4yMzNWMy45NUw4LjE1Ni44Mzd6bTQuNTU5IDMuNTYxTDguNDg3IDcuMDIgMy41NjUgNC4yNzJsNC41NzgtMi4zMDkgNC41NzIgMi40MzV6TTMgNS4xMDJsNSAyLjc5MnY1LjcwNWwtNS0zLjEyNVY1LjEwMnptNiA4LjQzNFY3Ljg3OGw0LTIuNDh2NS4zMTdsLTQgMi44MjF6IiBpZD0iaWNvbkJnIi8+PC9zdmc+)}.monaco-editor.hc-black .suggest-widget .monaco-list .monaco-list-row .suggest-icon.field:before,.monaco-editor.vs-dark .suggest-widget .monaco-list .monaco-list-row .suggest-icon.field:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHN0eWxlPi5pY29uLWNhbnZhcy10cmFuc3BhcmVudHtvcGFjaXR5OjA7ZmlsbDojMmQyZDMwfS5pY29uLXZzLW91dHtmaWxsOiMyZDJkMzB9Lmljb24tdnMtZmd7ZmlsbDojMmIyODJlfS5pY29uLXZzLWFjdGlvbi1ibHVle2ZpbGw6Izc1YmVmZn08L3N0eWxlPjxwYXRoIGNsYXNzPSJpY29uLWNhbnZhcy10cmFuc3BhcmVudCIgZD0iTTE2IDE2SDBWMGgxNnYxNnoiIGlkPSJjYW52YXMiLz48cGF0aCBjbGFzcz0iaWNvbi12cy1vdXQiIGQ9Ik0wIDEwLjczNlY0LjVMOSAwbDcgMy41djYuMjM2bC05IDQuNS03LTMuNXoiIGlkPSJvdXRsaW5lIi8+PHBhdGggY2xhc3M9Imljb24tdnMtYWN0aW9uLWJsdWUiIGQ9Ik05IDFMMSA1djVsNiAzIDgtNFY0TDkgMXpNNyA2Ljg4MkwzLjIzNiA1IDkgMi4xMTggMTIuNzY0IDQgNyA2Ljg4MnoiIGlkPSJpY29uQmciLz48cGF0aCBjbGFzcz0iaWNvbi12cy1mZyIgZD0iTTkgMi4xMThMMTIuNzY0IDQgNyA2Ljg4MiAzLjIzNiA1IDkgMi4xMTh6IiBpZD0iaWNvbkZnIi8+PC9zdmc+)}.monaco-editor.hc-black .suggest-widget .monaco-list .monaco-list-row .suggest-icon.event:before,.monaco-editor.vs-dark .suggest-widget .monaco-list .monaco-list-row .suggest-icon.event:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHN0eWxlPi5pY29uLWNhbnZhcy10cmFuc3BhcmVudHtvcGFjaXR5OjA7ZmlsbDojMmQyZDMwfS5pY29uLXZzLW91dHtmaWxsOiMyZDJkMzB9Lmljb24tdnMtYWN0aW9uLW9yYW5nZXtmaWxsOiNlOGFiNTN9PC9zdHlsZT48cGF0aCBjbGFzcz0iaWNvbi1jYW52YXMtdHJhbnNwYXJlbnQiIGQ9Ik0xNiAxNkgwVjBoMTZ2MTZ6IiBpZD0iY2FudmFzIi8+PHBhdGggY2xhc3M9Imljb24tdnMtb3V0IiBkPSJNMTQgMS40MTRMOS40MTQgNkgxNHYxLjQxNEw1LjQxNCAxNkgzdi0xLjIzNEw1LjM3MSAxMEgyVjguNzY0TDYuMzgyIDBIMTR2MS40MTR6IiBpZD0ib3V0bGluZSIgc3R5bGU9ImRpc3BsYXk6IG5vbmU7Ii8+PHBhdGggY2xhc3M9Imljb24tdnMtYWN0aW9uLW9yYW5nZSIgZD0iTTcgN2g2bC04IDhINGwyLjk4NS02SDNsNC04aDZMNyA3eiIgaWQ9Imljb25CZyIvPjwvc3ZnPg==)}.monaco-editor.hc-black .suggest-widget .monaco-list .monaco-list-row .suggest-icon.operator:before,.monaco-editor.vs-dark .suggest-widget .monaco-list .monaco-list-row .suggest-icon.operator:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHN0eWxlPi5pY29uLWNhbnZhcy10cmFuc3BhcmVudHtvcGFjaXR5OjA7ZmlsbDojMmQyZDMwfS5pY29uLXZzLW91dHtmaWxsOiMyZDJkMzB9Lmljb24tdnMtZmd7ZmlsbDojMmIyODJlfS5pY29uLXZzLWFjdGlvbi1ibHVle2ZpbGw6Izc1YmVmZn08L3N0eWxlPjxwYXRoIGNsYXNzPSJpY29uLWNhbnZhcy10cmFuc3BhcmVudCIgZD0iTTE2IDE2SDBWMGgxNnYxNnoiIGlkPSJjYW52YXMiLz48cGF0aCBjbGFzcz0iaWNvbi12cy1vdXQiIGQ9Ik0xNiAxNkgwVjBoMTZ2MTZ6IiBpZD0ib3V0bGluZSIgc3R5bGU9ImRpc3BsYXk6IG5vbmU7Ii8+PHBhdGggY2xhc3M9Imljb24tdnMtYWN0aW9uLWJsdWUiIGQ9Ik0xIDF2MTRoMTRWMUgxem02IDEySDN2LTFoNHYxem0wLTNIM1Y5aDR2MXptMC01SDV2Mkg0VjVIMlY0aDJWMmgxdjJoMnYxem0zLjI4MSA4SDguNzE5bDMtNGgxLjU2M2wtMy4wMDEgNHpNMTQgNUg5VjRoNXYxeiIgaWQ9Imljb25CZyIvPjxwYXRoIGNsYXNzPSJpY29uLXZzLWZnIiBkPSJNNyA1SDV2Mkg0VjVIMlY0aDJWMmgxdjJoMnYxem03LTFIOXYxaDVWNHpNNyA5SDN2MWg0Vjl6bTAgM0gzdjFoNHYtMXptMy4yODEgMWwzLTRoLTEuNTYzbC0zIDRoMS41NjN6IiBpZD0iaWNvbkZnIiBzdHlsZT0iZGlzcGxheTogbm9uZTsiLz48L3N2Zz4=)}.monaco-editor.hc-black .suggest-widget .monaco-list .monaco-list-row .suggest-icon.variable:before,.monaco-editor.vs-dark .suggest-widget .monaco-list .monaco-list-row .suggest-icon.variable:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHN0eWxlPi5pY29uLWNhbnZhcy10cmFuc3BhcmVudHtvcGFjaXR5OjA7ZmlsbDojMmQyZDMwfS5pY29uLXZzLW91dHtmaWxsOiMyZDJkMzB9Lmljb24tdnMtYmd7ZmlsbDojYzVjNWM1fS5pY29uLXZzLWZne2ZpbGw6IzJiMjgyZX0uaWNvbi12cy1hY3Rpb24tYmx1ZXtmaWxsOiM3NWJlZmZ9PC9zdHlsZT48cGF0aCBjbGFzcz0iaWNvbi1jYW52YXMtdHJhbnNwYXJlbnQiIGQ9Ik0xNiAxNkgwVjBoMTZ2MTZ6IiBpZD0iY2FudmFzIi8+PHBhdGggY2xhc3M9Imljb24tdnMtb3V0IiBkPSJNMTEgM3YxLjAxNUw4LjczMyAyLjg4MiA1IDQuNzQ5VjNIMHYxMGg1di0xLjg1OWwyLjE1NiAxLjA3N0wxMSAxMC4yOTVWMTNoNVYzaC01eiIgaWQ9Im91dGxpbmUiIHN0eWxlPSJkaXNwbGF5OiBub25lOyIvPjxwYXRoIGNsYXNzPSJpY29uLXZzLWJnIiBkPSJNMiA1djZoMnYxSDFWNGgzdjFIMnptMTAgNnYxaDNWNGgtM3YxaDJ2NmgtMnoiIGlkPSJpY29uQmciLz48cGF0aCBjbGFzcz0iaWNvbi12cy1mZyIgZD0iTTcuMTU2IDcuMTU2bC0xLjU3OC0uNzg5IDMuMTU2LTEuNTc4IDEuNTc4Ljc4OS0zLjE1NiAxLjU3OHoiIGlkPSJpY29uRmciIHN0eWxlPSJkaXNwbGF5OiBub25lOyIvPjxwYXRoIGNsYXNzPSJpY29uLXZzLWFjdGlvbi1ibHVlIiBkPSJNOC43MzMgNEw0IDYuMzY3djMuMTU2TDcuMTU2IDExLjFsNC43MzMtMi4zNjdWNS41NzhMOC43MzMgNHpNNy4xNTYgNy4xNTZsLTEuNTc4LS43ODkgMy4xNTYtMS41NzggMS41NzguNzg5LTMuMTU2IDEuNTc4eiIgaWQ9ImNvbG9ySW1wb3J0YW5jZSIvPjwvc3ZnPg==)}.monaco-editor.hc-black .suggest-widget .monaco-list .monaco-list-row .suggest-icon.class:before,.monaco-editor.vs-dark .suggest-widget .monaco-list .monaco-list-row .suggest-icon.class:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHN0eWxlPi5pY29uLWNhbnZhcy10cmFuc3BhcmVudHtvcGFjaXR5OjA7ZmlsbDojMmQyZDMwfS5pY29uLXZzLW91dHtmaWxsOiMyZDJkMzB9Lmljb24tdnMtYWN0aW9uLW9yYW5nZXtmaWxsOiNlOGFiNTN9PC9zdHlsZT48cGF0aCBjbGFzcz0iaWNvbi1jYW52YXMtdHJhbnNwYXJlbnQiIGQ9Ik0xNiAxNkgwVjBoMTZ2MTZ6IiBpZD0iY2FudmFzIi8+PHBhdGggY2xhc3M9Imljb24tdnMtb3V0IiBkPSJNMTYgNi41ODZsLTMtM0wxMS41ODYgNUg5LjQxNGwxLTEtNC00aC0uODI4TDAgNS41ODZ2LjgyOGw0IDRMNi40MTQgOEg3djVoMS41ODZsMyAzaC44MjhMMTYgMTIuNDE0di0uODI4TDEzLjkxNCA5LjUgMTYgNy40MTR2LS44Mjh6IiBpZD0ib3V0bGluZSIvPjxwYXRoIGNsYXNzPSJpY29uLXZzLWFjdGlvbi1vcmFuZ2UiIGQ9Ik0xMyAxMGwyIDItMyAzLTItMiAxLTFIOFY3SDZMNCA5IDEgNmw1LTUgMyAzLTIgMmg1bDEtMSAyIDItMyAzLTItMiAxLTFIOXY0bDIuOTk5LjAwMkwxMyAxMHoiIGlkPSJpY29uQmciLz48L3N2Zz4=)}.monaco-editor.hc-black .suggest-widget .monaco-list .monaco-list-row .suggest-icon.interface:before,.monaco-editor.vs-dark .suggest-widget .monaco-list .monaco-list-row .suggest-icon.interface:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHN0eWxlPi5pY29uLWNhbnZhcy10cmFuc3BhcmVudHtvcGFjaXR5OjA7ZmlsbDojMmQyZDMwfS5pY29uLXZzLW91dHtmaWxsOiMyZDJkMzB9Lmljb24tdnMtZmd7ZmlsbDojMmIyODJlfS5pY29uLXZzLWFjdGlvbi1ibHVle2ZpbGw6Izc1YmVmZn08L3N0eWxlPjxwYXRoIGNsYXNzPSJpY29uLWNhbnZhcy10cmFuc3BhcmVudCIgZD0iTTE2IDE2SDBWMGgxNnYxNnoiIGlkPSJjYW52YXMiLz48cGF0aCBjbGFzcz0iaWNvbi12cy1vdXQiIGQ9Ik0xMS41IDEyYy0xLjkxNSAwLTMuNjAyLTEuMjQxLTQuMjI4LTNoLTEuNDFhMy4xMSAzLjExIDAgMCAxLTIuNzM3IDEuNjI1QzEuNDAyIDEwLjYyNSAwIDkuMjIzIDAgNy41czEuNDAyLTMuMTI1IDMuMTI1LTMuMTI1YzEuMTY1IDAgMi4yMDEuNjM5IDIuNzM3IDEuNjI1aDEuNDFjLjYyNi0xLjc1OSAyLjMxMy0zIDQuMjI4LTNDMTMuOTgxIDMgMTYgNS4wMTkgMTYgNy41UzEzLjk4MSAxMiAxMS41IDEyeiIgaWQ9Im91dGxpbmUiLz48cGF0aCBjbGFzcz0iaWNvbi12cy1mZyIgZD0iTTExLjUgOUExLjUwMSAxLjUwMSAwIDEgMSAxMyA3LjVjMCAuODI2LS42NzMgMS41LTEuNSAxLjV6IiBpZD0iaWNvbkZnIi8+PHBhdGggY2xhc3M9Imljb24tdnMtYWN0aW9uLWJsdWUiIGQ9Ik0xMS41IDRhMy40OSAzLjQ5IDAgMCAwLTMuNDUgM0g1LjE4NUEyLjEyMiAyLjEyMiAwIDAgMCAxIDcuNWEyLjEyMyAyLjEyMyAwIDEgMCA0LjE4NS41SDguMDVhMy40OSAzLjQ5IDAgMCAwIDMuNDUgMyAzLjUgMy41IDAgMSAwIDAtN3ptMCA1Yy0uODI3IDAtMS41LS42NzMtMS41LTEuNVMxMC42NzMgNiAxMS41IDZzMS41LjY3MyAxLjUgMS41UzEyLjMyNyA5IDExLjUgOXoiIGlkPSJpY29uQmciLz48L3N2Zz4=)}.monaco-editor.hc-black .suggest-widget .monaco-list .monaco-list-row .suggest-icon.struct:before,.monaco-editor.vs-dark .suggest-widget .monaco-list .monaco-list-row .suggest-icon.struct:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHN0eWxlPi5pY29uLWNhbnZhcy10cmFuc3BhcmVudHtvcGFjaXR5OjA7ZmlsbDojMmQyZDMwfS5pY29uLXZzLW91dHtmaWxsOiMyZDJkMzB9Lmljb24tdnMtYWN0aW9uLWJsdWV7ZmlsbDojNzViZWZmfTwvc3R5bGU+PHBhdGggY2xhc3M9Imljb24tY2FudmFzLXRyYW5zcGFyZW50IiBkPSJNMTYgMTZIMFYwaDE2djE2eiIgaWQ9ImNhbnZhcyIvPjxwYXRoIGNsYXNzPSJpY29uLXZzLW91dCIgZD0iTTkgMTRWOEg3djZIMVYyaDE0djEySDl6IiBpZD0ib3V0bGluZSIgc3R5bGU9ImRpc3BsYXk6IG5vbmU7Ii8+PHBhdGggY2xhc3M9Imljb24tdnMtYWN0aW9uLWJsdWUiIGQ9Ik0xMCA5aDR2NGgtNFY5em0tOCA0aDRWOUgydjR6TTIgM3Y0aDEyVjNIMnoiIGlkPSJpY29uQmciLz48L3N2Zz4=)}.monaco-editor.hc-black .suggest-widget .monaco-list .monaco-list-row .suggest-icon.type-parameter:before,.monaco-editor.vs-dark .suggest-widget .monaco-list .monaco-list-row .suggest-icon.type-parameter:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHN0eWxlPi5pY29uLWNhbnZhcy10cmFuc3BhcmVudHtvcGFjaXR5OjA7ZmlsbDojMmQyZDMwfS5pY29uLXZzLW91dHtmaWxsOiMyZDJkMzB9Lmljb24tdnMtYmd7ZmlsbDojYzVjNWM1fTwvc3R5bGU+PHBhdGggY2xhc3M9Imljb24tY2FudmFzLXRyYW5zcGFyZW50IiBkPSJNMTYgMTZIMFYwaDE2djE2eiIgaWQ9ImNhbnZhcyIvPjxwYXRoIGNsYXNzPSJpY29uLXZzLW91dCIgZD0iTTEwLjcwMiAxMC41bDItMi0yLTIgLjUtLjVIMTB2NWgxdjNINXYtM2gxVjZINC43OThsLjUuNS0yIDIgMiAyTDMgMTIuNzk3bC0zLTNWNy4yMDFsMy0zVjJoMTB2Mi4yMDFsMyAzdjIuNTk2bC0zIDMtMi4yOTgtMi4yOTd6IiBpZD0ib3V0bGluZSIgc3R5bGU9ImRpc3BsYXk6IG5vbmU7Ii8+PHBhdGggY2xhc3M9Imljb24tdnMtYmciIGQ9Ik00IDNoOHYyaC0xdi0uNWMwLS4yNzctLjIyNC0uNS0uNS0uNUg5djcuNWMwIC4yNzUuMjI0LjUuNS41aC41djFINnYtMWguNWEuNS41IDAgMCAwIC41LS41VjRINS41YS41LjUgMCAwIDAtLjUuNVY1SDRWM3pNMyA1LjYxNUwuMTE2IDguNSAzIDExLjM4M2wuODg0LS44ODMtMi0yIDItMkwzIDUuNjE1em0xMCAwbC0uODg0Ljg4NSAyIDItMiAyIC44ODQuODgzTDE1Ljg4NCA4LjUgMTMgNS42MTV6IiBpZD0iaWNvbkJnIi8+PC9zdmc+)}.monaco-editor.hc-black .suggest-widget .monaco-list .monaco-list-row .suggest-icon.module:before,.monaco-editor.vs-dark .suggest-widget .monaco-list .monaco-list-row .suggest-icon.module:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHN0eWxlPi5pY29uLWNhbnZhcy10cmFuc3BhcmVudHtvcGFjaXR5OjA7ZmlsbDojMmQyZDMwfS5pY29uLXZzLW91dHtmaWxsOiMyZDJkMzB9Lmljb24tdnMtYmd7ZmlsbDojYzVjNWM1fTwvc3R5bGU+PHBhdGggY2xhc3M9Imljb24tY2FudmFzLXRyYW5zcGFyZW50IiBkPSJNMTYgMTZIMFYwaDE2djE2eiIgaWQ9ImNhbnZhcyIvPjxwYXRoIGNsYXNzPSJpY29uLXZzLW91dCIgZD0iTTkuMjYgMTEuOTg0bC45NzgtLjAyMWEuOTYyLjk2MiAwIDAgMCAuMDktLjAwNmMuMDExLS4wNjMuMDI2LS4xNzkuMDI2LS4zNjFWOS42ODhjMC0uNjc5LjE4NS0xLjI1Ny41My0xLjcwNy0uMzQ2LS40NTItLjUzLTEuMDMtLjUzLTEuNzA1VjQuMzVjMC0uMTY3LS4wMjEtLjI1OS0uMDM0LS4zMDJMOS4yNiA0LjAyVi45NzNsMS4wMTEuMDExYzIuMTY3LjAyNCAzLjQwOSAxLjE1NiAzLjQwOSAzLjEwNXYxLjk2MmMwIC4zNTEuMDcxLjQ2MS4wNzIuNDYybC45MzYuMDYuMDUzLjkyN3YxLjkzNmwtLjkzNi4wNjFjLS4wNzYuMDE2LS4xMjUuMTQ2LS4xMjUuNDI0djIuMDE3YzAgLjkxNC0uMzMyIDMuMDQzLTMuNDA4IDMuMDc4bC0xLjAxMi4wMTF2LTMuMDQzem0tMy41MjEgMy4wMzJjLTMuMDg5LS4wMzUtMy40MjItMi4xNjQtMy40MjItMy4wNzhWOS45MjFjMC0uMzI3LS4wNjYtLjQzMi0uMDY3LS40MzNsLS45MzctLjA2LS4wNjMtLjkyOVY2LjU2M2wuOTQyLS4wNmMuMDU4IDAgLjEyNS0uMTE0LjEyNS0uNDUyVjQuMDljMC0xLjk0OSAxLjI0OC0zLjA4MSAzLjQyMi0zLjEwNUw2Ljc1Ljk3M1Y0LjAybC0uOTc1LjAyM2EuNTcyLjU3MiAwIDAgMC0uMDkzLjAxYy4wMDYuMDIxLS4wMTkuMTE1LS4wMTkuMjk3djEuOTI4YzAgLjY3NS0uMTg2IDEuMjUzLS41MzQgMS43MDUuMzQ4LjQ1LjUzNCAxLjAyOC41MzQgMS43MDd2MS45MDdjMCAuMTc1LjAxNC4yOTEuMDI3LjM2My4wMjMuMDAyIDEuMDYuMDI1IDEuMDYuMDI1djMuMDQzbC0xLjAxMS0uMDEyeiIgaWQ9Im91dGxpbmUiLz48cGF0aCBjbGFzcz0iaWNvbi12cy1iZyIgZD0iTTUuNzUgMTQuMDE2Yy0xLjYyMy0uMDE5LTIuNDM0LS43MTEtMi40MzQtMi4wNzhWOS45MjFjMC0uOTAyLS4zNTUtMS4zNzYtMS4wNjYtMS40MjJ2LS45OThjLjcxMS0uMDQ1IDEuMDY2LS41MjkgMS4wNjYtMS40NDlWNC4wOWMwLTEuMzg1LjgxMS0yLjA4NyAyLjQzNC0yLjEwNXYxLjA2Yy0uNzI1LjAxNy0xLjA4Ny40NTMtMS4wODcgMS4zMDV2MS45MjhjMCAuOTItLjQ1NCAxLjQ4OC0xLjM2IDEuNzAyVjhjLjkwNy4yMDEgMS4zNi43NjMgMS4zNiAxLjY4OHYxLjkwN2MwIC40ODguMDgxLjgzNS4yNDMgMS4wNDIuMTYyLjIwOC40NDMuMzE2Ljg0NC4zMjV2MS4wNTR6bTcuOTktNS41MTdjLS43MDYuMDQ1LTEuMDYuNTItMS4wNiAxLjQyMnYyLjAxN2MwIDEuMzY3LS44MDcgMi4wNi0yLjQyIDIuMDc4di0xLjA1M2MuMzk2LS4wMDkuNjc4LS4xMTguODQ0LS4zMjguMTY3LS4yMS4yNS0uNTU2LjI1LTEuMDM5VjkuNjg4YzAtLjkyNS40NDktMS40ODggMS4zNDctMS42ODh2LS4wMjFjLS44OTgtLjIxNC0xLjM0Ny0uNzgyLTEuMzQ3LTEuNzAyVjQuMzVjMC0uODUyLS4zNjQtMS4yODgtMS4wOTQtMS4zMDZ2LTEuMDZjMS42MTMuMDE4IDIuNDIuNzIgMi40MiAyLjEwNXYxLjk2MmMwIC45Mi4zNTQgMS40MDQgMS4wNiAxLjQ0OXYuOTk5eiIgaWQ9Imljb25CZyIvPjwvc3ZnPg==)}.monaco-editor.hc-black .suggest-widget .monaco-list .monaco-list-row .suggest-icon.property:before,.monaco-editor.vs-dark .suggest-widget .monaco-list .monaco-list-row .suggest-icon.property:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHN0eWxlPi5pY29uLWNhbnZhcy10cmFuc3BhcmVudHtvcGFjaXR5OjA7ZmlsbDojMmQyZDMwfS5pY29uLXZzLW91dHtmaWxsOiMyZDJkMzB9Lmljb24tdnMtYmd7ZmlsbDojYzVjNWM1fTwvc3R5bGU+PHBhdGggY2xhc3M9Imljb24tY2FudmFzLXRyYW5zcGFyZW50IiBkPSJNMTYgMTZIMFYwaDE2djE2eiIgaWQ9ImNhbnZhcyIvPjxwYXRoIGNsYXNzPSJpY29uLXZzLW91dCIgZD0iTTE2IDUuNWE1LjUgNS41IDAgMCAxLTUuNSA1LjVjLS4yNzUgMC0uNTQzLS4wMjctLjgwNy0uMDY2bC0uMDc5LS4wMTJhNS40MjkgNS40MjkgMCAwIDEtLjgxLS4xOTJsLTQuNTM3IDQuNTM3Yy0uNDcyLjQ3My0xLjEuNzMzLTEuNzY3LjczM3MtMS4yOTUtLjI2LTEuNzY4LS43MzJhMi41MDIgMi41MDIgMCAwIDEgMC0zLjUzNWw0LjUzNy00LjUzN2E1LjQ1MiA1LjQ1MiAwIDAgMS0uMTkxLS44MTJjLS4wMDUtLjAyNS0uMDA4LS4wNTEtLjAxMi0uMDc3QTUuNTAzIDUuNTAzIDAgMCAxIDUgNS41YTUuNSA1LjUgMCAxIDEgMTEgMHoiIGlkPSJvdXRsaW5lIi8+PHBhdGggY2xhc3M9Imljb24tdnMtYmciIGQ9Ik0xNSA1LjVhNC41IDQuNSAwIDAgMS00LjUgNC41Yy0uNjkzIDAtMS4zNDItLjE3LTEuOTI5LS40NWwtNS4wMSA1LjAxYy0uMjkzLjI5NC0uNjc3LjQ0LTEuMDYxLjQ0cy0uNzY4LS4xNDYtMS4wNjEtLjQzOWExLjUgMS41IDAgMCAxIDAtMi4xMjFsNS4wMS01LjAxQTQuNDgzIDQuNDgzIDAgMCAxIDYgNS41IDQuNSA0LjUgMCAwIDEgMTAuNSAxYy42OTMgMCAxLjM0Mi4xNyAxLjkyOS40NUw5LjYzNiA0LjI0M2wyLjEyMSAyLjEyMSAyLjc5My0yLjc5M2MuMjguNTg3LjQ1IDEuMjM2LjQ1IDEuOTI5eiIgaWQ9Imljb25CZyIvPjwvc3ZnPg==)}.monaco-editor.hc-black .suggest-widget .monaco-list .monaco-list-row .suggest-icon.unit:before,.monaco-editor.vs-dark .suggest-widget .monaco-list .monaco-list-row .suggest-icon.unit:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHN0eWxlPi5pY29uLWNhbnZhcy10cmFuc3BhcmVudHtvcGFjaXR5OjA7ZmlsbDojMmQyZDMwfS5pY29uLXZzLW91dHtmaWxsOiMyZDJkMzB9Lmljb24tdnMtYmd7ZmlsbDojYzVjNWM1fS5pY29uLXZzLWZne2ZpbGw6IzJiMjgyZX08L3N0eWxlPjxwYXRoIGNsYXNzPSJpY29uLWNhbnZhcy10cmFuc3BhcmVudCIgZD0iTTE2IDE2SDBWMGgxNnYxNnoiIGlkPSJjYW52YXMiLz48cGF0aCBjbGFzcz0iaWNvbi12cy1vdXQiIGQ9Ik0xNiAxMS4wMTNIMVY0aDE1djcuMDEzeiIgaWQ9Im91dGxpbmUiLz48cGF0aCBjbGFzcz0iaWNvbi12cy1mZyIgZD0iTTggOUg3VjZoM3YzSDlWN0g4djJ6TTQgN2gxdjJoMVY2SDN2M2gxVjd6bTggMGgxdjJoMVY2aC0zdjNoMVY3eiIgaWQ9Imljb25GZyIvPjxwYXRoIGNsYXNzPSJpY29uLXZzLWJnIiBkPSJNMiA1djVoMTNWNUgyem00IDRINVY3SDR2MkgzVjZoM3Yzem00IDBIOVY3SDh2Mkg3VjZoM3Yzem00IDBoLTFWN2gtMXYyaC0xVjZoM3YzeiIgaWQ9Imljb25CZyIvPjwvc3ZnPg==)}.monaco-editor.hc-black .suggest-widget .monaco-list .monaco-list-row .suggest-icon.constant:before,.monaco-editor.vs-dark .suggest-widget .monaco-list .monaco-list-row .suggest-icon.constant:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHN0eWxlPi5pY29uLWNhbnZhcy10cmFuc3BhcmVudHtvcGFjaXR5OjA7ZmlsbDojMjUyNTI2fS5pY29uLXZzLW91dHtmaWxsOiMyNTI1MjZ9Lmljb24tdnMtYmd7ZmlsbDojYzVjNWM1fS5pY29uLXZzLWZne2ZpbGw6IzJiMjgyZX0uaWNvbi12cy1hY3Rpb24tYmx1ZXtmaWxsOiM3NWJlZmZ9PC9zdHlsZT48cGF0aCBjbGFzcz0iaWNvbi1jYW52YXMtdHJhbnNwYXJlbnQiIGQ9Ik0xNiAxNkgwVjBoMTZ2MTZ6IiBpZD0iY2FudmFzIi8+PHBhdGggY2xhc3M9Imljb24tdnMtb3V0IiBkPSJNMi44NzkgMTRMMSAxMi4xMjFWMy44NzlMMi44NzkgMmgxMC4yNDJMMTUgMy44Nzl2OC4yNDJMMTMuMTIxIDE0SDIuODc5eiIgaWQ9Im91dGxpbmUiLz48cGF0aCBjbGFzcz0iaWNvbi12cy1mZyIgZD0iTTEyLjI5MyA0SDMuNzA3TDMgNC43MDd2Ni41ODZsLjcwNy43MDdoOC41ODZsLjcwNy0uNzA3VjQuNzA3TDEyLjI5MyA0ek0xMSAxMEg1VjloNnYxem0wLTNINVY2aDZ2MXoiIGlkPSJpY29uRmciLz48ZyBpZD0iaWNvbkJnIj48cGF0aCBjbGFzcz0iaWNvbi12cy1iZyIgZD0iTTEyLjcwNyAxM0gzLjI5M0wyIDExLjcwN1Y0LjI5M0wzLjI5MyAzaDkuNDE0TDE0IDQuMjkzdjcuNDE0TDEyLjcwNyAxM3ptLTktMWg4LjU4NmwuNzA3LS43MDdWNC43MDdMMTIuMjkzIDRIMy43MDdMMyA0LjcwN3Y2LjU4NmwuNzA3LjcwN3oiLz48cGF0aCBjbGFzcz0iaWNvbi12cy1hY3Rpb24tYmx1ZSIgZD0iTTExIDdINVY2aDZ2MXptMCAySDV2MWg2Vjl6Ii8+PC9nPjwvc3ZnPg==)}.monaco-editor.hc-black .suggest-widget .monaco-list .monaco-list-row .suggest-icon.enum:before,.monaco-editor.hc-black .suggest-widget .monaco-list .monaco-list-row .suggest-icon.value:before,.monaco-editor.vs-dark .suggest-widget .monaco-list .monaco-list-row .suggest-icon.enum:before,.monaco-editor.vs-dark .suggest-widget .monaco-list .monaco-list-row .suggest-icon.value:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHN0eWxlPi5pY29uLWNhbnZhcy10cmFuc3BhcmVudHtvcGFjaXR5OjA7ZmlsbDojMmQyZDMwfS5pY29uLXZzLW91dHtmaWxsOiMyZDJkMzB9Lmljb24tdnMtZmd7ZmlsbDojMmIyODJlfS5pY29uLXZzLWFjdGlvbi1vcmFuZ2V7ZmlsbDojZThhYjUzfTwvc3R5bGU+PHBhdGggY2xhc3M9Imljb24tY2FudmFzLXRyYW5zcGFyZW50IiBkPSJNMTYgMTZIMFYwaDE2djE2eiIgaWQ9ImNhbnZhcyIvPjxwYXRoIGNsYXNzPSJpY29uLXZzLW91dCIgZD0iTTE0LjQxNCAxTDE2IDIuNTg2djUuODI4TDE0LjQxNCAxMEgxMHYzLjQxNkw4LjQxNCAxNUgxLjU4NkwwIDEzLjQxNnYtNS44M0wxLjU4NiA2SDZWMi41ODZMNy41ODYgMWg2LjgyOHoiIGlkPSJvdXRsaW5lIi8+PHBhdGggY2xhc3M9Imljb24tdnMtZmciIGQ9Ik0yIDEzaDZWOEgydjV6bTEtNGg0djFIM1Y5em0wIDJoNHYxSDN2LTF6bTExLTVWM0g4djNoLjQxNEw5IDYuNTg2VjZoNHYxSDkuNDE0bC41ODYuNTg2VjhoNFY2em0tMS0xSDlWNGg0djF6IiBpZD0iaWNvbkZnIi8+PHBhdGggY2xhc3M9Imljb24tdnMtYWN0aW9uLW9yYW5nZSIgZD0iTTMgMTFoNC4wMDF2MUgzdi0xem0wLTFoNC4wMDFWOUgzdjF6bTYtMnY1bC0xIDFIMmwtMS0xVjhsMS0xaDZsMSAxek04IDhIMnY1aDZWOHptMS0ybDEgMWgzVjZIOXptMC0xaDRWNEg5djF6bTUtM0g4TDcgM3YzaDFWM2g2djVoLTR2MWg0bDEtMVYzbC0xLTF6IiBpZD0iaWNvbkJnIi8+PC9zdmc+)}.monaco-editor.hc-black .suggest-widget .monaco-list .monaco-list-row .suggest-icon.enum-member:before,.monaco-editor.vs-dark .suggest-widget .monaco-list .monaco-list-row .suggest-icon.enum-member:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHN0eWxlPi5pY29uLWNhbnZhcy10cmFuc3BhcmVudHtvcGFjaXR5OjA7ZmlsbDojMmQyZDMwfS5pY29uLXZzLW91dHtmaWxsOiMyZDJkMzB9Lmljb24tdnMtZmd7ZmlsbDojMmIyODJlfS5pY29uLXZzLWFjdGlvbi1ibHVle2ZpbGw6Izc1YmVmZn08L3N0eWxlPjxwYXRoIGNsYXNzPSJpY29uLWNhbnZhcy10cmFuc3BhcmVudCIgZD0iTTE2IDE2SDBWMGgxNnYxNnoiIGlkPSJjYW52YXMiLz48cGF0aCBjbGFzcz0iaWNvbi12cy1vdXQiIGQ9Ik0wIDE1VjZoNlYyLjU4Nkw3LjU4NSAxaDYuODI5TDE2IDIuNTg2djUuODI5TDE0LjQxNCAxMEgxMHY1SDB6bTMtNnoiIGlkPSJvdXRsaW5lIi8+PHBhdGggY2xhc3M9Imljb24tdnMtZmciIGQ9Ik04IDN2M2g1djFoLTN2MWg0VjNIOHptNSAySDlWNGg0djF6TTIgOHY1aDZWOEgyem01IDNIM3YtMWg0djF6IiBpZD0iaWNvbkZnIi8+PHBhdGggY2xhc3M9Imljb24tdnMtYWN0aW9uLWJsdWUiIGQ9Ik0xMCA2aDN2MWgtM1Y2ek05IDR2MWg0VjRIOXptNS0ySDhMNyAzdjNoMVYzaDZ2NWgtNHYxaDRsMS0xVjNsLTEtMXptLTcgOEgzdjFoNHYtMXptMi0zdjdIMVY3aDh6TTggOEgydjVoNlY4eiIgaWQ9Imljb25CZyIvPjwvc3ZnPg==)}.monaco-editor.hc-black .suggest-widget .monaco-list .monaco-list-row .suggest-icon.keyword:before,.monaco-editor.vs-dark .suggest-widget .monaco-list .monaco-list-row .suggest-icon.keyword:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHN0eWxlPi5pY29uLWNhbnZhcy10cmFuc3BhcmVudHtvcGFjaXR5OjA7ZmlsbDojMmQyZDMwfS5pY29uLXZzLW91dHtmaWxsOiMyZDJkMzB9Lmljb24tdnMtYmd7ZmlsbDojYzVjNWM1fS5pY29uLXZzLWZne2ZpbGw6IzJiMjgyZX08L3N0eWxlPjxwYXRoIGNsYXNzPSJpY29uLWNhbnZhcy10cmFuc3BhcmVudCIgZD0iTTE2IDE2SDBWMGgxNnYxNnoiIGlkPSJjYW52YXMiLz48cGF0aCBjbGFzcz0iaWNvbi12cy1vdXQiIGQ9Ik0xNiA1VjJIOVYxSDB2MTRoMTN2LTNoM1Y5aC0xVjZIOVY1aDd6bS04IDdWOWgxdjNIOHoiIGlkPSJvdXRsaW5lIi8+PHBhdGggY2xhc3M9Imljb24tdnMtZmciIGQ9Ik0yIDNoNXYxSDJWM3oiIGlkPSJpY29uRmciLz48cGF0aCBjbGFzcz0iaWNvbi12cy1iZyIgZD0iTTE1IDRoLTVWM2g1djF6bS0xIDNoLTJ2MWgyVjd6bS00IDBIMXYxaDlWN3ptMiA2SDF2MWgxMXYtMXptLTUtM0gxdjFoNnYtMXptOCAwaC01djFoNXYtMXpNOCAydjNIMVYyaDd6TTcgM0gydjFoNVYzeiIgaWQ9Imljb25CZyIvPjwvc3ZnPg==)}.monaco-editor.hc-black .suggest-widget .monaco-list .monaco-list-row .suggest-icon.text:before,.monaco-editor.vs-dark .suggest-widget .monaco-list .monaco-list-row .suggest-icon.text:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHN0eWxlPi5pY29uLWNhbnZhcy10cmFuc3BhcmVudHtvcGFjaXR5OjA7ZmlsbDojMmQyZDMwfS5pY29uLXZzLW91dHtmaWxsOiMyZDJkMzB9Lmljb24tdnMtYmd7ZmlsbDojYzVjNWM1fS5pY29uLXZzLWZne2ZpbGw6IzJiMjgyZX08L3N0eWxlPjxwYXRoIGNsYXNzPSJpY29uLWNhbnZhcy10cmFuc3BhcmVudCIgZD0iTTE2IDE2SDBWMGgxNnYxNnoiIGlkPSJjYW52YXMiLz48cGF0aCBjbGFzcz0iaWNvbi12cy1vdXQiIGQ9Ik0xNiAxNUgwVjFoMTZ2MTR6IiBpZD0ib3V0bGluZSIvPjxwYXRoIGNsYXNzPSJpY29uLXZzLWZnIiBkPSJNOS4yMjkgNy4zNTRjLjAzNS4xNDYuMDUyLjMxLjA1Mi40OTQgMCAuMjM0LS4wMi40NDEtLjA2LjYyMS0uMDM5LjE4LS4wOTUuMzI4LS4xNjguNDQ1YS42ODcuNjg3IDAgMCAxLS45MTQuMjgxLjc2Ljc2IDAgMCAxLS4yMzctLjIwNy45ODguOTg4IDAgMCAxLS4xNTQtLjMwNiAxLjI2MiAxLjI2MiAwIDAgMS0uMDU3LS4zODF2LS41MDZjMC0uMTcuMDItLjMyNi4wNjEtLjQ2NXMuMDk2LS4yNTguMTY4LS4zNTlhLjc1Ni43NTYgMCAwIDEgLjI1Ny0uMjMyYy4xLS4wNTUuMjEtLjA4Mi4zMzEtLjA4MmEuNjQ2LjY0NiAwIDAgMSAuNTcxLjMyYy4wNjcuMTA1LjExNi4yMy4xNS4zNzd6bS01LjEyNi44NjlhLjU1Ny41NTcgMCAwIDAtLjE5Ni4xMzJjLS4wNDcuMDUzLS4wOC4xMTItLjA5Ny4xOHMtLjAyOC4xNDctLjAyOC4yMzNhLjUxMy41MTMgMCAwIDAgLjE1Ny4zOS41MjguNTI4IDAgMCAwIC4xODYuMTEzLjY4Mi42ODIgMCAwIDAgLjI0Mi4wNDEuNzYuNzYgMCAwIDAgLjU5My0uMjcxLjg5Ny44OTcgMCAwIDAgLjE2NS0uMjk1Yy4wMzgtLjExMy4wNTktLjIzNC4wNTktLjM2NXYtLjM0NmwtLjc2MS4xMWExLjI5IDEuMjkgMCAwIDAtLjMyLjA3OHpNMTQgM3YxMEgyVjNoMTJ6TTUuOTYyIDcuNDY5YzAtLjIzOC0uMDI3LS40NTEtLjA4My0uNjM3YTEuMjg2IDEuMjg2IDAgMCAwLS4yNDktLjQ3MSAxLjA4IDEuMDggMCAwIDAtLjQyNC0uMjk1IDEuNjQ0IDEuNjQ0IDAgMCAwLS42MDgtLjEwMWMtLjExOSAwLS4yNDEuMDEyLS4zNjguMDMzYTMuMjEzIDMuMjEzIDAgMCAwLS42NzMuMTk1IDEuMzEzIDEuMzEzIDAgMCAwLS4yMTIuMTE0di43NjhjLjE1OC0uMTMyLjM0MS0uMjM1LjU0NC0uMzEzLjIwNC0uMDc4LjQxMy0uMTE3LjYyNy0uMTE3LjIxMyAwIC4zNzcuMDYzLjQ5NC4xODYuMTE2LjEyNS4xNzQuMzI0LjE3NC42bC0xLjAzLjE1NGMtLjIwNS4wMjYtLjM4LjA3Ny0uNTI2LjE1MWExLjA4MyAxLjA4MyAwIDAgMC0uNTYzLjY2QTEuNTYyIDEuNTYyIDAgMCAwIDMgOC44NTdjMCAuMTcuMDI1LjMyMy4wNzQuNDYzYS45NDUuOTQ1IDAgMCAwIC41NjguNTk2Yy4xMzkuMDU3LjI5Ny4wODQuNDc4LjA4NC4yMjkgMCAuNDMxLS4wNTMuNjA0LS4xNmExLjMgMS4zIDAgMCAwIC40MzktLjQ2M2guMDE0di41MjloLjc4NVY3LjQ2OXpNMTAgNy44NjFhMy41NCAzLjU0IDAgMCAwLS4wNzQtLjczNCAyLjA0NyAyLjA0NyAwIDAgMC0uMjI4LS42MTEgMS4yMDMgMS4yMDMgMCAwIDAtLjM5NC0uNDE2IDEuMDMgMS4wMyAwIDAgMC0uNTc0LS4xNTNjLS4xMjMgMC0uMjM0LjAxOC0uMzM2LjA1MWExIDEgMCAwIDAtLjI3OC4xNDcgMS4xNTMgMS4xNTMgMCAwIDAtLjIyNS4yMjIgMi4wMjIgMi4wMjIgMCAwIDAtLjE4MS4yODloLS4wMTNWNUg3djQuODg3aC42OTd2LS40ODVoLjAxM2MuMDQ0LjA4Mi4wOTUuMTU4LjE1MS4yMjkuMDU3LjA3LjExOS4xMzMuMTkxLjE4NmEuODM1LjgzNSAwIDAgMCAuMjM4LjEyMS45NDMuOTQzIDAgMCAwIC4yOTMuMDQyYy4yMyAwIC40MzQtLjA1My42MDktLjE2YTEuMzQgMS4zNCAwIDAgMCAuNDQzLS40NDNjLjEyLS4xODguMjExLS40MTIuMjcyLS42NzJBMy42MiAzLjYyIDAgMCAwIDEwIDcuODYxem0zLTEuNjU4YS43LjcgMCAwIDAtLjEwNi0uMDY2IDEuMTgzIDEuMTgzIDAgMCAwLS4xNDItLjA2MyAxLjIzMyAxLjIzMyAwIDAgMC0uMzYzLS4wNjVjLS4yMDkgMC0uMzk5LjA1MS0uNTY5LjE1YTEuMzU1IDEuMzU1IDAgMCAwLS40MzMuNDI0Yy0uMTE4LjE4Mi0uMjEuNDAyLS4yNzMuNjZhMy42MyAzLjYzIDAgMCAwLS4wMDggMS42MTVjLjA2LjIzLjE0My40My4yNTIuNjAyLjEwOS4xNjguMjQxLjMwMy4zOTYuMzk2YS45NzIuOTcyIDAgMCAwIC41MjQuMTQ0Yy4xNTggMCAuMjk2LS4wMjEuNDEzLS4wNjguMTE3LS4wNDUuMjE5LS4xMDguMzA5LS4xODR2LS43N2ExLjA5NCAxLjA5NCAwIDAgMS0uMjg4LjIyNS44MTkuODE5IDAgMCAxLS4xNTguMDY4LjQ4LjQ4IDAgMCAxLS4xNTMuMDI3LjYyLjYyIDAgMCAxLS4yNzQtLjA3NGMtLjI0MS0uMTM2LS40MjMtLjQ3OS0uNDIzLTEuMTQ2IDAtLjcxNS4yMDYtMS4xMi40NjktMS4zMDEuMDc3LS4wMzIuMTUzLS4wNjQuMjM4LS4wNjQuMTEzIDAgLjIyLjAyNy4zMTcuMDgyLjA5Ni4wNTcuMTg4LjEzMS4yNzIuMjIzdi0uODE1eiIgaWQ9Imljb25GZyIvPjxwYXRoIGNsYXNzPSJpY29uLXZzLWJnIiBkPSJNMSAydjEyaDE0VjJIMXptMTMgMTFIMlYzaDEydjEwek01LjYzIDYuMzYxYTEuMDggMS4wOCAwIDAgMC0uNDI0LS4yOTUgMS42NDQgMS42NDQgMCAwIDAtLjYwOC0uMTAxYy0uMTE5IDAtLjI0MS4wMTItLjM2OC4wMzNhMy4yMTMgMy4yMTMgMCAwIDAtLjY3My4xOTUgMS4zMTMgMS4zMTMgMCAwIDAtLjIxMi4xMTR2Ljc2OGMuMTU4LS4xMzIuMzQxLS4yMzUuNTQ0LS4zMTMuMjA0LS4wNzguNDEzLS4xMTcuNjI3LS4xMTcuMjEzIDAgLjM3Ny4wNjMuNDk0LjE4Ni4xMTYuMTI1LjE3NC4zMjQuMTc0LjZsLTEuMDMuMTU0Yy0uMjA1LjAyNi0uMzguMDc3LS41MjYuMTUxYTEuMDgzIDEuMDgzIDAgMCAwLS41NjMuNjZBMS41NjIgMS41NjIgMCAwIDAgMyA4Ljg1N2MwIC4xNy4wMjUuMzIzLjA3NC40NjNhLjk0NS45NDUgMCAwIDAgLjU2OC41OTZjLjEzOS4wNTcuMjk3LjA4NC40NzguMDg0LjIyOSAwIC40MzEtLjA1My42MDQtLjE2YTEuMyAxLjMgMCAwIDAgLjQzOS0uNDYzaC4wMTR2LjUyOWguNzg1VjcuNDY5YzAtLjIzOC0uMDI3LS40NTEtLjA4My0uNjM3YTEuMjg2IDEuMjg2IDAgMCAwLS4yNDktLjQ3MXptLS40NDYgMi4wMmMwIC4xMzEtLjAyLjI1Mi0uMDU5LjM2NWEuODk3Ljg5NyAwIDAgMS0uMTY1LjI5NS43NTguNzU4IDAgMCAxLS41OTMuMjcyLjY4Mi42ODIgMCAwIDEtLjI0Mi0uMDQxLjUwNy41MDcgMCAwIDEtLjMwMi0uMjg2LjU4My41ODMgMCAwIDEtLjA0MS0uMjE4YzAtLjA4Ni4wMS0uMTY0LjAyNy0uMjMycy4wNTEtLjEyNy4wOTgtLjE4YS41NDYuNTQ2IDAgMCAxIC4xOTYtLjEzM2MuMDgzLS4wMzMuMTg5LS4wNjEuMzItLjA3OGwuNzYxLS4xMDl2LjM0NXptNC41MTQtMS44NjVhMS4yMDMgMS4yMDMgMCAwIDAtLjM5NC0uNDE2IDEuMDMgMS4wMyAwIDAgMC0uNTc0LS4xNTNjLS4xMjMgMC0uMjM0LjAxOC0uMzM2LjA1MWExIDEgMCAwIDAtLjI3OC4xNDcgMS4xNTMgMS4xNTMgMCAwIDAtLjIyNS4yMjIgMi4wMjIgMi4wMjIgMCAwIDAtLjE4MS4yODloLS4wMTNWNUg3djQuODg3aC42OTd2LS40ODVoLjAxM2MuMDQ0LjA4Mi4wOTUuMTU4LjE1MS4yMjkuMDU3LjA3LjExOS4xMzMuMTkxLjE4NmEuODM1LjgzNSAwIDAgMCAuMjM4LjEyMS45NDMuOTQzIDAgMCAwIC4yOTMuMDQyYy4yMyAwIC40MzQtLjA1My42MDktLjE2YTEuMzQgMS4zNCAwIDAgMCAuNDQzLS40NDNjLjEyLS4xODguMjExLS40MTIuMjcyLS42NzJBMy42MiAzLjYyIDAgMCAwIDEwIDcuODYxYTMuNTQgMy41NCAwIDAgMC0uMDc0LS43MzQgMi4wNDcgMi4wNDcgMCAwIDAtLjIyOC0uNjExem0tLjQ3NiAxLjk1M2MtLjAzOS4xOC0uMDk1LjMyOC0uMTY4LjQ0NWEuNzU1Ljc1NSAwIDAgMS0uMjY0LjI2Ni42ODcuNjg3IDAgMCAxLS42NTEuMDE1Ljc2Ljc2IDAgMCAxLS4yMzctLjIwNy45ODguOTg4IDAgMCAxLS4xNTQtLjMwNiAxLjI2MiAxLjI2MiAwIDAgMS0uMDU3LS4zODF2LS41MDZjMC0uMTcuMDItLjMyNi4wNjEtLjQ2NXMuMDk2LS4yNTguMTY4LS4zNTlhLjc1Ni43NTYgMCAwIDEgLjI1Ny0uMjMyYy4xLS4wNTUuMjEtLjA4Mi4zMzEtLjA4MmEuNjQ2LjY0NiAwIDAgMSAuNTcxLjMyYy4wNjYuMTA1LjExNi4yMy4xNS4zNzcuMDM1LjE0Ni4wNTIuMzEuMDUyLjQ5NCAwIC4yMzQtLjAxOS40NDEtLjA1OS42MjF6bTMuNjcyLTIuMzMyYS43LjcgMCAwIDEgLjEwNi4wNjZ2LjgxNGExLjE3OCAxLjE3OCAwIDAgMC0uMjczLS4yMjMuNjQ1LjY0NSAwIDAgMC0uMzE3LS4wODFjLS4wODUgMC0uMTYxLjAzMi0uMjM4LjA2NC0uMjYzLjE4MS0uNDY5LjU4Ni0uNDY5IDEuMzAxIDAgLjY2OC4xODIgMS4wMTEuNDIzIDEuMTQ2LjA4NC4wNC4xNzEuMDc0LjI3NC4wNzQuMDQ5IDAgLjEwMS0uMDEuMTUzLS4wMjdhLjg1Ni44NTYgMCAwIDAgLjE1OC0uMDY4IDEuMTYgMS4xNiAwIDAgMCAuMjg4LS4yMjV2Ljc3Yy0uMDkuMDc2LS4xOTIuMTM5LS4zMDkuMTg0YTEuMDk4IDEuMDk4IDAgMCAxLS40MTIuMDY4Ljk3NC45NzQgMCAwIDEtLjUyMy0uMTQzIDEuMjU3IDEuMjU3IDAgMCAxLS4zOTYtLjM5NiAyLjA5OCAyLjA5OCAwIDAgMS0uMjUyLS42MDIgMy4xMTggMy4xMTggMCAwIDEtLjA4OC0uNzU0YzAtLjMxNi4wMzItLjYwNC4wOTYtLjg2MS4wNjMtLjI1OC4xNTUtLjQ3OS4yNzMtLjY2LjExOS0uMTgyLjI2NS0uMzIyLjQzMy0uNDI0YTEuMTAyIDEuMTAyIDAgMCAxIDEuMDczLS4wMjN6IiBpZD0iaWNvbkJnIi8+PC9zdmc+)}.monaco-editor.hc-black .suggest-widget .monaco-list .monaco-list-row .suggest-icon.color:before,.monaco-editor.vs-dark .suggest-widget .monaco-list .monaco-list-row .suggest-icon.color:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHN0eWxlPi5pY29uLWNhbnZhcy10cmFuc3BhcmVudHtvcGFjaXR5OjA7ZmlsbDojMmQyZDMwfS5pY29uLXZzLW91dHtmaWxsOiMyZDJkMzB9Lmljb24tdnMtYmd7ZmlsbDojYzVjNWM1fS5pY29uLXZzLXJlZHtmaWxsOiNmNDg3NzF9Lmljb24tdnMteWVsbG93e2ZpbGw6I2ZmY2MwMH0uaWNvbi12cy1ncmVlbntmaWxsOiMzMzk5MzN9Lmljb24tdnMtYmx1ZXtmaWxsOiMxYmExZTJ9Lmljb24tdnMtYWN0aW9uLXB1cnBsZXtmaWxsOiNiMTgwZDd9Lmljb24td2hpdGV7ZmlsbDojMDAwMDAwfTwvc3R5bGU+PHBhdGggY2xhc3M9Imljb24tY2FudmFzLXRyYW5zcGFyZW50IiBkPSJNMTYgMTZIMFYwaDE2djE2eiIgaWQ9ImNhbnZhcyIvPjxwYXRoIGNsYXNzPSJpY29uLXZzLW91dCIgZD0iTTE2IDhjMCA0LjQxMS0zLjU4OSA4LTggOGEyLjgwMyAyLjgwMyAwIDAgMS0yLjgtMi44YzAtLjgzMy4yNzItMS42MjkuNzY2LTIuMjQxYS41OTYuNTk2IDAgMCAwIC4xMDEtLjM1OS42NjcuNjY3IDAgMCAwLS42NjctLjY2Ni41OC41OCAwIDAgMC0uMzU4LjEwMkEzLjU4NCAzLjU4NCAwIDAgMSAyLjggMTAuOCAyLjgwMyAyLjgwMyAwIDAgMSAwIDhjMC00LjQxMSAzLjU4OS04IDgtOHM4IDMuNTg5IDggOHoiIGlkPSJvdXRsaW5lIi8+PHBhdGggY2xhc3M9Imljb24td2hpdGUiIGQ9Ik01LjQgNy45MzNhMi42NyAyLjY3IDAgMCAxIDIuNjY3IDIuNjY2YzAgLjYwNi0uMTkzIDEuMTc5LS41NDQgMS42MTRhMS41OTkgMS41OTkgMCAwIDAtLjMyMy45ODcuOC44IDAgMCAwIC44LjhjMy4zMDkgMCA2LTIuNjkxIDYtNnMtMi42OTEtNi02LTYtNiAyLjY5MS02IDZjMCAuNDQxLjM1OS44LjguOC4zNzggMCAuNzI5LS4xMTQuOTg2LS4zMjJBMi41NjggMi41NjggMCAwIDEgNS40IDcuOTMzeiIgaWQ9Imljb25GZyIvPjxnIGlkPSJpY29uQmciPjxwYXRoIGNsYXNzPSJpY29uLXZzLWJnIiBkPSJNOCAxNWMtLjk5MiAwLTEuOC0uODA4LTEuOC0xLjggMC0uNjA2LjE5My0xLjE3OS41NDQtMS42MTMuMjA4LS4yNTkuMzIzLS42MDkuMzIzLS45ODcgMC0uOTE5LS43NDgtMS42NjYtMS42NjctMS42NjYtLjM3NyAwLS43MjguMTE1LS45ODYuMzIzQTIuNTggMi41OCAwIDAgMSAyLjggOS44QzEuODA4IDkuOCAxIDguOTkyIDEgOGMwLTMuODYgMy4xNC03IDctNyAzLjg1OSAwIDcgMy4xNCA3IDcgMCAzLjg1OS0zLjE0MSA3LTcgN3pNNS40IDcuOTMzYTIuNjcgMi42NyAwIDAgMSAyLjY2NyAyLjY2NmMwIC42MDYtLjE5MyAxLjE3OS0uNTQ0IDEuNjE0YTEuNTk5IDEuNTk5IDAgMCAwLS4zMjMuOTg3LjguOCAwIDAgMCAuOC44YzMuMzA5IDAgNi0yLjY5MSA2LTZzLTIuNjkxLTYtNi02LTYgMi42OTEtNiA2YzAgLjQ0MS4zNTkuOC44LjguMzc4IDAgLjcyOS0uMTE0Ljk4Ni0uMzIyQTIuNTY4IDIuNTY4IDAgMCAxIDUuNCA3LjkzM3oiLz48cGF0aCBjbGFzcz0iaWNvbi12cy1hY3Rpb24tcHVycGxlIiBkPSJNNC41IDUuMzc1YS44NzUuODc1IDAgMSAwIDAgMS43NS44NzUuODc1IDAgMCAwIDAtMS43NXoiLz48cGF0aCBjbGFzcz0iaWNvbi12cy1ibHVlIiBkPSJNNy4xMjUgMy42MjVhLjg3NS44NzUgMCAxIDAgMCAxLjc1Ljg3NS44NzUgMCAwIDAgMC0xLjc1eiIvPjxwYXRoIGNsYXNzPSJpY29uLXZzLWdyZWVuIiBkPSJNMTAuNjI1IDQuNWEuODc1Ljg3NSAwIDEgMCAwIDEuNzUuODc1Ljg3NSAwIDAgMCAwLTEuNzV6Ii8+PHBhdGggY2xhc3M9Imljb24tdnMteWVsbG93IiBkPSJNMTEuNSA4YS44NzUuODc1IDAgMSAwIDAgMS43NS44NzUuODc1IDAgMCAwIDAtMS43NXoiLz48cGF0aCBjbGFzcz0iaWNvbi12cy1yZWQiIGQ9Ik05Ljc1IDEwLjYyNWEuODc1Ljg3NSAwIDEgMCAwIDEuNzUuODc1Ljg3NSAwIDAgMCAwLTEuNzV6Ii8+PC9nPjwvc3ZnPg==)}.monaco-editor.hc-black .suggest-widget .monaco-list .monaco-list-row .suggest-icon.file:before,.monaco-editor.vs-dark .suggest-widget .monaco-list .monaco-list-row .suggest-icon.file:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHN0eWxlPi5pY29uLWNhbnZhcy10cmFuc3BhcmVudHtvcGFjaXR5OjA7ZmlsbDojMmQyZDMwfS5pY29uLXZzLW91dHtmaWxsOiMyZDJkMzB9Lmljb24tdnMtYmd7ZmlsbDojYzVjNWM1fS5pY29uLXZzLWZne2ZpbGw6IzJiMjgyZX08L3N0eWxlPjxwYXRoIGNsYXNzPSJpY29uLWNhbnZhcy10cmFuc3BhcmVudCIgZD0iTTE2IDE2SDBWMGgxNnYxNnoiIGlkPSJjYW52YXMiLz48cGF0aCBjbGFzcz0iaWNvbi12cy1vdXQiIGQ9Ik0xNSAxNkgyVjBoOC42MjFMMTUgNC4zNzlWMTZ6IiBpZD0ib3V0bGluZSIvPjxwYXRoIGNsYXNzPSJpY29uLXZzLWZnIiBkPSJNMTMgMTRINFYyaDV2NGg0djh6bS0zLTlWMi4yMDdMMTIuNzkzIDVIMTB6IiBpZD0iaWNvbkZnIi8+PHBhdGggY2xhc3M9Imljb24tdnMtYmciIGQ9Ik0zIDF2MTRoMTFWNC43OTNMMTAuMjA3IDFIM3ptMTAgMTNINFYyaDV2NGg0djh6bS0zLTlWMi4yMDdMMTIuNzkzIDVIMTB6IiBpZD0iaWNvbkJnIi8+PC9zdmc+)}.monaco-editor.hc-black .suggest-widget .monaco-list .monaco-list-row .suggest-icon.reference:before,.monaco-editor.vs-dark .suggest-widget .monaco-list .monaco-list-row .suggest-icon.reference:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHN0eWxlPi5pY29uLWNhbnZhcy10cmFuc3BhcmVudHtvcGFjaXR5OjA7ZmlsbDojMmQyZDMwfS5pY29uLXZzLW91dHtmaWxsOiMyZDJkMzB9Lmljb24tdnMtYmd7ZmlsbDojYzVjNWM1fS5pY29uLXZzLWZne2ZpbGw6IzJiMjgyZX0uaWNvbi12cy1hY3Rpb24tYmx1ZXtmaWxsOiM3NWJlZmZ9PC9zdHlsZT48cGF0aCBjbGFzcz0iaWNvbi1jYW52YXMtdHJhbnNwYXJlbnQiIGQ9Ik0xNiAxNkgwVjBoMTZ2MTZ6IiBpZD0iY2FudmFzIi8+PHBhdGggY2xhc3M9Imljb24tdnMtb3V0IiBkPSJNMTQgNC41NTZWMTNjMCAuOTctLjcwMSAyLTIgMkg0Yy0uOTcgMC0yLS43MDEtMi0yVjYuNjQ5QTMuNDk1IDMuNDk1IDAgMCAxIDAgMy41QzAgMS41NyAxLjU3IDAgMy41IDBINXYxaDUuMDYxTDE0IDQuNTU2eiIgaWQ9Im91dGxpbmUiIHN0eWxlPSJkaXNwbGF5OiBub25lOyIvPjxwYXRoIGNsYXNzPSJpY29uLXZzLWJnIiBkPSJNMTMgNXY4cy0uMDM1IDEtMS4wMzUgMWgtOFMzIDE0IDMgMTNWOWgxdjRoOFY2SDkuMzk3bC41MTctLjUyTDkgNC41NzJWM0g3LjQxOUw2LjQxMyAyaDMuMjI4TDEzIDV6IiBpZD0iaWNvbkJnIi8+PHBhdGggY2xhc3M9Imljb24tdnMtZmciIGQ9Ik03LjQxOSAzSDl2MS41NzJMNy40MTkgM3ptMS45NzggM0w2LjQxNiA5SDR2NGg4VjZIOS4zOTd6IiBpZD0iaWNvbkZnIiBzdHlsZT0iZGlzcGxheTogbm9uZTsiLz48cGF0aCBjbGFzcz0iaWNvbi12cy1hY3Rpb24tYmx1ZSIgZD0iTTUuOTg4IDZIMy41YTIuNSAyLjUgMCAxIDEgMC01SDR2MWgtLjVDMi42NzMgMiAyIDIuNjczIDIgMy41UzIuNjczIDUgMy41IDVoMi41MTNMNCAzaDJsMi41IDIuNDg0TDYgOEg0bDEuOTg4LTJ6IiBpZD0iY29sb3JBY3Rpb24iLz48L3N2Zz4=)}.monaco-editor.hc-black .suggest-widget .monaco-list .monaco-list-row .suggest-icon.snippet:before,.monaco-editor.vs-dark .suggest-widget .monaco-list .monaco-list-row .suggest-icon.snippet:before{background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+DQo8c3ZnDQogICB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iDQogICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIg0KICAgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIg0KICAgeG1sbnM6c3ZnPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyINCiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyINCiAgIHZlcnNpb249IjEuMSINCiAgIGlkPSJzdmc0Njk0Ig0KICAgdmlld0JveD0iMCAwIDE2IDE2Ij4NCiAgPG1ldGFkYXRhDQogICAgIGlkPSJtZXRhZGF0YTQ3MDUiPg0KICAgIDxyZGY6UkRGPg0KICAgICAgPGNjOldvcmsNCiAgICAgICAgIHJkZjphYm91dD0iIj4NCiAgICAgICAgPGRjOmZvcm1hdD5pbWFnZS9zdmcreG1sPC9kYzpmb3JtYXQ+DQogICAgICAgIDxkYzp0eXBlDQogICAgICAgICAgIHJkZjpyZXNvdXJjZT0iaHR0cDovL3B1cmwub3JnL2RjL2RjbWl0eXBlL1N0aWxsSW1hZ2UiIC8+DQogICAgICAgIDxkYzp0aXRsZT48L2RjOnRpdGxlPg0KICAgICAgPC9jYzpXb3JrPg0KICAgIDwvcmRmOlJERj4NCiAgPC9tZXRhZGF0YT4NCiAgPGRlZnMNCiAgICAgaWQ9ImRlZnM0NzAzIiAvPg0KICA8c3R5bGUNCiAgICAgaWQ9InN0eWxlNDY5NiI+Lmljb24tY2FudmFzLXRyYW5zcGFyZW50e29wYWNpdHk6MDtmaWxsOiNmNmY2ZjZ9Lmljb24tdnMtb3V0e2ZpbGw6I2Y2ZjZmNn0uaWNvbi12cy1hY3Rpb24tb3Jhbmdle2ZpbGw6I2MyN2QxYX08L3N0eWxlPg0KICA8Zw0KICAgICBpZD0iZzQ3MjQiDQogICAgIHRyYW5zZm9ybT0ibWF0cml4KDEuMzMzMzMzMywwLDAsMS4zMzMzMzMzLC0yNDUuOTk5OTksLTMxLjk5OTk5OSkiPg0KICAgIDxwYXRoDQogICAgICAgZD0ibSAxODUsMjQgMTEsMCAwLDEyIC0xMSwwIHoiDQogICAgICAgaWQ9InBhdGg0NTI4Ig0KICAgICAgIHN0eWxlPSJmaWxsOiMyZDJkMzAiIC8+DQogICAgPHBhdGgNCiAgICAgICBkPSJtIDE5NCwzMyAwLC03IC03LDAgMCw3IC0xLDAgMCwtOCA5LDAgMCw4IHogbSAtOCwxIDEsMCAwLDEgLTEsMCB6IG0gMiwwIDEsMCAwLDEgLTEsMCB6IG0gMiwwIDEsMCAwLDEgLTEsMCB6IG0gMiwwIDEsMCAwLDEgLTEsMCB6IG0gMiwwIDEsMCAwLDEgLTEsMCB6Ig0KICAgICAgIGlkPSJwYXRoNDUzMCINCiAgICAgICBzdHlsZT0iZmlsbDojYzVjNWM1IiAvPg0KICAgIDxwYXRoDQogICAgICAgZD0ibSAxODcsMjYgNywwIDAsNyAtNywwIHoiDQogICAgICAgaWQ9InBhdGg0NTMyIg0KICAgICAgIHN0eWxlPSJmaWxsOiMyYjI4MmUiIC8+DQogIDwvZz4NCjwvc3ZnPg0K)}.monaco-editor.hc-black .suggest-widget .monaco-list .monaco-list-row .suggest-icon.customcolor:before,.monaco-editor.vs-dark .suggest-widget .monaco-list .monaco-list-row .suggest-icon.customcolor:before{background-image:none}.monaco-editor.hc-black .suggest-widget .monaco-list .monaco-list-row .suggest-icon.folder:before,.monaco-editor.vs-dark .suggest-widget .monaco-list .monaco-list-row .suggest-icon.folder:before{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiI+PHN0eWxlIHR5cGU9InRleHQvY3NzIj4uaWNvbi1jYW52YXMtdHJhbnNwYXJlbnR7b3BhY2l0eTowO2ZpbGw6I0Y2RjZGNjt9IC5pY29uLXZzLW91dHtvcGFjaXR5OjA7ZmlsbDojRjZGNkY2O30gLmljb24tdnMtZmd7b3BhY2l0eTowO2ZpbGw6I0YwRUZGMTt9IC5pY29uLWZvbGRlcntmaWxsOiNDNUM1QzU7fTwvc3R5bGU+PHBhdGggY2xhc3M9Imljb24tY2FudmFzLXRyYW5zcGFyZW50IiBkPSJNMTYgMTZoLTE2di0xNmgxNnYxNnoiIGlkPSJjYW52YXMiLz48cGF0aCBjbGFzcz0iaWNvbi12cy1vdXQiIGQ9Ik0xNiAyLjV2MTBjMCAuODI3LS42NzMgMS41LTEuNSAxLjVoLTExLjk5NmMtLjgyNyAwLTEuNS0uNjczLTEuNS0xLjV2LThjMC0uODI3LjY3My0xLjUgMS41LTEuNWgyLjg4NmwxLTJoOC4xMWMuODI3IDAgMS41LjY3MyAxLjUgMS41eiIgaWQ9Im91dGxpbmUiLz48cGF0aCBjbGFzcz0iaWNvbi1mb2xkZXIiIGQ9Ik0xNC41IDJoLTcuNDkybC0xIDJoLTMuNTA0Yy0uMjc3IDAtLjUuMjI0LS41LjV2OGMwIC4yNzYuMjIzLjUuNS41aDExLjk5NmMuMjc1IDAgLjUtLjIyNC41LS41di0xMGMwLS4yNzYtLjIyNS0uNS0uNS0uNXptLS40OTYgMmgtNi40OTZsLjUtMWg1Ljk5NnYxeiIgaWQ9Imljb25CZyIvPjxwYXRoIGNsYXNzPSJpY29uLXZzLWZnIiBkPSJNMTQgM3YxaC02LjVsLjUtMWg2eiIgaWQ9Imljb25GZyIvPjwvc3ZnPg==)}.monaco-editor .zone-widget{position:absolute;z-index:3}.monaco-editor .zone-widget .zone-widget-container{border-top-style:solid;border-bottom-style:solid;border-top-width:0;border-bottom-width:0;position:relative}.monaco-editor .accessibilityHelpWidget{padding:10px;vertical-align:middle;overflow:scroll}.monaco-editor .iPadShowKeyboard{width:58px;min-width:0;height:36px;min-height:0;margin:0;padding:0;position:absolute;resize:none;overflow:hidden;background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OCIgaGVpZ2h0PSIzNiI+PHBhdGggZmlsbD0iI0YwRUZGMSIgZD0iTTU0IDMydi0yOGgtNTB2MjhoNTB6bS0xNi0yaC0xOHYtNmgxOHY2em02IDBoLTR2LTZoNHY2em04IDBoLTZ2LTZoNnY2em0tNC0yNGg0djRoLTR2LTR6bTAgNmg0djRoLTR2LTR6bTAgNmg0djRoLTR2LTR6bS02LTEyaDR2NGgtNHYtNHptMCA2aDR2NGgtNHYtNHptMCA2aDR2NGgtNHYtNHptLTYtMTJoNHY0aC00di00em0wIDZoNHY0aC00di00em0wIDZoNHY0aC00di00em0tNi0xMmg0djRoLTR2LTR6bTAgNmg0djRoLTR2LTR6bTAgNmg0djRoLTR2LTR6bS02LTEyaDR2NGgtNHYtNHptMCA2aDR2NGgtNHYtNHptMCA2aDR2NGgtNHYtNHptLTYtMTJoNHY0aC00di00em0wIDZoNHY0aC00di00em0wIDZoNHY0aC00di00em0wIDEyaC00di02aDR2NnptLTYtMjRoNHY0aC00di00em0wIDZoNHY0aC00di00em0wIDZoNHY0aC00di00em0tNi0xMmg0djRoLTR2LTR6bTAgNmg0djRoLTR2LTR6bTAgNmg0djRoLTR2LTR6bTAgNmg2djZoLTZ2LTZ6Ii8+PHBhdGggZmlsbD0iIzQyNDI0MiIgZD0iTTU1LjMzNiAwaC01My4yODVjLTEuMzQ0IDAtMi4wNTEuNjU2LTIuMDUxIDJ2MzJjMCAxLjM0NC43MDcgMS45NjUgMi4wNTEgMS45NjVsNTMuOTQ5LjAzNWMxLjM0NCAwIDItLjY1NiAyLTJ2LTMyYzAtMS4zNDQtMS4zMi0yLTIuNjY0LTJ6bS0xLjMzNiAzMmgtNTB2LTI4aDUwdjI4eiIvPjxyZWN0IHg9IjYiIHk9IjEyIiBmaWxsPSIjNDI0MjQyIiB3aWR0aD0iNCIgaGVpZ2h0PSI0Ii8+PHJlY3QgeD0iMTIiIHk9IjEyIiBmaWxsPSIjNDI0MjQyIiB3aWR0aD0iNCIgaGVpZ2h0PSI0Ii8+PHJlY3QgeD0iMTgiIHk9IjEyIiBmaWxsPSIjNDI0MjQyIiB3aWR0aD0iNCIgaGVpZ2h0PSI0Ii8+PHJlY3QgeD0iMjQiIHk9IjEyIiBmaWxsPSIjNDI0MjQyIiB3aWR0aD0iNCIgaGVpZ2h0PSI0Ii8+PHJlY3QgeD0iMzAiIHk9IjEyIiBmaWxsPSIjNDI0MjQyIiB3aWR0aD0iNCIgaGVpZ2h0PSI0Ii8+PHJlY3QgeD0iMzYiIHk9IjEyIiBmaWxsPSIjNDI0MjQyIiB3aWR0aD0iNCIgaGVpZ2h0PSI0Ii8+PHJlY3QgeD0iNDIiIHk9IjEyIiBmaWxsPSIjNDI0MjQyIiB3aWR0aD0iNCIgaGVpZ2h0PSI0Ii8+PHJlY3QgeD0iNDgiIHk9IjEyIiBmaWxsPSIjNDI0MjQyIiB3aWR0aD0iNCIgaGVpZ2h0PSI0Ii8+PHJlY3QgeD0iNiIgeT0iNiIgZmlsbD0iIzQyNDI0MiIgd2lkdGg9IjQiIGhlaWdodD0iNCIvPjxyZWN0IHg9IjEyIiB5PSI2IiBmaWxsPSIjNDI0MjQyIiB3aWR0aD0iNCIgaGVpZ2h0PSI0Ii8+PHJlY3QgeD0iMTgiIHk9IjYiIGZpbGw9IiM0MjQyNDIiIHdpZHRoPSI0IiBoZWlnaHQ9IjQiLz48cmVjdCB4PSIyNCIgeT0iNiIgZmlsbD0iIzQyNDI0MiIgd2lkdGg9IjQiIGhlaWdodD0iNCIvPjxyZWN0IHg9IjMwIiB5PSI2IiBmaWxsPSIjNDI0MjQyIiB3aWR0aD0iNCIgaGVpZ2h0PSI0Ii8+PHJlY3QgeD0iMzYiIHk9IjYiIGZpbGw9IiM0MjQyNDIiIHdpZHRoPSI0IiBoZWlnaHQ9IjQiLz48cmVjdCB4PSI0MiIgeT0iNiIgZmlsbD0iIzQyNDI0MiIgd2lkdGg9IjQiIGhlaWdodD0iNCIvPjxyZWN0IHg9IjQ4IiB5PSI2IiBmaWxsPSIjNDI0MjQyIiB3aWR0aD0iNCIgaGVpZ2h0PSI0Ii8+PHJlY3QgeD0iNiIgeT0iMTgiIGZpbGw9IiM0MjQyNDIiIHdpZHRoPSI0IiBoZWlnaHQ9IjQiLz48cmVjdCB4PSIxMiIgeT0iMTgiIGZpbGw9IiM0MjQyNDIiIHdpZHRoPSI0IiBoZWlnaHQ9IjQiLz48cmVjdCB4PSIxOCIgeT0iMTgiIGZpbGw9IiM0MjQyNDIiIHdpZHRoPSI0IiBoZWlnaHQ9IjQiLz48cmVjdCB4PSIyNCIgeT0iMTgiIGZpbGw9IiM0MjQyNDIiIHdpZHRoPSI0IiBoZWlnaHQ9IjQiLz48cmVjdCB4PSIzMCIgeT0iMTgiIGZpbGw9IiM0MjQyNDIiIHdpZHRoPSI0IiBoZWlnaHQ9IjQiLz48cmVjdCB4PSIzNiIgeT0iMTgiIGZpbGw9IiM0MjQyNDIiIHdpZHRoPSI0IiBoZWlnaHQ9IjQiLz48cmVjdCB4PSI0MiIgeT0iMTgiIGZpbGw9IiM0MjQyNDIiIHdpZHRoPSI0IiBoZWlnaHQ9IjQiLz48cmVjdCB4PSI0OCIgeT0iMTgiIGZpbGw9IiM0MjQyNDIiIHdpZHRoPSI0IiBoZWlnaHQ9IjQiLz48cmVjdCB4PSI2IiB5PSIyNCIgZmlsbD0iIzQyNDI0MiIgd2lkdGg9IjYiIGhlaWdodD0iNiIvPjxyZWN0IHg9IjQ2IiB5PSIyNCIgZmlsbD0iIzQyNDI0MiIgd2lkdGg9IjYiIGhlaWdodD0iNiIvPjxyZWN0IHg9IjIwIiB5PSIyNCIgZmlsbD0iIzQyNDI0MiIgd2lkdGg9IjE4IiBoZWlnaHQ9IjYiLz48cmVjdCB4PSIxNCIgeT0iMjQiIGZpbGw9IiM0MjQyNDIiIHdpZHRoPSI0IiBoZWlnaHQ9IjYiLz48cmVjdCB4PSI0MCIgeT0iMjQiIGZpbGw9IiM0MjQyNDIiIHdpZHRoPSI0IiBoZWlnaHQ9IjYiLz48L3N2Zz4=) 50% no-repeat;border:4px solid #f6f6f6;border-radius:4px}.monaco-editor.vs-dark .iPadShowKeyboard{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OCIgaGVpZ2h0PSIzNiI+PHBhdGggZmlsbD0iIzJCMjgyRSIgZD0iTTU0IDMydi0yOGgtNTB2MjhoNTB6bS0xNi0yaC0xOHYtNmgxOHY2em02IDBoLTR2LTZoNHY2em04IDBoLTZ2LTZoNnY2em0tNC0yNGg0djRoLTR2LTR6bTAgNmg0djRoLTR2LTR6bTAgNmg0djRoLTR2LTR6bS02LTEyaDR2NGgtNHYtNHptMCA2aDR2NGgtNHYtNHptMCA2aDR2NGgtNHYtNHptLTYtMTJoNHY0aC00di00em0wIDZoNHY0aC00di00em0wIDZoNHY0aC00di00em0tNi0xMmg0djRoLTR2LTR6bTAgNmg0djRoLTR2LTR6bTAgNmg0djRoLTR2LTR6bS02LTEyaDR2NGgtNHYtNHptMCA2aDR2NGgtNHYtNHptMCA2aDR2NGgtNHYtNHptLTYtMTJoNHY0aC00di00em0wIDZoNHY0aC00di00em0wIDZoNHY0aC00di00em0wIDEyaC00di02aDR2NnptLTYtMjRoNHY0aC00di00em0wIDZoNHY0aC00di00em0wIDZoNHY0aC00di00em0tNi0xMmg0djRoLTR2LTR6bTAgNmg0djRoLTR2LTR6bTAgNmg0djRoLTR2LTR6bTAgNmg2djZoLTZ2LTZ6Ii8+PHBhdGggZmlsbD0iI0M1QzVDNSIgZD0iTTU1LjMzNiAwaC01My4yODVjLTEuMzQ0IDAtMi4wNTEuNjU2LTIuMDUxIDJ2MzJjMCAxLjM0NC43MDcgMS45NjUgMi4wNTEgMS45NjVsNTMuOTQ5LjAzNWMxLjM0NCAwIDItLjY1NiAyLTJ2LTMyYzAtMS4zNDQtMS4zMi0yLTIuNjY0LTJ6bS0xLjMzNiAzMmgtNTB2LTI4aDUwdjI4eiIvPjxyZWN0IHg9IjYiIHk9IjEyIiBmaWxsPSIjQzVDNUM1IiB3aWR0aD0iNCIgaGVpZ2h0PSI0Ii8+PHJlY3QgeD0iMTIiIHk9IjEyIiBmaWxsPSIjQzVDNUM1IiB3aWR0aD0iNCIgaGVpZ2h0PSI0Ii8+PHJlY3QgeD0iMTgiIHk9IjEyIiBmaWxsPSIjQzVDNUM1IiB3aWR0aD0iNCIgaGVpZ2h0PSI0Ii8+PHJlY3QgeD0iMjQiIHk9IjEyIiBmaWxsPSIjQzVDNUM1IiB3aWR0aD0iNCIgaGVpZ2h0PSI0Ii8+PHJlY3QgeD0iMzAiIHk9IjEyIiBmaWxsPSIjQzVDNUM1IiB3aWR0aD0iNCIgaGVpZ2h0PSI0Ii8+PHJlY3QgeD0iMzYiIHk9IjEyIiBmaWxsPSIjQzVDNUM1IiB3aWR0aD0iNCIgaGVpZ2h0PSI0Ii8+PHJlY3QgeD0iNDIiIHk9IjEyIiBmaWxsPSIjQzVDNUM1IiB3aWR0aD0iNCIgaGVpZ2h0PSI0Ii8+PHJlY3QgeD0iNDgiIHk9IjEyIiBmaWxsPSIjQzVDNUM1IiB3aWR0aD0iNCIgaGVpZ2h0PSI0Ii8+PHJlY3QgeD0iNiIgeT0iNiIgZmlsbD0iI0M1QzVDNSIgd2lkdGg9IjQiIGhlaWdodD0iNCIvPjxyZWN0IHg9IjEyIiB5PSI2IiBmaWxsPSIjQzVDNUM1IiB3aWR0aD0iNCIgaGVpZ2h0PSI0Ii8+PHJlY3QgeD0iMTgiIHk9IjYiIGZpbGw9IiNDNUM1QzUiIHdpZHRoPSI0IiBoZWlnaHQ9IjQiLz48cmVjdCB4PSIyNCIgeT0iNiIgZmlsbD0iI0M1QzVDNSIgd2lkdGg9IjQiIGhlaWdodD0iNCIvPjxyZWN0IHg9IjMwIiB5PSI2IiBmaWxsPSIjQzVDNUM1IiB3aWR0aD0iNCIgaGVpZ2h0PSI0Ii8+PHJlY3QgeD0iMzYiIHk9IjYiIGZpbGw9IiNDNUM1QzUiIHdpZHRoPSI0IiBoZWlnaHQ9IjQiLz48cmVjdCB4PSI0MiIgeT0iNiIgZmlsbD0iI0M1QzVDNSIgd2lkdGg9IjQiIGhlaWdodD0iNCIvPjxyZWN0IHg9IjQ4IiB5PSI2IiBmaWxsPSIjQzVDNUM1IiB3aWR0aD0iNCIgaGVpZ2h0PSI0Ii8+PHJlY3QgeD0iNiIgeT0iMTgiIGZpbGw9IiNDNUM1QzUiIHdpZHRoPSI0IiBoZWlnaHQ9IjQiLz48cmVjdCB4PSIxMiIgeT0iMTgiIGZpbGw9IiNDNUM1QzUiIHdpZHRoPSI0IiBoZWlnaHQ9IjQiLz48cmVjdCB4PSIxOCIgeT0iMTgiIGZpbGw9IiNDNUM1QzUiIHdpZHRoPSI0IiBoZWlnaHQ9IjQiLz48cmVjdCB4PSIyNCIgeT0iMTgiIGZpbGw9IiNDNUM1QzUiIHdpZHRoPSI0IiBoZWlnaHQ9IjQiLz48cmVjdCB4PSIzMCIgeT0iMTgiIGZpbGw9IiNDNUM1QzUiIHdpZHRoPSI0IiBoZWlnaHQ9IjQiLz48cmVjdCB4PSIzNiIgeT0iMTgiIGZpbGw9IiNDNUM1QzUiIHdpZHRoPSI0IiBoZWlnaHQ9IjQiLz48cmVjdCB4PSI0MiIgeT0iMTgiIGZpbGw9IiNDNUM1QzUiIHdpZHRoPSI0IiBoZWlnaHQ9IjQiLz48cmVjdCB4PSI0OCIgeT0iMTgiIGZpbGw9IiNDNUM1QzUiIHdpZHRoPSI0IiBoZWlnaHQ9IjQiLz48cmVjdCB4PSI2IiB5PSIyNCIgZmlsbD0iI0M1QzVDNSIgd2lkdGg9IjYiIGhlaWdodD0iNiIvPjxyZWN0IHg9IjQ2IiB5PSIyNCIgZmlsbD0iI0M1QzVDNSIgd2lkdGg9IjYiIGhlaWdodD0iNiIvPjxyZWN0IHg9IjIwIiB5PSIyNCIgZmlsbD0iI0M1QzVDNSIgd2lkdGg9IjE4IiBoZWlnaHQ9IjYiLz48cmVjdCB4PSIxNCIgeT0iMjQiIGZpbGw9IiNDNUM1QzUiIHdpZHRoPSI0IiBoZWlnaHQ9IjYiLz48cmVjdCB4PSI0MCIgeT0iMjQiIGZpbGw9IiNDNUM1QzUiIHdpZHRoPSI0IiBoZWlnaHQ9IjYiLz48L3N2Zz4=) 50% no-repeat;border:4px solid #252526}.monaco-editor .tokens-inspect-widget{z-index:5;-webkit-user-select:text;-ms-user-select:text;-moz-user-select:text;-o-user-select:text;user-select:text;padding:10px}.tokens-inspect-separator{height:1px;border:0}.monaco-editor .tokens-inspect-widget .tm-token{font-family:monospace}.monaco-editor .tokens-inspect-widget .tm-token-length{font-weight:400;font-size:60%;float:right}.monaco-editor .tokens-inspect-widget .tm-metadata-table{width:100%}.monaco-editor .tokens-inspect-widget .tm-metadata-value{font-family:monospace;text-align:right}.monaco-editor .tokens-inspect-widget .tm-token-type{font-family:monospace}.monaco-quick-open-widget .monaco-list .monaco-list-row .monaco-highlighted-label .highlight,.monaco-quick-open-widget .monaco-tree .monaco-tree-row .monaco-highlighted-label .highlight{color:#0066bf}.vs-dark .monaco-quick-open-widget .monaco-list .monaco-list-row .monaco-highlighted-label .highlight,.vs-dark .monaco-quick-open-widget .monaco-tree .monaco-tree-row .monaco-highlighted-label .highlight{color:#0097fb}.hc-black .monaco-quick-open-widget .monaco-list .monaco-list-row .monaco-highlighted-label .highlight,.hc-black .monaco-quick-open-widget .monaco-tree .monaco-tree-row .monaco-highlighted-label .highlight{color:#f38518}.monaco-quick-open-widget{font-size:13px}.monaco-quick-open-widget .quick-open-tree .quick-open-entry .quick-open-entry-icon,.vs-dark .monaco-quick-open-widget .quick-open-tree .quick-open-entry .quick-open-entry-icon{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iNDAiPjxwYXRoIGQ9Ik0yODguNDgzIDMzYy0uNzcyIDAtMS40OTctLjEyMy0yLjE1My0uMzY1LS42NzgtLjI1My0xLjI3LS42MTctMS43Ni0xLjA4NC0uNS0uNDc1LS44OTItMS4wNDktMS4xNjMtMS43MDQtLjI3LS42NDQtLjQwNy0xLjM3MS0uNDA3LTIuMTU4IDAtLjUxNy4wNjEtMS4wMTguMTc4LTEuNDkuMTE2LS40Ny4yOS0uOTI1LjUxNi0xLjM0OC4yMjUtLjQyMi41MDgtLjgxNS44NDQtMS4xNjcuMzM0LS4zNTIuNzE3LS42NTYgMS4xMzktLjkwNS40MTYtLjI0Ni44ODEtLjQ0IDEuMzgtLjU3Ni40OTMtLjEzNCAxLjAyNi0uMjAyIDEuNTg3LS4yMDIuNzA1IDAgMS4zODIuMTA5IDIuMDEzLjMyNC42NDIuMjE3IDEuMjE4LjUzOCAxLjcwOC45NTUuNTAxLjQyNS45MDMuOTQ4IDEuMTkzIDEuNTU2LjI5NC42MjMuNDQyIDEuMzE2LjQ0MiAyLjA2NCAwIC42MTktLjA5IDEuMTg1LS4yNjggMS42NzktLjE3OC40OTItLjQyLjkyLS43MjEgMS4yNzUtLjMzMS4zNzctLjY5OS42NTgtMS4xMDQuODQ3bC0uMDQ4LjAyMnYxLjUzbC0uNTg3LjI2NmMtLjEyOC4wNTktLjI4OC4xMTctLjQ3NC4xNzktLjE5My4wNjItLjQwNC4xMTQtLjY0NS4xNTktLjIyOS4wNC0uNDc3LjA3Ni0uNzUzLjEwMy0uMjcuMDI3LS41NzguMDQtLjkxNy4wNHoiIGZpbGw9IiMyRDJEMkQiLz48cGF0aCBkPSJNMjkxLjcxNiAyNC4wNDFjLS4zOTYtLjMzNi0uODU2LS41OTMtMS4zODQtLjc3MS0uNTI3LS4xOC0xLjA5LS4yNzEtMS42ODktLjI3MS0uNDczIDAtLjkxMi4wNTUtMS4zMjQuMTY3LS40MTQuMTEyLS43OTEuMjctMS4xMzUuNDczLS4zNDIuMjAyLS42NS40NDYtLjkyMi43MzMtLjI3My4yODYtLjUwMi42MDItLjY4Ni45NDktLjE4Ni4zNDctLjMzLjcyMi0uNDI4IDEuMTE5LS4xLjM5OS0uMTQ4LjgxNC0uMTQ4IDEuMjQ3IDAgLjY1Mi4xMDkgMS4yNDcuMzMyIDEuNzc2LjIxOS41MzEuNTMuOTg0LjkyOCAxLjM2MS4zOTYuMzc4Ljg3MS42NjcgMS40MTYuODcuNTQ4LjIwMiAxLjE1Mi4zMDQgMS44MDguMzA0LjMwMiAwIC41NzctLjAxMS44MjMtLjAzNS4yNDYtLjAyMy40NjgtLjA1Ni42NjQtLjA5MS4xOTUtLjAzNi4zNjYtLjA3OC41MTQtLjEyNWwuMzc1LS4xNHYtLjg1NGwtLjQ2My4xODRjLS4xNi4wNTYtLjMzNi4xMDQtLjUyMS4xNDMtLjE4OC4wMzctLjM4Ny4wNjktLjYwNC4wODktLjIxMy4wMjQtLjQ0OC4wMzQtLjcuMDM0LS41NjIgMC0xLjA2NC0uMDg4LTEuNTA5LS4yNjQtLjQ0Mi0uMTc2LS44MTYtLjQyMS0xLjEyNS0uNzMxLS4zMDktLjMxNC0uNTQ1LS42ODctLjcwOC0xLjEyNC0uMTYxLS40MzUtLjI0My0uOTEzLS4yNDMtMS40MzIgMC0uNTQ1LjA5LTEuMDUzLjI3My0xLjUyMi4xODItLjQ3MS40MzUtLjg3OS43NTgtMS4yMjUuMzI0LS4zNDUuNzA4LS42MTcgMS4xNTUtLjgxNS40NDYtLjE5Ni45MzQtLjI5NCAxLjQ1Ny0uMjk0LjQxOSAwIC43OTguMDQ0IDEuMTIyLjEzNi4zMjkuMDkxLjYyLjIxNS44NzEuMzY5LjI1NC4xNTguNDY1LjMzOS42NDMuNTQ3LjE3OS4yMDkuMzI0LjQzMi40MzguNjY3LjExMy4yMzcuMTkzLjQ4LjI0Ni43MzEuMDUxLjI1NC4wNzYuNS4wNzYuNzQxIDAgLjM0NC0uMDMzLjY1My0uMTAyLjkyNi0uMDY4LjI3NC0uMTU4LjUwMy0uMjY5LjY5NC0uMTEuMTg5LS4yMzkuMzM1LS4zODYuNDM0cy0uMjk1LjE0OC0uNDUzLjE0OGwtLjIxNS0uMDQ1Yy0uMDY2LS4wMjktLjExOS0uMDgtLjE2Ni0uMTU2LS4wNDYtLjA3NS0uMDgyLS4xNzctLjEwNy0uMzA2LS4wMjUtLjEyNi0uMDM5LS4yOTItLjAzOS0uNDkybC4wMTgtLjMyNS4wNDEtLjUzLjA1NS0uNjQ0LjA1OC0uNjQ3LjA0OC0uNTQ2LjAyNy0uMzQ0aC0uOTE5bC0uMDU0LjZoLS4wMjFjLS4wMjUtLjEwMy0uMDctLjE5NS0uMTM2LS4yODEtLjA2My0uMDgzLS4xNDEtLjE1NS0uMjMzLS4yMTYtLjA5MS0uMDYxLS4xOTMtLjEwNi0uMzA3LS4xNDEtLjExNS0uMDMzLS4yMzgtLjA0OC0uMzY5LS4wNDgtLjMzNyAwLS42NDYuMDctLjkyNC4yMTYtLjI4MS4xNDQtLjUxOC4zNDQtLjcyMS41OTktLjIwMS4yNTQtLjM1NS41NTYtLjQ2NS45MDUtLjExNS4zNS0uMTcuNzI2LS4xNyAxLjEzNCAwIC4zNDQuMDQ1LjY0NS4xMzUuOTAxLjA4OC4yNi4yMTEuNDczLjM1OS42NDYuMTUzLjE3MS4zMjkuMy41MzQuMzgyLjIuMDg2LjQxNS4xMjkuNjQxLjEyOS4xNzYgMCAuMzQyLS4wMjcuNDk5LS4wODEuMTU0LS4wNTIuMzAyLS4xMy40MzItLjIzMi4xMzQtLjEwNC4yNDgtLjIzLjM0OC0uMzguMTAyLS4xNDkuMTgyLS4zMjMuMjM2LS41MmguMDI3YzAgLjM3Ni4xMDEuNjc0LjMwNy44OTMuMjA3LjIyLjUwMi4zMy44ODkuMzMuMjkyIDAgLjU4LS4wNjQuODYzLS4xOTguMjgzLS4xMzIuNTM2LS4zMjguNzYyLS41ODYuMjIzLS4yNjIuNDA0LS41ODMuNTQzLS45NjYuMTM4LS4zODQuMjA4LS44My4yMDgtMS4zNCAwLS42MDUtLjExNy0xLjE1LS4zNDUtMS42MzQtLjIzMS0uNDgyLS41NDYtLjg5MS0uOTM5LTEuMjI1bS0yLjM2OCAzLjc3NGMtLjA1Ni4yNzctLjEzNi41MTctLjI0Ni43MTktLjEwOS4yMDMtLjI0Ni4zNjMtLjQwNy40ODEtLjE2My4xMTUtLjM1NC4xNzYtLjU3Mi4xNzYtLjEyIDAtLjIzNi0uMDI1LS4zNDQtLjA3OC0uMTA4LS4wNTItLjIwNi0uMTMtLjI4OS0uMjMyLS4wODEtLjEwMy0uMTQ4LS4yMzQtLjE5OC0uMzktLjA0Ni0uMTU2LS4wNy0uMzM3LS4wNy0uNTQ3IDAtLjIzNy4wMjctLjQ4MS4wOC0uNzI5LjA1Ni0uMjQ3LjEzNy0uNDczLjI1LS42NzcuMTA5LS4yLjI1LS4zNjMuNDE2LS40OTIuMTY1LS4xMjcuMzYxLS4xOTEuNTgyLS4xOTEuMTIzIDAgLjIzNC4wMjEuMzQuMDYzLjEwNy4wNDIuMTk4LjEwNy4yNzkuMTk2LjA4LjA4Ny4xNDUuMTk3LjE4OS4zMy4wNDMuMTM0LjA3LjI5NC4wNy40OCAwIC4zMTctLjAzMS42MTUtLjA4Ljg5MSIgZmlsbD0iI0M1QzVDNSIvPjxwYXRoIGQ9Ik0yODguNDgzIDEzYy0uNzcyIDAtMS40OTctLjEyMy0yLjE1My0uMzY1LS42NzgtLjI1My0xLjI3LS42MTctMS43Ni0xLjA4NC0uNS0uNDc1LS44OTItMS4wNDktMS4xNjMtMS43MDQtLjI2OS0uNjQ0LS40MDctMS4zNzEtLjQwNy0yLjE1OSAwLS41MTcuMDYxLTEuMDE4LjE3OC0xLjQ5LjExNi0uNDcuMjktLjkyNS41MTYtMS4zNDguMjI1LS40MjIuNTA4LS44MTUuODQ0LTEuMTY3LjMzNC0uMzUyLjcxNy0uNjU2IDEuMTM5LS45MDUuNDE2LS4yNDYuODgxLS40NCAxLjM4LS41NzYuNDkyLS4xMzQgMS4wMjUtLjIwMiAxLjU4Ni0uMjAyLjcwNSAwIDEuMzgyLjEwOSAyLjAxMy4zMjQuNjQyLjIxNyAxLjIxOC41MzggMS43MDguOTU1LjUwMS40MjUuOTAzLjk0OCAxLjE5MyAxLjU1Ni4yOTUuNjI0LjQ0MyAxLjMxNy40NDMgMi4wNjUgMCAuNjE5LS4wOSAxLjE4NS0uMjY4IDEuNjc5LS4xNzguNDkyLS40Mi45Mi0uNzIxIDEuMjc1LS4zMzEuMzc3LS42OTkuNjU4LTEuMTA0Ljg0N2wtLjA0OC4wMjJ2MS41M2wtLjU4Ny4yNjZjLS4xMjguMDU5LS4yODguMTE3LS40NzQuMTc5LS4xOTMuMDYyLS40MDQuMTE0LS42NDUuMTU5LS4yMjkuMDQtLjQ3Ny4wNzYtLjc1My4xMDMtLjI3LjAyNy0uNTc4LjA0LS45MTcuMDR6IiBmaWxsPSIjRjNGM0YzIi8+PHBhdGggZD0iTTI5MS43MTYgNC4wNDFjLS4zOTYtLjMzNi0uODU2LS41OTMtMS4zODQtLjc3MS0uNTI3LS4xNzktMS4wOS0uMjctMS42ODktLjI3LS40NzMgMC0uOTEyLjA1NS0xLjMyNC4xNjctLjQxNC4xMTItLjc5MS4yNy0xLjEzNS40NzMtLjM0Mi4yMDItLjY1LjQ0Ni0uOTIyLjczMy0uMjczLjI4Ni0uNTAyLjYwMi0uNjg2Ljk0OS0uMTg2LjM0Ny0uMzMuNzIyLS40MjggMS4xMTktLjA5OS40LS4xNDguODE1LS4xNDggMS4yNDcgMCAuNjUyLjEwOSAxLjI0Ny4zMzIgMS43NzYuMjE5LjUzMS41My45ODQuOTI4IDEuMzYxLjM5Ni4zNzguODcxLjY2NyAxLjQxNi44Ny41NDguMjAyIDEuMTUyLjMwNCAxLjgwOC4zMDQuMzAyIDAgLjU3Ny0uMDExLjgyMy0uMDM1LjI0Ni0uMDIzLjQ2OC0uMDU2LjY2NC0uMDkxLjE5NS0uMDM2LjM2Ni0uMDc4LjUxNC0uMTI1bC4zNzUtLjE0di0uODU0bC0uNDYzLjE4NGMtLjE2LjA1Ni0uMzM2LjEwNC0uNTIxLjE0My0uMTg4LjAzNy0uMzg3LjA2OS0uNjA0LjA4OS0uMjEzLjAyNC0uNDQ4LjAzNC0uNy4wMzQtLjU2MiAwLTEuMDY0LS4wODgtMS41MDktLjI2NC0uNDQyLS4xNzYtLjgxNi0uNDIxLTEuMTI1LS43MzEtLjMwOS0uMzE0LS41NDUtLjY4Ny0uNzA4LTEuMTI0LS4xNjEtLjQzNS0uMjQzLS45MTMtLjI0My0xLjQzMiAwLS41NDUuMDktMS4wNTMuMjczLTEuNTIyLjE4Mi0uNDcxLjQzNS0uODc5Ljc1OC0xLjIyNS4zMjQtLjM0NS43MDgtLjYxNyAxLjE1NS0uODE1LjQ0Ni0uMTk2LjkzNC0uMjk0IDEuNDU3LS4yOTQuNDE5IDAgLjc5OC4wNDQgMS4xMjIuMTM2LjMyOS4wOTEuNjIuMjE1Ljg3MS4zNjkuMjU0LjE1OC40NjUuMzM5LjY0My41NDcuMTc5LjIwOS4zMjQuNDMyLjQzOC42NjcuMTEzLjIzNy4xOTMuNDguMjQ2LjczMS4wNTEuMjU0LjA3Ni41LjA3Ni43NDEgMCAuMzQ0LS4wMzMuNjUzLS4xMDIuOTI2LS4wNjguMjc0LS4xNTguNTAzLS4yNjkuNjk0LS4xMS4xODktLjIzOS4zMzUtLjM4Ni40MzRzLS4yOTUuMTQ4LS40NTMuMTQ4bC0uMjE1LS4wNDVjLS4wNjYtLjAyOS0uMTE5LS4wOC0uMTY2LS4xNTYtLjA0Ni0uMDc1LS4wODItLjE3Ny0uMTA3LS4zMDYtLjAyNS0uMTI2LS4wMzktLjI5Mi0uMDM5LS40OTJsLjAxOC0uMzI1LjA0MS0uNTMuMDU1LS42NDQuMDU4LS42NDcuMDQ4LS41NDYuMDI3LS4zNDRoLS45MTlsLS4wNTQuNmgtLjAyMWMtLjAyNS0uMTAzLS4wNy0uMTk1LS4xMzYtLjI4MS0uMDYzLS4wODMtLjE0MS0uMTU1LS4yMzMtLjIxNi0uMDkxLS4wNjEtLjE5My0uMTA2LS4zMDctLjE0MS0uMTE1LS4wMzMtLjIzOC0uMDQ4LS4zNjktLjA0OC0uMzM3IDAtLjY0Ni4wNy0uOTI0LjIxNi0uMjgxLjE0NC0uNTE4LjM0NC0uNzIxLjU5OS0uMjAxLjI1NC0uMzU1LjU1Ni0uNDY1LjkwNS0uMTE1LjM1LS4xNy43MjYtLjE3IDEuMTM0IDAgLjM0NC4wNDUuNjQ1LjEzNS45MDEuMDg4LjI2LjIxMS40NzMuMzU5LjY0Ni4xNTMuMTcxLjMyOS4zLjUzNC4zODIuMi4wODYuNDE1LjEyOS42NDEuMTI5LjE3NiAwIC4zNDItLjAyNy40OTktLjA4MS4xNTQtLjA1Mi4zMDItLjEzLjQzMi0uMjMyLjEzNC0uMTA0LjI0OC0uMjMuMzQ4LS4zOC4xMDItLjE0OS4xODItLjMyMy4yMzYtLjUyaC4wMjdjMCAuMzc2LjEwMS42NzQuMzA3Ljg5My4yMDcuMjIuNTAyLjMzLjg4OS4zMy4yOTIgMCAuNTgtLjA2NC44NjMtLjE5OC4yODMtLjEzMi41MzYtLjMyOC43NjItLjU4Ni4yMjMtLjI2Mi40MDQtLjU4My41NDMtLjk2Ni4xMzgtLjM4NS4yMDgtLjgzMS4yMDgtMS4zNDEgMC0uNjA1LS4xMTctMS4xNS0uMzQ1LTEuNjM0LS4yMzEtLjQ4Mi0uNTQ2LS44OTEtLjkzOS0xLjIyNW0tMi4zNjggMy43NzRjLS4wNTYuMjc3LS4xMzYuNTE3LS4yNDYuNzE5LS4xMDkuMjAzLS4yNDYuMzYzLS40MDcuNDgxLS4xNjMuMTE1LS4zNTQuMTc2LS41NzIuMTc2LS4xMiAwLS4yMzYtLjAyNS0uMzQ0LS4wNzgtLjEwOC0uMDUyLS4yMDYtLjEzLS4yODktLjIzMi0uMDgxLS4xMDMtLjE0OC0uMjM0LS4xOTgtLjM5LS4wNDYtLjE1Ni0uMDctLjMzNy0uMDctLjU0NyAwLS4yMzcuMDI3LS40ODEuMDgtLjcyOS4wNTYtLjI0Ny4xMzctLjQ3My4yNS0uNjc3LjEwOS0uMi4yNS0uMzYzLjQxNi0uNDkyLjE2NS0uMTI3LjM2MS0uMTkxLjU4Mi0uMTkxLjEyMyAwIC4yMzQuMDIxLjM0LjA2My4xMDcuMDQyLjE5OC4xMDcuMjc5LjE5Ni4wOC4wODcuMTQ1LjE5Ny4xODkuMzMuMDQzLjEzNC4wNy4yOTQuMDcuNDggMCAuMzE3LS4wMzEuNjE1LS4wOC44OTEiIGZpbGw9IiM0MjQyNDIiLz48cGF0aCBkPSJNMjY0IDM3di0xNGg4LjYyNWwzLjM3NSAzLjU1NnYxMC40NDRoLTEyeiIgZmlsbD0iIzJEMkQyRCIvPjxwYXRoIGQ9Ik0yNzIgMjRoLTd2MTJoMTB2LTlsLTMtM3ptMiAxMWgtOHYtMTBoNXYzaDN2N3oiIGZpbGw9IiNDNUM1QzUiLz48cG9seWdvbiBwb2ludHM9IjI2NiwyNSAyNzEsMjUgMjcxLDI4IDI3NCwyOCAyNzQsMzUgMjY2LDM1IiBmaWxsPSIjMkQyRDJEIi8+PHBhdGggZD0iTTI2NCAxN3YtMTRoOC42MjVsMy4zNzUgMy41NTZ2MTAuNDQ0aC0xMnoiIGZpbGw9IiNGM0YzRjMiLz48cGF0aCBkPSJNMjcyIDRoLTd2MTJoMTB2LTlsLTMtM3ptMiAxMWgtOHYtMTBoNXYzaDN2N3oiIGZpbGw9IiM0MjQyNDIiLz48cG9seWdvbiBwb2ludHM9IjI2Niw1IDI3MSw1IDI3MSw4IDI3NCw4IDI3NCwxNSAyNjYsMTUiIGZpbGw9IiNGMEVGRjEiLz48cG9seWdvbiBwb2ludHM9IjI0NywzNCAyNDcsMzAgMjQ1LDMwIDI0NSwyNiAyNTUsMjYgMjU1LDM0IiBmaWxsPSIjMkQyRDJEIi8+PHBhdGggZD0iTTI1NCAyOWgtOHYtMmg4djJ6bTAgMWgtNnYxaDZ2LTF6bTAgMmgtNnYxaDZ2LTF6IiBmaWxsPSIjQzVDNUM1Ii8+PHBvbHlnb24gcG9pbnRzPSIyNDcsMTQgMjQ3LDEwIDI0NSwxMCAyNDUsNiAyNTUsNiAyNTUsMTQiIGZpbGw9IiNGM0YzRjMiLz48cGF0aCBkPSJNMjU0IDloLTh2LTJoOHYyem0wIDFoLTZ2MWg2di0xem0wIDJoLTZ2MWg2di0xeiIgZmlsbD0iIzQyNDI0MiIvPjxwYXRoIGQ9Ik0yMzAuNSAyMmMtNC4xNDMgMC03LjUgMy4zNTctNy41IDcuNXMzLjM1NyA3LjUgNy41IDcuNSA3LjUtMy4zNTcgNy41LTcuNS0zLjM1Ny03LjUtNy41LTcuNXptMCAxMWMtMS45MzMgMC0zLjUtMS41NjYtMy41LTMuNXMxLjU2Ny0zLjUgMy41LTMuNSAzLjUgMS41NjYgMy41IDMuNS0xLjU2NyAzLjUtMy41IDMuNXoiIGZpbGw9IiMyRDJEMkQiLz48cGF0aCBkPSJNMjI0LjAyNSAyOWMuMTA4LTEuNDE4LjY2OS0yLjcwOCAxLjU0Mi0zLjcyNmwxLjQzMSAxLjQzMWMtLjUxNi42NDYtLjg1MSAxLjQzLS45NDcgMi4yOTVoLTIuMDI2em0yLjk3MyAzLjI5NWMtLjUxNi0uNjQ2LS44NTEtMS40My0uOTQ3LTIuMjk1aC0yLjAyNWMuMTA4IDEuNDE4LjY2OSAyLjcwNyAxLjU0MiAzLjcyNmwxLjQzLTEuNDMxem00LjAwMi05LjI3djIuMDI1Yy44NjUuMDk3IDEuNjQ5LjQzMiAyLjI5NS45NDdsMS40MzEtMS40MzFjLTEuMDE4LS44NzItMi4zMDgtMS40MzItMy43MjYtMS41NDF6bS0zLjI5NSAyLjk3M2MuNjQ2LS41MTYgMS40My0uODUxIDIuMjk1LS45NDd2LTIuMDI1Yy0xLjQxOC4xMDgtMi43MDguNjY5LTMuNzI2IDEuNTQybDEuNDMxIDEuNDN6bTYuMjk3LjcwN2MuNTE2LjY0Ni44NTEgMS40My45NDcgMi4yOTVoMi4wMjVjLS4xMDgtMS40MTgtLjY2OS0yLjcwOC0xLjU0Mi0zLjcyNmwtMS40MyAxLjQzMXptLTQuMDAyIDcuMjQ0Yy0uODY1LS4wOTctMS42NDktLjQzMi0yLjI5NS0uOTQ3bC0xLjQzMSAxLjQzMWMxLjAxOC44NzMgMi4zMDcgMS40MzQgMy43MjYgMS41NDJ2LTIuMDI2em00Ljk0OS0zLjk0OWMtLjA5Ny44NjUtLjQzMiAxLjY0OC0uOTQ3IDIuMjk1bDEuNDMxIDEuNDMxYy44NzMtMS4wMTkgMS40MzQtMi4zMDggMS41NDItMy43MjZoLTIuMDI2em0tMS42NTQgMy4wMDJjLS42NDYuNTE2LTEuNDMuODUxLTIuMjk1Ljk0N3YyLjAyNWMxLjQxOS0uMTA4IDIuNzA4LS42NjkgMy43MjYtMS41NDJsLTEuNDMxLTEuNDN6IiBmaWxsPSIjQzVDNUM1Ii8+PHBhdGggZD0iTTIzMC41IDJjLTQuMTQzIDAtNy41IDMuMzU4LTcuNSA3LjUgMCA0LjE0MyAzLjM1NyA3LjUgNy41IDcuNXM3LjUtMy4zNTcgNy41LTcuNWMwLTQuMTQyLTMuMzU3LTcuNS03LjUtNy41em0wIDExYy0xLjkzMyAwLTMuNS0xLjU2Ni0zLjUtMy41IDAtMS45MzMgMS41NjctMy41IDMuNS0zLjVzMy41IDEuNTY3IDMuNSAzLjVjMCAxLjkzNC0xLjU2NyAzLjUtMy41IDMuNXoiIGZpbGw9IiNGM0YzRjMiLz48cGF0aCBkPSJNMjI0LjAyNSA5Yy4xMDgtMS40MTguNjY5LTIuNzA4IDEuNTQyLTMuNzI2bDEuNDMxIDEuNDMxYy0uNTE2LjY0Ni0uODUxIDEuNDMtLjk0NyAyLjI5NGgtMi4wMjZ6bTIuOTczIDMuMjk1Yy0uNTE2LS42NDYtLjg1MS0xLjQzLS45NDctMi4yOTVoLTIuMDI1Yy4xMDggMS40MTguNjY5IDIuNzA3IDEuNTQyIDMuNzI2bDEuNDMtMS40MzF6bTQuMDAyLTkuMjd2Mi4wMjVjLjg2NS4wOTcgMS42NDkuNDMyIDIuMjk1Ljk0OGwxLjQzMS0xLjQzMWMtMS4wMTgtLjg3My0yLjMwOC0xLjQzMy0zLjcyNi0xLjU0MnptLTMuMjk1IDIuOTc0Yy42NDYtLjUxNiAxLjQzLS44NTEgMi4yOTUtLjk0OHYtMi4wMjZjLTEuNDE4LjEwOC0yLjcwOC42NjktMy43MjYgMS41NDJsMS40MzEgMS40MzJ6bTYuMjk3LjcwN2MuNTE2LjY0Ni44NTEgMS40My45NDcgMi4yOTRoMi4wMjVjLS4xMDgtMS40MTgtLjY2OS0yLjcwOC0xLjU0Mi0zLjcyNmwtMS40MyAxLjQzMnptLTQuMDAyIDcuMjQzYy0uODY1LS4wOTctMS42NDktLjQzMi0yLjI5NS0uOTQ3bC0xLjQzMSAxLjQzMWMxLjAxOC44NzMgMi4zMDcgMS40MzQgMy43MjYgMS41NDJ2LTIuMDI2em00Ljk0OS0zLjk0OWMtLjA5Ny44NjUtLjQzMiAxLjY0OC0uOTQ3IDIuMjk1bDEuNDMxIDEuNDMxYy44NzMtMS4wMTkgMS40MzQtMi4zMDggMS41NDItMy43MjZoLTIuMDI2em0tMS42NTQgMy4wMDJjLS42NDYuNTE2LTEuNDMuODUxLTIuMjk1Ljk0N3YyLjAyNWMxLjQxOS0uMTA4IDIuNzA4LS42NjkgMy43MjYtMS41NDJsLTEuNDMxLTEuNDN6IiBmaWxsPSIjNDI0MjQyIi8+PHJlY3QgeD0iMjAyIiB5PSIyMyIgd2lkdGg9IjE2IiBoZWlnaHQ9IjE0IiBmaWxsPSIjMkQyRDJEIi8+PHBhdGggZD0iTTIwMyAyNHYxMmgxNHYtMTJoLTE0em0xMyAxMWgtMTJ2LTEwaDEydjEwem0tNi03di0xaC0xdjVoM3YtNGgtMnptMSAzaC0xdi0yaDF2MnptMy0ydjJoMXYxaC0ydi00aDJ2MWgtMXptLTYtMXY0aC0zdi0yaDF2MWgxdi0xaC0xdi0xaC0xdi0xaDN6IiBmaWxsPSIjQzVDNUM1Ii8+PHBhdGggZD0iTTIxMCAyOWgxdjJoLTF2LTJ6bS0zIDJ2LTFoLTF2MWgxem05LTZ2MTBoLTEydi0xMGgxMnptLTggM2gtM3YxaDF2MWgtMXYyaDN2LTR6bTQgMGgtMnYtMWgtMXY1aDN2LTR6bTMgMGgtMnY0aDJ2LTFoLTF2LTJoMXYtMXoiIGZpbGw9IiMyRDJEMkQiLz48cmVjdCB4PSIyMDIiIHk9IjMiIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNCIgZmlsbD0iI0YzRjNGMyIvPjxwYXRoIGQ9Ik0yMDMgNHYxMmgxNHYtMTJoLTE0em0xMyAxMWgtMTJ2LTEwaDEydjEwem0tNi03di0xaC0xdjVoM3YtNGgtMnptMSAzaC0xdi0yaDF2MnptMy0ydjJoMXYxaC0ydi00aDJ2MWgtMXptLTYtMXY0aC0zdi0yaDF2MWgxdi0xaC0xdi0xaC0xdi0xaDN6IiBmaWxsPSIjNDI0MjQyIi8+PHBhdGggZD0iTTIxMCA5aDF2MmgtMXYtMnptLTMgMnYtMWgtMXYxaDF6bTktNnYxMGgtMTJ2LTEwaDEyem0tOCAzaC0zdjFoMXYxaC0xdjJoM3YtNHptNCAwaC0ydi0xaC0xdjVoM3YtNHptMyAwaC0ydjRoMnYtMWgtMXYtMmgxdi0xeiIgZmlsbD0iI0YwRUZGMSIvPjxwYXRoIGQ9Ik0xOTYuNjUyIDMyLjVjLjgxMS0uNTM3IDEuMzQ4LTEuNDU3IDEuMzQ4LTIuNSAwLTEuNjU0LTEuMzQ2LTMtMy0zLS43NzEgMC0xLjQ2OC4zMDEtMiAuNzc5di01Ljc3OWgtMTF2MTJoMy43NjRsLTEuNDUyLjcyNyAxLjQ4MSAxLjQ4Yy4zMjIuMzIyLjgwMy41IDEuMzU0LjUuNDM2IDAgLjg5Ny0uMTExIDEuMzAxLS4zMTNsMy4xNDQtMS41NzJjLjEzNC4wNTMuMjcxLjA5OC40MTQuMTI3bC0uMDA1LjA1MWMwIDEuNjU0IDEuMzQ2IDMgMyAzczMtMS4zNDYgMy0zYy0uMDAxLTEuMDQzLS41MzgtMS45NjMtMS4zNDktMi41eiIgZmlsbD0iIzJEMkQyRCIvPjxwYXRoIGQ9Ik0xOTUgMzNjLS4yOTMgMC0uNTY5LjA2Ni0uODIuMThsLS4yNS0uMjVjLjA0Mi0uMTM3LjA3LS4yNzkuMDctLjQzcy0uMDI4LS4yOTMtLjA3LS40M2wuMjUtLjI1Yy4yNTEuMTEzLjUyNy4xOC44Mi4xOCAxLjEwNCAwIDItLjg5NiAyLTIgMC0xLjEwNS0uODk2LTItMi0ycy0yIC44OTUtMiAyYzAgLjI5My4wNjYuNTY4LjE4LjgybC0uMjUuMjVjLS4xMzctLjA0My0uMjc5LS4wNy0uNDMtLjA3LS4zMzcgMC0uNjQ1LjExNS0uODk1LjMwM2wtMi42MDctMS4zMDUtLjk5OS0uNWMtLjU1Mi0uMjc1LTEuMjIzLS4yNzUtMS40OTkuMDAybC0uNS41IDUgMi41LTUgMi41LjUuNWMuMjc2LjI3NS45NDcuMjc1IDEuNSAwbDEtLjUgMi42MDUtMS4zMDNjLjI1LjE4OC41NTguMzAzLjg5NS4zMDMuMTUgMCAuMjkzLS4wMjkuNDMtLjA3bC4yNS4yNWMtLjExNC4yNS0uMTguNTI3LS4xOC44MiAwIDEuMTA0Ljg5NiAyIDIgMnMyLS44OTYgMi0yYzAtMS4xMDUtLjg5Ni0yLTItMnptMC00Yy41NTMgMCAxIC40NDcgMSAxIDAgLjU1MS0uNDQ3IDEtMSAxcy0xLS40NDktMS0xYzAtLjU1My40NDctMSAxLTF6bS0yLjUgNGMtLjI3NiAwLS41LS4yMjUtLjUtLjUgMC0uMjc3LjIyNC0uNS41LS41cy41LjIyMy41LjVjMCAuMjc1LS4yMjQuNS0uNS41em0yLjUgM2MtLjU1MyAwLTEtLjQ0OS0xLTEgMC0uNTUzLjQ0Ny0xIDEtMXMxIC40NDcgMSAxYzAgLjU1MS0uNDQ3IDEtMSAxem0tMy0xM3Y3LjA1MWMtLjE0Mi4wMjktLjI3OS4wNy0uNDEzLjEyM2wtLjU4Ny0uMTc0di02aC03djdoLTF2LThoOXptLTggMTBoLTF2LTFoMXYxem0yLTFoLTF2MWgxdi0xem0yIDBoLTF2MWgxdi0xeiIgZmlsbD0iI0M1QzVDNSIvPjxwYXRoIGQ9Ik0xODUuNzkzIDI4Ljc5M2wtMS43OTMgMS4yMDd2LTZoN3Y1LjM4MWwtMi41NTQtLjc3N2MtLjgxNi0uNDA5LTEuOTktLjQ3NS0yLjY1My4xODl6bS0uNzkzIDIuMjA3aC43NjRsLS43NjQtLjM4M3YuMzgzem0xMSA0YzAgLjU1MS0uNDQ3IDEtMSAxcy0xLS40NDktMS0xYzAtLjU1My40NDctMSAxLTFzMSAuNDQ3IDEgMXptLTMuNS0zYy0uMjc2IDAtLjUuMjIzLS41LjUgMCAuMjc1LjIyNC41LjUuNXMuNS0uMjI1LjUtLjVjMC0uMjc3LS4yMjQtLjUtLjUtLjV6bTIuNS0zYy0uNTUzIDAtMSAuNDQ3LTEgMSAwIC41NTEuNDQ3IDEgMSAxczEtLjQ0OSAxLTFjMC0uNTUzLS40NDctMS0xLTF6IiBmaWxsPSIjMkQyRDJEIi8+PHBhdGggZD0iTTE5Ni42NTIgMTIuNWMuODExLS41MzggMS4zNDgtMS40NTggMS4zNDgtMi41IDAtMS42NTQtMS4zNDYtMy0zLTMtLjc3MSAwLTEuNDY4LjMwMS0yIC43Nzl2LTUuNzc5aC0xMXYxMmgzLjc2NGwtMS40NTIuNzI3IDEuNDgxIDEuNDhjLjMyMi4zMjIuODAzLjUgMS4zNTQuNS40MzYgMCAuODk3LS4xMTEgMS4zMDEtLjMxM2wzLjE0NC0xLjU3MmMuMTM0LjA1My4yNzEuMDk4LjQxNC4xMjdsLS4wMDUuMDUxYzAgMS42NTQgMS4zNDYgMyAzIDNzMy0xLjM0NiAzLTNjLS4wMDEtMS4wNDMtLjUzOC0xLjk2My0xLjM0OS0yLjV6IiBmaWxsPSIjRjNGM0YzIi8+PHBhdGggZD0iTTE5NSAxM2MtLjI5MyAwLS41NjkuMDY2LS44Mi4xOGwtLjI1LS4yNWMuMDQyLS4xMzcuMDctLjI3OS4wNy0uNDNzLS4wMjgtLjI5My0uMDctLjQzbC4yNS0uMjVjLjI1MS4xMTMuNTI3LjE4LjgyLjE4IDEuMTA0IDAgMi0uODk2IDItMiAwLTEuMTA1LS44OTYtMi0yLTJzLTIgLjg5NS0yIDJjMCAuMjkzLjA2Ni41NjguMTguODJsLS4yNS4yNWMtLjEzNy0uMDQzLS4yNzktLjA3LS40My0uMDctLjMzNyAwLS42NDUuMTE1LS44OTUuMzAzbC0yLjYwNy0xLjMwNC0uOTk5LS41Yy0uNTUyLS4yNzUtMS4yMjMtLjI3NS0xLjQ5OS4wMDJsLS41LjQ5OSA1IDIuNS01IDIuNS41LjVjLjI3Ni4yNzUuOTQ3LjI3NSAxLjUgMGwxLS41IDIuNjA1LTEuMzAzYy4yNS4xODguNTU4LjMwMy44OTUuMzAzLjE1IDAgLjI5My0uMDI5LjQzLS4wN2wuMjUuMjVjLS4xMTMuMjUtLjE4LjUyNy0uMTguODIgMCAxLjEwNC44OTYgMiAyIDJzMi0uODk2IDItMmMwLTEuMTA2LS44OTYtMi0yLTJ6bTAtNGMuNTUzIDAgMSAuNDQ3IDEgMSAwIC41NTEtLjQ0NyAxLTEgMXMtMS0uNDQ5LTEtMWMwLS41NTMuNDQ3LTEgMS0xem0tMi41IDRjLS4yNzYgMC0uNS0uMjI1LS41LS41IDAtLjI3Ny4yMjQtLjUuNS0uNXMuNS4yMjMuNS41YzAgLjI3NS0uMjI0LjUtLjUuNXptMi41IDNjLS41NTMgMC0xLS40NDktMS0xIDAtLjU1My40NDctMSAxLTFzMSAuNDQ3IDEgMWMwIC41NS0uNDQ3IDEtMSAxem0tMy0xM3Y3LjA1MWMtLjE0Mi4wMjktLjI3OS4wNy0uNDEzLjEyM2wtLjU4Ny0uMTc0di02aC03djdoLTF2LThoOXptLTggMTBoLTF2LTFoMXYxem0yLTFoLTF2MWgxdi0xem0yIDBoLTF2MWgxdi0xeiIgZmlsbD0iIzQyNDI0MiIvPjxwYXRoIGQ9Ik0xODUuNzkzIDguNzkzbC0xLjc5MyAxLjIwN3YtNmg3djUuMzgxbC0yLjU1NC0uNzc3Yy0uODE2LS40MDktMS45OS0uNDc1LTIuNjUzLjE4OXptLS43OTMgMi4yMDdoLjc2NGwtLjc2NC0uMzgzdi4zODN6bTExIDRjMCAuNTUxLS40NDcgMS0xIDFzLTEtLjQ0OS0xLTFjMC0uNTUzLjQ0Ny0xIDEtMXMxIC40NDcgMSAxem0tMy41LTNjLS4yNzYgMC0uNS4yMjMtLjUuNSAwIC4yNzUuMjI0LjUuNS41cy41LS4yMjUuNS0uNWMwLS4yNzgtLjIyNC0uNS0uNS0uNXptMi41LTNjLS41NTMgMC0xIC40NDctMSAxIDAgLjU1MS40NDcgMSAxIDFzMS0uNDQ5IDEtMWMwLS41NTMtLjQ0Ny0xLTEtMXoiIGZpbGw9IiNGMEVGRjEiLz48cGF0aCBkPSJNMTc4IDI3di0zaC03di0xaC05djE0aDEzdi0zaDN2LTNoLTF2LTNoLTZ2LTFoN3ptLTggN3YtM2gxdjNoLTF6IiBmaWxsPSIjMkQyRDJEIi8+PHBhdGggZD0iTTE3NyAyNmgtNXYtMWg1djF6bS0xIDNoLTJ2MWgydi0xem0tNCAwaC05djFoOXYtMXptMiA2aC0xMXYxaDExdi0xem0tNS0zaC02djFoNnYtMXptOCAwaC01djFoNXYtMXptLTctOHYzaC03di0zaDd6bS0xIDFoLTV2MWg1di0xeiIgZmlsbD0iI0M1QzVDNSIvPjxyZWN0IHg9IjE2NCIgeT0iMjUiIHdpZHRoPSI1IiBoZWlnaHQ9IjEiIGZpbGw9IiMyRDJEMkQiLz48cGF0aCBkPSJNMTc4IDd2LTNoLTd2LTFoLTl2MTRoMTN2LTNoM3YtM2gtMXYtM2gtNnYtMWg3em0tOCA3di0zaDF2M2gtMXoiIGZpbGw9IiNGM0YzRjMiLz48cGF0aCBkPSJNMTc3IDZoLTV2LTFoNXYxem0tMSAzaC0ydjFoMnYtMXptLTQgMGgtOXYxaDl2LTF6bTIgNmgtMTF2MWgxMXYtMXptLTUtM2gtNnYxaDZ2LTF6bTggMGgtNXYxaDV2LTF6bS03LTh2M2gtN3YtM2g3em0tMSAxaC01djFoNXYtMXoiIGZpbGw9IiM0MjQyNDIiLz48cmVjdCB4PSIxNjQiIHk9IjUiIHdpZHRoPSI1IiBoZWlnaHQ9IjEiIGZpbGw9IiNGMEVGRjEiLz48cG9seWdvbiBwb2ludHM9IjE1NC40MTQsMjQgMTQ5LjU4NiwyNCAxNDgsMjUuNTg2IDE0OCwyOCAxNDQsMjggMTQ0LDM1IDE1MiwzNSAxNTIsMzEgMTU0LjQxNCwzMSAxNTYsMjkuNDE0IDE1NiwyNS41ODYiIGZpbGw9IiMyRDJEMkQiLz48ZyBmaWxsPSIjNzVCRUZGIj48cGF0aCBkPSJNMTU0IDI1aC00bC0xIDF2Mmg1djFoLTJ2MWgybDEtMXYtM2wtMS0xem0wIDJoLTR2LTFoNHYxek0xNDUgMzRoNnYtNWgtNnY1em0xLTNoNHYxaC00di0xeiIvPjwvZz48ZyBmaWxsPSIjMkQyRDJEIj48cmVjdCB4PSIxNDYiIHk9IjMxIiB3aWR0aD0iNCIgaGVpZ2h0PSIxIi8+PHJlY3QgeD0iMTUwIiB5PSIyNiIgd2lkdGg9IjQiIGhlaWdodD0iMSIvPjxyZWN0IHg9IjE1MiIgeT0iMjgiIHdpZHRoPSIyIiBoZWlnaHQ9IjEiLz48L2c+PHBvbHlnb24gcG9pbnRzPSIxNTQuNDE0LDQgMTQ5LjU4Niw0IDE0OCw1LjU4NiAxNDgsOCAxNDQsOCAxNDQsMTUgMTUyLDE1IDE1MiwxMSAxNTQuNDE0LDExIDE1Niw5LjQxNCAxNTYsNS41ODYiIGZpbGw9IiNGM0YzRjMiLz48ZyBmaWxsPSIjMDA1MzlDIj48cGF0aCBkPSJNMTU0IDVoLTRsLTEgMXYyaDV2MWgtMnYxaDJsMS0xdi0zbC0xLTF6bTAgMmgtNHYtMWg0djF6TTE0NSAxNGg2di01aC02djV6bTEtM2g0djFoLTR2LTF6Ii8+PC9nPjxnIGZpbGw9IiNGMEVGRjEiPjxyZWN0IHg9IjE0NiIgeT0iMTEiIHdpZHRoPSI0IiBoZWlnaHQ9IjEiLz48cmVjdCB4PSIxNTAiIHk9IjYiIHdpZHRoPSI0IiBoZWlnaHQ9IjEiLz48cmVjdCB4PSIxNTIiIHk9IjgiIHdpZHRoPSIyIiBoZWlnaHQ9IjEiLz48L2c+PHBhdGggZD0iTTEzOCAyNGgtMTV2NGgtMXY4aDh2LTZoOHYtNnptLTExIDloLTJ2LTJoMnYyeiIgZmlsbD0iIzJEMkQyRCIvPjxwYXRoIGQ9Ik0xMzcgMjloLTd2LTFoLTZ2LTNoMXYyaDF2LTJoMXYyaDF2LTJoMXYyaDF2LTJoMXYyaDF2LTJoMXYyaDF2LTJoMXYyaDF2LTJoMXY0em0tMTIgMXYtMWgtMnY2aDJ2LTFoLTF2LTRoMXptMiA0djFoMnYtNmgtMnYxaDF2NGgtMXoiIGZpbGw9IiNDNUM1QzUiLz48cGF0aCBkPSJNMTI1IDI3di0yaDF2MmgtMXptMyAwdi0yaC0xdjJoMXptMiAwdi0yaC0xdjJoMXptMiAwdi0yaC0xdjJoMXptMiAwdi0yaC0xdjJoMXptMiAwdi0yaC0xdjJoMXoiIGZpbGw9IiMyRDJEMkQiLz48cGF0aCBkPSJNMTM4IDRoLTE1djRoLTF2OGg4di02aDh2LTZ6bS0xMSA5aC0ydi0yaDJ2MnoiIGZpbGw9IiNGM0YzRjMiLz48cGF0aCBkPSJNMTM3IDloLTd2LTFoLTZ2LTNoMXYyaDF2LTJoMXYyaDF2LTJoMXYyaDF2LTJoMXYyaDF2LTJoMXYyaDF2LTJoMXYyaDF2LTJoMXY0em0tMTIgMXYtMWgtMnY2aDJ2LTFoLTF2LTRoMXptMiA0djFoMnYtNmgtMnYxaDF2NGgtMXoiIGZpbGw9IiM0MjQyNDIiLz48cGF0aCBkPSJNMTI1IDd2LTJoMXYyaC0xem0zIDB2LTJoLTF2Mmgxem0yIDB2LTJoLTF2Mmgxem0yIDB2LTJoLTF2Mmgxem0yIDB2LTJoLTF2Mmgxem0yIDB2LTJoLTF2MmgxeiIgZmlsbD0iI0YwRUZGMSIvPjxwYXRoIGQ9Ik0xMTAuNDQ5IDIzYy0xLjYzNyAwLTMuMDc1Ljc5Ny0zLjk4NyAyLjAxMmwuMDAxLjAwMmMtLjYyOC44MzYtMS4wMTQgMS44NjMtMS4wMTQgMi45ODYgMCAuNDY5LjA2Ny45MzMuMiAxLjM4NWwtMi45MDcgMi45MDhjLS42ODcuNjg2LTEuMjUzIDIuMTYxIDAgMy40MTQuNjA5LjYwOSAxLjI0NC43MzYgMS42Ny43MzYuOTU4IDAgMS42MjEtLjYxMyAxLjc0NC0uNzM2bDIuOTA3LTIuOTA4Yy40NTMuMTMzLjkxNy4yMDEgMS4zODYuMjAxIDEuMTIzIDAgMi4xNDktLjM4NyAyLjk4NS0xLjAxNGwuMDAyLjAwMWMxLjIxNi0uOTEyIDIuMDEzLTIuMzUyIDIuMDEzLTMuOTg3IDAtMi43NjItMi4yMzgtNS01LTV6IiBmaWxsPSIjMkQyRDJEIi8+PHBhdGggZD0iTTExNC4wOSAyNi4zNTlsLTIuNjQxIDIuNjQxLTItMiAyLjY0MS0yLjY0MWMtLjUwMi0uMjI3LTEuMDU1LS4zNTktMS42NDEtLjM1OS0yLjIwOSAwLTQgMS43OTEtNCA0IDAgLjU4Ni4xMzMgMS4xMzkuMzU5IDEuNjRsLTMuMzU5IDMuMzZzLTEgMSAwIDJoMmwzLjM1OS0zLjM2Yy41MDIuMjI3IDEuMDU1LjM2IDEuNjQxLjM2IDIuMjA5IDAgNC0xLjc5MSA0LTQgMC0uNTg2LS4xMzMtMS4xMzktLjM1OS0xLjY0MXoiIGZpbGw9IiNDNUM1QzUiLz48cGF0aCBkPSJNMTEwLjQ0OSAzYy0xLjYzNyAwLTMuMDc1Ljc5Ny0zLjk4NyAyLjAxMmwuMDAxLjAwMmMtLjYyOC44MzYtMS4wMTQgMS44NjMtMS4wMTQgMi45ODYgMCAuNDY5LjA2Ny45MzMuMiAxLjM4NWwtMi45MDcgMi45MDhjLS42ODcuNjg2LTEuMjUzIDIuMTYxIDAgMy40MTQuNjA5LjYwOSAxLjI0NC43MzYgMS42Ny43MzYuOTU4IDAgMS42MjEtLjYxMyAxLjc0NC0uNzM2bDIuOTA3LTIuOTA4Yy40NTMuMTMzLjkxNy4yMDEgMS4zODYuMjAxIDEuMTIzIDAgMi4xNDktLjM4NyAyLjk4NS0xLjAxNGwuMDAyLjAwMWMxLjIxNi0uOTEyIDIuMDEzLTIuMzUyIDIuMDEzLTMuOTg3IDAtMi43NjItMi4yMzgtNS01LTV6IiBmaWxsPSIjRjNGM0YzIi8+PHBhdGggZD0iTTExNC4wOSA2LjM1OWwtMi42NDEgMi42NDEtMi0yIDIuNjQxLTIuNjQxYy0uNTAyLS4yMjYtMS4wNTUtLjM1OS0xLjY0MS0uMzU5LTIuMjA5IDAtNCAxLjc5MS00IDQgMCAuNTg2LjEzMyAxLjEzOS4zNTkgMS42NGwtMy4zNTkgMy4zNnMtMSAxIDAgMmgybDMuMzU5LTMuMzZjLjUwMi4yMjcgMS4wNTUuMzYgMS42NDEuMzYgMi4yMDkgMCA0LTEuNzkxIDQtNCAwLS41ODYtLjEzMy0xLjEzOS0uMzU5LTEuNjQxeiIgZmlsbD0iIzQyNDI0MiIvPjxwYXRoIGQ9Ik04OSAzM2gxdi0xYzAtLjUzNy43NDEtMS42MTMgMS0yLS4yNTktLjM4OS0xLTEuNDY3LTEtMnYtMWgtMXYtM2gxYzEuOTY5LjAyMSAzIDEuMjc3IDMgM3YxbDEgMXYybC0xIDF2MWMwIDEuNzA5LTEuMDMxIDIuOTc5LTMgM2gtMXYtM3ptLTIgMGgtMXYtMWMwLS41MzctLjc0MS0xLjYxMy0xLTIgLjI1OS0uMzg5IDEtMS40NjcgMS0ydi0xaDF2LTNoLTFjLTEuOTY5LjAyMS0zIDEuMjc3LTMgM3YxbC0xIDF2MmwxIDF2MWMwIDEuNzA5IDEuMzE3IDIuOTc5IDMuMjg2IDNoLjcxNHYtM3oiIGZpbGw9IiMyRDJEMkQiLz48cGF0aCBkPSJNOTEgMzN2LTFjMC0uODM0LjQ5Ni0xLjczOCAxLTItLjUwNC0uMjctMS0xLjE2OC0xLTJ2LTFjMC0uODQtLjU4NC0xLTEtMXYtMWMyLjA4MyAwIDIgMS4xNjYgMiAydjFjMCAuOTY5LjcwMy45OCAxIDF2MmMtLjMyMi4wMi0xIC4wNTMtMSAxdjFjMCAuODM0LjA4MyAyLTIgMnYtMWMuODMzIDAgMS0xIDEtMXptLTYgMHYtMWMwLS44MzQtLjQ5Ni0xLjczOC0xLTIgLjUwNC0uMjcgMS0xLjE2OCAxLTJ2LTFjMC0uODQuNTg0LTEgMS0xdi0xYy0yLjA4MyAwLTIgMS4xNjYtMiAydjFjMCAuOTY5LS43MDMuOTgtMSAxdjJjLjMyMi4wMiAxIC4wNTMgMSAxdjFjMCAuODM0LS4wODMgMiAyIDJ2LTFjLS44MzMgMC0xLTEtMS0xeiIgZmlsbD0iI0M1QzVDNSIvPjxwYXRoIGQ9Ik04OSAxM2gxdi0xYzAtLjUzNy43NDEtMS42MTMgMS0yLS4yNTktLjM4OS0xLTEuNDY3LTEtMnYtMWgtMXYtM2gxYzEuOTY5LjAyMSAzIDEuMjc3IDMgM3YxbDEgMXYybC0xIDF2MWMwIDEuNzA5LTEuMDMxIDIuOTc5LTMgM2gtMXYtM3ptLTIgMGgtMXYtMWMwLS41MzctLjc0MS0xLjYxMy0xLTIgLjI1OS0uMzg5IDEtMS40NjcgMS0ydi0xaDF2LTNoLTFjLTEuOTY5LjAyMS0zIDEuMjc3LTMgM3YxbC0xIDF2MmwxIDF2MWMwIDEuNzA5IDEuMzE3IDIuOTc5IDMuMjg2IDNoLjcxNHYtM3oiIGZpbGw9IiNGM0YzRjMiLz48cGF0aCBkPSJNOTEgMTN2LTFjMC0uODM0LjQ5Ni0xLjczOCAxLTItLjUwNC0uMjctMS0xLjE2OC0xLTJ2LTFjMC0uODQtLjU4NC0xLTEtMXYtMWMyLjA4MyAwIDIgMS4xNjYgMiAydjFjMCAuOTY5LjcwMy45OCAxIDF2MmMtLjMyMi4wMi0xIC4wNTMtMSAxdjFjMCAuODM0LjA4MyAyLTIgMnYtMWMuODMzIDAgMS0xIDEtMXptLTYgMHYtMWMwLS44MzQtLjQ5Ni0xLjczOC0xLTIgLjUwNC0uMjcgMS0xLjE2OCAxLTJ2LTFjMC0uODQuNTg0LTEgMS0xdi0xYy0yLjA4MyAwLTIgMS4xNjYtMiAydjFjMCAuOTY5LS43MDMuOTgtMSAxdjJjLjMyMi4wMiAxIC4wNTMgMSAxdjFjMCAuODM0LS4wODMgMiAyIDJ2LTFjLS44MzMgMC0xLTEtMS0xeiIgZmlsbD0iIzQyNDI0MiIvPjxwYXRoIGQ9Ik03My41IDM0Yy0xLjkxNCAwLTMuNjAxLTEuMjQyLTQuMjI3LTNoLTEuNjgzYy0uNTI0LjkxLTEuNTAzIDEuNS0yLjU5MSAxLjUtMS42NTQgMC0zLTEuMzQ2LTMtM3MxLjM0Ni0zIDMtM2MxLjA4OCAwIDIuMDY2LjU4OCAyLjU5MSAxLjVoMS42ODNjLjYyNi0xLjc2IDIuMzEzLTMgNC4yMjctMyAyLjQ4MSAwIDQuNSAyLjAxOCA0LjUgNC41IDAgMi40OC0yLjAxOSA0LjUtNC41IDQuNXoiIGZpbGw9IiMyRDJEMkQiLz48cGF0aCBkPSJNNzMuNSAyNmMtMS43NTkgMC0zLjIwNCAxLjMwOC0zLjQ0OSAzaC0zLjEyMmMtLjIyMy0uODYxLS45OTgtMS41LTEuOTI5LTEuNS0xLjEwNCAwLTIgLjg5NS0yIDIgMCAxLjEwNC44OTYgMiAyIDIgLjkzMSAwIDEuNzA2LS42MzkgMS45MjktMS41aDMuMTIyYy4yNDUgMS42OTEgMS42OSAzIDMuNDQ5IDMgMS45MyAwIDMuNS0xLjU3IDMuNS0zLjUgMC0xLjkzMS0xLjU3LTMuNS0zLjUtMy41em0wIDVjLS44MjcgMC0xLjUtLjY3NC0xLjUtMS41IDAtLjgyOC42NzMtMS41IDEuNS0xLjVzMS41LjY3MiAxLjUgMS41YzAgLjgyNi0uNjczIDEuNS0xLjUgMS41eiIgZmlsbD0iIzc1QkVGRiIvPjxjaXJjbGUgY3g9IjczLjUiIGN5PSIyOS41IiByPSIxLjUiIGZpbGw9IiMyRDJEMkQiLz48cGF0aCBkPSJNNzMuNSAxNGMtMS45MTQgMC0zLjYwMS0xLjI0Mi00LjIyNy0zaC0xLjY4M2MtLjUyNC45MS0xLjUwMyAxLjUtMi41OTEgMS41LTEuNjU0IDAtMy0xLjM0Ni0zLTNzMS4zNDYtMyAzLTNjMS4wODggMCAyLjA2Ni41ODggMi41OTEgMS41aDEuNjgzYy42MjYtMS43NiAyLjMxMy0zIDQuMjI3LTMgMi40ODEgMCA0LjUgMi4wMTggNC41IDQuNSAwIDIuNDgtMi4wMTkgNC41LTQuNSA0LjV6IiBmaWxsPSIjRjNGM0YzIi8+PHBhdGggZD0iTTczLjUgNmMtMS43NTkgMC0zLjIwNCAxLjMwOC0zLjQ0OSAzaC0zLjEyMmMtLjIyMy0uODYxLS45OTgtMS41LTEuOTI5LTEuNS0xLjEwNCAwLTIgLjg5NS0yIDIgMCAxLjEwNC44OTYgMiAyIDIgLjkzMSAwIDEuNzA2LS42MzkgMS45MjktMS41aDMuMTIyYy4yNDUgMS42OTEgMS42OSAzIDMuNDQ5IDMgMS45MyAwIDMuNS0xLjU3IDMuNS0zLjUgMC0xLjkzMS0xLjU3LTMuNS0zLjUtMy41em0wIDVjLS44MjcgMC0xLjUtLjY3NC0xLjUtMS41IDAtLjgyOC42NzMtMS41IDEuNS0xLjVzMS41LjY3MiAxLjUgMS41YzAgLjgyNi0uNjczIDEuNS0xLjUgMS41eiIgZmlsbD0iIzAwNTM5QyIvPjxjaXJjbGUgY3g9IjczLjUiIGN5PSI5LjUiIHI9IjEuNSIgZmlsbD0iI0YwRUZGMSIvPjxwYXRoIGQ9Ik01OCAyOC41ODZsLTMtMy0xLjQxNCAxLjQxNGgtMi4xNzJsMS0xLTQtNGgtLjgyOGwtNS41ODYgNS41ODZ2LjgyOGw0IDQgMi40MTQtMi40MTRoLjU4NnY1aDEuNTg2bDMgM2guODI4bDMuNTg2LTMuNTg2di0uODI4bC0yLjA4Ni0yLjA4NiAyLjA4Ni0yLjA4NnYtLjgyOHoiIGZpbGw9IiMyRDJEMkQiLz48cG9seWdvbiBwb2ludHM9IjUzLjk5OCwzMy4wMDIgNTEsMzMgNTEsMjkgNTMsMjkgNTIsMzAgNTQsMzIgNTcsMjkgNTUsMjcgNTQsMjggNDksMjggNTEsMjYgNDgsMjMgNDMsMjggNDYsMzEgNDgsMjkgNTAsMjkgNTAsMzQgNTMsMzQgNTIsMzUgNTQsMzcgNTcsMzQgNTUsMzIiIGZpbGw9IiNDMjdEMUEiLz48cGF0aCBkPSJNNTggOC41ODZsLTMtMy0xLjQxNCAxLjQxNGgtMi4xNzJsMS0xLTQtNGgtLjgyOGwtNS41ODYgNS41ODZ2LjgyOGw0IDQgMi40MTQtMi40MTRoLjU4NnY1aDEuNTg2bDMgM2guODI4bDMuNTg2LTMuNTg2di0uODI4bC0yLjA4Ni0yLjA4NiAyLjA4Ni0yLjA4NnYtLjgyOHoiIGZpbGw9IiNGM0YzRjMiLz48cG9seWdvbiBwb2ludHM9IjUzLjk5OCwxMy4wMDIgNTEsMTMgNTEsOSA1Myw5IDUyLDEwIDU0LDEyIDU3LDkgNTUsNyA1NCw4IDQ5LDggNTEsNiA0OCwzIDQzLDggNDYsMTEgNDgsOSA1MCw5IDUwLDE0IDUzLDE0IDUyLDE1IDU0LDE3IDU3LDE0IDU1LDEyIiBmaWxsPSIjQzI3RDFBIi8+PHBhdGggZD0iTTI5LjI2MyAyNGw0LjczNyAyLjM2OXY1LjIzNmwtNi43OTEgMy4zOTVoLS40MmwtNC43ODktMi4zOTV2LTUuMjM2bDYuNzM5LTMuMzY5aC41MjR6IiBmaWxsPSIjMkQyRDJEIi8+PHBhdGggZD0iTTIzIDI4djRsNCAyIDYtM3YtNGwtNC0yLTYgM3ptNCAxbC0yLTEgNC0yIDIgMS00IDJ6IiBmaWxsPSIjNzVCRUZGIi8+PHBhdGggZD0iTTI5IDI2bDIgMS00IDItMi0xIDQtMnoiIGZpbGw9IiMyRDJEMkQiLz48cGF0aCBkPSJNMjkuMjYzIDRsNC43MzcgMi4zNjl2NS4yMzZsLTYuNzkxIDMuMzk1aC0uNDJsLTQuNzg5LTIuMzk1di01LjIzNmw2LjczOS0zLjM2OWguNTI0eiIgZmlsbD0iI0YzRjNGMyIvPjxwYXRoIGQ9Ik0yMyA4djRsNCAyIDYtM3YtNGwtNC0yLTYgM3ptNCAxbC0yLTEgNC0yIDIgMS00IDJ6IiBmaWxsPSIjMDA1MzlDIi8+PHBhdGggZD0iTTI5IDZsMiAxLTQgMi0yLTEgNC0yeiIgZmlsbD0iI0YwRUZGMSIvPjxwb2x5Z29uIHBvaW50cz0iMiwyNy4zMDggMiwzMi42OTIgNy4yMDksMzYgNy43OTEsMzYgMTMsMzIuNjkyIDEzLDI3LjMwOCA3Ljc5MSwyNCA3LjIwOSwyNCIgZmlsbD0iIzJEMkQyRCIvPjxwYXRoIGQ9Ik03LjUgMjVsLTQuNSAyLjg1N3Y0LjI4NWw0LjUgMi44NTggNC41LTIuODU3di00LjI4NWwtNC41LTIuODU4em0tLjUgOC40OThsLTMtMS45MDV2LTIuODE1bDMgMS45MDV2Mi44MTV6bS0yLjM1OC01LjQ5OGwyLjg1OC0xLjgxNSAyLjg1OCAxLjgxNS0yLjg1OCAxLjgxNS0yLjg1OC0xLjgxNXptNi4zNTggMy41OTNsLTMgMS45MDV2LTIuODE1bDMtMS45MDV2Mi44MTV6IiBmaWxsPSIjQjE4MEQ3Ii8+PHBvbHlnb24gcG9pbnRzPSIxMC4zNTgsMjggNy41LDI5LjgxNSA0LjY0MiwyOCA3LjUsMjYuMTg1IiBmaWxsPSIjMkQyRDJEIi8+PHBvbHlnb24gcG9pbnRzPSI0LDI4Ljc3NyA3LDMwLjY4MyA3LDMzLjQ5OCA0LDMxLjU5MyIgZmlsbD0iIzJEMkQyRCIvPjxwb2x5Z29uIHBvaW50cz0iOCwzMy40OTggOCwzMC42ODMgMTEsMjguNzc3IDExLDMxLjU5MyIgZmlsbD0iIzJEMkQyRCIvPjxwb2x5Z29uIHBvaW50cz0iMiw3LjMwOCAyLDEyLjY5MiA3LjIwOSwxNiA3Ljc5MSwxNiAxMywxMi42OTIgMTMsNy4zMDggNy43OTEsNCA3LjIwOSw0IiBmaWxsPSIjRjNGM0YzIi8+PHBhdGggZD0iTTcuNSA1bC00LjUgMi44NTd2NC4yODVsNC41IDIuODU4IDQuNS0yLjg1N3YtNC4yODZsLTQuNS0yLjg1N3ptLS41IDguNDk4bC0zLTEuOTA1di0yLjgxNmwzIDEuOTA1djIuODE2em0tMi4zNTgtNS40OThsMi44NTgtMS44MTUgMi44NTggMS44MTUtMi44NTggMS44MTUtMi44NTgtMS44MTV6bTYuMzU4IDMuNTkzbC0zIDEuOTA1di0yLjgxNWwzLTEuOTA1djIuODE1eiIgZmlsbD0iIzY1MkQ5MCIvPjxwb2x5Z29uIHBvaW50cz0iMTAuMzU4LDggNy41LDkuODE1IDQuNjQyLDggNy41LDYuMTg1IiBmaWxsPSIjRjBFRkYxIi8+PHBvbHlnb24gcG9pbnRzPSI0LDguNzc3IDcsMTAuNjgzIDcsMTMuNDk4IDQsMTEuNTkzIiBmaWxsPSIjRjBFRkYxIi8+PHBvbHlnb24gcG9pbnRzPSI4LDEzLjQ5OCA4LDEwLjY4MyAxMSw4Ljc3NyAxMSwxMS41OTMiIGZpbGw9IiNGMEVGRjEiLz48L3N2Zz4=);background-repeat:no-repeat}.monaco-quick-open-widget .quick-open-tree .quick-open-entry .quick-open-entry-icon.constructor,.monaco-quick-open-widget .quick-open-tree .quick-open-entry .quick-open-entry-icon.function,.monaco-quick-open-widget .quick-open-tree .quick-open-entry .quick-open-entry-icon.method{background-position:0 -4px}.monaco-quick-open-widget .quick-open-tree .quick-open-entry .quick-open-entry-icon.field,.monaco-quick-open-widget .quick-open-tree .quick-open-entry .quick-open-entry-icon.variable{background-position:-22px -4px}.monaco-quick-open-widget .quick-open-tree .quick-open-entry .quick-open-entry-icon.class{background-position:-43px -3px}.monaco-quick-open-widget .quick-open-tree .quick-open-entry .quick-open-entry-icon.interface{background-position:-63px -4px}.monaco-quick-open-widget .quick-open-tree .quick-open-entry .quick-open-entry-icon.module{background-position:-82px -4px}.monaco-quick-open-widget .quick-open-tree .quick-open-entry .quick-open-entry-icon.property{background-position:-102px -3px}.monaco-quick-open-widget .quick-open-tree .quick-open-entry .quick-open-entry-icon.enum{background-position:-122px -3px}.monaco-quick-open-widget .quick-open-tree .quick-open-entry .quick-open-entry-icon.rule{background-position:-242px -4px}.monaco-quick-open-widget .quick-open-tree .quick-open-entry .quick-open-entry-icon.file{background-position:-262px -4px}.vs-dark .monaco-quick-open-widget .quick-open-tree .quick-open-entry .quick-open-entry-icon.constructor,.vs-dark .monaco-quick-open-widget .quick-open-tree .quick-open-entry .quick-open-entry-icon.function,.vs-dark .monaco-quick-open-widget .quick-open-tree .quick-open-entry .quick-open-entry-icon.method{background-position:0 -24px}.vs-dark .monaco-quick-open-widget .quick-open-tree .quick-open-entry .quick-open-entry-icon.field,.vs-dark .monaco-quick-open-widget .quick-open-tree .quick-open-entry .quick-open-entry-icon.variable{background-position:-22px -24px}.vs-dark .monaco-quick-open-widget .quick-open-tree .quick-open-entry .quick-open-entry-icon.class{background-position:-43px -23px}.vs-dark .monaco-quick-open-widget .quick-open-tree .quick-open-entry .quick-open-entry-icon.interface{background-position:-63px -24px}.vs-dark .monaco-quick-open-widget .quick-open-tree .quick-open-entry .quick-open-entry-icon.module{background-position:-82px -24px}.vs-dark .monaco-quick-open-widget .quick-open-tree .quick-open-entry .quick-open-entry-icon.property{background-position:-102px -23px}.vs-dark .monaco-quick-open-widget .quick-open-tree .quick-open-entry .quick-open-entry-icon.enum{background-position:-122px -23px}.vs-dark .monaco-quick-open-widget .quick-open-tree .quick-open-entry .quick-open-entry-icon.rule{background-position:-242px -24px}.vs-dark .monaco-quick-open-widget .quick-open-tree .quick-open-entry .quick-open-entry-icon.file{background-position:-262px -24px}.hc-black .monaco-quick-open-widget .quick-open-tree .quick-open-entry .quick-open-entry-icon{background:none;display:inline}.hc-black .monaco-quick-open-widget .quick-open-tree .quick-open-entry .quick-open-entry-icon:before{height:16px;width:16px;display:inline-block}.hc-black .monaco-quick-open-widget .quick-open-tree .quick-open-entry .quick-open-entry-icon.constructor:before,.hc-black .monaco-quick-open-widget .quick-open-tree .quick-open-entry .quick-open-entry-icon.function:before,.hc-black .monaco-quick-open-widget .quick-open-tree .quick-open-entry .quick-open-entry-icon.method:before{content:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiI+PHBhdGggZmlsbD0iI0IxODBENyIgZD0iTTUuNSAzbC00LjUgMi44NTd2NC4yODVsNC41IDIuODU4IDQuNS0yLjg1N3YtNC4yODZsLTQuNS0yLjg1N3ptLS41IDguNDk4bC0zLTEuOTA1di0yLjgxNmwzIDEuOTA1djIuODE2em0tMi4zNTgtNS40OThsMi44NTgtMS44MTUgMi44NTggMS44MTUtMi44NTggMS44MTUtMi44NTgtMS44MTV6bTYuMzU4IDMuNTkzbC0zIDEuOTA1di0yLjgxNWwzLTEuOTA1djIuODE1eiIvPjwvc3ZnPg==);margin-left:2px}.hc-black .monaco-quick-open-widget .quick-open-tree .quick-open-entry .quick-open-entry-icon.field:before,.hc-black .monaco-quick-open-widget .quick-open-tree .quick-open-entry .quick-open-entry-icon.variable:before{content:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiI+PHBhdGggZmlsbD0iIzc1QkVGRiIgZD0iTTEgNnY0bDQgMiA2LTN2LTRsLTQtMi02IDN6bTQgMWwtMi0xIDQtMiAyIDEtNCAyeiIvPjwvc3ZnPg==);margin-left:2px}.hc-black .monaco-quick-open-widget .quick-open-tree .quick-open-entry .quick-open-entry-icon.class:before{content:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiI+PHBvbHlnb24gZmlsbD0iI0U4QUI1MyIgcG9pbnRzPSIxMS45OTgsMTEuMDAyIDksMTEgOSw3IDExLDcgMTAsOCAxMiwxMCAxNSw3IDEzLDUgMTIsNiA3LDYgOSw0IDYsMSAxLDYgNCw5IDYsNyA4LDcgOCwxMiAxMSwxMiAxMCwxMyAxMiwxNSAxNSwxMiAxMywxMCIvPjwvc3ZnPg==)}.hc-black .monaco-quick-open-widget .quick-open-tree .quick-open-entry .quick-open-entry-icon.interface:before{content:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiI+PHBhdGggZmlsbD0iIzc1QkVGRiIgZD0iTTExLjUgNGMtMS43NTkgMC0zLjIwNCAxLjMwOC0zLjQ0OSAzaC0zLjEyMmMtLjIyMy0uODYxLS45OTgtMS41LTEuOTI5LTEuNS0xLjEwNCAwLTIgLjg5NS0yIDIgMCAxLjEwNC44OTYgMiAyIDIgLjkzMSAwIDEuNzA2LS42MzkgMS45MjktMS41aDMuMTIyYy4yNDUgMS42OTEgMS42OSAzIDMuNDQ5IDMgMS45MyAwIDMuNS0xLjU3IDMuNS0zLjUgMC0xLjkzMS0xLjU3LTMuNS0zLjUtMy41em0wIDVjLS44MjcgMC0xLjUtLjY3NC0xLjUtMS41IDAtLjgyOC42NzMtMS41IDEuNS0xLjVzMS41LjY3MiAxLjUgMS41YzAgLjgyNi0uNjczIDEuNS0xLjUgMS41eiIvPjwvc3ZnPg==)}.hc-black .monaco-quick-open-widget .quick-open-tree .quick-open-entry .quick-open-entry-icon.module:before{content:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiI+PHBhdGggZmlsbD0iI0M1QzVDNSIgZD0iTTkgMTF2LTFjMC0uODM0LjQ5Ni0xLjczOCAxLTItLjUwNC0uMjctMS0xLjE2OC0xLTJ2LTFjMC0uODQtLjU4NC0xLTEtMXYtMWMyLjA4MyAwIDIgMS4xNjYgMiAydjFjMCAuOTY5LjcwMy45OCAxIDF2MmMtLjMyMi4wMi0xIC4wNTMtMSAxdjFjMCAuODM0LjA4MyAyLTIgMnYtMWMuODMzIDAgMS0xIDEtMXptLTYgMHYtMWMwLS44MzQtLjQ5Ni0xLjczOC0xLTIgLjUwNC0uMjcgMS0xLjE2OCAxLTJ2LTFjMC0uODQuNTg0LTEgMS0xdi0xYy0yLjA4MyAwLTIgMS4xNjYtMiAydjFjMCAuOTY5LS43MDMuOTgtMSAxdjJjLjMyMi4wMiAxIC4wNTMgMSAxdjFjMCAuODM0LS4wODMgMiAyIDJ2LTFjLS44MzMgMC0xLTEtMS0xeiIvPjwvc3ZnPg==);margin-left:2px}.hc-black .monaco-quick-open-widget .quick-open-tree .quick-open-entry .quick-open-entry-icon.property:before{content:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiI+PHBhdGggZmlsbD0iI0M1QzVDNSIgZD0iTTEyLjA5IDQuMzU5bC0yLjY0MSAyLjY0MS0yLTIgMi42NDEtMi42NDFjLS41MDItLjIyNi0xLjA1NS0uMzU5LTEuNjQxLS4zNTktMi4yMDkgMC00IDEuNzkxLTQgNCAwIC41ODYuMTMzIDEuMTM5LjM1OSAxLjY0bC0zLjM1OSAzLjM2cy0xIDEgMCAyaDJsMy4zNTktMy4zNmMuNTAzLjIyNiAxLjA1NS4zNiAxLjY0MS4zNiAyLjIwOSAwIDQtMS43OTEgNC00IDAtLjU4Ni0uMTMzLTEuMTM5LS4zNTktMS42NDF6Ii8+PC9zdmc+);margin-left:1px}.hc-black .monaco-quick-open-widget .quick-open-tree .quick-open-entry .quick-open-entry-icon.enum:before,.hc-black .monaco-quick-open-widget .quick-open-tree .quick-open-entry .quick-open-entry-icon.value:before{content:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiI+PGcgZmlsbD0iIzc1QkVGRiI+PHBhdGggZD0iTTEyIDNoLTRsLTEgMXYyaDV2MWgtMnYxaDJsMS0xdi0zbC0xLTF6bTAgMmgtNHYtMWg0djF6TTMgMTJoNnYtNWgtNnY1em0xLTNoNHYxaC00di0xeiIvPjwvZz48L3N2Zz4=)}.hc-black .monaco-quick-open-widget .quick-open-tree .quick-open-entry .quick-open-entry-icon.rule:before{content:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMiIgaGVpZ2h0PSIxMiI+PHBhdGggZmlsbD0iI0M1QzVDNSIgZD0iTTEwIDVoLTh2LTJoOHYyem0wIDFoLTZ2MWg2di0xem0wIDJoLTZ2MWg2di0xeiIvPjwvc3ZnPg==)}.hc-black .monaco-quick-open-widget .quick-open-tree .quick-open-entry .quick-open-entry-icon.file:before{content:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiI+PHBhdGggZmlsbD0iI0M1QzVDNSIgZD0iTTkuNjc2IDJoLTYuNjc2djEyaDEwdi05bC0zLjMyNC0zem0yLjMyNCAxMWgtOHYtMTBoNXYzaDN2N3oiLz48L3N2Zz4=)}.monaco-editor{font-family:-apple-system,BlinkMacSystemFont,Segoe WPC,Segoe UI,HelveticaNeue-Light,Ubuntu,Droid Sans,sans-serif}.monaco-editor.hc-black .monaco-menu .monaco-action-bar.vertical .action-menu-item:focus .action-label,.monaco-editor.vs-dark .monaco-menu .monaco-action-bar.vertical .action-menu-item:focus .action-label,.monaco-menu .monaco-action-bar.vertical .action-item .action-menu-item:focus .action-label{stroke-width:1.2px}.monaco-editor-hover p{margin:0}.monaco-editor.hc-black{-ms-high-contrast-adjust:none}@media screen and (-ms-high-contrast:active){.monaco-editor.vs-dark .view-overlays .current-line,.monaco-editor.vs .view-overlays .current-line{border-color:windowtext!important;border-left:0;border-right:0}.monaco-editor.vs-dark .cursor,.monaco-editor.vs .cursor{background-color:windowtext!important}.monaco-editor.vs-dark .dnd-target,.monaco-editor.vs .dnd-target{border-color:windowtext!important}.monaco-editor.vs-dark .selected-text,.monaco-editor.vs .selected-text{background-color:highlight!important}.monaco-editor.vs-dark .view-line,.monaco-editor.vs .view-line{-ms-high-contrast-adjust:none}.monaco-editor.vs-dark .view-line span,.monaco-editor.vs .view-line span{color:windowtext!important}.monaco-editor.vs-dark .view-line span.inline-selected-text,.monaco-editor.vs .view-line span.inline-selected-text{color:highlighttext!important}.monaco-editor.vs-dark .view-overlays,.monaco-editor.vs .view-overlays{-ms-high-contrast-adjust:none}.monaco-editor.vs-dark .reference-decoration,.monaco-editor.vs-dark .selectionHighlight,.monaco-editor.vs-dark .wordHighlight,.monaco-editor.vs-dark .wordHighlightStrong,.monaco-editor.vs .reference-decoration,.monaco-editor.vs .selectionHighlight,.monaco-editor.vs .wordHighlight,.monaco-editor.vs .wordHighlightStrong{border:2px dotted highlight!important;background:transparent!important;box-sizing:border-box}.monaco-editor.vs-dark .rangeHighlight,.monaco-editor.vs .rangeHighlight{background:transparent!important;border:1px dotted activeborder!important;box-sizing:border-box}.monaco-editor.vs-dark .bracket-match,.monaco-editor.vs .bracket-match{border-color:windowtext!important;background:transparent!important}.monaco-editor.vs-dark .currentFindMatch,.monaco-editor.vs-dark .findMatch,.monaco-editor.vs .currentFindMatch,.monaco-editor.vs .findMatch{border:2px dotted activeborder!important;background:transparent!important;box-sizing:border-box}.monaco-editor.vs-dark .find-widget,.monaco-editor.vs .find-widget{border:1px solid windowtext}.monaco-editor.vs-dark .monaco-list .monaco-list-row,.monaco-editor.vs .monaco-list .monaco-list-row{-ms-high-contrast-adjust:none;color:windowtext!important}.monaco-editor.vs-dark .monaco-list .monaco-list-row.focused,.monaco-editor.vs .monaco-list .monaco-list-row.focused{color:highlighttext!important;background-color:highlight!important}.monaco-editor.vs-dark .monaco-list .monaco-list-row:hover,.monaco-editor.vs .monaco-list .monaco-list-row:hover{background:transparent!important;border:1px solid highlight;box-sizing:border-box}.monaco-editor.vs-dark .monaco-tree .monaco-tree-row,.monaco-editor.vs .monaco-tree .monaco-tree-row{-ms-high-contrast-adjust:none;color:windowtext!important}.monaco-editor.vs-dark .monaco-tree .monaco-tree-row.focused,.monaco-editor.vs-dark .monaco-tree .monaco-tree-row.selected,.monaco-editor.vs .monaco-tree .monaco-tree-row.focused,.monaco-editor.vs .monaco-tree .monaco-tree-row.selected{color:highlighttext!important;background-color:highlight!important}.monaco-editor.vs-dark .monaco-tree .monaco-tree-row:hover,.monaco-editor.vs .monaco-tree .monaco-tree-row:hover{background:transparent!important;border:1px solid highlight;box-sizing:border-box}.monaco-editor.vs-dark .monaco-scrollable-element>.scrollbar,.monaco-editor.vs .monaco-scrollable-element>.scrollbar{-ms-high-contrast-adjust:none;background:background!important;border:1px solid windowtext;box-sizing:border-box}.monaco-editor.vs-dark .monaco-scrollable-element>.scrollbar>.slider,.monaco-editor.vs .monaco-scrollable-element>.scrollbar>.slider{background:windowtext!important}.monaco-editor.vs-dark .monaco-scrollable-element>.scrollbar>.slider.active,.monaco-editor.vs-dark .monaco-scrollable-element>.scrollbar>.slider:hover,.monaco-editor.vs .monaco-scrollable-element>.scrollbar>.slider.active,.monaco-editor.vs .monaco-scrollable-element>.scrollbar>.slider:hover{background:highlight!important}.monaco-editor.vs-dark .decorationsOverviewRuler,.monaco-editor.vs .decorationsOverviewRuler{opacity:0}.monaco-editor.vs-dark .minimap,.monaco-editor.vs .minimap{display:none}.monaco-editor.vs-dark .squiggly-d-error,.monaco-editor.vs .squiggly-d-error{background:transparent!important;border-bottom:4px double #e47777}.monaco-editor.vs-dark .squiggly-b-info,.monaco-editor.vs-dark .squiggly-c-warning,.monaco-editor.vs .squiggly-b-info,.monaco-editor.vs .squiggly-c-warning{border-bottom:4px double #71b771}.monaco-editor.vs-dark .squiggly-a-hint,.monaco-editor.vs .squiggly-a-hint{border-bottom:4px double #6c6c6c}.monaco-editor.vs-dark .monaco-menu .monaco-action-bar.vertical .action-menu-item:focus .action-label,.monaco-editor.vs .monaco-menu .monaco-action-bar.vertical .action-menu-item:focus .action-label{-ms-high-contrast-adjust:none;color:highlighttext!important;background-color:highlight!important}.monaco-editor.vs-dark .monaco-menu .monaco-action-bar.vertical .action-menu-item:hover .action-label,.monaco-editor.vs .monaco-menu .monaco-action-bar.vertical .action-menu-item:hover .action-label{-ms-high-contrast-adjust:none;background:transparent!important;border:1px solid highlight;box-sizing:border-box}.monaco-diff-editor.vs-dark .diffOverviewRuler,.monaco-diff-editor.vs .diffOverviewRuler{display:none}.monaco-editor.vs-dark .line-delete,.monaco-editor.vs-dark .line-insert,.monaco-editor.vs .line-delete,.monaco-editor.vs .line-insert{background:transparent!important;border:1px solid highlight!important;box-sizing:border-box}.monaco-editor.vs-dark .char-delete,.monaco-editor.vs-dark .char-insert,.monaco-editor.vs .char-delete,.monaco-editor.vs .char-insert{background:transparent!important}}.context-view .monaco-menu{min-width:130px}
/**
 * Copyright (c) 2014 The xterm.js authors. All rights reserved.
 * Copyright (c) 2012-2013, Christopher Jeffrey (MIT License)
 * https://github.com/chjj/term.js
 * @license MIT
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 *
 * Originally forked from (with the author's permission):
 *   Fabrice Bellard's javascript vt100 for jslinux:
 *   http://bellard.org/jslinux/
 *   Copyright (c) 2011 Fabrice Bellard
 *   The original design remains. The terminal itself
 *   has been extended to include xterm CSI codes, among
 *   other features.
 */

/**
 *  Default styles for xterm.js
 */

.xterm {
    font-feature-settings: "liga" 0;
    position: relative;
    -moz-user-select: none;
         user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
}

.xterm.focus,
.xterm:focus {
    outline: none;
}

.xterm .xterm-helpers {
    position: absolute;
    top: 0;
    /**
     * The z-index of the helpers must be higher than the canvases in order for
     * IMEs to appear on top.
     */
    z-index: 10;
}

.xterm .xterm-helper-textarea {
    /*
     * HACK: to fix IE's blinking cursor
     * Move textarea out of the screen to the far left, so that the cursor is not visible.
     */
    position: absolute;
    opacity: 0;
    left: -9999em;
    top: 0;
    width: 0;
    height: 0;
    z-index: -10;
    /** Prevent wrapping so the IME appears against the textarea at the correct position */
    white-space: nowrap;
    overflow: hidden;
    resize: none;
}

.xterm .composition-view {
    /* TODO: Composition position got messed up somewhere */
    background: #000;
    color: #FFF;
    display: none;
    position: absolute;
    white-space: nowrap;
    z-index: 1;
}

.xterm .composition-view.active {
    display: block;
}

.xterm .xterm-viewport {
    /* On OS X this is required in order for the scroll bar to appear fully opaque */
    background-color: #000;
    overflow-y: scroll;
    cursor: default;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
}

.xterm .xterm-screen {
    position: relative;
}

.xterm .xterm-screen canvas {
    position: absolute;
    left: 0;
    top: 0;
}

.xterm .xterm-scroll-area {
    visibility: hidden;
}

.xterm-char-measure-element {
    display: inline-block;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: -9999em;
    line-height: normal;
}

.xterm {
    cursor: text;
}

.xterm.enable-mouse-events {
    /* When mouse events are enabled (eg. tmux), revert to the standard pointer cursor */
    cursor: default;
}

.xterm.xterm-cursor-pointer {
    cursor: pointer;
}

.xterm.column-select.focus {
    /* Column selection mode */
    cursor: crosshair;
}

.xterm .xterm-accessibility,
.xterm .xterm-message {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 100;
    color: transparent;
}

.xterm .live-region {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.xterm-dim {
    opacity: 0.5;
}

.xterm-underline {
    text-decoration: underline;
}

/*
 * Material theme colors
 */
/* Colors for the ripple elements.*/
/* stylelint-disable-next-line material/theme-mixin-api */
/* stylelint-disable-next-line material/theme-mixin-api */
/* stylelint-disable material/no-prefixes */
/* stylelint-enable */
.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 h1 {
  font: 400 24px/32px Roboto, "Helvetica Neue", sans-serif;
  letter-spacing: normal;
  margin: 0 0 16px;
}
.mat-h2, .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 h3 {
  font: 400 16px/28px Roboto, "Helvetica Neue", sans-serif;
  letter-spacing: normal;
  margin: 0 0 16px;
}
.mat-h4, .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 h5 {
  font: 400 calc(14px * 0.83)/20px Roboto, "Helvetica Neue", sans-serif;
  margin: 0 0 12px;
}
.mat-h6, .mat-typography h6 {
  font: 400 calc(14px * 0.67)/20px Roboto, "Helvetica Neue", sans-serif;
  margin: 0 0 12px;
}
.mat-body-strong, .mat-body-2 {
  font: 500 14px/24px Roboto, "Helvetica Neue", sans-serif;
  letter-spacing: normal;
}
.mat-body, .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 p {
  margin: 0 0 12px;
}
.mat-small, .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: 0.5em 0;
  border-top: 0.84375em solid transparent;
}
.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: 0.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: 0.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: 0.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);
  -ms-transform: translateY(-1.28125em) scale(0.75);
  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);
  -ms-transform: translateY(-1.28124em) scale(0.75);
  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);
  -ms-transform: translateY(-1.28123em) scale(0.75);
  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: 0.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: 0.25em 0 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-grid-tile-footer {
  font-size: 14px;
}
.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;
}
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: scale(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;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.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: transparent;
  transition: opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0;
}
.cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
  opacity: 1;
}
@media screen and (-ms-high-contrast: active) {
  .cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
    opacity: 0.6;
  }
}
.cdk-overlay-dark-backdrop {
  background: rgba(0, 0, 0, 0.32);
}
.cdk-overlay-transparent-backdrop, .cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing {
  opacity: 0;
}
.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;
}
@-webkit-keyframes cdk-text-field-autofill-start {
  /*!*/
}
@keyframes cdk-text-field-autofill-start {
  /*!*/
}
@-webkit-keyframes cdk-text-field-autofill-end {
  /*!*/
}
@keyframes cdk-text-field-autofill-end {
  /*!*/
}
.cdk-text-field-autofill-monitored:-webkit-autofill {
  -webkit-animation: cdk-text-field-autofill-start 0s 1ms;
          animation: cdk-text-field-autofill-start 0s 1ms;
}
.cdk-text-field-autofill-monitored:not(:-webkit-autofill) {
  -webkit-animation: cdk-text-field-autofill-end 0s 1ms;
          animation: cdk-text-field-autofill-end 0s 1ms;
}
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;
}
.mat-focus-indicator {
  position: relative;
}
.mat-mdc-focus-indicator {
  position: relative;
}
.mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.1);
}
.mat-option {
  color: rgba(0, 0, 0, 0.87);
}
.mat-option:hover:not(.mat-option-disabled), .mat-option:focus:not(.mat-option-disabled) {
  background: rgba(0, 0, 0, 0.04);
}
.mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled) {
  background: rgba(0, 0, 0, 0.04);
}
.mat-option.mat-active {
  background: rgba(0, 0, 0, 0.04);
  color: rgba(0, 0, 0, 0.87);
}
.mat-option.mat-option-disabled {
  color: rgba(0, 0, 0, 0.38);
}
.mat-primary .mat-option.mat-selected:not(.mat-option-disabled) {
  color: #fbc02d;
}
.mat-accent .mat-option.mat-selected:not(.mat-option-disabled) {
  color: #66bb6a;
}
.mat-warn .mat-option.mat-selected:not(.mat-option-disabled) {
  color: #f44336;
}
.mat-optgroup-label {
  color: rgba(0, 0, 0, 0.54);
}
.mat-optgroup-disabled .mat-optgroup-label {
  color: rgba(0, 0, 0, 0.38);
}
.mat-pseudo-checkbox {
  color: rgba(0, 0, 0, 0.54);
}
.mat-pseudo-checkbox::after {
  color: #fafafa;
}
.mat-pseudo-checkbox-disabled {
  color: #b0b0b0;
}
.mat-primary .mat-pseudo-checkbox-checked,
.mat-primary .mat-pseudo-checkbox-indeterminate {
  background: #fbc02d;
}
.mat-pseudo-checkbox-checked,
.mat-pseudo-checkbox-indeterminate,
.mat-accent .mat-pseudo-checkbox-checked,
.mat-accent .mat-pseudo-checkbox-indeterminate {
  background: #66bb6a;
}
.mat-warn .mat-pseudo-checkbox-checked,
.mat-warn .mat-pseudo-checkbox-indeterminate {
  background: #f44336;
}
.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,
.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled {
  background: #b0b0b0;
}
.mat-app-background {
  background-color: #fafafa;
  color: rgba(0, 0, 0, 0.87);
}
.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 {
  background: white;
  color: rgba(0, 0, 0, 0.87);
}
.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 .mat-option.mat-selected:not(.mat-active):not(:hover) {
  background: white;
}
.mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled) {
  color: rgba(0, 0, 0, 0.87);
}
.mat-badge-content {
  color: rgba(0, 0, 0, 0.87);
  background: #fbc02d;
}
.cdk-high-contrast-active .mat-badge-content {
  outline: solid 1px;
  border-radius: 0;
}
.mat-badge-accent .mat-badge-content {
  background: #66bb6a;
  color: rgba(0, 0, 0, 0.87);
}
.mat-badge-warn .mat-badge-content {
  color: white;
  background: #f44336;
}
.mat-badge {
  position: relative;
}
.mat-badge-hidden .mat-badge-content {
  display: none;
}
.mat-badge-disabled .mat-badge-content {
  background: #b9b9b9;
  color: rgba(0, 0, 0, 0.38);
}
.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-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: white;
  color: rgba(0, 0, 0, 0.87);
}
.mat-button, .mat-icon-button, .mat-stroked-button {
  color: inherit;
  background: transparent;
}
.mat-button.mat-primary, .mat-icon-button.mat-primary, .mat-stroked-button.mat-primary {
  color: #fbc02d;
}
.mat-button.mat-accent, .mat-icon-button.mat-accent, .mat-stroked-button.mat-accent {
  color: #66bb6a;
}
.mat-button.mat-warn, .mat-icon-button.mat-warn, .mat-stroked-button.mat-warn {
  color: #f44336;
}
.mat-button.mat-primary.mat-button-disabled, .mat-button.mat-accent.mat-button-disabled, .mat-button.mat-warn.mat-button-disabled, .mat-button.mat-button-disabled.mat-button-disabled, .mat-icon-button.mat-primary.mat-button-disabled, .mat-icon-button.mat-accent.mat-button-disabled, .mat-icon-button.mat-warn.mat-button-disabled, .mat-icon-button.mat-button-disabled.mat-button-disabled, .mat-stroked-button.mat-primary.mat-button-disabled, .mat-stroked-button.mat-accent.mat-button-disabled, .mat-stroked-button.mat-warn.mat-button-disabled, .mat-stroked-button.mat-button-disabled.mat-button-disabled {
  color: rgba(0, 0, 0, 0.26);
}
.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: #fbc02d;
}
.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: #66bb6a;
}
.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: #f44336;
}
.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: transparent;
}
.mat-button .mat-ripple-element, .mat-icon-button .mat-ripple-element, .mat-stroked-button .mat-ripple-element {
  opacity: 0.1;
  background-color: currentColor;
}
.mat-button-focus-overlay {
  background: black;
}
.mat-stroked-button:not(.mat-button-disabled) {
  border-color: rgba(0, 0, 0, 0.12);
}
.mat-flat-button, .mat-raised-button, .mat-fab, .mat-mini-fab {
  color: rgba(0, 0, 0, 0.87);
  background-color: white;
}
.mat-flat-button.mat-primary, .mat-raised-button.mat-primary, .mat-fab.mat-primary, .mat-mini-fab.mat-primary {
  color: rgba(0, 0, 0, 0.87);
}
.mat-flat-button.mat-accent, .mat-raised-button.mat-accent, .mat-fab.mat-accent, .mat-mini-fab.mat-accent {
  color: rgba(0, 0, 0, 0.87);
}
.mat-flat-button.mat-warn, .mat-raised-button.mat-warn, .mat-fab.mat-warn, .mat-mini-fab.mat-warn {
  color: white;
}
.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 {
  color: rgba(0, 0, 0, 0.26);
}
.mat-flat-button.mat-primary, .mat-raised-button.mat-primary, .mat-fab.mat-primary, .mat-mini-fab.mat-primary {
  background-color: #fbc02d;
}
.mat-flat-button.mat-accent, .mat-raised-button.mat-accent, .mat-fab.mat-accent, .mat-mini-fab.mat-accent {
  background-color: #66bb6a;
}
.mat-flat-button.mat-warn, .mat-raised-button.mat-warn, .mat-fab.mat-warn, .mat-mini-fab.mat-warn {
  background-color: #f44336;
}
.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(0, 0, 0, 0.12);
}
.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(0, 0, 0, 0.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(0, 0, 0, 0.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, 0.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,
.mat-button-toggle-group {
  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,
.mat-button-toggle-group-appearance-standard {
  box-shadow: none;
}
.mat-button-toggle {
  color: rgba(0, 0, 0, 0.38);
}
.mat-button-toggle .mat-button-toggle-focus-overlay {
  background-color: rgba(0, 0, 0, 0.12);
}
.mat-button-toggle-appearance-standard {
  color: rgba(0, 0, 0, 0.87);
  background: white;
}
.mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay {
  background-color: black;
}
.mat-button-toggle-group-appearance-standard .mat-button-toggle + .mat-button-toggle {
  border-left: solid 1px rgba(0, 0, 0, 0.12);
}
[dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle + .mat-button-toggle {
  border-left: none;
  border-right: solid 1px rgba(0, 0, 0, 0.12);
}
.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 rgba(0, 0, 0, 0.12);
}
.mat-button-toggle-checked {
  background-color: #e0e0e0;
  color: rgba(0, 0, 0, 0.54);
}
.mat-button-toggle-checked.mat-button-toggle-appearance-standard {
  color: rgba(0, 0, 0, 0.87);
}
.mat-button-toggle-disabled {
  color: rgba(0, 0, 0, 0.26);
  background-color: #eeeeee;
}
.mat-button-toggle-disabled.mat-button-toggle-appearance-standard {
  background: white;
}
.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 rgba(0, 0, 0, 0.12);
}
.mat-button-toggle-appearance-standard .mat-button-toggle-label-content {
  line-height: 48px;
}
.mat-card {
  background: white;
  color: rgba(0, 0, 0, 0.87);
}
.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.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: rgba(0, 0, 0, 0.54);
}
.mat-checkbox-frame {
  border-color: rgba(0, 0, 0, 0.54);
}
.mat-checkbox-checkmark {
  fill: #fafafa;
}
.mat-checkbox-checkmark-path {
  stroke: #fafafa !important;
}
.mat-checkbox-mixedmark {
  background-color: #fafafa;
}
.mat-checkbox-indeterminate.mat-primary .mat-checkbox-background, .mat-checkbox-checked.mat-primary .mat-checkbox-background {
  background-color: #fbc02d;
}
.mat-checkbox-indeterminate.mat-accent .mat-checkbox-background, .mat-checkbox-checked.mat-accent .mat-checkbox-background {
  background-color: #66bb6a;
}
.mat-checkbox-indeterminate.mat-warn .mat-checkbox-background, .mat-checkbox-checked.mat-warn .mat-checkbox-background {
  background-color: #f44336;
}
.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: rgba(0, 0, 0, 0.54);
}
.mat-checkbox .mat-ripple-element {
  background-color: black;
}
.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: #fbc02d;
}
.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: #66bb6a;
}
.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: #f44336;
}
.mat-chip.mat-standard-chip {
  background-color: #e0e0e0;
  color: rgba(0, 0, 0, 0.87);
}
.mat-chip.mat-standard-chip .mat-chip-remove {
  color: rgba(0, 0, 0, 0.87);
  opacity: 0.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: 0.54;
}
.mat-chip.mat-standard-chip.mat-chip-disabled {
  opacity: 0.4;
}
.mat-chip.mat-standard-chip::after {
  background: black;
}
.mat-chip.mat-standard-chip.mat-chip-selected.mat-primary {
  background-color: #fbc02d;
  color: rgba(0, 0, 0, 0.87);
}
.mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove {
  color: rgba(0, 0, 0, 0.87);
  opacity: 0.4;
}
.mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.1);
}
.mat-chip.mat-standard-chip.mat-chip-selected.mat-warn {
  background-color: #f44336;
  color: white;
}
.mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove {
  color: white;
  opacity: 0.4;
}
.mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.1);
}
.mat-chip.mat-standard-chip.mat-chip-selected.mat-accent {
  background-color: #66bb6a;
  color: rgba(0, 0, 0, 0.87);
}
.mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove {
  color: rgba(0, 0, 0, 0.87);
  opacity: 0.4;
}
.mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.1);
}
.mat-table {
  background: white;
}
.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(0, 0, 0, 0.12);
}
.mat-header-cell {
  color: rgba(0, 0, 0, 0.54);
}
.mat-cell, .mat-footer-cell {
  color: rgba(0, 0, 0, 0.87);
}
.mat-calendar-arrow {
  border-top-color: rgba(0, 0, 0, 0.54);
}
.mat-datepicker-toggle,
.mat-datepicker-content .mat-calendar-next-button,
.mat-datepicker-content .mat-calendar-previous-button {
  color: rgba(0, 0, 0, 0.54);
}
.mat-calendar-table-header {
  color: rgba(0, 0, 0, 0.38);
}
.mat-calendar-table-header-divider::after {
  background: rgba(0, 0, 0, 0.12);
}
.mat-calendar-body-label {
  color: rgba(0, 0, 0, 0.54);
}
.mat-calendar-body-cell-content,
.mat-date-range-input-separator {
  color: rgba(0, 0, 0, 0.87);
  border-color: transparent;
}
.mat-calendar-body-disabled > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  color: rgba(0, 0, 0, 0.38);
}
.mat-form-field-disabled .mat-date-range-input-separator {
  color: rgba(0, 0, 0, 0.38);
}
.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),
.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(0, 0, 0, 0.04);
}
.mat-calendar-body-in-preview {
  color: rgba(0, 0, 0, 0.24);
}
.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  border-color: rgba(0, 0, 0, 0.38);
}
.mat-calendar-body-disabled > .mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  border-color: rgba(0, 0, 0, 0.18);
}
.mat-calendar-body-in-range::before {
  background: rgba(251, 192, 45, 0.2);
}
.mat-calendar-body-comparison-identical,
.mat-calendar-body-in-comparison-range::before {
  background: rgba(249, 171, 0, 0.2);
}
.mat-calendar-body-comparison-bridge-start::before,
[dir=rtl] .mat-calendar-body-comparison-bridge-end::before {
  background: linear-gradient(to right, rgba(251, 192, 45, 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(251, 192, 45, 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: #46a35e;
}
.mat-calendar-body-selected {
  background-color: #fbc02d;
  color: rgba(0, 0, 0, 0.87);
}
.mat-calendar-body-disabled > .mat-calendar-body-selected {
  background-color: rgba(251, 192, 45, 0.4);
}
.mat-calendar-body-today.mat-calendar-body-selected {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.87);
}
.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: white;
  color: rgba(0, 0, 0, 0.87);
}
.mat-datepicker-content.mat-accent .mat-calendar-body-in-range::before {
  background: rgba(102, 187, 106, 0.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, 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(102, 187, 106, 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(102, 187, 106, 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: #46a35e;
}
.mat-datepicker-content.mat-accent .mat-calendar-body-selected {
  background-color: #66bb6a;
  color: rgba(0, 0, 0, 0.87);
}
.mat-datepicker-content.mat-accent .mat-calendar-body-disabled > .mat-calendar-body-selected {
  background-color: rgba(102, 187, 106, 0.4);
}
.mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.87);
}
.mat-datepicker-content.mat-warn .mat-calendar-body-in-range::before {
  background: rgba(244, 67, 54, 0.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, 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(244, 67, 54, 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(244, 67, 54, 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: #46a35e;
}
.mat-datepicker-content.mat-warn .mat-calendar-body-selected {
  background-color: #f44336;
  color: white;
}
.mat-datepicker-content.mat-warn .mat-calendar-body-disabled > .mat-calendar-body-selected {
  background-color: rgba(244, 67, 54, 0.4);
}
.mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected {
  box-shadow: inset 0 0 0 1px white;
}
.mat-datepicker-content-touch {
  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-datepicker-toggle-active {
  color: #fbc02d;
}
.mat-datepicker-toggle-active.mat-accent {
  color: #66bb6a;
}
.mat-datepicker-toggle-active.mat-warn {
  color: #f44336;
}
.mat-date-range-input-inner[disabled] {
  color: rgba(0, 0, 0, 0.38);
}
.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: white;
  color: rgba(0, 0, 0, 0.87);
}
.mat-divider {
  border-top-color: rgba(0, 0, 0, 0.12);
}
.mat-divider-vertical {
  border-right-color: rgba(0, 0, 0, 0.12);
}
.mat-expansion-panel {
  background: white;
  color: rgba(0, 0, 0, 0.87);
}
.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-action-row {
  border-top-color: rgba(0, 0, 0, 0.12);
}
.mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]), .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]), .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]) {
  background: rgba(0, 0, 0, 0.04);
}
@media (hover: none) {
  .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover {
    background: white;
  }
}
.mat-expansion-panel-header-title {
  color: rgba(0, 0, 0, 0.87);
}
.mat-expansion-panel-header-description,
.mat-expansion-indicator::after {
  color: rgba(0, 0, 0, 0.54);
}
.mat-expansion-panel-header[aria-disabled=true] {
  color: rgba(0, 0, 0, 0.26);
}
.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(0, 0, 0, 0.6);
}
.mat-hint {
  color: rgba(0, 0, 0, 0.6);
}
.mat-form-field.mat-focused .mat-form-field-label {
  color: #fbc02d;
}
.mat-form-field.mat-focused .mat-form-field-label.mat-accent {
  color: #66bb6a;
}
.mat-form-field.mat-focused .mat-form-field-label.mat-warn {
  color: #f44336;
}
.mat-focused .mat-form-field-required-marker {
  color: #66bb6a;
}
.mat-form-field-ripple {
  background-color: rgba(0, 0, 0, 0.87);
}
.mat-form-field.mat-focused .mat-form-field-ripple {
  background-color: #fbc02d;
}
.mat-form-field.mat-focused .mat-form-field-ripple.mat-accent {
  background-color: #66bb6a;
}
.mat-form-field.mat-focused .mat-form-field-ripple.mat-warn {
  background-color: #f44336;
}
.mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix::after {
  color: #fbc02d;
}
.mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix::after {
  color: #66bb6a;
}
.mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix::after {
  color: #f44336;
}
.mat-form-field.mat-form-field-invalid .mat-form-field-label {
  color: #f44336;
}
.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: #f44336;
}
.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: #f44336;
}
.mat-error {
  color: #f44336;
}
.mat-form-field-appearance-legacy .mat-form-field-label {
  color: rgba(0, 0, 0, 0.54);
}
.mat-form-field-appearance-legacy .mat-hint {
  color: rgba(0, 0, 0, 0.54);
}
.mat-form-field-appearance-legacy .mat-form-field-underline {
  background-color: rgba(0, 0, 0, 0.42);
}
.mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 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(0, 0, 0, 0.42);
}
.mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 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(0, 0, 0, 0.04);
}
.mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex {
  background-color: rgba(0, 0, 0, 0.02);
}
.mat-form-field-appearance-fill .mat-form-field-underline::before {
  background-color: rgba(0, 0, 0, 0.42);
}
.mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-label {
  color: rgba(0, 0, 0, 0.38);
}
.mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline::before {
  background-color: transparent;
}
.mat-form-field-appearance-outline .mat-form-field-outline {
  color: rgba(0, 0, 0, 0.12);
}
.mat-form-field-appearance-outline .mat-form-field-outline-thick {
  color: rgba(0, 0, 0, 0.87);
}
.mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick {
  color: #fbc02d;
}
.mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick {
  color: #66bb6a;
}
.mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick {
  color: #f44336;
}
.mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick {
  color: #f44336;
}
.mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-label {
  color: rgba(0, 0, 0, 0.38);
}
.mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline {
  color: rgba(0, 0, 0, 0.06);
}
.mat-icon.mat-primary {
  color: #fbc02d;
}
.mat-icon.mat-accent {
  color: #66bb6a;
}
.mat-icon.mat-warn {
  color: #f44336;
}
.mat-form-field-type-mat-native-select .mat-form-field-infix::after {
  color: rgba(0, 0, 0, 0.54);
}
.mat-input-element:disabled,
.mat-form-field-type-mat-native-select.mat-form-field-disabled .mat-form-field-infix::after {
  color: rgba(0, 0, 0, 0.38);
}
.mat-input-element {
  caret-color: #fbc02d;
}
.mat-input-element::-moz-placeholder {
  color: rgba(0, 0, 0, 0.42);
}
.mat-input-element:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.42);
}
.mat-input-element::placeholder {
  color: rgba(0, 0, 0, 0.42);
}
.mat-input-element::-moz-placeholder {
  color: rgba(0, 0, 0, 0.42);
}
.mat-input-element::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.42);
}
.mat-input-element:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.42);
}
.mat-form-field.mat-accent .mat-input-element {
  caret-color: #66bb6a;
}
.mat-form-field.mat-warn .mat-input-element,
.mat-form-field-invalid .mat-input-element {
  caret-color: #f44336;
}
.mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix::after {
  color: #f44336;
}
.mat-list-base .mat-list-item {
  color: rgba(0, 0, 0, 0.87);
}
.mat-list-base .mat-list-option {
  color: rgba(0, 0, 0, 0.87);
}
.mat-list-base .mat-subheader {
  color: rgba(0, 0, 0, 0.54);
}
.mat-list-item-disabled {
  background-color: #eeeeee;
}
.mat-list-option:hover, .mat-list-option:focus,
.mat-nav-list .mat-list-item:hover,
.mat-nav-list .mat-list-item:focus,
.mat-action-list .mat-list-item:hover,
.mat-action-list .mat-list-item:focus {
  background: rgba(0, 0, 0, 0.04);
}
.mat-list-single-selected-option, .mat-list-single-selected-option:hover, .mat-list-single-selected-option:focus {
  background: rgba(0, 0, 0, 0.12);
}
.mat-menu-panel {
  background: white;
}
.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-item {
  background: transparent;
  color: rgba(0, 0, 0, 0.87);
}
.mat-menu-item[disabled], .mat-menu-item[disabled]::after {
  color: rgba(0, 0, 0, 0.38);
}
.mat-menu-item .mat-icon-no-color,
.mat-menu-item-submenu-trigger::after {
  color: rgba(0, 0, 0, 0.54);
}
.mat-menu-item:hover:not([disabled]),
.mat-menu-item.cdk-program-focused:not([disabled]),
.mat-menu-item.cdk-keyboard-focused:not([disabled]),
.mat-menu-item-highlighted:not([disabled]) {
  background: rgba(0, 0, 0, 0.04);
}
.mat-paginator {
  background: white;
}
.mat-paginator,
.mat-paginator-page-size .mat-select-trigger {
  color: rgba(0, 0, 0, 0.54);
}
.mat-paginator-decrement,
.mat-paginator-increment {
  border-top: 2px solid rgba(0, 0, 0, 0.54);
  border-right: 2px solid rgba(0, 0, 0, 0.54);
}
.mat-paginator-first,
.mat-paginator-last {
  border-top: 2px solid rgba(0, 0, 0, 0.54);
}
.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: rgba(0, 0, 0, 0.38);
}
.mat-paginator-container {
  min-height: 56px;
}
.mat-progress-bar-background {
  fill: #fff9c4;
}
.mat-progress-bar-buffer {
  background-color: #fff9c4;
}
.mat-progress-bar-fill::after {
  background-color: #fbc02d;
}
.mat-progress-bar.mat-accent .mat-progress-bar-background {
  fill: #c8e6c9;
}
.mat-progress-bar.mat-accent .mat-progress-bar-buffer {
  background-color: #c8e6c9;
}
.mat-progress-bar.mat-accent .mat-progress-bar-fill::after {
  background-color: #66bb6a;
}
.mat-progress-bar.mat-warn .mat-progress-bar-background {
  fill: #ffcdd2;
}
.mat-progress-bar.mat-warn .mat-progress-bar-buffer {
  background-color: #ffcdd2;
}
.mat-progress-bar.mat-warn .mat-progress-bar-fill::after {
  background-color: #f44336;
}
.mat-progress-spinner circle, .mat-spinner circle {
  stroke: #fbc02d;
}
.mat-progress-spinner.mat-accent circle, .mat-spinner.mat-accent circle {
  stroke: #66bb6a;
}
.mat-progress-spinner.mat-warn circle, .mat-spinner.mat-warn circle {
  stroke: #f44336;
}
.mat-radio-outer-circle {
  border-color: rgba(0, 0, 0, 0.54);
}
.mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle {
  border-color: #fbc02d;
}
.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: #fbc02d;
}
.mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle {
  border-color: #66bb6a;
}
.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: #66bb6a;
}
.mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle {
  border-color: #f44336;
}
.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: #f44336;
}
.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: rgba(0, 0, 0, 0.38);
}
.mat-radio-button.mat-radio-disabled .mat-radio-ripple .mat-ripple-element,
.mat-radio-button.mat-radio-disabled .mat-radio-inner-circle {
  background-color: rgba(0, 0, 0, 0.38);
}
.mat-radio-button.mat-radio-disabled .mat-radio-label-content {
  color: rgba(0, 0, 0, 0.38);
}
.mat-radio-button .mat-ripple-element {
  background-color: black;
}
.mat-select-value {
  color: rgba(0, 0, 0, 0.87);
}
.mat-select-placeholder {
  color: rgba(0, 0, 0, 0.42);
}
.mat-select-disabled .mat-select-value {
  color: rgba(0, 0, 0, 0.38);
}
.mat-select-arrow {
  color: rgba(0, 0, 0, 0.54);
}
.mat-select-panel {
  background: white;
}
.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-select-panel .mat-option.mat-selected:not(.mat-option-multiple) {
  background: rgba(0, 0, 0, 0.12);
}
.mat-form-field.mat-focused.mat-primary .mat-select-arrow {
  color: #fbc02d;
}
.mat-form-field.mat-focused.mat-accent .mat-select-arrow {
  color: #66bb6a;
}
.mat-form-field.mat-focused.mat-warn .mat-select-arrow {
  color: #f44336;
}
.mat-form-field .mat-select.mat-select-invalid .mat-select-arrow {
  color: #f44336;
}
.mat-form-field .mat-select.mat-select-disabled .mat-select-arrow {
  color: rgba(0, 0, 0, 0.38);
}
.mat-drawer-container {
  background-color: #fafafa;
  color: rgba(0, 0, 0, 0.87);
}
.mat-drawer {
  background-color: white;
  color: rgba(0, 0, 0, 0.87);
}
.mat-drawer.mat-drawer-push {
  background-color: white;
}
.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(0, 0, 0, 0.12);
}
.mat-drawer-side.mat-drawer-end {
  border-left: solid 1px rgba(0, 0, 0, 0.12);
  border-right: none;
}
[dir=rtl] .mat-drawer-side {
  border-left: solid 1px rgba(0, 0, 0, 0.12);
  border-right: none;
}
[dir=rtl] .mat-drawer-side.mat-drawer-end {
  border-left: none;
  border-right: solid 1px rgba(0, 0, 0, 0.12);
}
.mat-drawer-backdrop.mat-drawer-shown {
  background-color: rgba(0, 0, 0, 0.6);
}
.mat-slide-toggle.mat-checked .mat-slide-toggle-thumb {
  background-color: #66bb6a;
}
.mat-slide-toggle.mat-checked .mat-slide-toggle-bar {
  background-color: rgba(102, 187, 106, 0.54);
}
.mat-slide-toggle.mat-checked .mat-ripple-element {
  background-color: #66bb6a;
}
.mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb {
  background-color: #fbc02d;
}
.mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar {
  background-color: rgba(251, 192, 45, 0.54);
}
.mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element {
  background-color: #fbc02d;
}
.mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb {
  background-color: #f44336;
}
.mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar {
  background-color: rgba(244, 67, 54, 0.54);
}
.mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element {
  background-color: #f44336;
}
.mat-slide-toggle:not(.mat-checked) .mat-ripple-element {
  background-color: black;
}
.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: rgba(0, 0, 0, 0.38);
}
.mat-slider-track-background {
  background-color: rgba(0, 0, 0, 0.26);
}
.mat-primary .mat-slider-track-fill,
.mat-primary .mat-slider-thumb,
.mat-primary .mat-slider-thumb-label {
  background-color: #fbc02d;
}
.mat-primary .mat-slider-thumb-label-text {
  color: rgba(0, 0, 0, 0.87);
}
.mat-primary .mat-slider-focus-ring {
  background-color: rgba(251, 192, 45, 0.2);
}
.mat-accent .mat-slider-track-fill,
.mat-accent .mat-slider-thumb,
.mat-accent .mat-slider-thumb-label {
  background-color: #66bb6a;
}
.mat-accent .mat-slider-thumb-label-text {
  color: rgba(0, 0, 0, 0.87);
}
.mat-accent .mat-slider-focus-ring {
  background-color: rgba(102, 187, 106, 0.2);
}
.mat-warn .mat-slider-track-fill,
.mat-warn .mat-slider-thumb,
.mat-warn .mat-slider-thumb-label {
  background-color: #f44336;
}
.mat-warn .mat-slider-thumb-label-text {
  color: white;
}
.mat-warn .mat-slider-focus-ring {
  background-color: rgba(244, 67, 54, 0.2);
}
.mat-slider:hover .mat-slider-track-background,
.cdk-focused .mat-slider-track-background {
  background-color: rgba(0, 0, 0, 0.38);
}
.mat-slider-disabled .mat-slider-track-background,
.mat-slider-disabled .mat-slider-track-fill,
.mat-slider-disabled .mat-slider-thumb {
  background-color: rgba(0, 0, 0, 0.26);
}
.mat-slider-disabled:hover .mat-slider-track-background {
  background-color: rgba(0, 0, 0, 0.26);
}
.mat-slider-min-value .mat-slider-focus-ring {
  background-color: rgba(0, 0, 0, 0.12);
}
.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,
.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label {
  background-color: rgba(0, 0, 0, 0.87);
}
.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,
.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label {
  background-color: rgba(0, 0, 0, 0.26);
}
.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb {
  border-color: rgba(0, 0, 0, 0.26);
  background-color: transparent;
}
.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb, .mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb {
  border-color: rgba(0, 0, 0, 0.38);
}
.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb, .mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb {
  border-color: rgba(0, 0, 0, 0.26);
}
.mat-slider-has-ticks .mat-slider-wrapper::after {
  border-color: rgba(0, 0, 0, 0.7);
}
.mat-slider-horizontal .mat-slider-ticks {
  background-image: repeating-linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);
  background-image: -moz-repeating-linear-gradient(0.0001deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);
}
.mat-slider-vertical .mat-slider-ticks {
  background-image: repeating-linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);
}
.mat-step-header.cdk-keyboard-focused, .mat-step-header.cdk-program-focused, .mat-step-header:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
@media (hover: none) {
  .mat-step-header:hover {
    background: none;
  }
}
.mat-step-header .mat-step-label,
.mat-step-header .mat-step-optional {
  color: rgba(0, 0, 0, 0.54);
}
.mat-step-header .mat-step-icon {
  background-color: rgba(0, 0, 0, 0.54);
  color: rgba(0, 0, 0, 0.87);
}
.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: #fbc02d;
  color: rgba(0, 0, 0, 0.87);
}
.mat-step-header.mat-accent .mat-step-icon {
  color: rgba(0, 0, 0, 0.87);
}
.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: #66bb6a;
  color: rgba(0, 0, 0, 0.87);
}
.mat-step-header.mat-warn .mat-step-icon {
  color: white;
}
.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: #f44336;
  color: white;
}
.mat-step-header .mat-step-icon-state-error {
  background-color: transparent;
  color: #f44336;
}
.mat-step-header .mat-step-label.mat-step-label-active {
  color: rgba(0, 0, 0, 0.87);
}
.mat-step-header .mat-step-label.mat-step-label-error {
  color: #f44336;
}
.mat-stepper-horizontal, .mat-stepper-vertical {
  background-color: white;
}
.mat-stepper-vertical-line::before {
  border-left-color: rgba(0, 0, 0, 0.12);
}
.mat-horizontal-stepper-header::before,
.mat-horizontal-stepper-header::after,
.mat-stepper-horizontal-line {
  border-top-color: rgba(0, 0, 0, 0.12);
}
.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: #757575;
}
.mat-tab-nav-bar,
.mat-tab-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.mat-tab-group-inverted-header .mat-tab-nav-bar,
.mat-tab-group-inverted-header .mat-tab-header {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  border-bottom: none;
}
.mat-tab-label, .mat-tab-link {
  color: rgba(0, 0, 0, 0.87);
}
.mat-tab-label.mat-tab-disabled, .mat-tab-link.mat-tab-disabled {
  color: rgba(0, 0, 0, 0.38);
}
.mat-tab-header-pagination-chevron {
  border-color: rgba(0, 0, 0, 0.87);
}
.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: rgba(0, 0, 0, 0.38);
}
.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(255, 249, 196, 0.3);
}
.mat-tab-group.mat-primary .mat-ink-bar, .mat-tab-nav-bar.mat-primary .mat-ink-bar {
  background-color: #fbc02d;
}
.mat-tab-group.mat-primary.mat-background-primary .mat-ink-bar, .mat-tab-nav-bar.mat-primary.mat-background-primary .mat-ink-bar {
  background-color: rgba(0, 0, 0, 0.87);
}
.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(200, 230, 201, 0.3);
}
.mat-tab-group.mat-accent .mat-ink-bar, .mat-tab-nav-bar.mat-accent .mat-ink-bar {
  background-color: #66bb6a;
}
.mat-tab-group.mat-accent.mat-background-accent .mat-ink-bar, .mat-tab-nav-bar.mat-accent.mat-background-accent .mat-ink-bar {
  background-color: rgba(0, 0, 0, 0.87);
}
.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(255, 205, 210, 0.3);
}
.mat-tab-group.mat-warn .mat-ink-bar, .mat-tab-nav-bar.mat-warn .mat-ink-bar {
  background-color: #f44336;
}
.mat-tab-group.mat-warn.mat-background-warn .mat-ink-bar, .mat-tab-nav-bar.mat-warn.mat-background-warn .mat-ink-bar {
  background-color: white;
}
.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(255, 249, 196, 0.3);
}
.mat-tab-group.mat-background-primary .mat-tab-header, .mat-tab-group.mat-background-primary .mat-tab-links, .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-links, .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination {
  background-color: #fbc02d;
}
.mat-tab-group.mat-background-primary .mat-tab-label, .mat-tab-group.mat-background-primary .mat-tab-link, .mat-tab-nav-bar.mat-background-primary .mat-tab-label, .mat-tab-nav-bar.mat-background-primary .mat-tab-link {
  color: rgba(0, 0, 0, 0.87);
}
.mat-tab-group.mat-background-primary .mat-tab-label.mat-tab-disabled, .mat-tab-group.mat-background-primary .mat-tab-link.mat-tab-disabled, .mat-tab-nav-bar.mat-background-primary .mat-tab-label.mat-tab-disabled, .mat-tab-nav-bar.mat-background-primary .mat-tab-link.mat-tab-disabled {
  color: rgba(0, 0, 0, 0.4);
}
.mat-tab-group.mat-background-primary .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-chevron {
  border-color: rgba(0, 0, 0, 0.87);
}
.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-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: rgba(0, 0, 0, 0.4);
}
.mat-tab-group.mat-background-primary .mat-ripple-element, .mat-tab-nav-bar.mat-background-primary .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.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(200, 230, 201, 0.3);
}
.mat-tab-group.mat-background-accent .mat-tab-header, .mat-tab-group.mat-background-accent .mat-tab-links, .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-links, .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination {
  background-color: #66bb6a;
}
.mat-tab-group.mat-background-accent .mat-tab-label, .mat-tab-group.mat-background-accent .mat-tab-link, .mat-tab-nav-bar.mat-background-accent .mat-tab-label, .mat-tab-nav-bar.mat-background-accent .mat-tab-link {
  color: rgba(0, 0, 0, 0.87);
}
.mat-tab-group.mat-background-accent .mat-tab-label.mat-tab-disabled, .mat-tab-group.mat-background-accent .mat-tab-link.mat-tab-disabled, .mat-tab-nav-bar.mat-background-accent .mat-tab-label.mat-tab-disabled, .mat-tab-nav-bar.mat-background-accent .mat-tab-link.mat-tab-disabled {
  color: rgba(0, 0, 0, 0.4);
}
.mat-tab-group.mat-background-accent .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-chevron {
  border-color: rgba(0, 0, 0, 0.87);
}
.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-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: rgba(0, 0, 0, 0.4);
}
.mat-tab-group.mat-background-accent .mat-ripple-element, .mat-tab-nav-bar.mat-background-accent .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.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(255, 205, 210, 0.3);
}
.mat-tab-group.mat-background-warn .mat-tab-header, .mat-tab-group.mat-background-warn .mat-tab-links, .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-links, .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination {
  background-color: #f44336;
}
.mat-tab-group.mat-background-warn .mat-tab-label, .mat-tab-group.mat-background-warn .mat-tab-link, .mat-tab-nav-bar.mat-background-warn .mat-tab-label, .mat-tab-nav-bar.mat-background-warn .mat-tab-link {
  color: white;
}
.mat-tab-group.mat-background-warn .mat-tab-label.mat-tab-disabled, .mat-tab-group.mat-background-warn .mat-tab-link.mat-tab-disabled, .mat-tab-nav-bar.mat-background-warn .mat-tab-label.mat-tab-disabled, .mat-tab-nav-bar.mat-background-warn .mat-tab-link.mat-tab-disabled {
  color: rgba(255, 255, 255, 0.4);
}
.mat-tab-group.mat-background-warn .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-chevron {
  border-color: white;
}
.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-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: rgba(255, 255, 255, 0.4);
}
.mat-tab-group.mat-background-warn .mat-ripple-element, .mat-tab-nav-bar.mat-background-warn .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.12);
}
.mat-toolbar {
  background: whitesmoke;
  color: rgba(0, 0, 0, 0.87);
}
.mat-toolbar.mat-primary {
  background: #fbc02d;
  color: rgba(0, 0, 0, 0.87);
}
.mat-toolbar.mat-accent {
  background: #66bb6a;
  color: rgba(0, 0, 0, 0.87);
}
.mat-toolbar.mat-warn {
  background: #f44336;
  color: white;
}
.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-tooltip {
  background: rgba(97, 97, 97, 0.9);
}
.mat-tree {
  background: white;
}
.mat-tree-node,
.mat-nested-tree-node {
  color: rgba(0, 0, 0, 0.87);
}
.mat-tree-node {
  min-height: 48px;
}
.mat-snack-bar-container {
  color: rgba(255, 255, 255, 0.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: #66bb6a;
}
.theme-nada-wrapper .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.1);
}
.theme-nada-wrapper .mat-option {
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .mat-option:hover:not(.mat-option-disabled), .theme-nada-wrapper .mat-option:focus:not(.mat-option-disabled) {
  background: rgba(0, 0, 0, 0.04);
}
.theme-nada-wrapper .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled) {
  background: rgba(0, 0, 0, 0.04);
}
.theme-nada-wrapper .mat-option.mat-active {
  background: rgba(0, 0, 0, 0.04);
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .mat-option.mat-option-disabled {
  color: rgba(0, 0, 0, 0.38);
}
.theme-nada-wrapper .mat-primary .mat-option.mat-selected:not(.mat-option-disabled) {
  color: #b71c1c;
}
.theme-nada-wrapper .mat-accent .mat-option.mat-selected:not(.mat-option-disabled) {
  color: #66bb6a;
}
.theme-nada-wrapper .mat-warn .mat-option.mat-selected:not(.mat-option-disabled) {
  color: #bdbdbd;
}
.theme-nada-wrapper .mat-optgroup-label {
  color: rgba(0, 0, 0, 0.54);
}
.theme-nada-wrapper .mat-optgroup-disabled .mat-optgroup-label {
  color: rgba(0, 0, 0, 0.38);
}
.theme-nada-wrapper .mat-pseudo-checkbox {
  color: rgba(0, 0, 0, 0.54);
}
.theme-nada-wrapper .mat-pseudo-checkbox::after {
  color: #fafafa;
}
.theme-nada-wrapper .mat-pseudo-checkbox-disabled {
  color: #b0b0b0;
}
.theme-nada-wrapper .mat-primary .mat-pseudo-checkbox-checked,
.theme-nada-wrapper .mat-primary .mat-pseudo-checkbox-indeterminate {
  background: #b71c1c;
}
.theme-nada-wrapper .mat-pseudo-checkbox-checked,
.theme-nada-wrapper .mat-pseudo-checkbox-indeterminate,
.theme-nada-wrapper .mat-accent .mat-pseudo-checkbox-checked,
.theme-nada-wrapper .mat-accent .mat-pseudo-checkbox-indeterminate {
  background: #66bb6a;
}
.theme-nada-wrapper .mat-warn .mat-pseudo-checkbox-checked,
.theme-nada-wrapper .mat-warn .mat-pseudo-checkbox-indeterminate {
  background: #bdbdbd;
}
.theme-nada-wrapper .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,
.theme-nada-wrapper .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled {
  background: #b0b0b0;
}
.theme-nada-wrapper .mat-app-background, .theme-nada-wrapper.mat-app-background {
  background-color: #fafafa;
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .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);
}
.theme-nada-wrapper .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);
}
.theme-nada-wrapper .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);
}
.theme-nada-wrapper .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);
}
.theme-nada-wrapper .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);
}
.theme-nada-wrapper .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);
}
.theme-nada-wrapper .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);
}
.theme-nada-wrapper .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);
}
.theme-nada-wrapper .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);
}
.theme-nada-wrapper .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);
}
.theme-nada-wrapper .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);
}
.theme-nada-wrapper .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);
}
.theme-nada-wrapper .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);
}
.theme-nada-wrapper .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);
}
.theme-nada-wrapper .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);
}
.theme-nada-wrapper .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);
}
.theme-nada-wrapper .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);
}
.theme-nada-wrapper .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);
}
.theme-nada-wrapper .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);
}
.theme-nada-wrapper .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);
}
.theme-nada-wrapper .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);
}
.theme-nada-wrapper .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);
}
.theme-nada-wrapper .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);
}
.theme-nada-wrapper .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);
}
.theme-nada-wrapper .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;
}
.theme-nada-wrapper .mat-autocomplete-panel {
  background: white;
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .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);
}
.theme-nada-wrapper .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover) {
  background: white;
}
.theme-nada-wrapper .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled) {
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .mat-badge-content {
  color: white;
  background: #b71c1c;
}
.cdk-high-contrast-active .theme-nada-wrapper .mat-badge-content {
  outline: solid 1px;
  border-radius: 0;
}
.theme-nada-wrapper .mat-badge-accent .mat-badge-content {
  background: #66bb6a;
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .mat-badge-warn .mat-badge-content {
  color: rgba(0, 0, 0, 0.87);
  background: #bdbdbd;
}
.theme-nada-wrapper .mat-badge {
  position: relative;
}
.theme-nada-wrapper .mat-badge-hidden .mat-badge-content {
  display: none;
}
.theme-nada-wrapper .mat-badge-disabled .mat-badge-content {
  background: #b9b9b9;
  color: rgba(0, 0, 0, 0.38);
}
.theme-nada-wrapper .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;
}
.theme-nada-wrapper .ng-animate-disabled .mat-badge-content,
.theme-nada-wrapper .mat-badge-content._mat-animation-noopable {
  transition: none;
}
.theme-nada-wrapper .mat-badge-content.mat-badge-active {
  transform: none;
}
.theme-nada-wrapper .mat-badge-small .mat-badge-content {
  width: 16px;
  height: 16px;
  line-height: 16px;
}
.theme-nada-wrapper .mat-badge-small.mat-badge-above .mat-badge-content {
  top: -8px;
}
.theme-nada-wrapper .mat-badge-small.mat-badge-below .mat-badge-content {
  bottom: -8px;
}
.theme-nada-wrapper .mat-badge-small.mat-badge-before .mat-badge-content {
  left: -16px;
}
[dir=rtl] .theme-nada-wrapper .mat-badge-small.mat-badge-before .mat-badge-content {
  left: auto;
  right: -16px;
}
.theme-nada-wrapper .mat-badge-small.mat-badge-after .mat-badge-content {
  right: -16px;
}
[dir=rtl] .theme-nada-wrapper .mat-badge-small.mat-badge-after .mat-badge-content {
  right: auto;
  left: -16px;
}
.theme-nada-wrapper .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: -8px;
}
[dir=rtl] .theme-nada-wrapper .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: auto;
  right: -8px;
}
.theme-nada-wrapper .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: -8px;
}
[dir=rtl] .theme-nada-wrapper .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: auto;
  left: -8px;
}
.theme-nada-wrapper .mat-badge-medium .mat-badge-content {
  width: 22px;
  height: 22px;
  line-height: 22px;
}
.theme-nada-wrapper .mat-badge-medium.mat-badge-above .mat-badge-content {
  top: -11px;
}
.theme-nada-wrapper .mat-badge-medium.mat-badge-below .mat-badge-content {
  bottom: -11px;
}
.theme-nada-wrapper .mat-badge-medium.mat-badge-before .mat-badge-content {
  left: -22px;
}
[dir=rtl] .theme-nada-wrapper .mat-badge-medium.mat-badge-before .mat-badge-content {
  left: auto;
  right: -22px;
}
.theme-nada-wrapper .mat-badge-medium.mat-badge-after .mat-badge-content {
  right: -22px;
}
[dir=rtl] .theme-nada-wrapper .mat-badge-medium.mat-badge-after .mat-badge-content {
  right: auto;
  left: -22px;
}
.theme-nada-wrapper .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: -11px;
}
[dir=rtl] .theme-nada-wrapper .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: auto;
  right: -11px;
}
.theme-nada-wrapper .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: -11px;
}
[dir=rtl] .theme-nada-wrapper .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: auto;
  left: -11px;
}
.theme-nada-wrapper .mat-badge-large .mat-badge-content {
  width: 28px;
  height: 28px;
  line-height: 28px;
}
.theme-nada-wrapper .mat-badge-large.mat-badge-above .mat-badge-content {
  top: -14px;
}
.theme-nada-wrapper .mat-badge-large.mat-badge-below .mat-badge-content {
  bottom: -14px;
}
.theme-nada-wrapper .mat-badge-large.mat-badge-before .mat-badge-content {
  left: -28px;
}
[dir=rtl] .theme-nada-wrapper .mat-badge-large.mat-badge-before .mat-badge-content {
  left: auto;
  right: -28px;
}
.theme-nada-wrapper .mat-badge-large.mat-badge-after .mat-badge-content {
  right: -28px;
}
[dir=rtl] .theme-nada-wrapper .mat-badge-large.mat-badge-after .mat-badge-content {
  right: auto;
  left: -28px;
}
.theme-nada-wrapper .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: -14px;
}
[dir=rtl] .theme-nada-wrapper .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: auto;
  right: -14px;
}
.theme-nada-wrapper .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: -14px;
}
[dir=rtl] .theme-nada-wrapper .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: auto;
  left: -14px;
}
.theme-nada-wrapper .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: white;
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .mat-button, .theme-nada-wrapper .mat-icon-button, .theme-nada-wrapper .mat-stroked-button {
  color: inherit;
  background: transparent;
}
.theme-nada-wrapper .mat-button.mat-primary, .theme-nada-wrapper .mat-icon-button.mat-primary, .theme-nada-wrapper .mat-stroked-button.mat-primary {
  color: #b71c1c;
}
.theme-nada-wrapper .mat-button.mat-accent, .theme-nada-wrapper .mat-icon-button.mat-accent, .theme-nada-wrapper .mat-stroked-button.mat-accent {
  color: #66bb6a;
}
.theme-nada-wrapper .mat-button.mat-warn, .theme-nada-wrapper .mat-icon-button.mat-warn, .theme-nada-wrapper .mat-stroked-button.mat-warn {
  color: #bdbdbd;
}
.theme-nada-wrapper .mat-button.mat-primary.mat-button-disabled, .theme-nada-wrapper .mat-button.mat-accent.mat-button-disabled, .theme-nada-wrapper .mat-button.mat-warn.mat-button-disabled, .theme-nada-wrapper .mat-button.mat-button-disabled.mat-button-disabled, .theme-nada-wrapper .mat-icon-button.mat-primary.mat-button-disabled, .theme-nada-wrapper .mat-icon-button.mat-accent.mat-button-disabled, .theme-nada-wrapper .mat-icon-button.mat-warn.mat-button-disabled, .theme-nada-wrapper .mat-icon-button.mat-button-disabled.mat-button-disabled, .theme-nada-wrapper .mat-stroked-button.mat-primary.mat-button-disabled, .theme-nada-wrapper .mat-stroked-button.mat-accent.mat-button-disabled, .theme-nada-wrapper .mat-stroked-button.mat-warn.mat-button-disabled, .theme-nada-wrapper .mat-stroked-button.mat-button-disabled.mat-button-disabled {
  color: rgba(0, 0, 0, 0.26);
}
.theme-nada-wrapper .mat-button.mat-primary .mat-button-focus-overlay, .theme-nada-wrapper .mat-icon-button.mat-primary .mat-button-focus-overlay, .theme-nada-wrapper .mat-stroked-button.mat-primary .mat-button-focus-overlay {
  background-color: #b71c1c;
}
.theme-nada-wrapper .mat-button.mat-accent .mat-button-focus-overlay, .theme-nada-wrapper .mat-icon-button.mat-accent .mat-button-focus-overlay, .theme-nada-wrapper .mat-stroked-button.mat-accent .mat-button-focus-overlay {
  background-color: #66bb6a;
}
.theme-nada-wrapper .mat-button.mat-warn .mat-button-focus-overlay, .theme-nada-wrapper .mat-icon-button.mat-warn .mat-button-focus-overlay, .theme-nada-wrapper .mat-stroked-button.mat-warn .mat-button-focus-overlay {
  background-color: #bdbdbd;
}
.theme-nada-wrapper .mat-button.mat-button-disabled .mat-button-focus-overlay, .theme-nada-wrapper .mat-icon-button.mat-button-disabled .mat-button-focus-overlay, .theme-nada-wrapper .mat-stroked-button.mat-button-disabled .mat-button-focus-overlay {
  background-color: transparent;
}
.theme-nada-wrapper .mat-button .mat-ripple-element, .theme-nada-wrapper .mat-icon-button .mat-ripple-element, .theme-nada-wrapper .mat-stroked-button .mat-ripple-element {
  opacity: 0.1;
  background-color: currentColor;
}
.theme-nada-wrapper .mat-button-focus-overlay {
  background: black;
}
.theme-nada-wrapper .mat-stroked-button:not(.mat-button-disabled) {
  border-color: rgba(0, 0, 0, 0.12);
}
.theme-nada-wrapper .mat-flat-button, .theme-nada-wrapper .mat-raised-button, .theme-nada-wrapper .mat-fab, .theme-nada-wrapper .mat-mini-fab {
  color: rgba(0, 0, 0, 0.87);
  background-color: white;
}
.theme-nada-wrapper .mat-flat-button.mat-primary, .theme-nada-wrapper .mat-raised-button.mat-primary, .theme-nada-wrapper .mat-fab.mat-primary, .theme-nada-wrapper .mat-mini-fab.mat-primary {
  color: white;
}
.theme-nada-wrapper .mat-flat-button.mat-accent, .theme-nada-wrapper .mat-raised-button.mat-accent, .theme-nada-wrapper .mat-fab.mat-accent, .theme-nada-wrapper .mat-mini-fab.mat-accent {
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .mat-flat-button.mat-warn, .theme-nada-wrapper .mat-raised-button.mat-warn, .theme-nada-wrapper .mat-fab.mat-warn, .theme-nada-wrapper .mat-mini-fab.mat-warn {
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .mat-flat-button.mat-primary.mat-button-disabled, .theme-nada-wrapper .mat-flat-button.mat-accent.mat-button-disabled, .theme-nada-wrapper .mat-flat-button.mat-warn.mat-button-disabled, .theme-nada-wrapper .mat-flat-button.mat-button-disabled.mat-button-disabled, .theme-nada-wrapper .mat-raised-button.mat-primary.mat-button-disabled, .theme-nada-wrapper .mat-raised-button.mat-accent.mat-button-disabled, .theme-nada-wrapper .mat-raised-button.mat-warn.mat-button-disabled, .theme-nada-wrapper .mat-raised-button.mat-button-disabled.mat-button-disabled, .theme-nada-wrapper .mat-fab.mat-primary.mat-button-disabled, .theme-nada-wrapper .mat-fab.mat-accent.mat-button-disabled, .theme-nada-wrapper .mat-fab.mat-warn.mat-button-disabled, .theme-nada-wrapper .mat-fab.mat-button-disabled.mat-button-disabled, .theme-nada-wrapper .mat-mini-fab.mat-primary.mat-button-disabled, .theme-nada-wrapper .mat-mini-fab.mat-accent.mat-button-disabled, .theme-nada-wrapper .mat-mini-fab.mat-warn.mat-button-disabled, .theme-nada-wrapper .mat-mini-fab.mat-button-disabled.mat-button-disabled {
  color: rgba(0, 0, 0, 0.26);
}
.theme-nada-wrapper .mat-flat-button.mat-primary, .theme-nada-wrapper .mat-raised-button.mat-primary, .theme-nada-wrapper .mat-fab.mat-primary, .theme-nada-wrapper .mat-mini-fab.mat-primary {
  background-color: #b71c1c;
}
.theme-nada-wrapper .mat-flat-button.mat-accent, .theme-nada-wrapper .mat-raised-button.mat-accent, .theme-nada-wrapper .mat-fab.mat-accent, .theme-nada-wrapper .mat-mini-fab.mat-accent {
  background-color: #66bb6a;
}
.theme-nada-wrapper .mat-flat-button.mat-warn, .theme-nada-wrapper .mat-raised-button.mat-warn, .theme-nada-wrapper .mat-fab.mat-warn, .theme-nada-wrapper .mat-mini-fab.mat-warn {
  background-color: #bdbdbd;
}
.theme-nada-wrapper .mat-flat-button.mat-primary.mat-button-disabled, .theme-nada-wrapper .mat-flat-button.mat-accent.mat-button-disabled, .theme-nada-wrapper .mat-flat-button.mat-warn.mat-button-disabled, .theme-nada-wrapper .mat-flat-button.mat-button-disabled.mat-button-disabled, .theme-nada-wrapper .mat-raised-button.mat-primary.mat-button-disabled, .theme-nada-wrapper .mat-raised-button.mat-accent.mat-button-disabled, .theme-nada-wrapper .mat-raised-button.mat-warn.mat-button-disabled, .theme-nada-wrapper .mat-raised-button.mat-button-disabled.mat-button-disabled, .theme-nada-wrapper .mat-fab.mat-primary.mat-button-disabled, .theme-nada-wrapper .mat-fab.mat-accent.mat-button-disabled, .theme-nada-wrapper .mat-fab.mat-warn.mat-button-disabled, .theme-nada-wrapper .mat-fab.mat-button-disabled.mat-button-disabled, .theme-nada-wrapper .mat-mini-fab.mat-primary.mat-button-disabled, .theme-nada-wrapper .mat-mini-fab.mat-accent.mat-button-disabled, .theme-nada-wrapper .mat-mini-fab.mat-warn.mat-button-disabled, .theme-nada-wrapper .mat-mini-fab.mat-button-disabled.mat-button-disabled {
  background-color: rgba(0, 0, 0, 0.12);
}
.theme-nada-wrapper .mat-flat-button.mat-primary .mat-ripple-element, .theme-nada-wrapper .mat-raised-button.mat-primary .mat-ripple-element, .theme-nada-wrapper .mat-fab.mat-primary .mat-ripple-element, .theme-nada-wrapper .mat-mini-fab.mat-primary .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.1);
}
.theme-nada-wrapper .mat-flat-button.mat-accent .mat-ripple-element, .theme-nada-wrapper .mat-raised-button.mat-accent .mat-ripple-element, .theme-nada-wrapper .mat-fab.mat-accent .mat-ripple-element, .theme-nada-wrapper .mat-mini-fab.mat-accent .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.1);
}
.theme-nada-wrapper .mat-flat-button.mat-warn .mat-ripple-element, .theme-nada-wrapper .mat-raised-button.mat-warn .mat-ripple-element, .theme-nada-wrapper .mat-fab.mat-warn .mat-ripple-element, .theme-nada-wrapper .mat-mini-fab.mat-warn .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.1);
}
.theme-nada-wrapper .mat-stroked-button:not([class*=mat-elevation-z]), .theme-nada-wrapper .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);
}
.theme-nada-wrapper .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);
}
.theme-nada-wrapper .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);
}
.theme-nada-wrapper .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);
}
.theme-nada-wrapper .mat-fab:not([class*=mat-elevation-z]), .theme-nada-wrapper .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);
}
.theme-nada-wrapper .mat-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]), .theme-nada-wrapper .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);
}
.theme-nada-wrapper .mat-fab.mat-button-disabled:not([class*=mat-elevation-z]), .theme-nada-wrapper .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);
}
.theme-nada-wrapper .mat-button-toggle-standalone,
.theme-nada-wrapper .mat-button-toggle-group {
  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);
}
.theme-nada-wrapper .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,
.theme-nada-wrapper .mat-button-toggle-group-appearance-standard {
  box-shadow: none;
}
.theme-nada-wrapper .mat-button-toggle {
  color: rgba(0, 0, 0, 0.38);
}
.theme-nada-wrapper .mat-button-toggle .mat-button-toggle-focus-overlay {
  background-color: rgba(0, 0, 0, 0.12);
}
.theme-nada-wrapper .mat-button-toggle-appearance-standard {
  color: rgba(0, 0, 0, 0.87);
  background: white;
}
.theme-nada-wrapper .mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay {
  background-color: black;
}
.theme-nada-wrapper .mat-button-toggle-group-appearance-standard .mat-button-toggle + .mat-button-toggle {
  border-left: solid 1px rgba(0, 0, 0, 0.12);
}
.theme-nada-wrapper [dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle + .mat-button-toggle {
  border-left: none;
  border-right: solid 1px rgba(0, 0, 0, 0.12);
}
.theme-nada-wrapper .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 rgba(0, 0, 0, 0.12);
}
.theme-nada-wrapper .mat-button-toggle-checked {
  background-color: #e0e0e0;
  color: rgba(0, 0, 0, 0.54);
}
.theme-nada-wrapper .mat-button-toggle-checked.mat-button-toggle-appearance-standard {
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .mat-button-toggle-disabled {
  color: rgba(0, 0, 0, 0.26);
  background-color: #eeeeee;
}
.theme-nada-wrapper .mat-button-toggle-disabled.mat-button-toggle-appearance-standard {
  background: white;
}
.theme-nada-wrapper .mat-button-toggle-disabled.mat-button-toggle-checked {
  background-color: #bdbdbd;
}
.theme-nada-wrapper .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,
.theme-nada-wrapper .mat-button-toggle-group-appearance-standard {
  border: solid 1px rgba(0, 0, 0, 0.12);
}
.theme-nada-wrapper .mat-card {
  background: white;
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .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);
}
.theme-nada-wrapper .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);
}
.theme-nada-wrapper .mat-card-subtitle {
  color: rgba(0, 0, 0, 0.54);
}
.theme-nada-wrapper .mat-checkbox-frame {
  border-color: rgba(0, 0, 0, 0.54);
}
.theme-nada-wrapper .mat-checkbox-checkmark {
  fill: #fafafa;
}
.theme-nada-wrapper .mat-checkbox-checkmark-path {
  stroke: #fafafa !important;
}
.theme-nada-wrapper .mat-checkbox-mixedmark {
  background-color: #fafafa;
}
.theme-nada-wrapper .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background, .theme-nada-wrapper .mat-checkbox-checked.mat-primary .mat-checkbox-background {
  background-color: #b71c1c;
}
.theme-nada-wrapper .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background, .theme-nada-wrapper .mat-checkbox-checked.mat-accent .mat-checkbox-background {
  background-color: #66bb6a;
}
.theme-nada-wrapper .mat-checkbox-indeterminate.mat-warn .mat-checkbox-background, .theme-nada-wrapper .mat-checkbox-checked.mat-warn .mat-checkbox-background {
  background-color: #bdbdbd;
}
.theme-nada-wrapper .mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background, .theme-nada-wrapper .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background {
  background-color: #b0b0b0;
}
.theme-nada-wrapper .mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame {
  border-color: #b0b0b0;
}
.theme-nada-wrapper .mat-checkbox-disabled .mat-checkbox-label {
  color: rgba(0, 0, 0, 0.54);
}
.theme-nada-wrapper .mat-checkbox .mat-ripple-element {
  background-color: black;
}
.theme-nada-wrapper .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,
.theme-nada-wrapper .mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element {
  background: #b71c1c;
}
.theme-nada-wrapper .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,
.theme-nada-wrapper .mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element {
  background: #66bb6a;
}
.theme-nada-wrapper .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,
.theme-nada-wrapper .mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element {
  background: #bdbdbd;
}
.theme-nada-wrapper .mat-chip.mat-standard-chip {
  background-color: #e0e0e0;
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .mat-chip.mat-standard-chip .mat-chip-remove {
  color: rgba(0, 0, 0, 0.87);
  opacity: 0.4;
}
.theme-nada-wrapper .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);
}
.theme-nada-wrapper .mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover {
  opacity: 0.54;
}
.theme-nada-wrapper .mat-chip.mat-standard-chip.mat-chip-disabled {
  opacity: 0.4;
}
.theme-nada-wrapper .mat-chip.mat-standard-chip::after {
  background: black;
}
.theme-nada-wrapper .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary {
  background-color: #b71c1c;
  color: white;
}
.theme-nada-wrapper .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove {
  color: white;
  opacity: 0.4;
}
.theme-nada-wrapper .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.1);
}
.theme-nada-wrapper .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn {
  background-color: #bdbdbd;
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove {
  color: rgba(0, 0, 0, 0.87);
  opacity: 0.4;
}
.theme-nada-wrapper .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.1);
}
.theme-nada-wrapper .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent {
  background-color: #66bb6a;
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove {
  color: rgba(0, 0, 0, 0.87);
  opacity: 0.4;
}
.theme-nada-wrapper .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.1);
}
.theme-nada-wrapper .mat-table {
  background: white;
}
.theme-nada-wrapper .mat-table thead, .theme-nada-wrapper .mat-table tbody, .theme-nada-wrapper .mat-table tfoot,
.theme-nada-wrapper mat-header-row, .theme-nada-wrapper mat-row, .theme-nada-wrapper mat-footer-row,
.theme-nada-wrapper [mat-header-row], .theme-nada-wrapper [mat-row], .theme-nada-wrapper [mat-footer-row],
.theme-nada-wrapper .mat-table-sticky {
  background: inherit;
}
.theme-nada-wrapper mat-row, .theme-nada-wrapper mat-header-row, .theme-nada-wrapper mat-footer-row,
.theme-nada-wrapper th.mat-header-cell, .theme-nada-wrapper td.mat-cell, .theme-nada-wrapper td.mat-footer-cell {
  border-bottom-color: rgba(0, 0, 0, 0.12);
}
.theme-nada-wrapper .mat-header-cell {
  color: rgba(0, 0, 0, 0.54);
}
.theme-nada-wrapper .mat-cell, .theme-nada-wrapper .mat-footer-cell {
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .mat-calendar-arrow {
  border-top-color: rgba(0, 0, 0, 0.54);
}
.theme-nada-wrapper .mat-datepicker-toggle,
.theme-nada-wrapper .mat-datepicker-content .mat-calendar-next-button,
.theme-nada-wrapper .mat-datepicker-content .mat-calendar-previous-button {
  color: rgba(0, 0, 0, 0.54);
}
.theme-nada-wrapper .mat-calendar-table-header {
  color: rgba(0, 0, 0, 0.38);
}
.theme-nada-wrapper .mat-calendar-table-header-divider::after {
  background: rgba(0, 0, 0, 0.12);
}
.theme-nada-wrapper .mat-calendar-body-label {
  color: rgba(0, 0, 0, 0.54);
}
.theme-nada-wrapper .mat-calendar-body-cell-content,
.theme-nada-wrapper .mat-date-range-input-separator {
  color: rgba(0, 0, 0, 0.87);
  border-color: transparent;
}
.theme-nada-wrapper .mat-calendar-body-disabled > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  color: rgba(0, 0, 0, 0.38);
}
.theme-nada-wrapper .mat-form-field-disabled .mat-date-range-input-separator {
  color: rgba(0, 0, 0, 0.38);
}
.theme-nada-wrapper .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),
.theme-nada-wrapper .cdk-keyboard-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),
.theme-nada-wrapper .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(0, 0, 0, 0.04);
}
.theme-nada-wrapper .mat-calendar-body-in-preview {
  color: rgba(0, 0, 0, 0.24);
}
.theme-nada-wrapper .mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  border-color: rgba(0, 0, 0, 0.38);
}
.theme-nada-wrapper .mat-calendar-body-disabled > .mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  border-color: rgba(0, 0, 0, 0.18);
}
.theme-nada-wrapper .mat-calendar-body-in-range::before {
  background: rgba(183, 28, 28, 0.2);
}
.theme-nada-wrapper .mat-calendar-body-comparison-identical,
.theme-nada-wrapper .mat-calendar-body-in-comparison-range::before {
  background: rgba(249, 171, 0, 0.2);
}
.theme-nada-wrapper .mat-calendar-body-comparison-bridge-start::before,
.theme-nada-wrapper [dir=rtl] .mat-calendar-body-comparison-bridge-end::before {
  background: linear-gradient(to right, rgba(183, 28, 28, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.theme-nada-wrapper .mat-calendar-body-comparison-bridge-end::before,
.theme-nada-wrapper [dir=rtl] .mat-calendar-body-comparison-bridge-start::before {
  background: linear-gradient(to left, rgba(183, 28, 28, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.theme-nada-wrapper .mat-calendar-body-in-range > .mat-calendar-body-comparison-identical,
.theme-nada-wrapper .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after {
  background: #a8dab5;
}
.theme-nada-wrapper .mat-calendar-body-comparison-identical.mat-calendar-body-selected,
.theme-nada-wrapper .mat-calendar-body-in-comparison-range > .mat-calendar-body-selected {
  background: #46a35e;
}
.theme-nada-wrapper .mat-calendar-body-selected {
  background-color: #b71c1c;
  color: white;
}
.theme-nada-wrapper .mat-calendar-body-disabled > .mat-calendar-body-selected {
  background-color: rgba(183, 28, 28, 0.4);
}
.theme-nada-wrapper .mat-calendar-body-today.mat-calendar-body-selected {
  box-shadow: inset 0 0 0 1px white;
}
.theme-nada-wrapper .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: white;
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .mat-datepicker-content.mat-accent .mat-calendar-body-in-range::before {
  background: rgba(102, 187, 106, 0.2);
}
.theme-nada-wrapper .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,
.theme-nada-wrapper .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range::before {
  background: rgba(249, 171, 0, 0.2);
}
.theme-nada-wrapper .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start::before,
.theme-nada-wrapper .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end::before {
  background: linear-gradient(to right, rgba(102, 187, 106, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.theme-nada-wrapper .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end::before,
.theme-nada-wrapper .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start::before {
  background: linear-gradient(to left, rgba(102, 187, 106, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.theme-nada-wrapper .mat-datepicker-content.mat-accent .mat-calendar-body-in-range > .mat-calendar-body-comparison-identical,
.theme-nada-wrapper .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after {
  background: #a8dab5;
}
.theme-nada-wrapper .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,
.theme-nada-wrapper .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range > .mat-calendar-body-selected {
  background: #46a35e;
}
.theme-nada-wrapper .mat-datepicker-content.mat-accent .mat-calendar-body-selected {
  background-color: #66bb6a;
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .mat-datepicker-content.mat-accent .mat-calendar-body-disabled > .mat-calendar-body-selected {
  background-color: rgba(102, 187, 106, 0.4);
}
.theme-nada-wrapper .mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .mat-datepicker-content.mat-warn .mat-calendar-body-in-range::before {
  background: rgba(189, 189, 189, 0.2);
}
.theme-nada-wrapper .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,
.theme-nada-wrapper .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range::before {
  background: rgba(249, 171, 0, 0.2);
}
.theme-nada-wrapper .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start::before,
.theme-nada-wrapper .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end::before {
  background: linear-gradient(to right, rgba(189, 189, 189, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.theme-nada-wrapper .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end::before,
.theme-nada-wrapper .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start::before {
  background: linear-gradient(to left, rgba(189, 189, 189, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.theme-nada-wrapper .mat-datepicker-content.mat-warn .mat-calendar-body-in-range > .mat-calendar-body-comparison-identical,
.theme-nada-wrapper .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after {
  background: #a8dab5;
}
.theme-nada-wrapper .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,
.theme-nada-wrapper .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range > .mat-calendar-body-selected {
  background: #46a35e;
}
.theme-nada-wrapper .mat-datepicker-content.mat-warn .mat-calendar-body-selected {
  background-color: #bdbdbd;
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .mat-datepicker-content.mat-warn .mat-calendar-body-disabled > .mat-calendar-body-selected {
  background-color: rgba(189, 189, 189, 0.4);
}
.theme-nada-wrapper .mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .mat-datepicker-content-touch {
  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);
}
.theme-nada-wrapper .mat-datepicker-toggle-active {
  color: #b71c1c;
}
.theme-nada-wrapper .mat-datepicker-toggle-active.mat-accent {
  color: #66bb6a;
}
.theme-nada-wrapper .mat-datepicker-toggle-active.mat-warn {
  color: #bdbdbd;
}
.theme-nada-wrapper .mat-date-range-input-inner[disabled] {
  color: rgba(0, 0, 0, 0.38);
}
.theme-nada-wrapper .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: white;
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .mat-divider {
  border-top-color: rgba(0, 0, 0, 0.12);
}
.theme-nada-wrapper .mat-divider-vertical {
  border-right-color: rgba(0, 0, 0, 0.12);
}
.theme-nada-wrapper .mat-expansion-panel {
  background: white;
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .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);
}
.theme-nada-wrapper .mat-action-row {
  border-top-color: rgba(0, 0, 0, 0.12);
}
.theme-nada-wrapper .mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]), .theme-nada-wrapper .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]), .theme-nada-wrapper .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]) {
  background: rgba(0, 0, 0, 0.04);
}
@media (hover: none) {
  .theme-nada-wrapper .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover {
    background: white;
  }
}
.theme-nada-wrapper .mat-expansion-panel-header-title {
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .mat-expansion-panel-header-description,
.theme-nada-wrapper .mat-expansion-indicator::after {
  color: rgba(0, 0, 0, 0.54);
}
.theme-nada-wrapper .mat-expansion-panel-header[aria-disabled=true] {
  color: rgba(0, 0, 0, 0.26);
}
.theme-nada-wrapper .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,
.theme-nada-wrapper .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description {
  color: inherit;
}
.theme-nada-wrapper .mat-form-field-label {
  color: rgba(0, 0, 0, 0.6);
}
.theme-nada-wrapper .mat-hint {
  color: rgba(0, 0, 0, 0.6);
}
.theme-nada-wrapper .mat-form-field.mat-focused .mat-form-field-label {
  color: #b71c1c;
}
.theme-nada-wrapper .mat-form-field.mat-focused .mat-form-field-label.mat-accent {
  color: #66bb6a;
}
.theme-nada-wrapper .mat-form-field.mat-focused .mat-form-field-label.mat-warn {
  color: #bdbdbd;
}
.theme-nada-wrapper .mat-focused .mat-form-field-required-marker {
  color: #66bb6a;
}
.theme-nada-wrapper .mat-form-field-ripple {
  background-color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .mat-form-field.mat-focused .mat-form-field-ripple {
  background-color: #b71c1c;
}
.theme-nada-wrapper .mat-form-field.mat-focused .mat-form-field-ripple.mat-accent {
  background-color: #66bb6a;
}
.theme-nada-wrapper .mat-form-field.mat-focused .mat-form-field-ripple.mat-warn {
  background-color: #bdbdbd;
}
.theme-nada-wrapper .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix::after {
  color: #b71c1c;
}
.theme-nada-wrapper .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix::after {
  color: #66bb6a;
}
.theme-nada-wrapper .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix::after {
  color: #bdbdbd;
}
.theme-nada-wrapper .mat-form-field.mat-form-field-invalid .mat-form-field-label {
  color: #bdbdbd;
}
.theme-nada-wrapper .mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,
.theme-nada-wrapper .mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker {
  color: #bdbdbd;
}
.theme-nada-wrapper .mat-form-field.mat-form-field-invalid .mat-form-field-ripple,
.theme-nada-wrapper .mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent {
  background-color: #bdbdbd;
}
.theme-nada-wrapper .mat-error {
  color: #bdbdbd;
}
.theme-nada-wrapper .mat-form-field-appearance-legacy .mat-form-field-label {
  color: rgba(0, 0, 0, 0.54);
}
.theme-nada-wrapper .mat-form-field-appearance-legacy .mat-hint {
  color: rgba(0, 0, 0, 0.54);
}
.theme-nada-wrapper .mat-form-field-appearance-legacy .mat-form-field-underline {
  background-color: rgba(0, 0, 0, 0.42);
}
.theme-nada-wrapper .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.42) 33%, transparent 0%);
  background-size: 4px 100%;
  background-repeat: repeat-x;
}
.theme-nada-wrapper .mat-form-field-appearance-standard .mat-form-field-underline {
  background-color: rgba(0, 0, 0, 0.42);
}
.theme-nada-wrapper .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.42) 33%, transparent 0%);
  background-size: 4px 100%;
  background-repeat: repeat-x;
}
.theme-nada-wrapper .mat-form-field-appearance-fill .mat-form-field-flex {
  background-color: rgba(0, 0, 0, 0.04);
}
.theme-nada-wrapper .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex {
  background-color: rgba(0, 0, 0, 0.02);
}
.theme-nada-wrapper .mat-form-field-appearance-fill .mat-form-field-underline::before {
  background-color: rgba(0, 0, 0, 0.42);
}
.theme-nada-wrapper .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-label {
  color: rgba(0, 0, 0, 0.38);
}
.theme-nada-wrapper .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline::before {
  background-color: transparent;
}
.theme-nada-wrapper .mat-form-field-appearance-outline .mat-form-field-outline {
  color: rgba(0, 0, 0, 0.12);
}
.theme-nada-wrapper .mat-form-field-appearance-outline .mat-form-field-outline-thick {
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick {
  color: #b71c1c;
}
.theme-nada-wrapper .mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick {
  color: #66bb6a;
}
.theme-nada-wrapper .mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick {
  color: #bdbdbd;
}
.theme-nada-wrapper .mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick {
  color: #bdbdbd;
}
.theme-nada-wrapper .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-label {
  color: rgba(0, 0, 0, 0.38);
}
.theme-nada-wrapper .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline {
  color: rgba(0, 0, 0, 0.06);
}
.theme-nada-wrapper .mat-icon.mat-primary {
  color: #b71c1c;
}
.theme-nada-wrapper .mat-icon.mat-accent {
  color: #66bb6a;
}
.theme-nada-wrapper .mat-icon.mat-warn {
  color: #bdbdbd;
}
.theme-nada-wrapper .mat-form-field-type-mat-native-select .mat-form-field-infix::after {
  color: rgba(0, 0, 0, 0.54);
}
.theme-nada-wrapper .mat-input-element:disabled,
.theme-nada-wrapper .mat-form-field-type-mat-native-select.mat-form-field-disabled .mat-form-field-infix::after {
  color: rgba(0, 0, 0, 0.38);
}
.theme-nada-wrapper .mat-input-element {
  caret-color: #b71c1c;
}
.theme-nada-wrapper .mat-input-element::-moz-placeholder {
  color: rgba(0, 0, 0, 0.42);
}
.theme-nada-wrapper .mat-input-element:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.42);
}
.theme-nada-wrapper .mat-input-element::placeholder {
  color: rgba(0, 0, 0, 0.42);
}
.theme-nada-wrapper .mat-input-element::-moz-placeholder {
  color: rgba(0, 0, 0, 0.42);
}
.theme-nada-wrapper .mat-input-element::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.42);
}
.theme-nada-wrapper .mat-input-element:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.42);
}
.theme-nada-wrapper .mat-form-field.mat-accent .mat-input-element {
  caret-color: #66bb6a;
}
.theme-nada-wrapper .mat-form-field.mat-warn .mat-input-element,
.theme-nada-wrapper .mat-form-field-invalid .mat-input-element {
  caret-color: #bdbdbd;
}
.theme-nada-wrapper .mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix::after {
  color: #bdbdbd;
}
.theme-nada-wrapper .mat-list-base .mat-list-item {
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .mat-list-base .mat-list-option {
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .mat-list-base .mat-subheader {
  color: rgba(0, 0, 0, 0.54);
}
.theme-nada-wrapper .mat-list-item-disabled {
  background-color: #eeeeee;
}
.theme-nada-wrapper .mat-list-option:hover, .theme-nada-wrapper .mat-list-option:focus,
.theme-nada-wrapper .mat-nav-list .mat-list-item:hover,
.theme-nada-wrapper .mat-nav-list .mat-list-item:focus,
.theme-nada-wrapper .mat-action-list .mat-list-item:hover,
.theme-nada-wrapper .mat-action-list .mat-list-item:focus {
  background: rgba(0, 0, 0, 0.04);
}
.theme-nada-wrapper .mat-list-single-selected-option, .theme-nada-wrapper .mat-list-single-selected-option:hover, .theme-nada-wrapper .mat-list-single-selected-option:focus {
  background: rgba(0, 0, 0, 0.12);
}
.theme-nada-wrapper .mat-menu-panel {
  background: white;
}
.theme-nada-wrapper .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);
}
.theme-nada-wrapper .mat-menu-item {
  background: transparent;
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .mat-menu-item[disabled], .theme-nada-wrapper .mat-menu-item[disabled]::after {
  color: rgba(0, 0, 0, 0.38);
}
.theme-nada-wrapper .mat-menu-item .mat-icon-no-color,
.theme-nada-wrapper .mat-menu-item-submenu-trigger::after {
  color: rgba(0, 0, 0, 0.54);
}
.theme-nada-wrapper .mat-menu-item:hover:not([disabled]),
.theme-nada-wrapper .mat-menu-item.cdk-program-focused:not([disabled]),
.theme-nada-wrapper .mat-menu-item.cdk-keyboard-focused:not([disabled]),
.theme-nada-wrapper .mat-menu-item-highlighted:not([disabled]) {
  background: rgba(0, 0, 0, 0.04);
}
.theme-nada-wrapper .mat-paginator {
  background: white;
}
.theme-nada-wrapper .mat-paginator,
.theme-nada-wrapper .mat-paginator-page-size .mat-select-trigger {
  color: rgba(0, 0, 0, 0.54);
}
.theme-nada-wrapper .mat-paginator-decrement,
.theme-nada-wrapper .mat-paginator-increment {
  border-top: 2px solid rgba(0, 0, 0, 0.54);
  border-right: 2px solid rgba(0, 0, 0, 0.54);
}
.theme-nada-wrapper .mat-paginator-first,
.theme-nada-wrapper .mat-paginator-last {
  border-top: 2px solid rgba(0, 0, 0, 0.54);
}
.theme-nada-wrapper .mat-icon-button[disabled] .mat-paginator-decrement,
.theme-nada-wrapper .mat-icon-button[disabled] .mat-paginator-increment,
.theme-nada-wrapper .mat-icon-button[disabled] .mat-paginator-first,
.theme-nada-wrapper .mat-icon-button[disabled] .mat-paginator-last {
  border-color: rgba(0, 0, 0, 0.38);
}
.theme-nada-wrapper .mat-progress-bar-background {
  fill: #ffcdd2;
}
.theme-nada-wrapper .mat-progress-bar-buffer {
  background-color: #ffcdd2;
}
.theme-nada-wrapper .mat-progress-bar-fill::after {
  background-color: #b71c1c;
}
.theme-nada-wrapper .mat-progress-bar.mat-accent .mat-progress-bar-background {
  fill: #c8e6c9;
}
.theme-nada-wrapper .mat-progress-bar.mat-accent .mat-progress-bar-buffer {
  background-color: #c8e6c9;
}
.theme-nada-wrapper .mat-progress-bar.mat-accent .mat-progress-bar-fill::after {
  background-color: #66bb6a;
}
.theme-nada-wrapper .mat-progress-bar.mat-warn .mat-progress-bar-background {
  fill: whitesmoke;
}
.theme-nada-wrapper .mat-progress-bar.mat-warn .mat-progress-bar-buffer {
  background-color: whitesmoke;
}
.theme-nada-wrapper .mat-progress-bar.mat-warn .mat-progress-bar-fill::after {
  background-color: #bdbdbd;
}
.theme-nada-wrapper .mat-progress-spinner circle, .theme-nada-wrapper .mat-spinner circle {
  stroke: #b71c1c;
}
.theme-nada-wrapper .mat-progress-spinner.mat-accent circle, .theme-nada-wrapper .mat-spinner.mat-accent circle {
  stroke: #66bb6a;
}
.theme-nada-wrapper .mat-progress-spinner.mat-warn circle, .theme-nada-wrapper .mat-spinner.mat-warn circle {
  stroke: #bdbdbd;
}
.theme-nada-wrapper .mat-radio-outer-circle {
  border-color: rgba(0, 0, 0, 0.54);
}
.theme-nada-wrapper .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle {
  border-color: #b71c1c;
}
.theme-nada-wrapper .mat-radio-button.mat-primary .mat-radio-inner-circle,
.theme-nada-wrapper .mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .theme-nada-wrapper .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple, .theme-nada-wrapper .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple {
  background-color: #b71c1c;
}
.theme-nada-wrapper .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle {
  border-color: #66bb6a;
}
.theme-nada-wrapper .mat-radio-button.mat-accent .mat-radio-inner-circle,
.theme-nada-wrapper .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .theme-nada-wrapper .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple, .theme-nada-wrapper .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple {
  background-color: #66bb6a;
}
.theme-nada-wrapper .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle {
  border-color: #bdbdbd;
}
.theme-nada-wrapper .mat-radio-button.mat-warn .mat-radio-inner-circle,
.theme-nada-wrapper .mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .theme-nada-wrapper .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple, .theme-nada-wrapper .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple {
  background-color: #bdbdbd;
}
.theme-nada-wrapper .mat-radio-button.mat-radio-disabled.mat-radio-checked .mat-radio-outer-circle,
.theme-nada-wrapper .mat-radio-button.mat-radio-disabled .mat-radio-outer-circle {
  border-color: rgba(0, 0, 0, 0.38);
}
.theme-nada-wrapper .mat-radio-button.mat-radio-disabled .mat-radio-ripple .mat-ripple-element,
.theme-nada-wrapper .mat-radio-button.mat-radio-disabled .mat-radio-inner-circle {
  background-color: rgba(0, 0, 0, 0.38);
}
.theme-nada-wrapper .mat-radio-button.mat-radio-disabled .mat-radio-label-content {
  color: rgba(0, 0, 0, 0.38);
}
.theme-nada-wrapper .mat-radio-button .mat-ripple-element {
  background-color: black;
}
.theme-nada-wrapper .mat-select-value {
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .mat-select-placeholder {
  color: rgba(0, 0, 0, 0.42);
}
.theme-nada-wrapper .mat-select-disabled .mat-select-value {
  color: rgba(0, 0, 0, 0.38);
}
.theme-nada-wrapper .mat-select-arrow {
  color: rgba(0, 0, 0, 0.54);
}
.theme-nada-wrapper .mat-select-panel {
  background: white;
}
.theme-nada-wrapper .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);
}
.theme-nada-wrapper .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple) {
  background: rgba(0, 0, 0, 0.12);
}
.theme-nada-wrapper .mat-form-field.mat-focused.mat-primary .mat-select-arrow {
  color: #b71c1c;
}
.theme-nada-wrapper .mat-form-field.mat-focused.mat-accent .mat-select-arrow {
  color: #66bb6a;
}
.theme-nada-wrapper .mat-form-field.mat-focused.mat-warn .mat-select-arrow {
  color: #bdbdbd;
}
.theme-nada-wrapper .mat-form-field .mat-select.mat-select-invalid .mat-select-arrow {
  color: #bdbdbd;
}
.theme-nada-wrapper .mat-form-field .mat-select.mat-select-disabled .mat-select-arrow {
  color: rgba(0, 0, 0, 0.38);
}
.theme-nada-wrapper .mat-drawer-container {
  background-color: #fafafa;
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .mat-drawer {
  background-color: white;
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .mat-drawer.mat-drawer-push {
  background-color: white;
}
.theme-nada-wrapper .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);
}
.theme-nada-wrapper .mat-drawer-side {
  border-right: solid 1px rgba(0, 0, 0, 0.12);
}
.theme-nada-wrapper .mat-drawer-side.mat-drawer-end {
  border-left: solid 1px rgba(0, 0, 0, 0.12);
  border-right: none;
}
.theme-nada-wrapper [dir=rtl] .mat-drawer-side {
  border-left: solid 1px rgba(0, 0, 0, 0.12);
  border-right: none;
}
.theme-nada-wrapper [dir=rtl] .mat-drawer-side.mat-drawer-end {
  border-left: none;
  border-right: solid 1px rgba(0, 0, 0, 0.12);
}
.theme-nada-wrapper .mat-drawer-backdrop.mat-drawer-shown {
  background-color: rgba(0, 0, 0, 0.6);
}
.theme-nada-wrapper .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb {
  background-color: #66bb6a;
}
.theme-nada-wrapper .mat-slide-toggle.mat-checked .mat-slide-toggle-bar {
  background-color: rgba(102, 187, 106, 0.54);
}
.theme-nada-wrapper .mat-slide-toggle.mat-checked .mat-ripple-element {
  background-color: #66bb6a;
}
.theme-nada-wrapper .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb {
  background-color: #b71c1c;
}
.theme-nada-wrapper .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar {
  background-color: rgba(183, 28, 28, 0.54);
}
.theme-nada-wrapper .mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element {
  background-color: #b71c1c;
}
.theme-nada-wrapper .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb {
  background-color: #bdbdbd;
}
.theme-nada-wrapper .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar {
  background-color: rgba(189, 189, 189, 0.54);
}
.theme-nada-wrapper .mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element {
  background-color: #bdbdbd;
}
.theme-nada-wrapper .mat-slide-toggle:not(.mat-checked) .mat-ripple-element {
  background-color: black;
}
.theme-nada-wrapper .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;
}
.theme-nada-wrapper .mat-slide-toggle-bar {
  background-color: rgba(0, 0, 0, 0.38);
}
.theme-nada-wrapper .mat-slider-track-background {
  background-color: rgba(0, 0, 0, 0.26);
}
.theme-nada-wrapper .mat-primary .mat-slider-track-fill,
.theme-nada-wrapper .mat-primary .mat-slider-thumb,
.theme-nada-wrapper .mat-primary .mat-slider-thumb-label {
  background-color: #b71c1c;
}
.theme-nada-wrapper .mat-primary .mat-slider-thumb-label-text {
  color: white;
}
.theme-nada-wrapper .mat-primary .mat-slider-focus-ring {
  background-color: rgba(183, 28, 28, 0.2);
}
.theme-nada-wrapper .mat-accent .mat-slider-track-fill,
.theme-nada-wrapper .mat-accent .mat-slider-thumb,
.theme-nada-wrapper .mat-accent .mat-slider-thumb-label {
  background-color: #66bb6a;
}
.theme-nada-wrapper .mat-accent .mat-slider-thumb-label-text {
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .mat-accent .mat-slider-focus-ring {
  background-color: rgba(102, 187, 106, 0.2);
}
.theme-nada-wrapper .mat-warn .mat-slider-track-fill,
.theme-nada-wrapper .mat-warn .mat-slider-thumb,
.theme-nada-wrapper .mat-warn .mat-slider-thumb-label {
  background-color: #bdbdbd;
}
.theme-nada-wrapper .mat-warn .mat-slider-thumb-label-text {
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .mat-warn .mat-slider-focus-ring {
  background-color: rgba(189, 189, 189, 0.2);
}
.theme-nada-wrapper .mat-slider:hover .mat-slider-track-background,
.theme-nada-wrapper .cdk-focused .mat-slider-track-background {
  background-color: rgba(0, 0, 0, 0.38);
}
.theme-nada-wrapper .mat-slider-disabled .mat-slider-track-background,
.theme-nada-wrapper .mat-slider-disabled .mat-slider-track-fill,
.theme-nada-wrapper .mat-slider-disabled .mat-slider-thumb {
  background-color: rgba(0, 0, 0, 0.26);
}
.theme-nada-wrapper .mat-slider-disabled:hover .mat-slider-track-background {
  background-color: rgba(0, 0, 0, 0.26);
}
.theme-nada-wrapper .mat-slider-min-value .mat-slider-focus-ring {
  background-color: rgba(0, 0, 0, 0.12);
}
.theme-nada-wrapper .mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,
.theme-nada-wrapper .mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label {
  background-color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,
.theme-nada-wrapper .mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label {
  background-color: rgba(0, 0, 0, 0.26);
}
.theme-nada-wrapper .mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb {
  border-color: rgba(0, 0, 0, 0.26);
  background-color: transparent;
}
.theme-nada-wrapper .mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb, .theme-nada-wrapper .mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb {
  border-color: rgba(0, 0, 0, 0.38);
}
.theme-nada-wrapper .mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb, .theme-nada-wrapper .mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb {
  border-color: rgba(0, 0, 0, 0.26);
}
.theme-nada-wrapper .mat-slider-has-ticks .mat-slider-wrapper::after {
  border-color: rgba(0, 0, 0, 0.7);
}
.theme-nada-wrapper .mat-slider-horizontal .mat-slider-ticks {
  background-image: repeating-linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);
  background-image: -moz-repeating-linear-gradient(0.0001deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);
}
.theme-nada-wrapper .mat-slider-vertical .mat-slider-ticks {
  background-image: repeating-linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);
}
.theme-nada-wrapper .mat-step-header.cdk-keyboard-focused, .theme-nada-wrapper .mat-step-header.cdk-program-focused, .theme-nada-wrapper .mat-step-header:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
@media (hover: none) {
  .theme-nada-wrapper .mat-step-header:hover {
    background: none;
  }
}
.theme-nada-wrapper .mat-step-header .mat-step-label,
.theme-nada-wrapper .mat-step-header .mat-step-optional {
  color: rgba(0, 0, 0, 0.54);
}
.theme-nada-wrapper .mat-step-header .mat-step-icon {
  background-color: rgba(0, 0, 0, 0.54);
  color: white;
}
.theme-nada-wrapper .mat-step-header .mat-step-icon-selected,
.theme-nada-wrapper .mat-step-header .mat-step-icon-state-done,
.theme-nada-wrapper .mat-step-header .mat-step-icon-state-edit {
  background-color: #b71c1c;
  color: white;
}
.theme-nada-wrapper .mat-step-header.mat-accent .mat-step-icon {
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .mat-step-header.mat-accent .mat-step-icon-selected,
.theme-nada-wrapper .mat-step-header.mat-accent .mat-step-icon-state-done,
.theme-nada-wrapper .mat-step-header.mat-accent .mat-step-icon-state-edit {
  background-color: #66bb6a;
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .mat-step-header.mat-warn .mat-step-icon {
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .mat-step-header.mat-warn .mat-step-icon-selected,
.theme-nada-wrapper .mat-step-header.mat-warn .mat-step-icon-state-done,
.theme-nada-wrapper .mat-step-header.mat-warn .mat-step-icon-state-edit {
  background-color: #bdbdbd;
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .mat-step-header .mat-step-icon-state-error {
  background-color: transparent;
  color: #bdbdbd;
}
.theme-nada-wrapper .mat-step-header .mat-step-label.mat-step-label-active {
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .mat-step-header .mat-step-label.mat-step-label-error {
  color: #bdbdbd;
}
.theme-nada-wrapper .mat-stepper-horizontal, .theme-nada-wrapper .mat-stepper-vertical {
  background-color: white;
}
.theme-nada-wrapper .mat-stepper-vertical-line::before {
  border-left-color: rgba(0, 0, 0, 0.12);
}
.theme-nada-wrapper .mat-horizontal-stepper-header::before,
.theme-nada-wrapper .mat-horizontal-stepper-header::after,
.theme-nada-wrapper .mat-stepper-horizontal-line {
  border-top-color: rgba(0, 0, 0, 0.12);
}
.theme-nada-wrapper .mat-sort-header-arrow {
  color: #757575;
}
.theme-nada-wrapper .mat-tab-nav-bar,
.theme-nada-wrapper .mat-tab-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.theme-nada-wrapper .mat-tab-group-inverted-header .mat-tab-nav-bar,
.theme-nada-wrapper .mat-tab-group-inverted-header .mat-tab-header {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  border-bottom: none;
}
.theme-nada-wrapper .mat-tab-label, .theme-nada-wrapper .mat-tab-link {
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .mat-tab-label.mat-tab-disabled, .theme-nada-wrapper .mat-tab-link.mat-tab-disabled {
  color: rgba(0, 0, 0, 0.38);
}
.theme-nada-wrapper .mat-tab-header-pagination-chevron {
  border-color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: rgba(0, 0, 0, 0.38);
}
.theme-nada-wrapper .mat-tab-group[class*=mat-background-] .mat-tab-header,
.theme-nada-wrapper .mat-tab-nav-bar[class*=mat-background-] {
  border-bottom: none;
  border-top: none;
}
.theme-nada-wrapper .mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-nada-wrapper .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-nada-wrapper .mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-nada-wrapper .mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .theme-nada-wrapper .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-nada-wrapper .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-nada-wrapper .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-nada-wrapper .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(255, 205, 210, 0.3);
}
.theme-nada-wrapper .mat-tab-group.mat-primary .mat-ink-bar, .theme-nada-wrapper .mat-tab-nav-bar.mat-primary .mat-ink-bar {
  background-color: #b71c1c;
}
.theme-nada-wrapper .mat-tab-group.mat-primary.mat-background-primary .mat-ink-bar, .theme-nada-wrapper .mat-tab-nav-bar.mat-primary.mat-background-primary .mat-ink-bar {
  background-color: white;
}
.theme-nada-wrapper .mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-nada-wrapper .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-nada-wrapper .mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-nada-wrapper .mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .theme-nada-wrapper .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-nada-wrapper .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-nada-wrapper .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-nada-wrapper .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(200, 230, 201, 0.3);
}
.theme-nada-wrapper .mat-tab-group.mat-accent .mat-ink-bar, .theme-nada-wrapper .mat-tab-nav-bar.mat-accent .mat-ink-bar {
  background-color: #66bb6a;
}
.theme-nada-wrapper .mat-tab-group.mat-accent.mat-background-accent .mat-ink-bar, .theme-nada-wrapper .mat-tab-nav-bar.mat-accent.mat-background-accent .mat-ink-bar {
  background-color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-nada-wrapper .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-nada-wrapper .mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-nada-wrapper .mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .theme-nada-wrapper .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-nada-wrapper .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-nada-wrapper .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-nada-wrapper .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(245, 245, 245, 0.3);
}
.theme-nada-wrapper .mat-tab-group.mat-warn .mat-ink-bar, .theme-nada-wrapper .mat-tab-nav-bar.mat-warn .mat-ink-bar {
  background-color: #bdbdbd;
}
.theme-nada-wrapper .mat-tab-group.mat-warn.mat-background-warn .mat-ink-bar, .theme-nada-wrapper .mat-tab-nav-bar.mat-warn.mat-background-warn .mat-ink-bar {
  background-color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-nada-wrapper .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-nada-wrapper .mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-nada-wrapper .mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .theme-nada-wrapper .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-nada-wrapper .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-nada-wrapper .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-nada-wrapper .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(255, 205, 210, 0.3);
}
.theme-nada-wrapper .mat-tab-group.mat-background-primary .mat-tab-header, .theme-nada-wrapper .mat-tab-group.mat-background-primary .mat-tab-links, .theme-nada-wrapper .mat-tab-group.mat-background-primary .mat-tab-header-pagination, .theme-nada-wrapper .mat-tab-nav-bar.mat-background-primary .mat-tab-header, .theme-nada-wrapper .mat-tab-nav-bar.mat-background-primary .mat-tab-links, .theme-nada-wrapper .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination {
  background-color: #b71c1c;
}
.theme-nada-wrapper .mat-tab-group.mat-background-primary .mat-tab-label, .theme-nada-wrapper .mat-tab-group.mat-background-primary .mat-tab-link, .theme-nada-wrapper .mat-tab-nav-bar.mat-background-primary .mat-tab-label, .theme-nada-wrapper .mat-tab-nav-bar.mat-background-primary .mat-tab-link {
  color: white;
}
.theme-nada-wrapper .mat-tab-group.mat-background-primary .mat-tab-label.mat-tab-disabled, .theme-nada-wrapper .mat-tab-group.mat-background-primary .mat-tab-link.mat-tab-disabled, .theme-nada-wrapper .mat-tab-nav-bar.mat-background-primary .mat-tab-label.mat-tab-disabled, .theme-nada-wrapper .mat-tab-nav-bar.mat-background-primary .mat-tab-link.mat-tab-disabled {
  color: rgba(255, 255, 255, 0.4);
}
.theme-nada-wrapper .mat-tab-group.mat-background-primary .mat-tab-header-pagination-chevron, .theme-nada-wrapper .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-chevron {
  border-color: white;
}
.theme-nada-wrapper .mat-tab-group.mat-background-primary .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .theme-nada-wrapper .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: rgba(255, 255, 255, 0.4);
}
.theme-nada-wrapper .mat-tab-group.mat-background-primary .mat-ripple-element, .theme-nada-wrapper .mat-tab-nav-bar.mat-background-primary .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.12);
}
.theme-nada-wrapper .mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-nada-wrapper .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-nada-wrapper .mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-nada-wrapper .mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .theme-nada-wrapper .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-nada-wrapper .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-nada-wrapper .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-nada-wrapper .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(200, 230, 201, 0.3);
}
.theme-nada-wrapper .mat-tab-group.mat-background-accent .mat-tab-header, .theme-nada-wrapper .mat-tab-group.mat-background-accent .mat-tab-links, .theme-nada-wrapper .mat-tab-group.mat-background-accent .mat-tab-header-pagination, .theme-nada-wrapper .mat-tab-nav-bar.mat-background-accent .mat-tab-header, .theme-nada-wrapper .mat-tab-nav-bar.mat-background-accent .mat-tab-links, .theme-nada-wrapper .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination {
  background-color: #66bb6a;
}
.theme-nada-wrapper .mat-tab-group.mat-background-accent .mat-tab-label, .theme-nada-wrapper .mat-tab-group.mat-background-accent .mat-tab-link, .theme-nada-wrapper .mat-tab-nav-bar.mat-background-accent .mat-tab-label, .theme-nada-wrapper .mat-tab-nav-bar.mat-background-accent .mat-tab-link {
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .mat-tab-group.mat-background-accent .mat-tab-label.mat-tab-disabled, .theme-nada-wrapper .mat-tab-group.mat-background-accent .mat-tab-link.mat-tab-disabled, .theme-nada-wrapper .mat-tab-nav-bar.mat-background-accent .mat-tab-label.mat-tab-disabled, .theme-nada-wrapper .mat-tab-nav-bar.mat-background-accent .mat-tab-link.mat-tab-disabled {
  color: rgba(0, 0, 0, 0.4);
}
.theme-nada-wrapper .mat-tab-group.mat-background-accent .mat-tab-header-pagination-chevron, .theme-nada-wrapper .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-chevron {
  border-color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .mat-tab-group.mat-background-accent .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .theme-nada-wrapper .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: rgba(0, 0, 0, 0.4);
}
.theme-nada-wrapper .mat-tab-group.mat-background-accent .mat-ripple-element, .theme-nada-wrapper .mat-tab-nav-bar.mat-background-accent .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.12);
}
.theme-nada-wrapper .mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-nada-wrapper .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-nada-wrapper .mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-nada-wrapper .mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .theme-nada-wrapper .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-nada-wrapper .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-nada-wrapper .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-nada-wrapper .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(245, 245, 245, 0.3);
}
.theme-nada-wrapper .mat-tab-group.mat-background-warn .mat-tab-header, .theme-nada-wrapper .mat-tab-group.mat-background-warn .mat-tab-links, .theme-nada-wrapper .mat-tab-group.mat-background-warn .mat-tab-header-pagination, .theme-nada-wrapper .mat-tab-nav-bar.mat-background-warn .mat-tab-header, .theme-nada-wrapper .mat-tab-nav-bar.mat-background-warn .mat-tab-links, .theme-nada-wrapper .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination {
  background-color: #bdbdbd;
}
.theme-nada-wrapper .mat-tab-group.mat-background-warn .mat-tab-label, .theme-nada-wrapper .mat-tab-group.mat-background-warn .mat-tab-link, .theme-nada-wrapper .mat-tab-nav-bar.mat-background-warn .mat-tab-label, .theme-nada-wrapper .mat-tab-nav-bar.mat-background-warn .mat-tab-link {
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .mat-tab-group.mat-background-warn .mat-tab-label.mat-tab-disabled, .theme-nada-wrapper .mat-tab-group.mat-background-warn .mat-tab-link.mat-tab-disabled, .theme-nada-wrapper .mat-tab-nav-bar.mat-background-warn .mat-tab-label.mat-tab-disabled, .theme-nada-wrapper .mat-tab-nav-bar.mat-background-warn .mat-tab-link.mat-tab-disabled {
  color: rgba(0, 0, 0, 0.4);
}
.theme-nada-wrapper .mat-tab-group.mat-background-warn .mat-tab-header-pagination-chevron, .theme-nada-wrapper .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-chevron {
  border-color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .mat-tab-group.mat-background-warn .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .theme-nada-wrapper .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: rgba(0, 0, 0, 0.4);
}
.theme-nada-wrapper .mat-tab-group.mat-background-warn .mat-ripple-element, .theme-nada-wrapper .mat-tab-nav-bar.mat-background-warn .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.12);
}
.theme-nada-wrapper .mat-toolbar {
  background: whitesmoke;
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .mat-toolbar.mat-primary {
  background: #b71c1c;
  color: white;
}
.theme-nada-wrapper .mat-toolbar.mat-accent {
  background: #66bb6a;
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .mat-toolbar.mat-warn {
  background: #bdbdbd;
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .mat-toolbar .mat-form-field-underline,
.theme-nada-wrapper .mat-toolbar .mat-form-field-ripple,
.theme-nada-wrapper .mat-toolbar .mat-focused .mat-form-field-ripple {
  background-color: currentColor;
}
.theme-nada-wrapper .mat-toolbar .mat-form-field-label,
.theme-nada-wrapper .mat-toolbar .mat-focused .mat-form-field-label,
.theme-nada-wrapper .mat-toolbar .mat-select-value,
.theme-nada-wrapper .mat-toolbar .mat-select-arrow,
.theme-nada-wrapper .mat-toolbar .mat-form-field.mat-focused .mat-select-arrow {
  color: inherit;
}
.theme-nada-wrapper .mat-toolbar .mat-input-element {
  caret-color: currentColor;
}
.theme-nada-wrapper .mat-tooltip {
  background: rgba(97, 97, 97, 0.9);
}
.theme-nada-wrapper .mat-tree {
  background: white;
}
.theme-nada-wrapper .mat-tree-node,
.theme-nada-wrapper .mat-nested-tree-node {
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .mat-snack-bar-container {
  color: rgba(255, 255, 255, 0.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);
}
.theme-nada-wrapper .mat-simple-snackbar-action {
  color: #66bb6a;
}
.theme-mr-wrapper .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.1);
}
.theme-mr-wrapper .mat-option {
  color: rgba(0, 0, 0, 0.87);
}
.theme-mr-wrapper .mat-option:hover:not(.mat-option-disabled), .theme-mr-wrapper .mat-option:focus:not(.mat-option-disabled) {
  background: rgba(0, 0, 0, 0.04);
}
.theme-mr-wrapper .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled) {
  background: rgba(0, 0, 0, 0.04);
}
.theme-mr-wrapper .mat-option.mat-active {
  background: rgba(0, 0, 0, 0.04);
  color: rgba(0, 0, 0, 0.87);
}
.theme-mr-wrapper .mat-option.mat-option-disabled {
  color: rgba(0, 0, 0, 0.38);
}
.theme-mr-wrapper .mat-primary .mat-option.mat-selected:not(.mat-option-disabled) {
  color: #455a64;
}
.theme-mr-wrapper .mat-accent .mat-option.mat-selected:not(.mat-option-disabled) {
  color: #d4e157;
}
.theme-mr-wrapper .mat-warn .mat-option.mat-selected:not(.mat-option-disabled) {
  color: #f44336;
}
.theme-mr-wrapper .mat-optgroup-label {
  color: rgba(0, 0, 0, 0.54);
}
.theme-mr-wrapper .mat-optgroup-disabled .mat-optgroup-label {
  color: rgba(0, 0, 0, 0.38);
}
.theme-mr-wrapper .mat-pseudo-checkbox {
  color: rgba(0, 0, 0, 0.54);
}
.theme-mr-wrapper .mat-pseudo-checkbox::after {
  color: #fafafa;
}
.theme-mr-wrapper .mat-pseudo-checkbox-disabled {
  color: #b0b0b0;
}
.theme-mr-wrapper .mat-primary .mat-pseudo-checkbox-checked,
.theme-mr-wrapper .mat-primary .mat-pseudo-checkbox-indeterminate {
  background: #455a64;
}
.theme-mr-wrapper .mat-pseudo-checkbox-checked,
.theme-mr-wrapper .mat-pseudo-checkbox-indeterminate,
.theme-mr-wrapper .mat-accent .mat-pseudo-checkbox-checked,
.theme-mr-wrapper .mat-accent .mat-pseudo-checkbox-indeterminate {
  background: #d4e157;
}
.theme-mr-wrapper .mat-warn .mat-pseudo-checkbox-checked,
.theme-mr-wrapper .mat-warn .mat-pseudo-checkbox-indeterminate {
  background: #f44336;
}
.theme-mr-wrapper .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,
.theme-mr-wrapper .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled {
  background: #b0b0b0;
}
.theme-mr-wrapper .mat-app-background, .theme-mr-wrapper.mat-app-background {
  background-color: #fafafa;
  color: rgba(0, 0, 0, 0.87);
}
.theme-mr-wrapper .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);
}
.theme-mr-wrapper .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);
}
.theme-mr-wrapper .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);
}
.theme-mr-wrapper .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);
}
.theme-mr-wrapper .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);
}
.theme-mr-wrapper .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);
}
.theme-mr-wrapper .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);
}
.theme-mr-wrapper .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);
}
.theme-mr-wrapper .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);
}
.theme-mr-wrapper .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);
}
.theme-mr-wrapper .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);
}
.theme-mr-wrapper .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);
}
.theme-mr-wrapper .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);
}
.theme-mr-wrapper .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);
}
.theme-mr-wrapper .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);
}
.theme-mr-wrapper .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);
}
.theme-mr-wrapper .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);
}
.theme-mr-wrapper .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);
}
.theme-mr-wrapper .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);
}
.theme-mr-wrapper .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);
}
.theme-mr-wrapper .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);
}
.theme-mr-wrapper .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);
}
.theme-mr-wrapper .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);
}
.theme-mr-wrapper .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);
}
.theme-mr-wrapper .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;
}
.theme-mr-wrapper .mat-autocomplete-panel {
  background: white;
  color: rgba(0, 0, 0, 0.87);
}
.theme-mr-wrapper .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);
}
.theme-mr-wrapper .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover) {
  background: white;
}
.theme-mr-wrapper .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled) {
  color: rgba(0, 0, 0, 0.87);
}
.theme-mr-wrapper .mat-badge-content {
  color: white;
  background: #455a64;
}
.cdk-high-contrast-active .theme-mr-wrapper .mat-badge-content {
  outline: solid 1px;
  border-radius: 0;
}
.theme-mr-wrapper .mat-badge-accent .mat-badge-content {
  background: #d4e157;
  color: rgba(0, 0, 0, 0.87);
}
.theme-mr-wrapper .mat-badge-warn .mat-badge-content {
  color: white;
  background: #f44336;
}
.theme-mr-wrapper .mat-badge {
  position: relative;
}
.theme-mr-wrapper .mat-badge-hidden .mat-badge-content {
  display: none;
}
.theme-mr-wrapper .mat-badge-disabled .mat-badge-content {
  background: #b9b9b9;
  color: rgba(0, 0, 0, 0.38);
}
.theme-mr-wrapper .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;
}
.theme-mr-wrapper .ng-animate-disabled .mat-badge-content,
.theme-mr-wrapper .mat-badge-content._mat-animation-noopable {
  transition: none;
}
.theme-mr-wrapper .mat-badge-content.mat-badge-active {
  transform: none;
}
.theme-mr-wrapper .mat-badge-small .mat-badge-content {
  width: 16px;
  height: 16px;
  line-height: 16px;
}
.theme-mr-wrapper .mat-badge-small.mat-badge-above .mat-badge-content {
  top: -8px;
}
.theme-mr-wrapper .mat-badge-small.mat-badge-below .mat-badge-content {
  bottom: -8px;
}
.theme-mr-wrapper .mat-badge-small.mat-badge-before .mat-badge-content {
  left: -16px;
}
[dir=rtl] .theme-mr-wrapper .mat-badge-small.mat-badge-before .mat-badge-content {
  left: auto;
  right: -16px;
}
.theme-mr-wrapper .mat-badge-small.mat-badge-after .mat-badge-content {
  right: -16px;
}
[dir=rtl] .theme-mr-wrapper .mat-badge-small.mat-badge-after .mat-badge-content {
  right: auto;
  left: -16px;
}
.theme-mr-wrapper .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: -8px;
}
[dir=rtl] .theme-mr-wrapper .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: auto;
  right: -8px;
}
.theme-mr-wrapper .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: -8px;
}
[dir=rtl] .theme-mr-wrapper .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: auto;
  left: -8px;
}
.theme-mr-wrapper .mat-badge-medium .mat-badge-content {
  width: 22px;
  height: 22px;
  line-height: 22px;
}
.theme-mr-wrapper .mat-badge-medium.mat-badge-above .mat-badge-content {
  top: -11px;
}
.theme-mr-wrapper .mat-badge-medium.mat-badge-below .mat-badge-content {
  bottom: -11px;
}
.theme-mr-wrapper .mat-badge-medium.mat-badge-before .mat-badge-content {
  left: -22px;
}
[dir=rtl] .theme-mr-wrapper .mat-badge-medium.mat-badge-before .mat-badge-content {
  left: auto;
  right: -22px;
}
.theme-mr-wrapper .mat-badge-medium.mat-badge-after .mat-badge-content {
  right: -22px;
}
[dir=rtl] .theme-mr-wrapper .mat-badge-medium.mat-badge-after .mat-badge-content {
  right: auto;
  left: -22px;
}
.theme-mr-wrapper .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: -11px;
}
[dir=rtl] .theme-mr-wrapper .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: auto;
  right: -11px;
}
.theme-mr-wrapper .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: -11px;
}
[dir=rtl] .theme-mr-wrapper .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: auto;
  left: -11px;
}
.theme-mr-wrapper .mat-badge-large .mat-badge-content {
  width: 28px;
  height: 28px;
  line-height: 28px;
}
.theme-mr-wrapper .mat-badge-large.mat-badge-above .mat-badge-content {
  top: -14px;
}
.theme-mr-wrapper .mat-badge-large.mat-badge-below .mat-badge-content {
  bottom: -14px;
}
.theme-mr-wrapper .mat-badge-large.mat-badge-before .mat-badge-content {
  left: -28px;
}
[dir=rtl] .theme-mr-wrapper .mat-badge-large.mat-badge-before .mat-badge-content {
  left: auto;
  right: -28px;
}
.theme-mr-wrapper .mat-badge-large.mat-badge-after .mat-badge-content {
  right: -28px;
}
[dir=rtl] .theme-mr-wrapper .mat-badge-large.mat-badge-after .mat-badge-content {
  right: auto;
  left: -28px;
}
.theme-mr-wrapper .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: -14px;
}
[dir=rtl] .theme-mr-wrapper .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: auto;
  right: -14px;
}
.theme-mr-wrapper .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: -14px;
}
[dir=rtl] .theme-mr-wrapper .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: auto;
  left: -14px;
}
.theme-mr-wrapper .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: white;
  color: rgba(0, 0, 0, 0.87);
}
.theme-mr-wrapper .mat-button, .theme-mr-wrapper .mat-icon-button, .theme-mr-wrapper .mat-stroked-button {
  color: inherit;
  background: transparent;
}
.theme-mr-wrapper .mat-button.mat-primary, .theme-mr-wrapper .mat-icon-button.mat-primary, .theme-mr-wrapper .mat-stroked-button.mat-primary {
  color: #455a64;
}
.theme-mr-wrapper .mat-button.mat-accent, .theme-mr-wrapper .mat-icon-button.mat-accent, .theme-mr-wrapper .mat-stroked-button.mat-accent {
  color: #d4e157;
}
.theme-mr-wrapper .mat-button.mat-warn, .theme-mr-wrapper .mat-icon-button.mat-warn, .theme-mr-wrapper .mat-stroked-button.mat-warn {
  color: #f44336;
}
.theme-mr-wrapper .mat-button.mat-primary.mat-button-disabled, .theme-mr-wrapper .mat-button.mat-accent.mat-button-disabled, .theme-mr-wrapper .mat-button.mat-warn.mat-button-disabled, .theme-mr-wrapper .mat-button.mat-button-disabled.mat-button-disabled, .theme-mr-wrapper .mat-icon-button.mat-primary.mat-button-disabled, .theme-mr-wrapper .mat-icon-button.mat-accent.mat-button-disabled, .theme-mr-wrapper .mat-icon-button.mat-warn.mat-button-disabled, .theme-mr-wrapper .mat-icon-button.mat-button-disabled.mat-button-disabled, .theme-mr-wrapper .mat-stroked-button.mat-primary.mat-button-disabled, .theme-mr-wrapper .mat-stroked-button.mat-accent.mat-button-disabled, .theme-mr-wrapper .mat-stroked-button.mat-warn.mat-button-disabled, .theme-mr-wrapper .mat-stroked-button.mat-button-disabled.mat-button-disabled {
  color: rgba(0, 0, 0, 0.26);
}
.theme-mr-wrapper .mat-button.mat-primary .mat-button-focus-overlay, .theme-mr-wrapper .mat-icon-button.mat-primary .mat-button-focus-overlay, .theme-mr-wrapper .mat-stroked-button.mat-primary .mat-button-focus-overlay {
  background-color: #455a64;
}
.theme-mr-wrapper .mat-button.mat-accent .mat-button-focus-overlay, .theme-mr-wrapper .mat-icon-button.mat-accent .mat-button-focus-overlay, .theme-mr-wrapper .mat-stroked-button.mat-accent .mat-button-focus-overlay {
  background-color: #d4e157;
}
.theme-mr-wrapper .mat-button.mat-warn .mat-button-focus-overlay, .theme-mr-wrapper .mat-icon-button.mat-warn .mat-button-focus-overlay, .theme-mr-wrapper .mat-stroked-button.mat-warn .mat-button-focus-overlay {
  background-color: #f44336;
}
.theme-mr-wrapper .mat-button.mat-button-disabled .mat-button-focus-overlay, .theme-mr-wrapper .mat-icon-button.mat-button-disabled .mat-button-focus-overlay, .theme-mr-wrapper .mat-stroked-button.mat-button-disabled .mat-button-focus-overlay {
  background-color: transparent;
}
.theme-mr-wrapper .mat-button .mat-ripple-element, .theme-mr-wrapper .mat-icon-button .mat-ripple-element, .theme-mr-wrapper .mat-stroked-button .mat-ripple-element {
  opacity: 0.1;
  background-color: currentColor;
}
.theme-mr-wrapper .mat-button-focus-overlay {
  background: black;
}
.theme-mr-wrapper .mat-stroked-button:not(.mat-button-disabled) {
  border-color: rgba(0, 0, 0, 0.12);
}
.theme-mr-wrapper .mat-flat-button, .theme-mr-wrapper .mat-raised-button, .theme-mr-wrapper .mat-fab, .theme-mr-wrapper .mat-mini-fab {
  color: rgba(0, 0, 0, 0.87);
  background-color: white;
}
.theme-mr-wrapper .mat-flat-button.mat-primary, .theme-mr-wrapper .mat-raised-button.mat-primary, .theme-mr-wrapper .mat-fab.mat-primary, .theme-mr-wrapper .mat-mini-fab.mat-primary {
  color: white;
}
.theme-mr-wrapper .mat-flat-button.mat-accent, .theme-mr-wrapper .mat-raised-button.mat-accent, .theme-mr-wrapper .mat-fab.mat-accent, .theme-mr-wrapper .mat-mini-fab.mat-accent {
  color: rgba(0, 0, 0, 0.87);
}
.theme-mr-wrapper .mat-flat-button.mat-warn, .theme-mr-wrapper .mat-raised-button.mat-warn, .theme-mr-wrapper .mat-fab.mat-warn, .theme-mr-wrapper .mat-mini-fab.mat-warn {
  color: white;
}
.theme-mr-wrapper .mat-flat-button.mat-primary.mat-button-disabled, .theme-mr-wrapper .mat-flat-button.mat-accent.mat-button-disabled, .theme-mr-wrapper .mat-flat-button.mat-warn.mat-button-disabled, .theme-mr-wrapper .mat-flat-button.mat-button-disabled.mat-button-disabled, .theme-mr-wrapper .mat-raised-button.mat-primary.mat-button-disabled, .theme-mr-wrapper .mat-raised-button.mat-accent.mat-button-disabled, .theme-mr-wrapper .mat-raised-button.mat-warn.mat-button-disabled, .theme-mr-wrapper .mat-raised-button.mat-button-disabled.mat-button-disabled, .theme-mr-wrapper .mat-fab.mat-primary.mat-button-disabled, .theme-mr-wrapper .mat-fab.mat-accent.mat-button-disabled, .theme-mr-wrapper .mat-fab.mat-warn.mat-button-disabled, .theme-mr-wrapper .mat-fab.mat-button-disabled.mat-button-disabled, .theme-mr-wrapper .mat-mini-fab.mat-primary.mat-button-disabled, .theme-mr-wrapper .mat-mini-fab.mat-accent.mat-button-disabled, .theme-mr-wrapper .mat-mini-fab.mat-warn.mat-button-disabled, .theme-mr-wrapper .mat-mini-fab.mat-button-disabled.mat-button-disabled {
  color: rgba(0, 0, 0, 0.26);
}
.theme-mr-wrapper .mat-flat-button.mat-primary, .theme-mr-wrapper .mat-raised-button.mat-primary, .theme-mr-wrapper .mat-fab.mat-primary, .theme-mr-wrapper .mat-mini-fab.mat-primary {
  background-color: #455a64;
}
.theme-mr-wrapper .mat-flat-button.mat-accent, .theme-mr-wrapper .mat-raised-button.mat-accent, .theme-mr-wrapper .mat-fab.mat-accent, .theme-mr-wrapper .mat-mini-fab.mat-accent {
  background-color: #d4e157;
}
.theme-mr-wrapper .mat-flat-button.mat-warn, .theme-mr-wrapper .mat-raised-button.mat-warn, .theme-mr-wrapper .mat-fab.mat-warn, .theme-mr-wrapper .mat-mini-fab.mat-warn {
  background-color: #f44336;
}
.theme-mr-wrapper .mat-flat-button.mat-primary.mat-button-disabled, .theme-mr-wrapper .mat-flat-button.mat-accent.mat-button-disabled, .theme-mr-wrapper .mat-flat-button.mat-warn.mat-button-disabled, .theme-mr-wrapper .mat-flat-button.mat-button-disabled.mat-button-disabled, .theme-mr-wrapper .mat-raised-button.mat-primary.mat-button-disabled, .theme-mr-wrapper .mat-raised-button.mat-accent.mat-button-disabled, .theme-mr-wrapper .mat-raised-button.mat-warn.mat-button-disabled, .theme-mr-wrapper .mat-raised-button.mat-button-disabled.mat-button-disabled, .theme-mr-wrapper .mat-fab.mat-primary.mat-button-disabled, .theme-mr-wrapper .mat-fab.mat-accent.mat-button-disabled, .theme-mr-wrapper .mat-fab.mat-warn.mat-button-disabled, .theme-mr-wrapper .mat-fab.mat-button-disabled.mat-button-disabled, .theme-mr-wrapper .mat-mini-fab.mat-primary.mat-button-disabled, .theme-mr-wrapper .mat-mini-fab.mat-accent.mat-button-disabled, .theme-mr-wrapper .mat-mini-fab.mat-warn.mat-button-disabled, .theme-mr-wrapper .mat-mini-fab.mat-button-disabled.mat-button-disabled {
  background-color: rgba(0, 0, 0, 0.12);
}
.theme-mr-wrapper .mat-flat-button.mat-primary .mat-ripple-element, .theme-mr-wrapper .mat-raised-button.mat-primary .mat-ripple-element, .theme-mr-wrapper .mat-fab.mat-primary .mat-ripple-element, .theme-mr-wrapper .mat-mini-fab.mat-primary .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.1);
}
.theme-mr-wrapper .mat-flat-button.mat-accent .mat-ripple-element, .theme-mr-wrapper .mat-raised-button.mat-accent .mat-ripple-element, .theme-mr-wrapper .mat-fab.mat-accent .mat-ripple-element, .theme-mr-wrapper .mat-mini-fab.mat-accent .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.1);
}
.theme-mr-wrapper .mat-flat-button.mat-warn .mat-ripple-element, .theme-mr-wrapper .mat-raised-button.mat-warn .mat-ripple-element, .theme-mr-wrapper .mat-fab.mat-warn .mat-ripple-element, .theme-mr-wrapper .mat-mini-fab.mat-warn .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.1);
}
.theme-mr-wrapper .mat-stroked-button:not([class*=mat-elevation-z]), .theme-mr-wrapper .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);
}
.theme-mr-wrapper .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);
}
.theme-mr-wrapper .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);
}
.theme-mr-wrapper .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);
}
.theme-mr-wrapper .mat-fab:not([class*=mat-elevation-z]), .theme-mr-wrapper .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);
}
.theme-mr-wrapper .mat-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]), .theme-mr-wrapper .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);
}
.theme-mr-wrapper .mat-fab.mat-button-disabled:not([class*=mat-elevation-z]), .theme-mr-wrapper .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);
}
.theme-mr-wrapper .mat-button-toggle-standalone,
.theme-mr-wrapper .mat-button-toggle-group {
  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);
}
.theme-mr-wrapper .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,
.theme-mr-wrapper .mat-button-toggle-group-appearance-standard {
  box-shadow: none;
}
.theme-mr-wrapper .mat-button-toggle {
  color: rgba(0, 0, 0, 0.38);
}
.theme-mr-wrapper .mat-button-toggle .mat-button-toggle-focus-overlay {
  background-color: rgba(0, 0, 0, 0.12);
}
.theme-mr-wrapper .mat-button-toggle-appearance-standard {
  color: rgba(0, 0, 0, 0.87);
  background: white;
}
.theme-mr-wrapper .mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay {
  background-color: black;
}
.theme-mr-wrapper .mat-button-toggle-group-appearance-standard .mat-button-toggle + .mat-button-toggle {
  border-left: solid 1px rgba(0, 0, 0, 0.12);
}
.theme-mr-wrapper [dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle + .mat-button-toggle {
  border-left: none;
  border-right: solid 1px rgba(0, 0, 0, 0.12);
}
.theme-mr-wrapper .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 rgba(0, 0, 0, 0.12);
}
.theme-mr-wrapper .mat-button-toggle-checked {
  background-color: #e0e0e0;
  color: rgba(0, 0, 0, 0.54);
}
.theme-mr-wrapper .mat-button-toggle-checked.mat-button-toggle-appearance-standard {
  color: rgba(0, 0, 0, 0.87);
}
.theme-mr-wrapper .mat-button-toggle-disabled {
  color: rgba(0, 0, 0, 0.26);
  background-color: #eeeeee;
}
.theme-mr-wrapper .mat-button-toggle-disabled.mat-button-toggle-appearance-standard {
  background: white;
}
.theme-mr-wrapper .mat-button-toggle-disabled.mat-button-toggle-checked {
  background-color: #bdbdbd;
}
.theme-mr-wrapper .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,
.theme-mr-wrapper .mat-button-toggle-group-appearance-standard {
  border: solid 1px rgba(0, 0, 0, 0.12);
}
.theme-mr-wrapper .mat-card {
  background: white;
  color: rgba(0, 0, 0, 0.87);
}
.theme-mr-wrapper .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);
}
.theme-mr-wrapper .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);
}
.theme-mr-wrapper .mat-card-subtitle {
  color: rgba(0, 0, 0, 0.54);
}
.theme-mr-wrapper .mat-checkbox-frame {
  border-color: rgba(0, 0, 0, 0.54);
}
.theme-mr-wrapper .mat-checkbox-checkmark {
  fill: #fafafa;
}
.theme-mr-wrapper .mat-checkbox-checkmark-path {
  stroke: #fafafa !important;
}
.theme-mr-wrapper .mat-checkbox-mixedmark {
  background-color: #fafafa;
}
.theme-mr-wrapper .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background, .theme-mr-wrapper .mat-checkbox-checked.mat-primary .mat-checkbox-background {
  background-color: #455a64;
}
.theme-mr-wrapper .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background, .theme-mr-wrapper .mat-checkbox-checked.mat-accent .mat-checkbox-background {
  background-color: #d4e157;
}
.theme-mr-wrapper .mat-checkbox-indeterminate.mat-warn .mat-checkbox-background, .theme-mr-wrapper .mat-checkbox-checked.mat-warn .mat-checkbox-background {
  background-color: #f44336;
}
.theme-mr-wrapper .mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background, .theme-mr-wrapper .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background {
  background-color: #b0b0b0;
}
.theme-mr-wrapper .mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame {
  border-color: #b0b0b0;
}
.theme-mr-wrapper .mat-checkbox-disabled .mat-checkbox-label {
  color: rgba(0, 0, 0, 0.54);
}
.theme-mr-wrapper .mat-checkbox .mat-ripple-element {
  background-color: black;
}
.theme-mr-wrapper .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,
.theme-mr-wrapper .mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element {
  background: #455a64;
}
.theme-mr-wrapper .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,
.theme-mr-wrapper .mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element {
  background: #d4e157;
}
.theme-mr-wrapper .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,
.theme-mr-wrapper .mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element {
  background: #f44336;
}
.theme-mr-wrapper .mat-chip.mat-standard-chip {
  background-color: #e0e0e0;
  color: rgba(0, 0, 0, 0.87);
}
.theme-mr-wrapper .mat-chip.mat-standard-chip .mat-chip-remove {
  color: rgba(0, 0, 0, 0.87);
  opacity: 0.4;
}
.theme-mr-wrapper .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);
}
.theme-mr-wrapper .mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover {
  opacity: 0.54;
}
.theme-mr-wrapper .mat-chip.mat-standard-chip.mat-chip-disabled {
  opacity: 0.4;
}
.theme-mr-wrapper .mat-chip.mat-standard-chip::after {
  background: black;
}
.theme-mr-wrapper .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary {
  background-color: #455a64;
  color: white;
}
.theme-mr-wrapper .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove {
  color: white;
  opacity: 0.4;
}
.theme-mr-wrapper .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.1);
}
.theme-mr-wrapper .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn {
  background-color: #f44336;
  color: white;
}
.theme-mr-wrapper .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove {
  color: white;
  opacity: 0.4;
}
.theme-mr-wrapper .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.1);
}
.theme-mr-wrapper .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent {
  background-color: #d4e157;
  color: rgba(0, 0, 0, 0.87);
}
.theme-mr-wrapper .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove {
  color: rgba(0, 0, 0, 0.87);
  opacity: 0.4;
}
.theme-mr-wrapper .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.1);
}
.theme-mr-wrapper .mat-table {
  background: white;
}
.theme-mr-wrapper .mat-table thead, .theme-mr-wrapper .mat-table tbody, .theme-mr-wrapper .mat-table tfoot,
.theme-mr-wrapper mat-header-row, .theme-mr-wrapper mat-row, .theme-mr-wrapper mat-footer-row,
.theme-mr-wrapper [mat-header-row], .theme-mr-wrapper [mat-row], .theme-mr-wrapper [mat-footer-row],
.theme-mr-wrapper .mat-table-sticky {
  background: inherit;
}
.theme-mr-wrapper mat-row, .theme-mr-wrapper mat-header-row, .theme-mr-wrapper mat-footer-row,
.theme-mr-wrapper th.mat-header-cell, .theme-mr-wrapper td.mat-cell, .theme-mr-wrapper td.mat-footer-cell {
  border-bottom-color: rgba(0, 0, 0, 0.12);
}
.theme-mr-wrapper .mat-header-cell {
  color: rgba(0, 0, 0, 0.54);
}
.theme-mr-wrapper .mat-cell, .theme-mr-wrapper .mat-footer-cell {
  color: rgba(0, 0, 0, 0.87);
}
.theme-mr-wrapper .mat-calendar-arrow {
  border-top-color: rgba(0, 0, 0, 0.54);
}
.theme-mr-wrapper .mat-datepicker-toggle,
.theme-mr-wrapper .mat-datepicker-content .mat-calendar-next-button,
.theme-mr-wrapper .mat-datepicker-content .mat-calendar-previous-button {
  color: rgba(0, 0, 0, 0.54);
}
.theme-mr-wrapper .mat-calendar-table-header {
  color: rgba(0, 0, 0, 0.38);
}
.theme-mr-wrapper .mat-calendar-table-header-divider::after {
  background: rgba(0, 0, 0, 0.12);
}
.theme-mr-wrapper .mat-calendar-body-label {
  color: rgba(0, 0, 0, 0.54);
}
.theme-mr-wrapper .mat-calendar-body-cell-content,
.theme-mr-wrapper .mat-date-range-input-separator {
  color: rgba(0, 0, 0, 0.87);
  border-color: transparent;
}
.theme-mr-wrapper .mat-calendar-body-disabled > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  color: rgba(0, 0, 0, 0.38);
}
.theme-mr-wrapper .mat-form-field-disabled .mat-date-range-input-separator {
  color: rgba(0, 0, 0, 0.38);
}
.theme-mr-wrapper .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),
.theme-mr-wrapper .cdk-keyboard-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),
.theme-mr-wrapper .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(0, 0, 0, 0.04);
}
.theme-mr-wrapper .mat-calendar-body-in-preview {
  color: rgba(0, 0, 0, 0.24);
}
.theme-mr-wrapper .mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  border-color: rgba(0, 0, 0, 0.38);
}
.theme-mr-wrapper .mat-calendar-body-disabled > .mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  border-color: rgba(0, 0, 0, 0.18);
}
.theme-mr-wrapper .mat-calendar-body-in-range::before {
  background: rgba(69, 90, 100, 0.2);
}
.theme-mr-wrapper .mat-calendar-body-comparison-identical,
.theme-mr-wrapper .mat-calendar-body-in-comparison-range::before {
  background: rgba(249, 171, 0, 0.2);
}
.theme-mr-wrapper .mat-calendar-body-comparison-bridge-start::before,
.theme-mr-wrapper [dir=rtl] .mat-calendar-body-comparison-bridge-end::before {
  background: linear-gradient(to right, rgba(69, 90, 100, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.theme-mr-wrapper .mat-calendar-body-comparison-bridge-end::before,
.theme-mr-wrapper [dir=rtl] .mat-calendar-body-comparison-bridge-start::before {
  background: linear-gradient(to left, rgba(69, 90, 100, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.theme-mr-wrapper .mat-calendar-body-in-range > .mat-calendar-body-comparison-identical,
.theme-mr-wrapper .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after {
  background: #a8dab5;
}
.theme-mr-wrapper .mat-calendar-body-comparison-identical.mat-calendar-body-selected,
.theme-mr-wrapper .mat-calendar-body-in-comparison-range > .mat-calendar-body-selected {
  background: #46a35e;
}
.theme-mr-wrapper .mat-calendar-body-selected {
  background-color: #455a64;
  color: white;
}
.theme-mr-wrapper .mat-calendar-body-disabled > .mat-calendar-body-selected {
  background-color: rgba(69, 90, 100, 0.4);
}
.theme-mr-wrapper .mat-calendar-body-today.mat-calendar-body-selected {
  box-shadow: inset 0 0 0 1px white;
}
.theme-mr-wrapper .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: white;
  color: rgba(0, 0, 0, 0.87);
}
.theme-mr-wrapper .mat-datepicker-content.mat-accent .mat-calendar-body-in-range::before {
  background: rgba(212, 225, 87, 0.2);
}
.theme-mr-wrapper .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,
.theme-mr-wrapper .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range::before {
  background: rgba(249, 171, 0, 0.2);
}
.theme-mr-wrapper .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start::before,
.theme-mr-wrapper .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end::before {
  background: linear-gradient(to right, rgba(212, 225, 87, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.theme-mr-wrapper .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end::before,
.theme-mr-wrapper .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start::before {
  background: linear-gradient(to left, rgba(212, 225, 87, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.theme-mr-wrapper .mat-datepicker-content.mat-accent .mat-calendar-body-in-range > .mat-calendar-body-comparison-identical,
.theme-mr-wrapper .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after {
  background: #a8dab5;
}
.theme-mr-wrapper .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,
.theme-mr-wrapper .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range > .mat-calendar-body-selected {
  background: #46a35e;
}
.theme-mr-wrapper .mat-datepicker-content.mat-accent .mat-calendar-body-selected {
  background-color: #d4e157;
  color: rgba(0, 0, 0, 0.87);
}
.theme-mr-wrapper .mat-datepicker-content.mat-accent .mat-calendar-body-disabled > .mat-calendar-body-selected {
  background-color: rgba(212, 225, 87, 0.4);
}
.theme-mr-wrapper .mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.87);
}
.theme-mr-wrapper .mat-datepicker-content.mat-warn .mat-calendar-body-in-range::before {
  background: rgba(244, 67, 54, 0.2);
}
.theme-mr-wrapper .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,
.theme-mr-wrapper .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range::before {
  background: rgba(249, 171, 0, 0.2);
}
.theme-mr-wrapper .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start::before,
.theme-mr-wrapper .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end::before {
  background: linear-gradient(to right, rgba(244, 67, 54, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.theme-mr-wrapper .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end::before,
.theme-mr-wrapper .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start::before {
  background: linear-gradient(to left, rgba(244, 67, 54, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.theme-mr-wrapper .mat-datepicker-content.mat-warn .mat-calendar-body-in-range > .mat-calendar-body-comparison-identical,
.theme-mr-wrapper .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after {
  background: #a8dab5;
}
.theme-mr-wrapper .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,
.theme-mr-wrapper .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range > .mat-calendar-body-selected {
  background: #46a35e;
}
.theme-mr-wrapper .mat-datepicker-content.mat-warn .mat-calendar-body-selected {
  background-color: #f44336;
  color: white;
}
.theme-mr-wrapper .mat-datepicker-content.mat-warn .mat-calendar-body-disabled > .mat-calendar-body-selected {
  background-color: rgba(244, 67, 54, 0.4);
}
.theme-mr-wrapper .mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected {
  box-shadow: inset 0 0 0 1px white;
}
.theme-mr-wrapper .mat-datepicker-content-touch {
  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);
}
.theme-mr-wrapper .mat-datepicker-toggle-active {
  color: #455a64;
}
.theme-mr-wrapper .mat-datepicker-toggle-active.mat-accent {
  color: #d4e157;
}
.theme-mr-wrapper .mat-datepicker-toggle-active.mat-warn {
  color: #f44336;
}
.theme-mr-wrapper .mat-date-range-input-inner[disabled] {
  color: rgba(0, 0, 0, 0.38);
}
.theme-mr-wrapper .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: white;
  color: rgba(0, 0, 0, 0.87);
}
.theme-mr-wrapper .mat-divider {
  border-top-color: rgba(0, 0, 0, 0.12);
}
.theme-mr-wrapper .mat-divider-vertical {
  border-right-color: rgba(0, 0, 0, 0.12);
}
.theme-mr-wrapper .mat-expansion-panel {
  background: white;
  color: rgba(0, 0, 0, 0.87);
}
.theme-mr-wrapper .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);
}
.theme-mr-wrapper .mat-action-row {
  border-top-color: rgba(0, 0, 0, 0.12);
}
.theme-mr-wrapper .mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]), .theme-mr-wrapper .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]), .theme-mr-wrapper .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]) {
  background: rgba(0, 0, 0, 0.04);
}
@media (hover: none) {
  .theme-mr-wrapper .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover {
    background: white;
  }
}
.theme-mr-wrapper .mat-expansion-panel-header-title {
  color: rgba(0, 0, 0, 0.87);
}
.theme-mr-wrapper .mat-expansion-panel-header-description,
.theme-mr-wrapper .mat-expansion-indicator::after {
  color: rgba(0, 0, 0, 0.54);
}
.theme-mr-wrapper .mat-expansion-panel-header[aria-disabled=true] {
  color: rgba(0, 0, 0, 0.26);
}
.theme-mr-wrapper .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,
.theme-mr-wrapper .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description {
  color: inherit;
}
.theme-mr-wrapper .mat-form-field-label {
  color: rgba(0, 0, 0, 0.6);
}
.theme-mr-wrapper .mat-hint {
  color: rgba(0, 0, 0, 0.6);
}
.theme-mr-wrapper .mat-form-field.mat-focused .mat-form-field-label {
  color: #455a64;
}
.theme-mr-wrapper .mat-form-field.mat-focused .mat-form-field-label.mat-accent {
  color: #d4e157;
}
.theme-mr-wrapper .mat-form-field.mat-focused .mat-form-field-label.mat-warn {
  color: #f44336;
}
.theme-mr-wrapper .mat-focused .mat-form-field-required-marker {
  color: #d4e157;
}
.theme-mr-wrapper .mat-form-field-ripple {
  background-color: rgba(0, 0, 0, 0.87);
}
.theme-mr-wrapper .mat-form-field.mat-focused .mat-form-field-ripple {
  background-color: #455a64;
}
.theme-mr-wrapper .mat-form-field.mat-focused .mat-form-field-ripple.mat-accent {
  background-color: #d4e157;
}
.theme-mr-wrapper .mat-form-field.mat-focused .mat-form-field-ripple.mat-warn {
  background-color: #f44336;
}
.theme-mr-wrapper .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix::after {
  color: #455a64;
}
.theme-mr-wrapper .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix::after {
  color: #d4e157;
}
.theme-mr-wrapper .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix::after {
  color: #f44336;
}
.theme-mr-wrapper .mat-form-field.mat-form-field-invalid .mat-form-field-label {
  color: #f44336;
}
.theme-mr-wrapper .mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,
.theme-mr-wrapper .mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker {
  color: #f44336;
}
.theme-mr-wrapper .mat-form-field.mat-form-field-invalid .mat-form-field-ripple,
.theme-mr-wrapper .mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent {
  background-color: #f44336;
}
.theme-mr-wrapper .mat-error {
  color: #f44336;
}
.theme-mr-wrapper .mat-form-field-appearance-legacy .mat-form-field-label {
  color: rgba(0, 0, 0, 0.54);
}
.theme-mr-wrapper .mat-form-field-appearance-legacy .mat-hint {
  color: rgba(0, 0, 0, 0.54);
}
.theme-mr-wrapper .mat-form-field-appearance-legacy .mat-form-field-underline {
  background-color: rgba(0, 0, 0, 0.42);
}
.theme-mr-wrapper .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.42) 33%, transparent 0%);
  background-size: 4px 100%;
  background-repeat: repeat-x;
}
.theme-mr-wrapper .mat-form-field-appearance-standard .mat-form-field-underline {
  background-color: rgba(0, 0, 0, 0.42);
}
.theme-mr-wrapper .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.42) 33%, transparent 0%);
  background-size: 4px 100%;
  background-repeat: repeat-x;
}
.theme-mr-wrapper .mat-form-field-appearance-fill .mat-form-field-flex {
  background-color: rgba(0, 0, 0, 0.04);
}
.theme-mr-wrapper .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex {
  background-color: rgba(0, 0, 0, 0.02);
}
.theme-mr-wrapper .mat-form-field-appearance-fill .mat-form-field-underline::before {
  background-color: rgba(0, 0, 0, 0.42);
}
.theme-mr-wrapper .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-label {
  color: rgba(0, 0, 0, 0.38);
}
.theme-mr-wrapper .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline::before {
  background-color: transparent;
}
.theme-mr-wrapper .mat-form-field-appearance-outline .mat-form-field-outline {
  color: rgba(0, 0, 0, 0.12);
}
.theme-mr-wrapper .mat-form-field-appearance-outline .mat-form-field-outline-thick {
  color: rgba(0, 0, 0, 0.87);
}
.theme-mr-wrapper .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick {
  color: #455a64;
}
.theme-mr-wrapper .mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick {
  color: #d4e157;
}
.theme-mr-wrapper .mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick {
  color: #f44336;
}
.theme-mr-wrapper .mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick {
  color: #f44336;
}
.theme-mr-wrapper .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-label {
  color: rgba(0, 0, 0, 0.38);
}
.theme-mr-wrapper .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline {
  color: rgba(0, 0, 0, 0.06);
}
.theme-mr-wrapper .mat-icon.mat-primary {
  color: #455a64;
}
.theme-mr-wrapper .mat-icon.mat-accent {
  color: #d4e157;
}
.theme-mr-wrapper .mat-icon.mat-warn {
  color: #f44336;
}
.theme-mr-wrapper .mat-form-field-type-mat-native-select .mat-form-field-infix::after {
  color: rgba(0, 0, 0, 0.54);
}
.theme-mr-wrapper .mat-input-element:disabled,
.theme-mr-wrapper .mat-form-field-type-mat-native-select.mat-form-field-disabled .mat-form-field-infix::after {
  color: rgba(0, 0, 0, 0.38);
}
.theme-mr-wrapper .mat-input-element {
  caret-color: #455a64;
}
.theme-mr-wrapper .mat-input-element::-moz-placeholder {
  color: rgba(0, 0, 0, 0.42);
}
.theme-mr-wrapper .mat-input-element:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.42);
}
.theme-mr-wrapper .mat-input-element::placeholder {
  color: rgba(0, 0, 0, 0.42);
}
.theme-mr-wrapper .mat-input-element::-moz-placeholder {
  color: rgba(0, 0, 0, 0.42);
}
.theme-mr-wrapper .mat-input-element::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.42);
}
.theme-mr-wrapper .mat-input-element:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.42);
}
.theme-mr-wrapper .mat-form-field.mat-accent .mat-input-element {
  caret-color: #d4e157;
}
.theme-mr-wrapper .mat-form-field.mat-warn .mat-input-element,
.theme-mr-wrapper .mat-form-field-invalid .mat-input-element {
  caret-color: #f44336;
}
.theme-mr-wrapper .mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix::after {
  color: #f44336;
}
.theme-mr-wrapper .mat-list-base .mat-list-item {
  color: rgba(0, 0, 0, 0.87);
}
.theme-mr-wrapper .mat-list-base .mat-list-option {
  color: rgba(0, 0, 0, 0.87);
}
.theme-mr-wrapper .mat-list-base .mat-subheader {
  color: rgba(0, 0, 0, 0.54);
}
.theme-mr-wrapper .mat-list-item-disabled {
  background-color: #eeeeee;
}
.theme-mr-wrapper .mat-list-option:hover, .theme-mr-wrapper .mat-list-option:focus,
.theme-mr-wrapper .mat-nav-list .mat-list-item:hover,
.theme-mr-wrapper .mat-nav-list .mat-list-item:focus,
.theme-mr-wrapper .mat-action-list .mat-list-item:hover,
.theme-mr-wrapper .mat-action-list .mat-list-item:focus {
  background: rgba(0, 0, 0, 0.04);
}
.theme-mr-wrapper .mat-list-single-selected-option, .theme-mr-wrapper .mat-list-single-selected-option:hover, .theme-mr-wrapper .mat-list-single-selected-option:focus {
  background: rgba(0, 0, 0, 0.12);
}
.theme-mr-wrapper .mat-menu-panel {
  background: white;
}
.theme-mr-wrapper .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);
}
.theme-mr-wrapper .mat-menu-item {
  background: transparent;
  color: rgba(0, 0, 0, 0.87);
}
.theme-mr-wrapper .mat-menu-item[disabled], .theme-mr-wrapper .mat-menu-item[disabled]::after {
  color: rgba(0, 0, 0, 0.38);
}
.theme-mr-wrapper .mat-menu-item .mat-icon-no-color,
.theme-mr-wrapper .mat-menu-item-submenu-trigger::after {
  color: rgba(0, 0, 0, 0.54);
}
.theme-mr-wrapper .mat-menu-item:hover:not([disabled]),
.theme-mr-wrapper .mat-menu-item.cdk-program-focused:not([disabled]),
.theme-mr-wrapper .mat-menu-item.cdk-keyboard-focused:not([disabled]),
.theme-mr-wrapper .mat-menu-item-highlighted:not([disabled]) {
  background: rgba(0, 0, 0, 0.04);
}
.theme-mr-wrapper .mat-paginator {
  background: white;
}
.theme-mr-wrapper .mat-paginator,
.theme-mr-wrapper .mat-paginator-page-size .mat-select-trigger {
  color: rgba(0, 0, 0, 0.54);
}
.theme-mr-wrapper .mat-paginator-decrement,
.theme-mr-wrapper .mat-paginator-increment {
  border-top: 2px solid rgba(0, 0, 0, 0.54);
  border-right: 2px solid rgba(0, 0, 0, 0.54);
}
.theme-mr-wrapper .mat-paginator-first,
.theme-mr-wrapper .mat-paginator-last {
  border-top: 2px solid rgba(0, 0, 0, 0.54);
}
.theme-mr-wrapper .mat-icon-button[disabled] .mat-paginator-decrement,
.theme-mr-wrapper .mat-icon-button[disabled] .mat-paginator-increment,
.theme-mr-wrapper .mat-icon-button[disabled] .mat-paginator-first,
.theme-mr-wrapper .mat-icon-button[disabled] .mat-paginator-last {
  border-color: rgba(0, 0, 0, 0.38);
}
.theme-mr-wrapper .mat-progress-bar-background {
  fill: #cfd8dc;
}
.theme-mr-wrapper .mat-progress-bar-buffer {
  background-color: #cfd8dc;
}
.theme-mr-wrapper .mat-progress-bar-fill::after {
  background-color: #455a64;
}
.theme-mr-wrapper .mat-progress-bar.mat-accent .mat-progress-bar-background {
  fill: #f0f4c3;
}
.theme-mr-wrapper .mat-progress-bar.mat-accent .mat-progress-bar-buffer {
  background-color: #f0f4c3;
}
.theme-mr-wrapper .mat-progress-bar.mat-accent .mat-progress-bar-fill::after {
  background-color: #d4e157;
}
.theme-mr-wrapper .mat-progress-bar.mat-warn .mat-progress-bar-background {
  fill: #ffcdd2;
}
.theme-mr-wrapper .mat-progress-bar.mat-warn .mat-progress-bar-buffer {
  background-color: #ffcdd2;
}
.theme-mr-wrapper .mat-progress-bar.mat-warn .mat-progress-bar-fill::after {
  background-color: #f44336;
}
.theme-mr-wrapper .mat-progress-spinner circle, .theme-mr-wrapper .mat-spinner circle {
  stroke: #455a64;
}
.theme-mr-wrapper .mat-progress-spinner.mat-accent circle, .theme-mr-wrapper .mat-spinner.mat-accent circle {
  stroke: #d4e157;
}
.theme-mr-wrapper .mat-progress-spinner.mat-warn circle, .theme-mr-wrapper .mat-spinner.mat-warn circle {
  stroke: #f44336;
}
.theme-mr-wrapper .mat-radio-outer-circle {
  border-color: rgba(0, 0, 0, 0.54);
}
.theme-mr-wrapper .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle {
  border-color: #455a64;
}
.theme-mr-wrapper .mat-radio-button.mat-primary .mat-radio-inner-circle,
.theme-mr-wrapper .mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .theme-mr-wrapper .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple, .theme-mr-wrapper .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple {
  background-color: #455a64;
}
.theme-mr-wrapper .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle {
  border-color: #d4e157;
}
.theme-mr-wrapper .mat-radio-button.mat-accent .mat-radio-inner-circle,
.theme-mr-wrapper .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .theme-mr-wrapper .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple, .theme-mr-wrapper .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple {
  background-color: #d4e157;
}
.theme-mr-wrapper .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle {
  border-color: #f44336;
}
.theme-mr-wrapper .mat-radio-button.mat-warn .mat-radio-inner-circle,
.theme-mr-wrapper .mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .theme-mr-wrapper .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple, .theme-mr-wrapper .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple {
  background-color: #f44336;
}
.theme-mr-wrapper .mat-radio-button.mat-radio-disabled.mat-radio-checked .mat-radio-outer-circle,
.theme-mr-wrapper .mat-radio-button.mat-radio-disabled .mat-radio-outer-circle {
  border-color: rgba(0, 0, 0, 0.38);
}
.theme-mr-wrapper .mat-radio-button.mat-radio-disabled .mat-radio-ripple .mat-ripple-element,
.theme-mr-wrapper .mat-radio-button.mat-radio-disabled .mat-radio-inner-circle {
  background-color: rgba(0, 0, 0, 0.38);
}
.theme-mr-wrapper .mat-radio-button.mat-radio-disabled .mat-radio-label-content {
  color: rgba(0, 0, 0, 0.38);
}
.theme-mr-wrapper .mat-radio-button .mat-ripple-element {
  background-color: black;
}
.theme-mr-wrapper .mat-select-value {
  color: rgba(0, 0, 0, 0.87);
}
.theme-mr-wrapper .mat-select-placeholder {
  color: rgba(0, 0, 0, 0.42);
}
.theme-mr-wrapper .mat-select-disabled .mat-select-value {
  color: rgba(0, 0, 0, 0.38);
}
.theme-mr-wrapper .mat-select-arrow {
  color: rgba(0, 0, 0, 0.54);
}
.theme-mr-wrapper .mat-select-panel {
  background: white;
}
.theme-mr-wrapper .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);
}
.theme-mr-wrapper .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple) {
  background: rgba(0, 0, 0, 0.12);
}
.theme-mr-wrapper .mat-form-field.mat-focused.mat-primary .mat-select-arrow {
  color: #455a64;
}
.theme-mr-wrapper .mat-form-field.mat-focused.mat-accent .mat-select-arrow {
  color: #d4e157;
}
.theme-mr-wrapper .mat-form-field.mat-focused.mat-warn .mat-select-arrow {
  color: #f44336;
}
.theme-mr-wrapper .mat-form-field .mat-select.mat-select-invalid .mat-select-arrow {
  color: #f44336;
}
.theme-mr-wrapper .mat-form-field .mat-select.mat-select-disabled .mat-select-arrow {
  color: rgba(0, 0, 0, 0.38);
}
.theme-mr-wrapper .mat-drawer-container {
  background-color: #fafafa;
  color: rgba(0, 0, 0, 0.87);
}
.theme-mr-wrapper .mat-drawer {
  background-color: white;
  color: rgba(0, 0, 0, 0.87);
}
.theme-mr-wrapper .mat-drawer.mat-drawer-push {
  background-color: white;
}
.theme-mr-wrapper .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);
}
.theme-mr-wrapper .mat-drawer-side {
  border-right: solid 1px rgba(0, 0, 0, 0.12);
}
.theme-mr-wrapper .mat-drawer-side.mat-drawer-end {
  border-left: solid 1px rgba(0, 0, 0, 0.12);
  border-right: none;
}
.theme-mr-wrapper [dir=rtl] .mat-drawer-side {
  border-left: solid 1px rgba(0, 0, 0, 0.12);
  border-right: none;
}
.theme-mr-wrapper [dir=rtl] .mat-drawer-side.mat-drawer-end {
  border-left: none;
  border-right: solid 1px rgba(0, 0, 0, 0.12);
}
.theme-mr-wrapper .mat-drawer-backdrop.mat-drawer-shown {
  background-color: rgba(0, 0, 0, 0.6);
}
.theme-mr-wrapper .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb {
  background-color: #d4e157;
}
.theme-mr-wrapper .mat-slide-toggle.mat-checked .mat-slide-toggle-bar {
  background-color: rgba(212, 225, 87, 0.54);
}
.theme-mr-wrapper .mat-slide-toggle.mat-checked .mat-ripple-element {
  background-color: #d4e157;
}
.theme-mr-wrapper .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb {
  background-color: #455a64;
}
.theme-mr-wrapper .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar {
  background-color: rgba(69, 90, 100, 0.54);
}
.theme-mr-wrapper .mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element {
  background-color: #455a64;
}
.theme-mr-wrapper .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb {
  background-color: #f44336;
}
.theme-mr-wrapper .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar {
  background-color: rgba(244, 67, 54, 0.54);
}
.theme-mr-wrapper .mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element {
  background-color: #f44336;
}
.theme-mr-wrapper .mat-slide-toggle:not(.mat-checked) .mat-ripple-element {
  background-color: black;
}
.theme-mr-wrapper .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;
}
.theme-mr-wrapper .mat-slide-toggle-bar {
  background-color: rgba(0, 0, 0, 0.38);
}
.theme-mr-wrapper .mat-slider-track-background {
  background-color: rgba(0, 0, 0, 0.26);
}
.theme-mr-wrapper .mat-primary .mat-slider-track-fill,
.theme-mr-wrapper .mat-primary .mat-slider-thumb,
.theme-mr-wrapper .mat-primary .mat-slider-thumb-label {
  background-color: #455a64;
}
.theme-mr-wrapper .mat-primary .mat-slider-thumb-label-text {
  color: white;
}
.theme-mr-wrapper .mat-primary .mat-slider-focus-ring {
  background-color: rgba(69, 90, 100, 0.2);
}
.theme-mr-wrapper .mat-accent .mat-slider-track-fill,
.theme-mr-wrapper .mat-accent .mat-slider-thumb,
.theme-mr-wrapper .mat-accent .mat-slider-thumb-label {
  background-color: #d4e157;
}
.theme-mr-wrapper .mat-accent .mat-slider-thumb-label-text {
  color: rgba(0, 0, 0, 0.87);
}
.theme-mr-wrapper .mat-accent .mat-slider-focus-ring {
  background-color: rgba(212, 225, 87, 0.2);
}
.theme-mr-wrapper .mat-warn .mat-slider-track-fill,
.theme-mr-wrapper .mat-warn .mat-slider-thumb,
.theme-mr-wrapper .mat-warn .mat-slider-thumb-label {
  background-color: #f44336;
}
.theme-mr-wrapper .mat-warn .mat-slider-thumb-label-text {
  color: white;
}
.theme-mr-wrapper .mat-warn .mat-slider-focus-ring {
  background-color: rgba(244, 67, 54, 0.2);
}
.theme-mr-wrapper .mat-slider:hover .mat-slider-track-background,
.theme-mr-wrapper .cdk-focused .mat-slider-track-background {
  background-color: rgba(0, 0, 0, 0.38);
}
.theme-mr-wrapper .mat-slider-disabled .mat-slider-track-background,
.theme-mr-wrapper .mat-slider-disabled .mat-slider-track-fill,
.theme-mr-wrapper .mat-slider-disabled .mat-slider-thumb {
  background-color: rgba(0, 0, 0, 0.26);
}
.theme-mr-wrapper .mat-slider-disabled:hover .mat-slider-track-background {
  background-color: rgba(0, 0, 0, 0.26);
}
.theme-mr-wrapper .mat-slider-min-value .mat-slider-focus-ring {
  background-color: rgba(0, 0, 0, 0.12);
}
.theme-mr-wrapper .mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,
.theme-mr-wrapper .mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label {
  background-color: rgba(0, 0, 0, 0.87);
}
.theme-mr-wrapper .mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,
.theme-mr-wrapper .mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label {
  background-color: rgba(0, 0, 0, 0.26);
}
.theme-mr-wrapper .mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb {
  border-color: rgba(0, 0, 0, 0.26);
  background-color: transparent;
}
.theme-mr-wrapper .mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb, .theme-mr-wrapper .mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb {
  border-color: rgba(0, 0, 0, 0.38);
}
.theme-mr-wrapper .mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb, .theme-mr-wrapper .mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb {
  border-color: rgba(0, 0, 0, 0.26);
}
.theme-mr-wrapper .mat-slider-has-ticks .mat-slider-wrapper::after {
  border-color: rgba(0, 0, 0, 0.7);
}
.theme-mr-wrapper .mat-slider-horizontal .mat-slider-ticks {
  background-image: repeating-linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);
  background-image: -moz-repeating-linear-gradient(0.0001deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);
}
.theme-mr-wrapper .mat-slider-vertical .mat-slider-ticks {
  background-image: repeating-linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);
}
.theme-mr-wrapper .mat-step-header.cdk-keyboard-focused, .theme-mr-wrapper .mat-step-header.cdk-program-focused, .theme-mr-wrapper .mat-step-header:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
@media (hover: none) {
  .theme-mr-wrapper .mat-step-header:hover {
    background: none;
  }
}
.theme-mr-wrapper .mat-step-header .mat-step-label,
.theme-mr-wrapper .mat-step-header .mat-step-optional {
  color: rgba(0, 0, 0, 0.54);
}
.theme-mr-wrapper .mat-step-header .mat-step-icon {
  background-color: rgba(0, 0, 0, 0.54);
  color: white;
}
.theme-mr-wrapper .mat-step-header .mat-step-icon-selected,
.theme-mr-wrapper .mat-step-header .mat-step-icon-state-done,
.theme-mr-wrapper .mat-step-header .mat-step-icon-state-edit {
  background-color: #455a64;
  color: white;
}
.theme-mr-wrapper .mat-step-header.mat-accent .mat-step-icon {
  color: rgba(0, 0, 0, 0.87);
}
.theme-mr-wrapper .mat-step-header.mat-accent .mat-step-icon-selected,
.theme-mr-wrapper .mat-step-header.mat-accent .mat-step-icon-state-done,
.theme-mr-wrapper .mat-step-header.mat-accent .mat-step-icon-state-edit {
  background-color: #d4e157;
  color: rgba(0, 0, 0, 0.87);
}
.theme-mr-wrapper .mat-step-header.mat-warn .mat-step-icon {
  color: white;
}
.theme-mr-wrapper .mat-step-header.mat-warn .mat-step-icon-selected,
.theme-mr-wrapper .mat-step-header.mat-warn .mat-step-icon-state-done,
.theme-mr-wrapper .mat-step-header.mat-warn .mat-step-icon-state-edit {
  background-color: #f44336;
  color: white;
}
.theme-mr-wrapper .mat-step-header .mat-step-icon-state-error {
  background-color: transparent;
  color: #f44336;
}
.theme-mr-wrapper .mat-step-header .mat-step-label.mat-step-label-active {
  color: rgba(0, 0, 0, 0.87);
}
.theme-mr-wrapper .mat-step-header .mat-step-label.mat-step-label-error {
  color: #f44336;
}
.theme-mr-wrapper .mat-stepper-horizontal, .theme-mr-wrapper .mat-stepper-vertical {
  background-color: white;
}
.theme-mr-wrapper .mat-stepper-vertical-line::before {
  border-left-color: rgba(0, 0, 0, 0.12);
}
.theme-mr-wrapper .mat-horizontal-stepper-header::before,
.theme-mr-wrapper .mat-horizontal-stepper-header::after,
.theme-mr-wrapper .mat-stepper-horizontal-line {
  border-top-color: rgba(0, 0, 0, 0.12);
}
.theme-mr-wrapper .mat-sort-header-arrow {
  color: #757575;
}
.theme-mr-wrapper .mat-tab-nav-bar,
.theme-mr-wrapper .mat-tab-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.theme-mr-wrapper .mat-tab-group-inverted-header .mat-tab-nav-bar,
.theme-mr-wrapper .mat-tab-group-inverted-header .mat-tab-header {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  border-bottom: none;
}
.theme-mr-wrapper .mat-tab-label, .theme-mr-wrapper .mat-tab-link {
  color: rgba(0, 0, 0, 0.87);
}
.theme-mr-wrapper .mat-tab-label.mat-tab-disabled, .theme-mr-wrapper .mat-tab-link.mat-tab-disabled {
  color: rgba(0, 0, 0, 0.38);
}
.theme-mr-wrapper .mat-tab-header-pagination-chevron {
  border-color: rgba(0, 0, 0, 0.87);
}
.theme-mr-wrapper .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: rgba(0, 0, 0, 0.38);
}
.theme-mr-wrapper .mat-tab-group[class*=mat-background-] .mat-tab-header,
.theme-mr-wrapper .mat-tab-nav-bar[class*=mat-background-] {
  border-bottom: none;
  border-top: none;
}
.theme-mr-wrapper .mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-mr-wrapper .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-mr-wrapper .mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-mr-wrapper .mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .theme-mr-wrapper .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-mr-wrapper .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-mr-wrapper .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-mr-wrapper .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(207, 216, 220, 0.3);
}
.theme-mr-wrapper .mat-tab-group.mat-primary .mat-ink-bar, .theme-mr-wrapper .mat-tab-nav-bar.mat-primary .mat-ink-bar {
  background-color: #455a64;
}
.theme-mr-wrapper .mat-tab-group.mat-primary.mat-background-primary .mat-ink-bar, .theme-mr-wrapper .mat-tab-nav-bar.mat-primary.mat-background-primary .mat-ink-bar {
  background-color: white;
}
.theme-mr-wrapper .mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-mr-wrapper .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-mr-wrapper .mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-mr-wrapper .mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .theme-mr-wrapper .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-mr-wrapper .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-mr-wrapper .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-mr-wrapper .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(240, 244, 195, 0.3);
}
.theme-mr-wrapper .mat-tab-group.mat-accent .mat-ink-bar, .theme-mr-wrapper .mat-tab-nav-bar.mat-accent .mat-ink-bar {
  background-color: #d4e157;
}
.theme-mr-wrapper .mat-tab-group.mat-accent.mat-background-accent .mat-ink-bar, .theme-mr-wrapper .mat-tab-nav-bar.mat-accent.mat-background-accent .mat-ink-bar {
  background-color: rgba(0, 0, 0, 0.87);
}
.theme-mr-wrapper .mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-mr-wrapper .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-mr-wrapper .mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-mr-wrapper .mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .theme-mr-wrapper .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-mr-wrapper .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-mr-wrapper .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-mr-wrapper .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(255, 205, 210, 0.3);
}
.theme-mr-wrapper .mat-tab-group.mat-warn .mat-ink-bar, .theme-mr-wrapper .mat-tab-nav-bar.mat-warn .mat-ink-bar {
  background-color: #f44336;
}
.theme-mr-wrapper .mat-tab-group.mat-warn.mat-background-warn .mat-ink-bar, .theme-mr-wrapper .mat-tab-nav-bar.mat-warn.mat-background-warn .mat-ink-bar {
  background-color: white;
}
.theme-mr-wrapper .mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-mr-wrapper .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-mr-wrapper .mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-mr-wrapper .mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .theme-mr-wrapper .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-mr-wrapper .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-mr-wrapper .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-mr-wrapper .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(207, 216, 220, 0.3);
}
.theme-mr-wrapper .mat-tab-group.mat-background-primary .mat-tab-header, .theme-mr-wrapper .mat-tab-group.mat-background-primary .mat-tab-links, .theme-mr-wrapper .mat-tab-group.mat-background-primary .mat-tab-header-pagination, .theme-mr-wrapper .mat-tab-nav-bar.mat-background-primary .mat-tab-header, .theme-mr-wrapper .mat-tab-nav-bar.mat-background-primary .mat-tab-links, .theme-mr-wrapper .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination {
  background-color: #455a64;
}
.theme-mr-wrapper .mat-tab-group.mat-background-primary .mat-tab-label, .theme-mr-wrapper .mat-tab-group.mat-background-primary .mat-tab-link, .theme-mr-wrapper .mat-tab-nav-bar.mat-background-primary .mat-tab-label, .theme-mr-wrapper .mat-tab-nav-bar.mat-background-primary .mat-tab-link {
  color: white;
}
.theme-mr-wrapper .mat-tab-group.mat-background-primary .mat-tab-label.mat-tab-disabled, .theme-mr-wrapper .mat-tab-group.mat-background-primary .mat-tab-link.mat-tab-disabled, .theme-mr-wrapper .mat-tab-nav-bar.mat-background-primary .mat-tab-label.mat-tab-disabled, .theme-mr-wrapper .mat-tab-nav-bar.mat-background-primary .mat-tab-link.mat-tab-disabled {
  color: rgba(255, 255, 255, 0.4);
}
.theme-mr-wrapper .mat-tab-group.mat-background-primary .mat-tab-header-pagination-chevron, .theme-mr-wrapper .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-chevron {
  border-color: white;
}
.theme-mr-wrapper .mat-tab-group.mat-background-primary .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .theme-mr-wrapper .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: rgba(255, 255, 255, 0.4);
}
.theme-mr-wrapper .mat-tab-group.mat-background-primary .mat-ripple-element, .theme-mr-wrapper .mat-tab-nav-bar.mat-background-primary .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.12);
}
.theme-mr-wrapper .mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-mr-wrapper .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-mr-wrapper .mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-mr-wrapper .mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .theme-mr-wrapper .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-mr-wrapper .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-mr-wrapper .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-mr-wrapper .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(240, 244, 195, 0.3);
}
.theme-mr-wrapper .mat-tab-group.mat-background-accent .mat-tab-header, .theme-mr-wrapper .mat-tab-group.mat-background-accent .mat-tab-links, .theme-mr-wrapper .mat-tab-group.mat-background-accent .mat-tab-header-pagination, .theme-mr-wrapper .mat-tab-nav-bar.mat-background-accent .mat-tab-header, .theme-mr-wrapper .mat-tab-nav-bar.mat-background-accent .mat-tab-links, .theme-mr-wrapper .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination {
  background-color: #d4e157;
}
.theme-mr-wrapper .mat-tab-group.mat-background-accent .mat-tab-label, .theme-mr-wrapper .mat-tab-group.mat-background-accent .mat-tab-link, .theme-mr-wrapper .mat-tab-nav-bar.mat-background-accent .mat-tab-label, .theme-mr-wrapper .mat-tab-nav-bar.mat-background-accent .mat-tab-link {
  color: rgba(0, 0, 0, 0.87);
}
.theme-mr-wrapper .mat-tab-group.mat-background-accent .mat-tab-label.mat-tab-disabled, .theme-mr-wrapper .mat-tab-group.mat-background-accent .mat-tab-link.mat-tab-disabled, .theme-mr-wrapper .mat-tab-nav-bar.mat-background-accent .mat-tab-label.mat-tab-disabled, .theme-mr-wrapper .mat-tab-nav-bar.mat-background-accent .mat-tab-link.mat-tab-disabled {
  color: rgba(0, 0, 0, 0.4);
}
.theme-mr-wrapper .mat-tab-group.mat-background-accent .mat-tab-header-pagination-chevron, .theme-mr-wrapper .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-chevron {
  border-color: rgba(0, 0, 0, 0.87);
}
.theme-mr-wrapper .mat-tab-group.mat-background-accent .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .theme-mr-wrapper .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: rgba(0, 0, 0, 0.4);
}
.theme-mr-wrapper .mat-tab-group.mat-background-accent .mat-ripple-element, .theme-mr-wrapper .mat-tab-nav-bar.mat-background-accent .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.12);
}
.theme-mr-wrapper .mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-mr-wrapper .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-mr-wrapper .mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-mr-wrapper .mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .theme-mr-wrapper .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-mr-wrapper .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-mr-wrapper .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-mr-wrapper .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(255, 205, 210, 0.3);
}
.theme-mr-wrapper .mat-tab-group.mat-background-warn .mat-tab-header, .theme-mr-wrapper .mat-tab-group.mat-background-warn .mat-tab-links, .theme-mr-wrapper .mat-tab-group.mat-background-warn .mat-tab-header-pagination, .theme-mr-wrapper .mat-tab-nav-bar.mat-background-warn .mat-tab-header, .theme-mr-wrapper .mat-tab-nav-bar.mat-background-warn .mat-tab-links, .theme-mr-wrapper .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination {
  background-color: #f44336;
}
.theme-mr-wrapper .mat-tab-group.mat-background-warn .mat-tab-label, .theme-mr-wrapper .mat-tab-group.mat-background-warn .mat-tab-link, .theme-mr-wrapper .mat-tab-nav-bar.mat-background-warn .mat-tab-label, .theme-mr-wrapper .mat-tab-nav-bar.mat-background-warn .mat-tab-link {
  color: white;
}
.theme-mr-wrapper .mat-tab-group.mat-background-warn .mat-tab-label.mat-tab-disabled, .theme-mr-wrapper .mat-tab-group.mat-background-warn .mat-tab-link.mat-tab-disabled, .theme-mr-wrapper .mat-tab-nav-bar.mat-background-warn .mat-tab-label.mat-tab-disabled, .theme-mr-wrapper .mat-tab-nav-bar.mat-background-warn .mat-tab-link.mat-tab-disabled {
  color: rgba(255, 255, 255, 0.4);
}
.theme-mr-wrapper .mat-tab-group.mat-background-warn .mat-tab-header-pagination-chevron, .theme-mr-wrapper .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-chevron {
  border-color: white;
}
.theme-mr-wrapper .mat-tab-group.mat-background-warn .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .theme-mr-wrapper .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: rgba(255, 255, 255, 0.4);
}
.theme-mr-wrapper .mat-tab-group.mat-background-warn .mat-ripple-element, .theme-mr-wrapper .mat-tab-nav-bar.mat-background-warn .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.12);
}
.theme-mr-wrapper .mat-toolbar {
  background: whitesmoke;
  color: rgba(0, 0, 0, 0.87);
}
.theme-mr-wrapper .mat-toolbar.mat-primary {
  background: #455a64;
  color: white;
}
.theme-mr-wrapper .mat-toolbar.mat-accent {
  background: #d4e157;
  color: rgba(0, 0, 0, 0.87);
}
.theme-mr-wrapper .mat-toolbar.mat-warn {
  background: #f44336;
  color: white;
}
.theme-mr-wrapper .mat-toolbar .mat-form-field-underline,
.theme-mr-wrapper .mat-toolbar .mat-form-field-ripple,
.theme-mr-wrapper .mat-toolbar .mat-focused .mat-form-field-ripple {
  background-color: currentColor;
}
.theme-mr-wrapper .mat-toolbar .mat-form-field-label,
.theme-mr-wrapper .mat-toolbar .mat-focused .mat-form-field-label,
.theme-mr-wrapper .mat-toolbar .mat-select-value,
.theme-mr-wrapper .mat-toolbar .mat-select-arrow,
.theme-mr-wrapper .mat-toolbar .mat-form-field.mat-focused .mat-select-arrow {
  color: inherit;
}
.theme-mr-wrapper .mat-toolbar .mat-input-element {
  caret-color: currentColor;
}
.theme-mr-wrapper .mat-tooltip {
  background: rgba(97, 97, 97, 0.9);
}
.theme-mr-wrapper .mat-tree {
  background: white;
}
.theme-mr-wrapper .mat-tree-node,
.theme-mr-wrapper .mat-nested-tree-node {
  color: rgba(0, 0, 0, 0.87);
}
.theme-mr-wrapper .mat-snack-bar-container {
  color: rgba(255, 255, 255, 0.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);
}
.theme-mr-wrapper .mat-simple-snackbar-action {
  color: #d4e157;
}
.theme-light .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.1);
}
.theme-light .mat-option {
  color: rgba(0, 0, 0, 0.87);
}
.theme-light .mat-option:hover:not(.mat-option-disabled), .theme-light .mat-option:focus:not(.mat-option-disabled) {
  background: rgba(0, 0, 0, 0.04);
}
.theme-light .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled) {
  background: rgba(0, 0, 0, 0.04);
}
.theme-light .mat-option.mat-active {
  background: rgba(0, 0, 0, 0.04);
  color: rgba(0, 0, 0, 0.87);
}
.theme-light .mat-option.mat-option-disabled {
  color: rgba(0, 0, 0, 0.38);
}
.theme-light .mat-primary .mat-option.mat-selected:not(.mat-option-disabled) {
  color: #fbc02d;
}
.theme-light .mat-accent .mat-option.mat-selected:not(.mat-option-disabled) {
  color: #66bb6a;
}
.theme-light .mat-warn .mat-option.mat-selected:not(.mat-option-disabled) {
  color: #f44336;
}
.theme-light .mat-optgroup-label {
  color: rgba(0, 0, 0, 0.54);
}
.theme-light .mat-optgroup-disabled .mat-optgroup-label {
  color: rgba(0, 0, 0, 0.38);
}
.theme-light .mat-pseudo-checkbox {
  color: rgba(0, 0, 0, 0.54);
}
.theme-light .mat-pseudo-checkbox::after {
  color: #fafafa;
}
.theme-light .mat-pseudo-checkbox-disabled {
  color: #b0b0b0;
}
.theme-light .mat-primary .mat-pseudo-checkbox-checked,
.theme-light .mat-primary .mat-pseudo-checkbox-indeterminate {
  background: #fbc02d;
}
.theme-light .mat-pseudo-checkbox-checked,
.theme-light .mat-pseudo-checkbox-indeterminate,
.theme-light .mat-accent .mat-pseudo-checkbox-checked,
.theme-light .mat-accent .mat-pseudo-checkbox-indeterminate {
  background: #66bb6a;
}
.theme-light .mat-warn .mat-pseudo-checkbox-checked,
.theme-light .mat-warn .mat-pseudo-checkbox-indeterminate {
  background: #f44336;
}
.theme-light .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,
.theme-light .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled {
  background: #b0b0b0;
}
.theme-light .mat-app-background, .theme-light.mat-app-background {
  background-color: #fafafa;
  color: rgba(0, 0, 0, 0.87);
}
.theme-light .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);
}
.theme-light .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);
}
.theme-light .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);
}
.theme-light .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);
}
.theme-light .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);
}
.theme-light .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);
}
.theme-light .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);
}
.theme-light .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);
}
.theme-light .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);
}
.theme-light .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);
}
.theme-light .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);
}
.theme-light .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);
}
.theme-light .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);
}
.theme-light .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);
}
.theme-light .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);
}
.theme-light .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);
}
.theme-light .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);
}
.theme-light .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);
}
.theme-light .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);
}
.theme-light .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);
}
.theme-light .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);
}
.theme-light .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);
}
.theme-light .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);
}
.theme-light .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);
}
.theme-light .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;
}
.theme-light .mat-autocomplete-panel {
  background: white;
  color: rgba(0, 0, 0, 0.87);
}
.theme-light .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);
}
.theme-light .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover) {
  background: white;
}
.theme-light .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled) {
  color: rgba(0, 0, 0, 0.87);
}
.theme-light .mat-badge-content {
  color: rgba(0, 0, 0, 0.87);
  background: #fbc02d;
}
.cdk-high-contrast-active .theme-light .mat-badge-content {
  outline: solid 1px;
  border-radius: 0;
}
.theme-light .mat-badge-accent .mat-badge-content {
  background: #66bb6a;
  color: rgba(0, 0, 0, 0.87);
}
.theme-light .mat-badge-warn .mat-badge-content {
  color: white;
  background: #f44336;
}
.theme-light .mat-badge {
  position: relative;
}
.theme-light .mat-badge-hidden .mat-badge-content {
  display: none;
}
.theme-light .mat-badge-disabled .mat-badge-content {
  background: #b9b9b9;
  color: rgba(0, 0, 0, 0.38);
}
.theme-light .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;
}
.theme-light .ng-animate-disabled .mat-badge-content,
.theme-light .mat-badge-content._mat-animation-noopable {
  transition: none;
}
.theme-light .mat-badge-content.mat-badge-active {
  transform: none;
}
.theme-light .mat-badge-small .mat-badge-content {
  width: 16px;
  height: 16px;
  line-height: 16px;
}
.theme-light .mat-badge-small.mat-badge-above .mat-badge-content {
  top: -8px;
}
.theme-light .mat-badge-small.mat-badge-below .mat-badge-content {
  bottom: -8px;
}
.theme-light .mat-badge-small.mat-badge-before .mat-badge-content {
  left: -16px;
}
[dir=rtl] .theme-light .mat-badge-small.mat-badge-before .mat-badge-content {
  left: auto;
  right: -16px;
}
.theme-light .mat-badge-small.mat-badge-after .mat-badge-content {
  right: -16px;
}
[dir=rtl] .theme-light .mat-badge-small.mat-badge-after .mat-badge-content {
  right: auto;
  left: -16px;
}
.theme-light .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: -8px;
}
[dir=rtl] .theme-light .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: auto;
  right: -8px;
}
.theme-light .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: -8px;
}
[dir=rtl] .theme-light .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: auto;
  left: -8px;
}
.theme-light .mat-badge-medium .mat-badge-content {
  width: 22px;
  height: 22px;
  line-height: 22px;
}
.theme-light .mat-badge-medium.mat-badge-above .mat-badge-content {
  top: -11px;
}
.theme-light .mat-badge-medium.mat-badge-below .mat-badge-content {
  bottom: -11px;
}
.theme-light .mat-badge-medium.mat-badge-before .mat-badge-content {
  left: -22px;
}
[dir=rtl] .theme-light .mat-badge-medium.mat-badge-before .mat-badge-content {
  left: auto;
  right: -22px;
}
.theme-light .mat-badge-medium.mat-badge-after .mat-badge-content {
  right: -22px;
}
[dir=rtl] .theme-light .mat-badge-medium.mat-badge-after .mat-badge-content {
  right: auto;
  left: -22px;
}
.theme-light .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: -11px;
}
[dir=rtl] .theme-light .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: auto;
  right: -11px;
}
.theme-light .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: -11px;
}
[dir=rtl] .theme-light .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: auto;
  left: -11px;
}
.theme-light .mat-badge-large .mat-badge-content {
  width: 28px;
  height: 28px;
  line-height: 28px;
}
.theme-light .mat-badge-large.mat-badge-above .mat-badge-content {
  top: -14px;
}
.theme-light .mat-badge-large.mat-badge-below .mat-badge-content {
  bottom: -14px;
}
.theme-light .mat-badge-large.mat-badge-before .mat-badge-content {
  left: -28px;
}
[dir=rtl] .theme-light .mat-badge-large.mat-badge-before .mat-badge-content {
  left: auto;
  right: -28px;
}
.theme-light .mat-badge-large.mat-badge-after .mat-badge-content {
  right: -28px;
}
[dir=rtl] .theme-light .mat-badge-large.mat-badge-after .mat-badge-content {
  right: auto;
  left: -28px;
}
.theme-light .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: -14px;
}
[dir=rtl] .theme-light .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: auto;
  right: -14px;
}
.theme-light .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: -14px;
}
[dir=rtl] .theme-light .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: auto;
  left: -14px;
}
.theme-light .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: white;
  color: rgba(0, 0, 0, 0.87);
}
.theme-light .mat-button, .theme-light .mat-icon-button, .theme-light .mat-stroked-button {
  color: inherit;
  background: transparent;
}
.theme-light .mat-button.mat-primary, .theme-light .mat-icon-button.mat-primary, .theme-light .mat-stroked-button.mat-primary {
  color: #fbc02d;
}
.theme-light .mat-button.mat-accent, .theme-light .mat-icon-button.mat-accent, .theme-light .mat-stroked-button.mat-accent {
  color: #66bb6a;
}
.theme-light .mat-button.mat-warn, .theme-light .mat-icon-button.mat-warn, .theme-light .mat-stroked-button.mat-warn {
  color: #f44336;
}
.theme-light .mat-button.mat-primary.mat-button-disabled, .theme-light .mat-button.mat-accent.mat-button-disabled, .theme-light .mat-button.mat-warn.mat-button-disabled, .theme-light .mat-button.mat-button-disabled.mat-button-disabled, .theme-light .mat-icon-button.mat-primary.mat-button-disabled, .theme-light .mat-icon-button.mat-accent.mat-button-disabled, .theme-light .mat-icon-button.mat-warn.mat-button-disabled, .theme-light .mat-icon-button.mat-button-disabled.mat-button-disabled, .theme-light .mat-stroked-button.mat-primary.mat-button-disabled, .theme-light .mat-stroked-button.mat-accent.mat-button-disabled, .theme-light .mat-stroked-button.mat-warn.mat-button-disabled, .theme-light .mat-stroked-button.mat-button-disabled.mat-button-disabled {
  color: rgba(0, 0, 0, 0.26);
}
.theme-light .mat-button.mat-primary .mat-button-focus-overlay, .theme-light .mat-icon-button.mat-primary .mat-button-focus-overlay, .theme-light .mat-stroked-button.mat-primary .mat-button-focus-overlay {
  background-color: #fbc02d;
}
.theme-light .mat-button.mat-accent .mat-button-focus-overlay, .theme-light .mat-icon-button.mat-accent .mat-button-focus-overlay, .theme-light .mat-stroked-button.mat-accent .mat-button-focus-overlay {
  background-color: #66bb6a;
}
.theme-light .mat-button.mat-warn .mat-button-focus-overlay, .theme-light .mat-icon-button.mat-warn .mat-button-focus-overlay, .theme-light .mat-stroked-button.mat-warn .mat-button-focus-overlay {
  background-color: #f44336;
}
.theme-light .mat-button.mat-button-disabled .mat-button-focus-overlay, .theme-light .mat-icon-button.mat-button-disabled .mat-button-focus-overlay, .theme-light .mat-stroked-button.mat-button-disabled .mat-button-focus-overlay {
  background-color: transparent;
}
.theme-light .mat-button .mat-ripple-element, .theme-light .mat-icon-button .mat-ripple-element, .theme-light .mat-stroked-button .mat-ripple-element {
  opacity: 0.1;
  background-color: currentColor;
}
.theme-light .mat-button-focus-overlay {
  background: black;
}
.theme-light .mat-stroked-button:not(.mat-button-disabled) {
  border-color: rgba(0, 0, 0, 0.12);
}
.theme-light .mat-flat-button, .theme-light .mat-raised-button, .theme-light .mat-fab, .theme-light .mat-mini-fab {
  color: rgba(0, 0, 0, 0.87);
  background-color: white;
}
.theme-light .mat-flat-button.mat-primary, .theme-light .mat-raised-button.mat-primary, .theme-light .mat-fab.mat-primary, .theme-light .mat-mini-fab.mat-primary {
  color: rgba(0, 0, 0, 0.87);
}
.theme-light .mat-flat-button.mat-accent, .theme-light .mat-raised-button.mat-accent, .theme-light .mat-fab.mat-accent, .theme-light .mat-mini-fab.mat-accent {
  color: rgba(0, 0, 0, 0.87);
}
.theme-light .mat-flat-button.mat-warn, .theme-light .mat-raised-button.mat-warn, .theme-light .mat-fab.mat-warn, .theme-light .mat-mini-fab.mat-warn {
  color: white;
}
.theme-light .mat-flat-button.mat-primary.mat-button-disabled, .theme-light .mat-flat-button.mat-accent.mat-button-disabled, .theme-light .mat-flat-button.mat-warn.mat-button-disabled, .theme-light .mat-flat-button.mat-button-disabled.mat-button-disabled, .theme-light .mat-raised-button.mat-primary.mat-button-disabled, .theme-light .mat-raised-button.mat-accent.mat-button-disabled, .theme-light .mat-raised-button.mat-warn.mat-button-disabled, .theme-light .mat-raised-button.mat-button-disabled.mat-button-disabled, .theme-light .mat-fab.mat-primary.mat-button-disabled, .theme-light .mat-fab.mat-accent.mat-button-disabled, .theme-light .mat-fab.mat-warn.mat-button-disabled, .theme-light .mat-fab.mat-button-disabled.mat-button-disabled, .theme-light .mat-mini-fab.mat-primary.mat-button-disabled, .theme-light .mat-mini-fab.mat-accent.mat-button-disabled, .theme-light .mat-mini-fab.mat-warn.mat-button-disabled, .theme-light .mat-mini-fab.mat-button-disabled.mat-button-disabled {
  color: rgba(0, 0, 0, 0.26);
}
.theme-light .mat-flat-button.mat-primary, .theme-light .mat-raised-button.mat-primary, .theme-light .mat-fab.mat-primary, .theme-light .mat-mini-fab.mat-primary {
  background-color: #fbc02d;
}
.theme-light .mat-flat-button.mat-accent, .theme-light .mat-raised-button.mat-accent, .theme-light .mat-fab.mat-accent, .theme-light .mat-mini-fab.mat-accent {
  background-color: #66bb6a;
}
.theme-light .mat-flat-button.mat-warn, .theme-light .mat-raised-button.mat-warn, .theme-light .mat-fab.mat-warn, .theme-light .mat-mini-fab.mat-warn {
  background-color: #f44336;
}
.theme-light .mat-flat-button.mat-primary.mat-button-disabled, .theme-light .mat-flat-button.mat-accent.mat-button-disabled, .theme-light .mat-flat-button.mat-warn.mat-button-disabled, .theme-light .mat-flat-button.mat-button-disabled.mat-button-disabled, .theme-light .mat-raised-button.mat-primary.mat-button-disabled, .theme-light .mat-raised-button.mat-accent.mat-button-disabled, .theme-light .mat-raised-button.mat-warn.mat-button-disabled, .theme-light .mat-raised-button.mat-button-disabled.mat-button-disabled, .theme-light .mat-fab.mat-primary.mat-button-disabled, .theme-light .mat-fab.mat-accent.mat-button-disabled, .theme-light .mat-fab.mat-warn.mat-button-disabled, .theme-light .mat-fab.mat-button-disabled.mat-button-disabled, .theme-light .mat-mini-fab.mat-primary.mat-button-disabled, .theme-light .mat-mini-fab.mat-accent.mat-button-disabled, .theme-light .mat-mini-fab.mat-warn.mat-button-disabled, .theme-light .mat-mini-fab.mat-button-disabled.mat-button-disabled {
  background-color: rgba(0, 0, 0, 0.12);
}
.theme-light .mat-flat-button.mat-primary .mat-ripple-element, .theme-light .mat-raised-button.mat-primary .mat-ripple-element, .theme-light .mat-fab.mat-primary .mat-ripple-element, .theme-light .mat-mini-fab.mat-primary .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.1);
}
.theme-light .mat-flat-button.mat-accent .mat-ripple-element, .theme-light .mat-raised-button.mat-accent .mat-ripple-element, .theme-light .mat-fab.mat-accent .mat-ripple-element, .theme-light .mat-mini-fab.mat-accent .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.1);
}
.theme-light .mat-flat-button.mat-warn .mat-ripple-element, .theme-light .mat-raised-button.mat-warn .mat-ripple-element, .theme-light .mat-fab.mat-warn .mat-ripple-element, .theme-light .mat-mini-fab.mat-warn .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.1);
}
.theme-light .mat-stroked-button:not([class*=mat-elevation-z]), .theme-light .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);
}
.theme-light .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);
}
.theme-light .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);
}
.theme-light .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);
}
.theme-light .mat-fab:not([class*=mat-elevation-z]), .theme-light .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);
}
.theme-light .mat-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]), .theme-light .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);
}
.theme-light .mat-fab.mat-button-disabled:not([class*=mat-elevation-z]), .theme-light .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);
}
.theme-light .mat-button-toggle-standalone,
.theme-light .mat-button-toggle-group {
  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);
}
.theme-light .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,
.theme-light .mat-button-toggle-group-appearance-standard {
  box-shadow: none;
}
.theme-light .mat-button-toggle {
  color: rgba(0, 0, 0, 0.38);
}
.theme-light .mat-button-toggle .mat-button-toggle-focus-overlay {
  background-color: rgba(0, 0, 0, 0.12);
}
.theme-light .mat-button-toggle-appearance-standard {
  color: rgba(0, 0, 0, 0.87);
  background: white;
}
.theme-light .mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay {
  background-color: black;
}
.theme-light .mat-button-toggle-group-appearance-standard .mat-button-toggle + .mat-button-toggle {
  border-left: solid 1px rgba(0, 0, 0, 0.12);
}
.theme-light [dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle + .mat-button-toggle {
  border-left: none;
  border-right: solid 1px rgba(0, 0, 0, 0.12);
}
.theme-light .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 rgba(0, 0, 0, 0.12);
}
.theme-light .mat-button-toggle-checked {
  background-color: #e0e0e0;
  color: rgba(0, 0, 0, 0.54);
}
.theme-light .mat-button-toggle-checked.mat-button-toggle-appearance-standard {
  color: rgba(0, 0, 0, 0.87);
}
.theme-light .mat-button-toggle-disabled {
  color: rgba(0, 0, 0, 0.26);
  background-color: #eeeeee;
}
.theme-light .mat-button-toggle-disabled.mat-button-toggle-appearance-standard {
  background: white;
}
.theme-light .mat-button-toggle-disabled.mat-button-toggle-checked {
  background-color: #bdbdbd;
}
.theme-light .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,
.theme-light .mat-button-toggle-group-appearance-standard {
  border: solid 1px rgba(0, 0, 0, 0.12);
}
.theme-light .mat-card {
  background: white;
  color: rgba(0, 0, 0, 0.87);
}
.theme-light .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);
}
.theme-light .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);
}
.theme-light .mat-card-subtitle {
  color: rgba(0, 0, 0, 0.54);
}
.theme-light .mat-checkbox-frame {
  border-color: rgba(0, 0, 0, 0.54);
}
.theme-light .mat-checkbox-checkmark {
  fill: #fafafa;
}
.theme-light .mat-checkbox-checkmark-path {
  stroke: #fafafa !important;
}
.theme-light .mat-checkbox-mixedmark {
  background-color: #fafafa;
}
.theme-light .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background, .theme-light .mat-checkbox-checked.mat-primary .mat-checkbox-background {
  background-color: #fbc02d;
}
.theme-light .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background, .theme-light .mat-checkbox-checked.mat-accent .mat-checkbox-background {
  background-color: #66bb6a;
}
.theme-light .mat-checkbox-indeterminate.mat-warn .mat-checkbox-background, .theme-light .mat-checkbox-checked.mat-warn .mat-checkbox-background {
  background-color: #f44336;
}
.theme-light .mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background, .theme-light .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background {
  background-color: #b0b0b0;
}
.theme-light .mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame {
  border-color: #b0b0b0;
}
.theme-light .mat-checkbox-disabled .mat-checkbox-label {
  color: rgba(0, 0, 0, 0.54);
}
.theme-light .mat-checkbox .mat-ripple-element {
  background-color: black;
}
.theme-light .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,
.theme-light .mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element {
  background: #fbc02d;
}
.theme-light .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,
.theme-light .mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element {
  background: #66bb6a;
}
.theme-light .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,
.theme-light .mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element {
  background: #f44336;
}
.theme-light .mat-chip.mat-standard-chip {
  background-color: #e0e0e0;
  color: rgba(0, 0, 0, 0.87);
}
.theme-light .mat-chip.mat-standard-chip .mat-chip-remove {
  color: rgba(0, 0, 0, 0.87);
  opacity: 0.4;
}
.theme-light .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);
}
.theme-light .mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover {
  opacity: 0.54;
}
.theme-light .mat-chip.mat-standard-chip.mat-chip-disabled {
  opacity: 0.4;
}
.theme-light .mat-chip.mat-standard-chip::after {
  background: black;
}
.theme-light .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary {
  background-color: #fbc02d;
  color: rgba(0, 0, 0, 0.87);
}
.theme-light .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove {
  color: rgba(0, 0, 0, 0.87);
  opacity: 0.4;
}
.theme-light .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.1);
}
.theme-light .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn {
  background-color: #f44336;
  color: white;
}
.theme-light .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove {
  color: white;
  opacity: 0.4;
}
.theme-light .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.1);
}
.theme-light .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent {
  background-color: #66bb6a;
  color: rgba(0, 0, 0, 0.87);
}
.theme-light .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove {
  color: rgba(0, 0, 0, 0.87);
  opacity: 0.4;
}
.theme-light .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.1);
}
.theme-light .mat-table {
  background: white;
}
.theme-light .mat-table thead, .theme-light .mat-table tbody, .theme-light .mat-table tfoot,
.theme-light mat-header-row, .theme-light mat-row, .theme-light mat-footer-row,
.theme-light [mat-header-row], .theme-light [mat-row], .theme-light [mat-footer-row],
.theme-light .mat-table-sticky {
  background: inherit;
}
.theme-light mat-row, .theme-light mat-header-row, .theme-light mat-footer-row,
.theme-light th.mat-header-cell, .theme-light td.mat-cell, .theme-light td.mat-footer-cell {
  border-bottom-color: rgba(0, 0, 0, 0.12);
}
.theme-light .mat-header-cell {
  color: rgba(0, 0, 0, 0.54);
}
.theme-light .mat-cell, .theme-light .mat-footer-cell {
  color: rgba(0, 0, 0, 0.87);
}
.theme-light .mat-calendar-arrow {
  border-top-color: rgba(0, 0, 0, 0.54);
}
.theme-light .mat-datepicker-toggle,
.theme-light .mat-datepicker-content .mat-calendar-next-button,
.theme-light .mat-datepicker-content .mat-calendar-previous-button {
  color: rgba(0, 0, 0, 0.54);
}
.theme-light .mat-calendar-table-header {
  color: rgba(0, 0, 0, 0.38);
}
.theme-light .mat-calendar-table-header-divider::after {
  background: rgba(0, 0, 0, 0.12);
}
.theme-light .mat-calendar-body-label {
  color: rgba(0, 0, 0, 0.54);
}
.theme-light .mat-calendar-body-cell-content,
.theme-light .mat-date-range-input-separator {
  color: rgba(0, 0, 0, 0.87);
  border-color: transparent;
}
.theme-light .mat-calendar-body-disabled > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  color: rgba(0, 0, 0, 0.38);
}
.theme-light .mat-form-field-disabled .mat-date-range-input-separator {
  color: rgba(0, 0, 0, 0.38);
}
.theme-light .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),
.theme-light .cdk-keyboard-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),
.theme-light .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(0, 0, 0, 0.04);
}
.theme-light .mat-calendar-body-in-preview {
  color: rgba(0, 0, 0, 0.24);
}
.theme-light .mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  border-color: rgba(0, 0, 0, 0.38);
}
.theme-light .mat-calendar-body-disabled > .mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  border-color: rgba(0, 0, 0, 0.18);
}
.theme-light .mat-calendar-body-in-range::before {
  background: rgba(251, 192, 45, 0.2);
}
.theme-light .mat-calendar-body-comparison-identical,
.theme-light .mat-calendar-body-in-comparison-range::before {
  background: rgba(249, 171, 0, 0.2);
}
.theme-light .mat-calendar-body-comparison-bridge-start::before,
.theme-light [dir=rtl] .mat-calendar-body-comparison-bridge-end::before {
  background: linear-gradient(to right, rgba(251, 192, 45, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.theme-light .mat-calendar-body-comparison-bridge-end::before,
.theme-light [dir=rtl] .mat-calendar-body-comparison-bridge-start::before {
  background: linear-gradient(to left, rgba(251, 192, 45, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.theme-light .mat-calendar-body-in-range > .mat-calendar-body-comparison-identical,
.theme-light .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after {
  background: #a8dab5;
}
.theme-light .mat-calendar-body-comparison-identical.mat-calendar-body-selected,
.theme-light .mat-calendar-body-in-comparison-range > .mat-calendar-body-selected {
  background: #46a35e;
}
.theme-light .mat-calendar-body-selected {
  background-color: #fbc02d;
  color: rgba(0, 0, 0, 0.87);
}
.theme-light .mat-calendar-body-disabled > .mat-calendar-body-selected {
  background-color: rgba(251, 192, 45, 0.4);
}
.theme-light .mat-calendar-body-today.mat-calendar-body-selected {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.87);
}
.theme-light .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: white;
  color: rgba(0, 0, 0, 0.87);
}
.theme-light .mat-datepicker-content.mat-accent .mat-calendar-body-in-range::before {
  background: rgba(102, 187, 106, 0.2);
}
.theme-light .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,
.theme-light .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range::before {
  background: rgba(249, 171, 0, 0.2);
}
.theme-light .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start::before,
.theme-light .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end::before {
  background: linear-gradient(to right, rgba(102, 187, 106, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.theme-light .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end::before,
.theme-light .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start::before {
  background: linear-gradient(to left, rgba(102, 187, 106, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.theme-light .mat-datepicker-content.mat-accent .mat-calendar-body-in-range > .mat-calendar-body-comparison-identical,
.theme-light .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after {
  background: #a8dab5;
}
.theme-light .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,
.theme-light .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range > .mat-calendar-body-selected {
  background: #46a35e;
}
.theme-light .mat-datepicker-content.mat-accent .mat-calendar-body-selected {
  background-color: #66bb6a;
  color: rgba(0, 0, 0, 0.87);
}
.theme-light .mat-datepicker-content.mat-accent .mat-calendar-body-disabled > .mat-calendar-body-selected {
  background-color: rgba(102, 187, 106, 0.4);
}
.theme-light .mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.87);
}
.theme-light .mat-datepicker-content.mat-warn .mat-calendar-body-in-range::before {
  background: rgba(244, 67, 54, 0.2);
}
.theme-light .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,
.theme-light .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range::before {
  background: rgba(249, 171, 0, 0.2);
}
.theme-light .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start::before,
.theme-light .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end::before {
  background: linear-gradient(to right, rgba(244, 67, 54, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.theme-light .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end::before,
.theme-light .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start::before {
  background: linear-gradient(to left, rgba(244, 67, 54, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.theme-light .mat-datepicker-content.mat-warn .mat-calendar-body-in-range > .mat-calendar-body-comparison-identical,
.theme-light .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after {
  background: #a8dab5;
}
.theme-light .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,
.theme-light .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range > .mat-calendar-body-selected {
  background: #46a35e;
}
.theme-light .mat-datepicker-content.mat-warn .mat-calendar-body-selected {
  background-color: #f44336;
  color: white;
}
.theme-light .mat-datepicker-content.mat-warn .mat-calendar-body-disabled > .mat-calendar-body-selected {
  background-color: rgba(244, 67, 54, 0.4);
}
.theme-light .mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected {
  box-shadow: inset 0 0 0 1px white;
}
.theme-light .mat-datepicker-content-touch {
  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);
}
.theme-light .mat-datepicker-toggle-active {
  color: #fbc02d;
}
.theme-light .mat-datepicker-toggle-active.mat-accent {
  color: #66bb6a;
}
.theme-light .mat-datepicker-toggle-active.mat-warn {
  color: #f44336;
}
.theme-light .mat-date-range-input-inner[disabled] {
  color: rgba(0, 0, 0, 0.38);
}
.theme-light .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: white;
  color: rgba(0, 0, 0, 0.87);
}
.theme-light .mat-divider {
  border-top-color: rgba(0, 0, 0, 0.12);
}
.theme-light .mat-divider-vertical {
  border-right-color: rgba(0, 0, 0, 0.12);
}
.theme-light .mat-expansion-panel {
  background: white;
  color: rgba(0, 0, 0, 0.87);
}
.theme-light .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);
}
.theme-light .mat-action-row {
  border-top-color: rgba(0, 0, 0, 0.12);
}
.theme-light .mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]), .theme-light .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]), .theme-light .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]) {
  background: rgba(0, 0, 0, 0.04);
}
@media (hover: none) {
  .theme-light .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover {
    background: white;
  }
}
.theme-light .mat-expansion-panel-header-title {
  color: rgba(0, 0, 0, 0.87);
}
.theme-light .mat-expansion-panel-header-description,
.theme-light .mat-expansion-indicator::after {
  color: rgba(0, 0, 0, 0.54);
}
.theme-light .mat-expansion-panel-header[aria-disabled=true] {
  color: rgba(0, 0, 0, 0.26);
}
.theme-light .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,
.theme-light .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description {
  color: inherit;
}
.theme-light .mat-form-field-label {
  color: rgba(0, 0, 0, 0.6);
}
.theme-light .mat-hint {
  color: rgba(0, 0, 0, 0.6);
}
.theme-light .mat-form-field.mat-focused .mat-form-field-label {
  color: #fbc02d;
}
.theme-light .mat-form-field.mat-focused .mat-form-field-label.mat-accent {
  color: #66bb6a;
}
.theme-light .mat-form-field.mat-focused .mat-form-field-label.mat-warn {
  color: #f44336;
}
.theme-light .mat-focused .mat-form-field-required-marker {
  color: #66bb6a;
}
.theme-light .mat-form-field-ripple {
  background-color: rgba(0, 0, 0, 0.87);
}
.theme-light .mat-form-field.mat-focused .mat-form-field-ripple {
  background-color: #fbc02d;
}
.theme-light .mat-form-field.mat-focused .mat-form-field-ripple.mat-accent {
  background-color: #66bb6a;
}
.theme-light .mat-form-field.mat-focused .mat-form-field-ripple.mat-warn {
  background-color: #f44336;
}
.theme-light .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix::after {
  color: #fbc02d;
}
.theme-light .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix::after {
  color: #66bb6a;
}
.theme-light .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix::after {
  color: #f44336;
}
.theme-light .mat-form-field.mat-form-field-invalid .mat-form-field-label {
  color: #f44336;
}
.theme-light .mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,
.theme-light .mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker {
  color: #f44336;
}
.theme-light .mat-form-field.mat-form-field-invalid .mat-form-field-ripple,
.theme-light .mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent {
  background-color: #f44336;
}
.theme-light .mat-error {
  color: #f44336;
}
.theme-light .mat-form-field-appearance-legacy .mat-form-field-label {
  color: rgba(0, 0, 0, 0.54);
}
.theme-light .mat-form-field-appearance-legacy .mat-hint {
  color: rgba(0, 0, 0, 0.54);
}
.theme-light .mat-form-field-appearance-legacy .mat-form-field-underline {
  background-color: rgba(0, 0, 0, 0.42);
}
.theme-light .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.42) 33%, transparent 0%);
  background-size: 4px 100%;
  background-repeat: repeat-x;
}
.theme-light .mat-form-field-appearance-standard .mat-form-field-underline {
  background-color: rgba(0, 0, 0, 0.42);
}
.theme-light .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.42) 33%, transparent 0%);
  background-size: 4px 100%;
  background-repeat: repeat-x;
}
.theme-light .mat-form-field-appearance-fill .mat-form-field-flex {
  background-color: rgba(0, 0, 0, 0.04);
}
.theme-light .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex {
  background-color: rgba(0, 0, 0, 0.02);
}
.theme-light .mat-form-field-appearance-fill .mat-form-field-underline::before {
  background-color: rgba(0, 0, 0, 0.42);
}
.theme-light .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-label {
  color: rgba(0, 0, 0, 0.38);
}
.theme-light .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline::before {
  background-color: transparent;
}
.theme-light .mat-form-field-appearance-outline .mat-form-field-outline {
  color: rgba(0, 0, 0, 0.12);
}
.theme-light .mat-form-field-appearance-outline .mat-form-field-outline-thick {
  color: rgba(0, 0, 0, 0.87);
}
.theme-light .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick {
  color: #fbc02d;
}
.theme-light .mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick {
  color: #66bb6a;
}
.theme-light .mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick {
  color: #f44336;
}
.theme-light .mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick {
  color: #f44336;
}
.theme-light .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-label {
  color: rgba(0, 0, 0, 0.38);
}
.theme-light .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline {
  color: rgba(0, 0, 0, 0.06);
}
.theme-light .mat-icon.mat-primary {
  color: #fbc02d;
}
.theme-light .mat-icon.mat-accent {
  color: #66bb6a;
}
.theme-light .mat-icon.mat-warn {
  color: #f44336;
}
.theme-light .mat-form-field-type-mat-native-select .mat-form-field-infix::after {
  color: rgba(0, 0, 0, 0.54);
}
.theme-light .mat-input-element:disabled,
.theme-light .mat-form-field-type-mat-native-select.mat-form-field-disabled .mat-form-field-infix::after {
  color: rgba(0, 0, 0, 0.38);
}
.theme-light .mat-input-element {
  caret-color: #fbc02d;
}
.theme-light .mat-input-element::-moz-placeholder {
  color: rgba(0, 0, 0, 0.42);
}
.theme-light .mat-input-element:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.42);
}
.theme-light .mat-input-element::placeholder {
  color: rgba(0, 0, 0, 0.42);
}
.theme-light .mat-input-element::-moz-placeholder {
  color: rgba(0, 0, 0, 0.42);
}
.theme-light .mat-input-element::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.42);
}
.theme-light .mat-input-element:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.42);
}
.theme-light .mat-form-field.mat-accent .mat-input-element {
  caret-color: #66bb6a;
}
.theme-light .mat-form-field.mat-warn .mat-input-element,
.theme-light .mat-form-field-invalid .mat-input-element {
  caret-color: #f44336;
}
.theme-light .mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix::after {
  color: #f44336;
}
.theme-light .mat-list-base .mat-list-item {
  color: rgba(0, 0, 0, 0.87);
}
.theme-light .mat-list-base .mat-list-option {
  color: rgba(0, 0, 0, 0.87);
}
.theme-light .mat-list-base .mat-subheader {
  color: rgba(0, 0, 0, 0.54);
}
.theme-light .mat-list-item-disabled {
  background-color: #eeeeee;
}
.theme-light .mat-list-option:hover, .theme-light .mat-list-option:focus,
.theme-light .mat-nav-list .mat-list-item:hover,
.theme-light .mat-nav-list .mat-list-item:focus,
.theme-light .mat-action-list .mat-list-item:hover,
.theme-light .mat-action-list .mat-list-item:focus {
  background: rgba(0, 0, 0, 0.04);
}
.theme-light .mat-list-single-selected-option, .theme-light .mat-list-single-selected-option:hover, .theme-light .mat-list-single-selected-option:focus {
  background: rgba(0, 0, 0, 0.12);
}
.theme-light .mat-menu-panel {
  background: white;
}
.theme-light .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);
}
.theme-light .mat-menu-item {
  background: transparent;
  color: rgba(0, 0, 0, 0.87);
}
.theme-light .mat-menu-item[disabled], .theme-light .mat-menu-item[disabled]::after {
  color: rgba(0, 0, 0, 0.38);
}
.theme-light .mat-menu-item .mat-icon-no-color,
.theme-light .mat-menu-item-submenu-trigger::after {
  color: rgba(0, 0, 0, 0.54);
}
.theme-light .mat-menu-item:hover:not([disabled]),
.theme-light .mat-menu-item.cdk-program-focused:not([disabled]),
.theme-light .mat-menu-item.cdk-keyboard-focused:not([disabled]),
.theme-light .mat-menu-item-highlighted:not([disabled]) {
  background: rgba(0, 0, 0, 0.04);
}
.theme-light .mat-paginator {
  background: white;
}
.theme-light .mat-paginator,
.theme-light .mat-paginator-page-size .mat-select-trigger {
  color: rgba(0, 0, 0, 0.54);
}
.theme-light .mat-paginator-decrement,
.theme-light .mat-paginator-increment {
  border-top: 2px solid rgba(0, 0, 0, 0.54);
  border-right: 2px solid rgba(0, 0, 0, 0.54);
}
.theme-light .mat-paginator-first,
.theme-light .mat-paginator-last {
  border-top: 2px solid rgba(0, 0, 0, 0.54);
}
.theme-light .mat-icon-button[disabled] .mat-paginator-decrement,
.theme-light .mat-icon-button[disabled] .mat-paginator-increment,
.theme-light .mat-icon-button[disabled] .mat-paginator-first,
.theme-light .mat-icon-button[disabled] .mat-paginator-last {
  border-color: rgba(0, 0, 0, 0.38);
}
.theme-light .mat-progress-bar-background {
  fill: #fff9c4;
}
.theme-light .mat-progress-bar-buffer {
  background-color: #fff9c4;
}
.theme-light .mat-progress-bar-fill::after {
  background-color: #fbc02d;
}
.theme-light .mat-progress-bar.mat-accent .mat-progress-bar-background {
  fill: #c8e6c9;
}
.theme-light .mat-progress-bar.mat-accent .mat-progress-bar-buffer {
  background-color: #c8e6c9;
}
.theme-light .mat-progress-bar.mat-accent .mat-progress-bar-fill::after {
  background-color: #66bb6a;
}
.theme-light .mat-progress-bar.mat-warn .mat-progress-bar-background {
  fill: #ffcdd2;
}
.theme-light .mat-progress-bar.mat-warn .mat-progress-bar-buffer {
  background-color: #ffcdd2;
}
.theme-light .mat-progress-bar.mat-warn .mat-progress-bar-fill::after {
  background-color: #f44336;
}
.theme-light .mat-progress-spinner circle, .theme-light .mat-spinner circle {
  stroke: #fbc02d;
}
.theme-light .mat-progress-spinner.mat-accent circle, .theme-light .mat-spinner.mat-accent circle {
  stroke: #66bb6a;
}
.theme-light .mat-progress-spinner.mat-warn circle, .theme-light .mat-spinner.mat-warn circle {
  stroke: #f44336;
}
.theme-light .mat-radio-outer-circle {
  border-color: rgba(0, 0, 0, 0.54);
}
.theme-light .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle {
  border-color: #fbc02d;
}
.theme-light .mat-radio-button.mat-primary .mat-radio-inner-circle,
.theme-light .mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .theme-light .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple, .theme-light .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple {
  background-color: #fbc02d;
}
.theme-light .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle {
  border-color: #66bb6a;
}
.theme-light .mat-radio-button.mat-accent .mat-radio-inner-circle,
.theme-light .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .theme-light .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple, .theme-light .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple {
  background-color: #66bb6a;
}
.theme-light .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle {
  border-color: #f44336;
}
.theme-light .mat-radio-button.mat-warn .mat-radio-inner-circle,
.theme-light .mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .theme-light .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple, .theme-light .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple {
  background-color: #f44336;
}
.theme-light .mat-radio-button.mat-radio-disabled.mat-radio-checked .mat-radio-outer-circle,
.theme-light .mat-radio-button.mat-radio-disabled .mat-radio-outer-circle {
  border-color: rgba(0, 0, 0, 0.38);
}
.theme-light .mat-radio-button.mat-radio-disabled .mat-radio-ripple .mat-ripple-element,
.theme-light .mat-radio-button.mat-radio-disabled .mat-radio-inner-circle {
  background-color: rgba(0, 0, 0, 0.38);
}
.theme-light .mat-radio-button.mat-radio-disabled .mat-radio-label-content {
  color: rgba(0, 0, 0, 0.38);
}
.theme-light .mat-radio-button .mat-ripple-element {
  background-color: black;
}
.theme-light .mat-select-value {
  color: rgba(0, 0, 0, 0.87);
}
.theme-light .mat-select-placeholder {
  color: rgba(0, 0, 0, 0.42);
}
.theme-light .mat-select-disabled .mat-select-value {
  color: rgba(0, 0, 0, 0.38);
}
.theme-light .mat-select-arrow {
  color: rgba(0, 0, 0, 0.54);
}
.theme-light .mat-select-panel {
  background: white;
}
.theme-light .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);
}
.theme-light .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple) {
  background: rgba(0, 0, 0, 0.12);
}
.theme-light .mat-form-field.mat-focused.mat-primary .mat-select-arrow {
  color: #fbc02d;
}
.theme-light .mat-form-field.mat-focused.mat-accent .mat-select-arrow {
  color: #66bb6a;
}
.theme-light .mat-form-field.mat-focused.mat-warn .mat-select-arrow {
  color: #f44336;
}
.theme-light .mat-form-field .mat-select.mat-select-invalid .mat-select-arrow {
  color: #f44336;
}
.theme-light .mat-form-field .mat-select.mat-select-disabled .mat-select-arrow {
  color: rgba(0, 0, 0, 0.38);
}
.theme-light .mat-drawer-container {
  background-color: #fafafa;
  color: rgba(0, 0, 0, 0.87);
}
.theme-light .mat-drawer {
  background-color: white;
  color: rgba(0, 0, 0, 0.87);
}
.theme-light .mat-drawer.mat-drawer-push {
  background-color: white;
}
.theme-light .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);
}
.theme-light .mat-drawer-side {
  border-right: solid 1px rgba(0, 0, 0, 0.12);
}
.theme-light .mat-drawer-side.mat-drawer-end {
  border-left: solid 1px rgba(0, 0, 0, 0.12);
  border-right: none;
}
.theme-light [dir=rtl] .mat-drawer-side {
  border-left: solid 1px rgba(0, 0, 0, 0.12);
  border-right: none;
}
.theme-light [dir=rtl] .mat-drawer-side.mat-drawer-end {
  border-left: none;
  border-right: solid 1px rgba(0, 0, 0, 0.12);
}
.theme-light .mat-drawer-backdrop.mat-drawer-shown {
  background-color: rgba(0, 0, 0, 0.6);
}
.theme-light .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb {
  background-color: #66bb6a;
}
.theme-light .mat-slide-toggle.mat-checked .mat-slide-toggle-bar {
  background-color: rgba(102, 187, 106, 0.54);
}
.theme-light .mat-slide-toggle.mat-checked .mat-ripple-element {
  background-color: #66bb6a;
}
.theme-light .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb {
  background-color: #fbc02d;
}
.theme-light .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar {
  background-color: rgba(251, 192, 45, 0.54);
}
.theme-light .mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element {
  background-color: #fbc02d;
}
.theme-light .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb {
  background-color: #f44336;
}
.theme-light .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar {
  background-color: rgba(244, 67, 54, 0.54);
}
.theme-light .mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element {
  background-color: #f44336;
}
.theme-light .mat-slide-toggle:not(.mat-checked) .mat-ripple-element {
  background-color: black;
}
.theme-light .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;
}
.theme-light .mat-slide-toggle-bar {
  background-color: rgba(0, 0, 0, 0.38);
}
.theme-light .mat-slider-track-background {
  background-color: rgba(0, 0, 0, 0.26);
}
.theme-light .mat-primary .mat-slider-track-fill,
.theme-light .mat-primary .mat-slider-thumb,
.theme-light .mat-primary .mat-slider-thumb-label {
  background-color: #fbc02d;
}
.theme-light .mat-primary .mat-slider-thumb-label-text {
  color: rgba(0, 0, 0, 0.87);
}
.theme-light .mat-primary .mat-slider-focus-ring {
  background-color: rgba(251, 192, 45, 0.2);
}
.theme-light .mat-accent .mat-slider-track-fill,
.theme-light .mat-accent .mat-slider-thumb,
.theme-light .mat-accent .mat-slider-thumb-label {
  background-color: #66bb6a;
}
.theme-light .mat-accent .mat-slider-thumb-label-text {
  color: rgba(0, 0, 0, 0.87);
}
.theme-light .mat-accent .mat-slider-focus-ring {
  background-color: rgba(102, 187, 106, 0.2);
}
.theme-light .mat-warn .mat-slider-track-fill,
.theme-light .mat-warn .mat-slider-thumb,
.theme-light .mat-warn .mat-slider-thumb-label {
  background-color: #f44336;
}
.theme-light .mat-warn .mat-slider-thumb-label-text {
  color: white;
}
.theme-light .mat-warn .mat-slider-focus-ring {
  background-color: rgba(244, 67, 54, 0.2);
}
.theme-light .mat-slider:hover .mat-slider-track-background,
.theme-light .cdk-focused .mat-slider-track-background {
  background-color: rgba(0, 0, 0, 0.38);
}
.theme-light .mat-slider-disabled .mat-slider-track-background,
.theme-light .mat-slider-disabled .mat-slider-track-fill,
.theme-light .mat-slider-disabled .mat-slider-thumb {
  background-color: rgba(0, 0, 0, 0.26);
}
.theme-light .mat-slider-disabled:hover .mat-slider-track-background {
  background-color: rgba(0, 0, 0, 0.26);
}
.theme-light .mat-slider-min-value .mat-slider-focus-ring {
  background-color: rgba(0, 0, 0, 0.12);
}
.theme-light .mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,
.theme-light .mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label {
  background-color: rgba(0, 0, 0, 0.87);
}
.theme-light .mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,
.theme-light .mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label {
  background-color: rgba(0, 0, 0, 0.26);
}
.theme-light .mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb {
  border-color: rgba(0, 0, 0, 0.26);
  background-color: transparent;
}
.theme-light .mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb, .theme-light .mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb {
  border-color: rgba(0, 0, 0, 0.38);
}
.theme-light .mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb, .theme-light .mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb {
  border-color: rgba(0, 0, 0, 0.26);
}
.theme-light .mat-slider-has-ticks .mat-slider-wrapper::after {
  border-color: rgba(0, 0, 0, 0.7);
}
.theme-light .mat-slider-horizontal .mat-slider-ticks {
  background-image: repeating-linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);
  background-image: -moz-repeating-linear-gradient(0.0001deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);
}
.theme-light .mat-slider-vertical .mat-slider-ticks {
  background-image: repeating-linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);
}
.theme-light .mat-step-header.cdk-keyboard-focused, .theme-light .mat-step-header.cdk-program-focused, .theme-light .mat-step-header:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
@media (hover: none) {
  .theme-light .mat-step-header:hover {
    background: none;
  }
}
.theme-light .mat-step-header .mat-step-label,
.theme-light .mat-step-header .mat-step-optional {
  color: rgba(0, 0, 0, 0.54);
}
.theme-light .mat-step-header .mat-step-icon {
  background-color: rgba(0, 0, 0, 0.54);
  color: rgba(0, 0, 0, 0.87);
}
.theme-light .mat-step-header .mat-step-icon-selected,
.theme-light .mat-step-header .mat-step-icon-state-done,
.theme-light .mat-step-header .mat-step-icon-state-edit {
  background-color: #fbc02d;
  color: rgba(0, 0, 0, 0.87);
}
.theme-light .mat-step-header.mat-accent .mat-step-icon {
  color: rgba(0, 0, 0, 0.87);
}
.theme-light .mat-step-header.mat-accent .mat-step-icon-selected,
.theme-light .mat-step-header.mat-accent .mat-step-icon-state-done,
.theme-light .mat-step-header.mat-accent .mat-step-icon-state-edit {
  background-color: #66bb6a;
  color: rgba(0, 0, 0, 0.87);
}
.theme-light .mat-step-header.mat-warn .mat-step-icon {
  color: white;
}
.theme-light .mat-step-header.mat-warn .mat-step-icon-selected,
.theme-light .mat-step-header.mat-warn .mat-step-icon-state-done,
.theme-light .mat-step-header.mat-warn .mat-step-icon-state-edit {
  background-color: #f44336;
  color: white;
}
.theme-light .mat-step-header .mat-step-icon-state-error {
  background-color: transparent;
  color: #f44336;
}
.theme-light .mat-step-header .mat-step-label.mat-step-label-active {
  color: rgba(0, 0, 0, 0.87);
}
.theme-light .mat-step-header .mat-step-label.mat-step-label-error {
  color: #f44336;
}
.theme-light .mat-stepper-horizontal, .theme-light .mat-stepper-vertical {
  background-color: white;
}
.theme-light .mat-stepper-vertical-line::before {
  border-left-color: rgba(0, 0, 0, 0.12);
}
.theme-light .mat-horizontal-stepper-header::before,
.theme-light .mat-horizontal-stepper-header::after,
.theme-light .mat-stepper-horizontal-line {
  border-top-color: rgba(0, 0, 0, 0.12);
}
.theme-light .mat-sort-header-arrow {
  color: #757575;
}
.theme-light .mat-tab-nav-bar,
.theme-light .mat-tab-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.theme-light .mat-tab-group-inverted-header .mat-tab-nav-bar,
.theme-light .mat-tab-group-inverted-header .mat-tab-header {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  border-bottom: none;
}
.theme-light .mat-tab-label, .theme-light .mat-tab-link {
  color: rgba(0, 0, 0, 0.87);
}
.theme-light .mat-tab-label.mat-tab-disabled, .theme-light .mat-tab-link.mat-tab-disabled {
  color: rgba(0, 0, 0, 0.38);
}
.theme-light .mat-tab-header-pagination-chevron {
  border-color: rgba(0, 0, 0, 0.87);
}
.theme-light .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: rgba(0, 0, 0, 0.38);
}
.theme-light .mat-tab-group[class*=mat-background-] .mat-tab-header,
.theme-light .mat-tab-nav-bar[class*=mat-background-] {
  border-bottom: none;
  border-top: none;
}
.theme-light .mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-light .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-light .mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-light .mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .theme-light .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-light .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-light .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-light .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(255, 249, 196, 0.3);
}
.theme-light .mat-tab-group.mat-primary .mat-ink-bar, .theme-light .mat-tab-nav-bar.mat-primary .mat-ink-bar {
  background-color: #fbc02d;
}
.theme-light .mat-tab-group.mat-primary.mat-background-primary .mat-ink-bar, .theme-light .mat-tab-nav-bar.mat-primary.mat-background-primary .mat-ink-bar {
  background-color: rgba(0, 0, 0, 0.87);
}
.theme-light .mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-light .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-light .mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-light .mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .theme-light .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-light .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-light .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-light .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(200, 230, 201, 0.3);
}
.theme-light .mat-tab-group.mat-accent .mat-ink-bar, .theme-light .mat-tab-nav-bar.mat-accent .mat-ink-bar {
  background-color: #66bb6a;
}
.theme-light .mat-tab-group.mat-accent.mat-background-accent .mat-ink-bar, .theme-light .mat-tab-nav-bar.mat-accent.mat-background-accent .mat-ink-bar {
  background-color: rgba(0, 0, 0, 0.87);
}
.theme-light .mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-light .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-light .mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-light .mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .theme-light .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-light .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-light .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-light .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(255, 205, 210, 0.3);
}
.theme-light .mat-tab-group.mat-warn .mat-ink-bar, .theme-light .mat-tab-nav-bar.mat-warn .mat-ink-bar {
  background-color: #f44336;
}
.theme-light .mat-tab-group.mat-warn.mat-background-warn .mat-ink-bar, .theme-light .mat-tab-nav-bar.mat-warn.mat-background-warn .mat-ink-bar {
  background-color: white;
}
.theme-light .mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-light .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-light .mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-light .mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .theme-light .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-light .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-light .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-light .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(255, 249, 196, 0.3);
}
.theme-light .mat-tab-group.mat-background-primary .mat-tab-header, .theme-light .mat-tab-group.mat-background-primary .mat-tab-links, .theme-light .mat-tab-group.mat-background-primary .mat-tab-header-pagination, .theme-light .mat-tab-nav-bar.mat-background-primary .mat-tab-header, .theme-light .mat-tab-nav-bar.mat-background-primary .mat-tab-links, .theme-light .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination {
  background-color: #fbc02d;
}
.theme-light .mat-tab-group.mat-background-primary .mat-tab-label, .theme-light .mat-tab-group.mat-background-primary .mat-tab-link, .theme-light .mat-tab-nav-bar.mat-background-primary .mat-tab-label, .theme-light .mat-tab-nav-bar.mat-background-primary .mat-tab-link {
  color: rgba(0, 0, 0, 0.87);
}
.theme-light .mat-tab-group.mat-background-primary .mat-tab-label.mat-tab-disabled, .theme-light .mat-tab-group.mat-background-primary .mat-tab-link.mat-tab-disabled, .theme-light .mat-tab-nav-bar.mat-background-primary .mat-tab-label.mat-tab-disabled, .theme-light .mat-tab-nav-bar.mat-background-primary .mat-tab-link.mat-tab-disabled {
  color: rgba(0, 0, 0, 0.4);
}
.theme-light .mat-tab-group.mat-background-primary .mat-tab-header-pagination-chevron, .theme-light .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-chevron {
  border-color: rgba(0, 0, 0, 0.87);
}
.theme-light .mat-tab-group.mat-background-primary .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .theme-light .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: rgba(0, 0, 0, 0.4);
}
.theme-light .mat-tab-group.mat-background-primary .mat-ripple-element, .theme-light .mat-tab-nav-bar.mat-background-primary .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.12);
}
.theme-light .mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-light .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-light .mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-light .mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .theme-light .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-light .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-light .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-light .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(200, 230, 201, 0.3);
}
.theme-light .mat-tab-group.mat-background-accent .mat-tab-header, .theme-light .mat-tab-group.mat-background-accent .mat-tab-links, .theme-light .mat-tab-group.mat-background-accent .mat-tab-header-pagination, .theme-light .mat-tab-nav-bar.mat-background-accent .mat-tab-header, .theme-light .mat-tab-nav-bar.mat-background-accent .mat-tab-links, .theme-light .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination {
  background-color: #66bb6a;
}
.theme-light .mat-tab-group.mat-background-accent .mat-tab-label, .theme-light .mat-tab-group.mat-background-accent .mat-tab-link, .theme-light .mat-tab-nav-bar.mat-background-accent .mat-tab-label, .theme-light .mat-tab-nav-bar.mat-background-accent .mat-tab-link {
  color: rgba(0, 0, 0, 0.87);
}
.theme-light .mat-tab-group.mat-background-accent .mat-tab-label.mat-tab-disabled, .theme-light .mat-tab-group.mat-background-accent .mat-tab-link.mat-tab-disabled, .theme-light .mat-tab-nav-bar.mat-background-accent .mat-tab-label.mat-tab-disabled, .theme-light .mat-tab-nav-bar.mat-background-accent .mat-tab-link.mat-tab-disabled {
  color: rgba(0, 0, 0, 0.4);
}
.theme-light .mat-tab-group.mat-background-accent .mat-tab-header-pagination-chevron, .theme-light .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-chevron {
  border-color: rgba(0, 0, 0, 0.87);
}
.theme-light .mat-tab-group.mat-background-accent .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .theme-light .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: rgba(0, 0, 0, 0.4);
}
.theme-light .mat-tab-group.mat-background-accent .mat-ripple-element, .theme-light .mat-tab-nav-bar.mat-background-accent .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.12);
}
.theme-light .mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-light .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-light .mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-light .mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .theme-light .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-light .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-light .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-light .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(255, 205, 210, 0.3);
}
.theme-light .mat-tab-group.mat-background-warn .mat-tab-header, .theme-light .mat-tab-group.mat-background-warn .mat-tab-links, .theme-light .mat-tab-group.mat-background-warn .mat-tab-header-pagination, .theme-light .mat-tab-nav-bar.mat-background-warn .mat-tab-header, .theme-light .mat-tab-nav-bar.mat-background-warn .mat-tab-links, .theme-light .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination {
  background-color: #f44336;
}
.theme-light .mat-tab-group.mat-background-warn .mat-tab-label, .theme-light .mat-tab-group.mat-background-warn .mat-tab-link, .theme-light .mat-tab-nav-bar.mat-background-warn .mat-tab-label, .theme-light .mat-tab-nav-bar.mat-background-warn .mat-tab-link {
  color: white;
}
.theme-light .mat-tab-group.mat-background-warn .mat-tab-label.mat-tab-disabled, .theme-light .mat-tab-group.mat-background-warn .mat-tab-link.mat-tab-disabled, .theme-light .mat-tab-nav-bar.mat-background-warn .mat-tab-label.mat-tab-disabled, .theme-light .mat-tab-nav-bar.mat-background-warn .mat-tab-link.mat-tab-disabled {
  color: rgba(255, 255, 255, 0.4);
}
.theme-light .mat-tab-group.mat-background-warn .mat-tab-header-pagination-chevron, .theme-light .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-chevron {
  border-color: white;
}
.theme-light .mat-tab-group.mat-background-warn .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .theme-light .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: rgba(255, 255, 255, 0.4);
}
.theme-light .mat-tab-group.mat-background-warn .mat-ripple-element, .theme-light .mat-tab-nav-bar.mat-background-warn .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.12);
}
.theme-light .mat-toolbar {
  background: whitesmoke;
  color: rgba(0, 0, 0, 0.87);
}
.theme-light .mat-toolbar.mat-primary {
  background: #fbc02d;
  color: rgba(0, 0, 0, 0.87);
}
.theme-light .mat-toolbar.mat-accent {
  background: #66bb6a;
  color: rgba(0, 0, 0, 0.87);
}
.theme-light .mat-toolbar.mat-warn {
  background: #f44336;
  color: white;
}
.theme-light .mat-toolbar .mat-form-field-underline,
.theme-light .mat-toolbar .mat-form-field-ripple,
.theme-light .mat-toolbar .mat-focused .mat-form-field-ripple {
  background-color: currentColor;
}
.theme-light .mat-toolbar .mat-form-field-label,
.theme-light .mat-toolbar .mat-focused .mat-form-field-label,
.theme-light .mat-toolbar .mat-select-value,
.theme-light .mat-toolbar .mat-select-arrow,
.theme-light .mat-toolbar .mat-form-field.mat-focused .mat-select-arrow {
  color: inherit;
}
.theme-light .mat-toolbar .mat-input-element {
  caret-color: currentColor;
}
.theme-light .mat-tooltip {
  background: rgba(97, 97, 97, 0.9);
}
.theme-light .mat-tree {
  background: white;
}
.theme-light .mat-tree-node,
.theme-light .mat-nested-tree-node {
  color: rgba(0, 0, 0, 0.87);
}
.theme-light .mat-snack-bar-container {
  color: rgba(255, 255, 255, 0.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);
}
.theme-light .mat-simple-snackbar-action {
  color: #66bb6a;
}
.theme-nada .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.1);
}
.theme-nada .mat-option {
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada .mat-option:hover:not(.mat-option-disabled), .theme-nada .mat-option:focus:not(.mat-option-disabled) {
  background: rgba(0, 0, 0, 0.04);
}
.theme-nada .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled) {
  background: rgba(0, 0, 0, 0.04);
}
.theme-nada .mat-option.mat-active {
  background: rgba(0, 0, 0, 0.04);
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada .mat-option.mat-option-disabled {
  color: rgba(0, 0, 0, 0.38);
}
.theme-nada .mat-primary .mat-option.mat-selected:not(.mat-option-disabled) {
  color: #b71c1c;
}
.theme-nada .mat-accent .mat-option.mat-selected:not(.mat-option-disabled) {
  color: #66bb6a;
}
.theme-nada .mat-warn .mat-option.mat-selected:not(.mat-option-disabled) {
  color: #bdbdbd;
}
.theme-nada .mat-optgroup-label {
  color: rgba(0, 0, 0, 0.54);
}
.theme-nada .mat-optgroup-disabled .mat-optgroup-label {
  color: rgba(0, 0, 0, 0.38);
}
.theme-nada .mat-pseudo-checkbox {
  color: rgba(0, 0, 0, 0.54);
}
.theme-nada .mat-pseudo-checkbox::after {
  color: #fafafa;
}
.theme-nada .mat-pseudo-checkbox-disabled {
  color: #b0b0b0;
}
.theme-nada .mat-primary .mat-pseudo-checkbox-checked,
.theme-nada .mat-primary .mat-pseudo-checkbox-indeterminate {
  background: #b71c1c;
}
.theme-nada .mat-pseudo-checkbox-checked,
.theme-nada .mat-pseudo-checkbox-indeterminate,
.theme-nada .mat-accent .mat-pseudo-checkbox-checked,
.theme-nada .mat-accent .mat-pseudo-checkbox-indeterminate {
  background: #66bb6a;
}
.theme-nada .mat-warn .mat-pseudo-checkbox-checked,
.theme-nada .mat-warn .mat-pseudo-checkbox-indeterminate {
  background: #bdbdbd;
}
.theme-nada .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,
.theme-nada .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled {
  background: #b0b0b0;
}
.theme-nada .mat-app-background, .theme-nada.mat-app-background {
  background-color: #fafafa;
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada .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);
}
.theme-nada .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);
}
.theme-nada .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);
}
.theme-nada .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);
}
.theme-nada .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);
}
.theme-nada .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);
}
.theme-nada .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);
}
.theme-nada .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);
}
.theme-nada .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);
}
.theme-nada .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);
}
.theme-nada .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);
}
.theme-nada .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);
}
.theme-nada .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);
}
.theme-nada .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);
}
.theme-nada .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);
}
.theme-nada .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);
}
.theme-nada .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);
}
.theme-nada .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);
}
.theme-nada .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);
}
.theme-nada .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);
}
.theme-nada .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);
}
.theme-nada .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);
}
.theme-nada .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);
}
.theme-nada .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);
}
.theme-nada .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;
}
.theme-nada .mat-autocomplete-panel {
  background: white;
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada .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);
}
.theme-nada .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover) {
  background: white;
}
.theme-nada .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled) {
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada .mat-badge-content {
  color: white;
  background: #b71c1c;
}
.cdk-high-contrast-active .theme-nada .mat-badge-content {
  outline: solid 1px;
  border-radius: 0;
}
.theme-nada .mat-badge-accent .mat-badge-content {
  background: #66bb6a;
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada .mat-badge-warn .mat-badge-content {
  color: rgba(0, 0, 0, 0.87);
  background: #bdbdbd;
}
.theme-nada .mat-badge {
  position: relative;
}
.theme-nada .mat-badge-hidden .mat-badge-content {
  display: none;
}
.theme-nada .mat-badge-disabled .mat-badge-content {
  background: #b9b9b9;
  color: rgba(0, 0, 0, 0.38);
}
.theme-nada .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;
}
.theme-nada .ng-animate-disabled .mat-badge-content,
.theme-nada .mat-badge-content._mat-animation-noopable {
  transition: none;
}
.theme-nada .mat-badge-content.mat-badge-active {
  transform: none;
}
.theme-nada .mat-badge-small .mat-badge-content {
  width: 16px;
  height: 16px;
  line-height: 16px;
}
.theme-nada .mat-badge-small.mat-badge-above .mat-badge-content {
  top: -8px;
}
.theme-nada .mat-badge-small.mat-badge-below .mat-badge-content {
  bottom: -8px;
}
.theme-nada .mat-badge-small.mat-badge-before .mat-badge-content {
  left: -16px;
}
[dir=rtl] .theme-nada .mat-badge-small.mat-badge-before .mat-badge-content {
  left: auto;
  right: -16px;
}
.theme-nada .mat-badge-small.mat-badge-after .mat-badge-content {
  right: -16px;
}
[dir=rtl] .theme-nada .mat-badge-small.mat-badge-after .mat-badge-content {
  right: auto;
  left: -16px;
}
.theme-nada .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: -8px;
}
[dir=rtl] .theme-nada .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: auto;
  right: -8px;
}
.theme-nada .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: -8px;
}
[dir=rtl] .theme-nada .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: auto;
  left: -8px;
}
.theme-nada .mat-badge-medium .mat-badge-content {
  width: 22px;
  height: 22px;
  line-height: 22px;
}
.theme-nada .mat-badge-medium.mat-badge-above .mat-badge-content {
  top: -11px;
}
.theme-nada .mat-badge-medium.mat-badge-below .mat-badge-content {
  bottom: -11px;
}
.theme-nada .mat-badge-medium.mat-badge-before .mat-badge-content {
  left: -22px;
}
[dir=rtl] .theme-nada .mat-badge-medium.mat-badge-before .mat-badge-content {
  left: auto;
  right: -22px;
}
.theme-nada .mat-badge-medium.mat-badge-after .mat-badge-content {
  right: -22px;
}
[dir=rtl] .theme-nada .mat-badge-medium.mat-badge-after .mat-badge-content {
  right: auto;
  left: -22px;
}
.theme-nada .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: -11px;
}
[dir=rtl] .theme-nada .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: auto;
  right: -11px;
}
.theme-nada .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: -11px;
}
[dir=rtl] .theme-nada .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: auto;
  left: -11px;
}
.theme-nada .mat-badge-large .mat-badge-content {
  width: 28px;
  height: 28px;
  line-height: 28px;
}
.theme-nada .mat-badge-large.mat-badge-above .mat-badge-content {
  top: -14px;
}
.theme-nada .mat-badge-large.mat-badge-below .mat-badge-content {
  bottom: -14px;
}
.theme-nada .mat-badge-large.mat-badge-before .mat-badge-content {
  left: -28px;
}
[dir=rtl] .theme-nada .mat-badge-large.mat-badge-before .mat-badge-content {
  left: auto;
  right: -28px;
}
.theme-nada .mat-badge-large.mat-badge-after .mat-badge-content {
  right: -28px;
}
[dir=rtl] .theme-nada .mat-badge-large.mat-badge-after .mat-badge-content {
  right: auto;
  left: -28px;
}
.theme-nada .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: -14px;
}
[dir=rtl] .theme-nada .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: auto;
  right: -14px;
}
.theme-nada .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: -14px;
}
[dir=rtl] .theme-nada .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: auto;
  left: -14px;
}
.theme-nada .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: white;
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada .mat-button, .theme-nada .mat-icon-button, .theme-nada .mat-stroked-button {
  color: inherit;
  background: transparent;
}
.theme-nada .mat-button.mat-primary, .theme-nada .mat-icon-button.mat-primary, .theme-nada .mat-stroked-button.mat-primary {
  color: #b71c1c;
}
.theme-nada .mat-button.mat-accent, .theme-nada .mat-icon-button.mat-accent, .theme-nada .mat-stroked-button.mat-accent {
  color: #66bb6a;
}
.theme-nada .mat-button.mat-warn, .theme-nada .mat-icon-button.mat-warn, .theme-nada .mat-stroked-button.mat-warn {
  color: #bdbdbd;
}
.theme-nada .mat-button.mat-primary.mat-button-disabled, .theme-nada .mat-button.mat-accent.mat-button-disabled, .theme-nada .mat-button.mat-warn.mat-button-disabled, .theme-nada .mat-button.mat-button-disabled.mat-button-disabled, .theme-nada .mat-icon-button.mat-primary.mat-button-disabled, .theme-nada .mat-icon-button.mat-accent.mat-button-disabled, .theme-nada .mat-icon-button.mat-warn.mat-button-disabled, .theme-nada .mat-icon-button.mat-button-disabled.mat-button-disabled, .theme-nada .mat-stroked-button.mat-primary.mat-button-disabled, .theme-nada .mat-stroked-button.mat-accent.mat-button-disabled, .theme-nada .mat-stroked-button.mat-warn.mat-button-disabled, .theme-nada .mat-stroked-button.mat-button-disabled.mat-button-disabled {
  color: rgba(0, 0, 0, 0.26);
}
.theme-nada .mat-button.mat-primary .mat-button-focus-overlay, .theme-nada .mat-icon-button.mat-primary .mat-button-focus-overlay, .theme-nada .mat-stroked-button.mat-primary .mat-button-focus-overlay {
  background-color: #b71c1c;
}
.theme-nada .mat-button.mat-accent .mat-button-focus-overlay, .theme-nada .mat-icon-button.mat-accent .mat-button-focus-overlay, .theme-nada .mat-stroked-button.mat-accent .mat-button-focus-overlay {
  background-color: #66bb6a;
}
.theme-nada .mat-button.mat-warn .mat-button-focus-overlay, .theme-nada .mat-icon-button.mat-warn .mat-button-focus-overlay, .theme-nada .mat-stroked-button.mat-warn .mat-button-focus-overlay {
  background-color: #bdbdbd;
}
.theme-nada .mat-button.mat-button-disabled .mat-button-focus-overlay, .theme-nada .mat-icon-button.mat-button-disabled .mat-button-focus-overlay, .theme-nada .mat-stroked-button.mat-button-disabled .mat-button-focus-overlay {
  background-color: transparent;
}
.theme-nada .mat-button .mat-ripple-element, .theme-nada .mat-icon-button .mat-ripple-element, .theme-nada .mat-stroked-button .mat-ripple-element {
  opacity: 0.1;
  background-color: currentColor;
}
.theme-nada .mat-button-focus-overlay {
  background: black;
}
.theme-nada .mat-stroked-button:not(.mat-button-disabled) {
  border-color: rgba(0, 0, 0, 0.12);
}
.theme-nada .mat-flat-button, .theme-nada .mat-raised-button, .theme-nada .mat-fab, .theme-nada .mat-mini-fab {
  color: rgba(0, 0, 0, 0.87);
  background-color: white;
}
.theme-nada .mat-flat-button.mat-primary, .theme-nada .mat-raised-button.mat-primary, .theme-nada .mat-fab.mat-primary, .theme-nada .mat-mini-fab.mat-primary {
  color: white;
}
.theme-nada .mat-flat-button.mat-accent, .theme-nada .mat-raised-button.mat-accent, .theme-nada .mat-fab.mat-accent, .theme-nada .mat-mini-fab.mat-accent {
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada .mat-flat-button.mat-warn, .theme-nada .mat-raised-button.mat-warn, .theme-nada .mat-fab.mat-warn, .theme-nada .mat-mini-fab.mat-warn {
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada .mat-flat-button.mat-primary.mat-button-disabled, .theme-nada .mat-flat-button.mat-accent.mat-button-disabled, .theme-nada .mat-flat-button.mat-warn.mat-button-disabled, .theme-nada .mat-flat-button.mat-button-disabled.mat-button-disabled, .theme-nada .mat-raised-button.mat-primary.mat-button-disabled, .theme-nada .mat-raised-button.mat-accent.mat-button-disabled, .theme-nada .mat-raised-button.mat-warn.mat-button-disabled, .theme-nada .mat-raised-button.mat-button-disabled.mat-button-disabled, .theme-nada .mat-fab.mat-primary.mat-button-disabled, .theme-nada .mat-fab.mat-accent.mat-button-disabled, .theme-nada .mat-fab.mat-warn.mat-button-disabled, .theme-nada .mat-fab.mat-button-disabled.mat-button-disabled, .theme-nada .mat-mini-fab.mat-primary.mat-button-disabled, .theme-nada .mat-mini-fab.mat-accent.mat-button-disabled, .theme-nada .mat-mini-fab.mat-warn.mat-button-disabled, .theme-nada .mat-mini-fab.mat-button-disabled.mat-button-disabled {
  color: rgba(0, 0, 0, 0.26);
}
.theme-nada .mat-flat-button.mat-primary, .theme-nada .mat-raised-button.mat-primary, .theme-nada .mat-fab.mat-primary, .theme-nada .mat-mini-fab.mat-primary {
  background-color: #b71c1c;
}
.theme-nada .mat-flat-button.mat-accent, .theme-nada .mat-raised-button.mat-accent, .theme-nada .mat-fab.mat-accent, .theme-nada .mat-mini-fab.mat-accent {
  background-color: #66bb6a;
}
.theme-nada .mat-flat-button.mat-warn, .theme-nada .mat-raised-button.mat-warn, .theme-nada .mat-fab.mat-warn, .theme-nada .mat-mini-fab.mat-warn {
  background-color: #bdbdbd;
}
.theme-nada .mat-flat-button.mat-primary.mat-button-disabled, .theme-nada .mat-flat-button.mat-accent.mat-button-disabled, .theme-nada .mat-flat-button.mat-warn.mat-button-disabled, .theme-nada .mat-flat-button.mat-button-disabled.mat-button-disabled, .theme-nada .mat-raised-button.mat-primary.mat-button-disabled, .theme-nada .mat-raised-button.mat-accent.mat-button-disabled, .theme-nada .mat-raised-button.mat-warn.mat-button-disabled, .theme-nada .mat-raised-button.mat-button-disabled.mat-button-disabled, .theme-nada .mat-fab.mat-primary.mat-button-disabled, .theme-nada .mat-fab.mat-accent.mat-button-disabled, .theme-nada .mat-fab.mat-warn.mat-button-disabled, .theme-nada .mat-fab.mat-button-disabled.mat-button-disabled, .theme-nada .mat-mini-fab.mat-primary.mat-button-disabled, .theme-nada .mat-mini-fab.mat-accent.mat-button-disabled, .theme-nada .mat-mini-fab.mat-warn.mat-button-disabled, .theme-nada .mat-mini-fab.mat-button-disabled.mat-button-disabled {
  background-color: rgba(0, 0, 0, 0.12);
}
.theme-nada .mat-flat-button.mat-primary .mat-ripple-element, .theme-nada .mat-raised-button.mat-primary .mat-ripple-element, .theme-nada .mat-fab.mat-primary .mat-ripple-element, .theme-nada .mat-mini-fab.mat-primary .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.1);
}
.theme-nada .mat-flat-button.mat-accent .mat-ripple-element, .theme-nada .mat-raised-button.mat-accent .mat-ripple-element, .theme-nada .mat-fab.mat-accent .mat-ripple-element, .theme-nada .mat-mini-fab.mat-accent .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.1);
}
.theme-nada .mat-flat-button.mat-warn .mat-ripple-element, .theme-nada .mat-raised-button.mat-warn .mat-ripple-element, .theme-nada .mat-fab.mat-warn .mat-ripple-element, .theme-nada .mat-mini-fab.mat-warn .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.1);
}
.theme-nada .mat-stroked-button:not([class*=mat-elevation-z]), .theme-nada .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);
}
.theme-nada .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);
}
.theme-nada .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);
}
.theme-nada .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);
}
.theme-nada .mat-fab:not([class*=mat-elevation-z]), .theme-nada .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);
}
.theme-nada .mat-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]), .theme-nada .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);
}
.theme-nada .mat-fab.mat-button-disabled:not([class*=mat-elevation-z]), .theme-nada .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);
}
.theme-nada .mat-button-toggle-standalone,
.theme-nada .mat-button-toggle-group {
  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);
}
.theme-nada .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,
.theme-nada .mat-button-toggle-group-appearance-standard {
  box-shadow: none;
}
.theme-nada .mat-button-toggle {
  color: rgba(0, 0, 0, 0.38);
}
.theme-nada .mat-button-toggle .mat-button-toggle-focus-overlay {
  background-color: rgba(0, 0, 0, 0.12);
}
.theme-nada .mat-button-toggle-appearance-standard {
  color: rgba(0, 0, 0, 0.87);
  background: white;
}
.theme-nada .mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay {
  background-color: black;
}
.theme-nada .mat-button-toggle-group-appearance-standard .mat-button-toggle + .mat-button-toggle {
  border-left: solid 1px rgba(0, 0, 0, 0.12);
}
.theme-nada [dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle + .mat-button-toggle {
  border-left: none;
  border-right: solid 1px rgba(0, 0, 0, 0.12);
}
.theme-nada .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 rgba(0, 0, 0, 0.12);
}
.theme-nada .mat-button-toggle-checked {
  background-color: #e0e0e0;
  color: rgba(0, 0, 0, 0.54);
}
.theme-nada .mat-button-toggle-checked.mat-button-toggle-appearance-standard {
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada .mat-button-toggle-disabled {
  color: rgba(0, 0, 0, 0.26);
  background-color: #eeeeee;
}
.theme-nada .mat-button-toggle-disabled.mat-button-toggle-appearance-standard {
  background: white;
}
.theme-nada .mat-button-toggle-disabled.mat-button-toggle-checked {
  background-color: #bdbdbd;
}
.theme-nada .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,
.theme-nada .mat-button-toggle-group-appearance-standard {
  border: solid 1px rgba(0, 0, 0, 0.12);
}
.theme-nada .mat-card {
  background: white;
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada .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);
}
.theme-nada .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);
}
.theme-nada .mat-card-subtitle {
  color: rgba(0, 0, 0, 0.54);
}
.theme-nada .mat-checkbox-frame {
  border-color: rgba(0, 0, 0, 0.54);
}
.theme-nada .mat-checkbox-checkmark {
  fill: #fafafa;
}
.theme-nada .mat-checkbox-checkmark-path {
  stroke: #fafafa !important;
}
.theme-nada .mat-checkbox-mixedmark {
  background-color: #fafafa;
}
.theme-nada .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background, .theme-nada .mat-checkbox-checked.mat-primary .mat-checkbox-background {
  background-color: #b71c1c;
}
.theme-nada .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background, .theme-nada .mat-checkbox-checked.mat-accent .mat-checkbox-background {
  background-color: #66bb6a;
}
.theme-nada .mat-checkbox-indeterminate.mat-warn .mat-checkbox-background, .theme-nada .mat-checkbox-checked.mat-warn .mat-checkbox-background {
  background-color: #bdbdbd;
}
.theme-nada .mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background, .theme-nada .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background {
  background-color: #b0b0b0;
}
.theme-nada .mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame {
  border-color: #b0b0b0;
}
.theme-nada .mat-checkbox-disabled .mat-checkbox-label {
  color: rgba(0, 0, 0, 0.54);
}
.theme-nada .mat-checkbox .mat-ripple-element {
  background-color: black;
}
.theme-nada .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,
.theme-nada .mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element {
  background: #b71c1c;
}
.theme-nada .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,
.theme-nada .mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element {
  background: #66bb6a;
}
.theme-nada .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,
.theme-nada .mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element {
  background: #bdbdbd;
}
.theme-nada .mat-chip.mat-standard-chip {
  background-color: #e0e0e0;
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada .mat-chip.mat-standard-chip .mat-chip-remove {
  color: rgba(0, 0, 0, 0.87);
  opacity: 0.4;
}
.theme-nada .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);
}
.theme-nada .mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover {
  opacity: 0.54;
}
.theme-nada .mat-chip.mat-standard-chip.mat-chip-disabled {
  opacity: 0.4;
}
.theme-nada .mat-chip.mat-standard-chip::after {
  background: black;
}
.theme-nada .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary {
  background-color: #b71c1c;
  color: white;
}
.theme-nada .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove {
  color: white;
  opacity: 0.4;
}
.theme-nada .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.1);
}
.theme-nada .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn {
  background-color: #bdbdbd;
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove {
  color: rgba(0, 0, 0, 0.87);
  opacity: 0.4;
}
.theme-nada .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.1);
}
.theme-nada .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent {
  background-color: #66bb6a;
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove {
  color: rgba(0, 0, 0, 0.87);
  opacity: 0.4;
}
.theme-nada .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.1);
}
.theme-nada .mat-table {
  background: white;
}
.theme-nada .mat-table thead, .theme-nada .mat-table tbody, .theme-nada .mat-table tfoot,
.theme-nada mat-header-row, .theme-nada mat-row, .theme-nada mat-footer-row,
.theme-nada [mat-header-row], .theme-nada [mat-row], .theme-nada [mat-footer-row],
.theme-nada .mat-table-sticky {
  background: inherit;
}
.theme-nada mat-row, .theme-nada mat-header-row, .theme-nada mat-footer-row,
.theme-nada th.mat-header-cell, .theme-nada td.mat-cell, .theme-nada td.mat-footer-cell {
  border-bottom-color: rgba(0, 0, 0, 0.12);
}
.theme-nada .mat-header-cell {
  color: rgba(0, 0, 0, 0.54);
}
.theme-nada .mat-cell, .theme-nada .mat-footer-cell {
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada .mat-calendar-arrow {
  border-top-color: rgba(0, 0, 0, 0.54);
}
.theme-nada .mat-datepicker-toggle,
.theme-nada .mat-datepicker-content .mat-calendar-next-button,
.theme-nada .mat-datepicker-content .mat-calendar-previous-button {
  color: rgba(0, 0, 0, 0.54);
}
.theme-nada .mat-calendar-table-header {
  color: rgba(0, 0, 0, 0.38);
}
.theme-nada .mat-calendar-table-header-divider::after {
  background: rgba(0, 0, 0, 0.12);
}
.theme-nada .mat-calendar-body-label {
  color: rgba(0, 0, 0, 0.54);
}
.theme-nada .mat-calendar-body-cell-content,
.theme-nada .mat-date-range-input-separator {
  color: rgba(0, 0, 0, 0.87);
  border-color: transparent;
}
.theme-nada .mat-calendar-body-disabled > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  color: rgba(0, 0, 0, 0.38);
}
.theme-nada .mat-form-field-disabled .mat-date-range-input-separator {
  color: rgba(0, 0, 0, 0.38);
}
.theme-nada .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),
.theme-nada .cdk-keyboard-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),
.theme-nada .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(0, 0, 0, 0.04);
}
.theme-nada .mat-calendar-body-in-preview {
  color: rgba(0, 0, 0, 0.24);
}
.theme-nada .mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  border-color: rgba(0, 0, 0, 0.38);
}
.theme-nada .mat-calendar-body-disabled > .mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  border-color: rgba(0, 0, 0, 0.18);
}
.theme-nada .mat-calendar-body-in-range::before {
  background: rgba(183, 28, 28, 0.2);
}
.theme-nada .mat-calendar-body-comparison-identical,
.theme-nada .mat-calendar-body-in-comparison-range::before {
  background: rgba(249, 171, 0, 0.2);
}
.theme-nada .mat-calendar-body-comparison-bridge-start::before,
.theme-nada [dir=rtl] .mat-calendar-body-comparison-bridge-end::before {
  background: linear-gradient(to right, rgba(183, 28, 28, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.theme-nada .mat-calendar-body-comparison-bridge-end::before,
.theme-nada [dir=rtl] .mat-calendar-body-comparison-bridge-start::before {
  background: linear-gradient(to left, rgba(183, 28, 28, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.theme-nada .mat-calendar-body-in-range > .mat-calendar-body-comparison-identical,
.theme-nada .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after {
  background: #a8dab5;
}
.theme-nada .mat-calendar-body-comparison-identical.mat-calendar-body-selected,
.theme-nada .mat-calendar-body-in-comparison-range > .mat-calendar-body-selected {
  background: #46a35e;
}
.theme-nada .mat-calendar-body-selected {
  background-color: #b71c1c;
  color: white;
}
.theme-nada .mat-calendar-body-disabled > .mat-calendar-body-selected {
  background-color: rgba(183, 28, 28, 0.4);
}
.theme-nada .mat-calendar-body-today.mat-calendar-body-selected {
  box-shadow: inset 0 0 0 1px white;
}
.theme-nada .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: white;
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada .mat-datepicker-content.mat-accent .mat-calendar-body-in-range::before {
  background: rgba(102, 187, 106, 0.2);
}
.theme-nada .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,
.theme-nada .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range::before {
  background: rgba(249, 171, 0, 0.2);
}
.theme-nada .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start::before,
.theme-nada .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end::before {
  background: linear-gradient(to right, rgba(102, 187, 106, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.theme-nada .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end::before,
.theme-nada .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start::before {
  background: linear-gradient(to left, rgba(102, 187, 106, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.theme-nada .mat-datepicker-content.mat-accent .mat-calendar-body-in-range > .mat-calendar-body-comparison-identical,
.theme-nada .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after {
  background: #a8dab5;
}
.theme-nada .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,
.theme-nada .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range > .mat-calendar-body-selected {
  background: #46a35e;
}
.theme-nada .mat-datepicker-content.mat-accent .mat-calendar-body-selected {
  background-color: #66bb6a;
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada .mat-datepicker-content.mat-accent .mat-calendar-body-disabled > .mat-calendar-body-selected {
  background-color: rgba(102, 187, 106, 0.4);
}
.theme-nada .mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.87);
}
.theme-nada .mat-datepicker-content.mat-warn .mat-calendar-body-in-range::before {
  background: rgba(189, 189, 189, 0.2);
}
.theme-nada .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,
.theme-nada .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range::before {
  background: rgba(249, 171, 0, 0.2);
}
.theme-nada .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start::before,
.theme-nada .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end::before {
  background: linear-gradient(to right, rgba(189, 189, 189, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.theme-nada .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end::before,
.theme-nada .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start::before {
  background: linear-gradient(to left, rgba(189, 189, 189, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.theme-nada .mat-datepicker-content.mat-warn .mat-calendar-body-in-range > .mat-calendar-body-comparison-identical,
.theme-nada .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after {
  background: #a8dab5;
}
.theme-nada .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,
.theme-nada .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range > .mat-calendar-body-selected {
  background: #46a35e;
}
.theme-nada .mat-datepicker-content.mat-warn .mat-calendar-body-selected {
  background-color: #bdbdbd;
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada .mat-datepicker-content.mat-warn .mat-calendar-body-disabled > .mat-calendar-body-selected {
  background-color: rgba(189, 189, 189, 0.4);
}
.theme-nada .mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.87);
}
.theme-nada .mat-datepicker-content-touch {
  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);
}
.theme-nada .mat-datepicker-toggle-active {
  color: #b71c1c;
}
.theme-nada .mat-datepicker-toggle-active.mat-accent {
  color: #66bb6a;
}
.theme-nada .mat-datepicker-toggle-active.mat-warn {
  color: #bdbdbd;
}
.theme-nada .mat-date-range-input-inner[disabled] {
  color: rgba(0, 0, 0, 0.38);
}
.theme-nada .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: white;
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada .mat-divider {
  border-top-color: rgba(0, 0, 0, 0.12);
}
.theme-nada .mat-divider-vertical {
  border-right-color: rgba(0, 0, 0, 0.12);
}
.theme-nada .mat-expansion-panel {
  background: white;
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada .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);
}
.theme-nada .mat-action-row {
  border-top-color: rgba(0, 0, 0, 0.12);
}
.theme-nada .mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]), .theme-nada .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]), .theme-nada .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]) {
  background: rgba(0, 0, 0, 0.04);
}
@media (hover: none) {
  .theme-nada .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover {
    background: white;
  }
}
.theme-nada .mat-expansion-panel-header-title {
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada .mat-expansion-panel-header-description,
.theme-nada .mat-expansion-indicator::after {
  color: rgba(0, 0, 0, 0.54);
}
.theme-nada .mat-expansion-panel-header[aria-disabled=true] {
  color: rgba(0, 0, 0, 0.26);
}
.theme-nada .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,
.theme-nada .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description {
  color: inherit;
}
.theme-nada .mat-form-field-label {
  color: rgba(0, 0, 0, 0.6);
}
.theme-nada .mat-hint {
  color: rgba(0, 0, 0, 0.6);
}
.theme-nada .mat-form-field.mat-focused .mat-form-field-label {
  color: #b71c1c;
}
.theme-nada .mat-form-field.mat-focused .mat-form-field-label.mat-accent {
  color: #66bb6a;
}
.theme-nada .mat-form-field.mat-focused .mat-form-field-label.mat-warn {
  color: #bdbdbd;
}
.theme-nada .mat-focused .mat-form-field-required-marker {
  color: #66bb6a;
}
.theme-nada .mat-form-field-ripple {
  background-color: rgba(0, 0, 0, 0.87);
}
.theme-nada .mat-form-field.mat-focused .mat-form-field-ripple {
  background-color: #b71c1c;
}
.theme-nada .mat-form-field.mat-focused .mat-form-field-ripple.mat-accent {
  background-color: #66bb6a;
}
.theme-nada .mat-form-field.mat-focused .mat-form-field-ripple.mat-warn {
  background-color: #bdbdbd;
}
.theme-nada .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix::after {
  color: #b71c1c;
}
.theme-nada .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix::after {
  color: #66bb6a;
}
.theme-nada .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix::after {
  color: #bdbdbd;
}
.theme-nada .mat-form-field.mat-form-field-invalid .mat-form-field-label {
  color: #bdbdbd;
}
.theme-nada .mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,
.theme-nada .mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker {
  color: #bdbdbd;
}
.theme-nada .mat-form-field.mat-form-field-invalid .mat-form-field-ripple,
.theme-nada .mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent {
  background-color: #bdbdbd;
}
.theme-nada .mat-error {
  color: #bdbdbd;
}
.theme-nada .mat-form-field-appearance-legacy .mat-form-field-label {
  color: rgba(0, 0, 0, 0.54);
}
.theme-nada .mat-form-field-appearance-legacy .mat-hint {
  color: rgba(0, 0, 0, 0.54);
}
.theme-nada .mat-form-field-appearance-legacy .mat-form-field-underline {
  background-color: rgba(0, 0, 0, 0.42);
}
.theme-nada .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.42) 33%, transparent 0%);
  background-size: 4px 100%;
  background-repeat: repeat-x;
}
.theme-nada .mat-form-field-appearance-standard .mat-form-field-underline {
  background-color: rgba(0, 0, 0, 0.42);
}
.theme-nada .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.42) 33%, transparent 0%);
  background-size: 4px 100%;
  background-repeat: repeat-x;
}
.theme-nada .mat-form-field-appearance-fill .mat-form-field-flex {
  background-color: rgba(0, 0, 0, 0.04);
}
.theme-nada .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex {
  background-color: rgba(0, 0, 0, 0.02);
}
.theme-nada .mat-form-field-appearance-fill .mat-form-field-underline::before {
  background-color: rgba(0, 0, 0, 0.42);
}
.theme-nada .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-label {
  color: rgba(0, 0, 0, 0.38);
}
.theme-nada .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline::before {
  background-color: transparent;
}
.theme-nada .mat-form-field-appearance-outline .mat-form-field-outline {
  color: rgba(0, 0, 0, 0.12);
}
.theme-nada .mat-form-field-appearance-outline .mat-form-field-outline-thick {
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick {
  color: #b71c1c;
}
.theme-nada .mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick {
  color: #66bb6a;
}
.theme-nada .mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick {
  color: #bdbdbd;
}
.theme-nada .mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick {
  color: #bdbdbd;
}
.theme-nada .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-label {
  color: rgba(0, 0, 0, 0.38);
}
.theme-nada .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline {
  color: rgba(0, 0, 0, 0.06);
}
.theme-nada .mat-icon.mat-primary {
  color: #b71c1c;
}
.theme-nada .mat-icon.mat-accent {
  color: #66bb6a;
}
.theme-nada .mat-icon.mat-warn {
  color: #bdbdbd;
}
.theme-nada .mat-form-field-type-mat-native-select .mat-form-field-infix::after {
  color: rgba(0, 0, 0, 0.54);
}
.theme-nada .mat-input-element:disabled,
.theme-nada .mat-form-field-type-mat-native-select.mat-form-field-disabled .mat-form-field-infix::after {
  color: rgba(0, 0, 0, 0.38);
}
.theme-nada .mat-input-element {
  caret-color: #b71c1c;
}
.theme-nada .mat-input-element::-moz-placeholder {
  color: rgba(0, 0, 0, 0.42);
}
.theme-nada .mat-input-element:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.42);
}
.theme-nada .mat-input-element::placeholder {
  color: rgba(0, 0, 0, 0.42);
}
.theme-nada .mat-input-element::-moz-placeholder {
  color: rgba(0, 0, 0, 0.42);
}
.theme-nada .mat-input-element::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.42);
}
.theme-nada .mat-input-element:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.42);
}
.theme-nada .mat-form-field.mat-accent .mat-input-element {
  caret-color: #66bb6a;
}
.theme-nada .mat-form-field.mat-warn .mat-input-element,
.theme-nada .mat-form-field-invalid .mat-input-element {
  caret-color: #bdbdbd;
}
.theme-nada .mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix::after {
  color: #bdbdbd;
}
.theme-nada .mat-list-base .mat-list-item {
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada .mat-list-base .mat-list-option {
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada .mat-list-base .mat-subheader {
  color: rgba(0, 0, 0, 0.54);
}
.theme-nada .mat-list-item-disabled {
  background-color: #eeeeee;
}
.theme-nada .mat-list-option:hover, .theme-nada .mat-list-option:focus,
.theme-nada .mat-nav-list .mat-list-item:hover,
.theme-nada .mat-nav-list .mat-list-item:focus,
.theme-nada .mat-action-list .mat-list-item:hover,
.theme-nada .mat-action-list .mat-list-item:focus {
  background: rgba(0, 0, 0, 0.04);
}
.theme-nada .mat-list-single-selected-option, .theme-nada .mat-list-single-selected-option:hover, .theme-nada .mat-list-single-selected-option:focus {
  background: rgba(0, 0, 0, 0.12);
}
.theme-nada .mat-menu-panel {
  background: white;
}
.theme-nada .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);
}
.theme-nada .mat-menu-item {
  background: transparent;
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada .mat-menu-item[disabled], .theme-nada .mat-menu-item[disabled]::after {
  color: rgba(0, 0, 0, 0.38);
}
.theme-nada .mat-menu-item .mat-icon-no-color,
.theme-nada .mat-menu-item-submenu-trigger::after {
  color: rgba(0, 0, 0, 0.54);
}
.theme-nada .mat-menu-item:hover:not([disabled]),
.theme-nada .mat-menu-item.cdk-program-focused:not([disabled]),
.theme-nada .mat-menu-item.cdk-keyboard-focused:not([disabled]),
.theme-nada .mat-menu-item-highlighted:not([disabled]) {
  background: rgba(0, 0, 0, 0.04);
}
.theme-nada .mat-paginator {
  background: white;
}
.theme-nada .mat-paginator,
.theme-nada .mat-paginator-page-size .mat-select-trigger {
  color: rgba(0, 0, 0, 0.54);
}
.theme-nada .mat-paginator-decrement,
.theme-nada .mat-paginator-increment {
  border-top: 2px solid rgba(0, 0, 0, 0.54);
  border-right: 2px solid rgba(0, 0, 0, 0.54);
}
.theme-nada .mat-paginator-first,
.theme-nada .mat-paginator-last {
  border-top: 2px solid rgba(0, 0, 0, 0.54);
}
.theme-nada .mat-icon-button[disabled] .mat-paginator-decrement,
.theme-nada .mat-icon-button[disabled] .mat-paginator-increment,
.theme-nada .mat-icon-button[disabled] .mat-paginator-first,
.theme-nada .mat-icon-button[disabled] .mat-paginator-last {
  border-color: rgba(0, 0, 0, 0.38);
}
.theme-nada .mat-progress-bar-background {
  fill: #ffcdd2;
}
.theme-nada .mat-progress-bar-buffer {
  background-color: #ffcdd2;
}
.theme-nada .mat-progress-bar-fill::after {
  background-color: #b71c1c;
}
.theme-nada .mat-progress-bar.mat-accent .mat-progress-bar-background {
  fill: #c8e6c9;
}
.theme-nada .mat-progress-bar.mat-accent .mat-progress-bar-buffer {
  background-color: #c8e6c9;
}
.theme-nada .mat-progress-bar.mat-accent .mat-progress-bar-fill::after {
  background-color: #66bb6a;
}
.theme-nada .mat-progress-bar.mat-warn .mat-progress-bar-background {
  fill: whitesmoke;
}
.theme-nada .mat-progress-bar.mat-warn .mat-progress-bar-buffer {
  background-color: whitesmoke;
}
.theme-nada .mat-progress-bar.mat-warn .mat-progress-bar-fill::after {
  background-color: #bdbdbd;
}
.theme-nada .mat-progress-spinner circle, .theme-nada .mat-spinner circle {
  stroke: #b71c1c;
}
.theme-nada .mat-progress-spinner.mat-accent circle, .theme-nada .mat-spinner.mat-accent circle {
  stroke: #66bb6a;
}
.theme-nada .mat-progress-spinner.mat-warn circle, .theme-nada .mat-spinner.mat-warn circle {
  stroke: #bdbdbd;
}
.theme-nada .mat-radio-outer-circle {
  border-color: rgba(0, 0, 0, 0.54);
}
.theme-nada .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle {
  border-color: #b71c1c;
}
.theme-nada .mat-radio-button.mat-primary .mat-radio-inner-circle,
.theme-nada .mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .theme-nada .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple, .theme-nada .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple {
  background-color: #b71c1c;
}
.theme-nada .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle {
  border-color: #66bb6a;
}
.theme-nada .mat-radio-button.mat-accent .mat-radio-inner-circle,
.theme-nada .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .theme-nada .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple, .theme-nada .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple {
  background-color: #66bb6a;
}
.theme-nada .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle {
  border-color: #bdbdbd;
}
.theme-nada .mat-radio-button.mat-warn .mat-radio-inner-circle,
.theme-nada .mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .theme-nada .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple, .theme-nada .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple {
  background-color: #bdbdbd;
}
.theme-nada .mat-radio-button.mat-radio-disabled.mat-radio-checked .mat-radio-outer-circle,
.theme-nada .mat-radio-button.mat-radio-disabled .mat-radio-outer-circle {
  border-color: rgba(0, 0, 0, 0.38);
}
.theme-nada .mat-radio-button.mat-radio-disabled .mat-radio-ripple .mat-ripple-element,
.theme-nada .mat-radio-button.mat-radio-disabled .mat-radio-inner-circle {
  background-color: rgba(0, 0, 0, 0.38);
}
.theme-nada .mat-radio-button.mat-radio-disabled .mat-radio-label-content {
  color: rgba(0, 0, 0, 0.38);
}
.theme-nada .mat-radio-button .mat-ripple-element {
  background-color: black;
}
.theme-nada .mat-select-value {
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada .mat-select-placeholder {
  color: rgba(0, 0, 0, 0.42);
}
.theme-nada .mat-select-disabled .mat-select-value {
  color: rgba(0, 0, 0, 0.38);
}
.theme-nada .mat-select-arrow {
  color: rgba(0, 0, 0, 0.54);
}
.theme-nada .mat-select-panel {
  background: white;
}
.theme-nada .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);
}
.theme-nada .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple) {
  background: rgba(0, 0, 0, 0.12);
}
.theme-nada .mat-form-field.mat-focused.mat-primary .mat-select-arrow {
  color: #b71c1c;
}
.theme-nada .mat-form-field.mat-focused.mat-accent .mat-select-arrow {
  color: #66bb6a;
}
.theme-nada .mat-form-field.mat-focused.mat-warn .mat-select-arrow {
  color: #bdbdbd;
}
.theme-nada .mat-form-field .mat-select.mat-select-invalid .mat-select-arrow {
  color: #bdbdbd;
}
.theme-nada .mat-form-field .mat-select.mat-select-disabled .mat-select-arrow {
  color: rgba(0, 0, 0, 0.38);
}
.theme-nada .mat-drawer-container {
  background-color: #fafafa;
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada .mat-drawer {
  background-color: white;
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada .mat-drawer.mat-drawer-push {
  background-color: white;
}
.theme-nada .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);
}
.theme-nada .mat-drawer-side {
  border-right: solid 1px rgba(0, 0, 0, 0.12);
}
.theme-nada .mat-drawer-side.mat-drawer-end {
  border-left: solid 1px rgba(0, 0, 0, 0.12);
  border-right: none;
}
.theme-nada [dir=rtl] .mat-drawer-side {
  border-left: solid 1px rgba(0, 0, 0, 0.12);
  border-right: none;
}
.theme-nada [dir=rtl] .mat-drawer-side.mat-drawer-end {
  border-left: none;
  border-right: solid 1px rgba(0, 0, 0, 0.12);
}
.theme-nada .mat-drawer-backdrop.mat-drawer-shown {
  background-color: rgba(0, 0, 0, 0.6);
}
.theme-nada .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb {
  background-color: #66bb6a;
}
.theme-nada .mat-slide-toggle.mat-checked .mat-slide-toggle-bar {
  background-color: rgba(102, 187, 106, 0.54);
}
.theme-nada .mat-slide-toggle.mat-checked .mat-ripple-element {
  background-color: #66bb6a;
}
.theme-nada .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb {
  background-color: #b71c1c;
}
.theme-nada .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar {
  background-color: rgba(183, 28, 28, 0.54);
}
.theme-nada .mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element {
  background-color: #b71c1c;
}
.theme-nada .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb {
  background-color: #bdbdbd;
}
.theme-nada .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar {
  background-color: rgba(189, 189, 189, 0.54);
}
.theme-nada .mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element {
  background-color: #bdbdbd;
}
.theme-nada .mat-slide-toggle:not(.mat-checked) .mat-ripple-element {
  background-color: black;
}
.theme-nada .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;
}
.theme-nada .mat-slide-toggle-bar {
  background-color: rgba(0, 0, 0, 0.38);
}
.theme-nada .mat-slider-track-background {
  background-color: rgba(0, 0, 0, 0.26);
}
.theme-nada .mat-primary .mat-slider-track-fill,
.theme-nada .mat-primary .mat-slider-thumb,
.theme-nada .mat-primary .mat-slider-thumb-label {
  background-color: #b71c1c;
}
.theme-nada .mat-primary .mat-slider-thumb-label-text {
  color: white;
}
.theme-nada .mat-primary .mat-slider-focus-ring {
  background-color: rgba(183, 28, 28, 0.2);
}
.theme-nada .mat-accent .mat-slider-track-fill,
.theme-nada .mat-accent .mat-slider-thumb,
.theme-nada .mat-accent .mat-slider-thumb-label {
  background-color: #66bb6a;
}
.theme-nada .mat-accent .mat-slider-thumb-label-text {
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada .mat-accent .mat-slider-focus-ring {
  background-color: rgba(102, 187, 106, 0.2);
}
.theme-nada .mat-warn .mat-slider-track-fill,
.theme-nada .mat-warn .mat-slider-thumb,
.theme-nada .mat-warn .mat-slider-thumb-label {
  background-color: #bdbdbd;
}
.theme-nada .mat-warn .mat-slider-thumb-label-text {
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada .mat-warn .mat-slider-focus-ring {
  background-color: rgba(189, 189, 189, 0.2);
}
.theme-nada .mat-slider:hover .mat-slider-track-background,
.theme-nada .cdk-focused .mat-slider-track-background {
  background-color: rgba(0, 0, 0, 0.38);
}
.theme-nada .mat-slider-disabled .mat-slider-track-background,
.theme-nada .mat-slider-disabled .mat-slider-track-fill,
.theme-nada .mat-slider-disabled .mat-slider-thumb {
  background-color: rgba(0, 0, 0, 0.26);
}
.theme-nada .mat-slider-disabled:hover .mat-slider-track-background {
  background-color: rgba(0, 0, 0, 0.26);
}
.theme-nada .mat-slider-min-value .mat-slider-focus-ring {
  background-color: rgba(0, 0, 0, 0.12);
}
.theme-nada .mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,
.theme-nada .mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label {
  background-color: rgba(0, 0, 0, 0.87);
}
.theme-nada .mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,
.theme-nada .mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label {
  background-color: rgba(0, 0, 0, 0.26);
}
.theme-nada .mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb {
  border-color: rgba(0, 0, 0, 0.26);
  background-color: transparent;
}
.theme-nada .mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb, .theme-nada .mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb {
  border-color: rgba(0, 0, 0, 0.38);
}
.theme-nada .mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb, .theme-nada .mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb {
  border-color: rgba(0, 0, 0, 0.26);
}
.theme-nada .mat-slider-has-ticks .mat-slider-wrapper::after {
  border-color: rgba(0, 0, 0, 0.7);
}
.theme-nada .mat-slider-horizontal .mat-slider-ticks {
  background-image: repeating-linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);
  background-image: -moz-repeating-linear-gradient(0.0001deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);
}
.theme-nada .mat-slider-vertical .mat-slider-ticks {
  background-image: repeating-linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);
}
.theme-nada .mat-step-header.cdk-keyboard-focused, .theme-nada .mat-step-header.cdk-program-focused, .theme-nada .mat-step-header:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
@media (hover: none) {
  .theme-nada .mat-step-header:hover {
    background: none;
  }
}
.theme-nada .mat-step-header .mat-step-label,
.theme-nada .mat-step-header .mat-step-optional {
  color: rgba(0, 0, 0, 0.54);
}
.theme-nada .mat-step-header .mat-step-icon {
  background-color: rgba(0, 0, 0, 0.54);
  color: white;
}
.theme-nada .mat-step-header .mat-step-icon-selected,
.theme-nada .mat-step-header .mat-step-icon-state-done,
.theme-nada .mat-step-header .mat-step-icon-state-edit {
  background-color: #b71c1c;
  color: white;
}
.theme-nada .mat-step-header.mat-accent .mat-step-icon {
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada .mat-step-header.mat-accent .mat-step-icon-selected,
.theme-nada .mat-step-header.mat-accent .mat-step-icon-state-done,
.theme-nada .mat-step-header.mat-accent .mat-step-icon-state-edit {
  background-color: #66bb6a;
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada .mat-step-header.mat-warn .mat-step-icon {
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada .mat-step-header.mat-warn .mat-step-icon-selected,
.theme-nada .mat-step-header.mat-warn .mat-step-icon-state-done,
.theme-nada .mat-step-header.mat-warn .mat-step-icon-state-edit {
  background-color: #bdbdbd;
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada .mat-step-header .mat-step-icon-state-error {
  background-color: transparent;
  color: #bdbdbd;
}
.theme-nada .mat-step-header .mat-step-label.mat-step-label-active {
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada .mat-step-header .mat-step-label.mat-step-label-error {
  color: #bdbdbd;
}
.theme-nada .mat-stepper-horizontal, .theme-nada .mat-stepper-vertical {
  background-color: white;
}
.theme-nada .mat-stepper-vertical-line::before {
  border-left-color: rgba(0, 0, 0, 0.12);
}
.theme-nada .mat-horizontal-stepper-header::before,
.theme-nada .mat-horizontal-stepper-header::after,
.theme-nada .mat-stepper-horizontal-line {
  border-top-color: rgba(0, 0, 0, 0.12);
}
.theme-nada .mat-sort-header-arrow {
  color: #757575;
}
.theme-nada .mat-tab-nav-bar,
.theme-nada .mat-tab-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.theme-nada .mat-tab-group-inverted-header .mat-tab-nav-bar,
.theme-nada .mat-tab-group-inverted-header .mat-tab-header {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  border-bottom: none;
}
.theme-nada .mat-tab-label, .theme-nada .mat-tab-link {
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada .mat-tab-label.mat-tab-disabled, .theme-nada .mat-tab-link.mat-tab-disabled {
  color: rgba(0, 0, 0, 0.38);
}
.theme-nada .mat-tab-header-pagination-chevron {
  border-color: rgba(0, 0, 0, 0.87);
}
.theme-nada .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: rgba(0, 0, 0, 0.38);
}
.theme-nada .mat-tab-group[class*=mat-background-] .mat-tab-header,
.theme-nada .mat-tab-nav-bar[class*=mat-background-] {
  border-bottom: none;
  border-top: none;
}
.theme-nada .mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-nada .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-nada .mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-nada .mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .theme-nada .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-nada .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-nada .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-nada .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(255, 205, 210, 0.3);
}
.theme-nada .mat-tab-group.mat-primary .mat-ink-bar, .theme-nada .mat-tab-nav-bar.mat-primary .mat-ink-bar {
  background-color: #b71c1c;
}
.theme-nada .mat-tab-group.mat-primary.mat-background-primary .mat-ink-bar, .theme-nada .mat-tab-nav-bar.mat-primary.mat-background-primary .mat-ink-bar {
  background-color: white;
}
.theme-nada .mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-nada .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-nada .mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-nada .mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .theme-nada .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-nada .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-nada .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-nada .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(200, 230, 201, 0.3);
}
.theme-nada .mat-tab-group.mat-accent .mat-ink-bar, .theme-nada .mat-tab-nav-bar.mat-accent .mat-ink-bar {
  background-color: #66bb6a;
}
.theme-nada .mat-tab-group.mat-accent.mat-background-accent .mat-ink-bar, .theme-nada .mat-tab-nav-bar.mat-accent.mat-background-accent .mat-ink-bar {
  background-color: rgba(0, 0, 0, 0.87);
}
.theme-nada .mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-nada .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-nada .mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-nada .mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .theme-nada .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-nada .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-nada .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-nada .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(245, 245, 245, 0.3);
}
.theme-nada .mat-tab-group.mat-warn .mat-ink-bar, .theme-nada .mat-tab-nav-bar.mat-warn .mat-ink-bar {
  background-color: #bdbdbd;
}
.theme-nada .mat-tab-group.mat-warn.mat-background-warn .mat-ink-bar, .theme-nada .mat-tab-nav-bar.mat-warn.mat-background-warn .mat-ink-bar {
  background-color: rgba(0, 0, 0, 0.87);
}
.theme-nada .mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-nada .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-nada .mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-nada .mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .theme-nada .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-nada .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-nada .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-nada .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(255, 205, 210, 0.3);
}
.theme-nada .mat-tab-group.mat-background-primary .mat-tab-header, .theme-nada .mat-tab-group.mat-background-primary .mat-tab-links, .theme-nada .mat-tab-group.mat-background-primary .mat-tab-header-pagination, .theme-nada .mat-tab-nav-bar.mat-background-primary .mat-tab-header, .theme-nada .mat-tab-nav-bar.mat-background-primary .mat-tab-links, .theme-nada .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination {
  background-color: #b71c1c;
}
.theme-nada .mat-tab-group.mat-background-primary .mat-tab-label, .theme-nada .mat-tab-group.mat-background-primary .mat-tab-link, .theme-nada .mat-tab-nav-bar.mat-background-primary .mat-tab-label, .theme-nada .mat-tab-nav-bar.mat-background-primary .mat-tab-link {
  color: white;
}
.theme-nada .mat-tab-group.mat-background-primary .mat-tab-label.mat-tab-disabled, .theme-nada .mat-tab-group.mat-background-primary .mat-tab-link.mat-tab-disabled, .theme-nada .mat-tab-nav-bar.mat-background-primary .mat-tab-label.mat-tab-disabled, .theme-nada .mat-tab-nav-bar.mat-background-primary .mat-tab-link.mat-tab-disabled {
  color: rgba(255, 255, 255, 0.4);
}
.theme-nada .mat-tab-group.mat-background-primary .mat-tab-header-pagination-chevron, .theme-nada .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-chevron {
  border-color: white;
}
.theme-nada .mat-tab-group.mat-background-primary .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .theme-nada .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: rgba(255, 255, 255, 0.4);
}
.theme-nada .mat-tab-group.mat-background-primary .mat-ripple-element, .theme-nada .mat-tab-nav-bar.mat-background-primary .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.12);
}
.theme-nada .mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-nada .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-nada .mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-nada .mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .theme-nada .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-nada .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-nada .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-nada .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(200, 230, 201, 0.3);
}
.theme-nada .mat-tab-group.mat-background-accent .mat-tab-header, .theme-nada .mat-tab-group.mat-background-accent .mat-tab-links, .theme-nada .mat-tab-group.mat-background-accent .mat-tab-header-pagination, .theme-nada .mat-tab-nav-bar.mat-background-accent .mat-tab-header, .theme-nada .mat-tab-nav-bar.mat-background-accent .mat-tab-links, .theme-nada .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination {
  background-color: #66bb6a;
}
.theme-nada .mat-tab-group.mat-background-accent .mat-tab-label, .theme-nada .mat-tab-group.mat-background-accent .mat-tab-link, .theme-nada .mat-tab-nav-bar.mat-background-accent .mat-tab-label, .theme-nada .mat-tab-nav-bar.mat-background-accent .mat-tab-link {
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada .mat-tab-group.mat-background-accent .mat-tab-label.mat-tab-disabled, .theme-nada .mat-tab-group.mat-background-accent .mat-tab-link.mat-tab-disabled, .theme-nada .mat-tab-nav-bar.mat-background-accent .mat-tab-label.mat-tab-disabled, .theme-nada .mat-tab-nav-bar.mat-background-accent .mat-tab-link.mat-tab-disabled {
  color: rgba(0, 0, 0, 0.4);
}
.theme-nada .mat-tab-group.mat-background-accent .mat-tab-header-pagination-chevron, .theme-nada .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-chevron {
  border-color: rgba(0, 0, 0, 0.87);
}
.theme-nada .mat-tab-group.mat-background-accent .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .theme-nada .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: rgba(0, 0, 0, 0.4);
}
.theme-nada .mat-tab-group.mat-background-accent .mat-ripple-element, .theme-nada .mat-tab-nav-bar.mat-background-accent .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.12);
}
.theme-nada .mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-nada .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-nada .mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-nada .mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .theme-nada .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-nada .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-nada .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-nada .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(245, 245, 245, 0.3);
}
.theme-nada .mat-tab-group.mat-background-warn .mat-tab-header, .theme-nada .mat-tab-group.mat-background-warn .mat-tab-links, .theme-nada .mat-tab-group.mat-background-warn .mat-tab-header-pagination, .theme-nada .mat-tab-nav-bar.mat-background-warn .mat-tab-header, .theme-nada .mat-tab-nav-bar.mat-background-warn .mat-tab-links, .theme-nada .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination {
  background-color: #bdbdbd;
}
.theme-nada .mat-tab-group.mat-background-warn .mat-tab-label, .theme-nada .mat-tab-group.mat-background-warn .mat-tab-link, .theme-nada .mat-tab-nav-bar.mat-background-warn .mat-tab-label, .theme-nada .mat-tab-nav-bar.mat-background-warn .mat-tab-link {
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada .mat-tab-group.mat-background-warn .mat-tab-label.mat-tab-disabled, .theme-nada .mat-tab-group.mat-background-warn .mat-tab-link.mat-tab-disabled, .theme-nada .mat-tab-nav-bar.mat-background-warn .mat-tab-label.mat-tab-disabled, .theme-nada .mat-tab-nav-bar.mat-background-warn .mat-tab-link.mat-tab-disabled {
  color: rgba(0, 0, 0, 0.4);
}
.theme-nada .mat-tab-group.mat-background-warn .mat-tab-header-pagination-chevron, .theme-nada .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-chevron {
  border-color: rgba(0, 0, 0, 0.87);
}
.theme-nada .mat-tab-group.mat-background-warn .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .theme-nada .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: rgba(0, 0, 0, 0.4);
}
.theme-nada .mat-tab-group.mat-background-warn .mat-ripple-element, .theme-nada .mat-tab-nav-bar.mat-background-warn .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.12);
}
.theme-nada .mat-toolbar {
  background: whitesmoke;
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada .mat-toolbar.mat-primary {
  background: #b71c1c;
  color: white;
}
.theme-nada .mat-toolbar.mat-accent {
  background: #66bb6a;
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada .mat-toolbar.mat-warn {
  background: #bdbdbd;
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada .mat-toolbar .mat-form-field-underline,
.theme-nada .mat-toolbar .mat-form-field-ripple,
.theme-nada .mat-toolbar .mat-focused .mat-form-field-ripple {
  background-color: currentColor;
}
.theme-nada .mat-toolbar .mat-form-field-label,
.theme-nada .mat-toolbar .mat-focused .mat-form-field-label,
.theme-nada .mat-toolbar .mat-select-value,
.theme-nada .mat-toolbar .mat-select-arrow,
.theme-nada .mat-toolbar .mat-form-field.mat-focused .mat-select-arrow {
  color: inherit;
}
.theme-nada .mat-toolbar .mat-input-element {
  caret-color: currentColor;
}
.theme-nada .mat-tooltip {
  background: rgba(97, 97, 97, 0.9);
}
.theme-nada .mat-tree {
  background: white;
}
.theme-nada .mat-tree-node,
.theme-nada .mat-nested-tree-node {
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada .mat-snack-bar-container {
  color: rgba(255, 255, 255, 0.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);
}
.theme-nada .mat-simple-snackbar-action {
  color: #66bb6a;
}
.theme-dark .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.1);
}
.theme-dark .mat-option {
  color: white;
}
.theme-dark .mat-option:hover:not(.mat-option-disabled), .theme-dark .mat-option:focus:not(.mat-option-disabled) {
  background: rgba(255, 255, 255, 0.04);
}
.theme-dark .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled) {
  background: rgba(255, 255, 255, 0.04);
}
.theme-dark .mat-option.mat-active {
  background: rgba(255, 255, 255, 0.04);
  color: white;
}
.theme-dark .mat-option.mat-option-disabled {
  color: rgba(255, 255, 255, 0.5);
}
.theme-dark .mat-primary .mat-option.mat-selected:not(.mat-option-disabled) {
  color: #fbc02d;
}
.theme-dark .mat-accent .mat-option.mat-selected:not(.mat-option-disabled) {
  color: #66bb6a;
}
.theme-dark .mat-warn .mat-option.mat-selected:not(.mat-option-disabled) {
  color: #f44336;
}
.theme-dark .mat-optgroup-label {
  color: rgba(255, 255, 255, 0.7);
}
.theme-dark .mat-optgroup-disabled .mat-optgroup-label {
  color: rgba(255, 255, 255, 0.5);
}
.theme-dark .mat-pseudo-checkbox {
  color: rgba(255, 255, 255, 0.7);
}
.theme-dark .mat-pseudo-checkbox::after {
  color: #303030;
}
.theme-dark .mat-pseudo-checkbox-disabled {
  color: #686868;
}
.theme-dark .mat-primary .mat-pseudo-checkbox-checked,
.theme-dark .mat-primary .mat-pseudo-checkbox-indeterminate {
  background: #fbc02d;
}
.theme-dark .mat-pseudo-checkbox-checked,
.theme-dark .mat-pseudo-checkbox-indeterminate,
.theme-dark .mat-accent .mat-pseudo-checkbox-checked,
.theme-dark .mat-accent .mat-pseudo-checkbox-indeterminate {
  background: #66bb6a;
}
.theme-dark .mat-warn .mat-pseudo-checkbox-checked,
.theme-dark .mat-warn .mat-pseudo-checkbox-indeterminate {
  background: #f44336;
}
.theme-dark .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,
.theme-dark .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled {
  background: #686868;
}
.theme-dark .mat-app-background, .theme-dark.mat-app-background {
  background-color: #303030;
  color: white;
}
.theme-dark .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);
}
.theme-dark .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);
}
.theme-dark .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);
}
.theme-dark .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);
}
.theme-dark .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);
}
.theme-dark .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);
}
.theme-dark .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);
}
.theme-dark .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);
}
.theme-dark .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);
}
.theme-dark .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);
}
.theme-dark .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);
}
.theme-dark .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);
}
.theme-dark .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);
}
.theme-dark .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);
}
.theme-dark .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);
}
.theme-dark .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);
}
.theme-dark .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);
}
.theme-dark .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);
}
.theme-dark .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);
}
.theme-dark .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);
}
.theme-dark .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);
}
.theme-dark .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);
}
.theme-dark .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);
}
.theme-dark .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);
}
.theme-dark .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;
}
.theme-dark .mat-autocomplete-panel {
  background: #424242;
  color: white;
}
.theme-dark .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);
}
.theme-dark .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover) {
  background: #424242;
}
.theme-dark .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled) {
  color: white;
}
.theme-dark .mat-badge-content {
  color: rgba(0, 0, 0, 0.87);
  background: #fbc02d;
}
.cdk-high-contrast-active .theme-dark .mat-badge-content {
  outline: solid 1px;
  border-radius: 0;
}
.theme-dark .mat-badge-accent .mat-badge-content {
  background: #66bb6a;
  color: rgba(0, 0, 0, 0.87);
}
.theme-dark .mat-badge-warn .mat-badge-content {
  color: white;
  background: #f44336;
}
.theme-dark .mat-badge {
  position: relative;
}
.theme-dark .mat-badge-hidden .mat-badge-content {
  display: none;
}
.theme-dark .mat-badge-disabled .mat-badge-content {
  background: #6e6e6e;
  color: rgba(255, 255, 255, 0.5);
}
.theme-dark .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;
}
.theme-dark .ng-animate-disabled .mat-badge-content,
.theme-dark .mat-badge-content._mat-animation-noopable {
  transition: none;
}
.theme-dark .mat-badge-content.mat-badge-active {
  transform: none;
}
.theme-dark .mat-badge-small .mat-badge-content {
  width: 16px;
  height: 16px;
  line-height: 16px;
}
.theme-dark .mat-badge-small.mat-badge-above .mat-badge-content {
  top: -8px;
}
.theme-dark .mat-badge-small.mat-badge-below .mat-badge-content {
  bottom: -8px;
}
.theme-dark .mat-badge-small.mat-badge-before .mat-badge-content {
  left: -16px;
}
[dir=rtl] .theme-dark .mat-badge-small.mat-badge-before .mat-badge-content {
  left: auto;
  right: -16px;
}
.theme-dark .mat-badge-small.mat-badge-after .mat-badge-content {
  right: -16px;
}
[dir=rtl] .theme-dark .mat-badge-small.mat-badge-after .mat-badge-content {
  right: auto;
  left: -16px;
}
.theme-dark .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: -8px;
}
[dir=rtl] .theme-dark .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: auto;
  right: -8px;
}
.theme-dark .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: -8px;
}
[dir=rtl] .theme-dark .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: auto;
  left: -8px;
}
.theme-dark .mat-badge-medium .mat-badge-content {
  width: 22px;
  height: 22px;
  line-height: 22px;
}
.theme-dark .mat-badge-medium.mat-badge-above .mat-badge-content {
  top: -11px;
}
.theme-dark .mat-badge-medium.mat-badge-below .mat-badge-content {
  bottom: -11px;
}
.theme-dark .mat-badge-medium.mat-badge-before .mat-badge-content {
  left: -22px;
}
[dir=rtl] .theme-dark .mat-badge-medium.mat-badge-before .mat-badge-content {
  left: auto;
  right: -22px;
}
.theme-dark .mat-badge-medium.mat-badge-after .mat-badge-content {
  right: -22px;
}
[dir=rtl] .theme-dark .mat-badge-medium.mat-badge-after .mat-badge-content {
  right: auto;
  left: -22px;
}
.theme-dark .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: -11px;
}
[dir=rtl] .theme-dark .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: auto;
  right: -11px;
}
.theme-dark .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: -11px;
}
[dir=rtl] .theme-dark .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: auto;
  left: -11px;
}
.theme-dark .mat-badge-large .mat-badge-content {
  width: 28px;
  height: 28px;
  line-height: 28px;
}
.theme-dark .mat-badge-large.mat-badge-above .mat-badge-content {
  top: -14px;
}
.theme-dark .mat-badge-large.mat-badge-below .mat-badge-content {
  bottom: -14px;
}
.theme-dark .mat-badge-large.mat-badge-before .mat-badge-content {
  left: -28px;
}
[dir=rtl] .theme-dark .mat-badge-large.mat-badge-before .mat-badge-content {
  left: auto;
  right: -28px;
}
.theme-dark .mat-badge-large.mat-badge-after .mat-badge-content {
  right: -28px;
}
[dir=rtl] .theme-dark .mat-badge-large.mat-badge-after .mat-badge-content {
  right: auto;
  left: -28px;
}
.theme-dark .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: -14px;
}
[dir=rtl] .theme-dark .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: auto;
  right: -14px;
}
.theme-dark .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: -14px;
}
[dir=rtl] .theme-dark .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: auto;
  left: -14px;
}
.theme-dark .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: #424242;
  color: white;
}
.theme-dark .mat-button, .theme-dark .mat-icon-button, .theme-dark .mat-stroked-button {
  color: inherit;
  background: transparent;
}
.theme-dark .mat-button.mat-primary, .theme-dark .mat-icon-button.mat-primary, .theme-dark .mat-stroked-button.mat-primary {
  color: #fbc02d;
}
.theme-dark .mat-button.mat-accent, .theme-dark .mat-icon-button.mat-accent, .theme-dark .mat-stroked-button.mat-accent {
  color: #66bb6a;
}
.theme-dark .mat-button.mat-warn, .theme-dark .mat-icon-button.mat-warn, .theme-dark .mat-stroked-button.mat-warn {
  color: #f44336;
}
.theme-dark .mat-button.mat-primary.mat-button-disabled, .theme-dark .mat-button.mat-accent.mat-button-disabled, .theme-dark .mat-button.mat-warn.mat-button-disabled, .theme-dark .mat-button.mat-button-disabled.mat-button-disabled, .theme-dark .mat-icon-button.mat-primary.mat-button-disabled, .theme-dark .mat-icon-button.mat-accent.mat-button-disabled, .theme-dark .mat-icon-button.mat-warn.mat-button-disabled, .theme-dark .mat-icon-button.mat-button-disabled.mat-button-disabled, .theme-dark .mat-stroked-button.mat-primary.mat-button-disabled, .theme-dark .mat-stroked-button.mat-accent.mat-button-disabled, .theme-dark .mat-stroked-button.mat-warn.mat-button-disabled, .theme-dark .mat-stroked-button.mat-button-disabled.mat-button-disabled {
  color: rgba(255, 255, 255, 0.3);
}
.theme-dark .mat-button.mat-primary .mat-button-focus-overlay, .theme-dark .mat-icon-button.mat-primary .mat-button-focus-overlay, .theme-dark .mat-stroked-button.mat-primary .mat-button-focus-overlay {
  background-color: #fbc02d;
}
.theme-dark .mat-button.mat-accent .mat-button-focus-overlay, .theme-dark .mat-icon-button.mat-accent .mat-button-focus-overlay, .theme-dark .mat-stroked-button.mat-accent .mat-button-focus-overlay {
  background-color: #66bb6a;
}
.theme-dark .mat-button.mat-warn .mat-button-focus-overlay, .theme-dark .mat-icon-button.mat-warn .mat-button-focus-overlay, .theme-dark .mat-stroked-button.mat-warn .mat-button-focus-overlay {
  background-color: #f44336;
}
.theme-dark .mat-button.mat-button-disabled .mat-button-focus-overlay, .theme-dark .mat-icon-button.mat-button-disabled .mat-button-focus-overlay, .theme-dark .mat-stroked-button.mat-button-disabled .mat-button-focus-overlay {
  background-color: transparent;
}
.theme-dark .mat-button .mat-ripple-element, .theme-dark .mat-icon-button .mat-ripple-element, .theme-dark .mat-stroked-button .mat-ripple-element {
  opacity: 0.1;
  background-color: currentColor;
}
.theme-dark .mat-button-focus-overlay {
  background: white;
}
.theme-dark .mat-stroked-button:not(.mat-button-disabled) {
  border-color: rgba(255, 255, 255, 0.12);
}
.theme-dark .mat-flat-button, .theme-dark .mat-raised-button, .theme-dark .mat-fab, .theme-dark .mat-mini-fab {
  color: white;
  background-color: #424242;
}
.theme-dark .mat-flat-button.mat-primary, .theme-dark .mat-raised-button.mat-primary, .theme-dark .mat-fab.mat-primary, .theme-dark .mat-mini-fab.mat-primary {
  color: rgba(0, 0, 0, 0.87);
}
.theme-dark .mat-flat-button.mat-accent, .theme-dark .mat-raised-button.mat-accent, .theme-dark .mat-fab.mat-accent, .theme-dark .mat-mini-fab.mat-accent {
  color: rgba(0, 0, 0, 0.87);
}
.theme-dark .mat-flat-button.mat-warn, .theme-dark .mat-raised-button.mat-warn, .theme-dark .mat-fab.mat-warn, .theme-dark .mat-mini-fab.mat-warn {
  color: white;
}
.theme-dark .mat-flat-button.mat-primary.mat-button-disabled, .theme-dark .mat-flat-button.mat-accent.mat-button-disabled, .theme-dark .mat-flat-button.mat-warn.mat-button-disabled, .theme-dark .mat-flat-button.mat-button-disabled.mat-button-disabled, .theme-dark .mat-raised-button.mat-primary.mat-button-disabled, .theme-dark .mat-raised-button.mat-accent.mat-button-disabled, .theme-dark .mat-raised-button.mat-warn.mat-button-disabled, .theme-dark .mat-raised-button.mat-button-disabled.mat-button-disabled, .theme-dark .mat-fab.mat-primary.mat-button-disabled, .theme-dark .mat-fab.mat-accent.mat-button-disabled, .theme-dark .mat-fab.mat-warn.mat-button-disabled, .theme-dark .mat-fab.mat-button-disabled.mat-button-disabled, .theme-dark .mat-mini-fab.mat-primary.mat-button-disabled, .theme-dark .mat-mini-fab.mat-accent.mat-button-disabled, .theme-dark .mat-mini-fab.mat-warn.mat-button-disabled, .theme-dark .mat-mini-fab.mat-button-disabled.mat-button-disabled {
  color: rgba(255, 255, 255, 0.3);
}
.theme-dark .mat-flat-button.mat-primary, .theme-dark .mat-raised-button.mat-primary, .theme-dark .mat-fab.mat-primary, .theme-dark .mat-mini-fab.mat-primary {
  background-color: #fbc02d;
}
.theme-dark .mat-flat-button.mat-accent, .theme-dark .mat-raised-button.mat-accent, .theme-dark .mat-fab.mat-accent, .theme-dark .mat-mini-fab.mat-accent {
  background-color: #66bb6a;
}
.theme-dark .mat-flat-button.mat-warn, .theme-dark .mat-raised-button.mat-warn, .theme-dark .mat-fab.mat-warn, .theme-dark .mat-mini-fab.mat-warn {
  background-color: #f44336;
}
.theme-dark .mat-flat-button.mat-primary.mat-button-disabled, .theme-dark .mat-flat-button.mat-accent.mat-button-disabled, .theme-dark .mat-flat-button.mat-warn.mat-button-disabled, .theme-dark .mat-flat-button.mat-button-disabled.mat-button-disabled, .theme-dark .mat-raised-button.mat-primary.mat-button-disabled, .theme-dark .mat-raised-button.mat-accent.mat-button-disabled, .theme-dark .mat-raised-button.mat-warn.mat-button-disabled, .theme-dark .mat-raised-button.mat-button-disabled.mat-button-disabled, .theme-dark .mat-fab.mat-primary.mat-button-disabled, .theme-dark .mat-fab.mat-accent.mat-button-disabled, .theme-dark .mat-fab.mat-warn.mat-button-disabled, .theme-dark .mat-fab.mat-button-disabled.mat-button-disabled, .theme-dark .mat-mini-fab.mat-primary.mat-button-disabled, .theme-dark .mat-mini-fab.mat-accent.mat-button-disabled, .theme-dark .mat-mini-fab.mat-warn.mat-button-disabled, .theme-dark .mat-mini-fab.mat-button-disabled.mat-button-disabled {
  background-color: rgba(255, 255, 255, 0.12);
}
.theme-dark .mat-flat-button.mat-primary .mat-ripple-element, .theme-dark .mat-raised-button.mat-primary .mat-ripple-element, .theme-dark .mat-fab.mat-primary .mat-ripple-element, .theme-dark .mat-mini-fab.mat-primary .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.1);
}
.theme-dark .mat-flat-button.mat-accent .mat-ripple-element, .theme-dark .mat-raised-button.mat-accent .mat-ripple-element, .theme-dark .mat-fab.mat-accent .mat-ripple-element, .theme-dark .mat-mini-fab.mat-accent .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.1);
}
.theme-dark .mat-flat-button.mat-warn .mat-ripple-element, .theme-dark .mat-raised-button.mat-warn .mat-ripple-element, .theme-dark .mat-fab.mat-warn .mat-ripple-element, .theme-dark .mat-mini-fab.mat-warn .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.1);
}
.theme-dark .mat-stroked-button:not([class*=mat-elevation-z]), .theme-dark .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);
}
.theme-dark .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);
}
.theme-dark .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);
}
.theme-dark .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);
}
.theme-dark .mat-fab:not([class*=mat-elevation-z]), .theme-dark .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);
}
.theme-dark .mat-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]), .theme-dark .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);
}
.theme-dark .mat-fab.mat-button-disabled:not([class*=mat-elevation-z]), .theme-dark .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);
}
.theme-dark .mat-button-toggle-standalone,
.theme-dark .mat-button-toggle-group {
  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);
}
.theme-dark .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,
.theme-dark .mat-button-toggle-group-appearance-standard {
  box-shadow: none;
}
.theme-dark .mat-button-toggle {
  color: rgba(255, 255, 255, 0.5);
}
.theme-dark .mat-button-toggle .mat-button-toggle-focus-overlay {
  background-color: rgba(255, 255, 255, 0.12);
}
.theme-dark .mat-button-toggle-appearance-standard {
  color: white;
  background: #424242;
}
.theme-dark .mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay {
  background-color: white;
}
.theme-dark .mat-button-toggle-group-appearance-standard .mat-button-toggle + .mat-button-toggle {
  border-left: solid 1px rgba(255, 255, 255, 0.12);
}
.theme-dark [dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle + .mat-button-toggle {
  border-left: none;
  border-right: solid 1px rgba(255, 255, 255, 0.12);
}
.theme-dark .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 rgba(255, 255, 255, 0.12);
}
.theme-dark .mat-button-toggle-checked {
  background-color: #212121;
  color: rgba(255, 255, 255, 0.7);
}
.theme-dark .mat-button-toggle-checked.mat-button-toggle-appearance-standard {
  color: white;
}
.theme-dark .mat-button-toggle-disabled {
  color: rgba(255, 255, 255, 0.3);
  background-color: black;
}
.theme-dark .mat-button-toggle-disabled.mat-button-toggle-appearance-standard {
  background: #424242;
}
.theme-dark .mat-button-toggle-disabled.mat-button-toggle-checked {
  background-color: #424242;
}
.theme-dark .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,
.theme-dark .mat-button-toggle-group-appearance-standard {
  border: solid 1px rgba(255, 255, 255, 0.12);
}
.theme-dark .mat-card {
  background: #424242;
  color: white;
}
.theme-dark .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);
}
.theme-dark .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);
}
.theme-dark .mat-card-subtitle {
  color: rgba(255, 255, 255, 0.7);
}
.theme-dark .mat-checkbox-frame {
  border-color: rgba(255, 255, 255, 0.7);
}
.theme-dark .mat-checkbox-checkmark {
  fill: #303030;
}
.theme-dark .mat-checkbox-checkmark-path {
  stroke: #303030 !important;
}
.theme-dark .mat-checkbox-mixedmark {
  background-color: #303030;
}
.theme-dark .mat-checkbox-indeterminate.mat-primary .mat-checkbox-background, .theme-dark .mat-checkbox-checked.mat-primary .mat-checkbox-background {
  background-color: #fbc02d;
}
.theme-dark .mat-checkbox-indeterminate.mat-accent .mat-checkbox-background, .theme-dark .mat-checkbox-checked.mat-accent .mat-checkbox-background {
  background-color: #66bb6a;
}
.theme-dark .mat-checkbox-indeterminate.mat-warn .mat-checkbox-background, .theme-dark .mat-checkbox-checked.mat-warn .mat-checkbox-background {
  background-color: #f44336;
}
.theme-dark .mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background, .theme-dark .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background {
  background-color: #686868;
}
.theme-dark .mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame {
  border-color: #686868;
}
.theme-dark .mat-checkbox-disabled .mat-checkbox-label {
  color: rgba(255, 255, 255, 0.7);
}
.theme-dark .mat-checkbox .mat-ripple-element {
  background-color: white;
}
.theme-dark .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,
.theme-dark .mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element {
  background: #fbc02d;
}
.theme-dark .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,
.theme-dark .mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element {
  background: #66bb6a;
}
.theme-dark .mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,
.theme-dark .mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element {
  background: #f44336;
}
.theme-dark .mat-chip.mat-standard-chip {
  background-color: #616161;
  color: white;
}
.theme-dark .mat-chip.mat-standard-chip .mat-chip-remove {
  color: white;
  opacity: 0.4;
}
.theme-dark .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);
}
.theme-dark .mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover {
  opacity: 0.54;
}
.theme-dark .mat-chip.mat-standard-chip.mat-chip-disabled {
  opacity: 0.4;
}
.theme-dark .mat-chip.mat-standard-chip::after {
  background: white;
}
.theme-dark .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary {
  background-color: #fbc02d;
  color: rgba(0, 0, 0, 0.87);
}
.theme-dark .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove {
  color: rgba(0, 0, 0, 0.87);
  opacity: 0.4;
}
.theme-dark .mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.1);
}
.theme-dark .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn {
  background-color: #f44336;
  color: white;
}
.theme-dark .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove {
  color: white;
  opacity: 0.4;
}
.theme-dark .mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.1);
}
.theme-dark .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent {
  background-color: #66bb6a;
  color: rgba(0, 0, 0, 0.87);
}
.theme-dark .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove {
  color: rgba(0, 0, 0, 0.87);
  opacity: 0.4;
}
.theme-dark .mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.1);
}
.theme-dark .mat-table {
  background: #424242;
}
.theme-dark .mat-table thead, .theme-dark .mat-table tbody, .theme-dark .mat-table tfoot,
.theme-dark mat-header-row, .theme-dark mat-row, .theme-dark mat-footer-row,
.theme-dark [mat-header-row], .theme-dark [mat-row], .theme-dark [mat-footer-row],
.theme-dark .mat-table-sticky {
  background: inherit;
}
.theme-dark mat-row, .theme-dark mat-header-row, .theme-dark mat-footer-row,
.theme-dark th.mat-header-cell, .theme-dark td.mat-cell, .theme-dark td.mat-footer-cell {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}
.theme-dark .mat-header-cell {
  color: rgba(255, 255, 255, 0.7);
}
.theme-dark .mat-cell, .theme-dark .mat-footer-cell {
  color: white;
}
.theme-dark .mat-calendar-arrow {
  border-top-color: white;
}
.theme-dark .mat-datepicker-toggle,
.theme-dark .mat-datepicker-content .mat-calendar-next-button,
.theme-dark .mat-datepicker-content .mat-calendar-previous-button {
  color: white;
}
.theme-dark .mat-calendar-table-header {
  color: rgba(255, 255, 255, 0.5);
}
.theme-dark .mat-calendar-table-header-divider::after {
  background: rgba(255, 255, 255, 0.12);
}
.theme-dark .mat-calendar-body-label {
  color: rgba(255, 255, 255, 0.7);
}
.theme-dark .mat-calendar-body-cell-content,
.theme-dark .mat-date-range-input-separator {
  color: white;
  border-color: transparent;
}
.theme-dark .mat-calendar-body-disabled > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  color: rgba(255, 255, 255, 0.5);
}
.theme-dark .mat-form-field-disabled .mat-date-range-input-separator {
  color: rgba(255, 255, 255, 0.5);
}
.theme-dark .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),
.theme-dark .cdk-keyboard-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),
.theme-dark .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(255, 255, 255, 0.04);
}
.theme-dark .mat-calendar-body-in-preview {
  color: rgba(255, 255, 255, 0.24);
}
.theme-dark .mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  border-color: rgba(255, 255, 255, 0.5);
}
.theme-dark .mat-calendar-body-disabled > .mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  border-color: rgba(255, 255, 255, 0.3);
}
.theme-dark .mat-calendar-body-in-range::before {
  background: rgba(251, 192, 45, 0.2);
}
.theme-dark .mat-calendar-body-comparison-identical,
.theme-dark .mat-calendar-body-in-comparison-range::before {
  background: rgba(249, 171, 0, 0.2);
}
.theme-dark .mat-calendar-body-comparison-bridge-start::before,
.theme-dark [dir=rtl] .mat-calendar-body-comparison-bridge-end::before {
  background: linear-gradient(to right, rgba(251, 192, 45, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.theme-dark .mat-calendar-body-comparison-bridge-end::before,
.theme-dark [dir=rtl] .mat-calendar-body-comparison-bridge-start::before {
  background: linear-gradient(to left, rgba(251, 192, 45, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.theme-dark .mat-calendar-body-in-range > .mat-calendar-body-comparison-identical,
.theme-dark .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after {
  background: #a8dab5;
}
.theme-dark .mat-calendar-body-comparison-identical.mat-calendar-body-selected,
.theme-dark .mat-calendar-body-in-comparison-range > .mat-calendar-body-selected {
  background: #46a35e;
}
.theme-dark .mat-calendar-body-selected {
  background-color: #fbc02d;
  color: rgba(0, 0, 0, 0.87);
}
.theme-dark .mat-calendar-body-disabled > .mat-calendar-body-selected {
  background-color: rgba(251, 192, 45, 0.4);
}
.theme-dark .mat-calendar-body-today.mat-calendar-body-selected {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.87);
}
.theme-dark .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: #424242;
  color: white;
}
.theme-dark .mat-datepicker-content.mat-accent .mat-calendar-body-in-range::before {
  background: rgba(102, 187, 106, 0.2);
}
.theme-dark .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,
.theme-dark .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range::before {
  background: rgba(249, 171, 0, 0.2);
}
.theme-dark .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start::before,
.theme-dark .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end::before {
  background: linear-gradient(to right, rgba(102, 187, 106, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.theme-dark .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end::before,
.theme-dark .mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start::before {
  background: linear-gradient(to left, rgba(102, 187, 106, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.theme-dark .mat-datepicker-content.mat-accent .mat-calendar-body-in-range > .mat-calendar-body-comparison-identical,
.theme-dark .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after {
  background: #a8dab5;
}
.theme-dark .mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,
.theme-dark .mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range > .mat-calendar-body-selected {
  background: #46a35e;
}
.theme-dark .mat-datepicker-content.mat-accent .mat-calendar-body-selected {
  background-color: #66bb6a;
  color: rgba(0, 0, 0, 0.87);
}
.theme-dark .mat-datepicker-content.mat-accent .mat-calendar-body-disabled > .mat-calendar-body-selected {
  background-color: rgba(102, 187, 106, 0.4);
}
.theme-dark .mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.87);
}
.theme-dark .mat-datepicker-content.mat-warn .mat-calendar-body-in-range::before {
  background: rgba(244, 67, 54, 0.2);
}
.theme-dark .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,
.theme-dark .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range::before {
  background: rgba(249, 171, 0, 0.2);
}
.theme-dark .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start::before,
.theme-dark .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end::before {
  background: linear-gradient(to right, rgba(244, 67, 54, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.theme-dark .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end::before,
.theme-dark .mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start::before {
  background: linear-gradient(to left, rgba(244, 67, 54, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.theme-dark .mat-datepicker-content.mat-warn .mat-calendar-body-in-range > .mat-calendar-body-comparison-identical,
.theme-dark .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after {
  background: #a8dab5;
}
.theme-dark .mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,
.theme-dark .mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range > .mat-calendar-body-selected {
  background: #46a35e;
}
.theme-dark .mat-datepicker-content.mat-warn .mat-calendar-body-selected {
  background-color: #f44336;
  color: white;
}
.theme-dark .mat-datepicker-content.mat-warn .mat-calendar-body-disabled > .mat-calendar-body-selected {
  background-color: rgba(244, 67, 54, 0.4);
}
.theme-dark .mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected {
  box-shadow: inset 0 0 0 1px white;
}
.theme-dark .mat-datepicker-content-touch {
  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);
}
.theme-dark .mat-datepicker-toggle-active {
  color: #fbc02d;
}
.theme-dark .mat-datepicker-toggle-active.mat-accent {
  color: #66bb6a;
}
.theme-dark .mat-datepicker-toggle-active.mat-warn {
  color: #f44336;
}
.theme-dark .mat-date-range-input-inner[disabled] {
  color: rgba(255, 255, 255, 0.5);
}
.theme-dark .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: #424242;
  color: white;
}
.theme-dark .mat-divider {
  border-top-color: rgba(255, 255, 255, 0.12);
}
.theme-dark .mat-divider-vertical {
  border-right-color: rgba(255, 255, 255, 0.12);
}
.theme-dark .mat-expansion-panel {
  background: #424242;
  color: white;
}
.theme-dark .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);
}
.theme-dark .mat-action-row {
  border-top-color: rgba(255, 255, 255, 0.12);
}
.theme-dark .mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]), .theme-dark .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]), .theme-dark .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]) {
  background: rgba(255, 255, 255, 0.04);
}
@media (hover: none) {
  .theme-dark .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover {
    background: #424242;
  }
}
.theme-dark .mat-expansion-panel-header-title {
  color: white;
}
.theme-dark .mat-expansion-panel-header-description,
.theme-dark .mat-expansion-indicator::after {
  color: rgba(255, 255, 255, 0.7);
}
.theme-dark .mat-expansion-panel-header[aria-disabled=true] {
  color: rgba(255, 255, 255, 0.3);
}
.theme-dark .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,
.theme-dark .mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description {
  color: inherit;
}
.theme-dark .mat-form-field-label {
  color: rgba(255, 255, 255, 0.7);
}
.theme-dark .mat-hint {
  color: rgba(255, 255, 255, 0.7);
}
.theme-dark .mat-form-field.mat-focused .mat-form-field-label {
  color: #fbc02d;
}
.theme-dark .mat-form-field.mat-focused .mat-form-field-label.mat-accent {
  color: #66bb6a;
}
.theme-dark .mat-form-field.mat-focused .mat-form-field-label.mat-warn {
  color: #f44336;
}
.theme-dark .mat-focused .mat-form-field-required-marker {
  color: #66bb6a;
}
.theme-dark .mat-form-field-ripple {
  background-color: white;
}
.theme-dark .mat-form-field.mat-focused .mat-form-field-ripple {
  background-color: #fbc02d;
}
.theme-dark .mat-form-field.mat-focused .mat-form-field-ripple.mat-accent {
  background-color: #66bb6a;
}
.theme-dark .mat-form-field.mat-focused .mat-form-field-ripple.mat-warn {
  background-color: #f44336;
}
.theme-dark .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix::after {
  color: #fbc02d;
}
.theme-dark .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix::after {
  color: #66bb6a;
}
.theme-dark .mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix::after {
  color: #f44336;
}
.theme-dark .mat-form-field.mat-form-field-invalid .mat-form-field-label {
  color: #f44336;
}
.theme-dark .mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,
.theme-dark .mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker {
  color: #f44336;
}
.theme-dark .mat-form-field.mat-form-field-invalid .mat-form-field-ripple,
.theme-dark .mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent {
  background-color: #f44336;
}
.theme-dark .mat-error {
  color: #f44336;
}
.theme-dark .mat-form-field-appearance-legacy .mat-form-field-label {
  color: rgba(255, 255, 255, 0.7);
}
.theme-dark .mat-form-field-appearance-legacy .mat-hint {
  color: rgba(255, 255, 255, 0.7);
}
.theme-dark .mat-form-field-appearance-legacy .mat-form-field-underline {
  background-color: rgba(255, 255, 255, 0.7);
}
.theme-dark .mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline {
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.7) 33%, transparent 0%);
  background-size: 4px 100%;
  background-repeat: repeat-x;
}
.theme-dark .mat-form-field-appearance-standard .mat-form-field-underline {
  background-color: rgba(255, 255, 255, 0.7);
}
.theme-dark .mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline {
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.7) 33%, transparent 0%);
  background-size: 4px 100%;
  background-repeat: repeat-x;
}
.theme-dark .mat-form-field-appearance-fill .mat-form-field-flex {
  background-color: rgba(255, 255, 255, 0.1);
}
.theme-dark .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex {
  background-color: rgba(255, 255, 255, 0.05);
}
.theme-dark .mat-form-field-appearance-fill .mat-form-field-underline::before {
  background-color: rgba(255, 255, 255, 0.5);
}
.theme-dark .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-label {
  color: rgba(255, 255, 255, 0.5);
}
.theme-dark .mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline::before {
  background-color: transparent;
}
.theme-dark .mat-form-field-appearance-outline .mat-form-field-outline {
  color: rgba(255, 255, 255, 0.3);
}
.theme-dark .mat-form-field-appearance-outline .mat-form-field-outline-thick {
  color: white;
}
.theme-dark .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick {
  color: #fbc02d;
}
.theme-dark .mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick {
  color: #66bb6a;
}
.theme-dark .mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick {
  color: #f44336;
}
.theme-dark .mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick {
  color: #f44336;
}
.theme-dark .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-label {
  color: rgba(255, 255, 255, 0.5);
}
.theme-dark .mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline {
  color: rgba(255, 255, 255, 0.15);
}
.theme-dark .mat-icon.mat-primary {
  color: #fbc02d;
}
.theme-dark .mat-icon.mat-accent {
  color: #66bb6a;
}
.theme-dark .mat-icon.mat-warn {
  color: #f44336;
}
.theme-dark .mat-form-field-type-mat-native-select .mat-form-field-infix::after {
  color: rgba(255, 255, 255, 0.7);
}
.theme-dark .mat-input-element:disabled,
.theme-dark .mat-form-field-type-mat-native-select.mat-form-field-disabled .mat-form-field-infix::after {
  color: rgba(255, 255, 255, 0.5);
}
.theme-dark .mat-input-element {
  caret-color: #fbc02d;
}
.theme-dark .mat-input-element::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.theme-dark .mat-input-element:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.theme-dark .mat-input-element::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.theme-dark .mat-input-element::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.theme-dark .mat-input-element::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.theme-dark .mat-input-element:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.theme-dark .mat-input-element option {
  color: rgba(0, 0, 0, 0.87);
}
.theme-dark .mat-input-element option:disabled {
  color: rgba(0, 0, 0, 0.38);
}
.theme-dark .mat-form-field.mat-accent .mat-input-element {
  caret-color: #66bb6a;
}
.theme-dark .mat-form-field.mat-warn .mat-input-element,
.theme-dark .mat-form-field-invalid .mat-input-element {
  caret-color: #f44336;
}
.theme-dark .mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix::after {
  color: #f44336;
}
.theme-dark .mat-list-base .mat-list-item {
  color: white;
}
.theme-dark .mat-list-base .mat-list-option {
  color: white;
}
.theme-dark .mat-list-base .mat-subheader {
  color: rgba(255, 255, 255, 0.7);
}
.theme-dark .mat-list-item-disabled {
  background-color: black;
}
.theme-dark .mat-list-option:hover, .theme-dark .mat-list-option:focus,
.theme-dark .mat-nav-list .mat-list-item:hover,
.theme-dark .mat-nav-list .mat-list-item:focus,
.theme-dark .mat-action-list .mat-list-item:hover,
.theme-dark .mat-action-list .mat-list-item:focus {
  background: rgba(255, 255, 255, 0.04);
}
.theme-dark .mat-list-single-selected-option, .theme-dark .mat-list-single-selected-option:hover, .theme-dark .mat-list-single-selected-option:focus {
  background: rgba(255, 255, 255, 0.12);
}
.theme-dark .mat-menu-panel {
  background: #424242;
}
.theme-dark .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);
}
.theme-dark .mat-menu-item {
  background: transparent;
  color: white;
}
.theme-dark .mat-menu-item[disabled], .theme-dark .mat-menu-item[disabled]::after {
  color: rgba(255, 255, 255, 0.5);
}
.theme-dark .mat-menu-item .mat-icon-no-color,
.theme-dark .mat-menu-item-submenu-trigger::after {
  color: white;
}
.theme-dark .mat-menu-item:hover:not([disabled]),
.theme-dark .mat-menu-item.cdk-program-focused:not([disabled]),
.theme-dark .mat-menu-item.cdk-keyboard-focused:not([disabled]),
.theme-dark .mat-menu-item-highlighted:not([disabled]) {
  background: rgba(255, 255, 255, 0.04);
}
.theme-dark .mat-paginator {
  background: #424242;
}
.theme-dark .mat-paginator,
.theme-dark .mat-paginator-page-size .mat-select-trigger {
  color: rgba(255, 255, 255, 0.7);
}
.theme-dark .mat-paginator-decrement,
.theme-dark .mat-paginator-increment {
  border-top: 2px solid white;
  border-right: 2px solid white;
}
.theme-dark .mat-paginator-first,
.theme-dark .mat-paginator-last {
  border-top: 2px solid white;
}
.theme-dark .mat-icon-button[disabled] .mat-paginator-decrement,
.theme-dark .mat-icon-button[disabled] .mat-paginator-increment,
.theme-dark .mat-icon-button[disabled] .mat-paginator-first,
.theme-dark .mat-icon-button[disabled] .mat-paginator-last {
  border-color: rgba(255, 255, 255, 0.5);
}
.theme-dark .mat-progress-bar-background {
  fill: #fff9c4;
}
.theme-dark .mat-progress-bar-buffer {
  background-color: #fff9c4;
}
.theme-dark .mat-progress-bar-fill::after {
  background-color: #fbc02d;
}
.theme-dark .mat-progress-bar.mat-accent .mat-progress-bar-background {
  fill: #c8e6c9;
}
.theme-dark .mat-progress-bar.mat-accent .mat-progress-bar-buffer {
  background-color: #c8e6c9;
}
.theme-dark .mat-progress-bar.mat-accent .mat-progress-bar-fill::after {
  background-color: #66bb6a;
}
.theme-dark .mat-progress-bar.mat-warn .mat-progress-bar-background {
  fill: #ffcdd2;
}
.theme-dark .mat-progress-bar.mat-warn .mat-progress-bar-buffer {
  background-color: #ffcdd2;
}
.theme-dark .mat-progress-bar.mat-warn .mat-progress-bar-fill::after {
  background-color: #f44336;
}
.theme-dark .mat-progress-spinner circle, .theme-dark .mat-spinner circle {
  stroke: #fbc02d;
}
.theme-dark .mat-progress-spinner.mat-accent circle, .theme-dark .mat-spinner.mat-accent circle {
  stroke: #66bb6a;
}
.theme-dark .mat-progress-spinner.mat-warn circle, .theme-dark .mat-spinner.mat-warn circle {
  stroke: #f44336;
}
.theme-dark .mat-radio-outer-circle {
  border-color: rgba(255, 255, 255, 0.7);
}
.theme-dark .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle {
  border-color: #fbc02d;
}
.theme-dark .mat-radio-button.mat-primary .mat-radio-inner-circle,
.theme-dark .mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .theme-dark .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple, .theme-dark .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple {
  background-color: #fbc02d;
}
.theme-dark .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle {
  border-color: #66bb6a;
}
.theme-dark .mat-radio-button.mat-accent .mat-radio-inner-circle,
.theme-dark .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .theme-dark .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple, .theme-dark .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple {
  background-color: #66bb6a;
}
.theme-dark .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle {
  border-color: #f44336;
}
.theme-dark .mat-radio-button.mat-warn .mat-radio-inner-circle,
.theme-dark .mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .theme-dark .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple, .theme-dark .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple {
  background-color: #f44336;
}
.theme-dark .mat-radio-button.mat-radio-disabled.mat-radio-checked .mat-radio-outer-circle,
.theme-dark .mat-radio-button.mat-radio-disabled .mat-radio-outer-circle {
  border-color: rgba(255, 255, 255, 0.5);
}
.theme-dark .mat-radio-button.mat-radio-disabled .mat-radio-ripple .mat-ripple-element,
.theme-dark .mat-radio-button.mat-radio-disabled .mat-radio-inner-circle {
  background-color: rgba(255, 255, 255, 0.5);
}
.theme-dark .mat-radio-button.mat-radio-disabled .mat-radio-label-content {
  color: rgba(255, 255, 255, 0.5);
}
.theme-dark .mat-radio-button .mat-ripple-element {
  background-color: white;
}
.theme-dark .mat-select-value {
  color: white;
}
.theme-dark .mat-select-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.theme-dark .mat-select-disabled .mat-select-value {
  color: rgba(255, 255, 255, 0.5);
}
.theme-dark .mat-select-arrow {
  color: rgba(255, 255, 255, 0.7);
}
.theme-dark .mat-select-panel {
  background: #424242;
}
.theme-dark .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);
}
.theme-dark .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple) {
  background: rgba(255, 255, 255, 0.12);
}
.theme-dark .mat-form-field.mat-focused.mat-primary .mat-select-arrow {
  color: #fbc02d;
}
.theme-dark .mat-form-field.mat-focused.mat-accent .mat-select-arrow {
  color: #66bb6a;
}
.theme-dark .mat-form-field.mat-focused.mat-warn .mat-select-arrow {
  color: #f44336;
}
.theme-dark .mat-form-field .mat-select.mat-select-invalid .mat-select-arrow {
  color: #f44336;
}
.theme-dark .mat-form-field .mat-select.mat-select-disabled .mat-select-arrow {
  color: rgba(255, 255, 255, 0.5);
}
.theme-dark .mat-drawer-container {
  background-color: #303030;
  color: white;
}
.theme-dark .mat-drawer {
  background-color: #424242;
  color: white;
}
.theme-dark .mat-drawer.mat-drawer-push {
  background-color: #424242;
}
.theme-dark .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);
}
.theme-dark .mat-drawer-side {
  border-right: solid 1px rgba(255, 255, 255, 0.12);
}
.theme-dark .mat-drawer-side.mat-drawer-end {
  border-left: solid 1px rgba(255, 255, 255, 0.12);
  border-right: none;
}
.theme-dark [dir=rtl] .mat-drawer-side {
  border-left: solid 1px rgba(255, 255, 255, 0.12);
  border-right: none;
}
.theme-dark [dir=rtl] .mat-drawer-side.mat-drawer-end {
  border-left: none;
  border-right: solid 1px rgba(255, 255, 255, 0.12);
}
.theme-dark .mat-drawer-backdrop.mat-drawer-shown {
  background-color: rgba(189, 189, 189, 0.6);
}
.theme-dark .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb {
  background-color: #66bb6a;
}
.theme-dark .mat-slide-toggle.mat-checked .mat-slide-toggle-bar {
  background-color: rgba(102, 187, 106, 0.54);
}
.theme-dark .mat-slide-toggle.mat-checked .mat-ripple-element {
  background-color: #66bb6a;
}
.theme-dark .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb {
  background-color: #fbc02d;
}
.theme-dark .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar {
  background-color: rgba(251, 192, 45, 0.54);
}
.theme-dark .mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element {
  background-color: #fbc02d;
}
.theme-dark .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb {
  background-color: #f44336;
}
.theme-dark .mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar {
  background-color: rgba(244, 67, 54, 0.54);
}
.theme-dark .mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element {
  background-color: #f44336;
}
.theme-dark .mat-slide-toggle:not(.mat-checked) .mat-ripple-element {
  background-color: white;
}
.theme-dark .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: #bdbdbd;
}
.theme-dark .mat-slide-toggle-bar {
  background-color: rgba(255, 255, 255, 0.5);
}
.theme-dark .mat-slider-track-background {
  background-color: rgba(255, 255, 255, 0.3);
}
.theme-dark .mat-primary .mat-slider-track-fill,
.theme-dark .mat-primary .mat-slider-thumb,
.theme-dark .mat-primary .mat-slider-thumb-label {
  background-color: #fbc02d;
}
.theme-dark .mat-primary .mat-slider-thumb-label-text {
  color: rgba(0, 0, 0, 0.87);
}
.theme-dark .mat-primary .mat-slider-focus-ring {
  background-color: rgba(251, 192, 45, 0.2);
}
.theme-dark .mat-accent .mat-slider-track-fill,
.theme-dark .mat-accent .mat-slider-thumb,
.theme-dark .mat-accent .mat-slider-thumb-label {
  background-color: #66bb6a;
}
.theme-dark .mat-accent .mat-slider-thumb-label-text {
  color: rgba(0, 0, 0, 0.87);
}
.theme-dark .mat-accent .mat-slider-focus-ring {
  background-color: rgba(102, 187, 106, 0.2);
}
.theme-dark .mat-warn .mat-slider-track-fill,
.theme-dark .mat-warn .mat-slider-thumb,
.theme-dark .mat-warn .mat-slider-thumb-label {
  background-color: #f44336;
}
.theme-dark .mat-warn .mat-slider-thumb-label-text {
  color: white;
}
.theme-dark .mat-warn .mat-slider-focus-ring {
  background-color: rgba(244, 67, 54, 0.2);
}
.theme-dark .mat-slider:hover .mat-slider-track-background,
.theme-dark .cdk-focused .mat-slider-track-background {
  background-color: rgba(255, 255, 255, 0.3);
}
.theme-dark .mat-slider-disabled .mat-slider-track-background,
.theme-dark .mat-slider-disabled .mat-slider-track-fill,
.theme-dark .mat-slider-disabled .mat-slider-thumb {
  background-color: rgba(255, 255, 255, 0.3);
}
.theme-dark .mat-slider-disabled:hover .mat-slider-track-background {
  background-color: rgba(255, 255, 255, 0.3);
}
.theme-dark .mat-slider-min-value .mat-slider-focus-ring {
  background-color: rgba(255, 255, 255, 0.12);
}
.theme-dark .mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,
.theme-dark .mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label {
  background-color: white;
}
.theme-dark .mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,
.theme-dark .mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label {
  background-color: rgba(255, 255, 255, 0.3);
}
.theme-dark .mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb {
  border-color: rgba(255, 255, 255, 0.3);
  background-color: transparent;
}
.theme-dark .mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb, .theme-dark .mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb {
  border-color: rgba(255, 255, 255, 0.3);
}
.theme-dark .mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb, .theme-dark .mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb {
  border-color: rgba(255, 255, 255, 0.3);
}
.theme-dark .mat-slider-has-ticks .mat-slider-wrapper::after {
  border-color: rgba(255, 255, 255, 0.7);
}
.theme-dark .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);
}
.theme-dark .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);
}
.theme-dark .mat-step-header.cdk-keyboard-focused, .theme-dark .mat-step-header.cdk-program-focused, .theme-dark .mat-step-header:hover {
  background-color: rgba(255, 255, 255, 0.04);
}
@media (hover: none) {
  .theme-dark .mat-step-header:hover {
    background: none;
  }
}
.theme-dark .mat-step-header .mat-step-label,
.theme-dark .mat-step-header .mat-step-optional {
  color: rgba(255, 255, 255, 0.7);
}
.theme-dark .mat-step-header .mat-step-icon {
  background-color: rgba(255, 255, 255, 0.7);
  color: rgba(0, 0, 0, 0.87);
}
.theme-dark .mat-step-header .mat-step-icon-selected,
.theme-dark .mat-step-header .mat-step-icon-state-done,
.theme-dark .mat-step-header .mat-step-icon-state-edit {
  background-color: #fbc02d;
  color: rgba(0, 0, 0, 0.87);
}
.theme-dark .mat-step-header.mat-accent .mat-step-icon {
  color: rgba(0, 0, 0, 0.87);
}
.theme-dark .mat-step-header.mat-accent .mat-step-icon-selected,
.theme-dark .mat-step-header.mat-accent .mat-step-icon-state-done,
.theme-dark .mat-step-header.mat-accent .mat-step-icon-state-edit {
  background-color: #66bb6a;
  color: rgba(0, 0, 0, 0.87);
}
.theme-dark .mat-step-header.mat-warn .mat-step-icon {
  color: white;
}
.theme-dark .mat-step-header.mat-warn .mat-step-icon-selected,
.theme-dark .mat-step-header.mat-warn .mat-step-icon-state-done,
.theme-dark .mat-step-header.mat-warn .mat-step-icon-state-edit {
  background-color: #f44336;
  color: white;
}
.theme-dark .mat-step-header .mat-step-icon-state-error {
  background-color: transparent;
  color: #f44336;
}
.theme-dark .mat-step-header .mat-step-label.mat-step-label-active {
  color: white;
}
.theme-dark .mat-step-header .mat-step-label.mat-step-label-error {
  color: #f44336;
}
.theme-dark .mat-stepper-horizontal, .theme-dark .mat-stepper-vertical {
  background-color: #424242;
}
.theme-dark .mat-stepper-vertical-line::before {
  border-left-color: rgba(255, 255, 255, 0.12);
}
.theme-dark .mat-horizontal-stepper-header::before,
.theme-dark .mat-horizontal-stepper-header::after,
.theme-dark .mat-stepper-horizontal-line {
  border-top-color: rgba(255, 255, 255, 0.12);
}
.theme-dark .mat-sort-header-arrow {
  color: #c6c6c6;
}
.theme-dark .mat-tab-nav-bar,
.theme-dark .mat-tab-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.theme-dark .mat-tab-group-inverted-header .mat-tab-nav-bar,
.theme-dark .mat-tab-group-inverted-header .mat-tab-header {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: none;
}
.theme-dark .mat-tab-label, .theme-dark .mat-tab-link {
  color: white;
}
.theme-dark .mat-tab-label.mat-tab-disabled, .theme-dark .mat-tab-link.mat-tab-disabled {
  color: rgba(255, 255, 255, 0.5);
}
.theme-dark .mat-tab-header-pagination-chevron {
  border-color: white;
}
.theme-dark .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: rgba(255, 255, 255, 0.5);
}
.theme-dark .mat-tab-group[class*=mat-background-] .mat-tab-header,
.theme-dark .mat-tab-nav-bar[class*=mat-background-] {
  border-bottom: none;
  border-top: none;
}
.theme-dark .mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-dark .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-dark .mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-dark .mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .theme-dark .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-dark .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-dark .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-dark .mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(255, 249, 196, 0.3);
}
.theme-dark .mat-tab-group.mat-primary .mat-ink-bar, .theme-dark .mat-tab-nav-bar.mat-primary .mat-ink-bar {
  background-color: #fbc02d;
}
.theme-dark .mat-tab-group.mat-primary.mat-background-primary .mat-ink-bar, .theme-dark .mat-tab-nav-bar.mat-primary.mat-background-primary .mat-ink-bar {
  background-color: rgba(0, 0, 0, 0.87);
}
.theme-dark .mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-dark .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-dark .mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-dark .mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .theme-dark .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-dark .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-dark .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-dark .mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(200, 230, 201, 0.3);
}
.theme-dark .mat-tab-group.mat-accent .mat-ink-bar, .theme-dark .mat-tab-nav-bar.mat-accent .mat-ink-bar {
  background-color: #66bb6a;
}
.theme-dark .mat-tab-group.mat-accent.mat-background-accent .mat-ink-bar, .theme-dark .mat-tab-nav-bar.mat-accent.mat-background-accent .mat-ink-bar {
  background-color: rgba(0, 0, 0, 0.87);
}
.theme-dark .mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-dark .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-dark .mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-dark .mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .theme-dark .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-dark .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-dark .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-dark .mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(255, 205, 210, 0.3);
}
.theme-dark .mat-tab-group.mat-warn .mat-ink-bar, .theme-dark .mat-tab-nav-bar.mat-warn .mat-ink-bar {
  background-color: #f44336;
}
.theme-dark .mat-tab-group.mat-warn.mat-background-warn .mat-ink-bar, .theme-dark .mat-tab-nav-bar.mat-warn.mat-background-warn .mat-ink-bar {
  background-color: white;
}
.theme-dark .mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-dark .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-dark .mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-dark .mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .theme-dark .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-dark .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-dark .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-dark .mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(255, 249, 196, 0.3);
}
.theme-dark .mat-tab-group.mat-background-primary .mat-tab-header, .theme-dark .mat-tab-group.mat-background-primary .mat-tab-links, .theme-dark .mat-tab-group.mat-background-primary .mat-tab-header-pagination, .theme-dark .mat-tab-nav-bar.mat-background-primary .mat-tab-header, .theme-dark .mat-tab-nav-bar.mat-background-primary .mat-tab-links, .theme-dark .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination {
  background-color: #fbc02d;
}
.theme-dark .mat-tab-group.mat-background-primary .mat-tab-label, .theme-dark .mat-tab-group.mat-background-primary .mat-tab-link, .theme-dark .mat-tab-nav-bar.mat-background-primary .mat-tab-label, .theme-dark .mat-tab-nav-bar.mat-background-primary .mat-tab-link {
  color: rgba(0, 0, 0, 0.87);
}
.theme-dark .mat-tab-group.mat-background-primary .mat-tab-label.mat-tab-disabled, .theme-dark .mat-tab-group.mat-background-primary .mat-tab-link.mat-tab-disabled, .theme-dark .mat-tab-nav-bar.mat-background-primary .mat-tab-label.mat-tab-disabled, .theme-dark .mat-tab-nav-bar.mat-background-primary .mat-tab-link.mat-tab-disabled {
  color: rgba(0, 0, 0, 0.4);
}
.theme-dark .mat-tab-group.mat-background-primary .mat-tab-header-pagination-chevron, .theme-dark .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-chevron {
  border-color: rgba(0, 0, 0, 0.87);
}
.theme-dark .mat-tab-group.mat-background-primary .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .theme-dark .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: rgba(0, 0, 0, 0.4);
}
.theme-dark .mat-tab-group.mat-background-primary .mat-ripple-element, .theme-dark .mat-tab-nav-bar.mat-background-primary .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.12);
}
.theme-dark .mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-dark .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-dark .mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-dark .mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .theme-dark .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-dark .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-dark .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-dark .mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(200, 230, 201, 0.3);
}
.theme-dark .mat-tab-group.mat-background-accent .mat-tab-header, .theme-dark .mat-tab-group.mat-background-accent .mat-tab-links, .theme-dark .mat-tab-group.mat-background-accent .mat-tab-header-pagination, .theme-dark .mat-tab-nav-bar.mat-background-accent .mat-tab-header, .theme-dark .mat-tab-nav-bar.mat-background-accent .mat-tab-links, .theme-dark .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination {
  background-color: #66bb6a;
}
.theme-dark .mat-tab-group.mat-background-accent .mat-tab-label, .theme-dark .mat-tab-group.mat-background-accent .mat-tab-link, .theme-dark .mat-tab-nav-bar.mat-background-accent .mat-tab-label, .theme-dark .mat-tab-nav-bar.mat-background-accent .mat-tab-link {
  color: rgba(0, 0, 0, 0.87);
}
.theme-dark .mat-tab-group.mat-background-accent .mat-tab-label.mat-tab-disabled, .theme-dark .mat-tab-group.mat-background-accent .mat-tab-link.mat-tab-disabled, .theme-dark .mat-tab-nav-bar.mat-background-accent .mat-tab-label.mat-tab-disabled, .theme-dark .mat-tab-nav-bar.mat-background-accent .mat-tab-link.mat-tab-disabled {
  color: rgba(0, 0, 0, 0.4);
}
.theme-dark .mat-tab-group.mat-background-accent .mat-tab-header-pagination-chevron, .theme-dark .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-chevron {
  border-color: rgba(0, 0, 0, 0.87);
}
.theme-dark .mat-tab-group.mat-background-accent .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .theme-dark .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: rgba(0, 0, 0, 0.4);
}
.theme-dark .mat-tab-group.mat-background-accent .mat-ripple-element, .theme-dark .mat-tab-nav-bar.mat-background-accent .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.12);
}
.theme-dark .mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-dark .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-dark .mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-dark .mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .theme-dark .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .theme-dark .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.theme-dark .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.theme-dark .mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(255, 205, 210, 0.3);
}
.theme-dark .mat-tab-group.mat-background-warn .mat-tab-header, .theme-dark .mat-tab-group.mat-background-warn .mat-tab-links, .theme-dark .mat-tab-group.mat-background-warn .mat-tab-header-pagination, .theme-dark .mat-tab-nav-bar.mat-background-warn .mat-tab-header, .theme-dark .mat-tab-nav-bar.mat-background-warn .mat-tab-links, .theme-dark .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination {
  background-color: #f44336;
}
.theme-dark .mat-tab-group.mat-background-warn .mat-tab-label, .theme-dark .mat-tab-group.mat-background-warn .mat-tab-link, .theme-dark .mat-tab-nav-bar.mat-background-warn .mat-tab-label, .theme-dark .mat-tab-nav-bar.mat-background-warn .mat-tab-link {
  color: white;
}
.theme-dark .mat-tab-group.mat-background-warn .mat-tab-label.mat-tab-disabled, .theme-dark .mat-tab-group.mat-background-warn .mat-tab-link.mat-tab-disabled, .theme-dark .mat-tab-nav-bar.mat-background-warn .mat-tab-label.mat-tab-disabled, .theme-dark .mat-tab-nav-bar.mat-background-warn .mat-tab-link.mat-tab-disabled {
  color: rgba(255, 255, 255, 0.4);
}
.theme-dark .mat-tab-group.mat-background-warn .mat-tab-header-pagination-chevron, .theme-dark .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-chevron {
  border-color: white;
}
.theme-dark .mat-tab-group.mat-background-warn .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .theme-dark .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: rgba(255, 255, 255, 0.4);
}
.theme-dark .mat-tab-group.mat-background-warn .mat-ripple-element, .theme-dark .mat-tab-nav-bar.mat-background-warn .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.12);
}
.theme-dark .mat-toolbar {
  background: #212121;
  color: white;
}
.theme-dark .mat-toolbar.mat-primary {
  background: #fbc02d;
  color: rgba(0, 0, 0, 0.87);
}
.theme-dark .mat-toolbar.mat-accent {
  background: #66bb6a;
  color: rgba(0, 0, 0, 0.87);
}
.theme-dark .mat-toolbar.mat-warn {
  background: #f44336;
  color: white;
}
.theme-dark .mat-toolbar .mat-form-field-underline,
.theme-dark .mat-toolbar .mat-form-field-ripple,
.theme-dark .mat-toolbar .mat-focused .mat-form-field-ripple {
  background-color: currentColor;
}
.theme-dark .mat-toolbar .mat-form-field-label,
.theme-dark .mat-toolbar .mat-focused .mat-form-field-label,
.theme-dark .mat-toolbar .mat-select-value,
.theme-dark .mat-toolbar .mat-select-arrow,
.theme-dark .mat-toolbar .mat-form-field.mat-focused .mat-select-arrow {
  color: inherit;
}
.theme-dark .mat-toolbar .mat-input-element {
  caret-color: currentColor;
}
.theme-dark .mat-tooltip {
  background: rgba(97, 97, 97, 0.9);
}
.theme-dark .mat-tree {
  background: #424242;
}
.theme-dark .mat-tree-node,
.theme-dark .mat-nested-tree-node {
  color: white;
}
.theme-dark .mat-snack-bar-container {
  color: rgba(0, 0, 0, 0.87);
  background: #fafafa;
  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);
}
.theme-dark .mat-simple-snackbar-action {
  color: inherit;
}
.high-panel.mat-select-panel {
  max-height: 80vh !important;
}
.high-panel-normal-size.mat-select-panel {
  max-height: 80vh !important;
}
.disabled-select-header {
  background: #777 !important;
  color: white !important;
}
.medium-panel.mat-select-panel {
  max-height: 600px !important;
}
.mat-dialog-title-regular {
  font: 300 14px/16px Roboto, "Helvetica Neue", sans-serif !important;
}
/**
 * Allowing selects in chat bar even though it
 * has such a huge z-index
 */
.chat-select-open .cdk-overlay-container {
  z-index: 100001 !important;
}
@media (max-width: 768px) {
  .mat-horizontal-stepper-header-container {
    flex-direction: column !important;
    align-items: inherit !important;
  }

  .mat-stepper-horizontal-line {
    margin: 0 !important;
  }
}
.line-broken-tooltip {
  white-space: pre-line !important;
}
@media (max-height: 1024px) {
  .mat-select-panel ::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
  }
  .mat-select-panel ::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
  }
}
/*==================================================

  Index

==================================================*/
/*==================================================

  Theme

==================================================*/
/*
 * Theme background colors
 */
/*
 * Theme foreground colors
 */
/*
 * Function to get proper colors
 */
/*==================================================

  Variables

==================================================*/
/*
 * Theme colors
 */
/*
 * Screen sizes
 */
/*
 * Box-shadow
 */
/*
 * Backgrounds
 */
/*==================================================

  Tools

==================================================*/
/*
 * Fluid function
 */
/*
 * Contrast function
 */
/*todo(Marko): check should we move this*/
/*==================================================

  Base

==================================================*/
/*==================================================

  Images

==================================================*/
/*==================================================

  Typography

==================================================*/
/*
 * Base setup
 */
/*
  This stylesheet uses scss valiables for most of the colors / background-colors of the table
  to enable the customization of the displayed table without cloning the stylesheet into the
  own application.

  To modify table colors, add the following lines to the scss file of your application
  (this example modifies the color of the selected row - selectionType = single, multi or multiClick):

  $ngx-datatable-selected-active-background: yellow;
  $ngx-datatable-selected-active-background-hover: rgba(yellow, 0.2);

  @import '~@swimlane/ngx-datatable/index.css';
  @import '~@swimlane/ngx-datatable/themes/material.scss';
  @import '~@swimlane/ngx-datatable/assets/icons.css';

That's all.
*/
.ngx-datatable.material {
  background: #fff;
  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
  /**
	 * Shared Styles
	 */
  /**
	 * Global Row Styles
	 */
  /**
	 * Header Styles
	 */
  /**
	 * Body Styles
	 */
  /**
	 * Footer Styles
	 */ }
.ngx-datatable.material.striped .datatable-row-odd {
    background: #eee; }
.ngx-datatable.material.single-selection .datatable-body-row.active,
  .ngx-datatable.material.single-selection .datatable-body-row.active .datatable-row-group, .ngx-datatable.material.multi-selection .datatable-body-row.active,
  .ngx-datatable.material.multi-selection .datatable-body-row.active .datatable-row-group, .ngx-datatable.material.multi-click-selection .datatable-body-row.active,
  .ngx-datatable.material.multi-click-selection .datatable-body-row.active .datatable-row-group {
    background-color: #304ffe;
    color: #fff; }
.ngx-datatable.material.single-selection .datatable-body-row.active:hover,
  .ngx-datatable.material.single-selection .datatable-body-row.active:hover .datatable-row-group, .ngx-datatable.material.multi-selection .datatable-body-row.active:hover,
  .ngx-datatable.material.multi-selection .datatable-body-row.active:hover .datatable-row-group, .ngx-datatable.material.multi-click-selection .datatable-body-row.active:hover,
  .ngx-datatable.material.multi-click-selection .datatable-body-row.active:hover .datatable-row-group {
    background-color: #193ae4;
    color: #fff; }
.ngx-datatable.material.single-selection .datatable-body-row.active:focus,
  .ngx-datatable.material.single-selection .datatable-body-row.active:focus .datatable-row-group, .ngx-datatable.material.multi-selection .datatable-body-row.active:focus,
  .ngx-datatable.material.multi-selection .datatable-body-row.active:focus .datatable-row-group, .ngx-datatable.material.multi-click-selection .datatable-body-row.active:focus,
  .ngx-datatable.material.multi-click-selection .datatable-body-row.active:focus .datatable-row-group {
    background-color: #2041ef;
    color: #fff; }
.ngx-datatable.material:not(.cell-selection) .datatable-body-row:hover,
  .ngx-datatable.material:not(.cell-selection) .datatable-body-row:hover .datatable-row-group {
    background-color: #eee;
    transition-property: background;
    transition-duration: 0.3s;
    transition-timing-function: linear; }
.ngx-datatable.material:not(.cell-selection) .datatable-body-row:focus,
  .ngx-datatable.material:not(.cell-selection) .datatable-body-row:focus .datatable-row-group {
    background-color: #ddd; }
.ngx-datatable.material.cell-selection .datatable-body-cell:hover,
  .ngx-datatable.material.cell-selection .datatable-body-cell:hover .datatable-row-group {
    background-color: #eee;
    transition-property: background;
    transition-duration: 0.3s;
    transition-timing-function: linear; }
.ngx-datatable.material.cell-selection .datatable-body-cell:focus,
  .ngx-datatable.material.cell-selection .datatable-body-cell:focus .datatable-row-group {
    background-color: #ddd; }
.ngx-datatable.material.cell-selection .datatable-body-cell.active,
  .ngx-datatable.material.cell-selection .datatable-body-cell.active .datatable-row-group {
    background-color: #304ffe;
    color: #fff; }
.ngx-datatable.material.cell-selection .datatable-body-cell.active:hover,
  .ngx-datatable.material.cell-selection .datatable-body-cell.active:hover .datatable-row-group {
    background-color: #193ae4;
    color: #fff; }
.ngx-datatable.material.cell-selection .datatable-body-cell.active:focus,
  .ngx-datatable.material.cell-selection .datatable-body-cell.active:focus .datatable-row-group {
    background-color: #2041ef;
    color: #fff; }
.ngx-datatable.material .empty-row {
    height: 50px;
    text-align: left;
    padding: 0.5rem 1.2rem;
    vertical-align: top;
    border-top: 0; }
.ngx-datatable.material .loading-row {
    text-align: left;
    padding: 0.5rem 1.2rem;
    vertical-align: top;
    border-top: 0; }
.ngx-datatable.material .datatable-header .datatable-row-left,
  .ngx-datatable.material .datatable-body .datatable-row-left {
    background-color: #fff;
    background-position: 100% 0;
    background-repeat: repeat-y;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAABCAYAAAD5PA/NAAAAFklEQVQIHWPSkNeSBmJhTQVtbiDNCgASagIIuJX8OgAAAABJRU5ErkJggg==); }
.ngx-datatable.material .datatable-header .datatable-row-right,
  .ngx-datatable.material .datatable-body .datatable-row-right {
    background-position: 0 0;
    background-color: #fff;
    background-repeat: repeat-y;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAABCAYAAAD5PA/NAAAAFklEQVQI12PQkNdi1VTQ5gbSwkAsDQARLAIGtOSFUAAAAABJRU5ErkJggg==); }
.ngx-datatable.material .datatable-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12); }
.ngx-datatable.material .datatable-header .datatable-header-cell {
      text-align: left;
      padding: 0.9rem 1.2rem;
      font-weight: 400;
      background-color: #fff;
      color: rgba(0, 0, 0, 0.54);
      vertical-align: bottom;
      font-size: 12px;
      font-weight: 500; }
.ngx-datatable.material .datatable-header .datatable-header-cell .datatable-header-cell-wrapper {
        position: relative; }
.ngx-datatable.material .datatable-header .datatable-header-cell.longpress .draggable::after {
        transition: transform 400ms ease, opacity 400ms ease;
        opacity: 0.5;
        transform: scale(1); }
.ngx-datatable.material .datatable-header .datatable-header-cell .draggable::after {
        content: ' ';
        position: absolute;
        top: 50%;
        left: 50%;
        margin: -30px 0 0 -30px;
        height: 60px;
        width: 60px;
        background: #eee;
        border-radius: 100%;
        opacity: 1;
        filter: none;
        transform: scale(0);
        z-index: 9999;
        pointer-events: none; }
.ngx-datatable.material .datatable-header .datatable-header-cell.dragging .resize-handle {
        border-right: none; }
.ngx-datatable.material .datatable-header .resize-handle {
      border-right: solid 1px #eee; }
.ngx-datatable.material .datatable-body .datatable-row-detail {
    background: #f5f5f5;
    padding: 10px; }
.ngx-datatable.material .datatable-body .datatable-group-header {
    background: #f5f5f5;
    border-bottom: solid 1px #d9d8d9;
    border-top: solid 1px #d9d8d9; }
.ngx-datatable.material .datatable-body .datatable-body-row .datatable-body-cell {
    text-align: left;
    padding: 0.9rem 1.2rem;
    vertical-align: top;
    border-top: 0;
    color: rgba(0, 0, 0, 0.87);
    transition: width 0.3s ease;
    font-size: 14px;
    font-weight: 400; }
.ngx-datatable.material .datatable-body .datatable-body-row .datatable-body-group-cell {
    text-align: left;
    padding: 0.9rem 1.2rem;
    vertical-align: top;
    border-top: 0;
    color: rgba(0, 0, 0, 0.87);
    transition: width 0.3s ease;
    font-size: 14px;
    font-weight: 400; }
.ngx-datatable.material .datatable-body .progress-linear {
    display: block;
    position: relative;
    width: 100%;
    height: 5px;
    padding: 0;
    margin: 0;
    position: absolute; }
.ngx-datatable.material .datatable-body .progress-linear .container {
      display: block;
      position: relative;
      overflow: hidden;
      width: 100%;
      height: 5px;
      transform: translate(0, 0) scale(1, 1);
      background-color: #aad1f9; }
.ngx-datatable.material .datatable-body .progress-linear .container .bar {
        transition: all 0.2s linear;
        -webkit-animation: query 0.8s infinite cubic-bezier(0.39, 0.575, 0.565, 1);
        animation: query 0.8s infinite cubic-bezier(0.39, 0.575, 0.565, 1);
        transition: transform 0.2s linear;
        background-color: #106cc8;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 100%;
        height: 5px; }
.ngx-datatable.material .datatable-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    font-size: 12px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.54); }
.ngx-datatable.material .datatable-footer .page-count {
      line-height: 50px;
      height: 50px;
      padding: 0 1.2rem; }
.ngx-datatable.material .datatable-footer .datatable-pager {
      margin: 0 10px; }
.ngx-datatable.material .datatable-footer .datatable-pager li {
        vertical-align: middle; }
.ngx-datatable.material .datatable-footer .datatable-pager li.disabled a {
          color: rgba(0, 0, 0, 0.26) !important;
          background-color: transparent !important; }
.ngx-datatable.material .datatable-footer .datatable-pager li.active a {
          background-color: rgba(158, 158, 158, 0.2);
          font-weight: bold; }
.ngx-datatable.material .datatable-footer .datatable-pager a {
        height: 22px;
        min-width: 24px;
        line-height: 22px;
        padding: 0 6px;
        border-radius: 3px;
        margin: 6px 3px;
        text-align: center;
        vertical-align: top;
        color: rgba(0, 0, 0, 0.54);
        text-decoration: none;
        vertical-align: bottom; }
.ngx-datatable.material .datatable-footer .datatable-pager a:hover {
          color: rgba(0, 0, 0, 0.75);
          background-color: rgba(158, 158, 158, 0.2); }
.ngx-datatable.material .datatable-footer .datatable-pager .datatable-icon-left,
      .ngx-datatable.material .datatable-footer .datatable-pager .datatable-icon-skip,
      .ngx-datatable.material .datatable-footer .datatable-pager .datatable-icon-right,
      .ngx-datatable.material .datatable-footer .datatable-pager .datatable-icon-prev {
        font-size: 20px;
        line-height: 20px;
        padding: 0 3px; }
.ngx-datatable.material .datatable-summary-row .datatable-body-row {
    background-color: #ddd; }
.ngx-datatable.material .datatable-summary-row .datatable-body-row:hover {
      background-color: #ddd; }
.ngx-datatable.material .datatable-summary-row .datatable-body-row .datatable-body-cell {
      font-weight: bold; }
/**
 * Checkboxes
**/
.datatable-checkbox {
  position: relative;
  margin: 0;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  box-sizing: border-box;
  padding: 0; }
.datatable-checkbox input[type='checkbox'] {
    position: relative;
    margin: 0 1rem 0 0;
    cursor: pointer;
    outline: none; }
.datatable-checkbox input[type='checkbox']:before {
      transition: all 0.3s ease-in-out;
      content: '';
      position: absolute;
      left: 0;
      z-index: 1;
      width: 1rem;
      height: 1rem;
      border: 2px solid #f2f2f2; }
.datatable-checkbox input[type='checkbox']:checked:before {
      transform: rotate(-45deg);
      height: 0.5rem;
      border-color: #009688;
      border-top-style: none;
      border-right-style: none; }
.datatable-checkbox input[type='checkbox']:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 1rem;
      height: 1rem;
      background: #fff;
      cursor: pointer; }
/**
 * Progress bar animations
 */
@-webkit-keyframes query {
  0% {
    opacity: 1;
    transform: translateX(35%) scale(0.3, 1); }
  100% {
    opacity: 0;
    transform: translateX(-50%) scale(0, 1); } }
@keyframes query {
  0% {
    opacity: 1;
    transform: translateX(35%) scale(0.3, 1); }
  100% {
    opacity: 0;
    transform: translateX(-50%) scale(0, 1); } }
html {
  font-family: "Roboto", sans-serif;
  font-size: 62.5%;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
body {
  font-size: 1.4rem;
}
/*
 * Resets
 */
h1, h2, h3, h4, h5, h6,
p, ul, ol {
  margin: 0;
}
i.material-icons {
  vertical-align: middle;
  outline: none;
  font-style: normal;
}
/*
 * Elements
 */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}
h1 {
  font-size: 3.6rem;
}
h2 {
  font-size: 3.2rem;
}
h3 {
  font-size: 2.8rem;
}
h4 {
  font-size: 2.4rem;
}
h5 {
  font-size: 2rem;
}
h6 {
  font-size: 1.6rem;
}
p {
  font-size: 1.4rem;
}
button {
  font-size: 1.4rem;
  font-weight: 500;
}
a {
  cursor: pointer;
  color: unset;
  text-decoration: none;
}
b, strong {
  font-weight: 700;
}
i {
  font-style: italic;
}
u {
  text-decoration: underline;
}
hr {
  display: block;
  width: 100%;
  height: 0.1rem;
  margin: 1rem 0;
  border-width: 0.1rem 0 0;
  border-style: solid;
}
.vr {
  display: inline-block;
  width: 0.1rem;
  height: 100%;
  margin: 0 1rem;
  border-width: 0 0 0 0.1rem;
  border-style: solid;
}
/*
 * Custom
 */
.link {
  cursor: pointer;
  text-decoration: underline;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}
.bold {
  font-weight: bold;
}
/*
 * Fieldset
 */
fieldset {
  border: none;
  padding: 0 0 1.25em;
  margin: 1rem 0;
}
.field {
  padding-bottom: 1.25em;
}
label {
  margin-bottom: unset;
}
/*==================================================

  Layout

==================================================*/
.theme-nada-wrapper .theme-nada .db-aside nav ul.main-nav > li.active > a {
  color: rgba(255, 255, 255, 0.9);
}
/*==================================================

  Grid

==================================================*/
/*==================================================

  Notification badge

==================================================*/
/*==================================================

  Read format

==================================================*/
/*==================================================

  Tables

==================================================*/
/*==================================================

  Report

==================================================*/
/*
* Tooltip Styles
*/
/* Base styles for the element that has a tooltip */
[data-tooltip] {
  position: relative;
  cursor: pointer;
}
/* Base styles for the entire tooltip */
[data-tooltip]:before,
[data-tooltip]:after {
  position: absolute;
  visibility: hidden;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  transform: translate3d(0, 0, 0);
  pointer-events: none;
}
/* Show the entire tooltip on hover and focus */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after,
[data-tooltip]:focus:before,
[data-tooltip]:focus:after {
  visibility: visible;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}
/* Base styles for the tooltip's content area */
[data-tooltip]:after {
  z-index: 1000;
  padding: 6px;
  font-size: 10px;
  font-weight: normal !important;
  background: rgba(97, 97, 97, 0.9);
  color: #fff;
  content: attr(data-tooltip);
  line-height: 1.2;
  bottom: 100%;
  left: 0;
  border-radius: 4px;
}
[data-tooltip]:hover:after,
[data-tooltip]:focus:after {
  transform: translateY(-12px);
}
[data-tooltip].hide-tooltip::before,
[data-tooltip].hide-tooltip::after {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
/*==================================================

  CDK drag

==================================================*/
/*
 * Drag preview
 */
.cdk-drag-preview {
  box-sizing: border-box;
}
.cdk-drag-preview .drag-handle-component {
  position: absolute;
  top: 15px;
  right: 15px;
}
/*
 * Drag placeholder
 */
.cdk-drag-placeholder {
  opacity: 0;
}
/*
 * Animation
 */
.cdk-drag-animating {
  transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
}
/*
 * List dragging styles
 */
.inner.cdk-drop-list-dragging .components:not(.cdk-drag-placeholder) {
  transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
}
.inner-content.cdk-drop-list-dragging .column:not(.cdk-drag-placeholder) {
  transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
}
.inner-content.cdk-drop-list-dragging .block-overlay {
  display: none;
}
/*==================================================

  Utilities

==================================================*/
/*==================================================

  Custom

==================================================*/
/*==================================================

  Overrides

==================================================*/
.mat-no-hint.mat-form-field > .mat-form-field-wrapper,
.active-listings-override.mat-form-field > .mat-form-field-wrapper {
  padding-bottom: 0;
}
.mat-no-hint.mat-form-field > .mat-form-field-wrapper > .mat-form-field-underline,
.active-listings-override.mat-form-field > .mat-form-field-wrapper > .mat-form-field-underline {
  bottom: 0;
}
textarea.mat-input-element {
  overflow: hidden !important;
}
.cdk-drag-preview {
  z-index: 63002 !important;
}
/* Animate items as they're being sorted. */
/* Animate an item that has been dropped. */
.cdk-drag-animating {
  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.4), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.mat-expansion-panel-header {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
/*==================================================

  Print

==================================================*/
span, a {
  display: inline-block;
}
/*
 * Box sizing
 */
html {
  box-sizing: border-box;
  width: 100%;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
/*
 * Page setup
 */
body {
  margin: 0;
  overflow-x: hidden;
  min-height: 100vh;
  background: white;
}
/*
 * Custom scrollbar
 */
::-webkit-scrollbar {
  width: 8px;
  height: 3px;
}
::-webkit-scrollbar-track {
  border-radius: 0;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.35);
  background: rgba(238, 238, 238, 0.2);
}
::-webkit-scrollbar-thumb {
  border-radius: 40px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.35);
  background: rgba(170, 170, 170, 0.7);
}
img {
  max-width: 100%;
  font-style: italic;
  vertical-align: middle;
}
.img-full {
  width: 100%;
  height: 100%;
}
.img-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.img-contain {
  -o-object-fit: contain;
     object-fit: contain;
}
.img-container {
  position: relative;
  overflow: hidden;
}
.img-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.img-container[data-aspect-ratio="1:1"] {
  padding-bottom: 100%;
}
.img-container[data-aspect-ratio="4:3"] {
  padding-bottom: 75%;
}
html {
  color: rgba(0, 0, 0, 0.6);
}
h1, h2, h3, h4, h5, h6 {
  color: rgba(0, 0, 0, 0.9);
}
p {
  color: rgba(0, 0, 0, 0.6);
}
fieldset legend {
  color: rgba(0, 0, 0, 0.6);
}
hr {
  border-color: rgba(0, 0, 0, 0.2);
}
.vr {
  border-color: rgba(0, 0, 0, 0.2);
}
.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 160rem;
  width: 100%;
  margin: 0 auto;
}
.grid > [class*=col] {
  padding: 1rem;
}
.grid.full {
  max-width: 100%;
}
.grid.gutter-l > [class*=col] {
  padding: 2rem;
}
.grid.gutter-m > [class*=col] {
  padding: 1rem;
}
.grid.gutter-s > [class*=col] {
  padding: 0.5rem;
}
.grid.nogutter > [class*=col] {
  padding: 0;
}
.grid .col-1 {
  flex-basis: 8.3333%;
  width: 8.3333%;
}
.grid .col-2 {
  flex-basis: 16.6666%;
  width: 16.6666%;
}
.grid .col-3 {
  flex-basis: 25%;
  width: 25%;
}
.grid .col-4 {
  flex-basis: 33.3333%;
  width: 33.3333%;
}
.grid .col-5 {
  flex-basis: 41.6666%;
  width: 41.6666%;
}
.grid .col-6 {
  flex-basis: 50%;
  width: 50%;
}
.grid .col-7 {
  flex-basis: 58.3333%;
  width: 58.3333%;
}
.grid .col-8 {
  flex-basis: 66.6666%;
  width: 66.6666%;
}
.grid .col-9 {
  flex-basis: 75%;
  width: 75%;
}
.grid .col-10 {
  flex-basis: 83.3333%;
  width: 83.3333%;
}
.grid .col-11 {
  flex-basis: 91.6666%;
  width: 91.6666%;
}
.grid .col-12 {
  flex-basis: 100%;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .grid .o-m-last {
    order: 9;
  }
  .grid .col-m-0 {
    display: none;
  }
  .grid .col-m-1 {
    flex-basis: 8.3333%;
    width: 8.3333%;
  }
  .grid .col-m-2 {
    flex-basis: 16.6666%;
    width: 16.6666%;
  }
  .grid .col-m-3 {
    flex-basis: 25%;
    width: 25%;
  }
  .grid .col-m-4 {
    flex-basis: 33.3333%;
    width: 33.3333%;
  }
  .grid .col-m-5 {
    flex-basis: 41.6666%;
    width: 41.6666%;
  }
  .grid .col-m-6 {
    flex-basis: 50%;
    width: 50%;
  }
  .grid .col-m-7 {
    flex-basis: 58.3333%;
    width: 58.3333%;
  }
  .grid .col-m-8 {
    flex-basis: 66.6666%;
    width: 66.6666%;
  }
  .grid .col-m-9 {
    flex-basis: 75%;
    width: 75%;
  }
  .grid .col-m-10 {
    flex-basis: 83.3333%;
    width: 83.3333%;
  }
  .grid .col-m-11 {
    flex-basis: 91.6666%;
    width: 91.6666%;
  }
  .grid .col-m-12 {
    flex-basis: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 850px) {
  .grid .o-s-last {
    order: 9;
  }
  .grid .col-s-0 {
    display: none;
  }
  .grid .col-s-1 {
    flex-basis: 8.3333%;
    width: 8.3333%;
  }
  .grid .col-s-2 {
    flex-basis: 16.6666%;
    width: 16.6666%;
  }
  .grid .col-s-3 {
    flex-basis: 25%;
    width: 25%;
  }
  .grid .col-s-4 {
    flex-basis: 33.3333%;
    width: 33.3333%;
  }
  .grid .col-s-5 {
    flex-basis: 41.6666%;
    width: 41.6666%;
  }
  .grid .col-s-6 {
    flex-basis: 50%;
    width: 50%;
  }
  .grid .col-s-7 {
    flex-basis: 58.3333%;
    width: 58.3333%;
  }
  .grid .col-s-8 {
    flex-basis: 66.6666%;
    width: 66.6666%;
  }
  .grid .col-s-9 {
    flex-basis: 75%;
    width: 75%;
  }
  .grid .col-s-10 {
    flex-basis: 83.3333%;
    width: 83.3333%;
  }
  .grid .col-s-11 {
    flex-basis: 91.6666%;
    width: 91.6666%;
  }
  .grid .col-s-12 {
    flex-basis: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 450px) {
  .grid .o-xs-last {
    order: 9;
  }
  .grid .col-xs-0 {
    display: none;
  }
  .grid .col-xs-1 {
    flex-basis: 8.3333%;
    width: 8.3333%;
  }
  .grid .col-xs-2 {
    flex-basis: 16.6666%;
    width: 16.6666%;
  }
  .grid .col-xs-3 {
    flex-basis: 25%;
    width: 25%;
  }
  .grid .col-xs-4 {
    flex-basis: 33.3333%;
    width: 33.3333%;
  }
  .grid .col-xs-5 {
    flex-basis: 41.6666%;
    width: 41.6666%;
  }
  .grid .col-xs-6 {
    flex-basis: 50%;
    width: 50%;
  }
  .grid .col-xs-7 {
    flex-basis: 58.3333%;
    width: 58.3333%;
  }
  .grid .col-xs-8 {
    flex-basis: 66.6666%;
    width: 66.6666%;
  }
  .grid .col-xs-9 {
    flex-basis: 75%;
    width: 75%;
  }
  .grid .col-xs-10 {
    flex-basis: 83.3333%;
    width: 83.3333%;
  }
  .grid .col-xs-11 {
    flex-basis: 91.6666%;
    width: 91.6666%;
  }
  .grid .col-xs-12 {
    flex-basis: 100%;
    width: 100%;
  }
}
.layout-fluid .grid {
  max-width: unset !important;
}
.bg-color {
  background: rgba(45, 58, 105, 0.9);
}
.collapsed-menu {
  margin-left: 40px !important;
}
.compact-title {
  font-size: 18px;
  color: #d0d6e2;
  padding: 0 16px;
  height: 40px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #d0d6e2;
}
.sidebar-mat-menu {
  background: rgba(45, 58, 105, 0.9);
  margin-left: 180px;
  border-radius: 0 !important;
  min-height: auto !important;
  border: 1px solid rgba(0, 0, 0, 0.12);
}
.sidebar-mat-menu .mat-menu-item {
  color: #d0d6e2;
  line-height: 1;
  height: 40px;
}
.sidebar-mat-menu .mat-menu-item.active {
  color: #FBC02D;
  font-weight: 700;
}
.sidebar-mat-menu .mat-menu-item:hover {
  background: rgba(255, 255, 255, 0.1);
}
.sidebar-mat-menu .mat-menu-item:hover .favorite {
  opacity: 1;
  pointer-events: auto;
}
.sidebar-mat-menu .mat-menu-content {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.sidebar-mat-menu .mat-menu-item-submenu-trigger::after {
  color: #d0d6e2;
}
.sidebar-mat-menu-child {
  margin-top: 7px !important;
  background: rgba(45, 58, 105, 0.9);
  border-radius: 0 !important;
  min-height: auto !important;
  border: 1px solid rgba(0, 0, 0, 0.12);
}
.sidebar-mat-menu-child .mat-menu-item {
  color: #d0d6e2;
  line-height: 1;
  height: 40px;
}
.sidebar-mat-menu-child .mat-menu-item.active {
  color: #FBC02D;
  font-weight: 700;
}
.sidebar-mat-menu-child .mat-menu-item:hover {
  background: rgba(255, 255, 255, 0.1);
}
.sidebar-mat-menu-child .mat-menu-content {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.sidebar-mat-menu-child .mat-menu-item-submenu-trigger::after {
  color: #d0d6e2;
}
.active-inner .active-primary-color {
  color: #FBC02D;
}
.favorite {
  pointer-events: none;
  opacity: 0;
  transition: 0.2s;
  cursor: pointer;
  margin-right: 0 !important;
}
/*
 * Dashboard sidebar
 */
.db-aside {
  position: fixed;
  z-index: 63004;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  width: 180px;
  height: 100%;
  color: #d0d6e2;
  background: #2D3A69;
}
.db-aside-list {
  padding: 0;
  list-style: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  overflow-y: auto;
  overflow-x: hidden;
  line-height: 2.4;
}
.db-aside-list-item .divider {
  display: none;
  margin: 0;
}
.db-aside-list-item.expanded {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.5) 2px, rgba(255, 255, 255, 0.06) 2px, rgba(255, 255, 255, 0.06));
}
.db-aside-list-item.expanded .divider {
  display: block;
  border-color: #FBC02D !important;
  opacity: 60%;
}
.db-aside-list-item-logo {
  height: 64px;
  display: flex;
  justify-content: center;
}
.db-aside-list-item-link {
  display: flex;
  white-space: nowrap;
  align-items: center;
  width: 100%;
  padding: 8px;
  font-size: 14px;
}
.db-aside-list-item-link:hover {
  background: rgba(255, 255, 255, 0.04);
}
.db-aside-list-item-link.active {
  color: #FBC02D;
}
.db-aside-list-item-link-label {
  margin-left: 8px;
  margin-right: 8px;
}
.db-aside-list-item-link .navicon {
  color: rgba(160, 160, 179, 0.5);
}
.db-aside-list-item-link-expand {
  margin-left: auto;
  margin-right: 8px;
}
.db-aside-list-item-link-expand.expanded {
  transform: rotate(90deg);
}
.db-aside-list-nested {
  padding: 0;
  list-style: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  overflow: hidden;
  max-height: 0;
  transition: 0.4s;
}
.db-aside-list-nested.expanded {
  max-height: 1000px;
}
.db-aside-list-nested-item-link {
  position: relative;
  display: flex;
  white-space: nowrap;
  align-items: center;
  width: 100%;
  padding: 4px 8px 4px 25px;
  font-size: 13px;
  transition: 0.2s;
  justify-content: space-between;
}
.db-aside-list-nested-item-link:hover {
  background: rgba(255, 255, 255, 0.04);
}
.db-aside-list-nested-item-link:hover .favorite {
  pointer-events: auto;
  opacity: 1;
}
.db-aside-list-nested-item-link.active {
  color: #FBC02D;
  background: rgba(255, 255, 255, 0.06);
}
.db-aside-list-nested-item-link-icon {
  font-size: 20px;
  line-height: 20px;
  width: 20px;
  height: 20px;
}
.db-aside-list-nested-item-link-label {
  margin-left: 8px;
  margin-right: 8px;
}
.db-aside-list-nested-item-link-expand {
  font-size: 20px;
  line-height: 20px;
  width: 20px;
  height: 20px;
  margin-left: auto;
  margin-right: 8px;
}
.db-aside-list-nested-item-link-expand.expanded {
  transform: rotate(90deg);
}
.db-aside-list-nested-item-expand {
  padding: 0;
  list-style: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  overflow: hidden;
}
.db-aside-list-nested-item-expand-link {
  position: relative;
  display: flex;
  white-space: nowrap;
  align-items: center;
  width: 100%;
  padding: 4px 8px 4px 33px;
  font-size: 13px;
  transition: 0.2s;
  justify-content: space-between;
}
.db-aside-list-nested-item-expand-link:hover {
  background: rgba(255, 255, 255, 0.04);
}
.db-aside-list-nested-item-expand-link:hover .favorite {
  pointer-events: auto;
  opacity: 1;
}
.db-aside-list-nested-item-expand-link.active {
  color: #FBC02D;
}
.db-aside-list-nested-item-expand-link.expanded {
  transform: rotate(90deg);
}
.db-aside-list-nested-item-expand-link i {
  padding-right: 2px;
  margin: 0 0 0 auto;
  color: rgba(160, 160, 179, 0.5);
  font-size: 15px;
}
/*
 * Dashboard header
 */
.db-header {
  position: fixed;
  z-index: 100;
  left: 180px;
  top: 0;
  width: calc(100% - 180px);
  height: 64px;
  color: #b8c2d6;
  background: #2D3A69;
}
.db-header .header-profile-picture {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 10px;
}
.db-header .header-select {
  padding-top: 18px;
}
.db-header .cont-1 {
  flex: 2;
}
.db-header .cont-2 {
  flex: 0 1 auto;
}
.db-header .cont-2 .mat-icon-button {
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-size: 20px;
}
.db-header .cont-1-2 {
  flex: 1;
}
.db-header .cont-1-2 .header-select {
  flex: 1;
  width: 100px;
}
@media (max-width: 1200px) {
  .db-header .cont-1-2 .header-select {
    flex: 0 1 auto;
    width: 19vw;
  }
}
/*
 * Dashboard main
 */
.db-main {
  overflow-x: hidden;
  position: relative;
  left: 180px;
  top: 64px;
  width: calc(100% - 180px);
  min-height: calc(100vh - 64px);
  background: #e9ebec;
  -webkit-overflow-scrolling: touch;
}
/*
 * Dashboard tabs
 */
.db-tabs {
  position: fixed !important;
  z-index: 2;
  left: 180px;
  width: calc(100% - 180px);
  transition: 0.2s;
}
.db-tabs .mat-tab-links {
  overflow-x: auto;
  background: white;
}
.db-tabs.filled {
  background: white;
  border: 1px solid #ccc;
  height: 48px;
}
.tab-active {
  background: #eee;
  font-weight: bold;
}
/*
 * Dashboard tabs
 */
.db-subtabs {
  display: flex;
  align-items: center;
  position: fixed;
  z-index: 2;
  right: 4px;
  height: 48px;
}
.db-subtabs-action {
  margin-left: 5px;
}
.tab-nav-drop-down-added .db-subtabs {
  display: flex;
  position: relative;
  right: unset;
  height: unset;
  flex-direction: column;
  align-items: flex-start;
}
.tab-nav-drop-down-added .db-subtabs-action {
  margin-left: 0;
  margin-top: 10px;
  width: 100%;
  padding: 0 10px;
}
.tab-nav-drop-down-added .db-subtabs-action > * {
  width: 100% !important;
}
/*
 * Loading toast
 */
.loading-toast {
  display: flex;
  align-items: center;
  opacity: 0;
  position: fixed;
  z-index: 100;
  bottom: 0;
  left: 50%;
  padding: 8px 16px;
  border-top-left-radius: 0.6rem;
  border-top-right-radius: 0.6rem;
  background: #303a48;
  color: white;
  transform: translateX(-50%) translateY(100%);
  transition: 0.4s;
  -webkit-animation-delay: 300ms;
          animation-delay: 300ms;
}
.loading-toast.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.high-performance .loading-toast {
  transition: none !important;
  -webkit-animation-delay: 0ms !important;
          animation-delay: 0ms !important;
}
/*
 * Compact navigation style
 */
.layout-compact .db-aside {
  width: 40px !important;
}
.layout-compact .db-aside-list-item-link-label,
.layout-compact .db-aside-list-item-link-expand,
.layout-compact .db-aside-list-nested {
  display: none;
}
.layout-compact .db-header,
.layout-compact .db-tabs,
.layout-compact .db-main {
  left: 40px !important;
  width: calc(100% - 40px) !important;
}
/*
 * Simple sidebar
 */
simple-sidebar {
  overflow-y: auto;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  height: 100%;
  background: white;
  color: rgba(0, 0, 0, 0.6);
  transform: translateX(100%);
  transition: 0.2s;
}
simple-sidebar.active {
  box-shadow: -4px 0 8px rgba(0, 0, 0, 0.2);
  transform: translateX(0);
}
@media (max-width: 450px) {
  simple-sidebar {
    width: 100% !important;
  }
}
simple-sidebar .simple-sidebar-header, simple-sidebar .simple-sidebar-footer {
  height: 64px;
  padding: 0 20px;
  background: #f5f5f5;
}
simple-sidebar .simple-sidebar-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
simple-sidebar .simple-sidebar-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
simple-sidebar .simple-sidebar-content {
  overflow-y: auto;
  height: calc(100vh - 128px);
}
simple-sidebar .simple-sidebar-content.no-footer {
  height: calc(100vh - 64px);
}
simple-sidebar .hidden {
  display: none;
}
/*
 * Layout responsive style
 */
@media screen and (max-width: 1200px) {
  .db-aside {
    display: none !important;
  }

  .db-header,
.db-tabs,
.db-main {
    left: 0 !important;
    width: 100% !important;
  }
}
.long-select {
  width: 300px;
}
.notification-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  line-height: 18px;
  font-size: 10px;
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
  background: #FBC02D;
}
.read-format h1, .read-format h2, .read-format h3, .read-format h4, .read-format h5, .read-format h6 {
  margin: 1em 0 0.5em 0;
}
.read-format p, .read-format table, .read-format img {
  margin: 0 0 0.5em 0;
}
.read-format ul, .read-format ol {
  margin: -0.25em 0 0.5em 0;
}
.read-format a {
  text-decoration: underline;
}
.read-format hr {
  margin: 0.5em 0 0.5em 0;
}
.table-heading {
  font-weight: 500;
  background: rgba(0, 0, 0, 0.04);
  padding: 5px;
  border-bottom: 1px solid #999;
  text-align: center;
  font-size: 1.9rem;
}
/*
 * Simple table
 */
.simple-table {
  border-collapse: collapse;
  width: calc(100% - 1px);
  text-align: left;
  background: white;
  /*
   * Smaller screen layout
   */
  /*
  @media screen and (max-width: $screen-s) {
    box-shadow: none;

    tr {
      display   : block;
      margin    : 1rem 0;
      box-shadow: $box-shadow;
    }

    td {
      display       : block;
      text-align    : right;
      border-bottom : 1px solid map_get($foreground, divider);

      &:nth-child(1) {
        padding: .8rem .8rem .8rem .8rem;
      }

      &:nth-last-child(1) {
        padding: .8rem .8rem .8rem .8rem;
      }

    }

    tr td:nth-last-child(1) {
      border-bottom: none;
    }

    td:before {
      content : attr(data-label);
      float   : left;
    }

    thead {
      opacity : 0;
      position: absolute;
      z-index : -1;
    }

  }
  */
}
.simple-table tr {
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.2);
}
.simple-table tr:nth-child(2n-1) {
  background: rgba(0, 0, 0, 0.04);
}
.simple-table tr:hover {
  background: #eee;
}
.simple-table tr.label-block {
  border-bottom: 1px solid rgba(0, 0, 0, 0.9);
}
.simple-table nelson-report-row:nth-child(2n) tr {
  background: white;
}
.simple-table nelson-report-row:nth-child(2n) tr:hover {
  background: #eee;
}
.simple-table thead tr:nth-child(1) {
  background: white;
}
.simple-table tbody tr:nth-last-child(1) {
  border-bottom: none;
}
.simple-table th {
  padding: 1.6rem 0.8rem;
  font-size: 1.1rem;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.6);
}
.simple-table th:nth-child(1) {
  padding: 0.8rem 0.8rem 0.8rem 2.4rem;
}
.simple-table th:nth-last-child(1) {
  padding: 0.8rem 2.4rem 0.8rem 0.8rem;
}
.simple-table td {
  padding: 0.8rem;
  font-size: 1.2rem;
  color: rgba(0, 0, 0, 0.9);
}
.simple-table td:nth-child(1) {
  padding: 0.8rem 0.8rem 0.8rem 2.4rem;
}
.simple-table td:nth-last-child(1) {
  padding: 0.8rem 2.4rem 0.8rem 0.8rem;
}
/*
 * No style table
 */
.no-style-table {
  border-collapse: collapse;
  width: 100%;
  text-align: left;
}
.no-style-table td, .no-style-table th {
  padding: 0.4rem;
}
/*
 * Print table
 */
.print-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 10px;
}
.print-table tr:nth-child(2n) {
  background: #ddd;
}
.print-table td, .print-table th {
  padding: 2px 4px;
  text-align: left;
}
@media not print {
  .print-table.header-sticky {
    table-layout: fixed;
  }
  .print-table.header-sticky tbody {
    display: block;
    overflow: auto;
    max-height: 450px;
    width: 100%;
  }
  .print-table.header-sticky tr {
    display: flex;
  }
}
.label-block {
  font-weight: 700;
  cursor: pointer;
  border-bottom: 1px solid black !important;
}
@media (max-width: 640px) {
  .report-table td,
.report-table th {
    padding: 2px 4px 2px 2px !important;
    font-size: 10px !important;
  }
}
.report-tag {
  position: relative;
}
.report-tag td {
  text-align: center;
  padding: 0 !important;
}
.report-tag td:first-child {
  overflow: hidden;
  font-size: 1px;
  width: 50px;
}
@media (max-width: 640px) {
  .report-tag td:first-child {
    width: 20px;
  }
}
.report-tag td:first-child span {
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
          text-orientation: mixed;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
}
@media (max-width: 640px) {
  .report-tag td:first-child span {
    font-size: 10px;
  }
}
@media (max-width: 640px) {
  .report-tag td {
    padding: 0 !important;
  }
}
.grind-new-page {
  page-break-before: always;
}
.sticky-header {
  position: absolute;
  z-index: -1;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 16px 0;
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.16);
  background: white;
  border-top: 1px solid #cccccc;
}
.sticky-header.active {
  opacity: 1;
  z-index: 10;
}
.sticky-header.no-pad {
  padding: 0 !important;
}
.nada-column-count {
  line-height: 0;
  border-bottom: 1px solid black !important;
}
.nada-avg-row {
  background: #f6dad5 !important;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.25);
}
.nada-boc-row {
  background: #c7e2df !important;
}
.nada-total-row {
  background: #e3f2fd !important;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.25);
}
.nada-highlight-field {
  outline: 2px solid;
  background: #ccd9d7;
}
.nada-table-header th {
  background: #dfdac9;
  vertical-align: top;
  padding: 0.5rem !important;
}
@media (max-width: 600px) {
  .nada-table-header th {
    min-width: 90px;
  }
}
.nada-table-header th.sub-header {
  padding: 1.6rem 0.8rem !important;
}
.nada-table-header ::ng-deep p {
  font-size: 12px;
}
@media (max-width: 600px) {
  .nada-table-header ::ng-deep p {
    font-size: 10px;
  }
}
@media (max-width: 640px) {
  .report-hide-td-mobile {
    display: none;
  }
}
@media (max-width: 640px) {
  .report-table-per > td {
    display: none;
  }
}
@media (max-width: 640px) {
  .report-table-count > td {
    display: none;
  }
}
@media (max-width: 640px) {
  .report-table-percent > td {
    display: none;
  }
}
@media (max-width: 640px) {
  .report-table-budget > td {
    display: none;
  }
}
@media (max-width: 640px) {
  .order-xs-1 {
    order: 1;
  }
}
@media (max-width: 640px) {
  .order-xs-2 {
    order: 2;
  }
}
@media (max-width: 640px) {
  .order-xs-3 {
    order: 3;
  }
}
@media (max-width: 640px) {
  .order-xs-4 {
    order: 4;
  }
}
.details-header {
  cursor: pointer;
}
.details-header mat-icon {
  margin-left: 5px;
  transition: opacity 0.2s;
  opacity: 0;
  visibility: hidden;
}
.details-header:hover mat-icon {
  opacity: 1;
  visibility: visible;
}
.report-compact .report-table-container h5, .report-compact .report-table-container h4 {
  font-size: 18px;
}
.report-compact .report-table-container .mat-icon-button {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.report-compact .report-table-container .report-tag td:first-child {
  width: 1px;
}
.report-compact .report-table-container .report-tag td:first-child span {
  font-size: 11px;
}
.report-compact .report-table-container .simple-table td {
  padding: 4px 4px 4px 12px;
  font-size: 11px;
}
.report-compact .report-table-container .simple-table td:nth-child(1) {
  padding: 4px 4px 4px 12px;
  font-size: 11px;
}
.report-compact .report-table-container .simple-table th {
  padding: 4px 4px 4px 12px;
  font-size: 11px;
}
.report-compact .report-table-container .mat-card {
  padding: 12px;
}
.report-spreadsheet .report-table-container h5, .report-spreadsheet .report-table-container h4 {
  font-size: 14px;
}
.report-spreadsheet .report-table-container .mat-icon-button {
  width: 20px;
  height: 20px;
  line-height: 20px;
}
.report-spreadsheet .report-table-container .report-tag td:first-child {
  width: 1px;
}
.report-spreadsheet .report-table-container .report-tag td:first-child span {
  font-size: 9px;
}
.report-spreadsheet .report-table-container .simple-table td {
  padding: 2px 2px 2px 6px;
  font-size: 9px;
  border: 1px solid #808080;
  line-height: 1;
}
.report-spreadsheet .report-table-container .simple-table td:nth-child(1) {
  padding: 2px 2px 2px 6px;
  font-size: 9px;
}
.report-spreadsheet .report-table-container .simple-table th {
  padding: 2px 2px 2px 6px;
  font-size: 9px;
}
.report-spreadsheet .report-table-container .mat-card {
  padding: 8px;
}
.report-spreadsheet .report-table-container .simple-table thead tr[style] th {
  border: 1px solid #808080;
}
.report-spreadsheet .report-table-container .simple-table thead tr[style] + tr th {
  border: 1px solid #808080;
}
.spreadsheet-table td {
  border: 1px solid #aaa;
  padding: 5px !important;
}
.spreadsheet-table td:nth-child(1), .spreadsheet-table th:nth-child(1) {
  background: white;
}
.full-row td {
  padding: 5px;
}
.weekend-col {
  pointer-events: none;
  background: #ccc;
  color: transparent;
}
.weekend-col span {
  opacity: 0;
}
.year-row td, .year-row td:nth-child(1) {
  background: #b2dfdb;
}
.daily-avg-row td, .daily-avg-row td:nth-child(1) {
  background: #bbdefb;
}
.clear-row td {
  background: #fff;
}
.report-row-details {
  width: 200px !important;
  word-break: break-word !important;
}
.row-expand-indicator {
  margin-left: -10px;
}
.report-row-line-rollup {
  background: white !important;
}
.report-row-line-rollup td {
  padding: 4px 8px !important;
  font-size: 10px;
}
.report-row-line-rollup td:first-child {
  padding-left: 38px !important;
}
nelson-report-row .report-row-line-rollup {
  background: white !important;
}
.theme-dark nelson-report-row .report-row-line-rollup.report-row-line-rollup {
  background: #424242 !important;
}
nelson-report-row:nth-child(2n-1) .report-row-line-rollup {
  background: white !important;
}
.theme-dark nelson-report-row:nth-child(2n-1) .report-row-line-rollup.report-row-line-rollup {
  background: rgba(255, 255, 255, 0.08) !important;
}
.theme-dark nelson-report-row:hover .report-row-line-rollup.report-row-line-rollup {
  background: rgba(255, 255, 255, 0.16) !important;
}
.report-row-line-rollup-header {
  background: grey;
}
.report-row-line-rollup-header .report-row-details {
  font-weight: bold !important;
}
.report-table-container {
  padding-top: 6rem;
}
.spreadsheet [class^=col-] {
  padding: 0 !important;
}
.spreadsheet .sticky-header {
  padding: 0;
}
.spreadsheet .sticky-header h4 {
  color: white !important;
  font-size: 1.2rem !important;
  font-weight: normal !important;
}
.spreadsheet .sticky-header th {
  padding: 2px !important;
}
.spreadsheet .mat-card {
  padding: 0 !important;
  border-radius: 0 !important;
}
.spreadsheet .mat-card-title {
  margin-bottom: 0 !important;
  padding: 2px 2px 2px 32px !important;
  background: #666 !important;
}
.spreadsheet .mat-card-title .mat-icon-button {
  width: 20px !important;
  height: 20px !important;
  line-height: 20px !important;
}
.spreadsheet .mat-card-title .mat-icon-button .mat-icon {
  line-height: 20px !important;
  width: 20px !important;
  height: 20px !important;
  font-size: 20px !important;
  color: white !important;
}
.spreadsheet .mat-card-title .mat-form-field {
  font-size: 14px;
}
.spreadsheet .mat-card-title .mat-form-field .mat-form-field-wrapper {
  padding-bottom: 0;
}
.spreadsheet .mat-card-title .mat-form-field .mat-form-field-infix {
  padding: 0;
  border-top: none;
}
.spreadsheet .mat-card-title .mat-form-field .mat-form-field-underline {
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.4);
}
.spreadsheet .mat-card-title .mat-form-field .mat-input-element {
  color: white !important;
}
.spreadsheet .mat-card-title .mat-form-field .mat-form-field-label {
  top: 10px;
  color: rgba(255, 255, 255, 0.6);
  visibility: visible;
}
.spreadsheet .mat-card-title .mat-form-field.mat-focused .mat-form-field-label {
  visibility: hidden;
}
.spreadsheet .nada-column-count th {
  line-height: 1 !important;
}
.spreadsheet .mat-card-title > div > div > mat-menu {
  display: none !important;
}
.spreadsheet .mat-card-title > div > div > h5 {
  color: white !important;
  font-size: 1.2rem !important;
  font-weight: normal !important;
}
.spreadsheet .report-table-container {
  padding: 6rem 2rem 2rem;
}
.spreadsheet .report-table-container.hot-sheet {
  padding-top: 2rem !important;
}
.spreadsheet .report-table > thead > tr > th {
  padding: 2px !important;
  font-weight: normal !important;
}
.spreadsheet .report-tag td:first-child {
  width: 30px !important;
  border-right: 1px solid #FBC02D !important;
}
.spreadsheet .report-table td {
  padding: 2px !important;
  font-weight: normal !important;
  border: none !important;
}
.spreadsheet .report-table td:empty {
  padding: 0 !important;
}
.spreadsheet .report-row-details {
  width: 300px !important;
}
.spreadsheet .report-table th {
  background: #ddd !important;
  border: 1px solid #bbb !important;
}
.spreadsheet .spreadsheet-table td:nth-child(1),
.spreadsheet .clear-row td {
  background: #eee !important;
}
.spreadsheet .report-table .report-nested-row {
  background: #d2d2d2 !important;
}
.spreadsheet .report-table .report-nested-row > td:nth-child(1) {
  padding-left: 20px !important;
  border-left: 2px solid rgba(251, 192, 45, 0.5) !important;
}
.spreadsheet .report-table .report-nested-row > td:nth-last-child(1) {
  border-right: 2px solid rgba(251, 192, 45, 0.5) !important;
}
.spreadsheet .report-table .report-nested-row.report-nested-row-first > td {
  border-top: 2px solid rgba(251, 192, 45, 0.5) !important;
}
.spreadsheet .report-table .report-nested-row.report-nested-row-last > td {
  border-bottom: 2px solid rgba(251, 192, 45, 0.5) !important;
}
.spreadsheet .report-row-line-rollup-header {
  background: grey;
}
.spreadsheet .report-row-line-rollup-header .report-row-details {
  font-weight: bold !important;
}
.spreadsheet .report-row-line-rollup td {
  padding: 2px !important;
  font-size: 10px;
}
.spreadsheet .report-row-line-rollup td:first-child {
  padding-left: 20px !important;
}
.spreadsheet .report-table-per > td:nth-child(1),
.spreadsheet .report-table-count > td:nth-child(1) {
  padding-left: 20px !important;
}
.spreadsheet .row-expand-indicator {
  margin-left: 0;
}
.spreadsheet .label-block {
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
}
.spreadsheet .details-th {
  width: 70px;
}
.spreadsheet nelson-rendered-report-schedule .simple-table th,
.spreadsheet .nelson-rendered-report-schedule-sticky .simple-table th {
  padding: 2px !important;
  font-weight: normal !important;
}
.spreadsheet nelson-rendered-report-schedule .simple-table th:nth-child(1),
.spreadsheet .nelson-rendered-report-schedule-sticky .simple-table th:nth-child(1) {
  padding: 2px 2px 2px 6px !important;
}
.spreadsheet nelson-rendered-report-schedule .simple-table td,
.spreadsheet .nelson-rendered-report-schedule-sticky .simple-table td {
  padding: 2px !important;
  font-weight: normal !important;
  border: none !important;
}
.spreadsheet nelson-rendered-report-schedule .simple-table td:nth-child(1),
.spreadsheet .nelson-rendered-report-schedule-sticky .simple-table td:nth-child(1) {
  padding: 2px 2px 2px 6px !important;
}
.spreadsheet nelson-rendered-report-schedule .simple-table .mat-icon-button,
.spreadsheet .nelson-rendered-report-schedule-sticky .simple-table .mat-icon-button {
  height: 24px;
  width: 24px;
  line-height: 24px;
}
/*
 * Flex
 */
.flex {
  display: flex;
  flex-wrap: wrap;
}
.iflex {
  display: inline-flex;
}
.fw-wrap {
  flex-wrap: wrap;
}
.fw-nowrap {
  flex-wrap: nowrap;
}
.fd-row {
  flex-direction: row;
}
.fd-row-rev {
  flex-direction: row-reverse;
}
.fd-col {
  flex-direction: column;
}
.fd-col-rev {
  flex-direction: column-reverse;
}
.ai-stretch {
  align-items: stretch;
}
.ai-base {
  align-items: baseline;
}
.ai-start {
  align-items: flex-start;
}
.ai-end {
  align-items: flex-end;
}
.ai-center {
  align-items: center;
}
.ac-stretch {
  align-content: stretch;
}
.ac-start {
  align-content: flex-start;
}
.ac-end {
  align-content: flex-end;
}
.ac-center {
  align-content: center;
}
.ac-around {
  align-content: space-around;
}
.ac-between {
  align-content: space-between;
}
.jc-start {
  justify-content: flex-start;
}
.jc-end {
  justify-content: flex-end;
}
.jc-center {
  justify-content: center;
}
.jc-around {
  justify-content: space-around;
}
.jc-between {
  justify-content: space-between;
}
.jc-evenly {
  justify-content: space-evenly;
}
.flex-1 {
  flex: 1;
}
@media (max-width: 1200px) {
  .fd-m-col {
    flex-direction: column;
  }

  .jc-m-evenly {
    justify-content: space-evenly;
  }

  .jc-m-start {
    justify-content: flex-start;
  }

  .ai-m-stretch {
    align-items: stretch;
  }
}
@media (max-width: 850px) {
  .fw-s-nowrap {
    flex-wrap: nowrap;
  }

  .jc-s-start {
    justify-content: flex-start;
  }

  .jc-s-between {
    justify-content: space-between;
  }
}
/*
 * Width
 */
.w-full {
  width: 100%;
}
@media (max-width: 850px) {
  .w-full-s {
    width: 100%;
  }
}
/*
 * Height
 */
.h-full {
  height: 100%;
}
/*
 * Text align
 */
.ta-left {
  text-align: left;
}
.ta-center {
  text-align: center;
}
.ta-right {
  text-align: right;
}
.ta-justify {
  text-align: justify;
}
/*
 * Border-radius
 */
.br-round {
  border-radius: 50%;
}
/*
 * Text transform
 */
.tt-uppercase {
  text-transform: uppercase;
}
/*
 * Hide & show
 */
@media (max-width: 450px) {
  .hide-xs {
    display: none;
  }
}
@media (max-width: 850px) {
  .hide-s {
    display: none;
  }
}
@media (max-width: 1200px) {
  .hide-m {
    display: none;
  }
}
.show-xs {
  display: none;
}
@media (max-width: 450px) {
  .show-xs {
    display: inline-block;
  }
}
.show-s {
  display: none;
}
@media (max-width: 850px) {
  .show-s {
    display: inline-block;
  }
}
.show-m {
  display: none;
}
@media (max-width: 1200px) {
  .show-m {
    display: inline-block;
  }
}
/*
 * Columns
 */
.columns-1 {
  -moz-columns: 1;
       columns: 1;
}
.columns-2 {
  -moz-columns: 2;
       columns: 2;
}
.columns-3 {
  -moz-columns: 3;
       columns: 3;
}
.columns-4 {
  -moz-columns: 4;
       columns: 4;
}
.columns-5 {
  -moz-columns: 5;
       columns: 5;
}
.columns-6 {
  -moz-columns: 6;
       columns: 6;
}
.columns-7 {
  -moz-columns: 7;
       columns: 7;
}
.columns-8 {
  -moz-columns: 8;
       columns: 8;
}
.columns-9 {
  -moz-columns: 9;
       columns: 9;
}
.columns-10 {
  -moz-columns: 10;
       columns: 10;
}
.columns-11 {
  -moz-columns: 11;
       columns: 11;
}
.columns-12 {
  -moz-columns: 12;
       columns: 12;
}
@media screen and (max-width: 1200px) {
  .columns-m-1 {
    -moz-columns: 1;
         columns: 1;
  }

  .columns-m-2 {
    -moz-columns: 2;
         columns: 2;
  }

  .columns-m-3 {
    -moz-columns: 3;
         columns: 3;
  }

  .columns-m-4 {
    -moz-columns: 4;
         columns: 4;
  }

  .columns-m-5 {
    -moz-columns: 5;
         columns: 5;
  }

  .columns-m-6 {
    -moz-columns: 6;
         columns: 6;
  }

  .columns-m-7 {
    -moz-columns: 7;
         columns: 7;
  }

  .columns-m-8 {
    -moz-columns: 8;
         columns: 8;
  }

  .columns-m-9 {
    -moz-columns: 9;
         columns: 9;
  }

  .columns-m-10 {
    -moz-columns: 10;
         columns: 10;
  }

  .columns-m-11 {
    -moz-columns: 11;
         columns: 11;
  }

  .columns-m-12 {
    -moz-columns: 12;
         columns: 12;
  }
}
@media screen and (max-width: 850px) {
  .columns-s-1 {
    -moz-columns: 1;
         columns: 1;
  }

  .columns-s-2 {
    -moz-columns: 2;
         columns: 2;
  }

  .columns-s-3 {
    -moz-columns: 3;
         columns: 3;
  }

  .columns-s-4 {
    -moz-columns: 4;
         columns: 4;
  }

  .columns-s-5 {
    -moz-columns: 5;
         columns: 5;
  }

  .columns-s-6 {
    -moz-columns: 6;
         columns: 6;
  }

  .columns-s-7 {
    -moz-columns: 7;
         columns: 7;
  }

  .columns-s-8 {
    -moz-columns: 8;
         columns: 8;
  }

  .columns-s-9 {
    -moz-columns: 9;
         columns: 9;
  }

  .columns-s-10 {
    -moz-columns: 10;
         columns: 10;
  }

  .columns-s-11 {
    -moz-columns: 11;
         columns: 11;
  }

  .columns-s-12 {
    -moz-columns: 12;
         columns: 12;
  }
}
@media screen and (max-width: 450px) {
  .columns-xs-1 {
    -moz-columns: 1;
         columns: 1;
  }

  .columns-xs-2 {
    -moz-columns: 2;
         columns: 2;
  }

  .columns-xs-3 {
    -moz-columns: 3;
         columns: 3;
  }

  .columns-xs-4 {
    -moz-columns: 4;
         columns: 4;
  }

  .columns-xs-5 {
    -moz-columns: 5;
         columns: 5;
  }

  .columns-xs-6 {
    -moz-columns: 6;
         columns: 6;
  }

  .columns-xs-7 {
    -moz-columns: 7;
         columns: 7;
  }

  .columns-xs-8 {
    -moz-columns: 8;
         columns: 8;
  }

  .columns-xs-9 {
    -moz-columns: 9;
         columns: 9;
  }

  .columns-xs-10 {
    -moz-columns: 10;
         columns: 10;
  }

  .columns-xs-11 {
    -moz-columns: 11;
         columns: 11;
  }

  .columns-xs-12 {
    -moz-columns: 12;
         columns: 12;
  }
}
/*
 * Padding
 */
.p-a-0 {
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}
.p-a-xxs {
  padding: 2px;
}
@media screen and (min-width: 600px) {
  .p-a-xxs {
    padding: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-a-xxs {
    padding: 4px;
  }
}
.p-a-xs {
  padding: 5px;
}
@media screen and (min-width: 600px) {
  .p-a-xs {
    padding: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-a-xs {
    padding: 10px;
  }
}
.p-a-s {
  padding: 10px;
}
@media screen and (min-width: 600px) {
  .p-a-s {
    padding: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-a-s {
    padding: 20px;
  }
}
.p-a-m {
  padding: 20px;
}
@media screen and (min-width: 600px) {
  .p-a-m {
    padding: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-a-m {
    padding: 40px;
  }
}
.p-a-l {
  padding: 40px;
}
@media screen and (min-width: 600px) {
  .p-a-l {
    padding: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-a-l {
    padding: 80px;
  }
}
.p-a-xl {
  padding: 80px;
}
@media screen and (min-width: 600px) {
  .p-a-xl {
    padding: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-a-xl {
    padding: 160px;
  }
}
.p-x-xxs {
  padding-left: 2px;
}
@media screen and (min-width: 600px) {
  .p-x-xxs {
    padding-left: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-x-xxs {
    padding-left: 4px;
  }
}
.p-x-xxs {
  padding-right: 2px;
}
@media screen and (min-width: 600px) {
  .p-x-xxs {
    padding-right: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-x-xxs {
    padding-right: 4px;
  }
}
.p-x-xs {
  padding-left: 5px;
}
@media screen and (min-width: 600px) {
  .p-x-xs {
    padding-left: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-x-xs {
    padding-left: 10px;
  }
}
.p-x-xs {
  padding-right: 5px;
}
@media screen and (min-width: 600px) {
  .p-x-xs {
    padding-right: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-x-xs {
    padding-right: 10px;
  }
}
.p-x-s {
  padding-left: 10px;
}
@media screen and (min-width: 600px) {
  .p-x-s {
    padding-left: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-x-s {
    padding-left: 20px;
  }
}
.p-x-s {
  padding-right: 10px;
}
@media screen and (min-width: 600px) {
  .p-x-s {
    padding-right: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-x-s {
    padding-right: 20px;
  }
}
.p-x-m {
  padding-left: 20px;
}
@media screen and (min-width: 600px) {
  .p-x-m {
    padding-left: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-x-m {
    padding-left: 40px;
  }
}
.p-x-m {
  padding-right: 20px;
}
@media screen and (min-width: 600px) {
  .p-x-m {
    padding-right: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-x-m {
    padding-right: 40px;
  }
}
.p-x-l {
  padding-left: 40px;
}
@media screen and (min-width: 600px) {
  .p-x-l {
    padding-left: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-x-l {
    padding-left: 80px;
  }
}
.p-x-l {
  padding-right: 40px;
}
@media screen and (min-width: 600px) {
  .p-x-l {
    padding-right: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-x-l {
    padding-right: 80px;
  }
}
.p-x-xl {
  padding-left: 80px;
}
@media screen and (min-width: 600px) {
  .p-x-xl {
    padding-left: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-x-xl {
    padding-left: 160px;
  }
}
.p-x-xl {
  padding-right: 80px;
}
@media screen and (min-width: 600px) {
  .p-x-xl {
    padding-right: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-x-xl {
    padding-right: 160px;
  }
}
.p-y-xxs {
  padding-top: 2px;
}
@media screen and (min-width: 600px) {
  .p-y-xxs {
    padding-top: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-y-xxs {
    padding-top: 4px;
  }
}
.p-y-xxs {
  padding-bottom: 2px;
}
@media screen and (min-width: 600px) {
  .p-y-xxs {
    padding-bottom: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-y-xxs {
    padding-bottom: 4px;
  }
}
.p-y-xs {
  padding-top: 5px;
}
@media screen and (min-width: 600px) {
  .p-y-xs {
    padding-top: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-y-xs {
    padding-top: 10px;
  }
}
.p-y-xs {
  padding-bottom: 5px;
}
@media screen and (min-width: 600px) {
  .p-y-xs {
    padding-bottom: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-y-xs {
    padding-bottom: 10px;
  }
}
.p-y-s {
  padding-top: 10px;
}
@media screen and (min-width: 600px) {
  .p-y-s {
    padding-top: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-y-s {
    padding-top: 20px;
  }
}
.p-y-s {
  padding-bottom: 10px;
}
@media screen and (min-width: 600px) {
  .p-y-s {
    padding-bottom: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-y-s {
    padding-bottom: 20px;
  }
}
.p-y-m {
  padding-top: 20px;
}
@media screen and (min-width: 600px) {
  .p-y-m {
    padding-top: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-y-m {
    padding-top: 40px;
  }
}
.p-y-m {
  padding-bottom: 20px;
}
@media screen and (min-width: 600px) {
  .p-y-m {
    padding-bottom: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-y-m {
    padding-bottom: 40px;
  }
}
.p-y-l {
  padding-top: 40px;
}
@media screen and (min-width: 600px) {
  .p-y-l {
    padding-top: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-y-l {
    padding-top: 80px;
  }
}
.p-y-l {
  padding-bottom: 40px;
}
@media screen and (min-width: 600px) {
  .p-y-l {
    padding-bottom: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-y-l {
    padding-bottom: 80px;
  }
}
.p-y-xl {
  padding-top: 80px;
}
@media screen and (min-width: 600px) {
  .p-y-xl {
    padding-top: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-y-xl {
    padding-top: 160px;
  }
}
.p-y-xl {
  padding-bottom: 80px;
}
@media screen and (min-width: 600px) {
  .p-y-xl {
    padding-bottom: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-y-xl {
    padding-bottom: 160px;
  }
}
.p-t-xxs {
  padding-top: 2px;
}
@media screen and (min-width: 600px) {
  .p-t-xxs {
    padding-top: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-t-xxs {
    padding-top: 4px;
  }
}
.p-t-xs {
  padding-top: 5px;
}
@media screen and (min-width: 600px) {
  .p-t-xs {
    padding-top: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-t-xs {
    padding-top: 10px;
  }
}
.p-t-s {
  padding-top: 10px;
}
@media screen and (min-width: 600px) {
  .p-t-s {
    padding-top: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-t-s {
    padding-top: 20px;
  }
}
.p-t-m {
  padding-top: 20px;
}
@media screen and (min-width: 600px) {
  .p-t-m {
    padding-top: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-t-m {
    padding-top: 40px;
  }
}
.p-t-l {
  padding-top: 40px;
}
@media screen and (min-width: 600px) {
  .p-t-l {
    padding-top: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-t-l {
    padding-top: 80px;
  }
}
.p-t-xl {
  padding-top: 80px;
}
@media screen and (min-width: 600px) {
  .p-t-xl {
    padding-top: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-t-xl {
    padding-top: 160px;
  }
}
.p-r-xxs {
  padding-right: 2px;
}
@media screen and (min-width: 600px) {
  .p-r-xxs {
    padding-right: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-r-xxs {
    padding-right: 4px;
  }
}
.p-r-xs {
  padding-right: 5px;
}
@media screen and (min-width: 600px) {
  .p-r-xs {
    padding-right: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-r-xs {
    padding-right: 10px;
  }
}
.p-r-s {
  padding-right: 10px;
}
@media screen and (min-width: 600px) {
  .p-r-s {
    padding-right: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-r-s {
    padding-right: 20px;
  }
}
.p-r-m {
  padding-right: 20px;
}
@media screen and (min-width: 600px) {
  .p-r-m {
    padding-right: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-r-m {
    padding-right: 40px;
  }
}
.p-r-l {
  padding-right: 40px;
}
@media screen and (min-width: 600px) {
  .p-r-l {
    padding-right: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-r-l {
    padding-right: 80px;
  }
}
.p-r-xl {
  padding-right: 80px;
}
@media screen and (min-width: 600px) {
  .p-r-xl {
    padding-right: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-r-xl {
    padding-right: 160px;
  }
}
.p-b-0 {
  padding-bottom: 0;
}
.p-b-xxs {
  padding-bottom: 2px;
}
@media screen and (min-width: 600px) {
  .p-b-xxs {
    padding-bottom: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-b-xxs {
    padding-bottom: 4px;
  }
}
.p-b-xs {
  padding-bottom: 5px;
}
@media screen and (min-width: 600px) {
  .p-b-xs {
    padding-bottom: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-b-xs {
    padding-bottom: 10px;
  }
}
.p-b-s {
  padding-bottom: 10px;
}
@media screen and (min-width: 600px) {
  .p-b-s {
    padding-bottom: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-b-s {
    padding-bottom: 20px;
  }
}
.p-b-m {
  padding-bottom: 20px;
}
@media screen and (min-width: 600px) {
  .p-b-m {
    padding-bottom: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-b-m {
    padding-bottom: 40px;
  }
}
.p-b-l {
  padding-bottom: 40px;
}
@media screen and (min-width: 600px) {
  .p-b-l {
    padding-bottom: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-b-l {
    padding-bottom: 80px;
  }
}
.p-b-xl {
  padding-bottom: 80px;
}
@media screen and (min-width: 600px) {
  .p-b-xl {
    padding-bottom: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-b-xl {
    padding-bottom: 160px;
  }
}
.p-l-xxs {
  padding-left: 2px;
}
@media screen and (min-width: 600px) {
  .p-l-xxs {
    padding-left: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-l-xxs {
    padding-left: 4px;
  }
}
.p-l-xs {
  padding-left: 5px;
}
@media screen and (min-width: 600px) {
  .p-l-xs {
    padding-left: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-l-xs {
    padding-left: 10px;
  }
}
.p-l-s {
  padding-left: 10px;
}
@media screen and (min-width: 600px) {
  .p-l-s {
    padding-left: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-l-s {
    padding-left: 20px;
  }
}
.p-l-m {
  padding-left: 20px;
}
@media screen and (min-width: 600px) {
  .p-l-m {
    padding-left: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-l-m {
    padding-left: 40px;
  }
}
.p-l-l {
  padding-left: 40px;
}
@media screen and (min-width: 600px) {
  .p-l-l {
    padding-left: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-l-l {
    padding-left: 80px;
  }
}
.p-l-xl {
  padding-left: 80px;
}
@media screen and (min-width: 600px) {
  .p-l-xl {
    padding-left: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .p-l-xl {
    padding-left: 160px;
  }
}
/*
 * Margin
 */
.m-a-0 {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}
.m-a-xxs {
  margin: 2px;
}
@media screen and (min-width: 600px) {
  .m-a-xxs {
    margin: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-a-xxs {
    margin: 4px;
  }
}
.m-a-xs {
  margin: 5px;
}
@media screen and (min-width: 600px) {
  .m-a-xs {
    margin: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-a-xs {
    margin: 10px;
  }
}
.m-a-s {
  margin: 10px;
}
@media screen and (min-width: 600px) {
  .m-a-s {
    margin: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-a-s {
    margin: 20px;
  }
}
.m-a-m {
  margin: 20px;
}
@media screen and (min-width: 600px) {
  .m-a-m {
    margin: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-a-m {
    margin: 40px;
  }
}
.m-a-l {
  margin: 40px;
}
@media screen and (min-width: 600px) {
  .m-a-l {
    margin: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-a-l {
    margin: 80px;
  }
}
.m-a-xl {
  margin: 80px;
}
@media screen and (min-width: 600px) {
  .m-a-xl {
    margin: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-a-xl {
    margin: 160px;
  }
}
.m-x-xxs {
  margin-left: 2px;
}
@media screen and (min-width: 600px) {
  .m-x-xxs {
    margin-left: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-x-xxs {
    margin-left: 4px;
  }
}
.m-x-xxs {
  margin-right: 2px;
}
@media screen and (min-width: 600px) {
  .m-x-xxs {
    margin-right: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-x-xxs {
    margin-right: 4px;
  }
}
.m-x-xs {
  margin-left: 5px;
}
@media screen and (min-width: 600px) {
  .m-x-xs {
    margin-left: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-x-xs {
    margin-left: 10px;
  }
}
.m-x-xs {
  margin-right: 5px;
}
@media screen and (min-width: 600px) {
  .m-x-xs {
    margin-right: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-x-xs {
    margin-right: 10px;
  }
}
.m-x-s {
  margin-left: 10px;
}
@media screen and (min-width: 600px) {
  .m-x-s {
    margin-left: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-x-s {
    margin-left: 20px;
  }
}
.m-x-s {
  margin-right: 10px;
}
@media screen and (min-width: 600px) {
  .m-x-s {
    margin-right: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-x-s {
    margin-right: 20px;
  }
}
.m-x-m {
  margin-left: 20px;
}
@media screen and (min-width: 600px) {
  .m-x-m {
    margin-left: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-x-m {
    margin-left: 40px;
  }
}
.m-x-m {
  margin-right: 20px;
}
@media screen and (min-width: 600px) {
  .m-x-m {
    margin-right: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-x-m {
    margin-right: 40px;
  }
}
.m-x-l {
  margin-left: 40px;
}
@media screen and (min-width: 600px) {
  .m-x-l {
    margin-left: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-x-l {
    margin-left: 80px;
  }
}
.m-x-l {
  margin-right: 40px;
}
@media screen and (min-width: 600px) {
  .m-x-l {
    margin-right: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-x-l {
    margin-right: 80px;
  }
}
.m-x-xl {
  margin-left: 80px;
}
@media screen and (min-width: 600px) {
  .m-x-xl {
    margin-left: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-x-xl {
    margin-left: 160px;
  }
}
.m-x-xl {
  margin-right: 80px;
}
@media screen and (min-width: 600px) {
  .m-x-xl {
    margin-right: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-x-xl {
    margin-right: 160px;
  }
}
.m-y-xxs {
  margin-top: 2px;
}
@media screen and (min-width: 600px) {
  .m-y-xxs {
    margin-top: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-y-xxs {
    margin-top: 4px;
  }
}
.m-y-xxs {
  margin-bottom: 2px;
}
@media screen and (min-width: 600px) {
  .m-y-xxs {
    margin-bottom: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-y-xxs {
    margin-bottom: 4px;
  }
}
.m-y-xs {
  margin-top: 5px;
}
@media screen and (min-width: 600px) {
  .m-y-xs {
    margin-top: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-y-xs {
    margin-top: 10px;
  }
}
.m-y-xs {
  margin-bottom: 5px;
}
@media screen and (min-width: 600px) {
  .m-y-xs {
    margin-bottom: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-y-xs {
    margin-bottom: 10px;
  }
}
.m-y-s {
  margin-top: 10px;
}
@media screen and (min-width: 600px) {
  .m-y-s {
    margin-top: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-y-s {
    margin-top: 20px;
  }
}
.m-y-s {
  margin-bottom: 10px;
}
@media screen and (min-width: 600px) {
  .m-y-s {
    margin-bottom: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-y-s {
    margin-bottom: 20px;
  }
}
.m-y-m {
  margin-top: 20px;
}
@media screen and (min-width: 600px) {
  .m-y-m {
    margin-top: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-y-m {
    margin-top: 40px;
  }
}
.m-y-m {
  margin-bottom: 20px;
}
@media screen and (min-width: 600px) {
  .m-y-m {
    margin-bottom: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-y-m {
    margin-bottom: 40px;
  }
}
.m-y-l {
  margin-top: 40px;
}
@media screen and (min-width: 600px) {
  .m-y-l {
    margin-top: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-y-l {
    margin-top: 80px;
  }
}
.m-y-l {
  margin-bottom: 40px;
}
@media screen and (min-width: 600px) {
  .m-y-l {
    margin-bottom: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-y-l {
    margin-bottom: 80px;
  }
}
.m-y-xl {
  margin-top: 80px;
}
@media screen and (min-width: 600px) {
  .m-y-xl {
    margin-top: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-y-xl {
    margin-top: 160px;
  }
}
.m-y-xl {
  margin-bottom: 80px;
}
@media screen and (min-width: 600px) {
  .m-y-xl {
    margin-bottom: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-y-xl {
    margin-bottom: 160px;
  }
}
.m-t-xxs {
  margin-top: 2px;
}
@media screen and (min-width: 600px) {
  .m-t-xxs {
    margin-top: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-t-xxs {
    margin-top: 4px;
  }
}
.m-t-xs {
  margin-top: 5px;
}
@media screen and (min-width: 600px) {
  .m-t-xs {
    margin-top: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-t-xs {
    margin-top: 10px;
  }
}
.m-t-s {
  margin-top: 10px;
}
@media screen and (min-width: 600px) {
  .m-t-s {
    margin-top: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-t-s {
    margin-top: 20px;
  }
}
.m-t-m {
  margin-top: 20px;
}
@media screen and (min-width: 600px) {
  .m-t-m {
    margin-top: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-t-m {
    margin-top: 40px;
  }
}
.m-t-l {
  margin-top: 40px;
}
@media screen and (min-width: 600px) {
  .m-t-l {
    margin-top: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-t-l {
    margin-top: 80px;
  }
}
.m-t-xl {
  margin-top: 80px;
}
@media screen and (min-width: 600px) {
  .m-t-xl {
    margin-top: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-t-xl {
    margin-top: 160px;
  }
}
.m-r-xxs {
  margin-right: 2px;
}
@media screen and (min-width: 600px) {
  .m-r-xxs {
    margin-right: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-r-xxs {
    margin-right: 4px;
  }
}
.m-r-xs {
  margin-right: 5px;
}
@media screen and (min-width: 600px) {
  .m-r-xs {
    margin-right: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-r-xs {
    margin-right: 10px;
  }
}
.m-r-s {
  margin-right: 10px;
}
@media screen and (min-width: 600px) {
  .m-r-s {
    margin-right: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-r-s {
    margin-right: 20px;
  }
}
.m-r-m {
  margin-right: 20px;
}
@media screen and (min-width: 600px) {
  .m-r-m {
    margin-right: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-r-m {
    margin-right: 40px;
  }
}
.m-r-l {
  margin-right: 40px;
}
@media screen and (min-width: 600px) {
  .m-r-l {
    margin-right: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-r-l {
    margin-right: 80px;
  }
}
.m-r-xl {
  margin-right: 80px;
}
@media screen and (min-width: 600px) {
  .m-r-xl {
    margin-right: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-r-xl {
    margin-right: 160px;
  }
}
.m-b-xxs {
  margin-bottom: 2px;
}
@media screen and (min-width: 600px) {
  .m-b-xxs {
    margin-bottom: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-b-xxs {
    margin-bottom: 4px;
  }
}
.m-b-xs {
  margin-bottom: 5px;
}
@media screen and (min-width: 600px) {
  .m-b-xs {
    margin-bottom: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-b-xs {
    margin-bottom: 10px;
  }
}
.m-b-s {
  margin-bottom: 10px;
}
@media screen and (min-width: 600px) {
  .m-b-s {
    margin-bottom: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-b-s {
    margin-bottom: 20px;
  }
}
.m-b-m {
  margin-bottom: 20px;
}
@media screen and (min-width: 600px) {
  .m-b-m {
    margin-bottom: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-b-m {
    margin-bottom: 40px;
  }
}
.m-b-l {
  margin-bottom: 40px;
}
@media screen and (min-width: 600px) {
  .m-b-l {
    margin-bottom: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-b-l {
    margin-bottom: 80px;
  }
}
.m-b-xl {
  margin-bottom: 80px;
}
@media screen and (min-width: 600px) {
  .m-b-xl {
    margin-bottom: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-b-xl {
    margin-bottom: 160px;
  }
}
.m-l-xxs {
  margin-left: 2px;
}
@media screen and (min-width: 600px) {
  .m-l-xxs {
    margin-left: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-l-xxs {
    margin-left: 4px;
  }
}
.m-l-xs {
  margin-left: 5px;
}
@media screen and (min-width: 600px) {
  .m-l-xs {
    margin-left: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-l-xs {
    margin-left: 10px;
  }
}
.m-l-s {
  margin-left: 10px;
}
@media screen and (min-width: 600px) {
  .m-l-s {
    margin-left: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-l-s {
    margin-left: 20px;
  }
}
.m-l-m {
  margin-left: 20px;
}
@media screen and (min-width: 600px) {
  .m-l-m {
    margin-left: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-l-m {
    margin-left: 40px;
  }
}
.m-l-l {
  margin-left: 40px;
}
@media screen and (min-width: 600px) {
  .m-l-l {
    margin-left: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-l-l {
    margin-left: 80px;
  }
}
.m-l-xl {
  margin-left: 80px;
}
@media screen and (min-width: 600px) {
  .m-l-xl {
    margin-left: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .m-l-xl {
    margin-left: 160px;
  }
}
.hover-parent .when-hovered {
  opacity: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transition: opacity 0.3s;
}
.hover-parent:hover .when-hovered {
  opacity: 1;
  -webkit-user-select: auto;
     -moz-user-select: auto;
      -ms-user-select: auto;
          user-select: auto;
}
.no-transition {
  transition: none !important;
}
.no-transition * {
  transition: none !important;
}
.inline-block {
  display: inline-block;
}
.ws-nowrap {
  white-space: nowrap;
}
.bg-intro {
  background-image: url("/assets/intro/intro-bg.svg");
  background-size: cover;
  background-repeat: repeat-x;
  background-position: bottom;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
}
.c-primary {
  color: #FBC02D !important;
}
.c-accent {
  color: #66BB6A !important;
}
.c-warn {
  color: #F44336 !important;
}
.c-success {
  color: #66bb6a !important;
}
.c-white {
  color: white !important;
}
.c-red {
  color: #f44336 !important;
}
.c-black {
  color: black !important;
}
.bg-primary {
  background-color: #FBC02D !important;
}
.bg-accent {
  background-color: #66BB6A !important;
}
.bg-warn {
  background-color: #F44336 !important;
}
.bg-success {
  background-color: #66bb6a !important;
}
.bg-white {
  background-color: white !important;
}
.bg-dark {
  background-color: #303a48;
}
.bg-light {
  background-color: #e9ebec;
}
.bg-primary-transparentize {
  background-color: rgba(251, 192, 45, 0.1);
}
.bg-acent-transparentize {
  background-color: rgba(102, 187, 106, 0.1);
}
.bg-warn-transparentize {
  background-color: rgba(244, 67, 54, 0.1);
}
.border-primary {
  border: 2px solid #FBC02D !important;
}
.border-accent {
  border: 2px solid #66BB6A !important;
}
.border-warn {
  border: 2px solid #F44336 !important;
}
.border-success {
  border: 2px solid #66bb6a !important;
}
.op-50 {
  opacity: 0.5;
}
.min-h-full {
  min-height: 100vh;
}
.fs-10 {
  font-size: 1rem;
}
.fs-xs {
  font-size: x-small;
}
.fs-s {
  font-size: small;
}
.fs-10 {
  font-size: 10px !important;
}
.fs-12 {
  font-size: 12px !important;
}
.fs-14 {
  font-size: 14px !important;
}
.fs-15 {
  font-size: 15px !important;
}
.fs-18 {
  font-size: 18px !important;
}
.fs-20 {
  font-size: 20px !important;
}
.fs-35 {
  font-size: 35px !important;
}
.wb-all {
  word-break: break-all;
}
.capitalize {
  text-transform: capitalize;
}
.lowercase {
  text-transform: lowercase;
}
.us-none {
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
.box-shadow {
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.read-only {
  pointer-events: none;
}
.of-x-auto {
  overflow-x: auto;
}
.of-x-hidden {
  overflow-x: hidden;
}
.of-hidden {
  overflow: hidden;
}
.of-y-auto {
  overflow-y: auto;
}
.of-y-hidden {
  overflow-y: hidden;
}
.hidden {
  opacity: 0;
  visibility: hidden;
}
.pointer {
  cursor: pointer;
}
.cursor-drag {
  cursor: -webkit-grab;
  cursor: grab;
}
.cursor-move {
  cursor: move;
}
.p-tabs {
  padding: 6rem 0 2rem;
}
@media (max-width: 768px) {
  .p-tabs {
    padding-top: 8rem;
  }
}
.p-tabs-small {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}
@media (max-width: 768px) {
  .p-tabs-small {
    padding-top: 5rem;
  }
}
.active-scorecard {
  outline: 0.3rem solid #FBC02D;
}
.scorecard-label {
  font-size: 1.2rem;
  margin-bottom: -0.6rem;
}
.ls-1 {
  letter-spacing: -1px;
}
.mat-bar {
  height: 64px;
}
.mat-bar-m {
  height: 128px;
}
.mat-bar-l {
  height: 192px;
}
.mat-bar-xl {
  height: 256px;
}
.gm-target td {
  font-size: 1.4rem;
}
.gm-target td:nth-last-child(1) {
  text-align: right;
}
.dept-target td {
  font-size: 1.1rem;
  padding: 0.8rem;
}
.dept-target td:nth-child(1) {
  padding: 0.2rem 0.2rem 0.2rem 2.4rem;
}
.dept-target td:nth-last-child(1) {
  padding: 0.8rem 2.4rem 0.8rem 0.8rem;
}
.dept-target td:nth-last-child(1) {
  text-align: right;
}
button.loading {
  pointer-events: none;
  position: relative;
  border: none;
  color: transparent;
}
button.loading span, button.loading svg, button.loading img {
  opacity: 0;
}
button.loading:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 1.8rem;
  width: 1.8rem;
  border-radius: 50%;
  border-width: 0.2rem;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.9) rgba(0, 0, 0, 0.9) transparent transparent;
  -webkit-animation: loading-animation 0.75s linear infinite;
          animation: loading-animation 0.75s linear infinite;
}
@-webkit-keyframes loading-animation {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes loading-animation {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@media (max-width: 768px) {
  .small-font-on-mobile {
    font-size: 10px;
  }
}
.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vertical-line {
  top: 0;
  height: 100%;
  border-left: 1px solid #FBC02D;
}
.docs-tooltip-icon {
  position: absolute;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.api-icon {
  height: 2rem;
  color: #FBC02D;
}
.dot {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
}
.high-panel {
  font-size: 12px !important;
}
.high-panel .mat-optgroup-label,
.high-panel .mat-option {
  line-height: 20px !important;
  height: 20px !important;
}
.warning-card {
  color: white;
  background: #f44336;
  padding: 1rem;
}
.theme-dark .spreadsheet .report-table.report-table th {
  background: #424242 !important;
}
.theme-dark .c-black.c-black {
  color: white !important;
}
.theme-dark.theme-dark .spreadsheet .spreadsheet-table td:nth-child(1),
.theme-dark.theme-dark .spreadsheet .clear-row td {
  background: transparent !important;
}
.theme-dark .daily-avg-row td {
  background: #081849 !important;
}
.theme-dark .year-row td {
  background: #55745e !important;
}
.theme-dark .board-card, .theme-dark .board-card-header, .theme-dark .chat-bar-header {
  background: #424242 !important;
}
.theme-dark .board-card-task, .theme-dark .chat-bar-content-wrapper, .theme-dark small {
  background: #636363 !important;
}
.theme-dark .vertical-text {
  color: white;
}
/*
 * Sticky header
 */
.sticky-header {
  background: white !important;
}
/*
 * Calendar
 */
.fc-unthemed td.fc-today {
  background: #eee;
}
.fc-basicDay-button:not(.fc-state-active),
.fc-basicWeek-button:not(.fc-state-active),
.fc-basicMonth-button:not(.fc-state-active),
.fc-next-button,
.fc-prev-button,
.fc-today-button {
  color: rgba(0, 0, 0, 0.9);
}
/*
 * Nelson tag input
 */
nelson-tag-input {
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: white;
}
nelson-tag-input .chip-wrapper {
  border: 1px solid rgba(0, 0, 0, 0.2) !important;
  background: #f5f5f5 !important;
}
nelson-tag-input .chip-input {
  color: rgba(0, 0, 0, 0.9) !important;
}
nelson-tag-input ul {
  background-color: #f5f5f5 !important;
  color: rgba(0, 0, 0, 0.9) !important;
}
nelson-tag-input ul li:hover, nelson-tag-input ul li.active {
  background: #eee !important;
}
/*
 * Nelson chart
 */
.c3-tooltip {
  color: black;
}
.tick line, .domain {
  stroke: rgba(0, 0, 0, 0.9) !important;
}
nelson-chart-wrapper {
  fill: rgba(0, 0, 0, 0.9) !important;
}
/*
 * Navbar overrides
 */
nelson-navbar .mat-select-value {
  color: rgba(255, 255, 255, 0.9);
}
nelson-navbar .mat-select-arrow {
  color: rgba(255, 255, 255, 0.6);
}
nelson-navbar .mat-form-field-appearance-legacy .mat-form-field-underline {
  background-color: rgba(255, 255, 255, 0.6);
}
nelson-navbar .mat-form-field-ripple {
  border-color: rgba(255, 255, 255, 0.6);
}
nelson-navbar .mat-form-field-appearance-legacy .mat-form-field-label {
  color: rgba(255, 255, 255, 0.6);
}
nelson-navbar .mat-select-disabled .mat-select-value {
  color: rgba(204, 204, 204, 0.6);
}
nelson-navbar .mat-form-field .mat-select.mat-select-disabled .mat-select-arrow {
  color: rgba(204, 204, 204, 0.6);
}
nelson-navbar .mat-button-toggle-appearance-standard {
  color: rgba(204, 204, 204, 0.6) !important;
}
/*
 * Material overrides
 */
.cdk-overlay-pane {
  max-width: calc(100vw - 200px) !important;
}
@media (max-width: 1200px) {
  .cdk-overlay-pane {
    margin-left: 0;
    max-width: 90vw !important;
  }
}
.layout-compact-body .cdk-overlay-pane {
  max-width: 90vw !important;
  margin-left: 0 !important;
}
@media (max-width: 599px) {
  .cdk-overlay-pane {
    max-width: 100vw !important;
  }
}
@media (max-width: 599px) {
  .mat-tab-link {
    min-width: 80px;
  }
}
.mat-form-field.mat-focused .mat-form-field-ripple {
  background: #FBC02D !important;
}
.mat-primary .mat-pseudo-checkbox-checked {
  background: #FBC02D !important;
}
.mat-button-toggle-group,
.mat-button-toggle-standalone {
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12) !important;
}
.mat-button-toggle-group-appearance-standard {
  border: none !important;
}
.mat-button-toggle-appearance-standard {
  background: transparent !important;
  color: rgba(0, 0, 0, 0.6) !important;
}
.mat-button-toggle-appearance-standard.mat-button-toggle-checked {
  background-color: #e0e0e0 !important;
  color: rgba(0, 0, 0, 0.9) !important;
}
.mat-button-toggle-appearance-standard .mat-button-toggle-label-content {
  line-height: 36px !important;
}
.mat-icon-button:hover {
  color: #FBC02D !important;
}
.mat-input-small .mat-form-field-infix {
  width: 80px !important;
}
.fab-fixed {
  position: fixed !important;
  bottom: 2rem;
  right: 2rem;
}
.no-box-shadow .mat-expansion-panel {
  box-shadow: none !important;
}
.mat-option.mat-active span {
  color: rgba(0, 0, 0, 0.87);
}
.mat-form-field.mat-focused .mat-form-field-label {
  color: gray !important;
}
.mat-input-element {
  color: rgba(0, 0, 0, 0.9) !important;
}
mat-form-field.c-white .mat-input-element {
  color: white !important;
}
.mat-dialog-container {
  max-height: 100vh !important;
}
.bg-dark-gray .mat-dialog-container {
  background: #303a48 !important;
}
.mat-tab-header-pagination {
  z-index: 1 !important;
}
.mat-tab-links {
  background: white !important;
}
.mat-tab-links i.material-icons {
  color: rgba(0, 0, 0, 0.6) !important;
}
/*
 * add-remove-select component override
 */
.select-trigger {
  color: rgba(0, 0, 0, 0.9) !important;
  border-bottom-color: rgba(0, 0, 0, 0.2) !important;
}
.select-dropdown {
  background: white !important;
}
.select-dropdown-item {
  color: rgba(0, 0, 0, 0.9) !important;
}
.select-dropdown-item:hover {
  background: #eee !important;
}
/*
 * file-upload component
 */
.file-upload {
  border-bottom-color: rgba(0, 0, 0, 0.2) !important;
}
/*
 * Auth0 overrides
 */
.auth0-lock-cred-pane :nth-child(3) > span {
  width: 100%;
}
.auth0-lock-social-button-icon {
  background-size: 100% !important;
}
.auth0-lock.auth0-lock .auth0-lock-content {
  padding: 40px !important;
}
.auth0-lock.auth0-lock .auth0-lock-social-button {
  border: 1px solid #f1f1f1 !important;
  transition: 0.2s;
  padding: 2px;
  box-sizing: border-box;
  background-color: #4285F4 !important;
}
.auth0-lock.auth0-lock .auth0-lock-social-button-icon {
  float: left !important;
  display: inline-block !important;
  width: 36px !important;
  height: 36px !important;
  background-color: white !important;
  top: 1px !important;
  left: 1px !important;
  border-radius: 1px !important;
}
.auth0-lock.auth0-lock .auth0-lock-social-button.auth0-lock-social-big-button .auth0-lock-social-button-text {
  padding-left: 52px;
  text-transform: unset !important;
  font-family: Roboto, sans-serif;
  line-height: 35px !important;
  color: white !important;
  font-weight: 600 !important;
  font-size: 14px !important;
}
/*
 * ngx-datatable overrides
 */
.ngx-datatable.material {
  background: white !important;
}
.datatable-header-cell {
  color: rgba(0, 0, 0, 0.9) !important;
  background: white !important;
}
.datatable-body-cell,
.datatable-footer,
.datatable-pager a {
  color: rgba(0, 0, 0, 0.6) !important;
}
.datatable-body-row:hover,
.datatable-body-row:hover .datatable-row-group {
  background: #eee !important;
}
.datatable-header {
  display: flex !important;
  align-items: center;
}
.datatable-header .resize-handle {
  border-right-color: #eee !important;
}
.datatable-body-cell,
.datatable-header-cell {
  display: inline-flex !important;
  align-items: center;
}
.datatable-body-cell {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.datatable-row-detail,
.datatable-row-left {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  background: white !important;
  color: rgba(0, 0, 0, 0.6) !important;
}
.details-overflow .datatable-row-detail {
  overflow-y: auto !important;
}
.ngx-datatable .mat-form-field-label-wrapper {
  box-sizing: content-box;
}
.empty-row {
  color: rgba(0, 0, 0, 0.6) !important;
}
/*
 * noUi slider overrides
 */
.noUi-horizontal {
  height: 6px;
}
.noUi-tooltip {
  opacity: 0;
  transition: 0.2s;
}
.noUi-horizontal .noUi-handle {
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  transform: translateX(-50%) translateY(-40%);
}
.noUi-horizontal .noUi-handle:after, .noUi-horizontal .noUi-handle:before {
  display: none;
}
.noUi-horizontal .noUi-handle:hover .noUi-tooltip, .noUi-horizontal .noUi-handle.noUi-active .noUi-tooltip {
  opacity: 1;
}
.noUi-connect {
  background: #FBC02D;
}
.noUi-wrapper {
  padding-bottom: 40px;
}
.noUi-marker-horizontal.noUi-marker-large {
  top: 10px;
  height: 8px;
}
/**
 * NoUi header class
 */
.header-slider .noUi-horizontal .noUi-tooltip {
  bottom: -270%;
}
.ngx-datatable .datatable-body .datatable-row-wrapper:hover {
  z-index: 1;
}
/*@media (max-width: 762px) {
  mat-panel-title {
    margin-right: 0!important;

  }
  mat-panel-description {
    margin-right: 0!important;
  }
}*/
/*
 * JSON editor overrides
 */
.jsoneditor-poweredBy {
  display: none;
}
/*
 * Page builder slider
 */
.swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.swiper-button-next, .swiper-button-prev {
  background-image: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.75);
}
.swiper-button-next svg, .swiper-button-prev svg {
  width: 30px;
}
@media (max-width: 768px) {
  .mat-button-toggle-button, .mat-button-toggle-label-content {
    width: 100% !important;
  }

  .mat-tab-link {
    font-size: 10px;
  }
}
/*
 * Report overrides
 */
.report-tag td:first-child {
  border-right: 2px solid #FBC02D;
}
@media (max-width: 600px) {
  .c3-axis.c3-axis-x tspan:not(:nth-child(1)) {
    display: none;
  }
}
#mce-modal-block {
  z-index: 63000 !important;
}
.cdk-overlay-container {
  z-index: 63001 !important;
}
/*
 * Prism
 */
.pre {
  margin: 0;
}
.language-markup {
  color: white;
}
.language-markup .token {
  color: white;
}
.tooltip-font-12 {
  font-size: 12px !important;
}
@page {
  size: a4;
  margin: 10px;
}
.show-print {
  display: none;
}
@media print {
  .show-print {
    display: block;
  }
}
@media print {
  .hide-print {
    display: none;
  }

  .cdk-overlay-container {
    position: static !important;
  }

  .cdk-overlay-connected-position-bounding-box {
    display: none !important;
  }

  .cdk-overlay-backdrop {
    display: none !important;
  }

  .cdk-global-overlay-wrapper {
    position: static !important;
  }

  .cdk-overlay-pane {
    max-width: unset !important;
  }

  .cdk-global-scrollblock {
    position: static !important;
    overflow-y: visible !important;
  }

  .mat-dialog-container {
    box-shadow: unset !important;
    padding: 10px !important;
    overflow: visible !important;
  }

  .p-tabs {
    padding: 0;
  }

  .active-scorecard {
    outline: none;
  }

  .scorecards h1, .scorecards h2, .scorecards h3, .scorecards h4, .scorecards h5, .scorecards h6 {
    font-size: 14px;
  }
  .scorecards p {
    font-size: 11px;
  }

  .docs-tooltip-icon {
    display: none;
  }

  .print-modal-header {
    display: none;
  }

  .print-modal-subheader {
    display: none;
  }

  .print-modal-body {
    max-height: unset !important;
    padding-top: unset !important;
    overflow: visible !important;
  }

  .db-main {
    left: 0;
    top: 0;
    width: 100%;
    height: unset !important;
    min-height: unset !important;
    background: unset !important;
  }
}
.theme-nada-wrapper {
  /*
   * Box sizing
   */
  /*
   * Page setup
   */
  /*
   * Custom scrollbar
   */
  /*
   * Dashboard sidebar
   */
  /*
   * Dashboard header
   */
  /*
   * Dashboard main
   */
  /*
   * Dashboard tabs
   */
  /*
   * Dashboard tabs
   */
  /*
   * Loading toast
   */
  /*
   * Compact navigation style
   */
  /*
   * Simple sidebar
   */
  /*
   * Layout responsive style
   */
  /*
   * Simple table
   */
  /*
   * No style table
   */
  /*
   * Print table
   */
  /*
   * Flex
   */
  /*
   * Width
   */
  /*
   * Height
   */
  /*
   * Text align
   */
  /*
   * Border-radius
   */
  /*
   * Text transform
   */
  /*
   * Hide & show
   */
  /*
   * Columns
   */
  /*
   * Padding
   */
  /*
   * Margin
   */
  /*
   * Sticky header
   */
  /*
   * Calendar
   */
  /*
   * Nelson tag input
   */
  /*
   * Nelson chart
   */
  /*
   * Navbar overrides
   */
  /*
   * Material overrides
   */
  /*
   * add-remove-select component override
   */
  /*
   * file-upload component
   */
  /*
   * Auth0 overrides
   */
  /*
   * ngx-datatable overrides
   */
  /*
   * noUi slider overrides
   */
  /**
   * NoUi header class
   */
  /*@media (max-width: 762px) {
    mat-panel-title {
      margin-right: 0!important;

    }
    mat-panel-description {
      margin-right: 0!important;
    }
  }*/
  /*
   * JSON editor overrides
   */
  /*
   * Page builder slider
   */
  /*
   * Report overrides
   */
  /*
   * Prism
   */
}
.theme-nada-wrapper html {
  box-sizing: border-box;
  width: 100%;
}
.theme-nada-wrapper *,
.theme-nada-wrapper *:before,
.theme-nada-wrapper *:after {
  box-sizing: border-box;
}
.theme-nada-wrapper body {
  margin: 0;
  overflow-x: hidden;
  min-height: 100vh;
  background: white;
}
.theme-nada-wrapper ::-webkit-scrollbar {
  width: 8px;
  height: 3px;
}
.theme-nada-wrapper ::-webkit-scrollbar-track {
  border-radius: 0;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.35);
  background: rgba(238, 238, 238, 0.2);
}
.theme-nada-wrapper ::-webkit-scrollbar-thumb {
  border-radius: 40px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.35);
  background: rgba(170, 170, 170, 0.7);
}
.theme-nada-wrapper img {
  max-width: 100%;
  font-style: italic;
  vertical-align: middle;
}
.theme-nada-wrapper .img-full {
  width: 100%;
  height: 100%;
}
.theme-nada-wrapper .img-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.theme-nada-wrapper .img-contain {
  -o-object-fit: contain;
     object-fit: contain;
}
.theme-nada-wrapper .img-container {
  position: relative;
  overflow: hidden;
}
.theme-nada-wrapper .img-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.theme-nada-wrapper .img-container[data-aspect-ratio="1:1"] {
  padding-bottom: 100%;
}
.theme-nada-wrapper .img-container[data-aspect-ratio="4:3"] {
  padding-bottom: 75%;
}
.theme-nada-wrapper html {
  color: rgba(0, 0, 0, 0.6);
}
.theme-nada-wrapper h1, .theme-nada-wrapper h2, .theme-nada-wrapper h3, .theme-nada-wrapper h4, .theme-nada-wrapper h5, .theme-nada-wrapper h6 {
  color: rgba(0, 0, 0, 0.9);
}
.theme-nada-wrapper p {
  color: rgba(0, 0, 0, 0.6);
}
.theme-nada-wrapper fieldset legend {
  color: rgba(0, 0, 0, 0.6);
}
.theme-nada-wrapper hr {
  border-color: rgba(0, 0, 0, 0.2);
}
.theme-nada-wrapper .vr {
  border-color: rgba(0, 0, 0, 0.2);
}
.theme-nada-wrapper .grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 160rem;
  width: 100%;
  margin: 0 auto;
}
.theme-nada-wrapper .grid > [class*=col] {
  padding: 1rem;
}
.theme-nada-wrapper .grid.full {
  max-width: 100%;
}
.theme-nada-wrapper .grid.gutter-l > [class*=col] {
  padding: 2rem;
}
.theme-nada-wrapper .grid.gutter-m > [class*=col] {
  padding: 1rem;
}
.theme-nada-wrapper .grid.gutter-s > [class*=col] {
  padding: 0.5rem;
}
.theme-nada-wrapper .grid.nogutter > [class*=col] {
  padding: 0;
}
.theme-nada-wrapper .grid .col-1 {
  flex-basis: 8.3333%;
  width: 8.3333%;
}
.theme-nada-wrapper .grid .col-2 {
  flex-basis: 16.6666%;
  width: 16.6666%;
}
.theme-nada-wrapper .grid .col-3 {
  flex-basis: 25%;
  width: 25%;
}
.theme-nada-wrapper .grid .col-4 {
  flex-basis: 33.3333%;
  width: 33.3333%;
}
.theme-nada-wrapper .grid .col-5 {
  flex-basis: 41.6666%;
  width: 41.6666%;
}
.theme-nada-wrapper .grid .col-6 {
  flex-basis: 50%;
  width: 50%;
}
.theme-nada-wrapper .grid .col-7 {
  flex-basis: 58.3333%;
  width: 58.3333%;
}
.theme-nada-wrapper .grid .col-8 {
  flex-basis: 66.6666%;
  width: 66.6666%;
}
.theme-nada-wrapper .grid .col-9 {
  flex-basis: 75%;
  width: 75%;
}
.theme-nada-wrapper .grid .col-10 {
  flex-basis: 83.3333%;
  width: 83.3333%;
}
.theme-nada-wrapper .grid .col-11 {
  flex-basis: 91.6666%;
  width: 91.6666%;
}
.theme-nada-wrapper .grid .col-12 {
  flex-basis: 100%;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .theme-nada-wrapper .grid .o-m-last {
    order: 9;
  }
  .theme-nada-wrapper .grid .col-m-0 {
    display: none;
  }
  .theme-nada-wrapper .grid .col-m-1 {
    flex-basis: 8.3333%;
    width: 8.3333%;
  }
  .theme-nada-wrapper .grid .col-m-2 {
    flex-basis: 16.6666%;
    width: 16.6666%;
  }
  .theme-nada-wrapper .grid .col-m-3 {
    flex-basis: 25%;
    width: 25%;
  }
  .theme-nada-wrapper .grid .col-m-4 {
    flex-basis: 33.3333%;
    width: 33.3333%;
  }
  .theme-nada-wrapper .grid .col-m-5 {
    flex-basis: 41.6666%;
    width: 41.6666%;
  }
  .theme-nada-wrapper .grid .col-m-6 {
    flex-basis: 50%;
    width: 50%;
  }
  .theme-nada-wrapper .grid .col-m-7 {
    flex-basis: 58.3333%;
    width: 58.3333%;
  }
  .theme-nada-wrapper .grid .col-m-8 {
    flex-basis: 66.6666%;
    width: 66.6666%;
  }
  .theme-nada-wrapper .grid .col-m-9 {
    flex-basis: 75%;
    width: 75%;
  }
  .theme-nada-wrapper .grid .col-m-10 {
    flex-basis: 83.3333%;
    width: 83.3333%;
  }
  .theme-nada-wrapper .grid .col-m-11 {
    flex-basis: 91.6666%;
    width: 91.6666%;
  }
  .theme-nada-wrapper .grid .col-m-12 {
    flex-basis: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 850px) {
  .theme-nada-wrapper .grid .o-s-last {
    order: 9;
  }
  .theme-nada-wrapper .grid .col-s-0 {
    display: none;
  }
  .theme-nada-wrapper .grid .col-s-1 {
    flex-basis: 8.3333%;
    width: 8.3333%;
  }
  .theme-nada-wrapper .grid .col-s-2 {
    flex-basis: 16.6666%;
    width: 16.6666%;
  }
  .theme-nada-wrapper .grid .col-s-3 {
    flex-basis: 25%;
    width: 25%;
  }
  .theme-nada-wrapper .grid .col-s-4 {
    flex-basis: 33.3333%;
    width: 33.3333%;
  }
  .theme-nada-wrapper .grid .col-s-5 {
    flex-basis: 41.6666%;
    width: 41.6666%;
  }
  .theme-nada-wrapper .grid .col-s-6 {
    flex-basis: 50%;
    width: 50%;
  }
  .theme-nada-wrapper .grid .col-s-7 {
    flex-basis: 58.3333%;
    width: 58.3333%;
  }
  .theme-nada-wrapper .grid .col-s-8 {
    flex-basis: 66.6666%;
    width: 66.6666%;
  }
  .theme-nada-wrapper .grid .col-s-9 {
    flex-basis: 75%;
    width: 75%;
  }
  .theme-nada-wrapper .grid .col-s-10 {
    flex-basis: 83.3333%;
    width: 83.3333%;
  }
  .theme-nada-wrapper .grid .col-s-11 {
    flex-basis: 91.6666%;
    width: 91.6666%;
  }
  .theme-nada-wrapper .grid .col-s-12 {
    flex-basis: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 450px) {
  .theme-nada-wrapper .grid .o-xs-last {
    order: 9;
  }
  .theme-nada-wrapper .grid .col-xs-0 {
    display: none;
  }
  .theme-nada-wrapper .grid .col-xs-1 {
    flex-basis: 8.3333%;
    width: 8.3333%;
  }
  .theme-nada-wrapper .grid .col-xs-2 {
    flex-basis: 16.6666%;
    width: 16.6666%;
  }
  .theme-nada-wrapper .grid .col-xs-3 {
    flex-basis: 25%;
    width: 25%;
  }
  .theme-nada-wrapper .grid .col-xs-4 {
    flex-basis: 33.3333%;
    width: 33.3333%;
  }
  .theme-nada-wrapper .grid .col-xs-5 {
    flex-basis: 41.6666%;
    width: 41.6666%;
  }
  .theme-nada-wrapper .grid .col-xs-6 {
    flex-basis: 50%;
    width: 50%;
  }
  .theme-nada-wrapper .grid .col-xs-7 {
    flex-basis: 58.3333%;
    width: 58.3333%;
  }
  .theme-nada-wrapper .grid .col-xs-8 {
    flex-basis: 66.6666%;
    width: 66.6666%;
  }
  .theme-nada-wrapper .grid .col-xs-9 {
    flex-basis: 75%;
    width: 75%;
  }
  .theme-nada-wrapper .grid .col-xs-10 {
    flex-basis: 83.3333%;
    width: 83.3333%;
  }
  .theme-nada-wrapper .grid .col-xs-11 {
    flex-basis: 91.6666%;
    width: 91.6666%;
  }
  .theme-nada-wrapper .grid .col-xs-12 {
    flex-basis: 100%;
    width: 100%;
  }
}
.theme-nada-wrapper .layout-fluid .grid {
  max-width: unset !important;
}
.theme-nada-wrapper .bg-color {
  background: rgba(75, 75, 75, 0.9);
}
.theme-nada-wrapper .collapsed-menu {
  margin-left: 40px !important;
}
.theme-nada-wrapper .compact-title {
  font-size: 18px;
  color: #d0d6e2;
  padding: 0 16px;
  height: 40px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #d0d6e2;
}
.theme-nada-wrapper .sidebar-mat-menu {
  background: rgba(75, 75, 75, 0.9);
  margin-left: 180px;
  border-radius: 0 !important;
  min-height: auto !important;
  border: 1px solid rgba(0, 0, 0, 0.12);
}
.theme-nada-wrapper .sidebar-mat-menu .mat-menu-item {
  color: #d0d6e2;
  line-height: 1;
  height: 40px;
}
.theme-nada-wrapper .sidebar-mat-menu .mat-menu-item.active {
  color: #B71C1C;
  font-weight: 700;
}
.theme-nada-wrapper .sidebar-mat-menu .mat-menu-item:hover {
  background: rgba(255, 255, 255, 0.1);
}
.theme-nada-wrapper .sidebar-mat-menu .mat-menu-item:hover .favorite {
  opacity: 1;
  pointer-events: auto;
}
.theme-nada-wrapper .sidebar-mat-menu .mat-menu-content {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.theme-nada-wrapper .sidebar-mat-menu .mat-menu-item-submenu-trigger::after {
  color: #d0d6e2;
}
.theme-nada-wrapper .sidebar-mat-menu-child {
  margin-top: 7px !important;
  background: rgba(75, 75, 75, 0.9);
  border-radius: 0 !important;
  min-height: auto !important;
  border: 1px solid rgba(0, 0, 0, 0.12);
}
.theme-nada-wrapper .sidebar-mat-menu-child .mat-menu-item {
  color: #d0d6e2;
  line-height: 1;
  height: 40px;
}
.theme-nada-wrapper .sidebar-mat-menu-child .mat-menu-item.active {
  color: #B71C1C;
  font-weight: 700;
}
.theme-nada-wrapper .sidebar-mat-menu-child .mat-menu-item:hover {
  background: rgba(255, 255, 255, 0.1);
}
.theme-nada-wrapper .sidebar-mat-menu-child .mat-menu-content {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.theme-nada-wrapper .sidebar-mat-menu-child .mat-menu-item-submenu-trigger::after {
  color: #d0d6e2;
}
.theme-nada-wrapper .active-inner .active-primary-color {
  color: #B71C1C;
}
.theme-nada-wrapper .favorite {
  pointer-events: none;
  opacity: 0;
  transition: 0.2s;
  cursor: pointer;
  margin-right: 0 !important;
}
.theme-nada-wrapper .db-aside {
  position: fixed;
  z-index: 63004;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  width: 180px;
  height: 100%;
  color: #d0d6e2;
  background: #4b4b4b;
}
.theme-nada-wrapper .db-aside-list {
  padding: 0;
  list-style: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  overflow-y: auto;
  overflow-x: hidden;
  line-height: 2.4;
}
.theme-nada-wrapper .db-aside-list-item .divider {
  display: none;
  margin: 0;
}
.theme-nada-wrapper .db-aside-list-item.expanded {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.5) 2px, rgba(255, 255, 255, 0.06) 2px, rgba(255, 255, 255, 0.06));
}
.theme-nada-wrapper .db-aside-list-item.expanded .divider {
  display: block;
  border-color: #B71C1C !important;
  opacity: 60%;
}
.theme-nada-wrapper .db-aside-list-item-logo {
  height: 64px;
  display: flex;
  justify-content: center;
}
.theme-nada-wrapper .db-aside-list-item-link {
  display: flex;
  white-space: nowrap;
  align-items: center;
  width: 100%;
  padding: 8px;
  font-size: 14px;
}
.theme-nada-wrapper .db-aside-list-item-link:hover {
  background: rgba(255, 255, 255, 0.04);
}
.theme-nada-wrapper .db-aside-list-item-link.active {
  color: #B71C1C;
}
.theme-nada-wrapper .db-aside-list-item-link-label {
  margin-left: 8px;
  margin-right: 8px;
}
.theme-nada-wrapper .db-aside-list-item-link .navicon {
  color: rgba(160, 160, 179, 0.5);
}
.theme-nada-wrapper .db-aside-list-item-link-expand {
  margin-left: auto;
  margin-right: 8px;
}
.theme-nada-wrapper .db-aside-list-item-link-expand.expanded {
  transform: rotate(90deg);
}
.theme-nada-wrapper .db-aside-list-nested {
  padding: 0;
  list-style: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  overflow: hidden;
  max-height: 0;
  transition: 0.4s;
}
.theme-nada-wrapper .db-aside-list-nested.expanded {
  max-height: 1000px;
}
.theme-nada-wrapper .db-aside-list-nested-item-link {
  position: relative;
  display: flex;
  white-space: nowrap;
  align-items: center;
  width: 100%;
  padding: 4px 8px 4px 25px;
  font-size: 13px;
  transition: 0.2s;
  justify-content: space-between;
}
.theme-nada-wrapper .db-aside-list-nested-item-link:hover {
  background: rgba(255, 255, 255, 0.04);
}
.theme-nada-wrapper .db-aside-list-nested-item-link:hover .favorite {
  pointer-events: auto;
  opacity: 1;
}
.theme-nada-wrapper .db-aside-list-nested-item-link.active {
  color: #B71C1C;
  background: rgba(255, 255, 255, 0.06);
}
.theme-nada-wrapper .db-aside-list-nested-item-link-icon {
  font-size: 20px;
  line-height: 20px;
  width: 20px;
  height: 20px;
}
.theme-nada-wrapper .db-aside-list-nested-item-link-label {
  margin-left: 8px;
  margin-right: 8px;
}
.theme-nada-wrapper .db-aside-list-nested-item-link-expand {
  font-size: 20px;
  line-height: 20px;
  width: 20px;
  height: 20px;
  margin-left: auto;
  margin-right: 8px;
}
.theme-nada-wrapper .db-aside-list-nested-item-link-expand.expanded {
  transform: rotate(90deg);
}
.theme-nada-wrapper .db-aside-list-nested-item-expand {
  padding: 0;
  list-style: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  overflow: hidden;
}
.theme-nada-wrapper .db-aside-list-nested-item-expand-link {
  position: relative;
  display: flex;
  white-space: nowrap;
  align-items: center;
  width: 100%;
  padding: 4px 8px 4px 33px;
  font-size: 13px;
  transition: 0.2s;
  justify-content: space-between;
}
.theme-nada-wrapper .db-aside-list-nested-item-expand-link:hover {
  background: rgba(255, 255, 255, 0.04);
}
.theme-nada-wrapper .db-aside-list-nested-item-expand-link:hover .favorite {
  pointer-events: auto;
  opacity: 1;
}
.theme-nada-wrapper .db-aside-list-nested-item-expand-link.active {
  color: #B71C1C;
}
.theme-nada-wrapper .db-aside-list-nested-item-expand-link.expanded {
  transform: rotate(90deg);
}
.theme-nada-wrapper .db-aside-list-nested-item-expand-link i {
  padding-right: 2px;
  margin: 0 0 0 auto;
  color: rgba(160, 160, 179, 0.5);
  font-size: 15px;
}
.theme-nada-wrapper .db-header {
  position: fixed;
  z-index: 100;
  left: 180px;
  top: 0;
  width: calc(100% - 180px);
  height: 64px;
  color: #b8c2d6;
  background: #4b4b4b;
}
.theme-nada-wrapper .db-header .header-profile-picture {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 10px;
}
.theme-nada-wrapper .db-header .header-select {
  padding-top: 18px;
}
.theme-nada-wrapper .db-header .cont-1 {
  flex: 2;
}
.theme-nada-wrapper .db-header .cont-2 {
  flex: 0 1 auto;
}
.theme-nada-wrapper .db-header .cont-2 .mat-icon-button {
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-size: 20px;
}
.theme-nada-wrapper .db-header .cont-1-2 {
  flex: 1;
}
.theme-nada-wrapper .db-header .cont-1-2 .header-select {
  flex: 1;
  width: 100px;
}
@media (max-width: 1200px) {
  .theme-nada-wrapper .db-header .cont-1-2 .header-select {
    flex: 0 1 auto;
    width: 19vw;
  }
}
.theme-nada-wrapper .db-main {
  overflow-x: hidden;
  position: relative;
  left: 180px;
  top: 64px;
  width: calc(100% - 180px);
  min-height: calc(100vh - 64px);
  background: #e9ebec;
  -webkit-overflow-scrolling: touch;
}
.theme-nada-wrapper .db-tabs {
  position: fixed !important;
  z-index: 2;
  left: 180px;
  width: calc(100% - 180px);
  transition: 0.2s;
}
.theme-nada-wrapper .db-tabs .mat-tab-links {
  overflow-x: auto;
  background: white;
}
.theme-nada-wrapper .db-tabs.filled {
  background: white;
  border: 1px solid #ccc;
  height: 48px;
}
.theme-nada-wrapper .tab-active {
  background: #eee;
  font-weight: bold;
}
.theme-nada-wrapper .db-subtabs {
  display: flex;
  align-items: center;
  position: fixed;
  z-index: 2;
  right: 4px;
  height: 48px;
}
.theme-nada-wrapper .db-subtabs-action {
  margin-left: 5px;
}
.theme-nada-wrapper .tab-nav-drop-down-added .db-subtabs {
  display: flex;
  position: relative;
  right: unset;
  height: unset;
  flex-direction: column;
  align-items: flex-start;
}
.theme-nada-wrapper .tab-nav-drop-down-added .db-subtabs-action {
  margin-left: 0;
  margin-top: 10px;
  width: 100%;
  padding: 0 10px;
}
.theme-nada-wrapper .tab-nav-drop-down-added .db-subtabs-action > * {
  width: 100% !important;
}
.theme-nada-wrapper .loading-toast {
  display: flex;
  align-items: center;
  opacity: 0;
  position: fixed;
  z-index: 100;
  bottom: 0;
  left: 50%;
  padding: 8px 16px;
  border-top-left-radius: 0.6rem;
  border-top-right-radius: 0.6rem;
  background: #303a48;
  color: white;
  transform: translateX(-50%) translateY(100%);
  transition: 0.4s;
  -webkit-animation-delay: 300ms;
          animation-delay: 300ms;
}
.theme-nada-wrapper .loading-toast.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.theme-nada-wrapper .high-performance .loading-toast {
  transition: none !important;
  -webkit-animation-delay: 0ms !important;
          animation-delay: 0ms !important;
}
.theme-nada-wrapper .layout-compact .db-aside {
  width: 40px !important;
}
.theme-nada-wrapper .layout-compact .db-aside-list-item-link-label,
.theme-nada-wrapper .layout-compact .db-aside-list-item-link-expand,
.theme-nada-wrapper .layout-compact .db-aside-list-nested {
  display: none;
}
.theme-nada-wrapper .layout-compact .db-header,
.theme-nada-wrapper .layout-compact .db-tabs,
.theme-nada-wrapper .layout-compact .db-main {
  left: 40px !important;
  width: calc(100% - 40px) !important;
}
.theme-nada-wrapper simple-sidebar {
  overflow-y: auto;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  height: 100%;
  background: white;
  color: rgba(0, 0, 0, 0.6);
  transform: translateX(100%);
  transition: 0.2s;
}
.theme-nada-wrapper simple-sidebar.active {
  box-shadow: -4px 0 8px rgba(0, 0, 0, 0.2);
  transform: translateX(0);
}
@media (max-width: 450px) {
  .theme-nada-wrapper simple-sidebar {
    width: 100% !important;
  }
}
.theme-nada-wrapper simple-sidebar .simple-sidebar-header, .theme-nada-wrapper simple-sidebar .simple-sidebar-footer {
  height: 64px;
  padding: 0 20px;
  background: #f5f5f5;
}
.theme-nada-wrapper simple-sidebar .simple-sidebar-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.theme-nada-wrapper simple-sidebar .simple-sidebar-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.theme-nada-wrapper simple-sidebar .simple-sidebar-content {
  overflow-y: auto;
  height: calc(100vh - 128px);
}
.theme-nada-wrapper simple-sidebar .simple-sidebar-content.no-footer {
  height: calc(100vh - 64px);
}
.theme-nada-wrapper simple-sidebar .hidden {
  display: none;
}
@media screen and (max-width: 1200px) {
  .theme-nada-wrapper .db-aside {
    display: none !important;
  }
  .theme-nada-wrapper .db-header,
.theme-nada-wrapper .db-tabs,
.theme-nada-wrapper .db-main {
    left: 0 !important;
    width: 100% !important;
  }
}
.theme-nada-wrapper .long-select {
  width: 300px;
}
.theme-nada-wrapper .notification-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  line-height: 18px;
  font-size: 10px;
  text-align: center;
  color: white;
  background: #B71C1C;
}
.theme-nada-wrapper .read-format h1, .theme-nada-wrapper .read-format h2, .theme-nada-wrapper .read-format h3, .theme-nada-wrapper .read-format h4, .theme-nada-wrapper .read-format h5, .theme-nada-wrapper .read-format h6 {
  margin: 1em 0 0.5em 0;
}
.theme-nada-wrapper .read-format p, .theme-nada-wrapper .read-format table, .theme-nada-wrapper .read-format img {
  margin: 0 0 0.5em 0;
}
.theme-nada-wrapper .read-format ul, .theme-nada-wrapper .read-format ol {
  margin: -0.25em 0 0.5em 0;
}
.theme-nada-wrapper .read-format a {
  text-decoration: underline;
}
.theme-nada-wrapper .read-format hr {
  margin: 0.5em 0 0.5em 0;
}
.theme-nada-wrapper .table-heading {
  font-weight: 500;
  background: rgba(0, 0, 0, 0.04);
  padding: 5px;
  border-bottom: 1px solid #999;
  text-align: center;
  font-size: 1.9rem;
}
.theme-nada-wrapper .simple-table {
  border-collapse: collapse;
  width: calc(100% - 1px);
  text-align: left;
  background: white;
  /*
   * Smaller screen layout
   */
  /*
  @media screen and (max-width: $screen-s) {
    box-shadow: none;

    tr {
      display   : block;
      margin    : 1rem 0;
      box-shadow: $box-shadow;
    }

    td {
      display       : block;
      text-align    : right;
      border-bottom : 1px solid map_get($foreground, divider);

      &:nth-child(1) {
        padding: .8rem .8rem .8rem .8rem;
      }

      &:nth-last-child(1) {
        padding: .8rem .8rem .8rem .8rem;
      }

    }

    tr td:nth-last-child(1) {
      border-bottom: none;
    }

    td:before {
      content : attr(data-label);
      float   : left;
    }

    thead {
      opacity : 0;
      position: absolute;
      z-index : -1;
    }

  }
  */
}
.theme-nada-wrapper .simple-table tr {
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.2);
}
.theme-nada-wrapper .simple-table tr:nth-child(2n-1) {
  background: rgba(0, 0, 0, 0.04);
}
.theme-nada-wrapper .simple-table tr:hover {
  background: #eee;
}
.theme-nada-wrapper .simple-table tr.label-block {
  border-bottom: 1px solid rgba(0, 0, 0, 0.9);
}
.theme-nada-wrapper .simple-table nelson-report-row:nth-child(2n) tr {
  background: white;
}
.theme-nada-wrapper .simple-table nelson-report-row:nth-child(2n) tr:hover {
  background: #eee;
}
.theme-nada-wrapper .simple-table thead tr:nth-child(1) {
  background: white;
}
.theme-nada-wrapper .simple-table tbody tr:nth-last-child(1) {
  border-bottom: none;
}
.theme-nada-wrapper .simple-table th {
  padding: 1.6rem 0.8rem;
  font-size: 1.1rem;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.6);
}
.theme-nada-wrapper .simple-table th:nth-child(1) {
  padding: 0.8rem 0.8rem 0.8rem 2.4rem;
}
.theme-nada-wrapper .simple-table th:nth-last-child(1) {
  padding: 0.8rem 2.4rem 0.8rem 0.8rem;
}
.theme-nada-wrapper .simple-table td {
  padding: 0.8rem;
  font-size: 1.2rem;
  color: rgba(0, 0, 0, 0.9);
}
.theme-nada-wrapper .simple-table td:nth-child(1) {
  padding: 0.8rem 0.8rem 0.8rem 2.4rem;
}
.theme-nada-wrapper .simple-table td:nth-last-child(1) {
  padding: 0.8rem 2.4rem 0.8rem 0.8rem;
}
.theme-nada-wrapper .no-style-table {
  border-collapse: collapse;
  width: 100%;
  text-align: left;
}
.theme-nada-wrapper .no-style-table td, .theme-nada-wrapper .no-style-table th {
  padding: 0.4rem;
}
.theme-nada-wrapper .print-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 10px;
}
.theme-nada-wrapper .print-table tr:nth-child(2n) {
  background: #ddd;
}
.theme-nada-wrapper .print-table td, .theme-nada-wrapper .print-table th {
  padding: 2px 4px;
  text-align: left;
}
@media not print {
  .theme-nada-wrapper .print-table.header-sticky {
    table-layout: fixed;
  }
  .theme-nada-wrapper .print-table.header-sticky tbody {
    display: block;
    overflow: auto;
    max-height: 450px;
    width: 100%;
  }
  .theme-nada-wrapper .print-table.header-sticky tr {
    display: flex;
  }
}
.theme-nada-wrapper .label-block {
  font-weight: 700;
  cursor: pointer;
  border-bottom: 1px solid black !important;
}
@media (max-width: 640px) {
  .theme-nada-wrapper .report-table td,
.theme-nada-wrapper .report-table th {
    padding: 2px 4px 2px 2px !important;
    font-size: 10px !important;
  }
}
.theme-nada-wrapper .report-tag {
  position: relative;
}
.theme-nada-wrapper .report-tag td {
  text-align: center;
  padding: 0 !important;
}
.theme-nada-wrapper .report-tag td:first-child {
  overflow: hidden;
  font-size: 1px;
  width: 50px;
}
@media (max-width: 640px) {
  .theme-nada-wrapper .report-tag td:first-child {
    width: 20px;
  }
}
.theme-nada-wrapper .report-tag td:first-child span {
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
          text-orientation: mixed;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
}
@media (max-width: 640px) {
  .theme-nada-wrapper .report-tag td:first-child span {
    font-size: 10px;
  }
}
@media (max-width: 640px) {
  .theme-nada-wrapper .report-tag td {
    padding: 0 !important;
  }
}
.theme-nada-wrapper .grind-new-page {
  page-break-before: always;
}
.theme-nada-wrapper .sticky-header {
  position: absolute;
  z-index: -1;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 16px 0;
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.16);
  background: white;
  border-top: 1px solid #cccccc;
}
.theme-nada-wrapper .sticky-header.active {
  opacity: 1;
  z-index: 10;
}
.theme-nada-wrapper .sticky-header.no-pad {
  padding: 0 !important;
}
.theme-nada-wrapper .nada-column-count {
  line-height: 0;
  border-bottom: 1px solid black !important;
}
.theme-nada-wrapper .nada-avg-row {
  background: #f6dad5 !important;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.25);
}
.theme-nada-wrapper .nada-boc-row {
  background: #c7e2df !important;
}
.theme-nada-wrapper .nada-total-row {
  background: #e3f2fd !important;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.25);
}
.theme-nada-wrapper .nada-highlight-field {
  outline: 2px solid;
  background: #ccd9d7;
}
.theme-nada-wrapper .nada-table-header th {
  background: #dfdac9;
  vertical-align: top;
  padding: 0.5rem !important;
}
@media (max-width: 600px) {
  .theme-nada-wrapper .nada-table-header th {
    min-width: 90px;
  }
}
.theme-nada-wrapper .nada-table-header th.sub-header {
  padding: 1.6rem 0.8rem !important;
}
.theme-nada-wrapper .nada-table-header ::ng-deep p {
  font-size: 12px;
}
@media (max-width: 600px) {
  .theme-nada-wrapper .nada-table-header ::ng-deep p {
    font-size: 10px;
  }
}
@media (max-width: 640px) {
  .theme-nada-wrapper .report-hide-td-mobile {
    display: none;
  }
}
@media (max-width: 640px) {
  .theme-nada-wrapper .report-table-per > td {
    display: none;
  }
}
@media (max-width: 640px) {
  .theme-nada-wrapper .report-table-count > td {
    display: none;
  }
}
@media (max-width: 640px) {
  .theme-nada-wrapper .report-table-percent > td {
    display: none;
  }
}
@media (max-width: 640px) {
  .theme-nada-wrapper .report-table-budget > td {
    display: none;
  }
}
@media (max-width: 640px) {
  .theme-nada-wrapper .order-xs-1 {
    order: 1;
  }
}
@media (max-width: 640px) {
  .theme-nada-wrapper .order-xs-2 {
    order: 2;
  }
}
@media (max-width: 640px) {
  .theme-nada-wrapper .order-xs-3 {
    order: 3;
  }
}
@media (max-width: 640px) {
  .theme-nada-wrapper .order-xs-4 {
    order: 4;
  }
}
.theme-nada-wrapper .details-header {
  cursor: pointer;
}
.theme-nada-wrapper .details-header mat-icon {
  margin-left: 5px;
  transition: opacity 0.2s;
  opacity: 0;
  visibility: hidden;
}
.theme-nada-wrapper .details-header:hover mat-icon {
  opacity: 1;
  visibility: visible;
}
.theme-nada-wrapper .report-compact .report-table-container h5, .theme-nada-wrapper .report-compact .report-table-container h4 {
  font-size: 18px;
}
.theme-nada-wrapper .report-compact .report-table-container .mat-icon-button {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.theme-nada-wrapper .report-compact .report-table-container .report-tag td:first-child {
  width: 1px;
}
.theme-nada-wrapper .report-compact .report-table-container .report-tag td:first-child span {
  font-size: 11px;
}
.theme-nada-wrapper .report-compact .report-table-container .simple-table td {
  padding: 4px 4px 4px 12px;
  font-size: 11px;
}
.theme-nada-wrapper .report-compact .report-table-container .simple-table td:nth-child(1) {
  padding: 4px 4px 4px 12px;
  font-size: 11px;
}
.theme-nada-wrapper .report-compact .report-table-container .simple-table th {
  padding: 4px 4px 4px 12px;
  font-size: 11px;
}
.theme-nada-wrapper .report-compact .report-table-container .mat-card {
  padding: 12px;
}
.theme-nada-wrapper .report-spreadsheet .report-table-container h5, .theme-nada-wrapper .report-spreadsheet .report-table-container h4 {
  font-size: 14px;
}
.theme-nada-wrapper .report-spreadsheet .report-table-container .mat-icon-button {
  width: 20px;
  height: 20px;
  line-height: 20px;
}
.theme-nada-wrapper .report-spreadsheet .report-table-container .report-tag td:first-child {
  width: 1px;
}
.theme-nada-wrapper .report-spreadsheet .report-table-container .report-tag td:first-child span {
  font-size: 9px;
}
.theme-nada-wrapper .report-spreadsheet .report-table-container .simple-table td {
  padding: 2px 2px 2px 6px;
  font-size: 9px;
  border: 1px solid #808080;
  line-height: 1;
}
.theme-nada-wrapper .report-spreadsheet .report-table-container .simple-table td:nth-child(1) {
  padding: 2px 2px 2px 6px;
  font-size: 9px;
}
.theme-nada-wrapper .report-spreadsheet .report-table-container .simple-table th {
  padding: 2px 2px 2px 6px;
  font-size: 9px;
}
.theme-nada-wrapper .report-spreadsheet .report-table-container .mat-card {
  padding: 8px;
}
.theme-nada-wrapper .report-spreadsheet .report-table-container .simple-table thead tr[style] th {
  border: 1px solid #808080;
}
.theme-nada-wrapper .report-spreadsheet .report-table-container .simple-table thead tr[style] + tr th {
  border: 1px solid #808080;
}
.theme-nada-wrapper .spreadsheet-table td {
  border: 1px solid #aaa;
  padding: 5px !important;
}
.theme-nada-wrapper .spreadsheet-table td:nth-child(1), .theme-nada-wrapper .spreadsheet-table th:nth-child(1) {
  background: white;
}
.theme-nada-wrapper .full-row td {
  padding: 5px;
}
.theme-nada-wrapper .weekend-col {
  pointer-events: none;
  background: #ccc;
  color: transparent;
}
.theme-nada-wrapper .weekend-col span {
  opacity: 0;
}
.theme-nada-wrapper .year-row td, .theme-nada-wrapper .year-row td:nth-child(1) {
  background: #b2dfdb;
}
.theme-nada-wrapper .daily-avg-row td, .theme-nada-wrapper .daily-avg-row td:nth-child(1) {
  background: #bbdefb;
}
.theme-nada-wrapper .clear-row td {
  background: #fff;
}
.theme-nada-wrapper .report-row-details {
  width: 200px !important;
  word-break: break-word !important;
}
.theme-nada-wrapper .row-expand-indicator {
  margin-left: -10px;
}
.theme-nada-wrapper .report-row-line-rollup {
  background: white !important;
}
.theme-nada-wrapper .report-row-line-rollup td {
  padding: 4px 8px !important;
  font-size: 10px;
}
.theme-nada-wrapper .report-row-line-rollup td:first-child {
  padding-left: 38px !important;
}
.theme-nada-wrapper nelson-report-row .report-row-line-rollup {
  background: white !important;
}
.theme-dark .theme-nada-wrapper nelson-report-row .report-row-line-rollup.report-row-line-rollup {
  background: #424242 !important;
}
.theme-nada-wrapper nelson-report-row:nth-child(2n-1) .report-row-line-rollup {
  background: white !important;
}
.theme-dark .theme-nada-wrapper nelson-report-row:nth-child(2n-1) .report-row-line-rollup.report-row-line-rollup {
  background: rgba(255, 255, 255, 0.08) !important;
}
.theme-dark .theme-nada-wrapper nelson-report-row:hover .report-row-line-rollup.report-row-line-rollup {
  background: rgba(255, 255, 255, 0.16) !important;
}
.theme-nada-wrapper .report-row-line-rollup-header {
  background: grey;
}
.theme-nada-wrapper .report-row-line-rollup-header .report-row-details {
  font-weight: bold !important;
}
.theme-nada-wrapper .report-table-container {
  padding-top: 6rem;
}
.theme-nada-wrapper .spreadsheet [class^=col-] {
  padding: 0 !important;
}
.theme-nada-wrapper .spreadsheet .sticky-header {
  padding: 0;
}
.theme-nada-wrapper .spreadsheet .sticky-header h4 {
  color: white !important;
  font-size: 1.2rem !important;
  font-weight: normal !important;
}
.theme-nada-wrapper .spreadsheet .sticky-header th {
  padding: 2px !important;
}
.theme-nada-wrapper .spreadsheet .mat-card {
  padding: 0 !important;
  border-radius: 0 !important;
}
.theme-nada-wrapper .spreadsheet .mat-card-title {
  margin-bottom: 0 !important;
  padding: 2px 2px 2px 32px !important;
  background: #666 !important;
}
.theme-nada-wrapper .spreadsheet .mat-card-title .mat-icon-button {
  width: 20px !important;
  height: 20px !important;
  line-height: 20px !important;
}
.theme-nada-wrapper .spreadsheet .mat-card-title .mat-icon-button .mat-icon {
  line-height: 20px !important;
  width: 20px !important;
  height: 20px !important;
  font-size: 20px !important;
  color: white !important;
}
.theme-nada-wrapper .spreadsheet .mat-card-title .mat-form-field {
  font-size: 14px;
}
.theme-nada-wrapper .spreadsheet .mat-card-title .mat-form-field .mat-form-field-wrapper {
  padding-bottom: 0;
}
.theme-nada-wrapper .spreadsheet .mat-card-title .mat-form-field .mat-form-field-infix {
  padding: 0;
  border-top: none;
}
.theme-nada-wrapper .spreadsheet .mat-card-title .mat-form-field .mat-form-field-underline {
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.4);
}
.theme-nada-wrapper .spreadsheet .mat-card-title .mat-form-field .mat-input-element {
  color: white !important;
}
.theme-nada-wrapper .spreadsheet .mat-card-title .mat-form-field .mat-form-field-label {
  top: 10px;
  color: rgba(255, 255, 255, 0.6);
  visibility: visible;
}
.theme-nada-wrapper .spreadsheet .mat-card-title .mat-form-field.mat-focused .mat-form-field-label {
  visibility: hidden;
}
.theme-nada-wrapper .spreadsheet .nada-column-count th {
  line-height: 1 !important;
}
.theme-nada-wrapper .spreadsheet .mat-card-title > div > div > mat-menu {
  display: none !important;
}
.theme-nada-wrapper .spreadsheet .mat-card-title > div > div > h5 {
  color: white !important;
  font-size: 1.2rem !important;
  font-weight: normal !important;
}
.theme-nada-wrapper .spreadsheet .report-table-container {
  padding: 6rem 2rem 2rem;
}
.theme-nada-wrapper .spreadsheet .report-table-container.hot-sheet {
  padding-top: 2rem !important;
}
.theme-nada-wrapper .spreadsheet .report-table > thead > tr > th {
  padding: 2px !important;
  font-weight: normal !important;
}
.theme-nada-wrapper .spreadsheet .report-tag td:first-child {
  width: 30px !important;
  border-right: 1px solid #B71C1C !important;
}
.theme-nada-wrapper .spreadsheet .report-table td {
  padding: 2px !important;
  font-weight: normal !important;
  border: none !important;
}
.theme-nada-wrapper .spreadsheet .report-table td:empty {
  padding: 0 !important;
}
.theme-nada-wrapper .spreadsheet .report-row-details {
  width: 300px !important;
}
.theme-nada-wrapper .spreadsheet .report-table th {
  background: #ddd !important;
  border: 1px solid #bbb !important;
}
.theme-nada-wrapper .spreadsheet .spreadsheet-table td:nth-child(1),
.theme-nada-wrapper .spreadsheet .clear-row td {
  background: #eee !important;
}
.theme-nada-wrapper .spreadsheet .report-table .report-nested-row {
  background: #d2d2d2 !important;
}
.theme-nada-wrapper .spreadsheet .report-table .report-nested-row > td:nth-child(1) {
  padding-left: 20px !important;
  border-left: 2px solid rgba(183, 28, 28, 0.5) !important;
}
.theme-nada-wrapper .spreadsheet .report-table .report-nested-row > td:nth-last-child(1) {
  border-right: 2px solid rgba(183, 28, 28, 0.5) !important;
}
.theme-nada-wrapper .spreadsheet .report-table .report-nested-row.report-nested-row-first > td {
  border-top: 2px solid rgba(183, 28, 28, 0.5) !important;
}
.theme-nada-wrapper .spreadsheet .report-table .report-nested-row.report-nested-row-last > td {
  border-bottom: 2px solid rgba(183, 28, 28, 0.5) !important;
}
.theme-nada-wrapper .spreadsheet .report-row-line-rollup-header {
  background: grey;
}
.theme-nada-wrapper .spreadsheet .report-row-line-rollup-header .report-row-details {
  font-weight: bold !important;
}
.theme-nada-wrapper .spreadsheet .report-row-line-rollup td {
  padding: 2px !important;
  font-size: 10px;
}
.theme-nada-wrapper .spreadsheet .report-row-line-rollup td:first-child {
  padding-left: 20px !important;
}
.theme-nada-wrapper .spreadsheet .report-table-per > td:nth-child(1),
.theme-nada-wrapper .spreadsheet .report-table-count > td:nth-child(1) {
  padding-left: 20px !important;
}
.theme-nada-wrapper .spreadsheet .row-expand-indicator {
  margin-left: 0;
}
.theme-nada-wrapper .spreadsheet .label-block {
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
}
.theme-nada-wrapper .spreadsheet .details-th {
  width: 70px;
}
.theme-nada-wrapper .spreadsheet nelson-rendered-report-schedule .simple-table th,
.theme-nada-wrapper .spreadsheet .nelson-rendered-report-schedule-sticky .simple-table th {
  padding: 2px !important;
  font-weight: normal !important;
}
.theme-nada-wrapper .spreadsheet nelson-rendered-report-schedule .simple-table th:nth-child(1),
.theme-nada-wrapper .spreadsheet .nelson-rendered-report-schedule-sticky .simple-table th:nth-child(1) {
  padding: 2px 2px 2px 6px !important;
}
.theme-nada-wrapper .spreadsheet nelson-rendered-report-schedule .simple-table td,
.theme-nada-wrapper .spreadsheet .nelson-rendered-report-schedule-sticky .simple-table td {
  padding: 2px !important;
  font-weight: normal !important;
  border: none !important;
}
.theme-nada-wrapper .spreadsheet nelson-rendered-report-schedule .simple-table td:nth-child(1),
.theme-nada-wrapper .spreadsheet .nelson-rendered-report-schedule-sticky .simple-table td:nth-child(1) {
  padding: 2px 2px 2px 6px !important;
}
.theme-nada-wrapper .spreadsheet nelson-rendered-report-schedule .simple-table .mat-icon-button,
.theme-nada-wrapper .spreadsheet .nelson-rendered-report-schedule-sticky .simple-table .mat-icon-button {
  height: 24px;
  width: 24px;
  line-height: 24px;
}
.theme-nada-wrapper .flex {
  display: flex;
  flex-wrap: wrap;
}
.theme-nada-wrapper .iflex {
  display: inline-flex;
}
.theme-nada-wrapper .fw-wrap {
  flex-wrap: wrap;
}
.theme-nada-wrapper .fw-nowrap {
  flex-wrap: nowrap;
}
.theme-nada-wrapper .fd-row {
  flex-direction: row;
}
.theme-nada-wrapper .fd-row-rev {
  flex-direction: row-reverse;
}
.theme-nada-wrapper .fd-col {
  flex-direction: column;
}
.theme-nada-wrapper .fd-col-rev {
  flex-direction: column-reverse;
}
.theme-nada-wrapper .ai-stretch {
  align-items: stretch;
}
.theme-nada-wrapper .ai-base {
  align-items: baseline;
}
.theme-nada-wrapper .ai-start {
  align-items: flex-start;
}
.theme-nada-wrapper .ai-end {
  align-items: flex-end;
}
.theme-nada-wrapper .ai-center {
  align-items: center;
}
.theme-nada-wrapper .ac-stretch {
  align-content: stretch;
}
.theme-nada-wrapper .ac-start {
  align-content: flex-start;
}
.theme-nada-wrapper .ac-end {
  align-content: flex-end;
}
.theme-nada-wrapper .ac-center {
  align-content: center;
}
.theme-nada-wrapper .ac-around {
  align-content: space-around;
}
.theme-nada-wrapper .ac-between {
  align-content: space-between;
}
.theme-nada-wrapper .jc-start {
  justify-content: flex-start;
}
.theme-nada-wrapper .jc-end {
  justify-content: flex-end;
}
.theme-nada-wrapper .jc-center {
  justify-content: center;
}
.theme-nada-wrapper .jc-around {
  justify-content: space-around;
}
.theme-nada-wrapper .jc-between {
  justify-content: space-between;
}
.theme-nada-wrapper .jc-evenly {
  justify-content: space-evenly;
}
.theme-nada-wrapper .flex-1 {
  flex: 1;
}
@media (max-width: 1200px) {
  .theme-nada-wrapper .fd-m-col {
    flex-direction: column;
  }
  .theme-nada-wrapper .jc-m-evenly {
    justify-content: space-evenly;
  }
  .theme-nada-wrapper .jc-m-start {
    justify-content: flex-start;
  }
  .theme-nada-wrapper .ai-m-stretch {
    align-items: stretch;
  }
}
@media (max-width: 850px) {
  .theme-nada-wrapper .fw-s-nowrap {
    flex-wrap: nowrap;
  }
  .theme-nada-wrapper .jc-s-start {
    justify-content: flex-start;
  }
  .theme-nada-wrapper .jc-s-between {
    justify-content: space-between;
  }
}
.theme-nada-wrapper .w-full {
  width: 100%;
}
@media (max-width: 850px) {
  .theme-nada-wrapper .w-full-s {
    width: 100%;
  }
}
.theme-nada-wrapper .h-full {
  height: 100%;
}
.theme-nada-wrapper .ta-left {
  text-align: left;
}
.theme-nada-wrapper .ta-center {
  text-align: center;
}
.theme-nada-wrapper .ta-right {
  text-align: right;
}
.theme-nada-wrapper .ta-justify {
  text-align: justify;
}
.theme-nada-wrapper .br-round {
  border-radius: 50%;
}
.theme-nada-wrapper .tt-uppercase {
  text-transform: uppercase;
}
@media (max-width: 450px) {
  .theme-nada-wrapper .hide-xs {
    display: none;
  }
}
@media (max-width: 850px) {
  .theme-nada-wrapper .hide-s {
    display: none;
  }
}
@media (max-width: 1200px) {
  .theme-nada-wrapper .hide-m {
    display: none;
  }
}
.theme-nada-wrapper .show-xs {
  display: none;
}
@media (max-width: 450px) {
  .theme-nada-wrapper .show-xs {
    display: inline-block;
  }
}
.theme-nada-wrapper .show-s {
  display: none;
}
@media (max-width: 850px) {
  .theme-nada-wrapper .show-s {
    display: inline-block;
  }
}
.theme-nada-wrapper .show-m {
  display: none;
}
@media (max-width: 1200px) {
  .theme-nada-wrapper .show-m {
    display: inline-block;
  }
}
.theme-nada-wrapper .columns-1 {
  -moz-columns: 1;
       columns: 1;
}
.theme-nada-wrapper .columns-2 {
  -moz-columns: 2;
       columns: 2;
}
.theme-nada-wrapper .columns-3 {
  -moz-columns: 3;
       columns: 3;
}
.theme-nada-wrapper .columns-4 {
  -moz-columns: 4;
       columns: 4;
}
.theme-nada-wrapper .columns-5 {
  -moz-columns: 5;
       columns: 5;
}
.theme-nada-wrapper .columns-6 {
  -moz-columns: 6;
       columns: 6;
}
.theme-nada-wrapper .columns-7 {
  -moz-columns: 7;
       columns: 7;
}
.theme-nada-wrapper .columns-8 {
  -moz-columns: 8;
       columns: 8;
}
.theme-nada-wrapper .columns-9 {
  -moz-columns: 9;
       columns: 9;
}
.theme-nada-wrapper .columns-10 {
  -moz-columns: 10;
       columns: 10;
}
.theme-nada-wrapper .columns-11 {
  -moz-columns: 11;
       columns: 11;
}
.theme-nada-wrapper .columns-12 {
  -moz-columns: 12;
       columns: 12;
}
@media screen and (max-width: 1200px) {
  .theme-nada-wrapper .columns-m-1 {
    -moz-columns: 1;
         columns: 1;
  }
  .theme-nada-wrapper .columns-m-2 {
    -moz-columns: 2;
         columns: 2;
  }
  .theme-nada-wrapper .columns-m-3 {
    -moz-columns: 3;
         columns: 3;
  }
  .theme-nada-wrapper .columns-m-4 {
    -moz-columns: 4;
         columns: 4;
  }
  .theme-nada-wrapper .columns-m-5 {
    -moz-columns: 5;
         columns: 5;
  }
  .theme-nada-wrapper .columns-m-6 {
    -moz-columns: 6;
         columns: 6;
  }
  .theme-nada-wrapper .columns-m-7 {
    -moz-columns: 7;
         columns: 7;
  }
  .theme-nada-wrapper .columns-m-8 {
    -moz-columns: 8;
         columns: 8;
  }
  .theme-nada-wrapper .columns-m-9 {
    -moz-columns: 9;
         columns: 9;
  }
  .theme-nada-wrapper .columns-m-10 {
    -moz-columns: 10;
         columns: 10;
  }
  .theme-nada-wrapper .columns-m-11 {
    -moz-columns: 11;
         columns: 11;
  }
  .theme-nada-wrapper .columns-m-12 {
    -moz-columns: 12;
         columns: 12;
  }
}
@media screen and (max-width: 850px) {
  .theme-nada-wrapper .columns-s-1 {
    -moz-columns: 1;
         columns: 1;
  }
  .theme-nada-wrapper .columns-s-2 {
    -moz-columns: 2;
         columns: 2;
  }
  .theme-nada-wrapper .columns-s-3 {
    -moz-columns: 3;
         columns: 3;
  }
  .theme-nada-wrapper .columns-s-4 {
    -moz-columns: 4;
         columns: 4;
  }
  .theme-nada-wrapper .columns-s-5 {
    -moz-columns: 5;
         columns: 5;
  }
  .theme-nada-wrapper .columns-s-6 {
    -moz-columns: 6;
         columns: 6;
  }
  .theme-nada-wrapper .columns-s-7 {
    -moz-columns: 7;
         columns: 7;
  }
  .theme-nada-wrapper .columns-s-8 {
    -moz-columns: 8;
         columns: 8;
  }
  .theme-nada-wrapper .columns-s-9 {
    -moz-columns: 9;
         columns: 9;
  }
  .theme-nada-wrapper .columns-s-10 {
    -moz-columns: 10;
         columns: 10;
  }
  .theme-nada-wrapper .columns-s-11 {
    -moz-columns: 11;
         columns: 11;
  }
  .theme-nada-wrapper .columns-s-12 {
    -moz-columns: 12;
         columns: 12;
  }
}
@media screen and (max-width: 450px) {
  .theme-nada-wrapper .columns-xs-1 {
    -moz-columns: 1;
         columns: 1;
  }
  .theme-nada-wrapper .columns-xs-2 {
    -moz-columns: 2;
         columns: 2;
  }
  .theme-nada-wrapper .columns-xs-3 {
    -moz-columns: 3;
         columns: 3;
  }
  .theme-nada-wrapper .columns-xs-4 {
    -moz-columns: 4;
         columns: 4;
  }
  .theme-nada-wrapper .columns-xs-5 {
    -moz-columns: 5;
         columns: 5;
  }
  .theme-nada-wrapper .columns-xs-6 {
    -moz-columns: 6;
         columns: 6;
  }
  .theme-nada-wrapper .columns-xs-7 {
    -moz-columns: 7;
         columns: 7;
  }
  .theme-nada-wrapper .columns-xs-8 {
    -moz-columns: 8;
         columns: 8;
  }
  .theme-nada-wrapper .columns-xs-9 {
    -moz-columns: 9;
         columns: 9;
  }
  .theme-nada-wrapper .columns-xs-10 {
    -moz-columns: 10;
         columns: 10;
  }
  .theme-nada-wrapper .columns-xs-11 {
    -moz-columns: 11;
         columns: 11;
  }
  .theme-nada-wrapper .columns-xs-12 {
    -moz-columns: 12;
         columns: 12;
  }
}
.theme-nada-wrapper .p-a-0 {
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}
.theme-nada-wrapper .p-a-xxs {
  padding: 2px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-a-xxs {
    padding: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-a-xxs {
    padding: 4px;
  }
}
.theme-nada-wrapper .p-a-xs {
  padding: 5px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-a-xs {
    padding: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-a-xs {
    padding: 10px;
  }
}
.theme-nada-wrapper .p-a-s {
  padding: 10px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-a-s {
    padding: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-a-s {
    padding: 20px;
  }
}
.theme-nada-wrapper .p-a-m {
  padding: 20px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-a-m {
    padding: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-a-m {
    padding: 40px;
  }
}
.theme-nada-wrapper .p-a-l {
  padding: 40px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-a-l {
    padding: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-a-l {
    padding: 80px;
  }
}
.theme-nada-wrapper .p-a-xl {
  padding: 80px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-a-xl {
    padding: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-a-xl {
    padding: 160px;
  }
}
.theme-nada-wrapper .p-x-xxs {
  padding-left: 2px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-x-xxs {
    padding-left: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-x-xxs {
    padding-left: 4px;
  }
}
.theme-nada-wrapper .p-x-xxs {
  padding-right: 2px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-x-xxs {
    padding-right: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-x-xxs {
    padding-right: 4px;
  }
}
.theme-nada-wrapper .p-x-xs {
  padding-left: 5px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-x-xs {
    padding-left: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-x-xs {
    padding-left: 10px;
  }
}
.theme-nada-wrapper .p-x-xs {
  padding-right: 5px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-x-xs {
    padding-right: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-x-xs {
    padding-right: 10px;
  }
}
.theme-nada-wrapper .p-x-s {
  padding-left: 10px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-x-s {
    padding-left: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-x-s {
    padding-left: 20px;
  }
}
.theme-nada-wrapper .p-x-s {
  padding-right: 10px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-x-s {
    padding-right: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-x-s {
    padding-right: 20px;
  }
}
.theme-nada-wrapper .p-x-m {
  padding-left: 20px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-x-m {
    padding-left: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-x-m {
    padding-left: 40px;
  }
}
.theme-nada-wrapper .p-x-m {
  padding-right: 20px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-x-m {
    padding-right: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-x-m {
    padding-right: 40px;
  }
}
.theme-nada-wrapper .p-x-l {
  padding-left: 40px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-x-l {
    padding-left: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-x-l {
    padding-left: 80px;
  }
}
.theme-nada-wrapper .p-x-l {
  padding-right: 40px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-x-l {
    padding-right: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-x-l {
    padding-right: 80px;
  }
}
.theme-nada-wrapper .p-x-xl {
  padding-left: 80px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-x-xl {
    padding-left: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-x-xl {
    padding-left: 160px;
  }
}
.theme-nada-wrapper .p-x-xl {
  padding-right: 80px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-x-xl {
    padding-right: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-x-xl {
    padding-right: 160px;
  }
}
.theme-nada-wrapper .p-y-xxs {
  padding-top: 2px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-y-xxs {
    padding-top: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-y-xxs {
    padding-top: 4px;
  }
}
.theme-nada-wrapper .p-y-xxs {
  padding-bottom: 2px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-y-xxs {
    padding-bottom: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-y-xxs {
    padding-bottom: 4px;
  }
}
.theme-nada-wrapper .p-y-xs {
  padding-top: 5px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-y-xs {
    padding-top: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-y-xs {
    padding-top: 10px;
  }
}
.theme-nada-wrapper .p-y-xs {
  padding-bottom: 5px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-y-xs {
    padding-bottom: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-y-xs {
    padding-bottom: 10px;
  }
}
.theme-nada-wrapper .p-y-s {
  padding-top: 10px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-y-s {
    padding-top: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-y-s {
    padding-top: 20px;
  }
}
.theme-nada-wrapper .p-y-s {
  padding-bottom: 10px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-y-s {
    padding-bottom: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-y-s {
    padding-bottom: 20px;
  }
}
.theme-nada-wrapper .p-y-m {
  padding-top: 20px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-y-m {
    padding-top: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-y-m {
    padding-top: 40px;
  }
}
.theme-nada-wrapper .p-y-m {
  padding-bottom: 20px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-y-m {
    padding-bottom: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-y-m {
    padding-bottom: 40px;
  }
}
.theme-nada-wrapper .p-y-l {
  padding-top: 40px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-y-l {
    padding-top: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-y-l {
    padding-top: 80px;
  }
}
.theme-nada-wrapper .p-y-l {
  padding-bottom: 40px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-y-l {
    padding-bottom: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-y-l {
    padding-bottom: 80px;
  }
}
.theme-nada-wrapper .p-y-xl {
  padding-top: 80px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-y-xl {
    padding-top: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-y-xl {
    padding-top: 160px;
  }
}
.theme-nada-wrapper .p-y-xl {
  padding-bottom: 80px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-y-xl {
    padding-bottom: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-y-xl {
    padding-bottom: 160px;
  }
}
.theme-nada-wrapper .p-t-xxs {
  padding-top: 2px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-t-xxs {
    padding-top: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-t-xxs {
    padding-top: 4px;
  }
}
.theme-nada-wrapper .p-t-xs {
  padding-top: 5px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-t-xs {
    padding-top: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-t-xs {
    padding-top: 10px;
  }
}
.theme-nada-wrapper .p-t-s {
  padding-top: 10px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-t-s {
    padding-top: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-t-s {
    padding-top: 20px;
  }
}
.theme-nada-wrapper .p-t-m {
  padding-top: 20px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-t-m {
    padding-top: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-t-m {
    padding-top: 40px;
  }
}
.theme-nada-wrapper .p-t-l {
  padding-top: 40px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-t-l {
    padding-top: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-t-l {
    padding-top: 80px;
  }
}
.theme-nada-wrapper .p-t-xl {
  padding-top: 80px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-t-xl {
    padding-top: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-t-xl {
    padding-top: 160px;
  }
}
.theme-nada-wrapper .p-r-xxs {
  padding-right: 2px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-r-xxs {
    padding-right: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-r-xxs {
    padding-right: 4px;
  }
}
.theme-nada-wrapper .p-r-xs {
  padding-right: 5px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-r-xs {
    padding-right: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-r-xs {
    padding-right: 10px;
  }
}
.theme-nada-wrapper .p-r-s {
  padding-right: 10px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-r-s {
    padding-right: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-r-s {
    padding-right: 20px;
  }
}
.theme-nada-wrapper .p-r-m {
  padding-right: 20px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-r-m {
    padding-right: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-r-m {
    padding-right: 40px;
  }
}
.theme-nada-wrapper .p-r-l {
  padding-right: 40px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-r-l {
    padding-right: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-r-l {
    padding-right: 80px;
  }
}
.theme-nada-wrapper .p-r-xl {
  padding-right: 80px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-r-xl {
    padding-right: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-r-xl {
    padding-right: 160px;
  }
}
.theme-nada-wrapper .p-b-0 {
  padding-bottom: 0;
}
.theme-nada-wrapper .p-b-xxs {
  padding-bottom: 2px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-b-xxs {
    padding-bottom: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-b-xxs {
    padding-bottom: 4px;
  }
}
.theme-nada-wrapper .p-b-xs {
  padding-bottom: 5px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-b-xs {
    padding-bottom: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-b-xs {
    padding-bottom: 10px;
  }
}
.theme-nada-wrapper .p-b-s {
  padding-bottom: 10px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-b-s {
    padding-bottom: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-b-s {
    padding-bottom: 20px;
  }
}
.theme-nada-wrapper .p-b-m {
  padding-bottom: 20px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-b-m {
    padding-bottom: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-b-m {
    padding-bottom: 40px;
  }
}
.theme-nada-wrapper .p-b-l {
  padding-bottom: 40px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-b-l {
    padding-bottom: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-b-l {
    padding-bottom: 80px;
  }
}
.theme-nada-wrapper .p-b-xl {
  padding-bottom: 80px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-b-xl {
    padding-bottom: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-b-xl {
    padding-bottom: 160px;
  }
}
.theme-nada-wrapper .p-l-xxs {
  padding-left: 2px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-l-xxs {
    padding-left: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-l-xxs {
    padding-left: 4px;
  }
}
.theme-nada-wrapper .p-l-xs {
  padding-left: 5px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-l-xs {
    padding-left: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-l-xs {
    padding-left: 10px;
  }
}
.theme-nada-wrapper .p-l-s {
  padding-left: 10px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-l-s {
    padding-left: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-l-s {
    padding-left: 20px;
  }
}
.theme-nada-wrapper .p-l-m {
  padding-left: 20px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-l-m {
    padding-left: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-l-m {
    padding-left: 40px;
  }
}
.theme-nada-wrapper .p-l-l {
  padding-left: 40px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-l-l {
    padding-left: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-l-l {
    padding-left: 80px;
  }
}
.theme-nada-wrapper .p-l-xl {
  padding-left: 80px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .p-l-xl {
    padding-left: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .p-l-xl {
    padding-left: 160px;
  }
}
.theme-nada-wrapper .m-a-0 {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}
.theme-nada-wrapper .m-a-xxs {
  margin: 2px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-a-xxs {
    margin: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-a-xxs {
    margin: 4px;
  }
}
.theme-nada-wrapper .m-a-xs {
  margin: 5px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-a-xs {
    margin: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-a-xs {
    margin: 10px;
  }
}
.theme-nada-wrapper .m-a-s {
  margin: 10px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-a-s {
    margin: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-a-s {
    margin: 20px;
  }
}
.theme-nada-wrapper .m-a-m {
  margin: 20px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-a-m {
    margin: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-a-m {
    margin: 40px;
  }
}
.theme-nada-wrapper .m-a-l {
  margin: 40px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-a-l {
    margin: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-a-l {
    margin: 80px;
  }
}
.theme-nada-wrapper .m-a-xl {
  margin: 80px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-a-xl {
    margin: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-a-xl {
    margin: 160px;
  }
}
.theme-nada-wrapper .m-x-xxs {
  margin-left: 2px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-x-xxs {
    margin-left: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-x-xxs {
    margin-left: 4px;
  }
}
.theme-nada-wrapper .m-x-xxs {
  margin-right: 2px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-x-xxs {
    margin-right: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-x-xxs {
    margin-right: 4px;
  }
}
.theme-nada-wrapper .m-x-xs {
  margin-left: 5px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-x-xs {
    margin-left: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-x-xs {
    margin-left: 10px;
  }
}
.theme-nada-wrapper .m-x-xs {
  margin-right: 5px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-x-xs {
    margin-right: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-x-xs {
    margin-right: 10px;
  }
}
.theme-nada-wrapper .m-x-s {
  margin-left: 10px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-x-s {
    margin-left: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-x-s {
    margin-left: 20px;
  }
}
.theme-nada-wrapper .m-x-s {
  margin-right: 10px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-x-s {
    margin-right: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-x-s {
    margin-right: 20px;
  }
}
.theme-nada-wrapper .m-x-m {
  margin-left: 20px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-x-m {
    margin-left: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-x-m {
    margin-left: 40px;
  }
}
.theme-nada-wrapper .m-x-m {
  margin-right: 20px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-x-m {
    margin-right: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-x-m {
    margin-right: 40px;
  }
}
.theme-nada-wrapper .m-x-l {
  margin-left: 40px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-x-l {
    margin-left: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-x-l {
    margin-left: 80px;
  }
}
.theme-nada-wrapper .m-x-l {
  margin-right: 40px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-x-l {
    margin-right: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-x-l {
    margin-right: 80px;
  }
}
.theme-nada-wrapper .m-x-xl {
  margin-left: 80px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-x-xl {
    margin-left: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-x-xl {
    margin-left: 160px;
  }
}
.theme-nada-wrapper .m-x-xl {
  margin-right: 80px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-x-xl {
    margin-right: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-x-xl {
    margin-right: 160px;
  }
}
.theme-nada-wrapper .m-y-xxs {
  margin-top: 2px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-y-xxs {
    margin-top: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-y-xxs {
    margin-top: 4px;
  }
}
.theme-nada-wrapper .m-y-xxs {
  margin-bottom: 2px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-y-xxs {
    margin-bottom: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-y-xxs {
    margin-bottom: 4px;
  }
}
.theme-nada-wrapper .m-y-xs {
  margin-top: 5px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-y-xs {
    margin-top: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-y-xs {
    margin-top: 10px;
  }
}
.theme-nada-wrapper .m-y-xs {
  margin-bottom: 5px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-y-xs {
    margin-bottom: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-y-xs {
    margin-bottom: 10px;
  }
}
.theme-nada-wrapper .m-y-s {
  margin-top: 10px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-y-s {
    margin-top: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-y-s {
    margin-top: 20px;
  }
}
.theme-nada-wrapper .m-y-s {
  margin-bottom: 10px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-y-s {
    margin-bottom: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-y-s {
    margin-bottom: 20px;
  }
}
.theme-nada-wrapper .m-y-m {
  margin-top: 20px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-y-m {
    margin-top: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-y-m {
    margin-top: 40px;
  }
}
.theme-nada-wrapper .m-y-m {
  margin-bottom: 20px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-y-m {
    margin-bottom: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-y-m {
    margin-bottom: 40px;
  }
}
.theme-nada-wrapper .m-y-l {
  margin-top: 40px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-y-l {
    margin-top: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-y-l {
    margin-top: 80px;
  }
}
.theme-nada-wrapper .m-y-l {
  margin-bottom: 40px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-y-l {
    margin-bottom: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-y-l {
    margin-bottom: 80px;
  }
}
.theme-nada-wrapper .m-y-xl {
  margin-top: 80px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-y-xl {
    margin-top: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-y-xl {
    margin-top: 160px;
  }
}
.theme-nada-wrapper .m-y-xl {
  margin-bottom: 80px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-y-xl {
    margin-bottom: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-y-xl {
    margin-bottom: 160px;
  }
}
.theme-nada-wrapper .m-t-xxs {
  margin-top: 2px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-t-xxs {
    margin-top: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-t-xxs {
    margin-top: 4px;
  }
}
.theme-nada-wrapper .m-t-xs {
  margin-top: 5px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-t-xs {
    margin-top: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-t-xs {
    margin-top: 10px;
  }
}
.theme-nada-wrapper .m-t-s {
  margin-top: 10px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-t-s {
    margin-top: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-t-s {
    margin-top: 20px;
  }
}
.theme-nada-wrapper .m-t-m {
  margin-top: 20px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-t-m {
    margin-top: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-t-m {
    margin-top: 40px;
  }
}
.theme-nada-wrapper .m-t-l {
  margin-top: 40px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-t-l {
    margin-top: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-t-l {
    margin-top: 80px;
  }
}
.theme-nada-wrapper .m-t-xl {
  margin-top: 80px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-t-xl {
    margin-top: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-t-xl {
    margin-top: 160px;
  }
}
.theme-nada-wrapper .m-r-xxs {
  margin-right: 2px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-r-xxs {
    margin-right: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-r-xxs {
    margin-right: 4px;
  }
}
.theme-nada-wrapper .m-r-xs {
  margin-right: 5px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-r-xs {
    margin-right: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-r-xs {
    margin-right: 10px;
  }
}
.theme-nada-wrapper .m-r-s {
  margin-right: 10px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-r-s {
    margin-right: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-r-s {
    margin-right: 20px;
  }
}
.theme-nada-wrapper .m-r-m {
  margin-right: 20px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-r-m {
    margin-right: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-r-m {
    margin-right: 40px;
  }
}
.theme-nada-wrapper .m-r-l {
  margin-right: 40px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-r-l {
    margin-right: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-r-l {
    margin-right: 80px;
  }
}
.theme-nada-wrapper .m-r-xl {
  margin-right: 80px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-r-xl {
    margin-right: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-r-xl {
    margin-right: 160px;
  }
}
.theme-nada-wrapper .m-b-xxs {
  margin-bottom: 2px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-b-xxs {
    margin-bottom: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-b-xxs {
    margin-bottom: 4px;
  }
}
.theme-nada-wrapper .m-b-xs {
  margin-bottom: 5px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-b-xs {
    margin-bottom: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-b-xs {
    margin-bottom: 10px;
  }
}
.theme-nada-wrapper .m-b-s {
  margin-bottom: 10px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-b-s {
    margin-bottom: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-b-s {
    margin-bottom: 20px;
  }
}
.theme-nada-wrapper .m-b-m {
  margin-bottom: 20px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-b-m {
    margin-bottom: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-b-m {
    margin-bottom: 40px;
  }
}
.theme-nada-wrapper .m-b-l {
  margin-bottom: 40px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-b-l {
    margin-bottom: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-b-l {
    margin-bottom: 80px;
  }
}
.theme-nada-wrapper .m-b-xl {
  margin-bottom: 80px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-b-xl {
    margin-bottom: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-b-xl {
    margin-bottom: 160px;
  }
}
.theme-nada-wrapper .m-l-xxs {
  margin-left: 2px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-l-xxs {
    margin-left: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-l-xxs {
    margin-left: 4px;
  }
}
.theme-nada-wrapper .m-l-xs {
  margin-left: 5px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-l-xs {
    margin-left: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-l-xs {
    margin-left: 10px;
  }
}
.theme-nada-wrapper .m-l-s {
  margin-left: 10px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-l-s {
    margin-left: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-l-s {
    margin-left: 20px;
  }
}
.theme-nada-wrapper .m-l-m {
  margin-left: 20px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-l-m {
    margin-left: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-l-m {
    margin-left: 40px;
  }
}
.theme-nada-wrapper .m-l-l {
  margin-left: 40px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-l-l {
    margin-left: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-l-l {
    margin-left: 80px;
  }
}
.theme-nada-wrapper .m-l-xl {
  margin-left: 80px;
}
@media screen and (min-width: 600px) {
  .theme-nada-wrapper .m-l-xl {
    margin-left: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada-wrapper .m-l-xl {
    margin-left: 160px;
  }
}
.theme-nada-wrapper .hover-parent .when-hovered {
  opacity: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transition: opacity 0.3s;
}
.theme-nada-wrapper .hover-parent:hover .when-hovered {
  opacity: 1;
  -webkit-user-select: auto;
     -moz-user-select: auto;
      -ms-user-select: auto;
          user-select: auto;
}
.theme-nada-wrapper .no-transition {
  transition: none !important;
}
.theme-nada-wrapper .no-transition * {
  transition: none !important;
}
.theme-nada-wrapper .inline-block {
  display: inline-block;
}
.theme-nada-wrapper .ws-nowrap {
  white-space: nowrap;
}
.theme-nada-wrapper .bg-intro {
  background-image: url("/assets/intro/intro-bg.svg");
  background-size: cover;
  background-repeat: repeat-x;
  background-position: bottom;
}
.theme-nada-wrapper .relative {
  position: relative;
}
.theme-nada-wrapper .absolute {
  position: absolute;
}
.theme-nada-wrapper .fixed {
  position: fixed;
}
.theme-nada-wrapper .c-primary {
  color: #B71C1C !important;
}
.theme-nada-wrapper .c-accent {
  color: #66BB6A !important;
}
.theme-nada-wrapper .c-warn {
  color: #BDBDBD !important;
}
.theme-nada-wrapper .c-success {
  color: #66bb6a !important;
}
.theme-nada-wrapper .c-white {
  color: white !important;
}
.theme-nada-wrapper .c-red {
  color: #f44336 !important;
}
.theme-nada-wrapper .c-black {
  color: black !important;
}
.theme-nada-wrapper .bg-primary {
  background-color: #B71C1C !important;
}
.theme-nada-wrapper .bg-accent {
  background-color: #66BB6A !important;
}
.theme-nada-wrapper .bg-warn {
  background-color: #BDBDBD !important;
}
.theme-nada-wrapper .bg-success {
  background-color: #66bb6a !important;
}
.theme-nada-wrapper .bg-white {
  background-color: white !important;
}
.theme-nada-wrapper .bg-dark {
  background-color: #303a48;
}
.theme-nada-wrapper .bg-light {
  background-color: #e9ebec;
}
.theme-nada-wrapper .bg-primary-transparentize {
  background-color: rgba(183, 28, 28, 0.1);
}
.theme-nada-wrapper .bg-acent-transparentize {
  background-color: rgba(102, 187, 106, 0.1);
}
.theme-nada-wrapper .bg-warn-transparentize {
  background-color: rgba(189, 189, 189, 0.1);
}
.theme-nada-wrapper .border-primary {
  border: 2px solid #B71C1C !important;
}
.theme-nada-wrapper .border-accent {
  border: 2px solid #66BB6A !important;
}
.theme-nada-wrapper .border-warn {
  border: 2px solid #BDBDBD !important;
}
.theme-nada-wrapper .border-success {
  border: 2px solid #66bb6a !important;
}
.theme-nada-wrapper .op-50 {
  opacity: 0.5;
}
.theme-nada-wrapper .min-h-full {
  min-height: 100vh;
}
.theme-nada-wrapper .fs-10 {
  font-size: 1rem;
}
.theme-nada-wrapper .fs-xs {
  font-size: x-small;
}
.theme-nada-wrapper .fs-s {
  font-size: small;
}
.theme-nada-wrapper .fs-10 {
  font-size: 10px !important;
}
.theme-nada-wrapper .fs-12 {
  font-size: 12px !important;
}
.theme-nada-wrapper .fs-14 {
  font-size: 14px !important;
}
.theme-nada-wrapper .fs-15 {
  font-size: 15px !important;
}
.theme-nada-wrapper .fs-18 {
  font-size: 18px !important;
}
.theme-nada-wrapper .fs-20 {
  font-size: 20px !important;
}
.theme-nada-wrapper .fs-35 {
  font-size: 35px !important;
}
.theme-nada-wrapper .wb-all {
  word-break: break-all;
}
.theme-nada-wrapper .capitalize {
  text-transform: capitalize;
}
.theme-nada-wrapper .lowercase {
  text-transform: lowercase;
}
.theme-nada-wrapper .us-none {
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
.theme-nada-wrapper .box-shadow {
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.theme-nada-wrapper .disabled {
  opacity: 0.5;
  pointer-events: none;
}
.theme-nada-wrapper .read-only {
  pointer-events: none;
}
.theme-nada-wrapper .of-x-auto {
  overflow-x: auto;
}
.theme-nada-wrapper .of-x-hidden {
  overflow-x: hidden;
}
.theme-nada-wrapper .of-hidden {
  overflow: hidden;
}
.theme-nada-wrapper .of-y-auto {
  overflow-y: auto;
}
.theme-nada-wrapper .of-y-hidden {
  overflow-y: hidden;
}
.theme-nada-wrapper .hidden {
  opacity: 0;
  visibility: hidden;
}
.theme-nada-wrapper .pointer {
  cursor: pointer;
}
.theme-nada-wrapper .cursor-drag {
  cursor: -webkit-grab;
  cursor: grab;
}
.theme-nada-wrapper .cursor-move {
  cursor: move;
}
.theme-nada-wrapper .p-tabs {
  padding: 6rem 0 2rem;
}
@media (max-width: 768px) {
  .theme-nada-wrapper .p-tabs {
    padding-top: 8rem;
  }
}
.theme-nada-wrapper .p-tabs-small {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}
@media (max-width: 768px) {
  .theme-nada-wrapper .p-tabs-small {
    padding-top: 5rem;
  }
}
.theme-nada-wrapper .active-scorecard {
  outline: 0.3rem solid #FBC02D;
}
.theme-nada-wrapper .scorecard-label {
  font-size: 1.2rem;
  margin-bottom: -0.6rem;
}
.theme-nada-wrapper .ls-1 {
  letter-spacing: -1px;
}
.theme-nada-wrapper .mat-bar {
  height: 64px;
}
.theme-nada-wrapper .mat-bar-m {
  height: 128px;
}
.theme-nada-wrapper .mat-bar-l {
  height: 192px;
}
.theme-nada-wrapper .mat-bar-xl {
  height: 256px;
}
.theme-nada-wrapper .gm-target td {
  font-size: 1.4rem;
}
.theme-nada-wrapper .gm-target td:nth-last-child(1) {
  text-align: right;
}
.theme-nada-wrapper .dept-target td {
  font-size: 1.1rem;
  padding: 0.8rem;
}
.theme-nada-wrapper .dept-target td:nth-child(1) {
  padding: 0.2rem 0.2rem 0.2rem 2.4rem;
}
.theme-nada-wrapper .dept-target td:nth-last-child(1) {
  padding: 0.8rem 2.4rem 0.8rem 0.8rem;
}
.theme-nada-wrapper .dept-target td:nth-last-child(1) {
  text-align: right;
}
.theme-nada-wrapper button.loading {
  pointer-events: none;
  position: relative;
  border: none;
  color: transparent;
}
.theme-nada-wrapper button.loading span, .theme-nada-wrapper button.loading svg, .theme-nada-wrapper button.loading img {
  opacity: 0;
}
.theme-nada-wrapper button.loading:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 1.8rem;
  width: 1.8rem;
  border-radius: 50%;
  border-width: 0.2rem;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.9) rgba(0, 0, 0, 0.9) transparent transparent;
  -webkit-animation: loading-animation 0.75s linear infinite;
          animation: loading-animation 0.75s linear infinite;
}
@keyframes loading-animation {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@media (max-width: 768px) {
  .theme-nada-wrapper .small-font-on-mobile {
    font-size: 10px;
  }
}
.theme-nada-wrapper .ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.theme-nada-wrapper .vertical-line {
  top: 0;
  height: 100%;
  border-left: 1px solid #B71C1C;
}
.theme-nada-wrapper .docs-tooltip-icon {
  position: absolute;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.theme-nada-wrapper .api-icon {
  height: 2rem;
  color: #B71C1C;
}
.theme-nada-wrapper .dot {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
}
.theme-nada-wrapper .high-panel {
  font-size: 12px !important;
}
.theme-nada-wrapper .high-panel .mat-optgroup-label,
.theme-nada-wrapper .high-panel .mat-option {
  line-height: 20px !important;
  height: 20px !important;
}
.theme-nada-wrapper .warning-card {
  color: white;
  background: #f44336;
  padding: 1rem;
}
.theme-nada-wrapper .theme-dark .spreadsheet .report-table.report-table th {
  background: #424242 !important;
}
.theme-nada-wrapper .theme-dark .c-black.c-black {
  color: white !important;
}
.theme-nada-wrapper .theme-dark.theme-dark .spreadsheet .spreadsheet-table td:nth-child(1),
.theme-nada-wrapper .theme-dark.theme-dark .spreadsheet .clear-row td {
  background: transparent !important;
}
.theme-nada-wrapper .theme-dark .daily-avg-row td {
  background: #081849 !important;
}
.theme-nada-wrapper .theme-dark .year-row td {
  background: #55745e !important;
}
.theme-nada-wrapper .theme-dark .board-card, .theme-nada-wrapper .theme-dark .board-card-header, .theme-nada-wrapper .theme-dark .chat-bar-header {
  background: #424242 !important;
}
.theme-nada-wrapper .theme-dark .board-card-task, .theme-nada-wrapper .theme-dark .chat-bar-content-wrapper, .theme-nada-wrapper .theme-dark small {
  background: #636363 !important;
}
.theme-nada-wrapper .theme-dark .vertical-text {
  color: white;
}
.theme-nada-wrapper .sticky-header {
  background: white !important;
}
.theme-nada-wrapper .fc-unthemed td.fc-today {
  background: #eee;
}
.theme-nada-wrapper .fc-basicDay-button:not(.fc-state-active),
.theme-nada-wrapper .fc-basicWeek-button:not(.fc-state-active),
.theme-nada-wrapper .fc-basicMonth-button:not(.fc-state-active),
.theme-nada-wrapper .fc-next-button,
.theme-nada-wrapper .fc-prev-button,
.theme-nada-wrapper .fc-today-button {
  color: rgba(0, 0, 0, 0.9);
}
.theme-nada-wrapper nelson-tag-input {
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: white;
}
.theme-nada-wrapper nelson-tag-input .chip-wrapper {
  border: 1px solid rgba(0, 0, 0, 0.2) !important;
  background: #f5f5f5 !important;
}
.theme-nada-wrapper nelson-tag-input .chip-input {
  color: rgba(0, 0, 0, 0.9) !important;
}
.theme-nada-wrapper nelson-tag-input ul {
  background-color: #f5f5f5 !important;
  color: rgba(0, 0, 0, 0.9) !important;
}
.theme-nada-wrapper nelson-tag-input ul li:hover, .theme-nada-wrapper nelson-tag-input ul li.active {
  background: #eee !important;
}
.theme-nada-wrapper .c3-tooltip {
  color: black;
}
.theme-nada-wrapper .tick line, .theme-nada-wrapper .domain {
  stroke: rgba(0, 0, 0, 0.9) !important;
}
.theme-nada-wrapper nelson-chart-wrapper {
  fill: rgba(0, 0, 0, 0.9) !important;
}
.theme-nada-wrapper nelson-navbar .mat-select-value {
  color: rgba(255, 255, 255, 0.9);
}
.theme-nada-wrapper nelson-navbar .mat-select-arrow {
  color: rgba(255, 255, 255, 0.6);
}
.theme-nada-wrapper nelson-navbar .mat-form-field-appearance-legacy .mat-form-field-underline {
  background-color: rgba(255, 255, 255, 0.6);
}
.theme-nada-wrapper nelson-navbar .mat-form-field-ripple {
  border-color: rgba(255, 255, 255, 0.6);
}
.theme-nada-wrapper nelson-navbar .mat-form-field-appearance-legacy .mat-form-field-label {
  color: rgba(255, 255, 255, 0.6);
}
.theme-nada-wrapper nelson-navbar .mat-select-disabled .mat-select-value {
  color: rgba(204, 204, 204, 0.6);
}
.theme-nada-wrapper nelson-navbar .mat-form-field .mat-select.mat-select-disabled .mat-select-arrow {
  color: rgba(204, 204, 204, 0.6);
}
.theme-nada-wrapper nelson-navbar .mat-button-toggle-appearance-standard {
  color: rgba(204, 204, 204, 0.6) !important;
}
.theme-nada-wrapper .cdk-overlay-pane {
  max-width: calc(100vw - 200px) !important;
}
@media (max-width: 1200px) {
  .theme-nada-wrapper .cdk-overlay-pane {
    margin-left: 0;
    max-width: 90vw !important;
  }
}
.theme-nada-wrapper .layout-compact-body .cdk-overlay-pane {
  max-width: 90vw !important;
  margin-left: 0 !important;
}
@media (max-width: 599px) {
  .theme-nada-wrapper .cdk-overlay-pane {
    max-width: 100vw !important;
  }
}
@media (max-width: 599px) {
  .theme-nada-wrapper .mat-tab-link {
    min-width: 80px;
  }
}
.theme-nada-wrapper .mat-form-field.mat-focused .mat-form-field-ripple {
  background: #B71C1C !important;
}
.theme-nada-wrapper .mat-primary .mat-pseudo-checkbox-checked {
  background: #B71C1C !important;
}
.theme-nada-wrapper .mat-button-toggle-group,
.theme-nada-wrapper .mat-button-toggle-standalone {
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12) !important;
}
.theme-nada-wrapper .mat-button-toggle-group-appearance-standard {
  border: none !important;
}
.theme-nada-wrapper .mat-button-toggle-appearance-standard {
  background: transparent !important;
  color: rgba(0, 0, 0, 0.6) !important;
}
.theme-nada-wrapper .mat-button-toggle-appearance-standard.mat-button-toggle-checked {
  background-color: #e0e0e0 !important;
  color: rgba(0, 0, 0, 0.9) !important;
}
.theme-nada-wrapper .mat-button-toggle-appearance-standard .mat-button-toggle-label-content {
  line-height: 36px !important;
}
.theme-nada-wrapper .mat-icon-button:hover {
  color: #B71C1C !important;
}
.theme-nada-wrapper .mat-input-small .mat-form-field-infix {
  width: 80px !important;
}
.theme-nada-wrapper .fab-fixed {
  position: fixed !important;
  bottom: 2rem;
  right: 2rem;
}
.theme-nada-wrapper .no-box-shadow .mat-expansion-panel {
  box-shadow: none !important;
}
.theme-nada-wrapper .mat-option.mat-active span {
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada-wrapper .mat-form-field.mat-focused .mat-form-field-label {
  color: gray !important;
}
.theme-nada-wrapper .mat-input-element {
  color: rgba(0, 0, 0, 0.9) !important;
}
.theme-nada-wrapper mat-form-field.c-white .mat-input-element {
  color: white !important;
}
.theme-nada-wrapper .mat-dialog-container {
  max-height: 100vh !important;
}
.theme-nada-wrapper .bg-dark-gray .mat-dialog-container {
  background: #303a48 !important;
}
.theme-nada-wrapper .mat-tab-header-pagination {
  z-index: 1 !important;
}
.theme-nada-wrapper .mat-tab-links {
  background: white !important;
}
.theme-nada-wrapper .mat-tab-links i.material-icons {
  color: rgba(0, 0, 0, 0.6) !important;
}
.theme-nada-wrapper .select-trigger {
  color: rgba(0, 0, 0, 0.9) !important;
  border-bottom-color: rgba(0, 0, 0, 0.2) !important;
}
.theme-nada-wrapper .select-dropdown {
  background: white !important;
}
.theme-nada-wrapper .select-dropdown-item {
  color: rgba(0, 0, 0, 0.9) !important;
}
.theme-nada-wrapper .select-dropdown-item:hover {
  background: #eee !important;
}
.theme-nada-wrapper .file-upload {
  border-bottom-color: rgba(0, 0, 0, 0.2) !important;
}
.theme-nada-wrapper .auth0-lock-cred-pane :nth-child(3) > span {
  width: 100%;
}
.theme-nada-wrapper .auth0-lock-social-button-icon {
  background-size: 100% !important;
}
.theme-nada-wrapper .auth0-lock.auth0-lock .auth0-lock-content {
  padding: 40px !important;
}
.theme-nada-wrapper .auth0-lock.auth0-lock .auth0-lock-social-button {
  border: 1px solid #f1f1f1 !important;
  transition: 0.2s;
  padding: 2px;
  box-sizing: border-box;
  background-color: #4285F4 !important;
}
.theme-nada-wrapper .auth0-lock.auth0-lock .auth0-lock-social-button-icon {
  float: left !important;
  display: inline-block !important;
  width: 36px !important;
  height: 36px !important;
  background-color: white !important;
  top: 1px !important;
  left: 1px !important;
  border-radius: 1px !important;
}
.theme-nada-wrapper .auth0-lock.auth0-lock .auth0-lock-social-button.auth0-lock-social-big-button .auth0-lock-social-button-text {
  padding-left: 52px;
  text-transform: unset !important;
  font-family: Roboto, sans-serif;
  line-height: 35px !important;
  color: white !important;
  font-weight: 600 !important;
  font-size: 14px !important;
}
.theme-nada-wrapper .ngx-datatable.material {
  background: white !important;
}
.theme-nada-wrapper .datatable-header-cell {
  color: rgba(0, 0, 0, 0.9) !important;
  background: white !important;
}
.theme-nada-wrapper .datatable-body-cell,
.theme-nada-wrapper .datatable-footer,
.theme-nada-wrapper .datatable-pager a {
  color: rgba(0, 0, 0, 0.6) !important;
}
.theme-nada-wrapper .datatable-body-row:hover,
.theme-nada-wrapper .datatable-body-row:hover .datatable-row-group {
  background: #eee !important;
}
.theme-nada-wrapper .datatable-header {
  display: flex !important;
  align-items: center;
}
.theme-nada-wrapper .datatable-header .resize-handle {
  border-right-color: #eee !important;
}
.theme-nada-wrapper .datatable-body-cell,
.theme-nada-wrapper .datatable-header-cell {
  display: inline-flex !important;
  align-items: center;
}
.theme-nada-wrapper .datatable-body-cell {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.theme-nada-wrapper .datatable-row-detail,
.theme-nada-wrapper .datatable-row-left {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  background: white !important;
  color: rgba(0, 0, 0, 0.6) !important;
}
.theme-nada-wrapper .details-overflow .datatable-row-detail {
  overflow-y: auto !important;
}
.theme-nada-wrapper .ngx-datatable .mat-form-field-label-wrapper {
  box-sizing: content-box;
}
.theme-nada-wrapper .empty-row {
  color: rgba(0, 0, 0, 0.6) !important;
}
.theme-nada-wrapper .noUi-horizontal {
  height: 6px;
}
.theme-nada-wrapper .noUi-tooltip {
  opacity: 0;
  transition: 0.2s;
}
.theme-nada-wrapper .noUi-horizontal .noUi-handle {
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  transform: translateX(-50%) translateY(-40%);
}
.theme-nada-wrapper .noUi-horizontal .noUi-handle:after, .theme-nada-wrapper .noUi-horizontal .noUi-handle:before {
  display: none;
}
.theme-nada-wrapper .noUi-horizontal .noUi-handle:hover .noUi-tooltip, .theme-nada-wrapper .noUi-horizontal .noUi-handle.noUi-active .noUi-tooltip {
  opacity: 1;
}
.theme-nada-wrapper .noUi-connect {
  background: #B71C1C;
}
.theme-nada-wrapper .noUi-wrapper {
  padding-bottom: 40px;
}
.theme-nada-wrapper .noUi-marker-horizontal.noUi-marker-large {
  top: 10px;
  height: 8px;
}
.theme-nada-wrapper .header-slider .noUi-horizontal .noUi-tooltip {
  bottom: -270%;
}
.theme-nada-wrapper .ngx-datatable .datatable-body .datatable-row-wrapper:hover {
  z-index: 1;
}
.theme-nada-wrapper .jsoneditor-poweredBy {
  display: none;
}
.theme-nada-wrapper .swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.theme-nada-wrapper .swiper-button-next, .theme-nada-wrapper .swiper-button-prev {
  background-image: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.75);
}
.theme-nada-wrapper .swiper-button-next svg, .theme-nada-wrapper .swiper-button-prev svg {
  width: 30px;
}
@media (max-width: 768px) {
  .theme-nada-wrapper .mat-button-toggle-button, .theme-nada-wrapper .mat-button-toggle-label-content {
    width: 100% !important;
  }
  .theme-nada-wrapper .mat-tab-link {
    font-size: 10px;
  }
}
.theme-nada-wrapper .report-tag td:first-child {
  border-right: 2px solid #B71C1C;
}
@media (max-width: 600px) {
  .theme-nada-wrapper .c3-axis.c3-axis-x tspan:not(:nth-child(1)) {
    display: none;
  }
}
.theme-nada-wrapper #mce-modal-block {
  z-index: 63000 !important;
}
.theme-nada-wrapper .cdk-overlay-container {
  z-index: 63001 !important;
}
.theme-nada-wrapper .pre {
  margin: 0;
}
.theme-nada-wrapper .language-markup {
  color: white;
}
.theme-nada-wrapper .language-markup .token {
  color: white;
}
.theme-nada-wrapper .tooltip-font-12 {
  font-size: 12px !important;
}
@page {
  .theme-nada-wrapper {
    size: a4;
    margin: 10px;
  }
}
.theme-nada-wrapper .show-print {
  display: none;
}
@media print {
  .theme-nada-wrapper .show-print {
    display: block;
  }
}
@media print {
  .theme-nada-wrapper .hide-print {
    display: none;
  }
  .theme-nada-wrapper .cdk-overlay-container {
    position: static !important;
  }
  .theme-nada-wrapper .cdk-overlay-connected-position-bounding-box {
    display: none !important;
  }
  .theme-nada-wrapper .cdk-overlay-backdrop {
    display: none !important;
  }
  .theme-nada-wrapper .cdk-global-overlay-wrapper {
    position: static !important;
  }
  .theme-nada-wrapper .cdk-overlay-pane {
    max-width: unset !important;
  }
  .theme-nada-wrapper .cdk-global-scrollblock {
    position: static !important;
    overflow-y: visible !important;
  }
  .theme-nada-wrapper .mat-dialog-container {
    box-shadow: unset !important;
    padding: 10px !important;
    overflow: visible !important;
  }
  .theme-nada-wrapper .p-tabs {
    padding: 0;
  }
  .theme-nada-wrapper .active-scorecard {
    outline: none;
  }
  .theme-nada-wrapper .scorecards h1, .theme-nada-wrapper .scorecards h2, .theme-nada-wrapper .scorecards h3, .theme-nada-wrapper .scorecards h4, .theme-nada-wrapper .scorecards h5, .theme-nada-wrapper .scorecards h6 {
    font-size: 14px;
  }
  .theme-nada-wrapper .scorecards p {
    font-size: 11px;
  }
  .theme-nada-wrapper .docs-tooltip-icon {
    display: none;
  }
  .theme-nada-wrapper .print-modal-header {
    display: none;
  }
  .theme-nada-wrapper .print-modal-subheader {
    display: none;
  }
  .theme-nada-wrapper .print-modal-body {
    max-height: unset !important;
    padding-top: unset !important;
    overflow: visible !important;
  }
  .theme-nada-wrapper .db-main {
    left: 0;
    top: 0;
    width: 100%;
    height: unset !important;
    min-height: unset !important;
    background: unset !important;
  }
}
.theme-mr-wrapper {
  /*
   * Box sizing
   */
  /*
   * Page setup
   */
  /*
   * Custom scrollbar
   */
  /*
   * Dashboard sidebar
   */
  /*
   * Dashboard header
   */
  /*
   * Dashboard main
   */
  /*
   * Dashboard tabs
   */
  /*
   * Dashboard tabs
   */
  /*
   * Loading toast
   */
  /*
   * Compact navigation style
   */
  /*
   * Simple sidebar
   */
  /*
   * Layout responsive style
   */
  /*
   * Simple table
   */
  /*
   * No style table
   */
  /*
   * Print table
   */
  /*
   * Flex
   */
  /*
   * Width
   */
  /*
   * Height
   */
  /*
   * Text align
   */
  /*
   * Border-radius
   */
  /*
   * Text transform
   */
  /*
   * Hide & show
   */
  /*
   * Columns
   */
  /*
   * Padding
   */
  /*
   * Margin
   */
  /*
   * Sticky header
   */
  /*
   * Calendar
   */
  /*
   * Nelson tag input
   */
  /*
   * Nelson chart
   */
  /*
   * Navbar overrides
   */
  /*
   * Material overrides
   */
  /*
   * add-remove-select component override
   */
  /*
   * file-upload component
   */
  /*
   * Auth0 overrides
   */
  /*
   * ngx-datatable overrides
   */
  /*
   * noUi slider overrides
   */
  /**
   * NoUi header class
   */
  /*@media (max-width: 762px) {
    mat-panel-title {
      margin-right: 0!important;

    }
    mat-panel-description {
      margin-right: 0!important;
    }
  }*/
  /*
   * JSON editor overrides
   */
  /*
   * Page builder slider
   */
  /*
   * Report overrides
   */
  /*
   * Prism
   */
}
.theme-mr-wrapper html {
  box-sizing: border-box;
  width: 100%;
}
.theme-mr-wrapper *,
.theme-mr-wrapper *:before,
.theme-mr-wrapper *:after {
  box-sizing: border-box;
}
.theme-mr-wrapper body {
  margin: 0;
  overflow-x: hidden;
  min-height: 100vh;
  background: white;
}
.theme-mr-wrapper ::-webkit-scrollbar {
  width: 8px;
  height: 3px;
}
.theme-mr-wrapper ::-webkit-scrollbar-track {
  border-radius: 0;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.35);
  background: rgba(238, 238, 238, 0.2);
}
.theme-mr-wrapper ::-webkit-scrollbar-thumb {
  border-radius: 40px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.35);
  background: rgba(170, 170, 170, 0.7);
}
.theme-mr-wrapper img {
  max-width: 100%;
  font-style: italic;
  vertical-align: middle;
}
.theme-mr-wrapper .img-full {
  width: 100%;
  height: 100%;
}
.theme-mr-wrapper .img-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.theme-mr-wrapper .img-contain {
  -o-object-fit: contain;
     object-fit: contain;
}
.theme-mr-wrapper .img-container {
  position: relative;
  overflow: hidden;
}
.theme-mr-wrapper .img-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.theme-mr-wrapper .img-container[data-aspect-ratio="1:1"] {
  padding-bottom: 100%;
}
.theme-mr-wrapper .img-container[data-aspect-ratio="4:3"] {
  padding-bottom: 75%;
}
.theme-mr-wrapper html {
  color: rgba(0, 0, 0, 0.6);
}
.theme-mr-wrapper h1, .theme-mr-wrapper h2, .theme-mr-wrapper h3, .theme-mr-wrapper h4, .theme-mr-wrapper h5, .theme-mr-wrapper h6 {
  color: rgba(0, 0, 0, 0.9);
}
.theme-mr-wrapper p {
  color: rgba(0, 0, 0, 0.6);
}
.theme-mr-wrapper fieldset legend {
  color: rgba(0, 0, 0, 0.6);
}
.theme-mr-wrapper hr {
  border-color: rgba(0, 0, 0, 0.2);
}
.theme-mr-wrapper .vr {
  border-color: rgba(0, 0, 0, 0.2);
}
.theme-mr-wrapper .grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 160rem;
  width: 100%;
  margin: 0 auto;
}
.theme-mr-wrapper .grid > [class*=col] {
  padding: 1rem;
}
.theme-mr-wrapper .grid.full {
  max-width: 100%;
}
.theme-mr-wrapper .grid.gutter-l > [class*=col] {
  padding: 2rem;
}
.theme-mr-wrapper .grid.gutter-m > [class*=col] {
  padding: 1rem;
}
.theme-mr-wrapper .grid.gutter-s > [class*=col] {
  padding: 0.5rem;
}
.theme-mr-wrapper .grid.nogutter > [class*=col] {
  padding: 0;
}
.theme-mr-wrapper .grid .col-1 {
  flex-basis: 8.3333%;
  width: 8.3333%;
}
.theme-mr-wrapper .grid .col-2 {
  flex-basis: 16.6666%;
  width: 16.6666%;
}
.theme-mr-wrapper .grid .col-3 {
  flex-basis: 25%;
  width: 25%;
}
.theme-mr-wrapper .grid .col-4 {
  flex-basis: 33.3333%;
  width: 33.3333%;
}
.theme-mr-wrapper .grid .col-5 {
  flex-basis: 41.6666%;
  width: 41.6666%;
}
.theme-mr-wrapper .grid .col-6 {
  flex-basis: 50%;
  width: 50%;
}
.theme-mr-wrapper .grid .col-7 {
  flex-basis: 58.3333%;
  width: 58.3333%;
}
.theme-mr-wrapper .grid .col-8 {
  flex-basis: 66.6666%;
  width: 66.6666%;
}
.theme-mr-wrapper .grid .col-9 {
  flex-basis: 75%;
  width: 75%;
}
.theme-mr-wrapper .grid .col-10 {
  flex-basis: 83.3333%;
  width: 83.3333%;
}
.theme-mr-wrapper .grid .col-11 {
  flex-basis: 91.6666%;
  width: 91.6666%;
}
.theme-mr-wrapper .grid .col-12 {
  flex-basis: 100%;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .theme-mr-wrapper .grid .o-m-last {
    order: 9;
  }
  .theme-mr-wrapper .grid .col-m-0 {
    display: none;
  }
  .theme-mr-wrapper .grid .col-m-1 {
    flex-basis: 8.3333%;
    width: 8.3333%;
  }
  .theme-mr-wrapper .grid .col-m-2 {
    flex-basis: 16.6666%;
    width: 16.6666%;
  }
  .theme-mr-wrapper .grid .col-m-3 {
    flex-basis: 25%;
    width: 25%;
  }
  .theme-mr-wrapper .grid .col-m-4 {
    flex-basis: 33.3333%;
    width: 33.3333%;
  }
  .theme-mr-wrapper .grid .col-m-5 {
    flex-basis: 41.6666%;
    width: 41.6666%;
  }
  .theme-mr-wrapper .grid .col-m-6 {
    flex-basis: 50%;
    width: 50%;
  }
  .theme-mr-wrapper .grid .col-m-7 {
    flex-basis: 58.3333%;
    width: 58.3333%;
  }
  .theme-mr-wrapper .grid .col-m-8 {
    flex-basis: 66.6666%;
    width: 66.6666%;
  }
  .theme-mr-wrapper .grid .col-m-9 {
    flex-basis: 75%;
    width: 75%;
  }
  .theme-mr-wrapper .grid .col-m-10 {
    flex-basis: 83.3333%;
    width: 83.3333%;
  }
  .theme-mr-wrapper .grid .col-m-11 {
    flex-basis: 91.6666%;
    width: 91.6666%;
  }
  .theme-mr-wrapper .grid .col-m-12 {
    flex-basis: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 850px) {
  .theme-mr-wrapper .grid .o-s-last {
    order: 9;
  }
  .theme-mr-wrapper .grid .col-s-0 {
    display: none;
  }
  .theme-mr-wrapper .grid .col-s-1 {
    flex-basis: 8.3333%;
    width: 8.3333%;
  }
  .theme-mr-wrapper .grid .col-s-2 {
    flex-basis: 16.6666%;
    width: 16.6666%;
  }
  .theme-mr-wrapper .grid .col-s-3 {
    flex-basis: 25%;
    width: 25%;
  }
  .theme-mr-wrapper .grid .col-s-4 {
    flex-basis: 33.3333%;
    width: 33.3333%;
  }
  .theme-mr-wrapper .grid .col-s-5 {
    flex-basis: 41.6666%;
    width: 41.6666%;
  }
  .theme-mr-wrapper .grid .col-s-6 {
    flex-basis: 50%;
    width: 50%;
  }
  .theme-mr-wrapper .grid .col-s-7 {
    flex-basis: 58.3333%;
    width: 58.3333%;
  }
  .theme-mr-wrapper .grid .col-s-8 {
    flex-basis: 66.6666%;
    width: 66.6666%;
  }
  .theme-mr-wrapper .grid .col-s-9 {
    flex-basis: 75%;
    width: 75%;
  }
  .theme-mr-wrapper .grid .col-s-10 {
    flex-basis: 83.3333%;
    width: 83.3333%;
  }
  .theme-mr-wrapper .grid .col-s-11 {
    flex-basis: 91.6666%;
    width: 91.6666%;
  }
  .theme-mr-wrapper .grid .col-s-12 {
    flex-basis: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 450px) {
  .theme-mr-wrapper .grid .o-xs-last {
    order: 9;
  }
  .theme-mr-wrapper .grid .col-xs-0 {
    display: none;
  }
  .theme-mr-wrapper .grid .col-xs-1 {
    flex-basis: 8.3333%;
    width: 8.3333%;
  }
  .theme-mr-wrapper .grid .col-xs-2 {
    flex-basis: 16.6666%;
    width: 16.6666%;
  }
  .theme-mr-wrapper .grid .col-xs-3 {
    flex-basis: 25%;
    width: 25%;
  }
  .theme-mr-wrapper .grid .col-xs-4 {
    flex-basis: 33.3333%;
    width: 33.3333%;
  }
  .theme-mr-wrapper .grid .col-xs-5 {
    flex-basis: 41.6666%;
    width: 41.6666%;
  }
  .theme-mr-wrapper .grid .col-xs-6 {
    flex-basis: 50%;
    width: 50%;
  }
  .theme-mr-wrapper .grid .col-xs-7 {
    flex-basis: 58.3333%;
    width: 58.3333%;
  }
  .theme-mr-wrapper .grid .col-xs-8 {
    flex-basis: 66.6666%;
    width: 66.6666%;
  }
  .theme-mr-wrapper .grid .col-xs-9 {
    flex-basis: 75%;
    width: 75%;
  }
  .theme-mr-wrapper .grid .col-xs-10 {
    flex-basis: 83.3333%;
    width: 83.3333%;
  }
  .theme-mr-wrapper .grid .col-xs-11 {
    flex-basis: 91.6666%;
    width: 91.6666%;
  }
  .theme-mr-wrapper .grid .col-xs-12 {
    flex-basis: 100%;
    width: 100%;
  }
}
.theme-mr-wrapper .layout-fluid .grid {
  max-width: unset !important;
}
.theme-mr-wrapper .bg-color {
  background: rgba(69, 102, 123, 0.9);
}
.theme-mr-wrapper .collapsed-menu {
  margin-left: 40px !important;
}
.theme-mr-wrapper .compact-title {
  font-size: 18px;
  color: #d0d6e2;
  padding: 0 16px;
  height: 40px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #d0d6e2;
}
.theme-mr-wrapper .sidebar-mat-menu {
  background: rgba(69, 102, 123, 0.9);
  margin-left: 180px;
  border-radius: 0 !important;
  min-height: auto !important;
  border: 1px solid rgba(0, 0, 0, 0.12);
}
.theme-mr-wrapper .sidebar-mat-menu .mat-menu-item {
  color: #d0d6e2;
  line-height: 1;
  height: 40px;
}
.theme-mr-wrapper .sidebar-mat-menu .mat-menu-item.active {
  color: #00334f;
  font-weight: 700;
}
.theme-mr-wrapper .sidebar-mat-menu .mat-menu-item:hover {
  background: rgba(255, 255, 255, 0.1);
}
.theme-mr-wrapper .sidebar-mat-menu .mat-menu-item:hover .favorite {
  opacity: 1;
  pointer-events: auto;
}
.theme-mr-wrapper .sidebar-mat-menu .mat-menu-content {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.theme-mr-wrapper .sidebar-mat-menu .mat-menu-item-submenu-trigger::after {
  color: #d0d6e2;
}
.theme-mr-wrapper .sidebar-mat-menu-child {
  margin-top: 7px !important;
  background: rgba(69, 102, 123, 0.9);
  border-radius: 0 !important;
  min-height: auto !important;
  border: 1px solid rgba(0, 0, 0, 0.12);
}
.theme-mr-wrapper .sidebar-mat-menu-child .mat-menu-item {
  color: #d0d6e2;
  line-height: 1;
  height: 40px;
}
.theme-mr-wrapper .sidebar-mat-menu-child .mat-menu-item.active {
  color: #00334f;
  font-weight: 700;
}
.theme-mr-wrapper .sidebar-mat-menu-child .mat-menu-item:hover {
  background: rgba(255, 255, 255, 0.1);
}
.theme-mr-wrapper .sidebar-mat-menu-child .mat-menu-content {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.theme-mr-wrapper .sidebar-mat-menu-child .mat-menu-item-submenu-trigger::after {
  color: #d0d6e2;
}
.theme-mr-wrapper .active-inner .active-primary-color {
  color: #00334f;
}
.theme-mr-wrapper .favorite {
  pointer-events: none;
  opacity: 0;
  transition: 0.2s;
  cursor: pointer;
  margin-right: 0 !important;
}
.theme-mr-wrapper .db-aside {
  position: fixed;
  z-index: 63004;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  width: 180px;
  height: 100%;
  color: #d0d6e2;
  background: #45667b;
}
.theme-mr-wrapper .db-aside-list {
  padding: 0;
  list-style: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  overflow-y: auto;
  overflow-x: hidden;
  line-height: 2.4;
}
.theme-mr-wrapper .db-aside-list-item .divider {
  display: none;
  margin: 0;
}
.theme-mr-wrapper .db-aside-list-item.expanded {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.5) 2px, rgba(255, 255, 255, 0.06) 2px, rgba(255, 255, 255, 0.06));
}
.theme-mr-wrapper .db-aside-list-item.expanded .divider {
  display: block;
  border-color: #00334f !important;
  opacity: 60%;
}
.theme-mr-wrapper .db-aside-list-item-logo {
  height: 64px;
  display: flex;
  justify-content: center;
}
.theme-mr-wrapper .db-aside-list-item-link {
  display: flex;
  white-space: nowrap;
  align-items: center;
  width: 100%;
  padding: 8px;
  font-size: 14px;
}
.theme-mr-wrapper .db-aside-list-item-link:hover {
  background: rgba(255, 255, 255, 0.04);
}
.theme-mr-wrapper .db-aside-list-item-link.active {
  color: #00334f;
}
.theme-mr-wrapper .db-aside-list-item-link-label {
  margin-left: 8px;
  margin-right: 8px;
}
.theme-mr-wrapper .db-aside-list-item-link .navicon {
  color: rgba(160, 160, 179, 0.5);
}
.theme-mr-wrapper .db-aside-list-item-link-expand {
  margin-left: auto;
  margin-right: 8px;
}
.theme-mr-wrapper .db-aside-list-item-link-expand.expanded {
  transform: rotate(90deg);
}
.theme-mr-wrapper .db-aside-list-nested {
  padding: 0;
  list-style: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  overflow: hidden;
  max-height: 0;
  transition: 0.4s;
}
.theme-mr-wrapper .db-aside-list-nested.expanded {
  max-height: 1000px;
}
.theme-mr-wrapper .db-aside-list-nested-item-link {
  position: relative;
  display: flex;
  white-space: nowrap;
  align-items: center;
  width: 100%;
  padding: 4px 8px 4px 25px;
  font-size: 13px;
  transition: 0.2s;
  justify-content: space-between;
}
.theme-mr-wrapper .db-aside-list-nested-item-link:hover {
  background: rgba(255, 255, 255, 0.04);
}
.theme-mr-wrapper .db-aside-list-nested-item-link:hover .favorite {
  pointer-events: auto;
  opacity: 1;
}
.theme-mr-wrapper .db-aside-list-nested-item-link.active {
  color: #00334f;
  background: rgba(255, 255, 255, 0.06);
}
.theme-mr-wrapper .db-aside-list-nested-item-link-icon {
  font-size: 20px;
  line-height: 20px;
  width: 20px;
  height: 20px;
}
.theme-mr-wrapper .db-aside-list-nested-item-link-label {
  margin-left: 8px;
  margin-right: 8px;
}
.theme-mr-wrapper .db-aside-list-nested-item-link-expand {
  font-size: 20px;
  line-height: 20px;
  width: 20px;
  height: 20px;
  margin-left: auto;
  margin-right: 8px;
}
.theme-mr-wrapper .db-aside-list-nested-item-link-expand.expanded {
  transform: rotate(90deg);
}
.theme-mr-wrapper .db-aside-list-nested-item-expand {
  padding: 0;
  list-style: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  overflow: hidden;
}
.theme-mr-wrapper .db-aside-list-nested-item-expand-link {
  position: relative;
  display: flex;
  white-space: nowrap;
  align-items: center;
  width: 100%;
  padding: 4px 8px 4px 33px;
  font-size: 13px;
  transition: 0.2s;
  justify-content: space-between;
}
.theme-mr-wrapper .db-aside-list-nested-item-expand-link:hover {
  background: rgba(255, 255, 255, 0.04);
}
.theme-mr-wrapper .db-aside-list-nested-item-expand-link:hover .favorite {
  pointer-events: auto;
  opacity: 1;
}
.theme-mr-wrapper .db-aside-list-nested-item-expand-link.active {
  color: #00334f;
}
.theme-mr-wrapper .db-aside-list-nested-item-expand-link.expanded {
  transform: rotate(90deg);
}
.theme-mr-wrapper .db-aside-list-nested-item-expand-link i {
  padding-right: 2px;
  margin: 0 0 0 auto;
  color: rgba(160, 160, 179, 0.5);
  font-size: 15px;
}
.theme-mr-wrapper .db-header {
  position: fixed;
  z-index: 100;
  left: 180px;
  top: 0;
  width: calc(100% - 180px);
  height: 64px;
  color: #b8c2d6;
  background: #45667b;
}
.theme-mr-wrapper .db-header .header-profile-picture {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 10px;
}
.theme-mr-wrapper .db-header .header-select {
  padding-top: 18px;
}
.theme-mr-wrapper .db-header .cont-1 {
  flex: 2;
}
.theme-mr-wrapper .db-header .cont-2 {
  flex: 0 1 auto;
}
.theme-mr-wrapper .db-header .cont-2 .mat-icon-button {
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-size: 20px;
}
.theme-mr-wrapper .db-header .cont-1-2 {
  flex: 1;
}
.theme-mr-wrapper .db-header .cont-1-2 .header-select {
  flex: 1;
  width: 100px;
}
@media (max-width: 1200px) {
  .theme-mr-wrapper .db-header .cont-1-2 .header-select {
    flex: 0 1 auto;
    width: 19vw;
  }
}
.theme-mr-wrapper .db-main {
  overflow-x: hidden;
  position: relative;
  left: 180px;
  top: 64px;
  width: calc(100% - 180px);
  min-height: calc(100vh - 64px);
  background: #e9ebec;
  -webkit-overflow-scrolling: touch;
}
.theme-mr-wrapper .db-tabs {
  position: fixed !important;
  z-index: 2;
  left: 180px;
  width: calc(100% - 180px);
  transition: 0.2s;
}
.theme-mr-wrapper .db-tabs .mat-tab-links {
  overflow-x: auto;
  background: white;
}
.theme-mr-wrapper .db-tabs.filled {
  background: white;
  border: 1px solid #ccc;
  height: 48px;
}
.theme-mr-wrapper .tab-active {
  background: #eee;
  font-weight: bold;
}
.theme-mr-wrapper .db-subtabs {
  display: flex;
  align-items: center;
  position: fixed;
  z-index: 2;
  right: 4px;
  height: 48px;
}
.theme-mr-wrapper .db-subtabs-action {
  margin-left: 5px;
}
.theme-mr-wrapper .tab-nav-drop-down-added .db-subtabs {
  display: flex;
  position: relative;
  right: unset;
  height: unset;
  flex-direction: column;
  align-items: flex-start;
}
.theme-mr-wrapper .tab-nav-drop-down-added .db-subtabs-action {
  margin-left: 0;
  margin-top: 10px;
  width: 100%;
  padding: 0 10px;
}
.theme-mr-wrapper .tab-nav-drop-down-added .db-subtabs-action > * {
  width: 100% !important;
}
.theme-mr-wrapper .loading-toast {
  display: flex;
  align-items: center;
  opacity: 0;
  position: fixed;
  z-index: 100;
  bottom: 0;
  left: 50%;
  padding: 8px 16px;
  border-top-left-radius: 0.6rem;
  border-top-right-radius: 0.6rem;
  background: #303a48;
  color: white;
  transform: translateX(-50%) translateY(100%);
  transition: 0.4s;
  -webkit-animation-delay: 300ms;
          animation-delay: 300ms;
}
.theme-mr-wrapper .loading-toast.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.theme-mr-wrapper .high-performance .loading-toast {
  transition: none !important;
  -webkit-animation-delay: 0ms !important;
          animation-delay: 0ms !important;
}
.theme-mr-wrapper .layout-compact .db-aside {
  width: 40px !important;
}
.theme-mr-wrapper .layout-compact .db-aside-list-item-link-label,
.theme-mr-wrapper .layout-compact .db-aside-list-item-link-expand,
.theme-mr-wrapper .layout-compact .db-aside-list-nested {
  display: none;
}
.theme-mr-wrapper .layout-compact .db-header,
.theme-mr-wrapper .layout-compact .db-tabs,
.theme-mr-wrapper .layout-compact .db-main {
  left: 40px !important;
  width: calc(100% - 40px) !important;
}
.theme-mr-wrapper simple-sidebar {
  overflow-y: auto;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  height: 100%;
  background: white;
  color: rgba(0, 0, 0, 0.6);
  transform: translateX(100%);
  transition: 0.2s;
}
.theme-mr-wrapper simple-sidebar.active {
  box-shadow: -4px 0 8px rgba(0, 0, 0, 0.2);
  transform: translateX(0);
}
@media (max-width: 450px) {
  .theme-mr-wrapper simple-sidebar {
    width: 100% !important;
  }
}
.theme-mr-wrapper simple-sidebar .simple-sidebar-header, .theme-mr-wrapper simple-sidebar .simple-sidebar-footer {
  height: 64px;
  padding: 0 20px;
  background: #f5f5f5;
}
.theme-mr-wrapper simple-sidebar .simple-sidebar-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.theme-mr-wrapper simple-sidebar .simple-sidebar-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.theme-mr-wrapper simple-sidebar .simple-sidebar-content {
  overflow-y: auto;
  height: calc(100vh - 128px);
}
.theme-mr-wrapper simple-sidebar .simple-sidebar-content.no-footer {
  height: calc(100vh - 64px);
}
.theme-mr-wrapper simple-sidebar .hidden {
  display: none;
}
@media screen and (max-width: 1200px) {
  .theme-mr-wrapper .db-aside {
    display: none !important;
  }
  .theme-mr-wrapper .db-header,
.theme-mr-wrapper .db-tabs,
.theme-mr-wrapper .db-main {
    left: 0 !important;
    width: 100% !important;
  }
}
.theme-mr-wrapper .long-select {
  width: 300px;
}
.theme-mr-wrapper .notification-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  line-height: 18px;
  font-size: 10px;
  text-align: center;
  color: white;
  background: #00334f;
}
.theme-mr-wrapper .read-format h1, .theme-mr-wrapper .read-format h2, .theme-mr-wrapper .read-format h3, .theme-mr-wrapper .read-format h4, .theme-mr-wrapper .read-format h5, .theme-mr-wrapper .read-format h6 {
  margin: 1em 0 0.5em 0;
}
.theme-mr-wrapper .read-format p, .theme-mr-wrapper .read-format table, .theme-mr-wrapper .read-format img {
  margin: 0 0 0.5em 0;
}
.theme-mr-wrapper .read-format ul, .theme-mr-wrapper .read-format ol {
  margin: -0.25em 0 0.5em 0;
}
.theme-mr-wrapper .read-format a {
  text-decoration: underline;
}
.theme-mr-wrapper .read-format hr {
  margin: 0.5em 0 0.5em 0;
}
.theme-mr-wrapper .table-heading {
  font-weight: 500;
  background: rgba(0, 0, 0, 0.04);
  padding: 5px;
  border-bottom: 1px solid #999;
  text-align: center;
  font-size: 1.9rem;
}
.theme-mr-wrapper .simple-table {
  border-collapse: collapse;
  width: calc(100% - 1px);
  text-align: left;
  background: white;
  /*
   * Smaller screen layout
   */
  /*
  @media screen and (max-width: $screen-s) {
    box-shadow: none;

    tr {
      display   : block;
      margin    : 1rem 0;
      box-shadow: $box-shadow;
    }

    td {
      display       : block;
      text-align    : right;
      border-bottom : 1px solid map_get($foreground, divider);

      &:nth-child(1) {
        padding: .8rem .8rem .8rem .8rem;
      }

      &:nth-last-child(1) {
        padding: .8rem .8rem .8rem .8rem;
      }

    }

    tr td:nth-last-child(1) {
      border-bottom: none;
    }

    td:before {
      content : attr(data-label);
      float   : left;
    }

    thead {
      opacity : 0;
      position: absolute;
      z-index : -1;
    }

  }
  */
}
.theme-mr-wrapper .simple-table tr {
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.2);
}
.theme-mr-wrapper .simple-table tr:nth-child(2n-1) {
  background: rgba(0, 0, 0, 0.04);
}
.theme-mr-wrapper .simple-table tr:hover {
  background: #eee;
}
.theme-mr-wrapper .simple-table tr.label-block {
  border-bottom: 1px solid rgba(0, 0, 0, 0.9);
}
.theme-mr-wrapper .simple-table nelson-report-row:nth-child(2n) tr {
  background: white;
}
.theme-mr-wrapper .simple-table nelson-report-row:nth-child(2n) tr:hover {
  background: #eee;
}
.theme-mr-wrapper .simple-table thead tr:nth-child(1) {
  background: white;
}
.theme-mr-wrapper .simple-table tbody tr:nth-last-child(1) {
  border-bottom: none;
}
.theme-mr-wrapper .simple-table th {
  padding: 1.6rem 0.8rem;
  font-size: 1.1rem;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.6);
}
.theme-mr-wrapper .simple-table th:nth-child(1) {
  padding: 0.8rem 0.8rem 0.8rem 2.4rem;
}
.theme-mr-wrapper .simple-table th:nth-last-child(1) {
  padding: 0.8rem 2.4rem 0.8rem 0.8rem;
}
.theme-mr-wrapper .simple-table td {
  padding: 0.8rem;
  font-size: 1.2rem;
  color: rgba(0, 0, 0, 0.9);
}
.theme-mr-wrapper .simple-table td:nth-child(1) {
  padding: 0.8rem 0.8rem 0.8rem 2.4rem;
}
.theme-mr-wrapper .simple-table td:nth-last-child(1) {
  padding: 0.8rem 2.4rem 0.8rem 0.8rem;
}
.theme-mr-wrapper .no-style-table {
  border-collapse: collapse;
  width: 100%;
  text-align: left;
}
.theme-mr-wrapper .no-style-table td, .theme-mr-wrapper .no-style-table th {
  padding: 0.4rem;
}
.theme-mr-wrapper .print-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 10px;
}
.theme-mr-wrapper .print-table tr:nth-child(2n) {
  background: #ddd;
}
.theme-mr-wrapper .print-table td, .theme-mr-wrapper .print-table th {
  padding: 2px 4px;
  text-align: left;
}
@media not print {
  .theme-mr-wrapper .print-table.header-sticky {
    table-layout: fixed;
  }
  .theme-mr-wrapper .print-table.header-sticky tbody {
    display: block;
    overflow: auto;
    max-height: 450px;
    width: 100%;
  }
  .theme-mr-wrapper .print-table.header-sticky tr {
    display: flex;
  }
}
.theme-mr-wrapper .label-block {
  font-weight: 700;
  cursor: pointer;
  border-bottom: 1px solid black !important;
}
@media (max-width: 640px) {
  .theme-mr-wrapper .report-table td,
.theme-mr-wrapper .report-table th {
    padding: 2px 4px 2px 2px !important;
    font-size: 10px !important;
  }
}
.theme-mr-wrapper .report-tag {
  position: relative;
}
.theme-mr-wrapper .report-tag td {
  text-align: center;
  padding: 0 !important;
}
.theme-mr-wrapper .report-tag td:first-child {
  overflow: hidden;
  font-size: 1px;
  width: 50px;
}
@media (max-width: 640px) {
  .theme-mr-wrapper .report-tag td:first-child {
    width: 20px;
  }
}
.theme-mr-wrapper .report-tag td:first-child span {
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
          text-orientation: mixed;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
}
@media (max-width: 640px) {
  .theme-mr-wrapper .report-tag td:first-child span {
    font-size: 10px;
  }
}
@media (max-width: 640px) {
  .theme-mr-wrapper .report-tag td {
    padding: 0 !important;
  }
}
.theme-mr-wrapper .grind-new-page {
  page-break-before: always;
}
.theme-mr-wrapper .sticky-header {
  position: absolute;
  z-index: -1;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 16px 0;
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.16);
  background: white;
  border-top: 1px solid #cccccc;
}
.theme-mr-wrapper .sticky-header.active {
  opacity: 1;
  z-index: 10;
}
.theme-mr-wrapper .sticky-header.no-pad {
  padding: 0 !important;
}
.theme-mr-wrapper .nada-column-count {
  line-height: 0;
  border-bottom: 1px solid black !important;
}
.theme-mr-wrapper .nada-avg-row {
  background: #f6dad5 !important;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.25);
}
.theme-mr-wrapper .nada-boc-row {
  background: #c7e2df !important;
}
.theme-mr-wrapper .nada-total-row {
  background: #e3f2fd !important;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.25);
}
.theme-mr-wrapper .nada-highlight-field {
  outline: 2px solid;
  background: #ccd9d7;
}
.theme-mr-wrapper .nada-table-header th {
  background: #dfdac9;
  vertical-align: top;
  padding: 0.5rem !important;
}
@media (max-width: 600px) {
  .theme-mr-wrapper .nada-table-header th {
    min-width: 90px;
  }
}
.theme-mr-wrapper .nada-table-header th.sub-header {
  padding: 1.6rem 0.8rem !important;
}
.theme-mr-wrapper .nada-table-header ::ng-deep p {
  font-size: 12px;
}
@media (max-width: 600px) {
  .theme-mr-wrapper .nada-table-header ::ng-deep p {
    font-size: 10px;
  }
}
@media (max-width: 640px) {
  .theme-mr-wrapper .report-hide-td-mobile {
    display: none;
  }
}
@media (max-width: 640px) {
  .theme-mr-wrapper .report-table-per > td {
    display: none;
  }
}
@media (max-width: 640px) {
  .theme-mr-wrapper .report-table-count > td {
    display: none;
  }
}
@media (max-width: 640px) {
  .theme-mr-wrapper .report-table-percent > td {
    display: none;
  }
}
@media (max-width: 640px) {
  .theme-mr-wrapper .report-table-budget > td {
    display: none;
  }
}
@media (max-width: 640px) {
  .theme-mr-wrapper .order-xs-1 {
    order: 1;
  }
}
@media (max-width: 640px) {
  .theme-mr-wrapper .order-xs-2 {
    order: 2;
  }
}
@media (max-width: 640px) {
  .theme-mr-wrapper .order-xs-3 {
    order: 3;
  }
}
@media (max-width: 640px) {
  .theme-mr-wrapper .order-xs-4 {
    order: 4;
  }
}
.theme-mr-wrapper .details-header {
  cursor: pointer;
}
.theme-mr-wrapper .details-header mat-icon {
  margin-left: 5px;
  transition: opacity 0.2s;
  opacity: 0;
  visibility: hidden;
}
.theme-mr-wrapper .details-header:hover mat-icon {
  opacity: 1;
  visibility: visible;
}
.theme-mr-wrapper .report-compact .report-table-container h5, .theme-mr-wrapper .report-compact .report-table-container h4 {
  font-size: 18px;
}
.theme-mr-wrapper .report-compact .report-table-container .mat-icon-button {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.theme-mr-wrapper .report-compact .report-table-container .report-tag td:first-child {
  width: 1px;
}
.theme-mr-wrapper .report-compact .report-table-container .report-tag td:first-child span {
  font-size: 11px;
}
.theme-mr-wrapper .report-compact .report-table-container .simple-table td {
  padding: 4px 4px 4px 12px;
  font-size: 11px;
}
.theme-mr-wrapper .report-compact .report-table-container .simple-table td:nth-child(1) {
  padding: 4px 4px 4px 12px;
  font-size: 11px;
}
.theme-mr-wrapper .report-compact .report-table-container .simple-table th {
  padding: 4px 4px 4px 12px;
  font-size: 11px;
}
.theme-mr-wrapper .report-compact .report-table-container .mat-card {
  padding: 12px;
}
.theme-mr-wrapper .report-spreadsheet .report-table-container h5, .theme-mr-wrapper .report-spreadsheet .report-table-container h4 {
  font-size: 14px;
}
.theme-mr-wrapper .report-spreadsheet .report-table-container .mat-icon-button {
  width: 20px;
  height: 20px;
  line-height: 20px;
}
.theme-mr-wrapper .report-spreadsheet .report-table-container .report-tag td:first-child {
  width: 1px;
}
.theme-mr-wrapper .report-spreadsheet .report-table-container .report-tag td:first-child span {
  font-size: 9px;
}
.theme-mr-wrapper .report-spreadsheet .report-table-container .simple-table td {
  padding: 2px 2px 2px 6px;
  font-size: 9px;
  border: 1px solid #808080;
  line-height: 1;
}
.theme-mr-wrapper .report-spreadsheet .report-table-container .simple-table td:nth-child(1) {
  padding: 2px 2px 2px 6px;
  font-size: 9px;
}
.theme-mr-wrapper .report-spreadsheet .report-table-container .simple-table th {
  padding: 2px 2px 2px 6px;
  font-size: 9px;
}
.theme-mr-wrapper .report-spreadsheet .report-table-container .mat-card {
  padding: 8px;
}
.theme-mr-wrapper .report-spreadsheet .report-table-container .simple-table thead tr[style] th {
  border: 1px solid #808080;
}
.theme-mr-wrapper .report-spreadsheet .report-table-container .simple-table thead tr[style] + tr th {
  border: 1px solid #808080;
}
.theme-mr-wrapper .spreadsheet-table td {
  border: 1px solid #aaa;
  padding: 5px !important;
}
.theme-mr-wrapper .spreadsheet-table td:nth-child(1), .theme-mr-wrapper .spreadsheet-table th:nth-child(1) {
  background: white;
}
.theme-mr-wrapper .full-row td {
  padding: 5px;
}
.theme-mr-wrapper .weekend-col {
  pointer-events: none;
  background: #ccc;
  color: transparent;
}
.theme-mr-wrapper .weekend-col span {
  opacity: 0;
}
.theme-mr-wrapper .year-row td, .theme-mr-wrapper .year-row td:nth-child(1) {
  background: #b2dfdb;
}
.theme-mr-wrapper .daily-avg-row td, .theme-mr-wrapper .daily-avg-row td:nth-child(1) {
  background: #bbdefb;
}
.theme-mr-wrapper .clear-row td {
  background: #fff;
}
.theme-mr-wrapper .report-row-details {
  width: 200px !important;
  word-break: break-word !important;
}
.theme-mr-wrapper .row-expand-indicator {
  margin-left: -10px;
}
.theme-mr-wrapper .report-row-line-rollup {
  background: white !important;
}
.theme-mr-wrapper .report-row-line-rollup td {
  padding: 4px 8px !important;
  font-size: 10px;
}
.theme-mr-wrapper .report-row-line-rollup td:first-child {
  padding-left: 38px !important;
}
.theme-mr-wrapper nelson-report-row .report-row-line-rollup {
  background: white !important;
}
.theme-dark .theme-mr-wrapper nelson-report-row .report-row-line-rollup.report-row-line-rollup {
  background: #424242 !important;
}
.theme-mr-wrapper nelson-report-row:nth-child(2n-1) .report-row-line-rollup {
  background: white !important;
}
.theme-dark .theme-mr-wrapper nelson-report-row:nth-child(2n-1) .report-row-line-rollup.report-row-line-rollup {
  background: rgba(255, 255, 255, 0.08) !important;
}
.theme-dark .theme-mr-wrapper nelson-report-row:hover .report-row-line-rollup.report-row-line-rollup {
  background: rgba(255, 255, 255, 0.16) !important;
}
.theme-mr-wrapper .report-row-line-rollup-header {
  background: grey;
}
.theme-mr-wrapper .report-row-line-rollup-header .report-row-details {
  font-weight: bold !important;
}
.theme-mr-wrapper .report-table-container {
  padding-top: 6rem;
}
.theme-mr-wrapper .spreadsheet [class^=col-] {
  padding: 0 !important;
}
.theme-mr-wrapper .spreadsheet .sticky-header {
  padding: 0;
}
.theme-mr-wrapper .spreadsheet .sticky-header h4 {
  color: white !important;
  font-size: 1.2rem !important;
  font-weight: normal !important;
}
.theme-mr-wrapper .spreadsheet .sticky-header th {
  padding: 2px !important;
}
.theme-mr-wrapper .spreadsheet .mat-card {
  padding: 0 !important;
  border-radius: 0 !important;
}
.theme-mr-wrapper .spreadsheet .mat-card-title {
  margin-bottom: 0 !important;
  padding: 2px 2px 2px 32px !important;
  background: #666 !important;
}
.theme-mr-wrapper .spreadsheet .mat-card-title .mat-icon-button {
  width: 20px !important;
  height: 20px !important;
  line-height: 20px !important;
}
.theme-mr-wrapper .spreadsheet .mat-card-title .mat-icon-button .mat-icon {
  line-height: 20px !important;
  width: 20px !important;
  height: 20px !important;
  font-size: 20px !important;
  color: white !important;
}
.theme-mr-wrapper .spreadsheet .mat-card-title .mat-form-field {
  font-size: 14px;
}
.theme-mr-wrapper .spreadsheet .mat-card-title .mat-form-field .mat-form-field-wrapper {
  padding-bottom: 0;
}
.theme-mr-wrapper .spreadsheet .mat-card-title .mat-form-field .mat-form-field-infix {
  padding: 0;
  border-top: none;
}
.theme-mr-wrapper .spreadsheet .mat-card-title .mat-form-field .mat-form-field-underline {
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.4);
}
.theme-mr-wrapper .spreadsheet .mat-card-title .mat-form-field .mat-input-element {
  color: white !important;
}
.theme-mr-wrapper .spreadsheet .mat-card-title .mat-form-field .mat-form-field-label {
  top: 10px;
  color: rgba(255, 255, 255, 0.6);
  visibility: visible;
}
.theme-mr-wrapper .spreadsheet .mat-card-title .mat-form-field.mat-focused .mat-form-field-label {
  visibility: hidden;
}
.theme-mr-wrapper .spreadsheet .nada-column-count th {
  line-height: 1 !important;
}
.theme-mr-wrapper .spreadsheet .mat-card-title > div > div > mat-menu {
  display: none !important;
}
.theme-mr-wrapper .spreadsheet .mat-card-title > div > div > h5 {
  color: white !important;
  font-size: 1.2rem !important;
  font-weight: normal !important;
}
.theme-mr-wrapper .spreadsheet .report-table-container {
  padding: 6rem 2rem 2rem;
}
.theme-mr-wrapper .spreadsheet .report-table-container.hot-sheet {
  padding-top: 2rem !important;
}
.theme-mr-wrapper .spreadsheet .report-table > thead > tr > th {
  padding: 2px !important;
  font-weight: normal !important;
}
.theme-mr-wrapper .spreadsheet .report-tag td:first-child {
  width: 30px !important;
  border-right: 1px solid #00334f !important;
}
.theme-mr-wrapper .spreadsheet .report-table td {
  padding: 2px !important;
  font-weight: normal !important;
  border: none !important;
}
.theme-mr-wrapper .spreadsheet .report-table td:empty {
  padding: 0 !important;
}
.theme-mr-wrapper .spreadsheet .report-row-details {
  width: 300px !important;
}
.theme-mr-wrapper .spreadsheet .report-table th {
  background: #ddd !important;
  border: 1px solid #bbb !important;
}
.theme-mr-wrapper .spreadsheet .spreadsheet-table td:nth-child(1),
.theme-mr-wrapper .spreadsheet .clear-row td {
  background: #eee !important;
}
.theme-mr-wrapper .spreadsheet .report-table .report-nested-row {
  background: #d2d2d2 !important;
}
.theme-mr-wrapper .spreadsheet .report-table .report-nested-row > td:nth-child(1) {
  padding-left: 20px !important;
  border-left: 2px solid rgba(0, 51, 79, 0.5) !important;
}
.theme-mr-wrapper .spreadsheet .report-table .report-nested-row > td:nth-last-child(1) {
  border-right: 2px solid rgba(0, 51, 79, 0.5) !important;
}
.theme-mr-wrapper .spreadsheet .report-table .report-nested-row.report-nested-row-first > td {
  border-top: 2px solid rgba(0, 51, 79, 0.5) !important;
}
.theme-mr-wrapper .spreadsheet .report-table .report-nested-row.report-nested-row-last > td {
  border-bottom: 2px solid rgba(0, 51, 79, 0.5) !important;
}
.theme-mr-wrapper .spreadsheet .report-row-line-rollup-header {
  background: grey;
}
.theme-mr-wrapper .spreadsheet .report-row-line-rollup-header .report-row-details {
  font-weight: bold !important;
}
.theme-mr-wrapper .spreadsheet .report-row-line-rollup td {
  padding: 2px !important;
  font-size: 10px;
}
.theme-mr-wrapper .spreadsheet .report-row-line-rollup td:first-child {
  padding-left: 20px !important;
}
.theme-mr-wrapper .spreadsheet .report-table-per > td:nth-child(1),
.theme-mr-wrapper .spreadsheet .report-table-count > td:nth-child(1) {
  padding-left: 20px !important;
}
.theme-mr-wrapper .spreadsheet .row-expand-indicator {
  margin-left: 0;
}
.theme-mr-wrapper .spreadsheet .label-block {
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
}
.theme-mr-wrapper .spreadsheet .details-th {
  width: 70px;
}
.theme-mr-wrapper .spreadsheet nelson-rendered-report-schedule .simple-table th,
.theme-mr-wrapper .spreadsheet .nelson-rendered-report-schedule-sticky .simple-table th {
  padding: 2px !important;
  font-weight: normal !important;
}
.theme-mr-wrapper .spreadsheet nelson-rendered-report-schedule .simple-table th:nth-child(1),
.theme-mr-wrapper .spreadsheet .nelson-rendered-report-schedule-sticky .simple-table th:nth-child(1) {
  padding: 2px 2px 2px 6px !important;
}
.theme-mr-wrapper .spreadsheet nelson-rendered-report-schedule .simple-table td,
.theme-mr-wrapper .spreadsheet .nelson-rendered-report-schedule-sticky .simple-table td {
  padding: 2px !important;
  font-weight: normal !important;
  border: none !important;
}
.theme-mr-wrapper .spreadsheet nelson-rendered-report-schedule .simple-table td:nth-child(1),
.theme-mr-wrapper .spreadsheet .nelson-rendered-report-schedule-sticky .simple-table td:nth-child(1) {
  padding: 2px 2px 2px 6px !important;
}
.theme-mr-wrapper .spreadsheet nelson-rendered-report-schedule .simple-table .mat-icon-button,
.theme-mr-wrapper .spreadsheet .nelson-rendered-report-schedule-sticky .simple-table .mat-icon-button {
  height: 24px;
  width: 24px;
  line-height: 24px;
}
.theme-mr-wrapper .flex {
  display: flex;
  flex-wrap: wrap;
}
.theme-mr-wrapper .iflex {
  display: inline-flex;
}
.theme-mr-wrapper .fw-wrap {
  flex-wrap: wrap;
}
.theme-mr-wrapper .fw-nowrap {
  flex-wrap: nowrap;
}
.theme-mr-wrapper .fd-row {
  flex-direction: row;
}
.theme-mr-wrapper .fd-row-rev {
  flex-direction: row-reverse;
}
.theme-mr-wrapper .fd-col {
  flex-direction: column;
}
.theme-mr-wrapper .fd-col-rev {
  flex-direction: column-reverse;
}
.theme-mr-wrapper .ai-stretch {
  align-items: stretch;
}
.theme-mr-wrapper .ai-base {
  align-items: baseline;
}
.theme-mr-wrapper .ai-start {
  align-items: flex-start;
}
.theme-mr-wrapper .ai-end {
  align-items: flex-end;
}
.theme-mr-wrapper .ai-center {
  align-items: center;
}
.theme-mr-wrapper .ac-stretch {
  align-content: stretch;
}
.theme-mr-wrapper .ac-start {
  align-content: flex-start;
}
.theme-mr-wrapper .ac-end {
  align-content: flex-end;
}
.theme-mr-wrapper .ac-center {
  align-content: center;
}
.theme-mr-wrapper .ac-around {
  align-content: space-around;
}
.theme-mr-wrapper .ac-between {
  align-content: space-between;
}
.theme-mr-wrapper .jc-start {
  justify-content: flex-start;
}
.theme-mr-wrapper .jc-end {
  justify-content: flex-end;
}
.theme-mr-wrapper .jc-center {
  justify-content: center;
}
.theme-mr-wrapper .jc-around {
  justify-content: space-around;
}
.theme-mr-wrapper .jc-between {
  justify-content: space-between;
}
.theme-mr-wrapper .jc-evenly {
  justify-content: space-evenly;
}
.theme-mr-wrapper .flex-1 {
  flex: 1;
}
@media (max-width: 1200px) {
  .theme-mr-wrapper .fd-m-col {
    flex-direction: column;
  }
  .theme-mr-wrapper .jc-m-evenly {
    justify-content: space-evenly;
  }
  .theme-mr-wrapper .jc-m-start {
    justify-content: flex-start;
  }
  .theme-mr-wrapper .ai-m-stretch {
    align-items: stretch;
  }
}
@media (max-width: 850px) {
  .theme-mr-wrapper .fw-s-nowrap {
    flex-wrap: nowrap;
  }
  .theme-mr-wrapper .jc-s-start {
    justify-content: flex-start;
  }
  .theme-mr-wrapper .jc-s-between {
    justify-content: space-between;
  }
}
.theme-mr-wrapper .w-full {
  width: 100%;
}
@media (max-width: 850px) {
  .theme-mr-wrapper .w-full-s {
    width: 100%;
  }
}
.theme-mr-wrapper .h-full {
  height: 100%;
}
.theme-mr-wrapper .ta-left {
  text-align: left;
}
.theme-mr-wrapper .ta-center {
  text-align: center;
}
.theme-mr-wrapper .ta-right {
  text-align: right;
}
.theme-mr-wrapper .ta-justify {
  text-align: justify;
}
.theme-mr-wrapper .br-round {
  border-radius: 50%;
}
.theme-mr-wrapper .tt-uppercase {
  text-transform: uppercase;
}
@media (max-width: 450px) {
  .theme-mr-wrapper .hide-xs {
    display: none;
  }
}
@media (max-width: 850px) {
  .theme-mr-wrapper .hide-s {
    display: none;
  }
}
@media (max-width: 1200px) {
  .theme-mr-wrapper .hide-m {
    display: none;
  }
}
.theme-mr-wrapper .show-xs {
  display: none;
}
@media (max-width: 450px) {
  .theme-mr-wrapper .show-xs {
    display: inline-block;
  }
}
.theme-mr-wrapper .show-s {
  display: none;
}
@media (max-width: 850px) {
  .theme-mr-wrapper .show-s {
    display: inline-block;
  }
}
.theme-mr-wrapper .show-m {
  display: none;
}
@media (max-width: 1200px) {
  .theme-mr-wrapper .show-m {
    display: inline-block;
  }
}
.theme-mr-wrapper .columns-1 {
  -moz-columns: 1;
       columns: 1;
}
.theme-mr-wrapper .columns-2 {
  -moz-columns: 2;
       columns: 2;
}
.theme-mr-wrapper .columns-3 {
  -moz-columns: 3;
       columns: 3;
}
.theme-mr-wrapper .columns-4 {
  -moz-columns: 4;
       columns: 4;
}
.theme-mr-wrapper .columns-5 {
  -moz-columns: 5;
       columns: 5;
}
.theme-mr-wrapper .columns-6 {
  -moz-columns: 6;
       columns: 6;
}
.theme-mr-wrapper .columns-7 {
  -moz-columns: 7;
       columns: 7;
}
.theme-mr-wrapper .columns-8 {
  -moz-columns: 8;
       columns: 8;
}
.theme-mr-wrapper .columns-9 {
  -moz-columns: 9;
       columns: 9;
}
.theme-mr-wrapper .columns-10 {
  -moz-columns: 10;
       columns: 10;
}
.theme-mr-wrapper .columns-11 {
  -moz-columns: 11;
       columns: 11;
}
.theme-mr-wrapper .columns-12 {
  -moz-columns: 12;
       columns: 12;
}
@media screen and (max-width: 1200px) {
  .theme-mr-wrapper .columns-m-1 {
    -moz-columns: 1;
         columns: 1;
  }
  .theme-mr-wrapper .columns-m-2 {
    -moz-columns: 2;
         columns: 2;
  }
  .theme-mr-wrapper .columns-m-3 {
    -moz-columns: 3;
         columns: 3;
  }
  .theme-mr-wrapper .columns-m-4 {
    -moz-columns: 4;
         columns: 4;
  }
  .theme-mr-wrapper .columns-m-5 {
    -moz-columns: 5;
         columns: 5;
  }
  .theme-mr-wrapper .columns-m-6 {
    -moz-columns: 6;
         columns: 6;
  }
  .theme-mr-wrapper .columns-m-7 {
    -moz-columns: 7;
         columns: 7;
  }
  .theme-mr-wrapper .columns-m-8 {
    -moz-columns: 8;
         columns: 8;
  }
  .theme-mr-wrapper .columns-m-9 {
    -moz-columns: 9;
         columns: 9;
  }
  .theme-mr-wrapper .columns-m-10 {
    -moz-columns: 10;
         columns: 10;
  }
  .theme-mr-wrapper .columns-m-11 {
    -moz-columns: 11;
         columns: 11;
  }
  .theme-mr-wrapper .columns-m-12 {
    -moz-columns: 12;
         columns: 12;
  }
}
@media screen and (max-width: 850px) {
  .theme-mr-wrapper .columns-s-1 {
    -moz-columns: 1;
         columns: 1;
  }
  .theme-mr-wrapper .columns-s-2 {
    -moz-columns: 2;
         columns: 2;
  }
  .theme-mr-wrapper .columns-s-3 {
    -moz-columns: 3;
         columns: 3;
  }
  .theme-mr-wrapper .columns-s-4 {
    -moz-columns: 4;
         columns: 4;
  }
  .theme-mr-wrapper .columns-s-5 {
    -moz-columns: 5;
         columns: 5;
  }
  .theme-mr-wrapper .columns-s-6 {
    -moz-columns: 6;
         columns: 6;
  }
  .theme-mr-wrapper .columns-s-7 {
    -moz-columns: 7;
         columns: 7;
  }
  .theme-mr-wrapper .columns-s-8 {
    -moz-columns: 8;
         columns: 8;
  }
  .theme-mr-wrapper .columns-s-9 {
    -moz-columns: 9;
         columns: 9;
  }
  .theme-mr-wrapper .columns-s-10 {
    -moz-columns: 10;
         columns: 10;
  }
  .theme-mr-wrapper .columns-s-11 {
    -moz-columns: 11;
         columns: 11;
  }
  .theme-mr-wrapper .columns-s-12 {
    -moz-columns: 12;
         columns: 12;
  }
}
@media screen and (max-width: 450px) {
  .theme-mr-wrapper .columns-xs-1 {
    -moz-columns: 1;
         columns: 1;
  }
  .theme-mr-wrapper .columns-xs-2 {
    -moz-columns: 2;
         columns: 2;
  }
  .theme-mr-wrapper .columns-xs-3 {
    -moz-columns: 3;
         columns: 3;
  }
  .theme-mr-wrapper .columns-xs-4 {
    -moz-columns: 4;
         columns: 4;
  }
  .theme-mr-wrapper .columns-xs-5 {
    -moz-columns: 5;
         columns: 5;
  }
  .theme-mr-wrapper .columns-xs-6 {
    -moz-columns: 6;
         columns: 6;
  }
  .theme-mr-wrapper .columns-xs-7 {
    -moz-columns: 7;
         columns: 7;
  }
  .theme-mr-wrapper .columns-xs-8 {
    -moz-columns: 8;
         columns: 8;
  }
  .theme-mr-wrapper .columns-xs-9 {
    -moz-columns: 9;
         columns: 9;
  }
  .theme-mr-wrapper .columns-xs-10 {
    -moz-columns: 10;
         columns: 10;
  }
  .theme-mr-wrapper .columns-xs-11 {
    -moz-columns: 11;
         columns: 11;
  }
  .theme-mr-wrapper .columns-xs-12 {
    -moz-columns: 12;
         columns: 12;
  }
}
.theme-mr-wrapper .p-a-0 {
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}
.theme-mr-wrapper .p-a-xxs {
  padding: 2px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-a-xxs {
    padding: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-a-xxs {
    padding: 4px;
  }
}
.theme-mr-wrapper .p-a-xs {
  padding: 5px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-a-xs {
    padding: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-a-xs {
    padding: 10px;
  }
}
.theme-mr-wrapper .p-a-s {
  padding: 10px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-a-s {
    padding: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-a-s {
    padding: 20px;
  }
}
.theme-mr-wrapper .p-a-m {
  padding: 20px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-a-m {
    padding: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-a-m {
    padding: 40px;
  }
}
.theme-mr-wrapper .p-a-l {
  padding: 40px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-a-l {
    padding: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-a-l {
    padding: 80px;
  }
}
.theme-mr-wrapper .p-a-xl {
  padding: 80px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-a-xl {
    padding: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-a-xl {
    padding: 160px;
  }
}
.theme-mr-wrapper .p-x-xxs {
  padding-left: 2px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-x-xxs {
    padding-left: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-x-xxs {
    padding-left: 4px;
  }
}
.theme-mr-wrapper .p-x-xxs {
  padding-right: 2px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-x-xxs {
    padding-right: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-x-xxs {
    padding-right: 4px;
  }
}
.theme-mr-wrapper .p-x-xs {
  padding-left: 5px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-x-xs {
    padding-left: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-x-xs {
    padding-left: 10px;
  }
}
.theme-mr-wrapper .p-x-xs {
  padding-right: 5px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-x-xs {
    padding-right: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-x-xs {
    padding-right: 10px;
  }
}
.theme-mr-wrapper .p-x-s {
  padding-left: 10px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-x-s {
    padding-left: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-x-s {
    padding-left: 20px;
  }
}
.theme-mr-wrapper .p-x-s {
  padding-right: 10px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-x-s {
    padding-right: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-x-s {
    padding-right: 20px;
  }
}
.theme-mr-wrapper .p-x-m {
  padding-left: 20px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-x-m {
    padding-left: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-x-m {
    padding-left: 40px;
  }
}
.theme-mr-wrapper .p-x-m {
  padding-right: 20px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-x-m {
    padding-right: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-x-m {
    padding-right: 40px;
  }
}
.theme-mr-wrapper .p-x-l {
  padding-left: 40px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-x-l {
    padding-left: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-x-l {
    padding-left: 80px;
  }
}
.theme-mr-wrapper .p-x-l {
  padding-right: 40px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-x-l {
    padding-right: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-x-l {
    padding-right: 80px;
  }
}
.theme-mr-wrapper .p-x-xl {
  padding-left: 80px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-x-xl {
    padding-left: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-x-xl {
    padding-left: 160px;
  }
}
.theme-mr-wrapper .p-x-xl {
  padding-right: 80px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-x-xl {
    padding-right: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-x-xl {
    padding-right: 160px;
  }
}
.theme-mr-wrapper .p-y-xxs {
  padding-top: 2px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-y-xxs {
    padding-top: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-y-xxs {
    padding-top: 4px;
  }
}
.theme-mr-wrapper .p-y-xxs {
  padding-bottom: 2px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-y-xxs {
    padding-bottom: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-y-xxs {
    padding-bottom: 4px;
  }
}
.theme-mr-wrapper .p-y-xs {
  padding-top: 5px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-y-xs {
    padding-top: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-y-xs {
    padding-top: 10px;
  }
}
.theme-mr-wrapper .p-y-xs {
  padding-bottom: 5px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-y-xs {
    padding-bottom: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-y-xs {
    padding-bottom: 10px;
  }
}
.theme-mr-wrapper .p-y-s {
  padding-top: 10px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-y-s {
    padding-top: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-y-s {
    padding-top: 20px;
  }
}
.theme-mr-wrapper .p-y-s {
  padding-bottom: 10px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-y-s {
    padding-bottom: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-y-s {
    padding-bottom: 20px;
  }
}
.theme-mr-wrapper .p-y-m {
  padding-top: 20px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-y-m {
    padding-top: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-y-m {
    padding-top: 40px;
  }
}
.theme-mr-wrapper .p-y-m {
  padding-bottom: 20px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-y-m {
    padding-bottom: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-y-m {
    padding-bottom: 40px;
  }
}
.theme-mr-wrapper .p-y-l {
  padding-top: 40px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-y-l {
    padding-top: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-y-l {
    padding-top: 80px;
  }
}
.theme-mr-wrapper .p-y-l {
  padding-bottom: 40px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-y-l {
    padding-bottom: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-y-l {
    padding-bottom: 80px;
  }
}
.theme-mr-wrapper .p-y-xl {
  padding-top: 80px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-y-xl {
    padding-top: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-y-xl {
    padding-top: 160px;
  }
}
.theme-mr-wrapper .p-y-xl {
  padding-bottom: 80px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-y-xl {
    padding-bottom: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-y-xl {
    padding-bottom: 160px;
  }
}
.theme-mr-wrapper .p-t-xxs {
  padding-top: 2px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-t-xxs {
    padding-top: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-t-xxs {
    padding-top: 4px;
  }
}
.theme-mr-wrapper .p-t-xs {
  padding-top: 5px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-t-xs {
    padding-top: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-t-xs {
    padding-top: 10px;
  }
}
.theme-mr-wrapper .p-t-s {
  padding-top: 10px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-t-s {
    padding-top: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-t-s {
    padding-top: 20px;
  }
}
.theme-mr-wrapper .p-t-m {
  padding-top: 20px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-t-m {
    padding-top: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-t-m {
    padding-top: 40px;
  }
}
.theme-mr-wrapper .p-t-l {
  padding-top: 40px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-t-l {
    padding-top: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-t-l {
    padding-top: 80px;
  }
}
.theme-mr-wrapper .p-t-xl {
  padding-top: 80px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-t-xl {
    padding-top: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-t-xl {
    padding-top: 160px;
  }
}
.theme-mr-wrapper .p-r-xxs {
  padding-right: 2px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-r-xxs {
    padding-right: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-r-xxs {
    padding-right: 4px;
  }
}
.theme-mr-wrapper .p-r-xs {
  padding-right: 5px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-r-xs {
    padding-right: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-r-xs {
    padding-right: 10px;
  }
}
.theme-mr-wrapper .p-r-s {
  padding-right: 10px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-r-s {
    padding-right: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-r-s {
    padding-right: 20px;
  }
}
.theme-mr-wrapper .p-r-m {
  padding-right: 20px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-r-m {
    padding-right: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-r-m {
    padding-right: 40px;
  }
}
.theme-mr-wrapper .p-r-l {
  padding-right: 40px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-r-l {
    padding-right: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-r-l {
    padding-right: 80px;
  }
}
.theme-mr-wrapper .p-r-xl {
  padding-right: 80px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-r-xl {
    padding-right: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-r-xl {
    padding-right: 160px;
  }
}
.theme-mr-wrapper .p-b-0 {
  padding-bottom: 0;
}
.theme-mr-wrapper .p-b-xxs {
  padding-bottom: 2px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-b-xxs {
    padding-bottom: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-b-xxs {
    padding-bottom: 4px;
  }
}
.theme-mr-wrapper .p-b-xs {
  padding-bottom: 5px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-b-xs {
    padding-bottom: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-b-xs {
    padding-bottom: 10px;
  }
}
.theme-mr-wrapper .p-b-s {
  padding-bottom: 10px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-b-s {
    padding-bottom: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-b-s {
    padding-bottom: 20px;
  }
}
.theme-mr-wrapper .p-b-m {
  padding-bottom: 20px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-b-m {
    padding-bottom: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-b-m {
    padding-bottom: 40px;
  }
}
.theme-mr-wrapper .p-b-l {
  padding-bottom: 40px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-b-l {
    padding-bottom: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-b-l {
    padding-bottom: 80px;
  }
}
.theme-mr-wrapper .p-b-xl {
  padding-bottom: 80px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-b-xl {
    padding-bottom: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-b-xl {
    padding-bottom: 160px;
  }
}
.theme-mr-wrapper .p-l-xxs {
  padding-left: 2px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-l-xxs {
    padding-left: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-l-xxs {
    padding-left: 4px;
  }
}
.theme-mr-wrapper .p-l-xs {
  padding-left: 5px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-l-xs {
    padding-left: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-l-xs {
    padding-left: 10px;
  }
}
.theme-mr-wrapper .p-l-s {
  padding-left: 10px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-l-s {
    padding-left: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-l-s {
    padding-left: 20px;
  }
}
.theme-mr-wrapper .p-l-m {
  padding-left: 20px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-l-m {
    padding-left: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-l-m {
    padding-left: 40px;
  }
}
.theme-mr-wrapper .p-l-l {
  padding-left: 40px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-l-l {
    padding-left: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-l-l {
    padding-left: 80px;
  }
}
.theme-mr-wrapper .p-l-xl {
  padding-left: 80px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .p-l-xl {
    padding-left: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .p-l-xl {
    padding-left: 160px;
  }
}
.theme-mr-wrapper .m-a-0 {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}
.theme-mr-wrapper .m-a-xxs {
  margin: 2px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-a-xxs {
    margin: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-a-xxs {
    margin: 4px;
  }
}
.theme-mr-wrapper .m-a-xs {
  margin: 5px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-a-xs {
    margin: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-a-xs {
    margin: 10px;
  }
}
.theme-mr-wrapper .m-a-s {
  margin: 10px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-a-s {
    margin: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-a-s {
    margin: 20px;
  }
}
.theme-mr-wrapper .m-a-m {
  margin: 20px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-a-m {
    margin: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-a-m {
    margin: 40px;
  }
}
.theme-mr-wrapper .m-a-l {
  margin: 40px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-a-l {
    margin: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-a-l {
    margin: 80px;
  }
}
.theme-mr-wrapper .m-a-xl {
  margin: 80px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-a-xl {
    margin: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-a-xl {
    margin: 160px;
  }
}
.theme-mr-wrapper .m-x-xxs {
  margin-left: 2px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-x-xxs {
    margin-left: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-x-xxs {
    margin-left: 4px;
  }
}
.theme-mr-wrapper .m-x-xxs {
  margin-right: 2px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-x-xxs {
    margin-right: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-x-xxs {
    margin-right: 4px;
  }
}
.theme-mr-wrapper .m-x-xs {
  margin-left: 5px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-x-xs {
    margin-left: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-x-xs {
    margin-left: 10px;
  }
}
.theme-mr-wrapper .m-x-xs {
  margin-right: 5px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-x-xs {
    margin-right: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-x-xs {
    margin-right: 10px;
  }
}
.theme-mr-wrapper .m-x-s {
  margin-left: 10px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-x-s {
    margin-left: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-x-s {
    margin-left: 20px;
  }
}
.theme-mr-wrapper .m-x-s {
  margin-right: 10px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-x-s {
    margin-right: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-x-s {
    margin-right: 20px;
  }
}
.theme-mr-wrapper .m-x-m {
  margin-left: 20px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-x-m {
    margin-left: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-x-m {
    margin-left: 40px;
  }
}
.theme-mr-wrapper .m-x-m {
  margin-right: 20px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-x-m {
    margin-right: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-x-m {
    margin-right: 40px;
  }
}
.theme-mr-wrapper .m-x-l {
  margin-left: 40px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-x-l {
    margin-left: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-x-l {
    margin-left: 80px;
  }
}
.theme-mr-wrapper .m-x-l {
  margin-right: 40px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-x-l {
    margin-right: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-x-l {
    margin-right: 80px;
  }
}
.theme-mr-wrapper .m-x-xl {
  margin-left: 80px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-x-xl {
    margin-left: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-x-xl {
    margin-left: 160px;
  }
}
.theme-mr-wrapper .m-x-xl {
  margin-right: 80px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-x-xl {
    margin-right: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-x-xl {
    margin-right: 160px;
  }
}
.theme-mr-wrapper .m-y-xxs {
  margin-top: 2px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-y-xxs {
    margin-top: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-y-xxs {
    margin-top: 4px;
  }
}
.theme-mr-wrapper .m-y-xxs {
  margin-bottom: 2px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-y-xxs {
    margin-bottom: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-y-xxs {
    margin-bottom: 4px;
  }
}
.theme-mr-wrapper .m-y-xs {
  margin-top: 5px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-y-xs {
    margin-top: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-y-xs {
    margin-top: 10px;
  }
}
.theme-mr-wrapper .m-y-xs {
  margin-bottom: 5px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-y-xs {
    margin-bottom: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-y-xs {
    margin-bottom: 10px;
  }
}
.theme-mr-wrapper .m-y-s {
  margin-top: 10px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-y-s {
    margin-top: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-y-s {
    margin-top: 20px;
  }
}
.theme-mr-wrapper .m-y-s {
  margin-bottom: 10px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-y-s {
    margin-bottom: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-y-s {
    margin-bottom: 20px;
  }
}
.theme-mr-wrapper .m-y-m {
  margin-top: 20px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-y-m {
    margin-top: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-y-m {
    margin-top: 40px;
  }
}
.theme-mr-wrapper .m-y-m {
  margin-bottom: 20px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-y-m {
    margin-bottom: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-y-m {
    margin-bottom: 40px;
  }
}
.theme-mr-wrapper .m-y-l {
  margin-top: 40px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-y-l {
    margin-top: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-y-l {
    margin-top: 80px;
  }
}
.theme-mr-wrapper .m-y-l {
  margin-bottom: 40px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-y-l {
    margin-bottom: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-y-l {
    margin-bottom: 80px;
  }
}
.theme-mr-wrapper .m-y-xl {
  margin-top: 80px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-y-xl {
    margin-top: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-y-xl {
    margin-top: 160px;
  }
}
.theme-mr-wrapper .m-y-xl {
  margin-bottom: 80px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-y-xl {
    margin-bottom: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-y-xl {
    margin-bottom: 160px;
  }
}
.theme-mr-wrapper .m-t-xxs {
  margin-top: 2px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-t-xxs {
    margin-top: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-t-xxs {
    margin-top: 4px;
  }
}
.theme-mr-wrapper .m-t-xs {
  margin-top: 5px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-t-xs {
    margin-top: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-t-xs {
    margin-top: 10px;
  }
}
.theme-mr-wrapper .m-t-s {
  margin-top: 10px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-t-s {
    margin-top: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-t-s {
    margin-top: 20px;
  }
}
.theme-mr-wrapper .m-t-m {
  margin-top: 20px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-t-m {
    margin-top: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-t-m {
    margin-top: 40px;
  }
}
.theme-mr-wrapper .m-t-l {
  margin-top: 40px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-t-l {
    margin-top: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-t-l {
    margin-top: 80px;
  }
}
.theme-mr-wrapper .m-t-xl {
  margin-top: 80px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-t-xl {
    margin-top: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-t-xl {
    margin-top: 160px;
  }
}
.theme-mr-wrapper .m-r-xxs {
  margin-right: 2px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-r-xxs {
    margin-right: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-r-xxs {
    margin-right: 4px;
  }
}
.theme-mr-wrapper .m-r-xs {
  margin-right: 5px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-r-xs {
    margin-right: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-r-xs {
    margin-right: 10px;
  }
}
.theme-mr-wrapper .m-r-s {
  margin-right: 10px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-r-s {
    margin-right: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-r-s {
    margin-right: 20px;
  }
}
.theme-mr-wrapper .m-r-m {
  margin-right: 20px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-r-m {
    margin-right: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-r-m {
    margin-right: 40px;
  }
}
.theme-mr-wrapper .m-r-l {
  margin-right: 40px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-r-l {
    margin-right: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-r-l {
    margin-right: 80px;
  }
}
.theme-mr-wrapper .m-r-xl {
  margin-right: 80px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-r-xl {
    margin-right: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-r-xl {
    margin-right: 160px;
  }
}
.theme-mr-wrapper .m-b-xxs {
  margin-bottom: 2px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-b-xxs {
    margin-bottom: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-b-xxs {
    margin-bottom: 4px;
  }
}
.theme-mr-wrapper .m-b-xs {
  margin-bottom: 5px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-b-xs {
    margin-bottom: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-b-xs {
    margin-bottom: 10px;
  }
}
.theme-mr-wrapper .m-b-s {
  margin-bottom: 10px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-b-s {
    margin-bottom: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-b-s {
    margin-bottom: 20px;
  }
}
.theme-mr-wrapper .m-b-m {
  margin-bottom: 20px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-b-m {
    margin-bottom: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-b-m {
    margin-bottom: 40px;
  }
}
.theme-mr-wrapper .m-b-l {
  margin-bottom: 40px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-b-l {
    margin-bottom: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-b-l {
    margin-bottom: 80px;
  }
}
.theme-mr-wrapper .m-b-xl {
  margin-bottom: 80px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-b-xl {
    margin-bottom: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-b-xl {
    margin-bottom: 160px;
  }
}
.theme-mr-wrapper .m-l-xxs {
  margin-left: 2px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-l-xxs {
    margin-left: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-l-xxs {
    margin-left: 4px;
  }
}
.theme-mr-wrapper .m-l-xs {
  margin-left: 5px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-l-xs {
    margin-left: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-l-xs {
    margin-left: 10px;
  }
}
.theme-mr-wrapper .m-l-s {
  margin-left: 10px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-l-s {
    margin-left: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-l-s {
    margin-left: 20px;
  }
}
.theme-mr-wrapper .m-l-m {
  margin-left: 20px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-l-m {
    margin-left: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-l-m {
    margin-left: 40px;
  }
}
.theme-mr-wrapper .m-l-l {
  margin-left: 40px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-l-l {
    margin-left: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-l-l {
    margin-left: 80px;
  }
}
.theme-mr-wrapper .m-l-xl {
  margin-left: 80px;
}
@media screen and (min-width: 600px) {
  .theme-mr-wrapper .m-l-xl {
    margin-left: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-mr-wrapper .m-l-xl {
    margin-left: 160px;
  }
}
.theme-mr-wrapper .hover-parent .when-hovered {
  opacity: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transition: opacity 0.3s;
}
.theme-mr-wrapper .hover-parent:hover .when-hovered {
  opacity: 1;
  -webkit-user-select: auto;
     -moz-user-select: auto;
      -ms-user-select: auto;
          user-select: auto;
}
.theme-mr-wrapper .no-transition {
  transition: none !important;
}
.theme-mr-wrapper .no-transition * {
  transition: none !important;
}
.theme-mr-wrapper .inline-block {
  display: inline-block;
}
.theme-mr-wrapper .ws-nowrap {
  white-space: nowrap;
}
.theme-mr-wrapper .bg-intro {
  background-image: url("/assets/intro/intro-bg.svg");
  background-size: cover;
  background-repeat: repeat-x;
  background-position: bottom;
}
.theme-mr-wrapper .relative {
  position: relative;
}
.theme-mr-wrapper .absolute {
  position: absolute;
}
.theme-mr-wrapper .fixed {
  position: fixed;
}
.theme-mr-wrapper .c-primary {
  color: #00334f !important;
}
.theme-mr-wrapper .c-accent {
  color: #cbdb3f !important;
}
.theme-mr-wrapper .c-warn {
  color: #F44336 !important;
}
.theme-mr-wrapper .c-success {
  color: #66BB6A !important;
}
.theme-mr-wrapper .c-white {
  color: white !important;
}
.theme-mr-wrapper .c-red {
  color: #f44336 !important;
}
.theme-mr-wrapper .c-black {
  color: black !important;
}
.theme-mr-wrapper .bg-primary {
  background-color: #00334f !important;
}
.theme-mr-wrapper .bg-accent {
  background-color: #cbdb3f !important;
}
.theme-mr-wrapper .bg-warn {
  background-color: #F44336 !important;
}
.theme-mr-wrapper .bg-success {
  background-color: #66BB6A !important;
}
.theme-mr-wrapper .bg-white {
  background-color: white !important;
}
.theme-mr-wrapper .bg-dark {
  background-color: #303a48;
}
.theme-mr-wrapper .bg-light {
  background-color: #e9ebec;
}
.theme-mr-wrapper .bg-primary-transparentize {
  background-color: rgba(0, 51, 79, 0.1);
}
.theme-mr-wrapper .bg-acent-transparentize {
  background-color: rgba(203, 219, 63, 0.1);
}
.theme-mr-wrapper .bg-warn-transparentize {
  background-color: rgba(244, 67, 54, 0.1);
}
.theme-mr-wrapper .border-primary {
  border: 2px solid #00334f !important;
}
.theme-mr-wrapper .border-accent {
  border: 2px solid #cbdb3f !important;
}
.theme-mr-wrapper .border-warn {
  border: 2px solid #F44336 !important;
}
.theme-mr-wrapper .border-success {
  border: 2px solid #66BB6A !important;
}
.theme-mr-wrapper .op-50 {
  opacity: 0.5;
}
.theme-mr-wrapper .min-h-full {
  min-height: 100vh;
}
.theme-mr-wrapper .fs-10 {
  font-size: 1rem;
}
.theme-mr-wrapper .fs-xs {
  font-size: x-small;
}
.theme-mr-wrapper .fs-s {
  font-size: small;
}
.theme-mr-wrapper .fs-10 {
  font-size: 10px !important;
}
.theme-mr-wrapper .fs-12 {
  font-size: 12px !important;
}
.theme-mr-wrapper .fs-14 {
  font-size: 14px !important;
}
.theme-mr-wrapper .fs-15 {
  font-size: 15px !important;
}
.theme-mr-wrapper .fs-18 {
  font-size: 18px !important;
}
.theme-mr-wrapper .fs-20 {
  font-size: 20px !important;
}
.theme-mr-wrapper .fs-35 {
  font-size: 35px !important;
}
.theme-mr-wrapper .wb-all {
  word-break: break-all;
}
.theme-mr-wrapper .capitalize {
  text-transform: capitalize;
}
.theme-mr-wrapper .lowercase {
  text-transform: lowercase;
}
.theme-mr-wrapper .us-none {
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
.theme-mr-wrapper .box-shadow {
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.theme-mr-wrapper .disabled {
  opacity: 0.5;
  pointer-events: none;
}
.theme-mr-wrapper .read-only {
  pointer-events: none;
}
.theme-mr-wrapper .of-x-auto {
  overflow-x: auto;
}
.theme-mr-wrapper .of-x-hidden {
  overflow-x: hidden;
}
.theme-mr-wrapper .of-hidden {
  overflow: hidden;
}
.theme-mr-wrapper .of-y-auto {
  overflow-y: auto;
}
.theme-mr-wrapper .of-y-hidden {
  overflow-y: hidden;
}
.theme-mr-wrapper .hidden {
  opacity: 0;
  visibility: hidden;
}
.theme-mr-wrapper .pointer {
  cursor: pointer;
}
.theme-mr-wrapper .cursor-drag {
  cursor: -webkit-grab;
  cursor: grab;
}
.theme-mr-wrapper .cursor-move {
  cursor: move;
}
.theme-mr-wrapper .p-tabs {
  padding: 6rem 0 2rem;
}
@media (max-width: 768px) {
  .theme-mr-wrapper .p-tabs {
    padding-top: 8rem;
  }
}
.theme-mr-wrapper .p-tabs-small {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}
@media (max-width: 768px) {
  .theme-mr-wrapper .p-tabs-small {
    padding-top: 5rem;
  }
}
.theme-mr-wrapper .active-scorecard {
  outline: 0.3rem solid #FBC02D;
}
.theme-mr-wrapper .scorecard-label {
  font-size: 1.2rem;
  margin-bottom: -0.6rem;
}
.theme-mr-wrapper .ls-1 {
  letter-spacing: -1px;
}
.theme-mr-wrapper .mat-bar {
  height: 64px;
}
.theme-mr-wrapper .mat-bar-m {
  height: 128px;
}
.theme-mr-wrapper .mat-bar-l {
  height: 192px;
}
.theme-mr-wrapper .mat-bar-xl {
  height: 256px;
}
.theme-mr-wrapper .gm-target td {
  font-size: 1.4rem;
}
.theme-mr-wrapper .gm-target td:nth-last-child(1) {
  text-align: right;
}
.theme-mr-wrapper .dept-target td {
  font-size: 1.1rem;
  padding: 0.8rem;
}
.theme-mr-wrapper .dept-target td:nth-child(1) {
  padding: 0.2rem 0.2rem 0.2rem 2.4rem;
}
.theme-mr-wrapper .dept-target td:nth-last-child(1) {
  padding: 0.8rem 2.4rem 0.8rem 0.8rem;
}
.theme-mr-wrapper .dept-target td:nth-last-child(1) {
  text-align: right;
}
.theme-mr-wrapper button.loading {
  pointer-events: none;
  position: relative;
  border: none;
  color: transparent;
}
.theme-mr-wrapper button.loading span, .theme-mr-wrapper button.loading svg, .theme-mr-wrapper button.loading img {
  opacity: 0;
}
.theme-mr-wrapper button.loading:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 1.8rem;
  width: 1.8rem;
  border-radius: 50%;
  border-width: 0.2rem;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.9) rgba(0, 0, 0, 0.9) transparent transparent;
  -webkit-animation: loading-animation 0.75s linear infinite;
          animation: loading-animation 0.75s linear infinite;
}
@keyframes loading-animation {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@media (max-width: 768px) {
  .theme-mr-wrapper .small-font-on-mobile {
    font-size: 10px;
  }
}
.theme-mr-wrapper .ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.theme-mr-wrapper .vertical-line {
  top: 0;
  height: 100%;
  border-left: 1px solid #00334f;
}
.theme-mr-wrapper .docs-tooltip-icon {
  position: absolute;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.theme-mr-wrapper .api-icon {
  height: 2rem;
  color: #00334f;
}
.theme-mr-wrapper .dot {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
}
.theme-mr-wrapper .high-panel {
  font-size: 12px !important;
}
.theme-mr-wrapper .high-panel .mat-optgroup-label,
.theme-mr-wrapper .high-panel .mat-option {
  line-height: 20px !important;
  height: 20px !important;
}
.theme-mr-wrapper .warning-card {
  color: white;
  background: #f44336;
  padding: 1rem;
}
.theme-mr-wrapper .theme-dark .spreadsheet .report-table.report-table th {
  background: #424242 !important;
}
.theme-mr-wrapper .theme-dark .c-black.c-black {
  color: white !important;
}
.theme-mr-wrapper .theme-dark.theme-dark .spreadsheet .spreadsheet-table td:nth-child(1),
.theme-mr-wrapper .theme-dark.theme-dark .spreadsheet .clear-row td {
  background: transparent !important;
}
.theme-mr-wrapper .theme-dark .daily-avg-row td {
  background: #081849 !important;
}
.theme-mr-wrapper .theme-dark .year-row td {
  background: #55745e !important;
}
.theme-mr-wrapper .theme-dark .board-card, .theme-mr-wrapper .theme-dark .board-card-header, .theme-mr-wrapper .theme-dark .chat-bar-header {
  background: #424242 !important;
}
.theme-mr-wrapper .theme-dark .board-card-task, .theme-mr-wrapper .theme-dark .chat-bar-content-wrapper, .theme-mr-wrapper .theme-dark small {
  background: #636363 !important;
}
.theme-mr-wrapper .theme-dark .vertical-text {
  color: white;
}
.theme-mr-wrapper .sticky-header {
  background: white !important;
}
.theme-mr-wrapper .fc-unthemed td.fc-today {
  background: #eee;
}
.theme-mr-wrapper .fc-basicDay-button:not(.fc-state-active),
.theme-mr-wrapper .fc-basicWeek-button:not(.fc-state-active),
.theme-mr-wrapper .fc-basicMonth-button:not(.fc-state-active),
.theme-mr-wrapper .fc-next-button,
.theme-mr-wrapper .fc-prev-button,
.theme-mr-wrapper .fc-today-button {
  color: rgba(0, 0, 0, 0.9);
}
.theme-mr-wrapper nelson-tag-input {
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: white;
}
.theme-mr-wrapper nelson-tag-input .chip-wrapper {
  border: 1px solid rgba(0, 0, 0, 0.2) !important;
  background: #f5f5f5 !important;
}
.theme-mr-wrapper nelson-tag-input .chip-input {
  color: rgba(0, 0, 0, 0.9) !important;
}
.theme-mr-wrapper nelson-tag-input ul {
  background-color: #f5f5f5 !important;
  color: rgba(0, 0, 0, 0.9) !important;
}
.theme-mr-wrapper nelson-tag-input ul li:hover, .theme-mr-wrapper nelson-tag-input ul li.active {
  background: #eee !important;
}
.theme-mr-wrapper .c3-tooltip {
  color: black;
}
.theme-mr-wrapper .tick line, .theme-mr-wrapper .domain {
  stroke: rgba(0, 0, 0, 0.9) !important;
}
.theme-mr-wrapper nelson-chart-wrapper {
  fill: rgba(0, 0, 0, 0.9) !important;
}
.theme-mr-wrapper nelson-navbar .mat-select-value {
  color: rgba(255, 255, 255, 0.9);
}
.theme-mr-wrapper nelson-navbar .mat-select-arrow {
  color: rgba(255, 255, 255, 0.6);
}
.theme-mr-wrapper nelson-navbar .mat-form-field-appearance-legacy .mat-form-field-underline {
  background-color: rgba(255, 255, 255, 0.6);
}
.theme-mr-wrapper nelson-navbar .mat-form-field-ripple {
  border-color: rgba(255, 255, 255, 0.6);
}
.theme-mr-wrapper nelson-navbar .mat-form-field-appearance-legacy .mat-form-field-label {
  color: rgba(255, 255, 255, 0.6);
}
.theme-mr-wrapper nelson-navbar .mat-select-disabled .mat-select-value {
  color: rgba(204, 204, 204, 0.6);
}
.theme-mr-wrapper nelson-navbar .mat-form-field .mat-select.mat-select-disabled .mat-select-arrow {
  color: rgba(204, 204, 204, 0.6);
}
.theme-mr-wrapper nelson-navbar .mat-button-toggle-appearance-standard {
  color: rgba(204, 204, 204, 0.6) !important;
}
.theme-mr-wrapper .cdk-overlay-pane {
  max-width: calc(100vw - 200px) !important;
}
@media (max-width: 1200px) {
  .theme-mr-wrapper .cdk-overlay-pane {
    margin-left: 0;
    max-width: 90vw !important;
  }
}
.theme-mr-wrapper .layout-compact-body .cdk-overlay-pane {
  max-width: 90vw !important;
  margin-left: 0 !important;
}
@media (max-width: 599px) {
  .theme-mr-wrapper .cdk-overlay-pane {
    max-width: 100vw !important;
  }
}
@media (max-width: 599px) {
  .theme-mr-wrapper .mat-tab-link {
    min-width: 80px;
  }
}
.theme-mr-wrapper .mat-form-field.mat-focused .mat-form-field-ripple {
  background: #00334f !important;
}
.theme-mr-wrapper .mat-primary .mat-pseudo-checkbox-checked {
  background: #00334f !important;
}
.theme-mr-wrapper .mat-button-toggle-group,
.theme-mr-wrapper .mat-button-toggle-standalone {
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12) !important;
}
.theme-mr-wrapper .mat-button-toggle-group-appearance-standard {
  border: none !important;
}
.theme-mr-wrapper .mat-button-toggle-appearance-standard {
  background: transparent !important;
  color: rgba(0, 0, 0, 0.6) !important;
}
.theme-mr-wrapper .mat-button-toggle-appearance-standard.mat-button-toggle-checked {
  background-color: #e0e0e0 !important;
  color: rgba(0, 0, 0, 0.9) !important;
}
.theme-mr-wrapper .mat-button-toggle-appearance-standard .mat-button-toggle-label-content {
  line-height: 36px !important;
}
.theme-mr-wrapper .mat-icon-button:hover {
  color: #00334f !important;
}
.theme-mr-wrapper .mat-input-small .mat-form-field-infix {
  width: 80px !important;
}
.theme-mr-wrapper .fab-fixed {
  position: fixed !important;
  bottom: 2rem;
  right: 2rem;
}
.theme-mr-wrapper .no-box-shadow .mat-expansion-panel {
  box-shadow: none !important;
}
.theme-mr-wrapper .mat-option.mat-active span {
  color: rgba(0, 0, 0, 0.87);
}
.theme-mr-wrapper .mat-form-field.mat-focused .mat-form-field-label {
  color: gray !important;
}
.theme-mr-wrapper .mat-input-element {
  color: rgba(0, 0, 0, 0.9) !important;
}
.theme-mr-wrapper mat-form-field.c-white .mat-input-element {
  color: white !important;
}
.theme-mr-wrapper .mat-dialog-container {
  max-height: 100vh !important;
}
.theme-mr-wrapper .bg-dark-gray .mat-dialog-container {
  background: #303a48 !important;
}
.theme-mr-wrapper .mat-tab-header-pagination {
  z-index: 1 !important;
}
.theme-mr-wrapper .mat-tab-links {
  background: white !important;
}
.theme-mr-wrapper .mat-tab-links i.material-icons {
  color: rgba(0, 0, 0, 0.6) !important;
}
.theme-mr-wrapper .select-trigger {
  color: rgba(0, 0, 0, 0.9) !important;
  border-bottom-color: rgba(0, 0, 0, 0.2) !important;
}
.theme-mr-wrapper .select-dropdown {
  background: white !important;
}
.theme-mr-wrapper .select-dropdown-item {
  color: rgba(0, 0, 0, 0.9) !important;
}
.theme-mr-wrapper .select-dropdown-item:hover {
  background: #eee !important;
}
.theme-mr-wrapper .file-upload {
  border-bottom-color: rgba(0, 0, 0, 0.2) !important;
}
.theme-mr-wrapper .auth0-lock-cred-pane :nth-child(3) > span {
  width: 100%;
}
.theme-mr-wrapper .auth0-lock-social-button-icon {
  background-size: 100% !important;
}
.theme-mr-wrapper .auth0-lock.auth0-lock .auth0-lock-content {
  padding: 40px !important;
}
.theme-mr-wrapper .auth0-lock.auth0-lock .auth0-lock-social-button {
  border: 1px solid #f1f1f1 !important;
  transition: 0.2s;
  padding: 2px;
  box-sizing: border-box;
  background-color: #4285F4 !important;
}
.theme-mr-wrapper .auth0-lock.auth0-lock .auth0-lock-social-button-icon {
  float: left !important;
  display: inline-block !important;
  width: 36px !important;
  height: 36px !important;
  background-color: white !important;
  top: 1px !important;
  left: 1px !important;
  border-radius: 1px !important;
}
.theme-mr-wrapper .auth0-lock.auth0-lock .auth0-lock-social-button.auth0-lock-social-big-button .auth0-lock-social-button-text {
  padding-left: 52px;
  text-transform: unset !important;
  font-family: Roboto, sans-serif;
  line-height: 35px !important;
  color: white !important;
  font-weight: 600 !important;
  font-size: 14px !important;
}
.theme-mr-wrapper .ngx-datatable.material {
  background: white !important;
}
.theme-mr-wrapper .datatable-header-cell {
  color: rgba(0, 0, 0, 0.9) !important;
  background: white !important;
}
.theme-mr-wrapper .datatable-body-cell,
.theme-mr-wrapper .datatable-footer,
.theme-mr-wrapper .datatable-pager a {
  color: rgba(0, 0, 0, 0.6) !important;
}
.theme-mr-wrapper .datatable-body-row:hover,
.theme-mr-wrapper .datatable-body-row:hover .datatable-row-group {
  background: #eee !important;
}
.theme-mr-wrapper .datatable-header {
  display: flex !important;
  align-items: center;
}
.theme-mr-wrapper .datatable-header .resize-handle {
  border-right-color: #eee !important;
}
.theme-mr-wrapper .datatable-body-cell,
.theme-mr-wrapper .datatable-header-cell {
  display: inline-flex !important;
  align-items: center;
}
.theme-mr-wrapper .datatable-body-cell {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.theme-mr-wrapper .datatable-row-detail,
.theme-mr-wrapper .datatable-row-left {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  background: white !important;
  color: rgba(0, 0, 0, 0.6) !important;
}
.theme-mr-wrapper .details-overflow .datatable-row-detail {
  overflow-y: auto !important;
}
.theme-mr-wrapper .ngx-datatable .mat-form-field-label-wrapper {
  box-sizing: content-box;
}
.theme-mr-wrapper .empty-row {
  color: rgba(0, 0, 0, 0.6) !important;
}
.theme-mr-wrapper .noUi-horizontal {
  height: 6px;
}
.theme-mr-wrapper .noUi-tooltip {
  opacity: 0;
  transition: 0.2s;
}
.theme-mr-wrapper .noUi-horizontal .noUi-handle {
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  transform: translateX(-50%) translateY(-40%);
}
.theme-mr-wrapper .noUi-horizontal .noUi-handle:after, .theme-mr-wrapper .noUi-horizontal .noUi-handle:before {
  display: none;
}
.theme-mr-wrapper .noUi-horizontal .noUi-handle:hover .noUi-tooltip, .theme-mr-wrapper .noUi-horizontal .noUi-handle.noUi-active .noUi-tooltip {
  opacity: 1;
}
.theme-mr-wrapper .noUi-connect {
  background: #00334f;
}
.theme-mr-wrapper .noUi-wrapper {
  padding-bottom: 40px;
}
.theme-mr-wrapper .noUi-marker-horizontal.noUi-marker-large {
  top: 10px;
  height: 8px;
}
.theme-mr-wrapper .header-slider .noUi-horizontal .noUi-tooltip {
  bottom: -270%;
}
.theme-mr-wrapper .ngx-datatable .datatable-body .datatable-row-wrapper:hover {
  z-index: 1;
}
.theme-mr-wrapper .jsoneditor-poweredBy {
  display: none;
}
.theme-mr-wrapper .swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.theme-mr-wrapper .swiper-button-next, .theme-mr-wrapper .swiper-button-prev {
  background-image: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.75);
}
.theme-mr-wrapper .swiper-button-next svg, .theme-mr-wrapper .swiper-button-prev svg {
  width: 30px;
}
@media (max-width: 768px) {
  .theme-mr-wrapper .mat-button-toggle-button, .theme-mr-wrapper .mat-button-toggle-label-content {
    width: 100% !important;
  }
  .theme-mr-wrapper .mat-tab-link {
    font-size: 10px;
  }
}
.theme-mr-wrapper .report-tag td:first-child {
  border-right: 2px solid #00334f;
}
@media (max-width: 600px) {
  .theme-mr-wrapper .c3-axis.c3-axis-x tspan:not(:nth-child(1)) {
    display: none;
  }
}
.theme-mr-wrapper #mce-modal-block {
  z-index: 63000 !important;
}
.theme-mr-wrapper .cdk-overlay-container {
  z-index: 63001 !important;
}
.theme-mr-wrapper .pre {
  margin: 0;
}
.theme-mr-wrapper .language-markup {
  color: white;
}
.theme-mr-wrapper .language-markup .token {
  color: white;
}
.theme-mr-wrapper .tooltip-font-12 {
  font-size: 12px !important;
}
@page {
  .theme-mr-wrapper {
    size: a4;
    margin: 10px;
  }
}
.theme-mr-wrapper .show-print {
  display: none;
}
@media print {
  .theme-mr-wrapper .show-print {
    display: block;
  }
}
@media print {
  .theme-mr-wrapper .hide-print {
    display: none;
  }
  .theme-mr-wrapper .cdk-overlay-container {
    position: static !important;
  }
  .theme-mr-wrapper .cdk-overlay-connected-position-bounding-box {
    display: none !important;
  }
  .theme-mr-wrapper .cdk-overlay-backdrop {
    display: none !important;
  }
  .theme-mr-wrapper .cdk-global-overlay-wrapper {
    position: static !important;
  }
  .theme-mr-wrapper .cdk-overlay-pane {
    max-width: unset !important;
  }
  .theme-mr-wrapper .cdk-global-scrollblock {
    position: static !important;
    overflow-y: visible !important;
  }
  .theme-mr-wrapper .mat-dialog-container {
    box-shadow: unset !important;
    padding: 10px !important;
    overflow: visible !important;
  }
  .theme-mr-wrapper .p-tabs {
    padding: 0;
  }
  .theme-mr-wrapper .active-scorecard {
    outline: none;
  }
  .theme-mr-wrapper .scorecards h1, .theme-mr-wrapper .scorecards h2, .theme-mr-wrapper .scorecards h3, .theme-mr-wrapper .scorecards h4, .theme-mr-wrapper .scorecards h5, .theme-mr-wrapper .scorecards h6 {
    font-size: 14px;
  }
  .theme-mr-wrapper .scorecards p {
    font-size: 11px;
  }
  .theme-mr-wrapper .docs-tooltip-icon {
    display: none;
  }
  .theme-mr-wrapper .print-modal-header {
    display: none;
  }
  .theme-mr-wrapper .print-modal-subheader {
    display: none;
  }
  .theme-mr-wrapper .print-modal-body {
    max-height: unset !important;
    padding-top: unset !important;
    overflow: visible !important;
  }
  .theme-mr-wrapper .db-main {
    left: 0;
    top: 0;
    width: 100%;
    height: unset !important;
    min-height: unset !important;
    background: unset !important;
  }
}
.theme-light {
  /*
   * Box sizing
   */
  /*
   * Page setup
   */
  /*
   * Custom scrollbar
   */
  /*
   * Dashboard sidebar
   */
  /*
   * Dashboard header
   */
  /*
   * Dashboard main
   */
  /*
   * Dashboard tabs
   */
  /*
   * Dashboard tabs
   */
  /*
   * Loading toast
   */
  /*
   * Compact navigation style
   */
  /*
   * Simple sidebar
   */
  /*
   * Layout responsive style
   */
  /*
   * Simple table
   */
  /*
   * No style table
   */
  /*
   * Print table
   */
  /*
   * Flex
   */
  /*
   * Width
   */
  /*
   * Height
   */
  /*
   * Text align
   */
  /*
   * Border-radius
   */
  /*
   * Text transform
   */
  /*
   * Hide & show
   */
  /*
   * Columns
   */
  /*
   * Padding
   */
  /*
   * Margin
   */
  /*
   * Sticky header
   */
  /*
   * Calendar
   */
  /*
   * Nelson tag input
   */
  /*
   * Nelson chart
   */
  /*
   * Navbar overrides
   */
  /*
   * Material overrides
   */
  /*
   * add-remove-select component override
   */
  /*
   * file-upload component
   */
  /*
   * Auth0 overrides
   */
  /*
   * ngx-datatable overrides
   */
  /*
   * noUi slider overrides
   */
  /**
   * NoUi header class
   */
  /*@media (max-width: 762px) {
    mat-panel-title {
      margin-right: 0!important;

    }
    mat-panel-description {
      margin-right: 0!important;
    }
  }*/
  /*
   * JSON editor overrides
   */
  /*
   * Page builder slider
   */
  /*
   * Report overrides
   */
  /*
   * Prism
   */
}
.theme-light html {
  box-sizing: border-box;
  width: 100%;
}
.theme-light *,
.theme-light *:before,
.theme-light *:after {
  box-sizing: border-box;
}
.theme-light body {
  margin: 0;
  overflow-x: hidden;
  min-height: 100vh;
  background: white;
}
.theme-light ::-webkit-scrollbar {
  width: 8px;
  height: 3px;
}
.theme-light ::-webkit-scrollbar-track {
  border-radius: 0;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.35);
  background: rgba(238, 238, 238, 0.2);
}
.theme-light ::-webkit-scrollbar-thumb {
  border-radius: 40px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.35);
  background: rgba(170, 170, 170, 0.7);
}
.theme-light img {
  max-width: 100%;
  font-style: italic;
  vertical-align: middle;
}
.theme-light .img-full {
  width: 100%;
  height: 100%;
}
.theme-light .img-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.theme-light .img-contain {
  -o-object-fit: contain;
     object-fit: contain;
}
.theme-light .img-container {
  position: relative;
  overflow: hidden;
}
.theme-light .img-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.theme-light .img-container[data-aspect-ratio="1:1"] {
  padding-bottom: 100%;
}
.theme-light .img-container[data-aspect-ratio="4:3"] {
  padding-bottom: 75%;
}
.theme-light html {
  color: rgba(0, 0, 0, 0.6);
}
.theme-light h1, .theme-light h2, .theme-light h3, .theme-light h4, .theme-light h5, .theme-light h6 {
  color: rgba(0, 0, 0, 0.9);
}
.theme-light p {
  color: rgba(0, 0, 0, 0.6);
}
.theme-light fieldset legend {
  color: rgba(0, 0, 0, 0.6);
}
.theme-light hr {
  border-color: rgba(0, 0, 0, 0.2);
}
.theme-light .vr {
  border-color: rgba(0, 0, 0, 0.2);
}
.theme-light .grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 160rem;
  width: 100%;
  margin: 0 auto;
}
.theme-light .grid > [class*=col] {
  padding: 1rem;
}
.theme-light .grid.full {
  max-width: 100%;
}
.theme-light .grid.gutter-l > [class*=col] {
  padding: 2rem;
}
.theme-light .grid.gutter-m > [class*=col] {
  padding: 1rem;
}
.theme-light .grid.gutter-s > [class*=col] {
  padding: 0.5rem;
}
.theme-light .grid.nogutter > [class*=col] {
  padding: 0;
}
.theme-light .grid .col-1 {
  flex-basis: 8.3333%;
  width: 8.3333%;
}
.theme-light .grid .col-2 {
  flex-basis: 16.6666%;
  width: 16.6666%;
}
.theme-light .grid .col-3 {
  flex-basis: 25%;
  width: 25%;
}
.theme-light .grid .col-4 {
  flex-basis: 33.3333%;
  width: 33.3333%;
}
.theme-light .grid .col-5 {
  flex-basis: 41.6666%;
  width: 41.6666%;
}
.theme-light .grid .col-6 {
  flex-basis: 50%;
  width: 50%;
}
.theme-light .grid .col-7 {
  flex-basis: 58.3333%;
  width: 58.3333%;
}
.theme-light .grid .col-8 {
  flex-basis: 66.6666%;
  width: 66.6666%;
}
.theme-light .grid .col-9 {
  flex-basis: 75%;
  width: 75%;
}
.theme-light .grid .col-10 {
  flex-basis: 83.3333%;
  width: 83.3333%;
}
.theme-light .grid .col-11 {
  flex-basis: 91.6666%;
  width: 91.6666%;
}
.theme-light .grid .col-12 {
  flex-basis: 100%;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .theme-light .grid .o-m-last {
    order: 9;
  }
  .theme-light .grid .col-m-0 {
    display: none;
  }
  .theme-light .grid .col-m-1 {
    flex-basis: 8.3333%;
    width: 8.3333%;
  }
  .theme-light .grid .col-m-2 {
    flex-basis: 16.6666%;
    width: 16.6666%;
  }
  .theme-light .grid .col-m-3 {
    flex-basis: 25%;
    width: 25%;
  }
  .theme-light .grid .col-m-4 {
    flex-basis: 33.3333%;
    width: 33.3333%;
  }
  .theme-light .grid .col-m-5 {
    flex-basis: 41.6666%;
    width: 41.6666%;
  }
  .theme-light .grid .col-m-6 {
    flex-basis: 50%;
    width: 50%;
  }
  .theme-light .grid .col-m-7 {
    flex-basis: 58.3333%;
    width: 58.3333%;
  }
  .theme-light .grid .col-m-8 {
    flex-basis: 66.6666%;
    width: 66.6666%;
  }
  .theme-light .grid .col-m-9 {
    flex-basis: 75%;
    width: 75%;
  }
  .theme-light .grid .col-m-10 {
    flex-basis: 83.3333%;
    width: 83.3333%;
  }
  .theme-light .grid .col-m-11 {
    flex-basis: 91.6666%;
    width: 91.6666%;
  }
  .theme-light .grid .col-m-12 {
    flex-basis: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 850px) {
  .theme-light .grid .o-s-last {
    order: 9;
  }
  .theme-light .grid .col-s-0 {
    display: none;
  }
  .theme-light .grid .col-s-1 {
    flex-basis: 8.3333%;
    width: 8.3333%;
  }
  .theme-light .grid .col-s-2 {
    flex-basis: 16.6666%;
    width: 16.6666%;
  }
  .theme-light .grid .col-s-3 {
    flex-basis: 25%;
    width: 25%;
  }
  .theme-light .grid .col-s-4 {
    flex-basis: 33.3333%;
    width: 33.3333%;
  }
  .theme-light .grid .col-s-5 {
    flex-basis: 41.6666%;
    width: 41.6666%;
  }
  .theme-light .grid .col-s-6 {
    flex-basis: 50%;
    width: 50%;
  }
  .theme-light .grid .col-s-7 {
    flex-basis: 58.3333%;
    width: 58.3333%;
  }
  .theme-light .grid .col-s-8 {
    flex-basis: 66.6666%;
    width: 66.6666%;
  }
  .theme-light .grid .col-s-9 {
    flex-basis: 75%;
    width: 75%;
  }
  .theme-light .grid .col-s-10 {
    flex-basis: 83.3333%;
    width: 83.3333%;
  }
  .theme-light .grid .col-s-11 {
    flex-basis: 91.6666%;
    width: 91.6666%;
  }
  .theme-light .grid .col-s-12 {
    flex-basis: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 450px) {
  .theme-light .grid .o-xs-last {
    order: 9;
  }
  .theme-light .grid .col-xs-0 {
    display: none;
  }
  .theme-light .grid .col-xs-1 {
    flex-basis: 8.3333%;
    width: 8.3333%;
  }
  .theme-light .grid .col-xs-2 {
    flex-basis: 16.6666%;
    width: 16.6666%;
  }
  .theme-light .grid .col-xs-3 {
    flex-basis: 25%;
    width: 25%;
  }
  .theme-light .grid .col-xs-4 {
    flex-basis: 33.3333%;
    width: 33.3333%;
  }
  .theme-light .grid .col-xs-5 {
    flex-basis: 41.6666%;
    width: 41.6666%;
  }
  .theme-light .grid .col-xs-6 {
    flex-basis: 50%;
    width: 50%;
  }
  .theme-light .grid .col-xs-7 {
    flex-basis: 58.3333%;
    width: 58.3333%;
  }
  .theme-light .grid .col-xs-8 {
    flex-basis: 66.6666%;
    width: 66.6666%;
  }
  .theme-light .grid .col-xs-9 {
    flex-basis: 75%;
    width: 75%;
  }
  .theme-light .grid .col-xs-10 {
    flex-basis: 83.3333%;
    width: 83.3333%;
  }
  .theme-light .grid .col-xs-11 {
    flex-basis: 91.6666%;
    width: 91.6666%;
  }
  .theme-light .grid .col-xs-12 {
    flex-basis: 100%;
    width: 100%;
  }
}
.theme-light .layout-fluid .grid {
  max-width: unset !important;
}
.theme-light .bg-color {
  background: rgba(45, 58, 105, 0.9);
}
.theme-light .collapsed-menu {
  margin-left: 40px !important;
}
.theme-light .compact-title {
  font-size: 18px;
  color: #d0d6e2;
  padding: 0 16px;
  height: 40px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #d0d6e2;
}
.theme-light .sidebar-mat-menu {
  background: rgba(45, 58, 105, 0.9);
  margin-left: 180px;
  border-radius: 0 !important;
  min-height: auto !important;
  border: 1px solid rgba(0, 0, 0, 0.12);
}
.theme-light .sidebar-mat-menu .mat-menu-item {
  color: #d0d6e2;
  line-height: 1;
  height: 40px;
}
.theme-light .sidebar-mat-menu .mat-menu-item.active {
  color: #FBC02D;
  font-weight: 700;
}
.theme-light .sidebar-mat-menu .mat-menu-item:hover {
  background: rgba(255, 255, 255, 0.1);
}
.theme-light .sidebar-mat-menu .mat-menu-item:hover .favorite {
  opacity: 1;
  pointer-events: auto;
}
.theme-light .sidebar-mat-menu .mat-menu-content {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.theme-light .sidebar-mat-menu .mat-menu-item-submenu-trigger::after {
  color: #d0d6e2;
}
.theme-light .sidebar-mat-menu-child {
  margin-top: 7px !important;
  background: rgba(45, 58, 105, 0.9);
  border-radius: 0 !important;
  min-height: auto !important;
  border: 1px solid rgba(0, 0, 0, 0.12);
}
.theme-light .sidebar-mat-menu-child .mat-menu-item {
  color: #d0d6e2;
  line-height: 1;
  height: 40px;
}
.theme-light .sidebar-mat-menu-child .mat-menu-item.active {
  color: #FBC02D;
  font-weight: 700;
}
.theme-light .sidebar-mat-menu-child .mat-menu-item:hover {
  background: rgba(255, 255, 255, 0.1);
}
.theme-light .sidebar-mat-menu-child .mat-menu-content {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.theme-light .sidebar-mat-menu-child .mat-menu-item-submenu-trigger::after {
  color: #d0d6e2;
}
.theme-light .active-inner .active-primary-color {
  color: #FBC02D;
}
.theme-light .favorite {
  pointer-events: none;
  opacity: 0;
  transition: 0.2s;
  cursor: pointer;
  margin-right: 0 !important;
}
.theme-light .db-aside {
  position: fixed;
  z-index: 63004;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  width: 180px;
  height: 100%;
  color: #d0d6e2;
  background: #2D3A69;
}
.theme-light .db-aside-list {
  padding: 0;
  list-style: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  overflow-y: auto;
  overflow-x: hidden;
  line-height: 2.4;
}
.theme-light .db-aside-list-item .divider {
  display: none;
  margin: 0;
}
.theme-light .db-aside-list-item.expanded {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.5) 2px, rgba(255, 255, 255, 0.06) 2px, rgba(255, 255, 255, 0.06));
}
.theme-light .db-aside-list-item.expanded .divider {
  display: block;
  border-color: #FBC02D !important;
  opacity: 60%;
}
.theme-light .db-aside-list-item-logo {
  height: 64px;
  display: flex;
  justify-content: center;
}
.theme-light .db-aside-list-item-link {
  display: flex;
  white-space: nowrap;
  align-items: center;
  width: 100%;
  padding: 8px;
  font-size: 14px;
}
.theme-light .db-aside-list-item-link:hover {
  background: rgba(255, 255, 255, 0.04);
}
.theme-light .db-aside-list-item-link.active {
  color: #FBC02D;
}
.theme-light .db-aside-list-item-link-label {
  margin-left: 8px;
  margin-right: 8px;
}
.theme-light .db-aside-list-item-link .navicon {
  color: rgba(160, 160, 179, 0.5);
}
.theme-light .db-aside-list-item-link-expand {
  margin-left: auto;
  margin-right: 8px;
}
.theme-light .db-aside-list-item-link-expand.expanded {
  transform: rotate(90deg);
}
.theme-light .db-aside-list-nested {
  padding: 0;
  list-style: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  overflow: hidden;
  max-height: 0;
  transition: 0.4s;
}
.theme-light .db-aside-list-nested.expanded {
  max-height: 1000px;
}
.theme-light .db-aside-list-nested-item-link {
  position: relative;
  display: flex;
  white-space: nowrap;
  align-items: center;
  width: 100%;
  padding: 4px 8px 4px 25px;
  font-size: 13px;
  transition: 0.2s;
  justify-content: space-between;
}
.theme-light .db-aside-list-nested-item-link:hover {
  background: rgba(255, 255, 255, 0.04);
}
.theme-light .db-aside-list-nested-item-link:hover .favorite {
  pointer-events: auto;
  opacity: 1;
}
.theme-light .db-aside-list-nested-item-link.active {
  color: #FBC02D;
  background: rgba(255, 255, 255, 0.06);
}
.theme-light .db-aside-list-nested-item-link-icon {
  font-size: 20px;
  line-height: 20px;
  width: 20px;
  height: 20px;
}
.theme-light .db-aside-list-nested-item-link-label {
  margin-left: 8px;
  margin-right: 8px;
}
.theme-light .db-aside-list-nested-item-link-expand {
  font-size: 20px;
  line-height: 20px;
  width: 20px;
  height: 20px;
  margin-left: auto;
  margin-right: 8px;
}
.theme-light .db-aside-list-nested-item-link-expand.expanded {
  transform: rotate(90deg);
}
.theme-light .db-aside-list-nested-item-expand {
  padding: 0;
  list-style: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  overflow: hidden;
}
.theme-light .db-aside-list-nested-item-expand-link {
  position: relative;
  display: flex;
  white-space: nowrap;
  align-items: center;
  width: 100%;
  padding: 4px 8px 4px 33px;
  font-size: 13px;
  transition: 0.2s;
  justify-content: space-between;
}
.theme-light .db-aside-list-nested-item-expand-link:hover {
  background: rgba(255, 255, 255, 0.04);
}
.theme-light .db-aside-list-nested-item-expand-link:hover .favorite {
  pointer-events: auto;
  opacity: 1;
}
.theme-light .db-aside-list-nested-item-expand-link.active {
  color: #FBC02D;
}
.theme-light .db-aside-list-nested-item-expand-link.expanded {
  transform: rotate(90deg);
}
.theme-light .db-aside-list-nested-item-expand-link i {
  padding-right: 2px;
  margin: 0 0 0 auto;
  color: rgba(160, 160, 179, 0.5);
  font-size: 15px;
}
.theme-light .db-header {
  position: fixed;
  z-index: 100;
  left: 180px;
  top: 0;
  width: calc(100% - 180px);
  height: 64px;
  color: #b8c2d6;
  background: #2D3A69;
}
.theme-light .db-header .header-profile-picture {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 10px;
}
.theme-light .db-header .header-select {
  padding-top: 18px;
}
.theme-light .db-header .cont-1 {
  flex: 2;
}
.theme-light .db-header .cont-2 {
  flex: 0 1 auto;
}
.theme-light .db-header .cont-2 .mat-icon-button {
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-size: 20px;
}
.theme-light .db-header .cont-1-2 {
  flex: 1;
}
.theme-light .db-header .cont-1-2 .header-select {
  flex: 1;
  width: 100px;
}
@media (max-width: 1200px) {
  .theme-light .db-header .cont-1-2 .header-select {
    flex: 0 1 auto;
    width: 19vw;
  }
}
.theme-light .db-main {
  overflow-x: hidden;
  position: relative;
  left: 180px;
  top: 64px;
  width: calc(100% - 180px);
  min-height: calc(100vh - 64px);
  background: #e9ebec;
  -webkit-overflow-scrolling: touch;
}
.theme-light .db-tabs {
  position: fixed !important;
  z-index: 2;
  left: 180px;
  width: calc(100% - 180px);
  transition: 0.2s;
}
.theme-light .db-tabs .mat-tab-links {
  overflow-x: auto;
  background: white;
}
.theme-light .db-tabs.filled {
  background: white;
  border: 1px solid #ccc;
  height: 48px;
}
.theme-light .tab-active {
  background: #eee;
  font-weight: bold;
}
.theme-light .db-subtabs {
  display: flex;
  align-items: center;
  position: fixed;
  z-index: 2;
  right: 4px;
  height: 48px;
}
.theme-light .db-subtabs-action {
  margin-left: 5px;
}
.theme-light .tab-nav-drop-down-added .db-subtabs {
  display: flex;
  position: relative;
  right: unset;
  height: unset;
  flex-direction: column;
  align-items: flex-start;
}
.theme-light .tab-nav-drop-down-added .db-subtabs-action {
  margin-left: 0;
  margin-top: 10px;
  width: 100%;
  padding: 0 10px;
}
.theme-light .tab-nav-drop-down-added .db-subtabs-action > * {
  width: 100% !important;
}
.theme-light .loading-toast {
  display: flex;
  align-items: center;
  opacity: 0;
  position: fixed;
  z-index: 100;
  bottom: 0;
  left: 50%;
  padding: 8px 16px;
  border-top-left-radius: 0.6rem;
  border-top-right-radius: 0.6rem;
  background: #303a48;
  color: white;
  transform: translateX(-50%) translateY(100%);
  transition: 0.4s;
  -webkit-animation-delay: 300ms;
          animation-delay: 300ms;
}
.theme-light .loading-toast.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.theme-light .high-performance .loading-toast {
  transition: none !important;
  -webkit-animation-delay: 0ms !important;
          animation-delay: 0ms !important;
}
.theme-light .layout-compact .db-aside {
  width: 40px !important;
}
.theme-light .layout-compact .db-aside-list-item-link-label,
.theme-light .layout-compact .db-aside-list-item-link-expand,
.theme-light .layout-compact .db-aside-list-nested {
  display: none;
}
.theme-light .layout-compact .db-header,
.theme-light .layout-compact .db-tabs,
.theme-light .layout-compact .db-main {
  left: 40px !important;
  width: calc(100% - 40px) !important;
}
.theme-light simple-sidebar {
  overflow-y: auto;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  height: 100%;
  background: white;
  color: rgba(0, 0, 0, 0.6);
  transform: translateX(100%);
  transition: 0.2s;
}
.theme-light simple-sidebar.active {
  box-shadow: -4px 0 8px rgba(0, 0, 0, 0.2);
  transform: translateX(0);
}
@media (max-width: 450px) {
  .theme-light simple-sidebar {
    width: 100% !important;
  }
}
.theme-light simple-sidebar .simple-sidebar-header, .theme-light simple-sidebar .simple-sidebar-footer {
  height: 64px;
  padding: 0 20px;
  background: #f5f5f5;
}
.theme-light simple-sidebar .simple-sidebar-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.theme-light simple-sidebar .simple-sidebar-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.theme-light simple-sidebar .simple-sidebar-content {
  overflow-y: auto;
  height: calc(100vh - 128px);
}
.theme-light simple-sidebar .simple-sidebar-content.no-footer {
  height: calc(100vh - 64px);
}
.theme-light simple-sidebar .hidden {
  display: none;
}
@media screen and (max-width: 1200px) {
  .theme-light .db-aside {
    display: none !important;
  }
  .theme-light .db-header,
.theme-light .db-tabs,
.theme-light .db-main {
    left: 0 !important;
    width: 100% !important;
  }
}
.theme-light .long-select {
  width: 300px;
}
.theme-light .notification-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  line-height: 18px;
  font-size: 10px;
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
  background: #FBC02D;
}
.theme-light .read-format h1, .theme-light .read-format h2, .theme-light .read-format h3, .theme-light .read-format h4, .theme-light .read-format h5, .theme-light .read-format h6 {
  margin: 1em 0 0.5em 0;
}
.theme-light .read-format p, .theme-light .read-format table, .theme-light .read-format img {
  margin: 0 0 0.5em 0;
}
.theme-light .read-format ul, .theme-light .read-format ol {
  margin: -0.25em 0 0.5em 0;
}
.theme-light .read-format a {
  text-decoration: underline;
}
.theme-light .read-format hr {
  margin: 0.5em 0 0.5em 0;
}
.theme-light .table-heading {
  font-weight: 500;
  background: rgba(0, 0, 0, 0.04);
  padding: 5px;
  border-bottom: 1px solid #999;
  text-align: center;
  font-size: 1.9rem;
}
.theme-light .simple-table {
  border-collapse: collapse;
  width: calc(100% - 1px);
  text-align: left;
  background: white;
  /*
   * Smaller screen layout
   */
  /*
  @media screen and (max-width: $screen-s) {
    box-shadow: none;

    tr {
      display   : block;
      margin    : 1rem 0;
      box-shadow: $box-shadow;
    }

    td {
      display       : block;
      text-align    : right;
      border-bottom : 1px solid map_get($foreground, divider);

      &:nth-child(1) {
        padding: .8rem .8rem .8rem .8rem;
      }

      &:nth-last-child(1) {
        padding: .8rem .8rem .8rem .8rem;
      }

    }

    tr td:nth-last-child(1) {
      border-bottom: none;
    }

    td:before {
      content : attr(data-label);
      float   : left;
    }

    thead {
      opacity : 0;
      position: absolute;
      z-index : -1;
    }

  }
  */
}
.theme-light .simple-table tr {
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.2);
}
.theme-light .simple-table tr:nth-child(2n-1) {
  background: rgba(0, 0, 0, 0.04);
}
.theme-light .simple-table tr:hover {
  background: #eee;
}
.theme-light .simple-table tr.label-block {
  border-bottom: 1px solid rgba(0, 0, 0, 0.9);
}
.theme-light .simple-table nelson-report-row:nth-child(2n) tr {
  background: white;
}
.theme-light .simple-table nelson-report-row:nth-child(2n) tr:hover {
  background: #eee;
}
.theme-light .simple-table thead tr:nth-child(1) {
  background: white;
}
.theme-light .simple-table tbody tr:nth-last-child(1) {
  border-bottom: none;
}
.theme-light .simple-table th {
  padding: 1.6rem 0.8rem;
  font-size: 1.1rem;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.6);
}
.theme-light .simple-table th:nth-child(1) {
  padding: 0.8rem 0.8rem 0.8rem 2.4rem;
}
.theme-light .simple-table th:nth-last-child(1) {
  padding: 0.8rem 2.4rem 0.8rem 0.8rem;
}
.theme-light .simple-table td {
  padding: 0.8rem;
  font-size: 1.2rem;
  color: rgba(0, 0, 0, 0.9);
}
.theme-light .simple-table td:nth-child(1) {
  padding: 0.8rem 0.8rem 0.8rem 2.4rem;
}
.theme-light .simple-table td:nth-last-child(1) {
  padding: 0.8rem 2.4rem 0.8rem 0.8rem;
}
.theme-light .no-style-table {
  border-collapse: collapse;
  width: 100%;
  text-align: left;
}
.theme-light .no-style-table td, .theme-light .no-style-table th {
  padding: 0.4rem;
}
.theme-light .print-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 10px;
}
.theme-light .print-table tr:nth-child(2n) {
  background: #ddd;
}
.theme-light .print-table td, .theme-light .print-table th {
  padding: 2px 4px;
  text-align: left;
}
@media not print {
  .theme-light .print-table.header-sticky {
    table-layout: fixed;
  }
  .theme-light .print-table.header-sticky tbody {
    display: block;
    overflow: auto;
    max-height: 450px;
    width: 100%;
  }
  .theme-light .print-table.header-sticky tr {
    display: flex;
  }
}
.theme-light .label-block {
  font-weight: 700;
  cursor: pointer;
  border-bottom: 1px solid black !important;
}
@media (max-width: 640px) {
  .theme-light .report-table td,
.theme-light .report-table th {
    padding: 2px 4px 2px 2px !important;
    font-size: 10px !important;
  }
}
.theme-light .report-tag {
  position: relative;
}
.theme-light .report-tag td {
  text-align: center;
  padding: 0 !important;
}
.theme-light .report-tag td:first-child {
  overflow: hidden;
  font-size: 1px;
  width: 50px;
}
@media (max-width: 640px) {
  .theme-light .report-tag td:first-child {
    width: 20px;
  }
}
.theme-light .report-tag td:first-child span {
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
          text-orientation: mixed;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
}
@media (max-width: 640px) {
  .theme-light .report-tag td:first-child span {
    font-size: 10px;
  }
}
@media (max-width: 640px) {
  .theme-light .report-tag td {
    padding: 0 !important;
  }
}
.theme-light .grind-new-page {
  page-break-before: always;
}
.theme-light .sticky-header {
  position: absolute;
  z-index: -1;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 16px 0;
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.16);
  background: white;
  border-top: 1px solid #cccccc;
}
.theme-light .sticky-header.active {
  opacity: 1;
  z-index: 10;
}
.theme-light .sticky-header.no-pad {
  padding: 0 !important;
}
.theme-light .nada-column-count {
  line-height: 0;
  border-bottom: 1px solid black !important;
}
.theme-light .nada-avg-row {
  background: #f6dad5 !important;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.25);
}
.theme-light .nada-boc-row {
  background: #c7e2df !important;
}
.theme-light .nada-total-row {
  background: #e3f2fd !important;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.25);
}
.theme-light .nada-highlight-field {
  outline: 2px solid;
  background: #ccd9d7;
}
.theme-light .nada-table-header th {
  background: #dfdac9;
  vertical-align: top;
  padding: 0.5rem !important;
}
@media (max-width: 600px) {
  .theme-light .nada-table-header th {
    min-width: 90px;
  }
}
.theme-light .nada-table-header th.sub-header {
  padding: 1.6rem 0.8rem !important;
}
.theme-light .nada-table-header ::ng-deep p {
  font-size: 12px;
}
@media (max-width: 600px) {
  .theme-light .nada-table-header ::ng-deep p {
    font-size: 10px;
  }
}
@media (max-width: 640px) {
  .theme-light .report-hide-td-mobile {
    display: none;
  }
}
@media (max-width: 640px) {
  .theme-light .report-table-per > td {
    display: none;
  }
}
@media (max-width: 640px) {
  .theme-light .report-table-count > td {
    display: none;
  }
}
@media (max-width: 640px) {
  .theme-light .report-table-percent > td {
    display: none;
  }
}
@media (max-width: 640px) {
  .theme-light .report-table-budget > td {
    display: none;
  }
}
@media (max-width: 640px) {
  .theme-light .order-xs-1 {
    order: 1;
  }
}
@media (max-width: 640px) {
  .theme-light .order-xs-2 {
    order: 2;
  }
}
@media (max-width: 640px) {
  .theme-light .order-xs-3 {
    order: 3;
  }
}
@media (max-width: 640px) {
  .theme-light .order-xs-4 {
    order: 4;
  }
}
.theme-light .details-header {
  cursor: pointer;
}
.theme-light .details-header mat-icon {
  margin-left: 5px;
  transition: opacity 0.2s;
  opacity: 0;
  visibility: hidden;
}
.theme-light .details-header:hover mat-icon {
  opacity: 1;
  visibility: visible;
}
.theme-light .report-compact .report-table-container h5, .theme-light .report-compact .report-table-container h4 {
  font-size: 18px;
}
.theme-light .report-compact .report-table-container .mat-icon-button {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.theme-light .report-compact .report-table-container .report-tag td:first-child {
  width: 1px;
}
.theme-light .report-compact .report-table-container .report-tag td:first-child span {
  font-size: 11px;
}
.theme-light .report-compact .report-table-container .simple-table td {
  padding: 4px 4px 4px 12px;
  font-size: 11px;
}
.theme-light .report-compact .report-table-container .simple-table td:nth-child(1) {
  padding: 4px 4px 4px 12px;
  font-size: 11px;
}
.theme-light .report-compact .report-table-container .simple-table th {
  padding: 4px 4px 4px 12px;
  font-size: 11px;
}
.theme-light .report-compact .report-table-container .mat-card {
  padding: 12px;
}
.theme-light .report-spreadsheet .report-table-container h5, .theme-light .report-spreadsheet .report-table-container h4 {
  font-size: 14px;
}
.theme-light .report-spreadsheet .report-table-container .mat-icon-button {
  width: 20px;
  height: 20px;
  line-height: 20px;
}
.theme-light .report-spreadsheet .report-table-container .report-tag td:first-child {
  width: 1px;
}
.theme-light .report-spreadsheet .report-table-container .report-tag td:first-child span {
  font-size: 9px;
}
.theme-light .report-spreadsheet .report-table-container .simple-table td {
  padding: 2px 2px 2px 6px;
  font-size: 9px;
  border: 1px solid #808080;
  line-height: 1;
}
.theme-light .report-spreadsheet .report-table-container .simple-table td:nth-child(1) {
  padding: 2px 2px 2px 6px;
  font-size: 9px;
}
.theme-light .report-spreadsheet .report-table-container .simple-table th {
  padding: 2px 2px 2px 6px;
  font-size: 9px;
}
.theme-light .report-spreadsheet .report-table-container .mat-card {
  padding: 8px;
}
.theme-light .report-spreadsheet .report-table-container .simple-table thead tr[style] th {
  border: 1px solid #808080;
}
.theme-light .report-spreadsheet .report-table-container .simple-table thead tr[style] + tr th {
  border: 1px solid #808080;
}
.theme-light .spreadsheet-table td {
  border: 1px solid #aaa;
  padding: 5px !important;
}
.theme-light .spreadsheet-table td:nth-child(1), .theme-light .spreadsheet-table th:nth-child(1) {
  background: white;
}
.theme-light .full-row td {
  padding: 5px;
}
.theme-light .weekend-col {
  pointer-events: none;
  background: #ccc;
  color: transparent;
}
.theme-light .weekend-col span {
  opacity: 0;
}
.theme-light .year-row td, .theme-light .year-row td:nth-child(1) {
  background: #b2dfdb;
}
.theme-light .daily-avg-row td, .theme-light .daily-avg-row td:nth-child(1) {
  background: #bbdefb;
}
.theme-light .clear-row td {
  background: #fff;
}
.theme-light .report-row-details {
  width: 200px !important;
  word-break: break-word !important;
}
.theme-light .row-expand-indicator {
  margin-left: -10px;
}
.theme-light .report-row-line-rollup {
  background: white !important;
}
.theme-light .report-row-line-rollup td {
  padding: 4px 8px !important;
  font-size: 10px;
}
.theme-light .report-row-line-rollup td:first-child {
  padding-left: 38px !important;
}
.theme-light nelson-report-row .report-row-line-rollup {
  background: white !important;
}
.theme-dark .theme-light nelson-report-row .report-row-line-rollup.report-row-line-rollup {
  background: #424242 !important;
}
.theme-light nelson-report-row:nth-child(2n-1) .report-row-line-rollup {
  background: white !important;
}
.theme-dark .theme-light nelson-report-row:nth-child(2n-1) .report-row-line-rollup.report-row-line-rollup {
  background: rgba(255, 255, 255, 0.08) !important;
}
.theme-dark .theme-light nelson-report-row:hover .report-row-line-rollup.report-row-line-rollup {
  background: rgba(255, 255, 255, 0.16) !important;
}
.theme-light .report-row-line-rollup-header {
  background: grey;
}
.theme-light .report-row-line-rollup-header .report-row-details {
  font-weight: bold !important;
}
.theme-light .report-table-container {
  padding-top: 6rem;
}
.theme-light .spreadsheet [class^=col-] {
  padding: 0 !important;
}
.theme-light .spreadsheet .sticky-header {
  padding: 0;
}
.theme-light .spreadsheet .sticky-header h4 {
  color: white !important;
  font-size: 1.2rem !important;
  font-weight: normal !important;
}
.theme-light .spreadsheet .sticky-header th {
  padding: 2px !important;
}
.theme-light .spreadsheet .mat-card {
  padding: 0 !important;
  border-radius: 0 !important;
}
.theme-light .spreadsheet .mat-card-title {
  margin-bottom: 0 !important;
  padding: 2px 2px 2px 32px !important;
  background: #666 !important;
}
.theme-light .spreadsheet .mat-card-title .mat-icon-button {
  width: 20px !important;
  height: 20px !important;
  line-height: 20px !important;
}
.theme-light .spreadsheet .mat-card-title .mat-icon-button .mat-icon {
  line-height: 20px !important;
  width: 20px !important;
  height: 20px !important;
  font-size: 20px !important;
  color: white !important;
}
.theme-light .spreadsheet .mat-card-title .mat-form-field {
  font-size: 14px;
}
.theme-light .spreadsheet .mat-card-title .mat-form-field .mat-form-field-wrapper {
  padding-bottom: 0;
}
.theme-light .spreadsheet .mat-card-title .mat-form-field .mat-form-field-infix {
  padding: 0;
  border-top: none;
}
.theme-light .spreadsheet .mat-card-title .mat-form-field .mat-form-field-underline {
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.4);
}
.theme-light .spreadsheet .mat-card-title .mat-form-field .mat-input-element {
  color: white !important;
}
.theme-light .spreadsheet .mat-card-title .mat-form-field .mat-form-field-label {
  top: 10px;
  color: rgba(255, 255, 255, 0.6);
  visibility: visible;
}
.theme-light .spreadsheet .mat-card-title .mat-form-field.mat-focused .mat-form-field-label {
  visibility: hidden;
}
.theme-light .spreadsheet .nada-column-count th {
  line-height: 1 !important;
}
.theme-light .spreadsheet .mat-card-title > div > div > mat-menu {
  display: none !important;
}
.theme-light .spreadsheet .mat-card-title > div > div > h5 {
  color: white !important;
  font-size: 1.2rem !important;
  font-weight: normal !important;
}
.theme-light .spreadsheet .report-table-container {
  padding: 6rem 2rem 2rem;
}
.theme-light .spreadsheet .report-table-container.hot-sheet {
  padding-top: 2rem !important;
}
.theme-light .spreadsheet .report-table > thead > tr > th {
  padding: 2px !important;
  font-weight: normal !important;
}
.theme-light .spreadsheet .report-tag td:first-child {
  width: 30px !important;
  border-right: 1px solid #FBC02D !important;
}
.theme-light .spreadsheet .report-table td {
  padding: 2px !important;
  font-weight: normal !important;
  border: none !important;
}
.theme-light .spreadsheet .report-table td:empty {
  padding: 0 !important;
}
.theme-light .spreadsheet .report-row-details {
  width: 300px !important;
}
.theme-light .spreadsheet .report-table th {
  background: #ddd !important;
  border: 1px solid #bbb !important;
}
.theme-light .spreadsheet .spreadsheet-table td:nth-child(1),
.theme-light .spreadsheet .clear-row td {
  background: #eee !important;
}
.theme-light .spreadsheet .report-table .report-nested-row {
  background: #d2d2d2 !important;
}
.theme-light .spreadsheet .report-table .report-nested-row > td:nth-child(1) {
  padding-left: 20px !important;
  border-left: 2px solid rgba(251, 192, 45, 0.5) !important;
}
.theme-light .spreadsheet .report-table .report-nested-row > td:nth-last-child(1) {
  border-right: 2px solid rgba(251, 192, 45, 0.5) !important;
}
.theme-light .spreadsheet .report-table .report-nested-row.report-nested-row-first > td {
  border-top: 2px solid rgba(251, 192, 45, 0.5) !important;
}
.theme-light .spreadsheet .report-table .report-nested-row.report-nested-row-last > td {
  border-bottom: 2px solid rgba(251, 192, 45, 0.5) !important;
}
.theme-light .spreadsheet .report-row-line-rollup-header {
  background: grey;
}
.theme-light .spreadsheet .report-row-line-rollup-header .report-row-details {
  font-weight: bold !important;
}
.theme-light .spreadsheet .report-row-line-rollup td {
  padding: 2px !important;
  font-size: 10px;
}
.theme-light .spreadsheet .report-row-line-rollup td:first-child {
  padding-left: 20px !important;
}
.theme-light .spreadsheet .report-table-per > td:nth-child(1),
.theme-light .spreadsheet .report-table-count > td:nth-child(1) {
  padding-left: 20px !important;
}
.theme-light .spreadsheet .row-expand-indicator {
  margin-left: 0;
}
.theme-light .spreadsheet .label-block {
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
}
.theme-light .spreadsheet .details-th {
  width: 70px;
}
.theme-light .spreadsheet nelson-rendered-report-schedule .simple-table th,
.theme-light .spreadsheet .nelson-rendered-report-schedule-sticky .simple-table th {
  padding: 2px !important;
  font-weight: normal !important;
}
.theme-light .spreadsheet nelson-rendered-report-schedule .simple-table th:nth-child(1),
.theme-light .spreadsheet .nelson-rendered-report-schedule-sticky .simple-table th:nth-child(1) {
  padding: 2px 2px 2px 6px !important;
}
.theme-light .spreadsheet nelson-rendered-report-schedule .simple-table td,
.theme-light .spreadsheet .nelson-rendered-report-schedule-sticky .simple-table td {
  padding: 2px !important;
  font-weight: normal !important;
  border: none !important;
}
.theme-light .spreadsheet nelson-rendered-report-schedule .simple-table td:nth-child(1),
.theme-light .spreadsheet .nelson-rendered-report-schedule-sticky .simple-table td:nth-child(1) {
  padding: 2px 2px 2px 6px !important;
}
.theme-light .spreadsheet nelson-rendered-report-schedule .simple-table .mat-icon-button,
.theme-light .spreadsheet .nelson-rendered-report-schedule-sticky .simple-table .mat-icon-button {
  height: 24px;
  width: 24px;
  line-height: 24px;
}
.theme-light .flex {
  display: flex;
  flex-wrap: wrap;
}
.theme-light .iflex {
  display: inline-flex;
}
.theme-light .fw-wrap {
  flex-wrap: wrap;
}
.theme-light .fw-nowrap {
  flex-wrap: nowrap;
}
.theme-light .fd-row {
  flex-direction: row;
}
.theme-light .fd-row-rev {
  flex-direction: row-reverse;
}
.theme-light .fd-col {
  flex-direction: column;
}
.theme-light .fd-col-rev {
  flex-direction: column-reverse;
}
.theme-light .ai-stretch {
  align-items: stretch;
}
.theme-light .ai-base {
  align-items: baseline;
}
.theme-light .ai-start {
  align-items: flex-start;
}
.theme-light .ai-end {
  align-items: flex-end;
}
.theme-light .ai-center {
  align-items: center;
}
.theme-light .ac-stretch {
  align-content: stretch;
}
.theme-light .ac-start {
  align-content: flex-start;
}
.theme-light .ac-end {
  align-content: flex-end;
}
.theme-light .ac-center {
  align-content: center;
}
.theme-light .ac-around {
  align-content: space-around;
}
.theme-light .ac-between {
  align-content: space-between;
}
.theme-light .jc-start {
  justify-content: flex-start;
}
.theme-light .jc-end {
  justify-content: flex-end;
}
.theme-light .jc-center {
  justify-content: center;
}
.theme-light .jc-around {
  justify-content: space-around;
}
.theme-light .jc-between {
  justify-content: space-between;
}
.theme-light .jc-evenly {
  justify-content: space-evenly;
}
.theme-light .flex-1 {
  flex: 1;
}
@media (max-width: 1200px) {
  .theme-light .fd-m-col {
    flex-direction: column;
  }
  .theme-light .jc-m-evenly {
    justify-content: space-evenly;
  }
  .theme-light .jc-m-start {
    justify-content: flex-start;
  }
  .theme-light .ai-m-stretch {
    align-items: stretch;
  }
}
@media (max-width: 850px) {
  .theme-light .fw-s-nowrap {
    flex-wrap: nowrap;
  }
  .theme-light .jc-s-start {
    justify-content: flex-start;
  }
  .theme-light .jc-s-between {
    justify-content: space-between;
  }
}
.theme-light .w-full {
  width: 100%;
}
@media (max-width: 850px) {
  .theme-light .w-full-s {
    width: 100%;
  }
}
.theme-light .h-full {
  height: 100%;
}
.theme-light .ta-left {
  text-align: left;
}
.theme-light .ta-center {
  text-align: center;
}
.theme-light .ta-right {
  text-align: right;
}
.theme-light .ta-justify {
  text-align: justify;
}
.theme-light .br-round {
  border-radius: 50%;
}
.theme-light .tt-uppercase {
  text-transform: uppercase;
}
@media (max-width: 450px) {
  .theme-light .hide-xs {
    display: none;
  }
}
@media (max-width: 850px) {
  .theme-light .hide-s {
    display: none;
  }
}
@media (max-width: 1200px) {
  .theme-light .hide-m {
    display: none;
  }
}
.theme-light .show-xs {
  display: none;
}
@media (max-width: 450px) {
  .theme-light .show-xs {
    display: inline-block;
  }
}
.theme-light .show-s {
  display: none;
}
@media (max-width: 850px) {
  .theme-light .show-s {
    display: inline-block;
  }
}
.theme-light .show-m {
  display: none;
}
@media (max-width: 1200px) {
  .theme-light .show-m {
    display: inline-block;
  }
}
.theme-light .columns-1 {
  -moz-columns: 1;
       columns: 1;
}
.theme-light .columns-2 {
  -moz-columns: 2;
       columns: 2;
}
.theme-light .columns-3 {
  -moz-columns: 3;
       columns: 3;
}
.theme-light .columns-4 {
  -moz-columns: 4;
       columns: 4;
}
.theme-light .columns-5 {
  -moz-columns: 5;
       columns: 5;
}
.theme-light .columns-6 {
  -moz-columns: 6;
       columns: 6;
}
.theme-light .columns-7 {
  -moz-columns: 7;
       columns: 7;
}
.theme-light .columns-8 {
  -moz-columns: 8;
       columns: 8;
}
.theme-light .columns-9 {
  -moz-columns: 9;
       columns: 9;
}
.theme-light .columns-10 {
  -moz-columns: 10;
       columns: 10;
}
.theme-light .columns-11 {
  -moz-columns: 11;
       columns: 11;
}
.theme-light .columns-12 {
  -moz-columns: 12;
       columns: 12;
}
@media screen and (max-width: 1200px) {
  .theme-light .columns-m-1 {
    -moz-columns: 1;
         columns: 1;
  }
  .theme-light .columns-m-2 {
    -moz-columns: 2;
         columns: 2;
  }
  .theme-light .columns-m-3 {
    -moz-columns: 3;
         columns: 3;
  }
  .theme-light .columns-m-4 {
    -moz-columns: 4;
         columns: 4;
  }
  .theme-light .columns-m-5 {
    -moz-columns: 5;
         columns: 5;
  }
  .theme-light .columns-m-6 {
    -moz-columns: 6;
         columns: 6;
  }
  .theme-light .columns-m-7 {
    -moz-columns: 7;
         columns: 7;
  }
  .theme-light .columns-m-8 {
    -moz-columns: 8;
         columns: 8;
  }
  .theme-light .columns-m-9 {
    -moz-columns: 9;
         columns: 9;
  }
  .theme-light .columns-m-10 {
    -moz-columns: 10;
         columns: 10;
  }
  .theme-light .columns-m-11 {
    -moz-columns: 11;
         columns: 11;
  }
  .theme-light .columns-m-12 {
    -moz-columns: 12;
         columns: 12;
  }
}
@media screen and (max-width: 850px) {
  .theme-light .columns-s-1 {
    -moz-columns: 1;
         columns: 1;
  }
  .theme-light .columns-s-2 {
    -moz-columns: 2;
         columns: 2;
  }
  .theme-light .columns-s-3 {
    -moz-columns: 3;
         columns: 3;
  }
  .theme-light .columns-s-4 {
    -moz-columns: 4;
         columns: 4;
  }
  .theme-light .columns-s-5 {
    -moz-columns: 5;
         columns: 5;
  }
  .theme-light .columns-s-6 {
    -moz-columns: 6;
         columns: 6;
  }
  .theme-light .columns-s-7 {
    -moz-columns: 7;
         columns: 7;
  }
  .theme-light .columns-s-8 {
    -moz-columns: 8;
         columns: 8;
  }
  .theme-light .columns-s-9 {
    -moz-columns: 9;
         columns: 9;
  }
  .theme-light .columns-s-10 {
    -moz-columns: 10;
         columns: 10;
  }
  .theme-light .columns-s-11 {
    -moz-columns: 11;
         columns: 11;
  }
  .theme-light .columns-s-12 {
    -moz-columns: 12;
         columns: 12;
  }
}
@media screen and (max-width: 450px) {
  .theme-light .columns-xs-1 {
    -moz-columns: 1;
         columns: 1;
  }
  .theme-light .columns-xs-2 {
    -moz-columns: 2;
         columns: 2;
  }
  .theme-light .columns-xs-3 {
    -moz-columns: 3;
         columns: 3;
  }
  .theme-light .columns-xs-4 {
    -moz-columns: 4;
         columns: 4;
  }
  .theme-light .columns-xs-5 {
    -moz-columns: 5;
         columns: 5;
  }
  .theme-light .columns-xs-6 {
    -moz-columns: 6;
         columns: 6;
  }
  .theme-light .columns-xs-7 {
    -moz-columns: 7;
         columns: 7;
  }
  .theme-light .columns-xs-8 {
    -moz-columns: 8;
         columns: 8;
  }
  .theme-light .columns-xs-9 {
    -moz-columns: 9;
         columns: 9;
  }
  .theme-light .columns-xs-10 {
    -moz-columns: 10;
         columns: 10;
  }
  .theme-light .columns-xs-11 {
    -moz-columns: 11;
         columns: 11;
  }
  .theme-light .columns-xs-12 {
    -moz-columns: 12;
         columns: 12;
  }
}
.theme-light .p-a-0 {
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}
.theme-light .p-a-xxs {
  padding: 2px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-a-xxs {
    padding: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-a-xxs {
    padding: 4px;
  }
}
.theme-light .p-a-xs {
  padding: 5px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-a-xs {
    padding: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-a-xs {
    padding: 10px;
  }
}
.theme-light .p-a-s {
  padding: 10px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-a-s {
    padding: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-a-s {
    padding: 20px;
  }
}
.theme-light .p-a-m {
  padding: 20px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-a-m {
    padding: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-a-m {
    padding: 40px;
  }
}
.theme-light .p-a-l {
  padding: 40px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-a-l {
    padding: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-a-l {
    padding: 80px;
  }
}
.theme-light .p-a-xl {
  padding: 80px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-a-xl {
    padding: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-a-xl {
    padding: 160px;
  }
}
.theme-light .p-x-xxs {
  padding-left: 2px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-x-xxs {
    padding-left: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-x-xxs {
    padding-left: 4px;
  }
}
.theme-light .p-x-xxs {
  padding-right: 2px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-x-xxs {
    padding-right: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-x-xxs {
    padding-right: 4px;
  }
}
.theme-light .p-x-xs {
  padding-left: 5px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-x-xs {
    padding-left: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-x-xs {
    padding-left: 10px;
  }
}
.theme-light .p-x-xs {
  padding-right: 5px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-x-xs {
    padding-right: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-x-xs {
    padding-right: 10px;
  }
}
.theme-light .p-x-s {
  padding-left: 10px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-x-s {
    padding-left: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-x-s {
    padding-left: 20px;
  }
}
.theme-light .p-x-s {
  padding-right: 10px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-x-s {
    padding-right: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-x-s {
    padding-right: 20px;
  }
}
.theme-light .p-x-m {
  padding-left: 20px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-x-m {
    padding-left: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-x-m {
    padding-left: 40px;
  }
}
.theme-light .p-x-m {
  padding-right: 20px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-x-m {
    padding-right: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-x-m {
    padding-right: 40px;
  }
}
.theme-light .p-x-l {
  padding-left: 40px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-x-l {
    padding-left: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-x-l {
    padding-left: 80px;
  }
}
.theme-light .p-x-l {
  padding-right: 40px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-x-l {
    padding-right: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-x-l {
    padding-right: 80px;
  }
}
.theme-light .p-x-xl {
  padding-left: 80px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-x-xl {
    padding-left: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-x-xl {
    padding-left: 160px;
  }
}
.theme-light .p-x-xl {
  padding-right: 80px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-x-xl {
    padding-right: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-x-xl {
    padding-right: 160px;
  }
}
.theme-light .p-y-xxs {
  padding-top: 2px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-y-xxs {
    padding-top: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-y-xxs {
    padding-top: 4px;
  }
}
.theme-light .p-y-xxs {
  padding-bottom: 2px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-y-xxs {
    padding-bottom: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-y-xxs {
    padding-bottom: 4px;
  }
}
.theme-light .p-y-xs {
  padding-top: 5px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-y-xs {
    padding-top: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-y-xs {
    padding-top: 10px;
  }
}
.theme-light .p-y-xs {
  padding-bottom: 5px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-y-xs {
    padding-bottom: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-y-xs {
    padding-bottom: 10px;
  }
}
.theme-light .p-y-s {
  padding-top: 10px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-y-s {
    padding-top: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-y-s {
    padding-top: 20px;
  }
}
.theme-light .p-y-s {
  padding-bottom: 10px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-y-s {
    padding-bottom: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-y-s {
    padding-bottom: 20px;
  }
}
.theme-light .p-y-m {
  padding-top: 20px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-y-m {
    padding-top: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-y-m {
    padding-top: 40px;
  }
}
.theme-light .p-y-m {
  padding-bottom: 20px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-y-m {
    padding-bottom: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-y-m {
    padding-bottom: 40px;
  }
}
.theme-light .p-y-l {
  padding-top: 40px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-y-l {
    padding-top: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-y-l {
    padding-top: 80px;
  }
}
.theme-light .p-y-l {
  padding-bottom: 40px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-y-l {
    padding-bottom: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-y-l {
    padding-bottom: 80px;
  }
}
.theme-light .p-y-xl {
  padding-top: 80px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-y-xl {
    padding-top: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-y-xl {
    padding-top: 160px;
  }
}
.theme-light .p-y-xl {
  padding-bottom: 80px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-y-xl {
    padding-bottom: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-y-xl {
    padding-bottom: 160px;
  }
}
.theme-light .p-t-xxs {
  padding-top: 2px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-t-xxs {
    padding-top: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-t-xxs {
    padding-top: 4px;
  }
}
.theme-light .p-t-xs {
  padding-top: 5px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-t-xs {
    padding-top: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-t-xs {
    padding-top: 10px;
  }
}
.theme-light .p-t-s {
  padding-top: 10px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-t-s {
    padding-top: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-t-s {
    padding-top: 20px;
  }
}
.theme-light .p-t-m {
  padding-top: 20px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-t-m {
    padding-top: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-t-m {
    padding-top: 40px;
  }
}
.theme-light .p-t-l {
  padding-top: 40px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-t-l {
    padding-top: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-t-l {
    padding-top: 80px;
  }
}
.theme-light .p-t-xl {
  padding-top: 80px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-t-xl {
    padding-top: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-t-xl {
    padding-top: 160px;
  }
}
.theme-light .p-r-xxs {
  padding-right: 2px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-r-xxs {
    padding-right: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-r-xxs {
    padding-right: 4px;
  }
}
.theme-light .p-r-xs {
  padding-right: 5px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-r-xs {
    padding-right: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-r-xs {
    padding-right: 10px;
  }
}
.theme-light .p-r-s {
  padding-right: 10px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-r-s {
    padding-right: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-r-s {
    padding-right: 20px;
  }
}
.theme-light .p-r-m {
  padding-right: 20px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-r-m {
    padding-right: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-r-m {
    padding-right: 40px;
  }
}
.theme-light .p-r-l {
  padding-right: 40px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-r-l {
    padding-right: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-r-l {
    padding-right: 80px;
  }
}
.theme-light .p-r-xl {
  padding-right: 80px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-r-xl {
    padding-right: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-r-xl {
    padding-right: 160px;
  }
}
.theme-light .p-b-0 {
  padding-bottom: 0;
}
.theme-light .p-b-xxs {
  padding-bottom: 2px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-b-xxs {
    padding-bottom: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-b-xxs {
    padding-bottom: 4px;
  }
}
.theme-light .p-b-xs {
  padding-bottom: 5px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-b-xs {
    padding-bottom: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-b-xs {
    padding-bottom: 10px;
  }
}
.theme-light .p-b-s {
  padding-bottom: 10px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-b-s {
    padding-bottom: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-b-s {
    padding-bottom: 20px;
  }
}
.theme-light .p-b-m {
  padding-bottom: 20px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-b-m {
    padding-bottom: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-b-m {
    padding-bottom: 40px;
  }
}
.theme-light .p-b-l {
  padding-bottom: 40px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-b-l {
    padding-bottom: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-b-l {
    padding-bottom: 80px;
  }
}
.theme-light .p-b-xl {
  padding-bottom: 80px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-b-xl {
    padding-bottom: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-b-xl {
    padding-bottom: 160px;
  }
}
.theme-light .p-l-xxs {
  padding-left: 2px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-l-xxs {
    padding-left: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-l-xxs {
    padding-left: 4px;
  }
}
.theme-light .p-l-xs {
  padding-left: 5px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-l-xs {
    padding-left: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-l-xs {
    padding-left: 10px;
  }
}
.theme-light .p-l-s {
  padding-left: 10px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-l-s {
    padding-left: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-l-s {
    padding-left: 20px;
  }
}
.theme-light .p-l-m {
  padding-left: 20px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-l-m {
    padding-left: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-l-m {
    padding-left: 40px;
  }
}
.theme-light .p-l-l {
  padding-left: 40px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-l-l {
    padding-left: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-l-l {
    padding-left: 80px;
  }
}
.theme-light .p-l-xl {
  padding-left: 80px;
}
@media screen and (min-width: 600px) {
  .theme-light .p-l-xl {
    padding-left: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .p-l-xl {
    padding-left: 160px;
  }
}
.theme-light .m-a-0 {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}
.theme-light .m-a-xxs {
  margin: 2px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-a-xxs {
    margin: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-a-xxs {
    margin: 4px;
  }
}
.theme-light .m-a-xs {
  margin: 5px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-a-xs {
    margin: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-a-xs {
    margin: 10px;
  }
}
.theme-light .m-a-s {
  margin: 10px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-a-s {
    margin: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-a-s {
    margin: 20px;
  }
}
.theme-light .m-a-m {
  margin: 20px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-a-m {
    margin: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-a-m {
    margin: 40px;
  }
}
.theme-light .m-a-l {
  margin: 40px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-a-l {
    margin: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-a-l {
    margin: 80px;
  }
}
.theme-light .m-a-xl {
  margin: 80px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-a-xl {
    margin: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-a-xl {
    margin: 160px;
  }
}
.theme-light .m-x-xxs {
  margin-left: 2px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-x-xxs {
    margin-left: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-x-xxs {
    margin-left: 4px;
  }
}
.theme-light .m-x-xxs {
  margin-right: 2px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-x-xxs {
    margin-right: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-x-xxs {
    margin-right: 4px;
  }
}
.theme-light .m-x-xs {
  margin-left: 5px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-x-xs {
    margin-left: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-x-xs {
    margin-left: 10px;
  }
}
.theme-light .m-x-xs {
  margin-right: 5px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-x-xs {
    margin-right: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-x-xs {
    margin-right: 10px;
  }
}
.theme-light .m-x-s {
  margin-left: 10px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-x-s {
    margin-left: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-x-s {
    margin-left: 20px;
  }
}
.theme-light .m-x-s {
  margin-right: 10px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-x-s {
    margin-right: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-x-s {
    margin-right: 20px;
  }
}
.theme-light .m-x-m {
  margin-left: 20px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-x-m {
    margin-left: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-x-m {
    margin-left: 40px;
  }
}
.theme-light .m-x-m {
  margin-right: 20px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-x-m {
    margin-right: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-x-m {
    margin-right: 40px;
  }
}
.theme-light .m-x-l {
  margin-left: 40px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-x-l {
    margin-left: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-x-l {
    margin-left: 80px;
  }
}
.theme-light .m-x-l {
  margin-right: 40px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-x-l {
    margin-right: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-x-l {
    margin-right: 80px;
  }
}
.theme-light .m-x-xl {
  margin-left: 80px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-x-xl {
    margin-left: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-x-xl {
    margin-left: 160px;
  }
}
.theme-light .m-x-xl {
  margin-right: 80px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-x-xl {
    margin-right: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-x-xl {
    margin-right: 160px;
  }
}
.theme-light .m-y-xxs {
  margin-top: 2px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-y-xxs {
    margin-top: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-y-xxs {
    margin-top: 4px;
  }
}
.theme-light .m-y-xxs {
  margin-bottom: 2px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-y-xxs {
    margin-bottom: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-y-xxs {
    margin-bottom: 4px;
  }
}
.theme-light .m-y-xs {
  margin-top: 5px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-y-xs {
    margin-top: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-y-xs {
    margin-top: 10px;
  }
}
.theme-light .m-y-xs {
  margin-bottom: 5px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-y-xs {
    margin-bottom: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-y-xs {
    margin-bottom: 10px;
  }
}
.theme-light .m-y-s {
  margin-top: 10px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-y-s {
    margin-top: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-y-s {
    margin-top: 20px;
  }
}
.theme-light .m-y-s {
  margin-bottom: 10px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-y-s {
    margin-bottom: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-y-s {
    margin-bottom: 20px;
  }
}
.theme-light .m-y-m {
  margin-top: 20px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-y-m {
    margin-top: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-y-m {
    margin-top: 40px;
  }
}
.theme-light .m-y-m {
  margin-bottom: 20px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-y-m {
    margin-bottom: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-y-m {
    margin-bottom: 40px;
  }
}
.theme-light .m-y-l {
  margin-top: 40px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-y-l {
    margin-top: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-y-l {
    margin-top: 80px;
  }
}
.theme-light .m-y-l {
  margin-bottom: 40px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-y-l {
    margin-bottom: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-y-l {
    margin-bottom: 80px;
  }
}
.theme-light .m-y-xl {
  margin-top: 80px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-y-xl {
    margin-top: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-y-xl {
    margin-top: 160px;
  }
}
.theme-light .m-y-xl {
  margin-bottom: 80px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-y-xl {
    margin-bottom: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-y-xl {
    margin-bottom: 160px;
  }
}
.theme-light .m-t-xxs {
  margin-top: 2px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-t-xxs {
    margin-top: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-t-xxs {
    margin-top: 4px;
  }
}
.theme-light .m-t-xs {
  margin-top: 5px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-t-xs {
    margin-top: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-t-xs {
    margin-top: 10px;
  }
}
.theme-light .m-t-s {
  margin-top: 10px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-t-s {
    margin-top: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-t-s {
    margin-top: 20px;
  }
}
.theme-light .m-t-m {
  margin-top: 20px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-t-m {
    margin-top: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-t-m {
    margin-top: 40px;
  }
}
.theme-light .m-t-l {
  margin-top: 40px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-t-l {
    margin-top: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-t-l {
    margin-top: 80px;
  }
}
.theme-light .m-t-xl {
  margin-top: 80px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-t-xl {
    margin-top: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-t-xl {
    margin-top: 160px;
  }
}
.theme-light .m-r-xxs {
  margin-right: 2px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-r-xxs {
    margin-right: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-r-xxs {
    margin-right: 4px;
  }
}
.theme-light .m-r-xs {
  margin-right: 5px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-r-xs {
    margin-right: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-r-xs {
    margin-right: 10px;
  }
}
.theme-light .m-r-s {
  margin-right: 10px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-r-s {
    margin-right: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-r-s {
    margin-right: 20px;
  }
}
.theme-light .m-r-m {
  margin-right: 20px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-r-m {
    margin-right: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-r-m {
    margin-right: 40px;
  }
}
.theme-light .m-r-l {
  margin-right: 40px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-r-l {
    margin-right: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-r-l {
    margin-right: 80px;
  }
}
.theme-light .m-r-xl {
  margin-right: 80px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-r-xl {
    margin-right: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-r-xl {
    margin-right: 160px;
  }
}
.theme-light .m-b-xxs {
  margin-bottom: 2px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-b-xxs {
    margin-bottom: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-b-xxs {
    margin-bottom: 4px;
  }
}
.theme-light .m-b-xs {
  margin-bottom: 5px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-b-xs {
    margin-bottom: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-b-xs {
    margin-bottom: 10px;
  }
}
.theme-light .m-b-s {
  margin-bottom: 10px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-b-s {
    margin-bottom: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-b-s {
    margin-bottom: 20px;
  }
}
.theme-light .m-b-m {
  margin-bottom: 20px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-b-m {
    margin-bottom: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-b-m {
    margin-bottom: 40px;
  }
}
.theme-light .m-b-l {
  margin-bottom: 40px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-b-l {
    margin-bottom: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-b-l {
    margin-bottom: 80px;
  }
}
.theme-light .m-b-xl {
  margin-bottom: 80px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-b-xl {
    margin-bottom: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-b-xl {
    margin-bottom: 160px;
  }
}
.theme-light .m-l-xxs {
  margin-left: 2px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-l-xxs {
    margin-left: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-l-xxs {
    margin-left: 4px;
  }
}
.theme-light .m-l-xs {
  margin-left: 5px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-l-xs {
    margin-left: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-l-xs {
    margin-left: 10px;
  }
}
.theme-light .m-l-s {
  margin-left: 10px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-l-s {
    margin-left: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-l-s {
    margin-left: 20px;
  }
}
.theme-light .m-l-m {
  margin-left: 20px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-l-m {
    margin-left: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-l-m {
    margin-left: 40px;
  }
}
.theme-light .m-l-l {
  margin-left: 40px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-l-l {
    margin-left: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-l-l {
    margin-left: 80px;
  }
}
.theme-light .m-l-xl {
  margin-left: 80px;
}
@media screen and (min-width: 600px) {
  .theme-light .m-l-xl {
    margin-left: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-light .m-l-xl {
    margin-left: 160px;
  }
}
.theme-light .hover-parent .when-hovered {
  opacity: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transition: opacity 0.3s;
}
.theme-light .hover-parent:hover .when-hovered {
  opacity: 1;
  -webkit-user-select: auto;
     -moz-user-select: auto;
      -ms-user-select: auto;
          user-select: auto;
}
.theme-light .no-transition {
  transition: none !important;
}
.theme-light .no-transition * {
  transition: none !important;
}
.theme-light .inline-block {
  display: inline-block;
}
.theme-light .ws-nowrap {
  white-space: nowrap;
}
.theme-light .bg-intro {
  background-image: url("/assets/intro/intro-bg.svg");
  background-size: cover;
  background-repeat: repeat-x;
  background-position: bottom;
}
.theme-light .relative {
  position: relative;
}
.theme-light .absolute {
  position: absolute;
}
.theme-light .fixed {
  position: fixed;
}
.theme-light .c-primary {
  color: #FBC02D !important;
}
.theme-light .c-accent {
  color: #66BB6A !important;
}
.theme-light .c-warn {
  color: #F44336 !important;
}
.theme-light .c-success {
  color: #66bb6a !important;
}
.theme-light .c-white {
  color: white !important;
}
.theme-light .c-red {
  color: #f44336 !important;
}
.theme-light .c-black {
  color: black !important;
}
.theme-light .bg-primary {
  background-color: #FBC02D !important;
}
.theme-light .bg-accent {
  background-color: #66BB6A !important;
}
.theme-light .bg-warn {
  background-color: #F44336 !important;
}
.theme-light .bg-success {
  background-color: #66bb6a !important;
}
.theme-light .bg-white {
  background-color: white !important;
}
.theme-light .bg-dark {
  background-color: #303a48;
}
.theme-light .bg-light {
  background-color: #e9ebec;
}
.theme-light .bg-primary-transparentize {
  background-color: rgba(251, 192, 45, 0.1);
}
.theme-light .bg-acent-transparentize {
  background-color: rgba(102, 187, 106, 0.1);
}
.theme-light .bg-warn-transparentize {
  background-color: rgba(244, 67, 54, 0.1);
}
.theme-light .border-primary {
  border: 2px solid #FBC02D !important;
}
.theme-light .border-accent {
  border: 2px solid #66BB6A !important;
}
.theme-light .border-warn {
  border: 2px solid #F44336 !important;
}
.theme-light .border-success {
  border: 2px solid #66bb6a !important;
}
.theme-light .op-50 {
  opacity: 0.5;
}
.theme-light .min-h-full {
  min-height: 100vh;
}
.theme-light .fs-10 {
  font-size: 1rem;
}
.theme-light .fs-xs {
  font-size: x-small;
}
.theme-light .fs-s {
  font-size: small;
}
.theme-light .fs-10 {
  font-size: 10px !important;
}
.theme-light .fs-12 {
  font-size: 12px !important;
}
.theme-light .fs-14 {
  font-size: 14px !important;
}
.theme-light .fs-15 {
  font-size: 15px !important;
}
.theme-light .fs-18 {
  font-size: 18px !important;
}
.theme-light .fs-20 {
  font-size: 20px !important;
}
.theme-light .fs-35 {
  font-size: 35px !important;
}
.theme-light .wb-all {
  word-break: break-all;
}
.theme-light .capitalize {
  text-transform: capitalize;
}
.theme-light .lowercase {
  text-transform: lowercase;
}
.theme-light .us-none {
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
.theme-light .box-shadow {
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.theme-light .disabled {
  opacity: 0.5;
  pointer-events: none;
}
.theme-light .read-only {
  pointer-events: none;
}
.theme-light .of-x-auto {
  overflow-x: auto;
}
.theme-light .of-x-hidden {
  overflow-x: hidden;
}
.theme-light .of-hidden {
  overflow: hidden;
}
.theme-light .of-y-auto {
  overflow-y: auto;
}
.theme-light .of-y-hidden {
  overflow-y: hidden;
}
.theme-light .hidden {
  opacity: 0;
  visibility: hidden;
}
.theme-light .pointer {
  cursor: pointer;
}
.theme-light .cursor-drag {
  cursor: -webkit-grab;
  cursor: grab;
}
.theme-light .cursor-move {
  cursor: move;
}
.theme-light .p-tabs {
  padding: 6rem 0 2rem;
}
@media (max-width: 768px) {
  .theme-light .p-tabs {
    padding-top: 8rem;
  }
}
.theme-light .p-tabs-small {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}
@media (max-width: 768px) {
  .theme-light .p-tabs-small {
    padding-top: 5rem;
  }
}
.theme-light .active-scorecard {
  outline: 0.3rem solid #FBC02D;
}
.theme-light .scorecard-label {
  font-size: 1.2rem;
  margin-bottom: -0.6rem;
}
.theme-light .ls-1 {
  letter-spacing: -1px;
}
.theme-light .mat-bar {
  height: 64px;
}
.theme-light .mat-bar-m {
  height: 128px;
}
.theme-light .mat-bar-l {
  height: 192px;
}
.theme-light .mat-bar-xl {
  height: 256px;
}
.theme-light .gm-target td {
  font-size: 1.4rem;
}
.theme-light .gm-target td:nth-last-child(1) {
  text-align: right;
}
.theme-light .dept-target td {
  font-size: 1.1rem;
  padding: 0.8rem;
}
.theme-light .dept-target td:nth-child(1) {
  padding: 0.2rem 0.2rem 0.2rem 2.4rem;
}
.theme-light .dept-target td:nth-last-child(1) {
  padding: 0.8rem 2.4rem 0.8rem 0.8rem;
}
.theme-light .dept-target td:nth-last-child(1) {
  text-align: right;
}
.theme-light button.loading {
  pointer-events: none;
  position: relative;
  border: none;
  color: transparent;
}
.theme-light button.loading span, .theme-light button.loading svg, .theme-light button.loading img {
  opacity: 0;
}
.theme-light button.loading:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 1.8rem;
  width: 1.8rem;
  border-radius: 50%;
  border-width: 0.2rem;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.9) rgba(0, 0, 0, 0.9) transparent transparent;
  -webkit-animation: loading-animation 0.75s linear infinite;
          animation: loading-animation 0.75s linear infinite;
}
@keyframes loading-animation {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@media (max-width: 768px) {
  .theme-light .small-font-on-mobile {
    font-size: 10px;
  }
}
.theme-light .ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.theme-light .vertical-line {
  top: 0;
  height: 100%;
  border-left: 1px solid #FBC02D;
}
.theme-light .docs-tooltip-icon {
  position: absolute;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.theme-light .api-icon {
  height: 2rem;
  color: #FBC02D;
}
.theme-light .dot {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
}
.theme-light .high-panel {
  font-size: 12px !important;
}
.theme-light .high-panel .mat-optgroup-label,
.theme-light .high-panel .mat-option {
  line-height: 20px !important;
  height: 20px !important;
}
.theme-light .warning-card {
  color: white;
  background: #f44336;
  padding: 1rem;
}
.theme-light .theme-dark .spreadsheet .report-table.report-table th {
  background: #424242 !important;
}
.theme-light .theme-dark .c-black.c-black {
  color: white !important;
}
.theme-light .theme-dark.theme-dark .spreadsheet .spreadsheet-table td:nth-child(1),
.theme-light .theme-dark.theme-dark .spreadsheet .clear-row td {
  background: transparent !important;
}
.theme-light .theme-dark .daily-avg-row td {
  background: #081849 !important;
}
.theme-light .theme-dark .year-row td {
  background: #55745e !important;
}
.theme-light .theme-dark .board-card, .theme-light .theme-dark .board-card-header, .theme-light .theme-dark .chat-bar-header {
  background: #424242 !important;
}
.theme-light .theme-dark .board-card-task, .theme-light .theme-dark .chat-bar-content-wrapper, .theme-light .theme-dark small {
  background: #636363 !important;
}
.theme-light .theme-dark .vertical-text {
  color: white;
}
.theme-light .sticky-header {
  background: white !important;
}
.theme-light .fc-unthemed td.fc-today {
  background: #eee;
}
.theme-light .fc-basicDay-button:not(.fc-state-active),
.theme-light .fc-basicWeek-button:not(.fc-state-active),
.theme-light .fc-basicMonth-button:not(.fc-state-active),
.theme-light .fc-next-button,
.theme-light .fc-prev-button,
.theme-light .fc-today-button {
  color: rgba(0, 0, 0, 0.9);
}
.theme-light nelson-tag-input {
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: white;
}
.theme-light nelson-tag-input .chip-wrapper {
  border: 1px solid rgba(0, 0, 0, 0.2) !important;
  background: #f5f5f5 !important;
}
.theme-light nelson-tag-input .chip-input {
  color: rgba(0, 0, 0, 0.9) !important;
}
.theme-light nelson-tag-input ul {
  background-color: #f5f5f5 !important;
  color: rgba(0, 0, 0, 0.9) !important;
}
.theme-light nelson-tag-input ul li:hover, .theme-light nelson-tag-input ul li.active {
  background: #eee !important;
}
.theme-light .c3-tooltip {
  color: black;
}
.theme-light .tick line, .theme-light .domain {
  stroke: rgba(0, 0, 0, 0.9) !important;
}
.theme-light nelson-chart-wrapper {
  fill: rgba(0, 0, 0, 0.9) !important;
}
.theme-light nelson-navbar .mat-select-value {
  color: rgba(255, 255, 255, 0.9);
}
.theme-light nelson-navbar .mat-select-arrow {
  color: rgba(255, 255, 255, 0.6);
}
.theme-light nelson-navbar .mat-form-field-appearance-legacy .mat-form-field-underline {
  background-color: rgba(255, 255, 255, 0.6);
}
.theme-light nelson-navbar .mat-form-field-ripple {
  border-color: rgba(255, 255, 255, 0.6);
}
.theme-light nelson-navbar .mat-form-field-appearance-legacy .mat-form-field-label {
  color: rgba(255, 255, 255, 0.6);
}
.theme-light nelson-navbar .mat-select-disabled .mat-select-value {
  color: rgba(204, 204, 204, 0.6);
}
.theme-light nelson-navbar .mat-form-field .mat-select.mat-select-disabled .mat-select-arrow {
  color: rgba(204, 204, 204, 0.6);
}
.theme-light nelson-navbar .mat-button-toggle-appearance-standard {
  color: rgba(204, 204, 204, 0.6) !important;
}
.theme-light .cdk-overlay-pane {
  max-width: calc(100vw - 200px) !important;
}
@media (max-width: 1200px) {
  .theme-light .cdk-overlay-pane {
    margin-left: 0;
    max-width: 90vw !important;
  }
}
.theme-light .layout-compact-body .cdk-overlay-pane {
  max-width: 90vw !important;
  margin-left: 0 !important;
}
@media (max-width: 599px) {
  .theme-light .cdk-overlay-pane {
    max-width: 100vw !important;
  }
}
@media (max-width: 599px) {
  .theme-light .mat-tab-link {
    min-width: 80px;
  }
}
.theme-light .mat-form-field.mat-focused .mat-form-field-ripple {
  background: #FBC02D !important;
}
.theme-light .mat-primary .mat-pseudo-checkbox-checked {
  background: #FBC02D !important;
}
.theme-light .mat-button-toggle-group,
.theme-light .mat-button-toggle-standalone {
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12) !important;
}
.theme-light .mat-button-toggle-group-appearance-standard {
  border: none !important;
}
.theme-light .mat-button-toggle-appearance-standard {
  background: transparent !important;
  color: rgba(0, 0, 0, 0.6) !important;
}
.theme-light .mat-button-toggle-appearance-standard.mat-button-toggle-checked {
  background-color: #e0e0e0 !important;
  color: rgba(0, 0, 0, 0.9) !important;
}
.theme-light .mat-button-toggle-appearance-standard .mat-button-toggle-label-content {
  line-height: 36px !important;
}
.theme-light .mat-icon-button:hover {
  color: #FBC02D !important;
}
.theme-light .mat-input-small .mat-form-field-infix {
  width: 80px !important;
}
.theme-light .fab-fixed {
  position: fixed !important;
  bottom: 2rem;
  right: 2rem;
}
.theme-light .no-box-shadow .mat-expansion-panel {
  box-shadow: none !important;
}
.theme-light .mat-option.mat-active span {
  color: rgba(0, 0, 0, 0.87);
}
.theme-light .mat-form-field.mat-focused .mat-form-field-label {
  color: gray !important;
}
.theme-light .mat-input-element {
  color: rgba(0, 0, 0, 0.9) !important;
}
.theme-light mat-form-field.c-white .mat-input-element {
  color: white !important;
}
.theme-light .mat-dialog-container {
  max-height: 100vh !important;
}
.theme-light .bg-dark-gray .mat-dialog-container {
  background: #303a48 !important;
}
.theme-light .mat-tab-header-pagination {
  z-index: 1 !important;
}
.theme-light .mat-tab-links {
  background: white !important;
}
.theme-light .mat-tab-links i.material-icons {
  color: rgba(0, 0, 0, 0.6) !important;
}
.theme-light .select-trigger {
  color: rgba(0, 0, 0, 0.9) !important;
  border-bottom-color: rgba(0, 0, 0, 0.2) !important;
}
.theme-light .select-dropdown {
  background: white !important;
}
.theme-light .select-dropdown-item {
  color: rgba(0, 0, 0, 0.9) !important;
}
.theme-light .select-dropdown-item:hover {
  background: #eee !important;
}
.theme-light .file-upload {
  border-bottom-color: rgba(0, 0, 0, 0.2) !important;
}
.theme-light .auth0-lock-cred-pane :nth-child(3) > span {
  width: 100%;
}
.theme-light .auth0-lock-social-button-icon {
  background-size: 100% !important;
}
.theme-light .auth0-lock.auth0-lock .auth0-lock-content {
  padding: 40px !important;
}
.theme-light .auth0-lock.auth0-lock .auth0-lock-social-button {
  border: 1px solid #f1f1f1 !important;
  transition: 0.2s;
  padding: 2px;
  box-sizing: border-box;
  background-color: #4285F4 !important;
}
.theme-light .auth0-lock.auth0-lock .auth0-lock-social-button-icon {
  float: left !important;
  display: inline-block !important;
  width: 36px !important;
  height: 36px !important;
  background-color: white !important;
  top: 1px !important;
  left: 1px !important;
  border-radius: 1px !important;
}
.theme-light .auth0-lock.auth0-lock .auth0-lock-social-button.auth0-lock-social-big-button .auth0-lock-social-button-text {
  padding-left: 52px;
  text-transform: unset !important;
  font-family: Roboto, sans-serif;
  line-height: 35px !important;
  color: white !important;
  font-weight: 600 !important;
  font-size: 14px !important;
}
.theme-light .ngx-datatable.material {
  background: white !important;
}
.theme-light .datatable-header-cell {
  color: rgba(0, 0, 0, 0.9) !important;
  background: white !important;
}
.theme-light .datatable-body-cell,
.theme-light .datatable-footer,
.theme-light .datatable-pager a {
  color: rgba(0, 0, 0, 0.6) !important;
}
.theme-light .datatable-body-row:hover,
.theme-light .datatable-body-row:hover .datatable-row-group {
  background: #eee !important;
}
.theme-light .datatable-header {
  display: flex !important;
  align-items: center;
}
.theme-light .datatable-header .resize-handle {
  border-right-color: #eee !important;
}
.theme-light .datatable-body-cell,
.theme-light .datatable-header-cell {
  display: inline-flex !important;
  align-items: center;
}
.theme-light .datatable-body-cell {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.theme-light .datatable-row-detail,
.theme-light .datatable-row-left {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  background: white !important;
  color: rgba(0, 0, 0, 0.6) !important;
}
.theme-light .details-overflow .datatable-row-detail {
  overflow-y: auto !important;
}
.theme-light .ngx-datatable .mat-form-field-label-wrapper {
  box-sizing: content-box;
}
.theme-light .empty-row {
  color: rgba(0, 0, 0, 0.6) !important;
}
.theme-light .noUi-horizontal {
  height: 6px;
}
.theme-light .noUi-tooltip {
  opacity: 0;
  transition: 0.2s;
}
.theme-light .noUi-horizontal .noUi-handle {
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  transform: translateX(-50%) translateY(-40%);
}
.theme-light .noUi-horizontal .noUi-handle:after, .theme-light .noUi-horizontal .noUi-handle:before {
  display: none;
}
.theme-light .noUi-horizontal .noUi-handle:hover .noUi-tooltip, .theme-light .noUi-horizontal .noUi-handle.noUi-active .noUi-tooltip {
  opacity: 1;
}
.theme-light .noUi-connect {
  background: #FBC02D;
}
.theme-light .noUi-wrapper {
  padding-bottom: 40px;
}
.theme-light .noUi-marker-horizontal.noUi-marker-large {
  top: 10px;
  height: 8px;
}
.theme-light .header-slider .noUi-horizontal .noUi-tooltip {
  bottom: -270%;
}
.theme-light .ngx-datatable .datatable-body .datatable-row-wrapper:hover {
  z-index: 1;
}
.theme-light .jsoneditor-poweredBy {
  display: none;
}
.theme-light .swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.theme-light .swiper-button-next, .theme-light .swiper-button-prev {
  background-image: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.75);
}
.theme-light .swiper-button-next svg, .theme-light .swiper-button-prev svg {
  width: 30px;
}
@media (max-width: 768px) {
  .theme-light .mat-button-toggle-button, .theme-light .mat-button-toggle-label-content {
    width: 100% !important;
  }
  .theme-light .mat-tab-link {
    font-size: 10px;
  }
}
.theme-light .report-tag td:first-child {
  border-right: 2px solid #FBC02D;
}
@media (max-width: 600px) {
  .theme-light .c3-axis.c3-axis-x tspan:not(:nth-child(1)) {
    display: none;
  }
}
.theme-light #mce-modal-block {
  z-index: 63000 !important;
}
.theme-light .cdk-overlay-container {
  z-index: 63001 !important;
}
.theme-light .pre {
  margin: 0;
}
.theme-light .language-markup {
  color: white;
}
.theme-light .language-markup .token {
  color: white;
}
.theme-light .tooltip-font-12 {
  font-size: 12px !important;
}
@page {
  .theme-light {
    size: a4;
    margin: 10px;
  }
}
.theme-light .show-print {
  display: none;
}
@media print {
  .theme-light .show-print {
    display: block;
  }
}
@media print {
  .theme-light .hide-print {
    display: none;
  }
  .theme-light .cdk-overlay-container {
    position: static !important;
  }
  .theme-light .cdk-overlay-connected-position-bounding-box {
    display: none !important;
  }
  .theme-light .cdk-overlay-backdrop {
    display: none !important;
  }
  .theme-light .cdk-global-overlay-wrapper {
    position: static !important;
  }
  .theme-light .cdk-overlay-pane {
    max-width: unset !important;
  }
  .theme-light .cdk-global-scrollblock {
    position: static !important;
    overflow-y: visible !important;
  }
  .theme-light .mat-dialog-container {
    box-shadow: unset !important;
    padding: 10px !important;
    overflow: visible !important;
  }
  .theme-light .p-tabs {
    padding: 0;
  }
  .theme-light .active-scorecard {
    outline: none;
  }
  .theme-light .scorecards h1, .theme-light .scorecards h2, .theme-light .scorecards h3, .theme-light .scorecards h4, .theme-light .scorecards h5, .theme-light .scorecards h6 {
    font-size: 14px;
  }
  .theme-light .scorecards p {
    font-size: 11px;
  }
  .theme-light .docs-tooltip-icon {
    display: none;
  }
  .theme-light .print-modal-header {
    display: none;
  }
  .theme-light .print-modal-subheader {
    display: none;
  }
  .theme-light .print-modal-body {
    max-height: unset !important;
    padding-top: unset !important;
    overflow: visible !important;
  }
  .theme-light .db-main {
    left: 0;
    top: 0;
    width: 100%;
    height: unset !important;
    min-height: unset !important;
    background: unset !important;
  }
}
.theme-nada {
  /*
   * Box sizing
   */
  /*
   * Page setup
   */
  /*
   * Custom scrollbar
   */
  /*
   * Dashboard sidebar
   */
  /*
   * Dashboard header
   */
  /*
   * Dashboard main
   */
  /*
   * Dashboard tabs
   */
  /*
   * Dashboard tabs
   */
  /*
   * Loading toast
   */
  /*
   * Compact navigation style
   */
  /*
   * Simple sidebar
   */
  /*
   * Layout responsive style
   */
  /*
   * Simple table
   */
  /*
   * No style table
   */
  /*
   * Print table
   */
  /*
   * Flex
   */
  /*
   * Width
   */
  /*
   * Height
   */
  /*
   * Text align
   */
  /*
   * Border-radius
   */
  /*
   * Text transform
   */
  /*
   * Hide & show
   */
  /*
   * Columns
   */
  /*
   * Padding
   */
  /*
   * Margin
   */
  /*
   * Sticky header
   */
  /*
   * Calendar
   */
  /*
   * Nelson tag input
   */
  /*
   * Nelson chart
   */
  /*
   * Navbar overrides
   */
  /*
   * Material overrides
   */
  /*
   * add-remove-select component override
   */
  /*
   * file-upload component
   */
  /*
   * Auth0 overrides
   */
  /*
   * ngx-datatable overrides
   */
  /*
   * noUi slider overrides
   */
  /**
   * NoUi header class
   */
  /*@media (max-width: 762px) {
    mat-panel-title {
      margin-right: 0!important;

    }
    mat-panel-description {
      margin-right: 0!important;
    }
  }*/
  /*
   * JSON editor overrides
   */
  /*
   * Page builder slider
   */
  /*
   * Report overrides
   */
  /*
   * Prism
   */
}
.theme-nada html {
  box-sizing: border-box;
  width: 100%;
}
.theme-nada *,
.theme-nada *:before,
.theme-nada *:after {
  box-sizing: border-box;
}
.theme-nada body {
  margin: 0;
  overflow-x: hidden;
  min-height: 100vh;
  background: white;
}
.theme-nada ::-webkit-scrollbar {
  width: 8px;
  height: 3px;
}
.theme-nada ::-webkit-scrollbar-track {
  border-radius: 0;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.35);
  background: rgba(238, 238, 238, 0.2);
}
.theme-nada ::-webkit-scrollbar-thumb {
  border-radius: 40px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.35);
  background: rgba(170, 170, 170, 0.7);
}
.theme-nada img {
  max-width: 100%;
  font-style: italic;
  vertical-align: middle;
}
.theme-nada .img-full {
  width: 100%;
  height: 100%;
}
.theme-nada .img-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.theme-nada .img-contain {
  -o-object-fit: contain;
     object-fit: contain;
}
.theme-nada .img-container {
  position: relative;
  overflow: hidden;
}
.theme-nada .img-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.theme-nada .img-container[data-aspect-ratio="1:1"] {
  padding-bottom: 100%;
}
.theme-nada .img-container[data-aspect-ratio="4:3"] {
  padding-bottom: 75%;
}
.theme-nada html {
  color: rgba(0, 0, 0, 0.6);
}
.theme-nada h1, .theme-nada h2, .theme-nada h3, .theme-nada h4, .theme-nada h5, .theme-nada h6 {
  color: rgba(0, 0, 0, 0.9);
}
.theme-nada p {
  color: rgba(0, 0, 0, 0.6);
}
.theme-nada fieldset legend {
  color: rgba(0, 0, 0, 0.6);
}
.theme-nada hr {
  border-color: rgba(0, 0, 0, 0.2);
}
.theme-nada .vr {
  border-color: rgba(0, 0, 0, 0.2);
}
.theme-nada .grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 160rem;
  width: 100%;
  margin: 0 auto;
}
.theme-nada .grid > [class*=col] {
  padding: 1rem;
}
.theme-nada .grid.full {
  max-width: 100%;
}
.theme-nada .grid.gutter-l > [class*=col] {
  padding: 2rem;
}
.theme-nada .grid.gutter-m > [class*=col] {
  padding: 1rem;
}
.theme-nada .grid.gutter-s > [class*=col] {
  padding: 0.5rem;
}
.theme-nada .grid.nogutter > [class*=col] {
  padding: 0;
}
.theme-nada .grid .col-1 {
  flex-basis: 8.3333%;
  width: 8.3333%;
}
.theme-nada .grid .col-2 {
  flex-basis: 16.6666%;
  width: 16.6666%;
}
.theme-nada .grid .col-3 {
  flex-basis: 25%;
  width: 25%;
}
.theme-nada .grid .col-4 {
  flex-basis: 33.3333%;
  width: 33.3333%;
}
.theme-nada .grid .col-5 {
  flex-basis: 41.6666%;
  width: 41.6666%;
}
.theme-nada .grid .col-6 {
  flex-basis: 50%;
  width: 50%;
}
.theme-nada .grid .col-7 {
  flex-basis: 58.3333%;
  width: 58.3333%;
}
.theme-nada .grid .col-8 {
  flex-basis: 66.6666%;
  width: 66.6666%;
}
.theme-nada .grid .col-9 {
  flex-basis: 75%;
  width: 75%;
}
.theme-nada .grid .col-10 {
  flex-basis: 83.3333%;
  width: 83.3333%;
}
.theme-nada .grid .col-11 {
  flex-basis: 91.6666%;
  width: 91.6666%;
}
.theme-nada .grid .col-12 {
  flex-basis: 100%;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .theme-nada .grid .o-m-last {
    order: 9;
  }
  .theme-nada .grid .col-m-0 {
    display: none;
  }
  .theme-nada .grid .col-m-1 {
    flex-basis: 8.3333%;
    width: 8.3333%;
  }
  .theme-nada .grid .col-m-2 {
    flex-basis: 16.6666%;
    width: 16.6666%;
  }
  .theme-nada .grid .col-m-3 {
    flex-basis: 25%;
    width: 25%;
  }
  .theme-nada .grid .col-m-4 {
    flex-basis: 33.3333%;
    width: 33.3333%;
  }
  .theme-nada .grid .col-m-5 {
    flex-basis: 41.6666%;
    width: 41.6666%;
  }
  .theme-nada .grid .col-m-6 {
    flex-basis: 50%;
    width: 50%;
  }
  .theme-nada .grid .col-m-7 {
    flex-basis: 58.3333%;
    width: 58.3333%;
  }
  .theme-nada .grid .col-m-8 {
    flex-basis: 66.6666%;
    width: 66.6666%;
  }
  .theme-nada .grid .col-m-9 {
    flex-basis: 75%;
    width: 75%;
  }
  .theme-nada .grid .col-m-10 {
    flex-basis: 83.3333%;
    width: 83.3333%;
  }
  .theme-nada .grid .col-m-11 {
    flex-basis: 91.6666%;
    width: 91.6666%;
  }
  .theme-nada .grid .col-m-12 {
    flex-basis: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 850px) {
  .theme-nada .grid .o-s-last {
    order: 9;
  }
  .theme-nada .grid .col-s-0 {
    display: none;
  }
  .theme-nada .grid .col-s-1 {
    flex-basis: 8.3333%;
    width: 8.3333%;
  }
  .theme-nada .grid .col-s-2 {
    flex-basis: 16.6666%;
    width: 16.6666%;
  }
  .theme-nada .grid .col-s-3 {
    flex-basis: 25%;
    width: 25%;
  }
  .theme-nada .grid .col-s-4 {
    flex-basis: 33.3333%;
    width: 33.3333%;
  }
  .theme-nada .grid .col-s-5 {
    flex-basis: 41.6666%;
    width: 41.6666%;
  }
  .theme-nada .grid .col-s-6 {
    flex-basis: 50%;
    width: 50%;
  }
  .theme-nada .grid .col-s-7 {
    flex-basis: 58.3333%;
    width: 58.3333%;
  }
  .theme-nada .grid .col-s-8 {
    flex-basis: 66.6666%;
    width: 66.6666%;
  }
  .theme-nada .grid .col-s-9 {
    flex-basis: 75%;
    width: 75%;
  }
  .theme-nada .grid .col-s-10 {
    flex-basis: 83.3333%;
    width: 83.3333%;
  }
  .theme-nada .grid .col-s-11 {
    flex-basis: 91.6666%;
    width: 91.6666%;
  }
  .theme-nada .grid .col-s-12 {
    flex-basis: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 450px) {
  .theme-nada .grid .o-xs-last {
    order: 9;
  }
  .theme-nada .grid .col-xs-0 {
    display: none;
  }
  .theme-nada .grid .col-xs-1 {
    flex-basis: 8.3333%;
    width: 8.3333%;
  }
  .theme-nada .grid .col-xs-2 {
    flex-basis: 16.6666%;
    width: 16.6666%;
  }
  .theme-nada .grid .col-xs-3 {
    flex-basis: 25%;
    width: 25%;
  }
  .theme-nada .grid .col-xs-4 {
    flex-basis: 33.3333%;
    width: 33.3333%;
  }
  .theme-nada .grid .col-xs-5 {
    flex-basis: 41.6666%;
    width: 41.6666%;
  }
  .theme-nada .grid .col-xs-6 {
    flex-basis: 50%;
    width: 50%;
  }
  .theme-nada .grid .col-xs-7 {
    flex-basis: 58.3333%;
    width: 58.3333%;
  }
  .theme-nada .grid .col-xs-8 {
    flex-basis: 66.6666%;
    width: 66.6666%;
  }
  .theme-nada .grid .col-xs-9 {
    flex-basis: 75%;
    width: 75%;
  }
  .theme-nada .grid .col-xs-10 {
    flex-basis: 83.3333%;
    width: 83.3333%;
  }
  .theme-nada .grid .col-xs-11 {
    flex-basis: 91.6666%;
    width: 91.6666%;
  }
  .theme-nada .grid .col-xs-12 {
    flex-basis: 100%;
    width: 100%;
  }
}
.theme-nada .layout-fluid .grid {
  max-width: unset !important;
}
.theme-nada .bg-color {
  background: rgba(75, 75, 75, 0.9);
}
.theme-nada .collapsed-menu {
  margin-left: 40px !important;
}
.theme-nada .compact-title {
  font-size: 18px;
  color: #d0d6e2;
  padding: 0 16px;
  height: 40px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #d0d6e2;
}
.theme-nada .sidebar-mat-menu {
  background: rgba(75, 75, 75, 0.9);
  margin-left: 180px;
  border-radius: 0 !important;
  min-height: auto !important;
  border: 1px solid rgba(0, 0, 0, 0.12);
}
.theme-nada .sidebar-mat-menu .mat-menu-item {
  color: #d0d6e2;
  line-height: 1;
  height: 40px;
}
.theme-nada .sidebar-mat-menu .mat-menu-item.active {
  color: #B71C1C;
  font-weight: 700;
}
.theme-nada .sidebar-mat-menu .mat-menu-item:hover {
  background: rgba(255, 255, 255, 0.1);
}
.theme-nada .sidebar-mat-menu .mat-menu-item:hover .favorite {
  opacity: 1;
  pointer-events: auto;
}
.theme-nada .sidebar-mat-menu .mat-menu-content {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.theme-nada .sidebar-mat-menu .mat-menu-item-submenu-trigger::after {
  color: #d0d6e2;
}
.theme-nada .sidebar-mat-menu-child {
  margin-top: 7px !important;
  background: rgba(75, 75, 75, 0.9);
  border-radius: 0 !important;
  min-height: auto !important;
  border: 1px solid rgba(0, 0, 0, 0.12);
}
.theme-nada .sidebar-mat-menu-child .mat-menu-item {
  color: #d0d6e2;
  line-height: 1;
  height: 40px;
}
.theme-nada .sidebar-mat-menu-child .mat-menu-item.active {
  color: #B71C1C;
  font-weight: 700;
}
.theme-nada .sidebar-mat-menu-child .mat-menu-item:hover {
  background: rgba(255, 255, 255, 0.1);
}
.theme-nada .sidebar-mat-menu-child .mat-menu-content {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.theme-nada .sidebar-mat-menu-child .mat-menu-item-submenu-trigger::after {
  color: #d0d6e2;
}
.theme-nada .active-inner .active-primary-color {
  color: #B71C1C;
}
.theme-nada .favorite {
  pointer-events: none;
  opacity: 0;
  transition: 0.2s;
  cursor: pointer;
  margin-right: 0 !important;
}
.theme-nada .db-aside {
  position: fixed;
  z-index: 63004;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  width: 180px;
  height: 100%;
  color: #d0d6e2;
  background: #4b4b4b;
}
.theme-nada .db-aside-list {
  padding: 0;
  list-style: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  overflow-y: auto;
  overflow-x: hidden;
  line-height: 2.4;
}
.theme-nada .db-aside-list-item .divider {
  display: none;
  margin: 0;
}
.theme-nada .db-aside-list-item.expanded {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.5) 2px, rgba(255, 255, 255, 0.06) 2px, rgba(255, 255, 255, 0.06));
}
.theme-nada .db-aside-list-item.expanded .divider {
  display: block;
  border-color: #B71C1C !important;
  opacity: 60%;
}
.theme-nada .db-aside-list-item-logo {
  height: 64px;
  display: flex;
  justify-content: center;
}
.theme-nada .db-aside-list-item-link {
  display: flex;
  white-space: nowrap;
  align-items: center;
  width: 100%;
  padding: 8px;
  font-size: 14px;
}
.theme-nada .db-aside-list-item-link:hover {
  background: rgba(255, 255, 255, 0.04);
}
.theme-nada .db-aside-list-item-link.active {
  color: #B71C1C;
}
.theme-nada .db-aside-list-item-link-label {
  margin-left: 8px;
  margin-right: 8px;
}
.theme-nada .db-aside-list-item-link .navicon {
  color: rgba(160, 160, 179, 0.5);
}
.theme-nada .db-aside-list-item-link-expand {
  margin-left: auto;
  margin-right: 8px;
}
.theme-nada .db-aside-list-item-link-expand.expanded {
  transform: rotate(90deg);
}
.theme-nada .db-aside-list-nested {
  padding: 0;
  list-style: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  overflow: hidden;
  max-height: 0;
  transition: 0.4s;
}
.theme-nada .db-aside-list-nested.expanded {
  max-height: 1000px;
}
.theme-nada .db-aside-list-nested-item-link {
  position: relative;
  display: flex;
  white-space: nowrap;
  align-items: center;
  width: 100%;
  padding: 4px 8px 4px 25px;
  font-size: 13px;
  transition: 0.2s;
  justify-content: space-between;
}
.theme-nada .db-aside-list-nested-item-link:hover {
  background: rgba(255, 255, 255, 0.04);
}
.theme-nada .db-aside-list-nested-item-link:hover .favorite {
  pointer-events: auto;
  opacity: 1;
}
.theme-nada .db-aside-list-nested-item-link.active {
  color: #B71C1C;
  background: rgba(255, 255, 255, 0.06);
}
.theme-nada .db-aside-list-nested-item-link-icon {
  font-size: 20px;
  line-height: 20px;
  width: 20px;
  height: 20px;
}
.theme-nada .db-aside-list-nested-item-link-label {
  margin-left: 8px;
  margin-right: 8px;
}
.theme-nada .db-aside-list-nested-item-link-expand {
  font-size: 20px;
  line-height: 20px;
  width: 20px;
  height: 20px;
  margin-left: auto;
  margin-right: 8px;
}
.theme-nada .db-aside-list-nested-item-link-expand.expanded {
  transform: rotate(90deg);
}
.theme-nada .db-aside-list-nested-item-expand {
  padding: 0;
  list-style: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  overflow: hidden;
}
.theme-nada .db-aside-list-nested-item-expand-link {
  position: relative;
  display: flex;
  white-space: nowrap;
  align-items: center;
  width: 100%;
  padding: 4px 8px 4px 33px;
  font-size: 13px;
  transition: 0.2s;
  justify-content: space-between;
}
.theme-nada .db-aside-list-nested-item-expand-link:hover {
  background: rgba(255, 255, 255, 0.04);
}
.theme-nada .db-aside-list-nested-item-expand-link:hover .favorite {
  pointer-events: auto;
  opacity: 1;
}
.theme-nada .db-aside-list-nested-item-expand-link.active {
  color: #B71C1C;
}
.theme-nada .db-aside-list-nested-item-expand-link.expanded {
  transform: rotate(90deg);
}
.theme-nada .db-aside-list-nested-item-expand-link i {
  padding-right: 2px;
  margin: 0 0 0 auto;
  color: rgba(160, 160, 179, 0.5);
  font-size: 15px;
}
.theme-nada .db-header {
  position: fixed;
  z-index: 100;
  left: 180px;
  top: 0;
  width: calc(100% - 180px);
  height: 64px;
  color: #b8c2d6;
  background: #4b4b4b;
}
.theme-nada .db-header .header-profile-picture {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 10px;
}
.theme-nada .db-header .header-select {
  padding-top: 18px;
}
.theme-nada .db-header .cont-1 {
  flex: 2;
}
.theme-nada .db-header .cont-2 {
  flex: 0 1 auto;
}
.theme-nada .db-header .cont-2 .mat-icon-button {
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-size: 20px;
}
.theme-nada .db-header .cont-1-2 {
  flex: 1;
}
.theme-nada .db-header .cont-1-2 .header-select {
  flex: 1;
  width: 100px;
}
@media (max-width: 1200px) {
  .theme-nada .db-header .cont-1-2 .header-select {
    flex: 0 1 auto;
    width: 19vw;
  }
}
.theme-nada .db-main {
  overflow-x: hidden;
  position: relative;
  left: 180px;
  top: 64px;
  width: calc(100% - 180px);
  min-height: calc(100vh - 64px);
  background: #e9ebec;
  -webkit-overflow-scrolling: touch;
}
.theme-nada .db-tabs {
  position: fixed !important;
  z-index: 2;
  left: 180px;
  width: calc(100% - 180px);
  transition: 0.2s;
}
.theme-nada .db-tabs .mat-tab-links {
  overflow-x: auto;
  background: white;
}
.theme-nada .db-tabs.filled {
  background: white;
  border: 1px solid #ccc;
  height: 48px;
}
.theme-nada .tab-active {
  background: #eee;
  font-weight: bold;
}
.theme-nada .db-subtabs {
  display: flex;
  align-items: center;
  position: fixed;
  z-index: 2;
  right: 4px;
  height: 48px;
}
.theme-nada .db-subtabs-action {
  margin-left: 5px;
}
.theme-nada .tab-nav-drop-down-added .db-subtabs {
  display: flex;
  position: relative;
  right: unset;
  height: unset;
  flex-direction: column;
  align-items: flex-start;
}
.theme-nada .tab-nav-drop-down-added .db-subtabs-action {
  margin-left: 0;
  margin-top: 10px;
  width: 100%;
  padding: 0 10px;
}
.theme-nada .tab-nav-drop-down-added .db-subtabs-action > * {
  width: 100% !important;
}
.theme-nada .loading-toast {
  display: flex;
  align-items: center;
  opacity: 0;
  position: fixed;
  z-index: 100;
  bottom: 0;
  left: 50%;
  padding: 8px 16px;
  border-top-left-radius: 0.6rem;
  border-top-right-radius: 0.6rem;
  background: #303a48;
  color: white;
  transform: translateX(-50%) translateY(100%);
  transition: 0.4s;
  -webkit-animation-delay: 300ms;
          animation-delay: 300ms;
}
.theme-nada .loading-toast.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.theme-nada .high-performance .loading-toast {
  transition: none !important;
  -webkit-animation-delay: 0ms !important;
          animation-delay: 0ms !important;
}
.theme-nada .layout-compact .db-aside {
  width: 40px !important;
}
.theme-nada .layout-compact .db-aside-list-item-link-label,
.theme-nada .layout-compact .db-aside-list-item-link-expand,
.theme-nada .layout-compact .db-aside-list-nested {
  display: none;
}
.theme-nada .layout-compact .db-header,
.theme-nada .layout-compact .db-tabs,
.theme-nada .layout-compact .db-main {
  left: 40px !important;
  width: calc(100% - 40px) !important;
}
.theme-nada simple-sidebar {
  overflow-y: auto;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  height: 100%;
  background: white;
  color: rgba(0, 0, 0, 0.6);
  transform: translateX(100%);
  transition: 0.2s;
}
.theme-nada simple-sidebar.active {
  box-shadow: -4px 0 8px rgba(0, 0, 0, 0.2);
  transform: translateX(0);
}
@media (max-width: 450px) {
  .theme-nada simple-sidebar {
    width: 100% !important;
  }
}
.theme-nada simple-sidebar .simple-sidebar-header, .theme-nada simple-sidebar .simple-sidebar-footer {
  height: 64px;
  padding: 0 20px;
  background: #f5f5f5;
}
.theme-nada simple-sidebar .simple-sidebar-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.theme-nada simple-sidebar .simple-sidebar-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.theme-nada simple-sidebar .simple-sidebar-content {
  overflow-y: auto;
  height: calc(100vh - 128px);
}
.theme-nada simple-sidebar .simple-sidebar-content.no-footer {
  height: calc(100vh - 64px);
}
.theme-nada simple-sidebar .hidden {
  display: none;
}
@media screen and (max-width: 1200px) {
  .theme-nada .db-aside {
    display: none !important;
  }
  .theme-nada .db-header,
.theme-nada .db-tabs,
.theme-nada .db-main {
    left: 0 !important;
    width: 100% !important;
  }
}
.theme-nada .long-select {
  width: 300px;
}
.theme-nada .notification-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  line-height: 18px;
  font-size: 10px;
  text-align: center;
  color: white;
  background: #B71C1C;
}
.theme-nada .read-format h1, .theme-nada .read-format h2, .theme-nada .read-format h3, .theme-nada .read-format h4, .theme-nada .read-format h5, .theme-nada .read-format h6 {
  margin: 1em 0 0.5em 0;
}
.theme-nada .read-format p, .theme-nada .read-format table, .theme-nada .read-format img {
  margin: 0 0 0.5em 0;
}
.theme-nada .read-format ul, .theme-nada .read-format ol {
  margin: -0.25em 0 0.5em 0;
}
.theme-nada .read-format a {
  text-decoration: underline;
}
.theme-nada .read-format hr {
  margin: 0.5em 0 0.5em 0;
}
.theme-nada .table-heading {
  font-weight: 500;
  background: rgba(0, 0, 0, 0.04);
  padding: 5px;
  border-bottom: 1px solid #999;
  text-align: center;
  font-size: 1.9rem;
}
.theme-nada .simple-table {
  border-collapse: collapse;
  width: calc(100% - 1px);
  text-align: left;
  background: white;
  /*
   * Smaller screen layout
   */
  /*
  @media screen and (max-width: $screen-s) {
    box-shadow: none;

    tr {
      display   : block;
      margin    : 1rem 0;
      box-shadow: $box-shadow;
    }

    td {
      display       : block;
      text-align    : right;
      border-bottom : 1px solid map_get($foreground, divider);

      &:nth-child(1) {
        padding: .8rem .8rem .8rem .8rem;
      }

      &:nth-last-child(1) {
        padding: .8rem .8rem .8rem .8rem;
      }

    }

    tr td:nth-last-child(1) {
      border-bottom: none;
    }

    td:before {
      content : attr(data-label);
      float   : left;
    }

    thead {
      opacity : 0;
      position: absolute;
      z-index : -1;
    }

  }
  */
}
.theme-nada .simple-table tr {
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.2);
}
.theme-nada .simple-table tr:nth-child(2n-1) {
  background: rgba(0, 0, 0, 0.04);
}
.theme-nada .simple-table tr:hover {
  background: #eee;
}
.theme-nada .simple-table tr.label-block {
  border-bottom: 1px solid rgba(0, 0, 0, 0.9);
}
.theme-nada .simple-table nelson-report-row:nth-child(2n) tr {
  background: white;
}
.theme-nada .simple-table nelson-report-row:nth-child(2n) tr:hover {
  background: #eee;
}
.theme-nada .simple-table thead tr:nth-child(1) {
  background: white;
}
.theme-nada .simple-table tbody tr:nth-last-child(1) {
  border-bottom: none;
}
.theme-nada .simple-table th {
  padding: 1.6rem 0.8rem;
  font-size: 1.1rem;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.6);
}
.theme-nada .simple-table th:nth-child(1) {
  padding: 0.8rem 0.8rem 0.8rem 2.4rem;
}
.theme-nada .simple-table th:nth-last-child(1) {
  padding: 0.8rem 2.4rem 0.8rem 0.8rem;
}
.theme-nada .simple-table td {
  padding: 0.8rem;
  font-size: 1.2rem;
  color: rgba(0, 0, 0, 0.9);
}
.theme-nada .simple-table td:nth-child(1) {
  padding: 0.8rem 0.8rem 0.8rem 2.4rem;
}
.theme-nada .simple-table td:nth-last-child(1) {
  padding: 0.8rem 2.4rem 0.8rem 0.8rem;
}
.theme-nada .no-style-table {
  border-collapse: collapse;
  width: 100%;
  text-align: left;
}
.theme-nada .no-style-table td, .theme-nada .no-style-table th {
  padding: 0.4rem;
}
.theme-nada .print-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 10px;
}
.theme-nada .print-table tr:nth-child(2n) {
  background: #ddd;
}
.theme-nada .print-table td, .theme-nada .print-table th {
  padding: 2px 4px;
  text-align: left;
}
@media not print {
  .theme-nada .print-table.header-sticky {
    table-layout: fixed;
  }
  .theme-nada .print-table.header-sticky tbody {
    display: block;
    overflow: auto;
    max-height: 450px;
    width: 100%;
  }
  .theme-nada .print-table.header-sticky tr {
    display: flex;
  }
}
.theme-nada .label-block {
  font-weight: 700;
  cursor: pointer;
  border-bottom: 1px solid black !important;
}
@media (max-width: 640px) {
  .theme-nada .report-table td,
.theme-nada .report-table th {
    padding: 2px 4px 2px 2px !important;
    font-size: 10px !important;
  }
}
.theme-nada .report-tag {
  position: relative;
}
.theme-nada .report-tag td {
  text-align: center;
  padding: 0 !important;
}
.theme-nada .report-tag td:first-child {
  overflow: hidden;
  font-size: 1px;
  width: 50px;
}
@media (max-width: 640px) {
  .theme-nada .report-tag td:first-child {
    width: 20px;
  }
}
.theme-nada .report-tag td:first-child span {
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
          text-orientation: mixed;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
}
@media (max-width: 640px) {
  .theme-nada .report-tag td:first-child span {
    font-size: 10px;
  }
}
@media (max-width: 640px) {
  .theme-nada .report-tag td {
    padding: 0 !important;
  }
}
.theme-nada .grind-new-page {
  page-break-before: always;
}
.theme-nada .sticky-header {
  position: absolute;
  z-index: -1;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 16px 0;
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.16);
  background: white;
  border-top: 1px solid #cccccc;
}
.theme-nada .sticky-header.active {
  opacity: 1;
  z-index: 10;
}
.theme-nada .sticky-header.no-pad {
  padding: 0 !important;
}
.theme-nada .nada-column-count {
  line-height: 0;
  border-bottom: 1px solid black !important;
}
.theme-nada .nada-avg-row {
  background: #f6dad5 !important;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.25);
}
.theme-nada .nada-boc-row {
  background: #c7e2df !important;
}
.theme-nada .nada-total-row {
  background: #e3f2fd !important;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.25);
}
.theme-nada .nada-highlight-field {
  outline: 2px solid;
  background: #ccd9d7;
}
.theme-nada .nada-table-header th {
  background: #dfdac9;
  vertical-align: top;
  padding: 0.5rem !important;
}
@media (max-width: 600px) {
  .theme-nada .nada-table-header th {
    min-width: 90px;
  }
}
.theme-nada .nada-table-header th.sub-header {
  padding: 1.6rem 0.8rem !important;
}
.theme-nada .nada-table-header ::ng-deep p {
  font-size: 12px;
}
@media (max-width: 600px) {
  .theme-nada .nada-table-header ::ng-deep p {
    font-size: 10px;
  }
}
@media (max-width: 640px) {
  .theme-nada .report-hide-td-mobile {
    display: none;
  }
}
@media (max-width: 640px) {
  .theme-nada .report-table-per > td {
    display: none;
  }
}
@media (max-width: 640px) {
  .theme-nada .report-table-count > td {
    display: none;
  }
}
@media (max-width: 640px) {
  .theme-nada .report-table-percent > td {
    display: none;
  }
}
@media (max-width: 640px) {
  .theme-nada .report-table-budget > td {
    display: none;
  }
}
@media (max-width: 640px) {
  .theme-nada .order-xs-1 {
    order: 1;
  }
}
@media (max-width: 640px) {
  .theme-nada .order-xs-2 {
    order: 2;
  }
}
@media (max-width: 640px) {
  .theme-nada .order-xs-3 {
    order: 3;
  }
}
@media (max-width: 640px) {
  .theme-nada .order-xs-4 {
    order: 4;
  }
}
.theme-nada .details-header {
  cursor: pointer;
}
.theme-nada .details-header mat-icon {
  margin-left: 5px;
  transition: opacity 0.2s;
  opacity: 0;
  visibility: hidden;
}
.theme-nada .details-header:hover mat-icon {
  opacity: 1;
  visibility: visible;
}
.theme-nada .report-compact .report-table-container h5, .theme-nada .report-compact .report-table-container h4 {
  font-size: 18px;
}
.theme-nada .report-compact .report-table-container .mat-icon-button {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.theme-nada .report-compact .report-table-container .report-tag td:first-child {
  width: 1px;
}
.theme-nada .report-compact .report-table-container .report-tag td:first-child span {
  font-size: 11px;
}
.theme-nada .report-compact .report-table-container .simple-table td {
  padding: 4px 4px 4px 12px;
  font-size: 11px;
}
.theme-nada .report-compact .report-table-container .simple-table td:nth-child(1) {
  padding: 4px 4px 4px 12px;
  font-size: 11px;
}
.theme-nada .report-compact .report-table-container .simple-table th {
  padding: 4px 4px 4px 12px;
  font-size: 11px;
}
.theme-nada .report-compact .report-table-container .mat-card {
  padding: 12px;
}
.theme-nada .report-spreadsheet .report-table-container h5, .theme-nada .report-spreadsheet .report-table-container h4 {
  font-size: 14px;
}
.theme-nada .report-spreadsheet .report-table-container .mat-icon-button {
  width: 20px;
  height: 20px;
  line-height: 20px;
}
.theme-nada .report-spreadsheet .report-table-container .report-tag td:first-child {
  width: 1px;
}
.theme-nada .report-spreadsheet .report-table-container .report-tag td:first-child span {
  font-size: 9px;
}
.theme-nada .report-spreadsheet .report-table-container .simple-table td {
  padding: 2px 2px 2px 6px;
  font-size: 9px;
  border: 1px solid #808080;
  line-height: 1;
}
.theme-nada .report-spreadsheet .report-table-container .simple-table td:nth-child(1) {
  padding: 2px 2px 2px 6px;
  font-size: 9px;
}
.theme-nada .report-spreadsheet .report-table-container .simple-table th {
  padding: 2px 2px 2px 6px;
  font-size: 9px;
}
.theme-nada .report-spreadsheet .report-table-container .mat-card {
  padding: 8px;
}
.theme-nada .report-spreadsheet .report-table-container .simple-table thead tr[style] th {
  border: 1px solid #808080;
}
.theme-nada .report-spreadsheet .report-table-container .simple-table thead tr[style] + tr th {
  border: 1px solid #808080;
}
.theme-nada .spreadsheet-table td {
  border: 1px solid #aaa;
  padding: 5px !important;
}
.theme-nada .spreadsheet-table td:nth-child(1), .theme-nada .spreadsheet-table th:nth-child(1) {
  background: white;
}
.theme-nada .full-row td {
  padding: 5px;
}
.theme-nada .weekend-col {
  pointer-events: none;
  background: #ccc;
  color: transparent;
}
.theme-nada .weekend-col span {
  opacity: 0;
}
.theme-nada .year-row td, .theme-nada .year-row td:nth-child(1) {
  background: #b2dfdb;
}
.theme-nada .daily-avg-row td, .theme-nada .daily-avg-row td:nth-child(1) {
  background: #bbdefb;
}
.theme-nada .clear-row td {
  background: #fff;
}
.theme-nada .report-row-details {
  width: 200px !important;
  word-break: break-word !important;
}
.theme-nada .row-expand-indicator {
  margin-left: -10px;
}
.theme-nada .report-row-line-rollup {
  background: white !important;
}
.theme-nada .report-row-line-rollup td {
  padding: 4px 8px !important;
  font-size: 10px;
}
.theme-nada .report-row-line-rollup td:first-child {
  padding-left: 38px !important;
}
.theme-nada nelson-report-row .report-row-line-rollup {
  background: white !important;
}
.theme-dark .theme-nada nelson-report-row .report-row-line-rollup.report-row-line-rollup {
  background: #424242 !important;
}
.theme-nada nelson-report-row:nth-child(2n-1) .report-row-line-rollup {
  background: white !important;
}
.theme-dark .theme-nada nelson-report-row:nth-child(2n-1) .report-row-line-rollup.report-row-line-rollup {
  background: rgba(255, 255, 255, 0.08) !important;
}
.theme-dark .theme-nada nelson-report-row:hover .report-row-line-rollup.report-row-line-rollup {
  background: rgba(255, 255, 255, 0.16) !important;
}
.theme-nada .report-row-line-rollup-header {
  background: grey;
}
.theme-nada .report-row-line-rollup-header .report-row-details {
  font-weight: bold !important;
}
.theme-nada .report-table-container {
  padding-top: 6rem;
}
.theme-nada .spreadsheet [class^=col-] {
  padding: 0 !important;
}
.theme-nada .spreadsheet .sticky-header {
  padding: 0;
}
.theme-nada .spreadsheet .sticky-header h4 {
  color: white !important;
  font-size: 1.2rem !important;
  font-weight: normal !important;
}
.theme-nada .spreadsheet .sticky-header th {
  padding: 2px !important;
}
.theme-nada .spreadsheet .mat-card {
  padding: 0 !important;
  border-radius: 0 !important;
}
.theme-nada .spreadsheet .mat-card-title {
  margin-bottom: 0 !important;
  padding: 2px 2px 2px 32px !important;
  background: #666 !important;
}
.theme-nada .spreadsheet .mat-card-title .mat-icon-button {
  width: 20px !important;
  height: 20px !important;
  line-height: 20px !important;
}
.theme-nada .spreadsheet .mat-card-title .mat-icon-button .mat-icon {
  line-height: 20px !important;
  width: 20px !important;
  height: 20px !important;
  font-size: 20px !important;
  color: white !important;
}
.theme-nada .spreadsheet .mat-card-title .mat-form-field {
  font-size: 14px;
}
.theme-nada .spreadsheet .mat-card-title .mat-form-field .mat-form-field-wrapper {
  padding-bottom: 0;
}
.theme-nada .spreadsheet .mat-card-title .mat-form-field .mat-form-field-infix {
  padding: 0;
  border-top: none;
}
.theme-nada .spreadsheet .mat-card-title .mat-form-field .mat-form-field-underline {
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.4);
}
.theme-nada .spreadsheet .mat-card-title .mat-form-field .mat-input-element {
  color: white !important;
}
.theme-nada .spreadsheet .mat-card-title .mat-form-field .mat-form-field-label {
  top: 10px;
  color: rgba(255, 255, 255, 0.6);
  visibility: visible;
}
.theme-nada .spreadsheet .mat-card-title .mat-form-field.mat-focused .mat-form-field-label {
  visibility: hidden;
}
.theme-nada .spreadsheet .nada-column-count th {
  line-height: 1 !important;
}
.theme-nada .spreadsheet .mat-card-title > div > div > mat-menu {
  display: none !important;
}
.theme-nada .spreadsheet .mat-card-title > div > div > h5 {
  color: white !important;
  font-size: 1.2rem !important;
  font-weight: normal !important;
}
.theme-nada .spreadsheet .report-table-container {
  padding: 6rem 2rem 2rem;
}
.theme-nada .spreadsheet .report-table-container.hot-sheet {
  padding-top: 2rem !important;
}
.theme-nada .spreadsheet .report-table > thead > tr > th {
  padding: 2px !important;
  font-weight: normal !important;
}
.theme-nada .spreadsheet .report-tag td:first-child {
  width: 30px !important;
  border-right: 1px solid #B71C1C !important;
}
.theme-nada .spreadsheet .report-table td {
  padding: 2px !important;
  font-weight: normal !important;
  border: none !important;
}
.theme-nada .spreadsheet .report-table td:empty {
  padding: 0 !important;
}
.theme-nada .spreadsheet .report-row-details {
  width: 300px !important;
}
.theme-nada .spreadsheet .report-table th {
  background: #ddd !important;
  border: 1px solid #bbb !important;
}
.theme-nada .spreadsheet .spreadsheet-table td:nth-child(1),
.theme-nada .spreadsheet .clear-row td {
  background: #eee !important;
}
.theme-nada .spreadsheet .report-table .report-nested-row {
  background: #d2d2d2 !important;
}
.theme-nada .spreadsheet .report-table .report-nested-row > td:nth-child(1) {
  padding-left: 20px !important;
  border-left: 2px solid rgba(183, 28, 28, 0.5) !important;
}
.theme-nada .spreadsheet .report-table .report-nested-row > td:nth-last-child(1) {
  border-right: 2px solid rgba(183, 28, 28, 0.5) !important;
}
.theme-nada .spreadsheet .report-table .report-nested-row.report-nested-row-first > td {
  border-top: 2px solid rgba(183, 28, 28, 0.5) !important;
}
.theme-nada .spreadsheet .report-table .report-nested-row.report-nested-row-last > td {
  border-bottom: 2px solid rgba(183, 28, 28, 0.5) !important;
}
.theme-nada .spreadsheet .report-row-line-rollup-header {
  background: grey;
}
.theme-nada .spreadsheet .report-row-line-rollup-header .report-row-details {
  font-weight: bold !important;
}
.theme-nada .spreadsheet .report-row-line-rollup td {
  padding: 2px !important;
  font-size: 10px;
}
.theme-nada .spreadsheet .report-row-line-rollup td:first-child {
  padding-left: 20px !important;
}
.theme-nada .spreadsheet .report-table-per > td:nth-child(1),
.theme-nada .spreadsheet .report-table-count > td:nth-child(1) {
  padding-left: 20px !important;
}
.theme-nada .spreadsheet .row-expand-indicator {
  margin-left: 0;
}
.theme-nada .spreadsheet .label-block {
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
}
.theme-nada .spreadsheet .details-th {
  width: 70px;
}
.theme-nada .spreadsheet nelson-rendered-report-schedule .simple-table th,
.theme-nada .spreadsheet .nelson-rendered-report-schedule-sticky .simple-table th {
  padding: 2px !important;
  font-weight: normal !important;
}
.theme-nada .spreadsheet nelson-rendered-report-schedule .simple-table th:nth-child(1),
.theme-nada .spreadsheet .nelson-rendered-report-schedule-sticky .simple-table th:nth-child(1) {
  padding: 2px 2px 2px 6px !important;
}
.theme-nada .spreadsheet nelson-rendered-report-schedule .simple-table td,
.theme-nada .spreadsheet .nelson-rendered-report-schedule-sticky .simple-table td {
  padding: 2px !important;
  font-weight: normal !important;
  border: none !important;
}
.theme-nada .spreadsheet nelson-rendered-report-schedule .simple-table td:nth-child(1),
.theme-nada .spreadsheet .nelson-rendered-report-schedule-sticky .simple-table td:nth-child(1) {
  padding: 2px 2px 2px 6px !important;
}
.theme-nada .spreadsheet nelson-rendered-report-schedule .simple-table .mat-icon-button,
.theme-nada .spreadsheet .nelson-rendered-report-schedule-sticky .simple-table .mat-icon-button {
  height: 24px;
  width: 24px;
  line-height: 24px;
}
.theme-nada .flex {
  display: flex;
  flex-wrap: wrap;
}
.theme-nada .iflex {
  display: inline-flex;
}
.theme-nada .fw-wrap {
  flex-wrap: wrap;
}
.theme-nada .fw-nowrap {
  flex-wrap: nowrap;
}
.theme-nada .fd-row {
  flex-direction: row;
}
.theme-nada .fd-row-rev {
  flex-direction: row-reverse;
}
.theme-nada .fd-col {
  flex-direction: column;
}
.theme-nada .fd-col-rev {
  flex-direction: column-reverse;
}
.theme-nada .ai-stretch {
  align-items: stretch;
}
.theme-nada .ai-base {
  align-items: baseline;
}
.theme-nada .ai-start {
  align-items: flex-start;
}
.theme-nada .ai-end {
  align-items: flex-end;
}
.theme-nada .ai-center {
  align-items: center;
}
.theme-nada .ac-stretch {
  align-content: stretch;
}
.theme-nada .ac-start {
  align-content: flex-start;
}
.theme-nada .ac-end {
  align-content: flex-end;
}
.theme-nada .ac-center {
  align-content: center;
}
.theme-nada .ac-around {
  align-content: space-around;
}
.theme-nada .ac-between {
  align-content: space-between;
}
.theme-nada .jc-start {
  justify-content: flex-start;
}
.theme-nada .jc-end {
  justify-content: flex-end;
}
.theme-nada .jc-center {
  justify-content: center;
}
.theme-nada .jc-around {
  justify-content: space-around;
}
.theme-nada .jc-between {
  justify-content: space-between;
}
.theme-nada .jc-evenly {
  justify-content: space-evenly;
}
.theme-nada .flex-1 {
  flex: 1;
}
@media (max-width: 1200px) {
  .theme-nada .fd-m-col {
    flex-direction: column;
  }
  .theme-nada .jc-m-evenly {
    justify-content: space-evenly;
  }
  .theme-nada .jc-m-start {
    justify-content: flex-start;
  }
  .theme-nada .ai-m-stretch {
    align-items: stretch;
  }
}
@media (max-width: 850px) {
  .theme-nada .fw-s-nowrap {
    flex-wrap: nowrap;
  }
  .theme-nada .jc-s-start {
    justify-content: flex-start;
  }
  .theme-nada .jc-s-between {
    justify-content: space-between;
  }
}
.theme-nada .w-full {
  width: 100%;
}
@media (max-width: 850px) {
  .theme-nada .w-full-s {
    width: 100%;
  }
}
.theme-nada .h-full {
  height: 100%;
}
.theme-nada .ta-left {
  text-align: left;
}
.theme-nada .ta-center {
  text-align: center;
}
.theme-nada .ta-right {
  text-align: right;
}
.theme-nada .ta-justify {
  text-align: justify;
}
.theme-nada .br-round {
  border-radius: 50%;
}
.theme-nada .tt-uppercase {
  text-transform: uppercase;
}
@media (max-width: 450px) {
  .theme-nada .hide-xs {
    display: none;
  }
}
@media (max-width: 850px) {
  .theme-nada .hide-s {
    display: none;
  }
}
@media (max-width: 1200px) {
  .theme-nada .hide-m {
    display: none;
  }
}
.theme-nada .show-xs {
  display: none;
}
@media (max-width: 450px) {
  .theme-nada .show-xs {
    display: inline-block;
  }
}
.theme-nada .show-s {
  display: none;
}
@media (max-width: 850px) {
  .theme-nada .show-s {
    display: inline-block;
  }
}
.theme-nada .show-m {
  display: none;
}
@media (max-width: 1200px) {
  .theme-nada .show-m {
    display: inline-block;
  }
}
.theme-nada .columns-1 {
  -moz-columns: 1;
       columns: 1;
}
.theme-nada .columns-2 {
  -moz-columns: 2;
       columns: 2;
}
.theme-nada .columns-3 {
  -moz-columns: 3;
       columns: 3;
}
.theme-nada .columns-4 {
  -moz-columns: 4;
       columns: 4;
}
.theme-nada .columns-5 {
  -moz-columns: 5;
       columns: 5;
}
.theme-nada .columns-6 {
  -moz-columns: 6;
       columns: 6;
}
.theme-nada .columns-7 {
  -moz-columns: 7;
       columns: 7;
}
.theme-nada .columns-8 {
  -moz-columns: 8;
       columns: 8;
}
.theme-nada .columns-9 {
  -moz-columns: 9;
       columns: 9;
}
.theme-nada .columns-10 {
  -moz-columns: 10;
       columns: 10;
}
.theme-nada .columns-11 {
  -moz-columns: 11;
       columns: 11;
}
.theme-nada .columns-12 {
  -moz-columns: 12;
       columns: 12;
}
@media screen and (max-width: 1200px) {
  .theme-nada .columns-m-1 {
    -moz-columns: 1;
         columns: 1;
  }
  .theme-nada .columns-m-2 {
    -moz-columns: 2;
         columns: 2;
  }
  .theme-nada .columns-m-3 {
    -moz-columns: 3;
         columns: 3;
  }
  .theme-nada .columns-m-4 {
    -moz-columns: 4;
         columns: 4;
  }
  .theme-nada .columns-m-5 {
    -moz-columns: 5;
         columns: 5;
  }
  .theme-nada .columns-m-6 {
    -moz-columns: 6;
         columns: 6;
  }
  .theme-nada .columns-m-7 {
    -moz-columns: 7;
         columns: 7;
  }
  .theme-nada .columns-m-8 {
    -moz-columns: 8;
         columns: 8;
  }
  .theme-nada .columns-m-9 {
    -moz-columns: 9;
         columns: 9;
  }
  .theme-nada .columns-m-10 {
    -moz-columns: 10;
         columns: 10;
  }
  .theme-nada .columns-m-11 {
    -moz-columns: 11;
         columns: 11;
  }
  .theme-nada .columns-m-12 {
    -moz-columns: 12;
         columns: 12;
  }
}
@media screen and (max-width: 850px) {
  .theme-nada .columns-s-1 {
    -moz-columns: 1;
         columns: 1;
  }
  .theme-nada .columns-s-2 {
    -moz-columns: 2;
         columns: 2;
  }
  .theme-nada .columns-s-3 {
    -moz-columns: 3;
         columns: 3;
  }
  .theme-nada .columns-s-4 {
    -moz-columns: 4;
         columns: 4;
  }
  .theme-nada .columns-s-5 {
    -moz-columns: 5;
         columns: 5;
  }
  .theme-nada .columns-s-6 {
    -moz-columns: 6;
         columns: 6;
  }
  .theme-nada .columns-s-7 {
    -moz-columns: 7;
         columns: 7;
  }
  .theme-nada .columns-s-8 {
    -moz-columns: 8;
         columns: 8;
  }
  .theme-nada .columns-s-9 {
    -moz-columns: 9;
         columns: 9;
  }
  .theme-nada .columns-s-10 {
    -moz-columns: 10;
         columns: 10;
  }
  .theme-nada .columns-s-11 {
    -moz-columns: 11;
         columns: 11;
  }
  .theme-nada .columns-s-12 {
    -moz-columns: 12;
         columns: 12;
  }
}
@media screen and (max-width: 450px) {
  .theme-nada .columns-xs-1 {
    -moz-columns: 1;
         columns: 1;
  }
  .theme-nada .columns-xs-2 {
    -moz-columns: 2;
         columns: 2;
  }
  .theme-nada .columns-xs-3 {
    -moz-columns: 3;
         columns: 3;
  }
  .theme-nada .columns-xs-4 {
    -moz-columns: 4;
         columns: 4;
  }
  .theme-nada .columns-xs-5 {
    -moz-columns: 5;
         columns: 5;
  }
  .theme-nada .columns-xs-6 {
    -moz-columns: 6;
         columns: 6;
  }
  .theme-nada .columns-xs-7 {
    -moz-columns: 7;
         columns: 7;
  }
  .theme-nada .columns-xs-8 {
    -moz-columns: 8;
         columns: 8;
  }
  .theme-nada .columns-xs-9 {
    -moz-columns: 9;
         columns: 9;
  }
  .theme-nada .columns-xs-10 {
    -moz-columns: 10;
         columns: 10;
  }
  .theme-nada .columns-xs-11 {
    -moz-columns: 11;
         columns: 11;
  }
  .theme-nada .columns-xs-12 {
    -moz-columns: 12;
         columns: 12;
  }
}
.theme-nada .p-a-0 {
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}
.theme-nada .p-a-xxs {
  padding: 2px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-a-xxs {
    padding: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-a-xxs {
    padding: 4px;
  }
}
.theme-nada .p-a-xs {
  padding: 5px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-a-xs {
    padding: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-a-xs {
    padding: 10px;
  }
}
.theme-nada .p-a-s {
  padding: 10px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-a-s {
    padding: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-a-s {
    padding: 20px;
  }
}
.theme-nada .p-a-m {
  padding: 20px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-a-m {
    padding: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-a-m {
    padding: 40px;
  }
}
.theme-nada .p-a-l {
  padding: 40px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-a-l {
    padding: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-a-l {
    padding: 80px;
  }
}
.theme-nada .p-a-xl {
  padding: 80px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-a-xl {
    padding: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-a-xl {
    padding: 160px;
  }
}
.theme-nada .p-x-xxs {
  padding-left: 2px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-x-xxs {
    padding-left: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-x-xxs {
    padding-left: 4px;
  }
}
.theme-nada .p-x-xxs {
  padding-right: 2px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-x-xxs {
    padding-right: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-x-xxs {
    padding-right: 4px;
  }
}
.theme-nada .p-x-xs {
  padding-left: 5px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-x-xs {
    padding-left: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-x-xs {
    padding-left: 10px;
  }
}
.theme-nada .p-x-xs {
  padding-right: 5px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-x-xs {
    padding-right: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-x-xs {
    padding-right: 10px;
  }
}
.theme-nada .p-x-s {
  padding-left: 10px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-x-s {
    padding-left: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-x-s {
    padding-left: 20px;
  }
}
.theme-nada .p-x-s {
  padding-right: 10px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-x-s {
    padding-right: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-x-s {
    padding-right: 20px;
  }
}
.theme-nada .p-x-m {
  padding-left: 20px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-x-m {
    padding-left: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-x-m {
    padding-left: 40px;
  }
}
.theme-nada .p-x-m {
  padding-right: 20px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-x-m {
    padding-right: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-x-m {
    padding-right: 40px;
  }
}
.theme-nada .p-x-l {
  padding-left: 40px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-x-l {
    padding-left: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-x-l {
    padding-left: 80px;
  }
}
.theme-nada .p-x-l {
  padding-right: 40px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-x-l {
    padding-right: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-x-l {
    padding-right: 80px;
  }
}
.theme-nada .p-x-xl {
  padding-left: 80px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-x-xl {
    padding-left: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-x-xl {
    padding-left: 160px;
  }
}
.theme-nada .p-x-xl {
  padding-right: 80px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-x-xl {
    padding-right: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-x-xl {
    padding-right: 160px;
  }
}
.theme-nada .p-y-xxs {
  padding-top: 2px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-y-xxs {
    padding-top: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-y-xxs {
    padding-top: 4px;
  }
}
.theme-nada .p-y-xxs {
  padding-bottom: 2px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-y-xxs {
    padding-bottom: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-y-xxs {
    padding-bottom: 4px;
  }
}
.theme-nada .p-y-xs {
  padding-top: 5px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-y-xs {
    padding-top: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-y-xs {
    padding-top: 10px;
  }
}
.theme-nada .p-y-xs {
  padding-bottom: 5px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-y-xs {
    padding-bottom: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-y-xs {
    padding-bottom: 10px;
  }
}
.theme-nada .p-y-s {
  padding-top: 10px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-y-s {
    padding-top: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-y-s {
    padding-top: 20px;
  }
}
.theme-nada .p-y-s {
  padding-bottom: 10px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-y-s {
    padding-bottom: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-y-s {
    padding-bottom: 20px;
  }
}
.theme-nada .p-y-m {
  padding-top: 20px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-y-m {
    padding-top: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-y-m {
    padding-top: 40px;
  }
}
.theme-nada .p-y-m {
  padding-bottom: 20px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-y-m {
    padding-bottom: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-y-m {
    padding-bottom: 40px;
  }
}
.theme-nada .p-y-l {
  padding-top: 40px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-y-l {
    padding-top: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-y-l {
    padding-top: 80px;
  }
}
.theme-nada .p-y-l {
  padding-bottom: 40px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-y-l {
    padding-bottom: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-y-l {
    padding-bottom: 80px;
  }
}
.theme-nada .p-y-xl {
  padding-top: 80px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-y-xl {
    padding-top: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-y-xl {
    padding-top: 160px;
  }
}
.theme-nada .p-y-xl {
  padding-bottom: 80px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-y-xl {
    padding-bottom: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-y-xl {
    padding-bottom: 160px;
  }
}
.theme-nada .p-t-xxs {
  padding-top: 2px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-t-xxs {
    padding-top: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-t-xxs {
    padding-top: 4px;
  }
}
.theme-nada .p-t-xs {
  padding-top: 5px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-t-xs {
    padding-top: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-t-xs {
    padding-top: 10px;
  }
}
.theme-nada .p-t-s {
  padding-top: 10px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-t-s {
    padding-top: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-t-s {
    padding-top: 20px;
  }
}
.theme-nada .p-t-m {
  padding-top: 20px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-t-m {
    padding-top: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-t-m {
    padding-top: 40px;
  }
}
.theme-nada .p-t-l {
  padding-top: 40px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-t-l {
    padding-top: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-t-l {
    padding-top: 80px;
  }
}
.theme-nada .p-t-xl {
  padding-top: 80px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-t-xl {
    padding-top: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-t-xl {
    padding-top: 160px;
  }
}
.theme-nada .p-r-xxs {
  padding-right: 2px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-r-xxs {
    padding-right: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-r-xxs {
    padding-right: 4px;
  }
}
.theme-nada .p-r-xs {
  padding-right: 5px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-r-xs {
    padding-right: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-r-xs {
    padding-right: 10px;
  }
}
.theme-nada .p-r-s {
  padding-right: 10px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-r-s {
    padding-right: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-r-s {
    padding-right: 20px;
  }
}
.theme-nada .p-r-m {
  padding-right: 20px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-r-m {
    padding-right: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-r-m {
    padding-right: 40px;
  }
}
.theme-nada .p-r-l {
  padding-right: 40px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-r-l {
    padding-right: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-r-l {
    padding-right: 80px;
  }
}
.theme-nada .p-r-xl {
  padding-right: 80px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-r-xl {
    padding-right: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-r-xl {
    padding-right: 160px;
  }
}
.theme-nada .p-b-0 {
  padding-bottom: 0;
}
.theme-nada .p-b-xxs {
  padding-bottom: 2px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-b-xxs {
    padding-bottom: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-b-xxs {
    padding-bottom: 4px;
  }
}
.theme-nada .p-b-xs {
  padding-bottom: 5px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-b-xs {
    padding-bottom: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-b-xs {
    padding-bottom: 10px;
  }
}
.theme-nada .p-b-s {
  padding-bottom: 10px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-b-s {
    padding-bottom: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-b-s {
    padding-bottom: 20px;
  }
}
.theme-nada .p-b-m {
  padding-bottom: 20px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-b-m {
    padding-bottom: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-b-m {
    padding-bottom: 40px;
  }
}
.theme-nada .p-b-l {
  padding-bottom: 40px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-b-l {
    padding-bottom: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-b-l {
    padding-bottom: 80px;
  }
}
.theme-nada .p-b-xl {
  padding-bottom: 80px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-b-xl {
    padding-bottom: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-b-xl {
    padding-bottom: 160px;
  }
}
.theme-nada .p-l-xxs {
  padding-left: 2px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-l-xxs {
    padding-left: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-l-xxs {
    padding-left: 4px;
  }
}
.theme-nada .p-l-xs {
  padding-left: 5px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-l-xs {
    padding-left: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-l-xs {
    padding-left: 10px;
  }
}
.theme-nada .p-l-s {
  padding-left: 10px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-l-s {
    padding-left: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-l-s {
    padding-left: 20px;
  }
}
.theme-nada .p-l-m {
  padding-left: 20px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-l-m {
    padding-left: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-l-m {
    padding-left: 40px;
  }
}
.theme-nada .p-l-l {
  padding-left: 40px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-l-l {
    padding-left: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-l-l {
    padding-left: 80px;
  }
}
.theme-nada .p-l-xl {
  padding-left: 80px;
}
@media screen and (min-width: 600px) {
  .theme-nada .p-l-xl {
    padding-left: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .p-l-xl {
    padding-left: 160px;
  }
}
.theme-nada .m-a-0 {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}
.theme-nada .m-a-xxs {
  margin: 2px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-a-xxs {
    margin: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-a-xxs {
    margin: 4px;
  }
}
.theme-nada .m-a-xs {
  margin: 5px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-a-xs {
    margin: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-a-xs {
    margin: 10px;
  }
}
.theme-nada .m-a-s {
  margin: 10px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-a-s {
    margin: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-a-s {
    margin: 20px;
  }
}
.theme-nada .m-a-m {
  margin: 20px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-a-m {
    margin: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-a-m {
    margin: 40px;
  }
}
.theme-nada .m-a-l {
  margin: 40px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-a-l {
    margin: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-a-l {
    margin: 80px;
  }
}
.theme-nada .m-a-xl {
  margin: 80px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-a-xl {
    margin: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-a-xl {
    margin: 160px;
  }
}
.theme-nada .m-x-xxs {
  margin-left: 2px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-x-xxs {
    margin-left: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-x-xxs {
    margin-left: 4px;
  }
}
.theme-nada .m-x-xxs {
  margin-right: 2px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-x-xxs {
    margin-right: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-x-xxs {
    margin-right: 4px;
  }
}
.theme-nada .m-x-xs {
  margin-left: 5px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-x-xs {
    margin-left: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-x-xs {
    margin-left: 10px;
  }
}
.theme-nada .m-x-xs {
  margin-right: 5px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-x-xs {
    margin-right: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-x-xs {
    margin-right: 10px;
  }
}
.theme-nada .m-x-s {
  margin-left: 10px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-x-s {
    margin-left: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-x-s {
    margin-left: 20px;
  }
}
.theme-nada .m-x-s {
  margin-right: 10px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-x-s {
    margin-right: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-x-s {
    margin-right: 20px;
  }
}
.theme-nada .m-x-m {
  margin-left: 20px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-x-m {
    margin-left: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-x-m {
    margin-left: 40px;
  }
}
.theme-nada .m-x-m {
  margin-right: 20px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-x-m {
    margin-right: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-x-m {
    margin-right: 40px;
  }
}
.theme-nada .m-x-l {
  margin-left: 40px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-x-l {
    margin-left: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-x-l {
    margin-left: 80px;
  }
}
.theme-nada .m-x-l {
  margin-right: 40px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-x-l {
    margin-right: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-x-l {
    margin-right: 80px;
  }
}
.theme-nada .m-x-xl {
  margin-left: 80px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-x-xl {
    margin-left: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-x-xl {
    margin-left: 160px;
  }
}
.theme-nada .m-x-xl {
  margin-right: 80px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-x-xl {
    margin-right: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-x-xl {
    margin-right: 160px;
  }
}
.theme-nada .m-y-xxs {
  margin-top: 2px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-y-xxs {
    margin-top: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-y-xxs {
    margin-top: 4px;
  }
}
.theme-nada .m-y-xxs {
  margin-bottom: 2px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-y-xxs {
    margin-bottom: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-y-xxs {
    margin-bottom: 4px;
  }
}
.theme-nada .m-y-xs {
  margin-top: 5px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-y-xs {
    margin-top: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-y-xs {
    margin-top: 10px;
  }
}
.theme-nada .m-y-xs {
  margin-bottom: 5px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-y-xs {
    margin-bottom: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-y-xs {
    margin-bottom: 10px;
  }
}
.theme-nada .m-y-s {
  margin-top: 10px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-y-s {
    margin-top: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-y-s {
    margin-top: 20px;
  }
}
.theme-nada .m-y-s {
  margin-bottom: 10px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-y-s {
    margin-bottom: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-y-s {
    margin-bottom: 20px;
  }
}
.theme-nada .m-y-m {
  margin-top: 20px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-y-m {
    margin-top: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-y-m {
    margin-top: 40px;
  }
}
.theme-nada .m-y-m {
  margin-bottom: 20px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-y-m {
    margin-bottom: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-y-m {
    margin-bottom: 40px;
  }
}
.theme-nada .m-y-l {
  margin-top: 40px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-y-l {
    margin-top: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-y-l {
    margin-top: 80px;
  }
}
.theme-nada .m-y-l {
  margin-bottom: 40px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-y-l {
    margin-bottom: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-y-l {
    margin-bottom: 80px;
  }
}
.theme-nada .m-y-xl {
  margin-top: 80px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-y-xl {
    margin-top: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-y-xl {
    margin-top: 160px;
  }
}
.theme-nada .m-y-xl {
  margin-bottom: 80px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-y-xl {
    margin-bottom: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-y-xl {
    margin-bottom: 160px;
  }
}
.theme-nada .m-t-xxs {
  margin-top: 2px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-t-xxs {
    margin-top: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-t-xxs {
    margin-top: 4px;
  }
}
.theme-nada .m-t-xs {
  margin-top: 5px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-t-xs {
    margin-top: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-t-xs {
    margin-top: 10px;
  }
}
.theme-nada .m-t-s {
  margin-top: 10px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-t-s {
    margin-top: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-t-s {
    margin-top: 20px;
  }
}
.theme-nada .m-t-m {
  margin-top: 20px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-t-m {
    margin-top: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-t-m {
    margin-top: 40px;
  }
}
.theme-nada .m-t-l {
  margin-top: 40px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-t-l {
    margin-top: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-t-l {
    margin-top: 80px;
  }
}
.theme-nada .m-t-xl {
  margin-top: 80px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-t-xl {
    margin-top: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-t-xl {
    margin-top: 160px;
  }
}
.theme-nada .m-r-xxs {
  margin-right: 2px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-r-xxs {
    margin-right: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-r-xxs {
    margin-right: 4px;
  }
}
.theme-nada .m-r-xs {
  margin-right: 5px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-r-xs {
    margin-right: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-r-xs {
    margin-right: 10px;
  }
}
.theme-nada .m-r-s {
  margin-right: 10px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-r-s {
    margin-right: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-r-s {
    margin-right: 20px;
  }
}
.theme-nada .m-r-m {
  margin-right: 20px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-r-m {
    margin-right: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-r-m {
    margin-right: 40px;
  }
}
.theme-nada .m-r-l {
  margin-right: 40px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-r-l {
    margin-right: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-r-l {
    margin-right: 80px;
  }
}
.theme-nada .m-r-xl {
  margin-right: 80px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-r-xl {
    margin-right: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-r-xl {
    margin-right: 160px;
  }
}
.theme-nada .m-b-xxs {
  margin-bottom: 2px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-b-xxs {
    margin-bottom: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-b-xxs {
    margin-bottom: 4px;
  }
}
.theme-nada .m-b-xs {
  margin-bottom: 5px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-b-xs {
    margin-bottom: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-b-xs {
    margin-bottom: 10px;
  }
}
.theme-nada .m-b-s {
  margin-bottom: 10px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-b-s {
    margin-bottom: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-b-s {
    margin-bottom: 20px;
  }
}
.theme-nada .m-b-m {
  margin-bottom: 20px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-b-m {
    margin-bottom: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-b-m {
    margin-bottom: 40px;
  }
}
.theme-nada .m-b-l {
  margin-bottom: 40px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-b-l {
    margin-bottom: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-b-l {
    margin-bottom: 80px;
  }
}
.theme-nada .m-b-xl {
  margin-bottom: 80px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-b-xl {
    margin-bottom: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-b-xl {
    margin-bottom: 160px;
  }
}
.theme-nada .m-l-xxs {
  margin-left: 2px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-l-xxs {
    margin-left: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-l-xxs {
    margin-left: 4px;
  }
}
.theme-nada .m-l-xs {
  margin-left: 5px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-l-xs {
    margin-left: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-l-xs {
    margin-left: 10px;
  }
}
.theme-nada .m-l-s {
  margin-left: 10px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-l-s {
    margin-left: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-l-s {
    margin-left: 20px;
  }
}
.theme-nada .m-l-m {
  margin-left: 20px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-l-m {
    margin-left: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-l-m {
    margin-left: 40px;
  }
}
.theme-nada .m-l-l {
  margin-left: 40px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-l-l {
    margin-left: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-l-l {
    margin-left: 80px;
  }
}
.theme-nada .m-l-xl {
  margin-left: 80px;
}
@media screen and (min-width: 600px) {
  .theme-nada .m-l-xl {
    margin-left: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-nada .m-l-xl {
    margin-left: 160px;
  }
}
.theme-nada .hover-parent .when-hovered {
  opacity: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transition: opacity 0.3s;
}
.theme-nada .hover-parent:hover .when-hovered {
  opacity: 1;
  -webkit-user-select: auto;
     -moz-user-select: auto;
      -ms-user-select: auto;
          user-select: auto;
}
.theme-nada .no-transition {
  transition: none !important;
}
.theme-nada .no-transition * {
  transition: none !important;
}
.theme-nada .inline-block {
  display: inline-block;
}
.theme-nada .ws-nowrap {
  white-space: nowrap;
}
.theme-nada .bg-intro {
  background-image: url("/assets/intro/intro-bg.svg");
  background-size: cover;
  background-repeat: repeat-x;
  background-position: bottom;
}
.theme-nada .relative {
  position: relative;
}
.theme-nada .absolute {
  position: absolute;
}
.theme-nada .fixed {
  position: fixed;
}
.theme-nada .c-primary {
  color: #B71C1C !important;
}
.theme-nada .c-accent {
  color: #66BB6A !important;
}
.theme-nada .c-warn {
  color: #BDBDBD !important;
}
.theme-nada .c-success {
  color: #66bb6a !important;
}
.theme-nada .c-white {
  color: white !important;
}
.theme-nada .c-red {
  color: #f44336 !important;
}
.theme-nada .c-black {
  color: black !important;
}
.theme-nada .bg-primary {
  background-color: #B71C1C !important;
}
.theme-nada .bg-accent {
  background-color: #66BB6A !important;
}
.theme-nada .bg-warn {
  background-color: #BDBDBD !important;
}
.theme-nada .bg-success {
  background-color: #66bb6a !important;
}
.theme-nada .bg-white {
  background-color: white !important;
}
.theme-nada .bg-dark {
  background-color: #303a48;
}
.theme-nada .bg-light {
  background-color: #e9ebec;
}
.theme-nada .bg-primary-transparentize {
  background-color: rgba(183, 28, 28, 0.1);
}
.theme-nada .bg-acent-transparentize {
  background-color: rgba(102, 187, 106, 0.1);
}
.theme-nada .bg-warn-transparentize {
  background-color: rgba(189, 189, 189, 0.1);
}
.theme-nada .border-primary {
  border: 2px solid #B71C1C !important;
}
.theme-nada .border-accent {
  border: 2px solid #66BB6A !important;
}
.theme-nada .border-warn {
  border: 2px solid #BDBDBD !important;
}
.theme-nada .border-success {
  border: 2px solid #66bb6a !important;
}
.theme-nada .op-50 {
  opacity: 0.5;
}
.theme-nada .min-h-full {
  min-height: 100vh;
}
.theme-nada .fs-10 {
  font-size: 1rem;
}
.theme-nada .fs-xs {
  font-size: x-small;
}
.theme-nada .fs-s {
  font-size: small;
}
.theme-nada .fs-10 {
  font-size: 10px !important;
}
.theme-nada .fs-12 {
  font-size: 12px !important;
}
.theme-nada .fs-14 {
  font-size: 14px !important;
}
.theme-nada .fs-15 {
  font-size: 15px !important;
}
.theme-nada .fs-18 {
  font-size: 18px !important;
}
.theme-nada .fs-20 {
  font-size: 20px !important;
}
.theme-nada .fs-35 {
  font-size: 35px !important;
}
.theme-nada .wb-all {
  word-break: break-all;
}
.theme-nada .capitalize {
  text-transform: capitalize;
}
.theme-nada .lowercase {
  text-transform: lowercase;
}
.theme-nada .us-none {
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
.theme-nada .box-shadow {
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.theme-nada .disabled {
  opacity: 0.5;
  pointer-events: none;
}
.theme-nada .read-only {
  pointer-events: none;
}
.theme-nada .of-x-auto {
  overflow-x: auto;
}
.theme-nada .of-x-hidden {
  overflow-x: hidden;
}
.theme-nada .of-hidden {
  overflow: hidden;
}
.theme-nada .of-y-auto {
  overflow-y: auto;
}
.theme-nada .of-y-hidden {
  overflow-y: hidden;
}
.theme-nada .hidden {
  opacity: 0;
  visibility: hidden;
}
.theme-nada .pointer {
  cursor: pointer;
}
.theme-nada .cursor-drag {
  cursor: -webkit-grab;
  cursor: grab;
}
.theme-nada .cursor-move {
  cursor: move;
}
.theme-nada .p-tabs {
  padding: 6rem 0 2rem;
}
@media (max-width: 768px) {
  .theme-nada .p-tabs {
    padding-top: 8rem;
  }
}
.theme-nada .p-tabs-small {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}
@media (max-width: 768px) {
  .theme-nada .p-tabs-small {
    padding-top: 5rem;
  }
}
.theme-nada .active-scorecard {
  outline: 0.3rem solid #FBC02D;
}
.theme-nada .scorecard-label {
  font-size: 1.2rem;
  margin-bottom: -0.6rem;
}
.theme-nada .ls-1 {
  letter-spacing: -1px;
}
.theme-nada .mat-bar {
  height: 64px;
}
.theme-nada .mat-bar-m {
  height: 128px;
}
.theme-nada .mat-bar-l {
  height: 192px;
}
.theme-nada .mat-bar-xl {
  height: 256px;
}
.theme-nada .gm-target td {
  font-size: 1.4rem;
}
.theme-nada .gm-target td:nth-last-child(1) {
  text-align: right;
}
.theme-nada .dept-target td {
  font-size: 1.1rem;
  padding: 0.8rem;
}
.theme-nada .dept-target td:nth-child(1) {
  padding: 0.2rem 0.2rem 0.2rem 2.4rem;
}
.theme-nada .dept-target td:nth-last-child(1) {
  padding: 0.8rem 2.4rem 0.8rem 0.8rem;
}
.theme-nada .dept-target td:nth-last-child(1) {
  text-align: right;
}
.theme-nada button.loading {
  pointer-events: none;
  position: relative;
  border: none;
  color: transparent;
}
.theme-nada button.loading span, .theme-nada button.loading svg, .theme-nada button.loading img {
  opacity: 0;
}
.theme-nada button.loading:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 1.8rem;
  width: 1.8rem;
  border-radius: 50%;
  border-width: 0.2rem;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.9) rgba(0, 0, 0, 0.9) transparent transparent;
  -webkit-animation: loading-animation 0.75s linear infinite;
          animation: loading-animation 0.75s linear infinite;
}
@keyframes loading-animation {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@media (max-width: 768px) {
  .theme-nada .small-font-on-mobile {
    font-size: 10px;
  }
}
.theme-nada .ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.theme-nada .vertical-line {
  top: 0;
  height: 100%;
  border-left: 1px solid #B71C1C;
}
.theme-nada .docs-tooltip-icon {
  position: absolute;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.theme-nada .api-icon {
  height: 2rem;
  color: #B71C1C;
}
.theme-nada .dot {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
}
.theme-nada .high-panel {
  font-size: 12px !important;
}
.theme-nada .high-panel .mat-optgroup-label,
.theme-nada .high-panel .mat-option {
  line-height: 20px !important;
  height: 20px !important;
}
.theme-nada .warning-card {
  color: white;
  background: #f44336;
  padding: 1rem;
}
.theme-nada .theme-dark .spreadsheet .report-table.report-table th {
  background: #424242 !important;
}
.theme-nada .theme-dark .c-black.c-black {
  color: white !important;
}
.theme-nada .theme-dark.theme-dark .spreadsheet .spreadsheet-table td:nth-child(1),
.theme-nada .theme-dark.theme-dark .spreadsheet .clear-row td {
  background: transparent !important;
}
.theme-nada .theme-dark .daily-avg-row td {
  background: #081849 !important;
}
.theme-nada .theme-dark .year-row td {
  background: #55745e !important;
}
.theme-nada .theme-dark .board-card, .theme-nada .theme-dark .board-card-header, .theme-nada .theme-dark .chat-bar-header {
  background: #424242 !important;
}
.theme-nada .theme-dark .board-card-task, .theme-nada .theme-dark .chat-bar-content-wrapper, .theme-nada .theme-dark small {
  background: #636363 !important;
}
.theme-nada .theme-dark .vertical-text {
  color: white;
}
.theme-nada .sticky-header {
  background: white !important;
}
.theme-nada .fc-unthemed td.fc-today {
  background: #eee;
}
.theme-nada .fc-basicDay-button:not(.fc-state-active),
.theme-nada .fc-basicWeek-button:not(.fc-state-active),
.theme-nada .fc-basicMonth-button:not(.fc-state-active),
.theme-nada .fc-next-button,
.theme-nada .fc-prev-button,
.theme-nada .fc-today-button {
  color: rgba(0, 0, 0, 0.9);
}
.theme-nada nelson-tag-input {
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: white;
}
.theme-nada nelson-tag-input .chip-wrapper {
  border: 1px solid rgba(0, 0, 0, 0.2) !important;
  background: #f5f5f5 !important;
}
.theme-nada nelson-tag-input .chip-input {
  color: rgba(0, 0, 0, 0.9) !important;
}
.theme-nada nelson-tag-input ul {
  background-color: #f5f5f5 !important;
  color: rgba(0, 0, 0, 0.9) !important;
}
.theme-nada nelson-tag-input ul li:hover, .theme-nada nelson-tag-input ul li.active {
  background: #eee !important;
}
.theme-nada .c3-tooltip {
  color: black;
}
.theme-nada .tick line, .theme-nada .domain {
  stroke: rgba(0, 0, 0, 0.9) !important;
}
.theme-nada nelson-chart-wrapper {
  fill: rgba(0, 0, 0, 0.9) !important;
}
.theme-nada nelson-navbar .mat-select-value {
  color: rgba(255, 255, 255, 0.9);
}
.theme-nada nelson-navbar .mat-select-arrow {
  color: rgba(255, 255, 255, 0.6);
}
.theme-nada nelson-navbar .mat-form-field-appearance-legacy .mat-form-field-underline {
  background-color: rgba(255, 255, 255, 0.6);
}
.theme-nada nelson-navbar .mat-form-field-ripple {
  border-color: rgba(255, 255, 255, 0.6);
}
.theme-nada nelson-navbar .mat-form-field-appearance-legacy .mat-form-field-label {
  color: rgba(255, 255, 255, 0.6);
}
.theme-nada nelson-navbar .mat-select-disabled .mat-select-value {
  color: rgba(204, 204, 204, 0.6);
}
.theme-nada nelson-navbar .mat-form-field .mat-select.mat-select-disabled .mat-select-arrow {
  color: rgba(204, 204, 204, 0.6);
}
.theme-nada nelson-navbar .mat-button-toggle-appearance-standard {
  color: rgba(204, 204, 204, 0.6) !important;
}
.theme-nada .cdk-overlay-pane {
  max-width: calc(100vw - 200px) !important;
}
@media (max-width: 1200px) {
  .theme-nada .cdk-overlay-pane {
    margin-left: 0;
    max-width: 90vw !important;
  }
}
.theme-nada .layout-compact-body .cdk-overlay-pane {
  max-width: 90vw !important;
  margin-left: 0 !important;
}
@media (max-width: 599px) {
  .theme-nada .cdk-overlay-pane {
    max-width: 100vw !important;
  }
}
@media (max-width: 599px) {
  .theme-nada .mat-tab-link {
    min-width: 80px;
  }
}
.theme-nada .mat-form-field.mat-focused .mat-form-field-ripple {
  background: #B71C1C !important;
}
.theme-nada .mat-primary .mat-pseudo-checkbox-checked {
  background: #B71C1C !important;
}
.theme-nada .mat-button-toggle-group,
.theme-nada .mat-button-toggle-standalone {
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12) !important;
}
.theme-nada .mat-button-toggle-group-appearance-standard {
  border: none !important;
}
.theme-nada .mat-button-toggle-appearance-standard {
  background: transparent !important;
  color: rgba(0, 0, 0, 0.6) !important;
}
.theme-nada .mat-button-toggle-appearance-standard.mat-button-toggle-checked {
  background-color: #e0e0e0 !important;
  color: rgba(0, 0, 0, 0.9) !important;
}
.theme-nada .mat-button-toggle-appearance-standard .mat-button-toggle-label-content {
  line-height: 36px !important;
}
.theme-nada .mat-icon-button:hover {
  color: #B71C1C !important;
}
.theme-nada .mat-input-small .mat-form-field-infix {
  width: 80px !important;
}
.theme-nada .fab-fixed {
  position: fixed !important;
  bottom: 2rem;
  right: 2rem;
}
.theme-nada .no-box-shadow .mat-expansion-panel {
  box-shadow: none !important;
}
.theme-nada .mat-option.mat-active span {
  color: rgba(0, 0, 0, 0.87);
}
.theme-nada .mat-form-field.mat-focused .mat-form-field-label {
  color: gray !important;
}
.theme-nada .mat-input-element {
  color: rgba(0, 0, 0, 0.9) !important;
}
.theme-nada mat-form-field.c-white .mat-input-element {
  color: white !important;
}
.theme-nada .mat-dialog-container {
  max-height: 100vh !important;
}
.theme-nada .bg-dark-gray .mat-dialog-container {
  background: #303a48 !important;
}
.theme-nada .mat-tab-header-pagination {
  z-index: 1 !important;
}
.theme-nada .mat-tab-links {
  background: white !important;
}
.theme-nada .mat-tab-links i.material-icons {
  color: rgba(0, 0, 0, 0.6) !important;
}
.theme-nada .select-trigger {
  color: rgba(0, 0, 0, 0.9) !important;
  border-bottom-color: rgba(0, 0, 0, 0.2) !important;
}
.theme-nada .select-dropdown {
  background: white !important;
}
.theme-nada .select-dropdown-item {
  color: rgba(0, 0, 0, 0.9) !important;
}
.theme-nada .select-dropdown-item:hover {
  background: #eee !important;
}
.theme-nada .file-upload {
  border-bottom-color: rgba(0, 0, 0, 0.2) !important;
}
.theme-nada .auth0-lock-cred-pane :nth-child(3) > span {
  width: 100%;
}
.theme-nada .auth0-lock-social-button-icon {
  background-size: 100% !important;
}
.theme-nada .auth0-lock.auth0-lock .auth0-lock-content {
  padding: 40px !important;
}
.theme-nada .auth0-lock.auth0-lock .auth0-lock-social-button {
  border: 1px solid #f1f1f1 !important;
  transition: 0.2s;
  padding: 2px;
  box-sizing: border-box;
  background-color: #4285F4 !important;
}
.theme-nada .auth0-lock.auth0-lock .auth0-lock-social-button-icon {
  float: left !important;
  display: inline-block !important;
  width: 36px !important;
  height: 36px !important;
  background-color: white !important;
  top: 1px !important;
  left: 1px !important;
  border-radius: 1px !important;
}
.theme-nada .auth0-lock.auth0-lock .auth0-lock-social-button.auth0-lock-social-big-button .auth0-lock-social-button-text {
  padding-left: 52px;
  text-transform: unset !important;
  font-family: Roboto, sans-serif;
  line-height: 35px !important;
  color: white !important;
  font-weight: 600 !important;
  font-size: 14px !important;
}
.theme-nada .ngx-datatable.material {
  background: white !important;
}
.theme-nada .datatable-header-cell {
  color: rgba(0, 0, 0, 0.9) !important;
  background: white !important;
}
.theme-nada .datatable-body-cell,
.theme-nada .datatable-footer,
.theme-nada .datatable-pager a {
  color: rgba(0, 0, 0, 0.6) !important;
}
.theme-nada .datatable-body-row:hover,
.theme-nada .datatable-body-row:hover .datatable-row-group {
  background: #eee !important;
}
.theme-nada .datatable-header {
  display: flex !important;
  align-items: center;
}
.theme-nada .datatable-header .resize-handle {
  border-right-color: #eee !important;
}
.theme-nada .datatable-body-cell,
.theme-nada .datatable-header-cell {
  display: inline-flex !important;
  align-items: center;
}
.theme-nada .datatable-body-cell {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.theme-nada .datatable-row-detail,
.theme-nada .datatable-row-left {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  background: white !important;
  color: rgba(0, 0, 0, 0.6) !important;
}
.theme-nada .details-overflow .datatable-row-detail {
  overflow-y: auto !important;
}
.theme-nada .ngx-datatable .mat-form-field-label-wrapper {
  box-sizing: content-box;
}
.theme-nada .empty-row {
  color: rgba(0, 0, 0, 0.6) !important;
}
.theme-nada .noUi-horizontal {
  height: 6px;
}
.theme-nada .noUi-tooltip {
  opacity: 0;
  transition: 0.2s;
}
.theme-nada .noUi-horizontal .noUi-handle {
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  transform: translateX(-50%) translateY(-40%);
}
.theme-nada .noUi-horizontal .noUi-handle:after, .theme-nada .noUi-horizontal .noUi-handle:before {
  display: none;
}
.theme-nada .noUi-horizontal .noUi-handle:hover .noUi-tooltip, .theme-nada .noUi-horizontal .noUi-handle.noUi-active .noUi-tooltip {
  opacity: 1;
}
.theme-nada .noUi-connect {
  background: #B71C1C;
}
.theme-nada .noUi-wrapper {
  padding-bottom: 40px;
}
.theme-nada .noUi-marker-horizontal.noUi-marker-large {
  top: 10px;
  height: 8px;
}
.theme-nada .header-slider .noUi-horizontal .noUi-tooltip {
  bottom: -270%;
}
.theme-nada .ngx-datatable .datatable-body .datatable-row-wrapper:hover {
  z-index: 1;
}
.theme-nada .jsoneditor-poweredBy {
  display: none;
}
.theme-nada .swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.theme-nada .swiper-button-next, .theme-nada .swiper-button-prev {
  background-image: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.75);
}
.theme-nada .swiper-button-next svg, .theme-nada .swiper-button-prev svg {
  width: 30px;
}
@media (max-width: 768px) {
  .theme-nada .mat-button-toggle-button, .theme-nada .mat-button-toggle-label-content {
    width: 100% !important;
  }
  .theme-nada .mat-tab-link {
    font-size: 10px;
  }
}
.theme-nada .report-tag td:first-child {
  border-right: 2px solid #B71C1C;
}
@media (max-width: 600px) {
  .theme-nada .c3-axis.c3-axis-x tspan:not(:nth-child(1)) {
    display: none;
  }
}
.theme-nada #mce-modal-block {
  z-index: 63000 !important;
}
.theme-nada .cdk-overlay-container {
  z-index: 63001 !important;
}
.theme-nada .pre {
  margin: 0;
}
.theme-nada .language-markup {
  color: white;
}
.theme-nada .language-markup .token {
  color: white;
}
.theme-nada .tooltip-font-12 {
  font-size: 12px !important;
}
@page {
  .theme-nada {
    size: a4;
    margin: 10px;
  }
}
.theme-nada .show-print {
  display: none;
}
@media print {
  .theme-nada .show-print {
    display: block;
  }
}
@media print {
  .theme-nada .hide-print {
    display: none;
  }
  .theme-nada .cdk-overlay-container {
    position: static !important;
  }
  .theme-nada .cdk-overlay-connected-position-bounding-box {
    display: none !important;
  }
  .theme-nada .cdk-overlay-backdrop {
    display: none !important;
  }
  .theme-nada .cdk-global-overlay-wrapper {
    position: static !important;
  }
  .theme-nada .cdk-overlay-pane {
    max-width: unset !important;
  }
  .theme-nada .cdk-global-scrollblock {
    position: static !important;
    overflow-y: visible !important;
  }
  .theme-nada .mat-dialog-container {
    box-shadow: unset !important;
    padding: 10px !important;
    overflow: visible !important;
  }
  .theme-nada .p-tabs {
    padding: 0;
  }
  .theme-nada .active-scorecard {
    outline: none;
  }
  .theme-nada .scorecards h1, .theme-nada .scorecards h2, .theme-nada .scorecards h3, .theme-nada .scorecards h4, .theme-nada .scorecards h5, .theme-nada .scorecards h6 {
    font-size: 14px;
  }
  .theme-nada .scorecards p {
    font-size: 11px;
  }
  .theme-nada .docs-tooltip-icon {
    display: none;
  }
  .theme-nada .print-modal-header {
    display: none;
  }
  .theme-nada .print-modal-subheader {
    display: none;
  }
  .theme-nada .print-modal-body {
    max-height: unset !important;
    padding-top: unset !important;
    overflow: visible !important;
  }
  .theme-nada .db-main {
    left: 0;
    top: 0;
    width: 100%;
    height: unset !important;
    min-height: unset !important;
    background: unset !important;
  }
}
.theme-dark {
  /*
   * Box sizing
   */
  /*
   * Page setup
   */
  /*
   * Custom scrollbar
   */
  /*
   * Dashboard sidebar
   */
  /*
   * Dashboard header
   */
  /*
   * Dashboard main
   */
  /*
   * Dashboard tabs
   */
  /*
   * Dashboard tabs
   */
  /*
   * Loading toast
   */
  /*
   * Compact navigation style
   */
  /*
   * Simple sidebar
   */
  /*
   * Layout responsive style
   */
  /*
   * Simple table
   */
  /*
   * No style table
   */
  /*
   * Print table
   */
  /*
   * Flex
   */
  /*
   * Width
   */
  /*
   * Height
   */
  /*
   * Text align
   */
  /*
   * Border-radius
   */
  /*
   * Text transform
   */
  /*
   * Hide & show
   */
  /*
   * Columns
   */
  /*
   * Padding
   */
  /*
   * Margin
   */
  /*
   * Sticky header
   */
  /*
   * Calendar
   */
  /*
   * Nelson tag input
   */
  /*
   * Nelson chart
   */
  /*
   * Navbar overrides
   */
  /*
   * Material overrides
   */
  /*
   * add-remove-select component override
   */
  /*
   * file-upload component
   */
  /*
   * Auth0 overrides
   */
  /*
   * ngx-datatable overrides
   */
  /*
   * noUi slider overrides
   */
  /**
   * NoUi header class
   */
  /*@media (max-width: 762px) {
    mat-panel-title {
      margin-right: 0!important;

    }
    mat-panel-description {
      margin-right: 0!important;
    }
  }*/
  /*
   * JSON editor overrides
   */
  /*
   * Page builder slider
   */
  /*
   * Report overrides
   */
  /*
   * Prism
   */
}
.theme-dark html {
  box-sizing: border-box;
  width: 100%;
}
.theme-dark *,
.theme-dark *:before,
.theme-dark *:after {
  box-sizing: border-box;
}
.theme-dark body {
  margin: 0;
  overflow-x: hidden;
  min-height: 100vh;
  background: #212121;
}
.theme-dark ::-webkit-scrollbar {
  width: 8px;
  height: 3px;
}
.theme-dark ::-webkit-scrollbar-track {
  border-radius: 0;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.35);
  background: rgba(238, 238, 238, 0.2);
}
.theme-dark ::-webkit-scrollbar-thumb {
  border-radius: 40px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.35);
  background: rgba(170, 170, 170, 0.7);
}
.theme-dark img {
  max-width: 100%;
  font-style: italic;
  vertical-align: middle;
}
.theme-dark .img-full {
  width: 100%;
  height: 100%;
}
.theme-dark .img-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.theme-dark .img-contain {
  -o-object-fit: contain;
     object-fit: contain;
}
.theme-dark .img-container {
  position: relative;
  overflow: hidden;
}
.theme-dark .img-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.theme-dark .img-container[data-aspect-ratio="1:1"] {
  padding-bottom: 100%;
}
.theme-dark .img-container[data-aspect-ratio="4:3"] {
  padding-bottom: 75%;
}
.theme-dark html {
  color: rgba(255, 255, 255, 0.6);
}
.theme-dark h1, .theme-dark h2, .theme-dark h3, .theme-dark h4, .theme-dark h5, .theme-dark h6 {
  color: rgba(255, 255, 255, 0.9);
}
.theme-dark p {
  color: rgba(255, 255, 255, 0.6);
}
.theme-dark fieldset legend {
  color: rgba(255, 255, 255, 0.6);
}
.theme-dark hr {
  border-color: rgba(255, 255, 255, 0.2);
}
.theme-dark .vr {
  border-color: rgba(255, 255, 255, 0.2);
}
.theme-dark .grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 160rem;
  width: 100%;
  margin: 0 auto;
}
.theme-dark .grid > [class*=col] {
  padding: 1rem;
}
.theme-dark .grid.full {
  max-width: 100%;
}
.theme-dark .grid.gutter-l > [class*=col] {
  padding: 2rem;
}
.theme-dark .grid.gutter-m > [class*=col] {
  padding: 1rem;
}
.theme-dark .grid.gutter-s > [class*=col] {
  padding: 0.5rem;
}
.theme-dark .grid.nogutter > [class*=col] {
  padding: 0;
}
.theme-dark .grid .col-1 {
  flex-basis: 8.3333%;
  width: 8.3333%;
}
.theme-dark .grid .col-2 {
  flex-basis: 16.6666%;
  width: 16.6666%;
}
.theme-dark .grid .col-3 {
  flex-basis: 25%;
  width: 25%;
}
.theme-dark .grid .col-4 {
  flex-basis: 33.3333%;
  width: 33.3333%;
}
.theme-dark .grid .col-5 {
  flex-basis: 41.6666%;
  width: 41.6666%;
}
.theme-dark .grid .col-6 {
  flex-basis: 50%;
  width: 50%;
}
.theme-dark .grid .col-7 {
  flex-basis: 58.3333%;
  width: 58.3333%;
}
.theme-dark .grid .col-8 {
  flex-basis: 66.6666%;
  width: 66.6666%;
}
.theme-dark .grid .col-9 {
  flex-basis: 75%;
  width: 75%;
}
.theme-dark .grid .col-10 {
  flex-basis: 83.3333%;
  width: 83.3333%;
}
.theme-dark .grid .col-11 {
  flex-basis: 91.6666%;
  width: 91.6666%;
}
.theme-dark .grid .col-12 {
  flex-basis: 100%;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .theme-dark .grid .o-m-last {
    order: 9;
  }
  .theme-dark .grid .col-m-0 {
    display: none;
  }
  .theme-dark .grid .col-m-1 {
    flex-basis: 8.3333%;
    width: 8.3333%;
  }
  .theme-dark .grid .col-m-2 {
    flex-basis: 16.6666%;
    width: 16.6666%;
  }
  .theme-dark .grid .col-m-3 {
    flex-basis: 25%;
    width: 25%;
  }
  .theme-dark .grid .col-m-4 {
    flex-basis: 33.3333%;
    width: 33.3333%;
  }
  .theme-dark .grid .col-m-5 {
    flex-basis: 41.6666%;
    width: 41.6666%;
  }
  .theme-dark .grid .col-m-6 {
    flex-basis: 50%;
    width: 50%;
  }
  .theme-dark .grid .col-m-7 {
    flex-basis: 58.3333%;
    width: 58.3333%;
  }
  .theme-dark .grid .col-m-8 {
    flex-basis: 66.6666%;
    width: 66.6666%;
  }
  .theme-dark .grid .col-m-9 {
    flex-basis: 75%;
    width: 75%;
  }
  .theme-dark .grid .col-m-10 {
    flex-basis: 83.3333%;
    width: 83.3333%;
  }
  .theme-dark .grid .col-m-11 {
    flex-basis: 91.6666%;
    width: 91.6666%;
  }
  .theme-dark .grid .col-m-12 {
    flex-basis: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 850px) {
  .theme-dark .grid .o-s-last {
    order: 9;
  }
  .theme-dark .grid .col-s-0 {
    display: none;
  }
  .theme-dark .grid .col-s-1 {
    flex-basis: 8.3333%;
    width: 8.3333%;
  }
  .theme-dark .grid .col-s-2 {
    flex-basis: 16.6666%;
    width: 16.6666%;
  }
  .theme-dark .grid .col-s-3 {
    flex-basis: 25%;
    width: 25%;
  }
  .theme-dark .grid .col-s-4 {
    flex-basis: 33.3333%;
    width: 33.3333%;
  }
  .theme-dark .grid .col-s-5 {
    flex-basis: 41.6666%;
    width: 41.6666%;
  }
  .theme-dark .grid .col-s-6 {
    flex-basis: 50%;
    width: 50%;
  }
  .theme-dark .grid .col-s-7 {
    flex-basis: 58.3333%;
    width: 58.3333%;
  }
  .theme-dark .grid .col-s-8 {
    flex-basis: 66.6666%;
    width: 66.6666%;
  }
  .theme-dark .grid .col-s-9 {
    flex-basis: 75%;
    width: 75%;
  }
  .theme-dark .grid .col-s-10 {
    flex-basis: 83.3333%;
    width: 83.3333%;
  }
  .theme-dark .grid .col-s-11 {
    flex-basis: 91.6666%;
    width: 91.6666%;
  }
  .theme-dark .grid .col-s-12 {
    flex-basis: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 450px) {
  .theme-dark .grid .o-xs-last {
    order: 9;
  }
  .theme-dark .grid .col-xs-0 {
    display: none;
  }
  .theme-dark .grid .col-xs-1 {
    flex-basis: 8.3333%;
    width: 8.3333%;
  }
  .theme-dark .grid .col-xs-2 {
    flex-basis: 16.6666%;
    width: 16.6666%;
  }
  .theme-dark .grid .col-xs-3 {
    flex-basis: 25%;
    width: 25%;
  }
  .theme-dark .grid .col-xs-4 {
    flex-basis: 33.3333%;
    width: 33.3333%;
  }
  .theme-dark .grid .col-xs-5 {
    flex-basis: 41.6666%;
    width: 41.6666%;
  }
  .theme-dark .grid .col-xs-6 {
    flex-basis: 50%;
    width: 50%;
  }
  .theme-dark .grid .col-xs-7 {
    flex-basis: 58.3333%;
    width: 58.3333%;
  }
  .theme-dark .grid .col-xs-8 {
    flex-basis: 66.6666%;
    width: 66.6666%;
  }
  .theme-dark .grid .col-xs-9 {
    flex-basis: 75%;
    width: 75%;
  }
  .theme-dark .grid .col-xs-10 {
    flex-basis: 83.3333%;
    width: 83.3333%;
  }
  .theme-dark .grid .col-xs-11 {
    flex-basis: 91.6666%;
    width: 91.6666%;
  }
  .theme-dark .grid .col-xs-12 {
    flex-basis: 100%;
    width: 100%;
  }
}
.theme-dark .layout-fluid .grid {
  max-width: unset !important;
}
.theme-dark .bg-color {
  background: rgba(38, 38, 38, 0.9);
}
.theme-dark .collapsed-menu {
  margin-left: 40px !important;
}
.theme-dark .compact-title {
  font-size: 18px;
  color: #d0d6e2;
  padding: 0 16px;
  height: 40px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #d0d6e2;
}
.theme-dark .sidebar-mat-menu {
  background: rgba(38, 38, 38, 0.9);
  margin-left: 180px;
  border-radius: 0 !important;
  min-height: auto !important;
  border: 1px solid rgba(0, 0, 0, 0.12);
}
.theme-dark .sidebar-mat-menu .mat-menu-item {
  color: #d0d6e2;
  line-height: 1;
  height: 40px;
}
.theme-dark .sidebar-mat-menu .mat-menu-item.active {
  color: #FBC02D;
  font-weight: 700;
}
.theme-dark .sidebar-mat-menu .mat-menu-item:hover {
  background: rgba(255, 255, 255, 0.1);
}
.theme-dark .sidebar-mat-menu .mat-menu-item:hover .favorite {
  opacity: 1;
  pointer-events: auto;
}
.theme-dark .sidebar-mat-menu .mat-menu-content {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.theme-dark .sidebar-mat-menu .mat-menu-item-submenu-trigger::after {
  color: #d0d6e2;
}
.theme-dark .sidebar-mat-menu-child {
  margin-top: 7px !important;
  background: rgba(38, 38, 38, 0.9);
  border-radius: 0 !important;
  min-height: auto !important;
  border: 1px solid rgba(0, 0, 0, 0.12);
}
.theme-dark .sidebar-mat-menu-child .mat-menu-item {
  color: #d0d6e2;
  line-height: 1;
  height: 40px;
}
.theme-dark .sidebar-mat-menu-child .mat-menu-item.active {
  color: #FBC02D;
  font-weight: 700;
}
.theme-dark .sidebar-mat-menu-child .mat-menu-item:hover {
  background: rgba(255, 255, 255, 0.1);
}
.theme-dark .sidebar-mat-menu-child .mat-menu-content {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.theme-dark .sidebar-mat-menu-child .mat-menu-item-submenu-trigger::after {
  color: #d0d6e2;
}
.theme-dark .active-inner .active-primary-color {
  color: #FBC02D;
}
.theme-dark .favorite {
  pointer-events: none;
  opacity: 0;
  transition: 0.2s;
  cursor: pointer;
  margin-right: 0 !important;
}
.theme-dark .db-aside {
  position: fixed;
  z-index: 63004;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  width: 180px;
  height: 100%;
  color: #d0d6e2;
  background: #262626;
}
.theme-dark .db-aside-list {
  padding: 0;
  list-style: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  overflow-y: auto;
  overflow-x: hidden;
  line-height: 2.4;
}
.theme-dark .db-aside-list-item .divider {
  display: none;
  margin: 0;
}
.theme-dark .db-aside-list-item.expanded {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.5) 2px, rgba(255, 255, 255, 0.06) 2px, rgba(255, 255, 255, 0.06));
}
.theme-dark .db-aside-list-item.expanded .divider {
  display: block;
  border-color: #FBC02D !important;
  opacity: 60%;
}
.theme-dark .db-aside-list-item-logo {
  height: 64px;
  display: flex;
  justify-content: center;
}
.theme-dark .db-aside-list-item-link {
  display: flex;
  white-space: nowrap;
  align-items: center;
  width: 100%;
  padding: 8px;
  font-size: 14px;
}
.theme-dark .db-aside-list-item-link:hover {
  background: rgba(255, 255, 255, 0.04);
}
.theme-dark .db-aside-list-item-link.active {
  color: #FBC02D;
}
.theme-dark .db-aside-list-item-link-label {
  margin-left: 8px;
  margin-right: 8px;
}
.theme-dark .db-aside-list-item-link .navicon {
  color: rgba(160, 160, 179, 0.5);
}
.theme-dark .db-aside-list-item-link-expand {
  margin-left: auto;
  margin-right: 8px;
}
.theme-dark .db-aside-list-item-link-expand.expanded {
  transform: rotate(90deg);
}
.theme-dark .db-aside-list-nested {
  padding: 0;
  list-style: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  overflow: hidden;
  max-height: 0;
  transition: 0.4s;
}
.theme-dark .db-aside-list-nested.expanded {
  max-height: 1000px;
}
.theme-dark .db-aside-list-nested-item-link {
  position: relative;
  display: flex;
  white-space: nowrap;
  align-items: center;
  width: 100%;
  padding: 4px 8px 4px 25px;
  font-size: 13px;
  transition: 0.2s;
  justify-content: space-between;
}
.theme-dark .db-aside-list-nested-item-link:hover {
  background: rgba(255, 255, 255, 0.04);
}
.theme-dark .db-aside-list-nested-item-link:hover .favorite {
  pointer-events: auto;
  opacity: 1;
}
.theme-dark .db-aside-list-nested-item-link.active {
  color: #FBC02D;
  background: rgba(255, 255, 255, 0.06);
}
.theme-dark .db-aside-list-nested-item-link-icon {
  font-size: 20px;
  line-height: 20px;
  width: 20px;
  height: 20px;
}
.theme-dark .db-aside-list-nested-item-link-label {
  margin-left: 8px;
  margin-right: 8px;
}
.theme-dark .db-aside-list-nested-item-link-expand {
  font-size: 20px;
  line-height: 20px;
  width: 20px;
  height: 20px;
  margin-left: auto;
  margin-right: 8px;
}
.theme-dark .db-aside-list-nested-item-link-expand.expanded {
  transform: rotate(90deg);
}
.theme-dark .db-aside-list-nested-item-expand {
  padding: 0;
  list-style: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  overflow: hidden;
}
.theme-dark .db-aside-list-nested-item-expand-link {
  position: relative;
  display: flex;
  white-space: nowrap;
  align-items: center;
  width: 100%;
  padding: 4px 8px 4px 33px;
  font-size: 13px;
  transition: 0.2s;
  justify-content: space-between;
}
.theme-dark .db-aside-list-nested-item-expand-link:hover {
  background: rgba(255, 255, 255, 0.04);
}
.theme-dark .db-aside-list-nested-item-expand-link:hover .favorite {
  pointer-events: auto;
  opacity: 1;
}
.theme-dark .db-aside-list-nested-item-expand-link.active {
  color: #FBC02D;
}
.theme-dark .db-aside-list-nested-item-expand-link.expanded {
  transform: rotate(90deg);
}
.theme-dark .db-aside-list-nested-item-expand-link i {
  padding-right: 2px;
  margin: 0 0 0 auto;
  color: rgba(160, 160, 179, 0.5);
  font-size: 15px;
}
.theme-dark .db-header {
  position: fixed;
  z-index: 100;
  left: 180px;
  top: 0;
  width: calc(100% - 180px);
  height: 64px;
  color: #b8c2d6;
  background: #262626;
}
.theme-dark .db-header .header-profile-picture {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 10px;
}
.theme-dark .db-header .header-select {
  padding-top: 18px;
}
.theme-dark .db-header .cont-1 {
  flex: 2;
}
.theme-dark .db-header .cont-2 {
  flex: 0 1 auto;
}
.theme-dark .db-header .cont-2 .mat-icon-button {
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-size: 20px;
}
.theme-dark .db-header .cont-1-2 {
  flex: 1;
}
.theme-dark .db-header .cont-1-2 .header-select {
  flex: 1;
  width: 100px;
}
@media (max-width: 1200px) {
  .theme-dark .db-header .cont-1-2 .header-select {
    flex: 0 1 auto;
    width: 19vw;
  }
}
.theme-dark .db-main {
  overflow-x: hidden;
  position: relative;
  left: 180px;
  top: 64px;
  width: calc(100% - 180px);
  min-height: calc(100vh - 64px);
  background: #303030;
  -webkit-overflow-scrolling: touch;
}
.theme-dark .db-tabs {
  position: fixed !important;
  z-index: 2;
  left: 180px;
  width: calc(100% - 180px);
  transition: 0.2s;
}
.theme-dark .db-tabs .mat-tab-links {
  overflow-x: auto;
  background: white;
}
.theme-dark .db-tabs.filled {
  background: white;
  border: 1px solid #ccc;
  height: 48px;
}
.theme-dark .tab-active {
  background: #636363;
  font-weight: bold;
}
.theme-dark .db-subtabs {
  display: flex;
  align-items: center;
  position: fixed;
  z-index: 2;
  right: 4px;
  height: 48px;
}
.theme-dark .db-subtabs-action {
  margin-left: 5px;
}
.theme-dark .tab-nav-drop-down-added .db-subtabs {
  display: flex;
  position: relative;
  right: unset;
  height: unset;
  flex-direction: column;
  align-items: flex-start;
}
.theme-dark .tab-nav-drop-down-added .db-subtabs-action {
  margin-left: 0;
  margin-top: 10px;
  width: 100%;
  padding: 0 10px;
}
.theme-dark .tab-nav-drop-down-added .db-subtabs-action > * {
  width: 100% !important;
}
.theme-dark .loading-toast {
  display: flex;
  align-items: center;
  opacity: 0;
  position: fixed;
  z-index: 100;
  bottom: 0;
  left: 50%;
  padding: 8px 16px;
  border-top-left-radius: 0.6rem;
  border-top-right-radius: 0.6rem;
  background: #303a48;
  color: white;
  transform: translateX(-50%) translateY(100%);
  transition: 0.4s;
  -webkit-animation-delay: 300ms;
          animation-delay: 300ms;
}
.theme-dark .loading-toast.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.theme-dark .high-performance .loading-toast {
  transition: none !important;
  -webkit-animation-delay: 0ms !important;
          animation-delay: 0ms !important;
}
.theme-dark .layout-compact .db-aside {
  width: 40px !important;
}
.theme-dark .layout-compact .db-aside-list-item-link-label,
.theme-dark .layout-compact .db-aside-list-item-link-expand,
.theme-dark .layout-compact .db-aside-list-nested {
  display: none;
}
.theme-dark .layout-compact .db-header,
.theme-dark .layout-compact .db-tabs,
.theme-dark .layout-compact .db-main {
  left: 40px !important;
  width: calc(100% - 40px) !important;
}
.theme-dark simple-sidebar {
  overflow-y: auto;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  height: 100%;
  background: #424242;
  color: rgba(255, 255, 255, 0.6);
  transform: translateX(100%);
  transition: 0.2s;
}
.theme-dark simple-sidebar.active {
  box-shadow: -4px 0 8px rgba(0, 0, 0, 0.2);
  transform: translateX(0);
}
@media (max-width: 450px) {
  .theme-dark simple-sidebar {
    width: 100% !important;
  }
}
.theme-dark simple-sidebar .simple-sidebar-header, .theme-dark simple-sidebar .simple-sidebar-footer {
  height: 64px;
  padding: 0 20px;
  background: #2f2f2f;
}
.theme-dark simple-sidebar .simple-sidebar-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.theme-dark simple-sidebar .simple-sidebar-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.theme-dark simple-sidebar .simple-sidebar-content {
  overflow-y: auto;
  height: calc(100vh - 128px);
}
.theme-dark simple-sidebar .simple-sidebar-content.no-footer {
  height: calc(100vh - 64px);
}
.theme-dark simple-sidebar .hidden {
  display: none;
}
@media screen and (max-width: 1200px) {
  .theme-dark .db-aside {
    display: none !important;
  }
  .theme-dark .db-header,
.theme-dark .db-tabs,
.theme-dark .db-main {
    left: 0 !important;
    width: 100% !important;
  }
}
.theme-dark .long-select {
  width: 300px;
}
.theme-dark .notification-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  line-height: 18px;
  font-size: 10px;
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
  background: #FBC02D;
}
.theme-dark .read-format h1, .theme-dark .read-format h2, .theme-dark .read-format h3, .theme-dark .read-format h4, .theme-dark .read-format h5, .theme-dark .read-format h6 {
  margin: 1em 0 0.5em 0;
}
.theme-dark .read-format p, .theme-dark .read-format table, .theme-dark .read-format img {
  margin: 0 0 0.5em 0;
}
.theme-dark .read-format ul, .theme-dark .read-format ol {
  margin: -0.25em 0 0.5em 0;
}
.theme-dark .read-format a {
  text-decoration: underline;
}
.theme-dark .read-format hr {
  margin: 0.5em 0 0.5em 0;
}
.theme-dark .table-heading {
  font-weight: 500;
  background: rgba(0, 0, 0, 0.04);
  padding: 5px;
  border-bottom: 1px solid #999;
  text-align: center;
  font-size: 1.9rem;
}
.theme-dark .simple-table {
  border-collapse: collapse;
  width: calc(100% - 1px);
  text-align: left;
  background: #424242;
  /*
   * Smaller screen layout
   */
  /*
  @media screen and (max-width: $screen-s) {
    box-shadow: none;

    tr {
      display   : block;
      margin    : 1rem 0;
      box-shadow: $box-shadow;
    }

    td {
      display       : block;
      text-align    : right;
      border-bottom : 1px solid map_get($foreground, divider);

      &:nth-child(1) {
        padding: .8rem .8rem .8rem .8rem;
      }

      &:nth-last-child(1) {
        padding: .8rem .8rem .8rem .8rem;
      }

    }

    tr td:nth-last-child(1) {
      border-bottom: none;
    }

    td:before {
      content : attr(data-label);
      float   : left;
    }

    thead {
      opacity : 0;
      position: absolute;
      z-index : -1;
    }

  }
  */
}
.theme-dark .simple-table tr {
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.2);
}
.theme-dark .simple-table tr:nth-child(2n-1) {
  background: rgba(255, 255, 255, 0.08);
}
.theme-dark .simple-table tr:hover {
  background: #636363;
}
.theme-dark .simple-table tr.label-block {
  border-bottom: 1px solid rgba(255, 255, 255, 0.9);
}
.theme-dark .simple-table nelson-report-row:nth-child(2n) tr {
  background: #424242;
}
.theme-dark .simple-table nelson-report-row:nth-child(2n) tr:hover {
  background: #636363;
}
.theme-dark .simple-table thead tr:nth-child(1) {
  background: #424242;
}
.theme-dark .simple-table tbody tr:nth-last-child(1) {
  border-bottom: none;
}
.theme-dark .simple-table th {
  padding: 1.6rem 0.8rem;
  font-size: 1.1rem;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.6);
}
.theme-dark .simple-table th:nth-child(1) {
  padding: 0.8rem 0.8rem 0.8rem 2.4rem;
}
.theme-dark .simple-table th:nth-last-child(1) {
  padding: 0.8rem 2.4rem 0.8rem 0.8rem;
}
.theme-dark .simple-table td {
  padding: 0.8rem;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
}
.theme-dark .simple-table td:nth-child(1) {
  padding: 0.8rem 0.8rem 0.8rem 2.4rem;
}
.theme-dark .simple-table td:nth-last-child(1) {
  padding: 0.8rem 2.4rem 0.8rem 0.8rem;
}
.theme-dark .no-style-table {
  border-collapse: collapse;
  width: 100%;
  text-align: left;
}
.theme-dark .no-style-table td, .theme-dark .no-style-table th {
  padding: 0.4rem;
}
.theme-dark .print-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 10px;
}
.theme-dark .print-table tr:nth-child(2n) {
  background: #ddd;
}
.theme-dark .print-table td, .theme-dark .print-table th {
  padding: 2px 4px;
  text-align: left;
}
@media not print {
  .theme-dark .print-table.header-sticky {
    table-layout: fixed;
  }
  .theme-dark .print-table.header-sticky tbody {
    display: block;
    overflow: auto;
    max-height: 450px;
    width: 100%;
  }
  .theme-dark .print-table.header-sticky tr {
    display: flex;
  }
}
.theme-dark .label-block {
  font-weight: 700;
  cursor: pointer;
  border-bottom: 1px solid black !important;
}
@media (max-width: 640px) {
  .theme-dark .report-table td,
.theme-dark .report-table th {
    padding: 2px 4px 2px 2px !important;
    font-size: 10px !important;
  }
}
.theme-dark .report-tag {
  position: relative;
}
.theme-dark .report-tag td {
  text-align: center;
  padding: 0 !important;
}
.theme-dark .report-tag td:first-child {
  overflow: hidden;
  font-size: 1px;
  width: 50px;
}
@media (max-width: 640px) {
  .theme-dark .report-tag td:first-child {
    width: 20px;
  }
}
.theme-dark .report-tag td:first-child span {
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
          text-orientation: mixed;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
}
@media (max-width: 640px) {
  .theme-dark .report-tag td:first-child span {
    font-size: 10px;
  }
}
@media (max-width: 640px) {
  .theme-dark .report-tag td {
    padding: 0 !important;
  }
}
.theme-dark .grind-new-page {
  page-break-before: always;
}
.theme-dark .sticky-header {
  position: absolute;
  z-index: -1;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 16px 0;
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.16);
  background: white;
  border-top: 1px solid #cccccc;
}
.theme-dark .sticky-header.active {
  opacity: 1;
  z-index: 10;
}
.theme-dark .sticky-header.no-pad {
  padding: 0 !important;
}
.theme-dark .nada-column-count {
  line-height: 0;
  border-bottom: 1px solid black !important;
}
.theme-dark .nada-avg-row {
  background: #f6dad5 !important;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.25);
}
.theme-dark .nada-boc-row {
  background: #c7e2df !important;
}
.theme-dark .nada-total-row {
  background: #e3f2fd !important;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.25);
}
.theme-dark .nada-highlight-field {
  outline: 2px solid;
  background: #ccd9d7;
}
.theme-dark .nada-table-header th {
  background: #dfdac9;
  vertical-align: top;
  padding: 0.5rem !important;
}
@media (max-width: 600px) {
  .theme-dark .nada-table-header th {
    min-width: 90px;
  }
}
.theme-dark .nada-table-header th.sub-header {
  padding: 1.6rem 0.8rem !important;
}
.theme-dark .nada-table-header ::ng-deep p {
  font-size: 12px;
}
@media (max-width: 600px) {
  .theme-dark .nada-table-header ::ng-deep p {
    font-size: 10px;
  }
}
@media (max-width: 640px) {
  .theme-dark .report-hide-td-mobile {
    display: none;
  }
}
@media (max-width: 640px) {
  .theme-dark .report-table-per > td {
    display: none;
  }
}
@media (max-width: 640px) {
  .theme-dark .report-table-count > td {
    display: none;
  }
}
@media (max-width: 640px) {
  .theme-dark .report-table-percent > td {
    display: none;
  }
}
@media (max-width: 640px) {
  .theme-dark .report-table-budget > td {
    display: none;
  }
}
@media (max-width: 640px) {
  .theme-dark .order-xs-1 {
    order: 1;
  }
}
@media (max-width: 640px) {
  .theme-dark .order-xs-2 {
    order: 2;
  }
}
@media (max-width: 640px) {
  .theme-dark .order-xs-3 {
    order: 3;
  }
}
@media (max-width: 640px) {
  .theme-dark .order-xs-4 {
    order: 4;
  }
}
.theme-dark .details-header {
  cursor: pointer;
}
.theme-dark .details-header mat-icon {
  margin-left: 5px;
  transition: opacity 0.2s;
  opacity: 0;
  visibility: hidden;
}
.theme-dark .details-header:hover mat-icon {
  opacity: 1;
  visibility: visible;
}
.theme-dark .report-compact .report-table-container h5, .theme-dark .report-compact .report-table-container h4 {
  font-size: 18px;
}
.theme-dark .report-compact .report-table-container .mat-icon-button {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.theme-dark .report-compact .report-table-container .report-tag td:first-child {
  width: 1px;
}
.theme-dark .report-compact .report-table-container .report-tag td:first-child span {
  font-size: 11px;
}
.theme-dark .report-compact .report-table-container .simple-table td {
  padding: 4px 4px 4px 12px;
  font-size: 11px;
}
.theme-dark .report-compact .report-table-container .simple-table td:nth-child(1) {
  padding: 4px 4px 4px 12px;
  font-size: 11px;
}
.theme-dark .report-compact .report-table-container .simple-table th {
  padding: 4px 4px 4px 12px;
  font-size: 11px;
}
.theme-dark .report-compact .report-table-container .mat-card {
  padding: 12px;
}
.theme-dark .report-spreadsheet .report-table-container h5, .theme-dark .report-spreadsheet .report-table-container h4 {
  font-size: 14px;
}
.theme-dark .report-spreadsheet .report-table-container .mat-icon-button {
  width: 20px;
  height: 20px;
  line-height: 20px;
}
.theme-dark .report-spreadsheet .report-table-container .report-tag td:first-child {
  width: 1px;
}
.theme-dark .report-spreadsheet .report-table-container .report-tag td:first-child span {
  font-size: 9px;
}
.theme-dark .report-spreadsheet .report-table-container .simple-table td {
  padding: 2px 2px 2px 6px;
  font-size: 9px;
  border: 1px solid #808080;
  line-height: 1;
}
.theme-dark .report-spreadsheet .report-table-container .simple-table td:nth-child(1) {
  padding: 2px 2px 2px 6px;
  font-size: 9px;
}
.theme-dark .report-spreadsheet .report-table-container .simple-table th {
  padding: 2px 2px 2px 6px;
  font-size: 9px;
}
.theme-dark .report-spreadsheet .report-table-container .mat-card {
  padding: 8px;
}
.theme-dark .report-spreadsheet .report-table-container .simple-table thead tr[style] th {
  border: 1px solid #808080;
}
.theme-dark .report-spreadsheet .report-table-container .simple-table thead tr[style] + tr th {
  border: 1px solid #808080;
}
.theme-dark .spreadsheet-table td {
  border: 1px solid #aaa;
  padding: 5px !important;
}
.theme-dark .spreadsheet-table td:nth-child(1), .theme-dark .spreadsheet-table th:nth-child(1) {
  background: white;
}
.theme-dark .full-row td {
  padding: 5px;
}
.theme-dark .weekend-col {
  pointer-events: none;
  background: #ccc;
  color: transparent;
}
.theme-dark .weekend-col span {
  opacity: 0;
}
.theme-dark .year-row td, .theme-dark .year-row td:nth-child(1) {
  background: #b2dfdb;
}
.theme-dark .daily-avg-row td, .theme-dark .daily-avg-row td:nth-child(1) {
  background: #bbdefb;
}
.theme-dark .clear-row td {
  background: #fff;
}
.theme-dark .report-row-details {
  width: 200px !important;
  word-break: break-word !important;
}
.theme-dark .row-expand-indicator {
  margin-left: -10px;
}
.theme-dark .report-row-line-rollup {
  background: white !important;
}
.theme-dark .report-row-line-rollup td {
  padding: 4px 8px !important;
  font-size: 10px;
}
.theme-dark .report-row-line-rollup td:first-child {
  padding-left: 38px !important;
}
.theme-dark nelson-report-row .report-row-line-rollup {
  background: white !important;
}
.theme-dark .theme-dark nelson-report-row .report-row-line-rollup.report-row-line-rollup {
  background: #424242 !important;
}
.theme-dark nelson-report-row:nth-child(2n-1) .report-row-line-rollup {
  background: white !important;
}
.theme-dark .theme-dark nelson-report-row:nth-child(2n-1) .report-row-line-rollup.report-row-line-rollup {
  background: rgba(255, 255, 255, 0.08) !important;
}
.theme-dark .theme-dark nelson-report-row:hover .report-row-line-rollup.report-row-line-rollup {
  background: rgba(255, 255, 255, 0.16) !important;
}
.theme-dark .report-row-line-rollup-header {
  background: grey;
}
.theme-dark .report-row-line-rollup-header .report-row-details {
  font-weight: bold !important;
}
.theme-dark .report-table-container {
  padding-top: 6rem;
}
.theme-dark .spreadsheet [class^=col-] {
  padding: 0 !important;
}
.theme-dark .spreadsheet .sticky-header {
  padding: 0;
}
.theme-dark .spreadsheet .sticky-header h4 {
  color: white !important;
  font-size: 1.2rem !important;
  font-weight: normal !important;
}
.theme-dark .spreadsheet .sticky-header th {
  padding: 2px !important;
}
.theme-dark .spreadsheet .mat-card {
  padding: 0 !important;
  border-radius: 0 !important;
}
.theme-dark .spreadsheet .mat-card-title {
  margin-bottom: 0 !important;
  padding: 2px 2px 2px 32px !important;
  background: #666 !important;
}
.theme-dark .spreadsheet .mat-card-title .mat-icon-button {
  width: 20px !important;
  height: 20px !important;
  line-height: 20px !important;
}
.theme-dark .spreadsheet .mat-card-title .mat-icon-button .mat-icon {
  line-height: 20px !important;
  width: 20px !important;
  height: 20px !important;
  font-size: 20px !important;
  color: white !important;
}
.theme-dark .spreadsheet .mat-card-title .mat-form-field {
  font-size: 14px;
}
.theme-dark .spreadsheet .mat-card-title .mat-form-field .mat-form-field-wrapper {
  padding-bottom: 0;
}
.theme-dark .spreadsheet .mat-card-title .mat-form-field .mat-form-field-infix {
  padding: 0;
  border-top: none;
}
.theme-dark .spreadsheet .mat-card-title .mat-form-field .mat-form-field-underline {
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.4);
}
.theme-dark .spreadsheet .mat-card-title .mat-form-field .mat-input-element {
  color: white !important;
}
.theme-dark .spreadsheet .mat-card-title .mat-form-field .mat-form-field-label {
  top: 10px;
  color: rgba(255, 255, 255, 0.6);
  visibility: visible;
}
.theme-dark .spreadsheet .mat-card-title .mat-form-field.mat-focused .mat-form-field-label {
  visibility: hidden;
}
.theme-dark .spreadsheet .nada-column-count th {
  line-height: 1 !important;
}
.theme-dark .spreadsheet .mat-card-title > div > div > mat-menu {
  display: none !important;
}
.theme-dark .spreadsheet .mat-card-title > div > div > h5 {
  color: white !important;
  font-size: 1.2rem !important;
  font-weight: normal !important;
}
.theme-dark .spreadsheet .report-table-container {
  padding: 6rem 2rem 2rem;
}
.theme-dark .spreadsheet .report-table-container.hot-sheet {
  padding-top: 2rem !important;
}
.theme-dark .spreadsheet .report-table > thead > tr > th {
  padding: 2px !important;
  font-weight: normal !important;
}
.theme-dark .spreadsheet .report-tag td:first-child {
  width: 30px !important;
  border-right: 1px solid #FBC02D !important;
}
.theme-dark .spreadsheet .report-table td {
  padding: 2px !important;
  font-weight: normal !important;
  border: none !important;
}
.theme-dark .spreadsheet .report-table td:empty {
  padding: 0 !important;
}
.theme-dark .spreadsheet .report-row-details {
  width: 300px !important;
}
.theme-dark .spreadsheet .report-table th {
  background: #ddd !important;
  border: 1px solid #bbb !important;
}
.theme-dark .spreadsheet .spreadsheet-table td:nth-child(1),
.theme-dark .spreadsheet .clear-row td {
  background: #eee !important;
}
.theme-dark .spreadsheet .report-table .report-nested-row {
  background: #d2d2d2 !important;
}
.theme-dark .spreadsheet .report-table .report-nested-row > td:nth-child(1) {
  padding-left: 20px !important;
  border-left: 2px solid rgba(251, 192, 45, 0.5) !important;
}
.theme-dark .spreadsheet .report-table .report-nested-row > td:nth-last-child(1) {
  border-right: 2px solid rgba(251, 192, 45, 0.5) !important;
}
.theme-dark .spreadsheet .report-table .report-nested-row.report-nested-row-first > td {
  border-top: 2px solid rgba(251, 192, 45, 0.5) !important;
}
.theme-dark .spreadsheet .report-table .report-nested-row.report-nested-row-last > td {
  border-bottom: 2px solid rgba(251, 192, 45, 0.5) !important;
}
.theme-dark .spreadsheet .report-row-line-rollup-header {
  background: grey;
}
.theme-dark .spreadsheet .report-row-line-rollup-header .report-row-details {
  font-weight: bold !important;
}
.theme-dark .spreadsheet .report-row-line-rollup td {
  padding: 2px !important;
  font-size: 10px;
}
.theme-dark .spreadsheet .report-row-line-rollup td:first-child {
  padding-left: 20px !important;
}
.theme-dark .spreadsheet .report-table-per > td:nth-child(1),
.theme-dark .spreadsheet .report-table-count > td:nth-child(1) {
  padding-left: 20px !important;
}
.theme-dark .spreadsheet .row-expand-indicator {
  margin-left: 0;
}
.theme-dark .spreadsheet .label-block {
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
}
.theme-dark .spreadsheet .details-th {
  width: 70px;
}
.theme-dark .spreadsheet nelson-rendered-report-schedule .simple-table th,
.theme-dark .spreadsheet .nelson-rendered-report-schedule-sticky .simple-table th {
  padding: 2px !important;
  font-weight: normal !important;
}
.theme-dark .spreadsheet nelson-rendered-report-schedule .simple-table th:nth-child(1),
.theme-dark .spreadsheet .nelson-rendered-report-schedule-sticky .simple-table th:nth-child(1) {
  padding: 2px 2px 2px 6px !important;
}
.theme-dark .spreadsheet nelson-rendered-report-schedule .simple-table td,
.theme-dark .spreadsheet .nelson-rendered-report-schedule-sticky .simple-table td {
  padding: 2px !important;
  font-weight: normal !important;
  border: none !important;
}
.theme-dark .spreadsheet nelson-rendered-report-schedule .simple-table td:nth-child(1),
.theme-dark .spreadsheet .nelson-rendered-report-schedule-sticky .simple-table td:nth-child(1) {
  padding: 2px 2px 2px 6px !important;
}
.theme-dark .spreadsheet nelson-rendered-report-schedule .simple-table .mat-icon-button,
.theme-dark .spreadsheet .nelson-rendered-report-schedule-sticky .simple-table .mat-icon-button {
  height: 24px;
  width: 24px;
  line-height: 24px;
}
.theme-dark .flex {
  display: flex;
  flex-wrap: wrap;
}
.theme-dark .iflex {
  display: inline-flex;
}
.theme-dark .fw-wrap {
  flex-wrap: wrap;
}
.theme-dark .fw-nowrap {
  flex-wrap: nowrap;
}
.theme-dark .fd-row {
  flex-direction: row;
}
.theme-dark .fd-row-rev {
  flex-direction: row-reverse;
}
.theme-dark .fd-col {
  flex-direction: column;
}
.theme-dark .fd-col-rev {
  flex-direction: column-reverse;
}
.theme-dark .ai-stretch {
  align-items: stretch;
}
.theme-dark .ai-base {
  align-items: baseline;
}
.theme-dark .ai-start {
  align-items: flex-start;
}
.theme-dark .ai-end {
  align-items: flex-end;
}
.theme-dark .ai-center {
  align-items: center;
}
.theme-dark .ac-stretch {
  align-content: stretch;
}
.theme-dark .ac-start {
  align-content: flex-start;
}
.theme-dark .ac-end {
  align-content: flex-end;
}
.theme-dark .ac-center {
  align-content: center;
}
.theme-dark .ac-around {
  align-content: space-around;
}
.theme-dark .ac-between {
  align-content: space-between;
}
.theme-dark .jc-start {
  justify-content: flex-start;
}
.theme-dark .jc-end {
  justify-content: flex-end;
}
.theme-dark .jc-center {
  justify-content: center;
}
.theme-dark .jc-around {
  justify-content: space-around;
}
.theme-dark .jc-between {
  justify-content: space-between;
}
.theme-dark .jc-evenly {
  justify-content: space-evenly;
}
.theme-dark .flex-1 {
  flex: 1;
}
@media (max-width: 1200px) {
  .theme-dark .fd-m-col {
    flex-direction: column;
  }
  .theme-dark .jc-m-evenly {
    justify-content: space-evenly;
  }
  .theme-dark .jc-m-start {
    justify-content: flex-start;
  }
  .theme-dark .ai-m-stretch {
    align-items: stretch;
  }
}
@media (max-width: 850px) {
  .theme-dark .fw-s-nowrap {
    flex-wrap: nowrap;
  }
  .theme-dark .jc-s-start {
    justify-content: flex-start;
  }
  .theme-dark .jc-s-between {
    justify-content: space-between;
  }
}
.theme-dark .w-full {
  width: 100%;
}
@media (max-width: 850px) {
  .theme-dark .w-full-s {
    width: 100%;
  }
}
.theme-dark .h-full {
  height: 100%;
}
.theme-dark .ta-left {
  text-align: left;
}
.theme-dark .ta-center {
  text-align: center;
}
.theme-dark .ta-right {
  text-align: right;
}
.theme-dark .ta-justify {
  text-align: justify;
}
.theme-dark .br-round {
  border-radius: 50%;
}
.theme-dark .tt-uppercase {
  text-transform: uppercase;
}
@media (max-width: 450px) {
  .theme-dark .hide-xs {
    display: none;
  }
}
@media (max-width: 850px) {
  .theme-dark .hide-s {
    display: none;
  }
}
@media (max-width: 1200px) {
  .theme-dark .hide-m {
    display: none;
  }
}
.theme-dark .show-xs {
  display: none;
}
@media (max-width: 450px) {
  .theme-dark .show-xs {
    display: inline-block;
  }
}
.theme-dark .show-s {
  display: none;
}
@media (max-width: 850px) {
  .theme-dark .show-s {
    display: inline-block;
  }
}
.theme-dark .show-m {
  display: none;
}
@media (max-width: 1200px) {
  .theme-dark .show-m {
    display: inline-block;
  }
}
.theme-dark .columns-1 {
  -moz-columns: 1;
       columns: 1;
}
.theme-dark .columns-2 {
  -moz-columns: 2;
       columns: 2;
}
.theme-dark .columns-3 {
  -moz-columns: 3;
       columns: 3;
}
.theme-dark .columns-4 {
  -moz-columns: 4;
       columns: 4;
}
.theme-dark .columns-5 {
  -moz-columns: 5;
       columns: 5;
}
.theme-dark .columns-6 {
  -moz-columns: 6;
       columns: 6;
}
.theme-dark .columns-7 {
  -moz-columns: 7;
       columns: 7;
}
.theme-dark .columns-8 {
  -moz-columns: 8;
       columns: 8;
}
.theme-dark .columns-9 {
  -moz-columns: 9;
       columns: 9;
}
.theme-dark .columns-10 {
  -moz-columns: 10;
       columns: 10;
}
.theme-dark .columns-11 {
  -moz-columns: 11;
       columns: 11;
}
.theme-dark .columns-12 {
  -moz-columns: 12;
       columns: 12;
}
@media screen and (max-width: 1200px) {
  .theme-dark .columns-m-1 {
    -moz-columns: 1;
         columns: 1;
  }
  .theme-dark .columns-m-2 {
    -moz-columns: 2;
         columns: 2;
  }
  .theme-dark .columns-m-3 {
    -moz-columns: 3;
         columns: 3;
  }
  .theme-dark .columns-m-4 {
    -moz-columns: 4;
         columns: 4;
  }
  .theme-dark .columns-m-5 {
    -moz-columns: 5;
         columns: 5;
  }
  .theme-dark .columns-m-6 {
    -moz-columns: 6;
         columns: 6;
  }
  .theme-dark .columns-m-7 {
    -moz-columns: 7;
         columns: 7;
  }
  .theme-dark .columns-m-8 {
    -moz-columns: 8;
         columns: 8;
  }
  .theme-dark .columns-m-9 {
    -moz-columns: 9;
         columns: 9;
  }
  .theme-dark .columns-m-10 {
    -moz-columns: 10;
         columns: 10;
  }
  .theme-dark .columns-m-11 {
    -moz-columns: 11;
         columns: 11;
  }
  .theme-dark .columns-m-12 {
    -moz-columns: 12;
         columns: 12;
  }
}
@media screen and (max-width: 850px) {
  .theme-dark .columns-s-1 {
    -moz-columns: 1;
         columns: 1;
  }
  .theme-dark .columns-s-2 {
    -moz-columns: 2;
         columns: 2;
  }
  .theme-dark .columns-s-3 {
    -moz-columns: 3;
         columns: 3;
  }
  .theme-dark .columns-s-4 {
    -moz-columns: 4;
         columns: 4;
  }
  .theme-dark .columns-s-5 {
    -moz-columns: 5;
         columns: 5;
  }
  .theme-dark .columns-s-6 {
    -moz-columns: 6;
         columns: 6;
  }
  .theme-dark .columns-s-7 {
    -moz-columns: 7;
         columns: 7;
  }
  .theme-dark .columns-s-8 {
    -moz-columns: 8;
         columns: 8;
  }
  .theme-dark .columns-s-9 {
    -moz-columns: 9;
         columns: 9;
  }
  .theme-dark .columns-s-10 {
    -moz-columns: 10;
         columns: 10;
  }
  .theme-dark .columns-s-11 {
    -moz-columns: 11;
         columns: 11;
  }
  .theme-dark .columns-s-12 {
    -moz-columns: 12;
         columns: 12;
  }
}
@media screen and (max-width: 450px) {
  .theme-dark .columns-xs-1 {
    -moz-columns: 1;
         columns: 1;
  }
  .theme-dark .columns-xs-2 {
    -moz-columns: 2;
         columns: 2;
  }
  .theme-dark .columns-xs-3 {
    -moz-columns: 3;
         columns: 3;
  }
  .theme-dark .columns-xs-4 {
    -moz-columns: 4;
         columns: 4;
  }
  .theme-dark .columns-xs-5 {
    -moz-columns: 5;
         columns: 5;
  }
  .theme-dark .columns-xs-6 {
    -moz-columns: 6;
         columns: 6;
  }
  .theme-dark .columns-xs-7 {
    -moz-columns: 7;
         columns: 7;
  }
  .theme-dark .columns-xs-8 {
    -moz-columns: 8;
         columns: 8;
  }
  .theme-dark .columns-xs-9 {
    -moz-columns: 9;
         columns: 9;
  }
  .theme-dark .columns-xs-10 {
    -moz-columns: 10;
         columns: 10;
  }
  .theme-dark .columns-xs-11 {
    -moz-columns: 11;
         columns: 11;
  }
  .theme-dark .columns-xs-12 {
    -moz-columns: 12;
         columns: 12;
  }
}
.theme-dark .p-a-0 {
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}
.theme-dark .p-a-xxs {
  padding: 2px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-a-xxs {
    padding: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-a-xxs {
    padding: 4px;
  }
}
.theme-dark .p-a-xs {
  padding: 5px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-a-xs {
    padding: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-a-xs {
    padding: 10px;
  }
}
.theme-dark .p-a-s {
  padding: 10px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-a-s {
    padding: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-a-s {
    padding: 20px;
  }
}
.theme-dark .p-a-m {
  padding: 20px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-a-m {
    padding: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-a-m {
    padding: 40px;
  }
}
.theme-dark .p-a-l {
  padding: 40px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-a-l {
    padding: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-a-l {
    padding: 80px;
  }
}
.theme-dark .p-a-xl {
  padding: 80px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-a-xl {
    padding: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-a-xl {
    padding: 160px;
  }
}
.theme-dark .p-x-xxs {
  padding-left: 2px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-x-xxs {
    padding-left: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-x-xxs {
    padding-left: 4px;
  }
}
.theme-dark .p-x-xxs {
  padding-right: 2px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-x-xxs {
    padding-right: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-x-xxs {
    padding-right: 4px;
  }
}
.theme-dark .p-x-xs {
  padding-left: 5px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-x-xs {
    padding-left: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-x-xs {
    padding-left: 10px;
  }
}
.theme-dark .p-x-xs {
  padding-right: 5px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-x-xs {
    padding-right: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-x-xs {
    padding-right: 10px;
  }
}
.theme-dark .p-x-s {
  padding-left: 10px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-x-s {
    padding-left: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-x-s {
    padding-left: 20px;
  }
}
.theme-dark .p-x-s {
  padding-right: 10px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-x-s {
    padding-right: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-x-s {
    padding-right: 20px;
  }
}
.theme-dark .p-x-m {
  padding-left: 20px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-x-m {
    padding-left: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-x-m {
    padding-left: 40px;
  }
}
.theme-dark .p-x-m {
  padding-right: 20px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-x-m {
    padding-right: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-x-m {
    padding-right: 40px;
  }
}
.theme-dark .p-x-l {
  padding-left: 40px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-x-l {
    padding-left: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-x-l {
    padding-left: 80px;
  }
}
.theme-dark .p-x-l {
  padding-right: 40px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-x-l {
    padding-right: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-x-l {
    padding-right: 80px;
  }
}
.theme-dark .p-x-xl {
  padding-left: 80px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-x-xl {
    padding-left: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-x-xl {
    padding-left: 160px;
  }
}
.theme-dark .p-x-xl {
  padding-right: 80px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-x-xl {
    padding-right: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-x-xl {
    padding-right: 160px;
  }
}
.theme-dark .p-y-xxs {
  padding-top: 2px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-y-xxs {
    padding-top: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-y-xxs {
    padding-top: 4px;
  }
}
.theme-dark .p-y-xxs {
  padding-bottom: 2px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-y-xxs {
    padding-bottom: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-y-xxs {
    padding-bottom: 4px;
  }
}
.theme-dark .p-y-xs {
  padding-top: 5px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-y-xs {
    padding-top: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-y-xs {
    padding-top: 10px;
  }
}
.theme-dark .p-y-xs {
  padding-bottom: 5px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-y-xs {
    padding-bottom: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-y-xs {
    padding-bottom: 10px;
  }
}
.theme-dark .p-y-s {
  padding-top: 10px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-y-s {
    padding-top: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-y-s {
    padding-top: 20px;
  }
}
.theme-dark .p-y-s {
  padding-bottom: 10px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-y-s {
    padding-bottom: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-y-s {
    padding-bottom: 20px;
  }
}
.theme-dark .p-y-m {
  padding-top: 20px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-y-m {
    padding-top: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-y-m {
    padding-top: 40px;
  }
}
.theme-dark .p-y-m {
  padding-bottom: 20px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-y-m {
    padding-bottom: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-y-m {
    padding-bottom: 40px;
  }
}
.theme-dark .p-y-l {
  padding-top: 40px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-y-l {
    padding-top: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-y-l {
    padding-top: 80px;
  }
}
.theme-dark .p-y-l {
  padding-bottom: 40px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-y-l {
    padding-bottom: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-y-l {
    padding-bottom: 80px;
  }
}
.theme-dark .p-y-xl {
  padding-top: 80px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-y-xl {
    padding-top: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-y-xl {
    padding-top: 160px;
  }
}
.theme-dark .p-y-xl {
  padding-bottom: 80px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-y-xl {
    padding-bottom: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-y-xl {
    padding-bottom: 160px;
  }
}
.theme-dark .p-t-xxs {
  padding-top: 2px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-t-xxs {
    padding-top: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-t-xxs {
    padding-top: 4px;
  }
}
.theme-dark .p-t-xs {
  padding-top: 5px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-t-xs {
    padding-top: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-t-xs {
    padding-top: 10px;
  }
}
.theme-dark .p-t-s {
  padding-top: 10px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-t-s {
    padding-top: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-t-s {
    padding-top: 20px;
  }
}
.theme-dark .p-t-m {
  padding-top: 20px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-t-m {
    padding-top: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-t-m {
    padding-top: 40px;
  }
}
.theme-dark .p-t-l {
  padding-top: 40px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-t-l {
    padding-top: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-t-l {
    padding-top: 80px;
  }
}
.theme-dark .p-t-xl {
  padding-top: 80px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-t-xl {
    padding-top: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-t-xl {
    padding-top: 160px;
  }
}
.theme-dark .p-r-xxs {
  padding-right: 2px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-r-xxs {
    padding-right: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-r-xxs {
    padding-right: 4px;
  }
}
.theme-dark .p-r-xs {
  padding-right: 5px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-r-xs {
    padding-right: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-r-xs {
    padding-right: 10px;
  }
}
.theme-dark .p-r-s {
  padding-right: 10px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-r-s {
    padding-right: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-r-s {
    padding-right: 20px;
  }
}
.theme-dark .p-r-m {
  padding-right: 20px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-r-m {
    padding-right: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-r-m {
    padding-right: 40px;
  }
}
.theme-dark .p-r-l {
  padding-right: 40px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-r-l {
    padding-right: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-r-l {
    padding-right: 80px;
  }
}
.theme-dark .p-r-xl {
  padding-right: 80px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-r-xl {
    padding-right: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-r-xl {
    padding-right: 160px;
  }
}
.theme-dark .p-b-0 {
  padding-bottom: 0;
}
.theme-dark .p-b-xxs {
  padding-bottom: 2px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-b-xxs {
    padding-bottom: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-b-xxs {
    padding-bottom: 4px;
  }
}
.theme-dark .p-b-xs {
  padding-bottom: 5px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-b-xs {
    padding-bottom: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-b-xs {
    padding-bottom: 10px;
  }
}
.theme-dark .p-b-s {
  padding-bottom: 10px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-b-s {
    padding-bottom: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-b-s {
    padding-bottom: 20px;
  }
}
.theme-dark .p-b-m {
  padding-bottom: 20px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-b-m {
    padding-bottom: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-b-m {
    padding-bottom: 40px;
  }
}
.theme-dark .p-b-l {
  padding-bottom: 40px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-b-l {
    padding-bottom: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-b-l {
    padding-bottom: 80px;
  }
}
.theme-dark .p-b-xl {
  padding-bottom: 80px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-b-xl {
    padding-bottom: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-b-xl {
    padding-bottom: 160px;
  }
}
.theme-dark .p-l-xxs {
  padding-left: 2px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-l-xxs {
    padding-left: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-l-xxs {
    padding-left: 4px;
  }
}
.theme-dark .p-l-xs {
  padding-left: 5px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-l-xs {
    padding-left: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-l-xs {
    padding-left: 10px;
  }
}
.theme-dark .p-l-s {
  padding-left: 10px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-l-s {
    padding-left: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-l-s {
    padding-left: 20px;
  }
}
.theme-dark .p-l-m {
  padding-left: 20px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-l-m {
    padding-left: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-l-m {
    padding-left: 40px;
  }
}
.theme-dark .p-l-l {
  padding-left: 40px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-l-l {
    padding-left: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-l-l {
    padding-left: 80px;
  }
}
.theme-dark .p-l-xl {
  padding-left: 80px;
}
@media screen and (min-width: 600px) {
  .theme-dark .p-l-xl {
    padding-left: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .p-l-xl {
    padding-left: 160px;
  }
}
.theme-dark .m-a-0 {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}
.theme-dark .m-a-xxs {
  margin: 2px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-a-xxs {
    margin: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-a-xxs {
    margin: 4px;
  }
}
.theme-dark .m-a-xs {
  margin: 5px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-a-xs {
    margin: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-a-xs {
    margin: 10px;
  }
}
.theme-dark .m-a-s {
  margin: 10px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-a-s {
    margin: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-a-s {
    margin: 20px;
  }
}
.theme-dark .m-a-m {
  margin: 20px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-a-m {
    margin: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-a-m {
    margin: 40px;
  }
}
.theme-dark .m-a-l {
  margin: 40px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-a-l {
    margin: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-a-l {
    margin: 80px;
  }
}
.theme-dark .m-a-xl {
  margin: 80px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-a-xl {
    margin: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-a-xl {
    margin: 160px;
  }
}
.theme-dark .m-x-xxs {
  margin-left: 2px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-x-xxs {
    margin-left: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-x-xxs {
    margin-left: 4px;
  }
}
.theme-dark .m-x-xxs {
  margin-right: 2px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-x-xxs {
    margin-right: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-x-xxs {
    margin-right: 4px;
  }
}
.theme-dark .m-x-xs {
  margin-left: 5px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-x-xs {
    margin-left: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-x-xs {
    margin-left: 10px;
  }
}
.theme-dark .m-x-xs {
  margin-right: 5px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-x-xs {
    margin-right: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-x-xs {
    margin-right: 10px;
  }
}
.theme-dark .m-x-s {
  margin-left: 10px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-x-s {
    margin-left: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-x-s {
    margin-left: 20px;
  }
}
.theme-dark .m-x-s {
  margin-right: 10px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-x-s {
    margin-right: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-x-s {
    margin-right: 20px;
  }
}
.theme-dark .m-x-m {
  margin-left: 20px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-x-m {
    margin-left: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-x-m {
    margin-left: 40px;
  }
}
.theme-dark .m-x-m {
  margin-right: 20px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-x-m {
    margin-right: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-x-m {
    margin-right: 40px;
  }
}
.theme-dark .m-x-l {
  margin-left: 40px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-x-l {
    margin-left: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-x-l {
    margin-left: 80px;
  }
}
.theme-dark .m-x-l {
  margin-right: 40px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-x-l {
    margin-right: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-x-l {
    margin-right: 80px;
  }
}
.theme-dark .m-x-xl {
  margin-left: 80px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-x-xl {
    margin-left: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-x-xl {
    margin-left: 160px;
  }
}
.theme-dark .m-x-xl {
  margin-right: 80px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-x-xl {
    margin-right: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-x-xl {
    margin-right: 160px;
  }
}
.theme-dark .m-y-xxs {
  margin-top: 2px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-y-xxs {
    margin-top: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-y-xxs {
    margin-top: 4px;
  }
}
.theme-dark .m-y-xxs {
  margin-bottom: 2px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-y-xxs {
    margin-bottom: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-y-xxs {
    margin-bottom: 4px;
  }
}
.theme-dark .m-y-xs {
  margin-top: 5px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-y-xs {
    margin-top: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-y-xs {
    margin-top: 10px;
  }
}
.theme-dark .m-y-xs {
  margin-bottom: 5px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-y-xs {
    margin-bottom: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-y-xs {
    margin-bottom: 10px;
  }
}
.theme-dark .m-y-s {
  margin-top: 10px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-y-s {
    margin-top: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-y-s {
    margin-top: 20px;
  }
}
.theme-dark .m-y-s {
  margin-bottom: 10px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-y-s {
    margin-bottom: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-y-s {
    margin-bottom: 20px;
  }
}
.theme-dark .m-y-m {
  margin-top: 20px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-y-m {
    margin-top: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-y-m {
    margin-top: 40px;
  }
}
.theme-dark .m-y-m {
  margin-bottom: 20px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-y-m {
    margin-bottom: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-y-m {
    margin-bottom: 40px;
  }
}
.theme-dark .m-y-l {
  margin-top: 40px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-y-l {
    margin-top: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-y-l {
    margin-top: 80px;
  }
}
.theme-dark .m-y-l {
  margin-bottom: 40px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-y-l {
    margin-bottom: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-y-l {
    margin-bottom: 80px;
  }
}
.theme-dark .m-y-xl {
  margin-top: 80px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-y-xl {
    margin-top: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-y-xl {
    margin-top: 160px;
  }
}
.theme-dark .m-y-xl {
  margin-bottom: 80px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-y-xl {
    margin-bottom: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-y-xl {
    margin-bottom: 160px;
  }
}
.theme-dark .m-t-xxs {
  margin-top: 2px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-t-xxs {
    margin-top: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-t-xxs {
    margin-top: 4px;
  }
}
.theme-dark .m-t-xs {
  margin-top: 5px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-t-xs {
    margin-top: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-t-xs {
    margin-top: 10px;
  }
}
.theme-dark .m-t-s {
  margin-top: 10px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-t-s {
    margin-top: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-t-s {
    margin-top: 20px;
  }
}
.theme-dark .m-t-m {
  margin-top: 20px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-t-m {
    margin-top: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-t-m {
    margin-top: 40px;
  }
}
.theme-dark .m-t-l {
  margin-top: 40px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-t-l {
    margin-top: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-t-l {
    margin-top: 80px;
  }
}
.theme-dark .m-t-xl {
  margin-top: 80px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-t-xl {
    margin-top: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-t-xl {
    margin-top: 160px;
  }
}
.theme-dark .m-r-xxs {
  margin-right: 2px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-r-xxs {
    margin-right: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-r-xxs {
    margin-right: 4px;
  }
}
.theme-dark .m-r-xs {
  margin-right: 5px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-r-xs {
    margin-right: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-r-xs {
    margin-right: 10px;
  }
}
.theme-dark .m-r-s {
  margin-right: 10px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-r-s {
    margin-right: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-r-s {
    margin-right: 20px;
  }
}
.theme-dark .m-r-m {
  margin-right: 20px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-r-m {
    margin-right: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-r-m {
    margin-right: 40px;
  }
}
.theme-dark .m-r-l {
  margin-right: 40px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-r-l {
    margin-right: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-r-l {
    margin-right: 80px;
  }
}
.theme-dark .m-r-xl {
  margin-right: 80px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-r-xl {
    margin-right: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-r-xl {
    margin-right: 160px;
  }
}
.theme-dark .m-b-xxs {
  margin-bottom: 2px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-b-xxs {
    margin-bottom: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-b-xxs {
    margin-bottom: 4px;
  }
}
.theme-dark .m-b-xs {
  margin-bottom: 5px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-b-xs {
    margin-bottom: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-b-xs {
    margin-bottom: 10px;
  }
}
.theme-dark .m-b-s {
  margin-bottom: 10px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-b-s {
    margin-bottom: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-b-s {
    margin-bottom: 20px;
  }
}
.theme-dark .m-b-m {
  margin-bottom: 20px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-b-m {
    margin-bottom: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-b-m {
    margin-bottom: 40px;
  }
}
.theme-dark .m-b-l {
  margin-bottom: 40px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-b-l {
    margin-bottom: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-b-l {
    margin-bottom: 80px;
  }
}
.theme-dark .m-b-xl {
  margin-bottom: 80px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-b-xl {
    margin-bottom: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-b-xl {
    margin-bottom: 160px;
  }
}
.theme-dark .m-l-xxs {
  margin-left: 2px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-l-xxs {
    margin-left: calc(2px + 2 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-l-xxs {
    margin-left: 4px;
  }
}
.theme-dark .m-l-xs {
  margin-left: 5px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-l-xs {
    margin-left: calc(5px + 5 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-l-xs {
    margin-left: 10px;
  }
}
.theme-dark .m-l-s {
  margin-left: 10px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-l-s {
    margin-left: calc(10px + 10 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-l-s {
    margin-left: 20px;
  }
}
.theme-dark .m-l-m {
  margin-left: 20px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-l-m {
    margin-left: calc(20px + 20 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-l-m {
    margin-left: 40px;
  }
}
.theme-dark .m-l-l {
  margin-left: 40px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-l-l {
    margin-left: calc(40px + 40 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-l-l {
    margin-left: 80px;
  }
}
.theme-dark .m-l-xl {
  margin-left: 80px;
}
@media screen and (min-width: 600px) {
  .theme-dark .m-l-xl {
    margin-left: calc(80px + 80 * ((100vw - 600px) / 1000));
  }
}
@media screen and (min-width: 1600px) {
  .theme-dark .m-l-xl {
    margin-left: 160px;
  }
}
.theme-dark .hover-parent .when-hovered {
  opacity: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transition: opacity 0.3s;
}
.theme-dark .hover-parent:hover .when-hovered {
  opacity: 1;
  -webkit-user-select: auto;
     -moz-user-select: auto;
      -ms-user-select: auto;
          user-select: auto;
}
.theme-dark .no-transition {
  transition: none !important;
}
.theme-dark .no-transition * {
  transition: none !important;
}
.theme-dark .inline-block {
  display: inline-block;
}
.theme-dark .ws-nowrap {
  white-space: nowrap;
}
.theme-dark .bg-intro {
  background-image: url("/assets/intro/intro-bg.svg");
  background-size: cover;
  background-repeat: repeat-x;
  background-position: bottom;
}
.theme-dark .relative {
  position: relative;
}
.theme-dark .absolute {
  position: absolute;
}
.theme-dark .fixed {
  position: fixed;
}
.theme-dark .c-primary {
  color: #FBC02D !important;
}
.theme-dark .c-accent {
  color: #66BB6A !important;
}
.theme-dark .c-warn {
  color: #F44336 !important;
}
.theme-dark .c-success {
  color: #66bb6a !important;
}
.theme-dark .c-white {
  color: white !important;
}
.theme-dark .c-red {
  color: #f44336 !important;
}
.theme-dark .c-black {
  color: black !important;
}
.theme-dark .bg-primary {
  background-color: #FBC02D !important;
}
.theme-dark .bg-accent {
  background-color: #66BB6A !important;
}
.theme-dark .bg-warn {
  background-color: #F44336 !important;
}
.theme-dark .bg-success {
  background-color: #66bb6a !important;
}
.theme-dark .bg-white {
  background-color: white !important;
}
.theme-dark .bg-dark {
  background-color: #303a48;
}
.theme-dark .bg-light {
  background-color: #e9ebec;
}
.theme-dark .bg-primary-transparentize {
  background-color: rgba(251, 192, 45, 0.1);
}
.theme-dark .bg-acent-transparentize {
  background-color: rgba(102, 187, 106, 0.1);
}
.theme-dark .bg-warn-transparentize {
  background-color: rgba(244, 67, 54, 0.1);
}
.theme-dark .border-primary {
  border: 2px solid #FBC02D !important;
}
.theme-dark .border-accent {
  border: 2px solid #66BB6A !important;
}
.theme-dark .border-warn {
  border: 2px solid #F44336 !important;
}
.theme-dark .border-success {
  border: 2px solid #66bb6a !important;
}
.theme-dark .op-50 {
  opacity: 0.5;
}
.theme-dark .min-h-full {
  min-height: 100vh;
}
.theme-dark .fs-10 {
  font-size: 1rem;
}
.theme-dark .fs-xs {
  font-size: x-small;
}
.theme-dark .fs-s {
  font-size: small;
}
.theme-dark .fs-10 {
  font-size: 10px !important;
}
.theme-dark .fs-12 {
  font-size: 12px !important;
}
.theme-dark .fs-14 {
  font-size: 14px !important;
}
.theme-dark .fs-15 {
  font-size: 15px !important;
}
.theme-dark .fs-18 {
  font-size: 18px !important;
}
.theme-dark .fs-20 {
  font-size: 20px !important;
}
.theme-dark .fs-35 {
  font-size: 35px !important;
}
.theme-dark .wb-all {
  word-break: break-all;
}
.theme-dark .capitalize {
  text-transform: capitalize;
}
.theme-dark .lowercase {
  text-transform: lowercase;
}
.theme-dark .us-none {
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
.theme-dark .box-shadow {
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.theme-dark .disabled {
  opacity: 0.5;
  pointer-events: none;
}
.theme-dark .read-only {
  pointer-events: none;
}
.theme-dark .of-x-auto {
  overflow-x: auto;
}
.theme-dark .of-x-hidden {
  overflow-x: hidden;
}
.theme-dark .of-hidden {
  overflow: hidden;
}
.theme-dark .of-y-auto {
  overflow-y: auto;
}
.theme-dark .of-y-hidden {
  overflow-y: hidden;
}
.theme-dark .hidden {
  opacity: 0;
  visibility: hidden;
}
.theme-dark .pointer {
  cursor: pointer;
}
.theme-dark .cursor-drag {
  cursor: -webkit-grab;
  cursor: grab;
}
.theme-dark .cursor-move {
  cursor: move;
}
.theme-dark .p-tabs {
  padding: 6rem 0 2rem;
}
@media (max-width: 768px) {
  .theme-dark .p-tabs {
    padding-top: 8rem;
  }
}
.theme-dark .p-tabs-small {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}
@media (max-width: 768px) {
  .theme-dark .p-tabs-small {
    padding-top: 5rem;
  }
}
.theme-dark .active-scorecard {
  outline: 0.3rem solid #FBC02D;
}
.theme-dark .scorecard-label {
  font-size: 1.2rem;
  margin-bottom: -0.6rem;
}
.theme-dark .ls-1 {
  letter-spacing: -1px;
}
.theme-dark .mat-bar {
  height: 64px;
}
.theme-dark .mat-bar-m {
  height: 128px;
}
.theme-dark .mat-bar-l {
  height: 192px;
}
.theme-dark .mat-bar-xl {
  height: 256px;
}
.theme-dark .gm-target td {
  font-size: 1.4rem;
}
.theme-dark .gm-target td:nth-last-child(1) {
  text-align: right;
}
.theme-dark .dept-target td {
  font-size: 1.1rem;
  padding: 0.8rem;
}
.theme-dark .dept-target td:nth-child(1) {
  padding: 0.2rem 0.2rem 0.2rem 2.4rem;
}
.theme-dark .dept-target td:nth-last-child(1) {
  padding: 0.8rem 2.4rem 0.8rem 0.8rem;
}
.theme-dark .dept-target td:nth-last-child(1) {
  text-align: right;
}
.theme-dark button.loading {
  pointer-events: none;
  position: relative;
  border: none;
  color: transparent;
}
.theme-dark button.loading span, .theme-dark button.loading svg, .theme-dark button.loading img {
  opacity: 0;
}
.theme-dark button.loading:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 1.8rem;
  width: 1.8rem;
  border-radius: 50%;
  border-width: 0.2rem;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.9) rgba(255, 255, 255, 0.9) transparent transparent;
  -webkit-animation: loading-animation 0.75s linear infinite;
          animation: loading-animation 0.75s linear infinite;
}
@keyframes loading-animation {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@media (max-width: 768px) {
  .theme-dark .small-font-on-mobile {
    font-size: 10px;
  }
}
.theme-dark .ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.theme-dark .vertical-line {
  top: 0;
  height: 100%;
  border-left: 1px solid #FBC02D;
}
.theme-dark .docs-tooltip-icon {
  position: absolute;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.theme-dark .api-icon {
  height: 2rem;
  color: #FBC02D;
}
.theme-dark .dot {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
}
.theme-dark .high-panel {
  font-size: 12px !important;
}
.theme-dark .high-panel .mat-optgroup-label,
.theme-dark .high-panel .mat-option {
  line-height: 20px !important;
  height: 20px !important;
}
.theme-dark .warning-card {
  color: white;
  background: #f44336;
  padding: 1rem;
}
.theme-dark .theme-dark .spreadsheet .report-table.report-table th {
  background: #424242 !important;
}
.theme-dark .theme-dark .c-black.c-black {
  color: white !important;
}
.theme-dark .theme-dark.theme-dark .spreadsheet .spreadsheet-table td:nth-child(1),
.theme-dark .theme-dark.theme-dark .spreadsheet .clear-row td {
  background: transparent !important;
}
.theme-dark .theme-dark .daily-avg-row td {
  background: #081849 !important;
}
.theme-dark .theme-dark .year-row td {
  background: #55745e !important;
}
.theme-dark .theme-dark .board-card, .theme-dark .theme-dark .board-card-header, .theme-dark .theme-dark .chat-bar-header {
  background: #424242 !important;
}
.theme-dark .theme-dark .board-card-task, .theme-dark .theme-dark .chat-bar-content-wrapper, .theme-dark .theme-dark small {
  background: #636363 !important;
}
.theme-dark .theme-dark .vertical-text {
  color: white;
}
.theme-dark .sticky-header {
  background: #424242 !important;
}
.theme-dark .fc-unthemed td.fc-today {
  background: #636363;
}
.theme-dark .fc-basicDay-button:not(.fc-state-active),
.theme-dark .fc-basicWeek-button:not(.fc-state-active),
.theme-dark .fc-basicMonth-button:not(.fc-state-active),
.theme-dark .fc-next-button,
.theme-dark .fc-prev-button,
.theme-dark .fc-today-button {
  color: rgba(255, 255, 255, 0.9);
}
.theme-dark nelson-tag-input {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #424242;
}
.theme-dark nelson-tag-input .chip-wrapper {
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  background: #2f2f2f !important;
}
.theme-dark nelson-tag-input .chip-input {
  color: rgba(255, 255, 255, 0.9) !important;
}
.theme-dark nelson-tag-input ul {
  background-color: #2f2f2f !important;
  color: rgba(255, 255, 255, 0.9) !important;
}
.theme-dark nelson-tag-input ul li:hover, .theme-dark nelson-tag-input ul li.active {
  background: #636363 !important;
}
.theme-dark .c3-tooltip {
  color: black;
}
.theme-dark .tick line, .theme-dark .domain {
  stroke: rgba(255, 255, 255, 0.9) !important;
}
.theme-dark nelson-chart-wrapper {
  fill: rgba(255, 255, 255, 0.9) !important;
}
.theme-dark nelson-navbar .mat-select-value {
  color: rgba(255, 255, 255, 0.9);
}
.theme-dark nelson-navbar .mat-select-arrow {
  color: rgba(255, 255, 255, 0.6);
}
.theme-dark nelson-navbar .mat-form-field-appearance-legacy .mat-form-field-underline {
  background-color: rgba(255, 255, 255, 0.6);
}
.theme-dark nelson-navbar .mat-form-field-ripple {
  border-color: rgba(255, 255, 255, 0.6);
}
.theme-dark nelson-navbar .mat-form-field-appearance-legacy .mat-form-field-label {
  color: rgba(255, 255, 255, 0.6);
}
.theme-dark nelson-navbar .mat-select-disabled .mat-select-value {
  color: rgba(255, 255, 255, 0.6);
}
.theme-dark nelson-navbar .mat-form-field .mat-select.mat-select-disabled .mat-select-arrow {
  color: rgba(255, 255, 255, 0.6);
}
.theme-dark nelson-navbar .mat-button-toggle-appearance-standard {
  color: rgba(255, 255, 255, 0.6) !important;
}
.theme-dark .cdk-overlay-pane {
  max-width: calc(100vw - 200px) !important;
}
@media (max-width: 1200px) {
  .theme-dark .cdk-overlay-pane {
    margin-left: 0;
    max-width: 90vw !important;
  }
}
.theme-dark .layout-compact-body .cdk-overlay-pane {
  max-width: 90vw !important;
  margin-left: 0 !important;
}
@media (max-width: 599px) {
  .theme-dark .cdk-overlay-pane {
    max-width: 100vw !important;
  }
}
@media (max-width: 599px) {
  .theme-dark .mat-tab-link {
    min-width: 80px;
  }
}
.theme-dark .mat-form-field.mat-focused .mat-form-field-ripple {
  background: #FBC02D !important;
}
.theme-dark .mat-primary .mat-pseudo-checkbox-checked {
  background: #FBC02D !important;
}
.theme-dark .mat-button-toggle-group,
.theme-dark .mat-button-toggle-standalone {
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12) !important;
}
.theme-dark .mat-button-toggle-group-appearance-standard {
  border: none !important;
}
.theme-dark .mat-button-toggle-appearance-standard {
  background: transparent !important;
  color: rgba(255, 255, 255, 0.6) !important;
}
.theme-dark .mat-button-toggle-appearance-standard.mat-button-toggle-checked {
  background-color: #212121 !important;
  color: rgba(255, 255, 255, 0.9) !important;
}
.theme-dark .mat-button-toggle-appearance-standard .mat-button-toggle-label-content {
  line-height: 36px !important;
}
.theme-dark .mat-icon-button:hover {
  color: #FBC02D !important;
}
.theme-dark .mat-input-small .mat-form-field-infix {
  width: 80px !important;
}
.theme-dark .fab-fixed {
  position: fixed !important;
  bottom: 2rem;
  right: 2rem;
}
.theme-dark .no-box-shadow .mat-expansion-panel {
  box-shadow: none !important;
}
.theme-dark .mat-option.mat-active span {
  color: rgba(0, 0, 0, 0.87);
}
.theme-dark .mat-form-field.mat-focused .mat-form-field-label {
  color: gray !important;
}
.theme-dark .mat-input-element {
  color: rgba(255, 255, 255, 0.9) !important;
}
.theme-dark mat-form-field.c-white .mat-input-element {
  color: white !important;
}
.theme-dark .mat-dialog-container {
  max-height: 100vh !important;
}
.theme-dark .bg-dark-gray .mat-dialog-container {
  background: #303a48 !important;
}
.theme-dark .mat-tab-header-pagination {
  z-index: 1 !important;
}
.theme-dark .mat-tab-links {
  background: #424242 !important;
}
.theme-dark .mat-tab-links i.material-icons {
  color: rgba(255, 255, 255, 0.6) !important;
}
.theme-dark .select-trigger {
  color: rgba(255, 255, 255, 0.9) !important;
  border-bottom-color: rgba(255, 255, 255, 0.2) !important;
}
.theme-dark .select-dropdown {
  background: #212121 !important;
}
.theme-dark .select-dropdown-item {
  color: rgba(255, 255, 255, 0.9) !important;
}
.theme-dark .select-dropdown-item:hover {
  background: #636363 !important;
}
.theme-dark .file-upload {
  border-bottom-color: rgba(255, 255, 255, 0.2) !important;
}
.theme-dark .auth0-lock-cred-pane :nth-child(3) > span {
  width: 100%;
}
.theme-dark .auth0-lock-social-button-icon {
  background-size: 100% !important;
}
.theme-dark .auth0-lock.auth0-lock .auth0-lock-content {
  padding: 40px !important;
}
.theme-dark .auth0-lock.auth0-lock .auth0-lock-social-button {
  border: 1px solid #f1f1f1 !important;
  transition: 0.2s;
  padding: 2px;
  box-sizing: border-box;
  background-color: #4285F4 !important;
}
.theme-dark .auth0-lock.auth0-lock .auth0-lock-social-button-icon {
  float: left !important;
  display: inline-block !important;
  width: 36px !important;
  height: 36px !important;
  background-color: white !important;
  top: 1px !important;
  left: 1px !important;
  border-radius: 1px !important;
}
.theme-dark .auth0-lock.auth0-lock .auth0-lock-social-button.auth0-lock-social-big-button .auth0-lock-social-button-text {
  padding-left: 52px;
  text-transform: unset !important;
  font-family: Roboto, sans-serif;
  line-height: 35px !important;
  color: white !important;
  font-weight: 600 !important;
  font-size: 14px !important;
}
.theme-dark .ngx-datatable.material {
  background: #424242 !important;
}
.theme-dark .datatable-header-cell {
  color: rgba(255, 255, 255, 0.9) !important;
  background: #424242 !important;
}
.theme-dark .datatable-body-cell,
.theme-dark .datatable-footer,
.theme-dark .datatable-pager a {
  color: rgba(255, 255, 255, 0.6) !important;
}
.theme-dark .datatable-body-row:hover,
.theme-dark .datatable-body-row:hover .datatable-row-group {
  background: #636363 !important;
}
.theme-dark .datatable-header {
  display: flex !important;
  align-items: center;
}
.theme-dark .datatable-header .resize-handle {
  border-right-color: #636363 !important;
}
.theme-dark .datatable-body-cell,
.theme-dark .datatable-header-cell {
  display: inline-flex !important;
  align-items: center;
}
.theme-dark .datatable-body-cell {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.theme-dark .datatable-row-detail,
.theme-dark .datatable-row-left {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  background: #424242 !important;
  color: rgba(255, 255, 255, 0.6) !important;
}
.theme-dark .details-overflow .datatable-row-detail {
  overflow-y: auto !important;
}
.theme-dark .ngx-datatable .mat-form-field-label-wrapper {
  box-sizing: content-box;
}
.theme-dark .empty-row {
  color: rgba(255, 255, 255, 0.6) !important;
}
.theme-dark .noUi-horizontal {
  height: 6px;
}
.theme-dark .noUi-tooltip {
  opacity: 0;
  transition: 0.2s;
}
.theme-dark .noUi-horizontal .noUi-handle {
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  transform: translateX(-50%) translateY(-40%);
}
.theme-dark .noUi-horizontal .noUi-handle:after, .theme-dark .noUi-horizontal .noUi-handle:before {
  display: none;
}
.theme-dark .noUi-horizontal .noUi-handle:hover .noUi-tooltip, .theme-dark .noUi-horizontal .noUi-handle.noUi-active .noUi-tooltip {
  opacity: 1;
}
.theme-dark .noUi-connect {
  background: #FBC02D;
}
.theme-dark .noUi-wrapper {
  padding-bottom: 40px;
}
.theme-dark .noUi-marker-horizontal.noUi-marker-large {
  top: 10px;
  height: 8px;
}
.theme-dark .header-slider .noUi-horizontal .noUi-tooltip {
  bottom: -270%;
}
.theme-dark .ngx-datatable .datatable-body .datatable-row-wrapper:hover {
  z-index: 1;
}
.theme-dark .jsoneditor-poweredBy {
  display: none;
}
.theme-dark .swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.theme-dark .swiper-button-next, .theme-dark .swiper-button-prev {
  background-image: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.75);
}
.theme-dark .swiper-button-next svg, .theme-dark .swiper-button-prev svg {
  width: 30px;
}
@media (max-width: 768px) {
  .theme-dark .mat-button-toggle-button, .theme-dark .mat-button-toggle-label-content {
    width: 100% !important;
  }
  .theme-dark .mat-tab-link {
    font-size: 10px;
  }
}
.theme-dark .report-tag td:first-child {
  border-right: 2px solid #FBC02D;
}
@media (max-width: 600px) {
  .theme-dark .c3-axis.c3-axis-x tspan:not(:nth-child(1)) {
    display: none;
  }
}
.theme-dark #mce-modal-block {
  z-index: 63000 !important;
}
.theme-dark .cdk-overlay-container {
  z-index: 63001 !important;
}
.theme-dark .pre {
  margin: 0;
}
.theme-dark .language-markup {
  color: white;
}
.theme-dark .language-markup .token {
  color: white;
}
.theme-dark .tooltip-font-12 {
  font-size: 12px !important;
}
@page {
  .theme-dark {
    size: a4;
    margin: 10px;
  }
}
.theme-dark .show-print {
  display: none;
}
@media print {
  .theme-dark .show-print {
    display: block;
  }
}
@media print {
  .theme-dark .hide-print {
    display: none;
  }
  .theme-dark .cdk-overlay-container {
    position: static !important;
  }
  .theme-dark .cdk-overlay-connected-position-bounding-box {
    display: none !important;
  }
  .theme-dark .cdk-overlay-backdrop {
    display: none !important;
  }
  .theme-dark .cdk-global-overlay-wrapper {
    position: static !important;
  }
  .theme-dark .cdk-overlay-pane {
    max-width: unset !important;
  }
  .theme-dark .cdk-global-scrollblock {
    position: static !important;
    overflow-y: visible !important;
  }
  .theme-dark .mat-dialog-container {
    box-shadow: unset !important;
    padding: 10px !important;
    overflow: visible !important;
  }
  .theme-dark .p-tabs {
    padding: 0;
  }
  .theme-dark .active-scorecard {
    outline: none;
  }
  .theme-dark .scorecards h1, .theme-dark .scorecards h2, .theme-dark .scorecards h3, .theme-dark .scorecards h4, .theme-dark .scorecards h5, .theme-dark .scorecards h6 {
    font-size: 14px;
  }
  .theme-dark .scorecards p {
    font-size: 11px;
  }
  .theme-dark .docs-tooltip-icon {
    display: none;
  }
  .theme-dark .print-modal-header {
    display: none;
  }
  .theme-dark .print-modal-subheader {
    display: none;
  }
  .theme-dark .print-modal-body {
    max-height: unset !important;
    padding-top: unset !important;
    overflow: visible !important;
  }
  .theme-dark .db-main {
    left: 0;
    top: 0;
    width: 100%;
    height: unset !important;
    min-height: unset !important;
    background: unset !important;
  }
}
