/* 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;
	        user-select: none;
	  -webkit-user-drag: none;
	}
/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::selection {
	background: transparent;
}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg {
	max-width: none !important;
	max-height: none !important;
	}
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
	max-width: none !important;
	max-height: none !important;
	width: auto;
	padding: 0;
	}

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

.leaflet-container.leaflet-touch-zoom {
	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-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;
	}
svg.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:         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:         grabbing;
	}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */

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


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


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover,
.leaflet-bar a:focus {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}
.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	}
.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
	font-size: 22px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url('layers.ef6db8722c2c3f9a.png');
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url('layers-2x.9859cd1231006a4a.png');
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	font-size: 13px;
	font-size: 1.08333em;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

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


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.8);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	line-height: 1.4;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
	text-decoration: underline;
	}
.leaflet-attribution-flag {
	display: inline !important;
	vertical-align: baseline !important;
	width: 1em;
	height: 0.6669em;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	white-space: nowrap;
	box-sizing: border-box;
	background: rgba(255, 255, 255, 0.8);
	text-shadow: 1px 1px #fff;
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 24px 13px 20px;
	line-height: 1.3;
	font-size: 13px;
	font-size: 1.08333em;
	min-height: 1px;
	}
.leaflet-popup-content p {
	margin: 17px 0;
	margin: 1.3em 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-top: -1px;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;
	pointer-events: auto;
	transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	border: none;
	text-align: center;
	width: 24px;
	height: 24px;
	font: 16px/24px Tahoma, Verdana, sans-serif;
	color: #757575;
	text-decoration: none;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
	color: #585858;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	-ms-zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-interactive {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}

/* Printing */

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

.marker-icon,
.marker-icon:focus {
  background-color: #ffffff;
  border: 1px solid #3388ff;
  border-radius: 50%;
  margin: -8px 0 0 -8px !important;
  width: 14px !important;
  height: 14px !important;
  outline: 0;
  transition: opacity ease 0.3s;
}

.marker-icon-middle,
.marker-icon-middle:focus {
  opacity: 0.7;
  margin: -6px 0 0 -6px !important;
  width: 10px !important;
  height: 10px !important;
}

.leaflet-pm-draggable {
  cursor: move !important;
}

.cursor-marker {
  cursor: crosshair;
  pointer-events: none;
  display: none;
}

.cursor-marker.visible {
  display: block !important;
}

.leaflet-pm-invalid {
  stroke: red;
  transition: fill ease 0s, stroke ease 0s;
}

.rect-style-marker,
.rect-start-marker {
  opacity: 0;
}

.rect-style-marker.visible,
.rect-start-marker.visible {
  opacity: 1 !important;
}

.hidden {
  display: none;
}

.vertexmarker-disabled {
  opacity: 0.7;
}

.leaflet-pm-toolbar {
}

.leaflet-pm-toolbar .leaflet-buttons-control-button {
  padding: 5px;
  box-sizing: border-box;
  position: relative;
  z-index: 3;
}

.leaflet-pm-toolbar
  .leaflet-pm-actions-container
  a.leaflet-pm-action:first-child:not(.pos-right),
.leaflet-pm-toolbar
  .leaflet-pm-actions-container
  a.leaflet-pm-action:last-child.pos-right {
  border-radius: 0;
}

.leaflet-pm-toolbar .button-container a.leaflet-buttons-control-button {
  border-radius: 0;
}

.leaflet-pm-toolbar
  .button-container:last-child
  a.leaflet-buttons-control-button {
  border-radius: 0 0 2px 2px;
}

.leaflet-pm-toolbar
  .button-container:first-child
  a.leaflet-buttons-control-button {
  border-radius: 2px 2px 0 0;
}

.leaflet-pm-toolbar
  .button-container:last-child
  a.leaflet-buttons-control-button {
  border-bottom: none;
}

.leaflet-pm-toolbar .control-fa-icon {
  font-size: 19px;
  line-height: 24px;
}

.leaflet-pm-toolbar .control-icon {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.leaflet-pm-toolbar .leaflet-pm-icon-marker {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjRweCIgaGVpZ2h0PSIyNHB4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDUyLjUgKDY3NDY5KSAtIGh0dHA6Ly93d3cuYm9oZW1pYW5jb2RpbmcuY29tL3NrZXRjaCAtLT4KICAgIDx0aXRsZT5BdG9tcy9JY29ucy9Ub29scy9NYXJrZXI8L3RpdGxlPgogICAgPGRlc2M+Q3JlYXRlZCB3aXRoIFNrZXRjaC48L2Rlc2M+CiAgICA8ZGVmcz4KICAgICAgICA8cGF0aCBkPSJNMTUuNSwyNC44NzgyOTU5IEMxNS4yOTA5MjAxLDI0Ljg3NzIyMTkgMTUuMTc0NDg1NywyNC44NDY3ODE3IDE0LjY1OTA4NjYsMjQuMjM1NDE2MyBDMTAuMjE5Njk1NSwxOS40MTE4MDU0IDgsMTUuNTAxNDM5MiA4LDEyLjUwNDMxNzcgQzgsOC4zNTk3OTc0NiAxMS4zNTc4NjQ0LDUgMTUuNSw1IEMxOS42NDIxMzU2LDUgMjMsOC4zNTk3OTc0NiAyMywxMi41MDQzMTc3IEMyMywxNyAxOC4yODc4MjE3LDIxLjkyNjgzNzggMTYuMzMzNjYwMSwyNC4yNDQwMTg2IEMxNS44MjI0NjIyLDI0Ljg1MDE4MDIgMTUuNzA5MDc5OSwyNC44NzkzNjk5IDE1LjUsMjQuODc4Mjk1OSBaIE0xNS41LDE1LjUzMjY5NDggQzE3LjI3NTIwMSwxNS41MzI2OTQ4IDE4LjcxNDI4NTcsMTQuMTE4MDAwNCAxOC43MTQyODU3LDEyLjM3Mjg4NjQgQzE4LjcxNDI4NTcsMTAuNjI3NzcyMyAxNy4yNzUyMDEsOS4yMTMwNzc5MiAxNS41LDkuMjEzMDc3OTIgQzEzLjcyNDc5OSw5LjIxMzA3NzkyIDEyLjI4NTcxNDMsMTAuNjI3NzcyMyAxMi4yODU3MTQzLDEyLjM3Mjg4NjQgQzEyLjI4NTcxNDMsMTQuMTE4MDAwNCAxMy43MjQ3OTksMTUuNTMyNjk0OCAxNS41LDE1LjUzMjY5NDggWiIgaWQ9InBhdGgtMSI+PC9wYXRoPgogICAgPC9kZWZzPgogICAgPGcgaWQ9IlN5bWJvbHMiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJBdG9tcy9JY29ucy9Ub29scy9NYXJrZXIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0zLjAwMDAwMCwgLTMuMDAwMDAwKSI+CiAgICAgICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4KICAgICAgICAgICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI3BhdGgtMSI+PC91c2U+CiAgICAgICAgICAgIDwvbWFzaz4KICAgICAgICAgICAgPHVzZSBpZD0iTWFzayIgZmlsbD0iIzVCNUI1QiIgZmlsbC1ydWxlPSJub256ZXJvIiB4bGluazpocmVmPSIjcGF0aC0xIj48L3VzZT4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==);
}
.leaflet-pm-toolbar .leaflet-pm-icon-polygon {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCI+CiAgPGRlZnM+CiAgICA8cGF0aCBpZD0icG9seWdvbi1hIiBkPSJNMTkuNDIwNjg5Miw5LjE2NTA5NzI1IEMxOS4xNTIzNjgxLDguNjY5OTI5MTQgMTksOC4xMDI3NTgzMSAxOSw3LjUgQzE5LDUuNTY3MDAzMzggMjAuNTY3MDAzNCw0IDIyLjUsNCBDMjQuNDMyOTk2Niw0IDI2LDUuNTY3MDAzMzggMjYsNy41IEMyNiw5LjI2MzIzNTk1IDI0LjY5NjE0NzEsMTAuNzIxOTQwNyAyMywxMC45NjQ1NTU2IEwyMywxOS4wMzU0NDQ0IEMyNC42OTYxNDcxLDE5LjI3ODA1OTMgMjYsMjAuNzM2NzY0IDI2LDIyLjUgQzI2LDI0LjQzMjk5NjYgMjQuNDMyOTk2NiwyNiAyMi41LDI2IEMyMC43MzY3NjQsMjYgMTkuMjc4MDU5MywyNC42OTYxNDcxIDE5LjAzNTQ0NDQsMjMgTDEwLjk2NDU1NTYsMjMgQzEwLjcyMTk0MDcsMjQuNjk2MTQ3MSA5LjI2MzIzNTk1LDI2IDcuNSwyNiBDNS41NjcwMDMzOCwyNiA0LDI0LjQzMjk5NjYgNCwyMi41IEM0LDIwLjU2NzAwMzQgNS41NjcwMDMzOCwxOSA3LjUsMTkgQzguMTAyNzU4MzEsMTkgOC42Njk5MjkxNCwxOS4xNTIzNjgxIDkuMTY1MDk3MjUsMTkuNDIwNjg5MiBMMTkuNDIwNjg5Miw5LjE2NTA5NzI1IFogTTIwLjgzNDkwNzMsMTAuNTc5MzA2MyBMMTAuNTc5MzEwOCwyMC44MzQ5MDI3IEMxMC42MDg2NzMxLDIwLjg4OTA4ODggMTAuNjM2NjQ2OSwyMC45NDQxMzcyIDEwLjY2MzE4NDQsMjEgTDE5LjMzNjgxNTYsMjEgQzE5LjY4MjU3NzUsMjAuMjcyMTU0IDIwLjI3MjE1NCwxOS42ODI1Nzc1IDIxLDE5LjMzNjgxNTYgTDIxLDEwLjY2MzE4NDQgQzIwLjk0NDEzNzIsMTAuNjM2NjQ2OSAyMC44ODkwODg4LDEwLjYwODY3MzEgMjAuODM0OTAyNywxMC41NzkzMTA4IFogTTIyLjUsOSBDMjMuMzI4NDI3MSw5IDI0LDguMzI4NDI3MTIgMjQsNy41IEMyNCw2LjY3MTU3Mjg4IDIzLjMyODQyNzEsNiAyMi41LDYgQzIxLjY3MTU3MjksNiAyMSw2LjY3MTU3Mjg4IDIxLDcuNSBDMjEsOC4zMjg0MjcxMiAyMS42NzE1NzI5LDkgMjIuNSw5IFogTTIyLjUsMjQgQzIzLjMyODQyNzEsMjQgMjQsMjMuMzI4NDI3MSAyNCwyMi41IEMyNCwyMS42NzE1NzI5IDIzLjMyODQyNzEsMjEgMjIuNSwyMSBDMjEuNjcxNTcyOSwyMSAyMSwyMS42NzE1NzI5IDIxLDIyLjUgQzIxLDIzLjMyODQyNzEgMjEuNjcxNTcyOSwyNCAyMi41LDI0IFogTTcuNSwyNCBDOC4zMjg0MjcxMiwyNCA5LDIzLjMyODQyNzEgOSwyMi41IEM5LDIxLjY3MTU3MjkgOC4zMjg0MjcxMiwyMSA3LjUsMjEgQzYuNjcxNTcyODgsMjEgNiwyMS42NzE1NzI5IDYsMjIuNSBDNiwyMy4zMjg0MjcxIDYuNjcxNTcyODgsMjQgNy41LDI0IFoiLz4KICA8L2RlZnM+CiAgPGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMyAtMykiPgogICAgPG1hc2sgaWQ9InBvbHlnb24tYiIgZmlsbD0iI2ZmZiI+CiAgICAgIDx1c2UgeGxpbms6aHJlZj0iI3BvbHlnb24tYSIvPgogICAgPC9tYXNrPgogICAgPHVzZSBmaWxsPSIjNUI1QjVCIiBmaWxsLXJ1bGU9Im5vbnplcm8iIHhsaW5rOmhyZWY9IiNwb2x5Z29uLWEiLz4KICAgIDxnIGZpbGw9IiM1QjVCNUIiIG1hc2s9InVybCgjcG9seWdvbi1iKSI+CiAgICAgIDxyZWN0IHdpZHRoPSIzMCIgaGVpZ2h0PSIzMCIvPgogICAgPC9nPgogIDwvZz4KPC9zdmc+Cg==);
}
.leaflet-pm-toolbar .leaflet-pm-icon-polyline {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCI+CiAgPGRlZnM+CiAgICA8cGF0aCBpZD0ibGluZS1hIiBkPSJNOS4xNjUwOTcyNSwxOS40MjA2ODkyIEwxOC40MjA2ODkyLDEwLjE2NTA5NzMgQzE4LjE1MjM2ODEsOS42Njk5MjkxNCAxOCw5LjEwMjc1ODMxIDE4LDguNSBDMTgsNi41NjcwMDMzOCAxOS41NjcwMDM0LDUgMjEuNSw1IEMyMy40MzI5OTY2LDUgMjUsNi41NjcwMDMzOCAyNSw4LjUgQzI1LDEwLjQzMjk5NjYgMjMuNDMyOTk2NiwxMiAyMS41LDEyIEMyMC44OTcyNDE3LDEyIDIwLjMzMDA3MDksMTEuODQ3NjMxOSAxOS44MzQ5MDI3LDExLjU3OTMxMDggTDEwLjU3OTMxMDgsMjAuODM0OTAyNyBDMTAuODQ3NjMxOSwyMS4zMzAwNzA5IDExLDIxLjg5NzI0MTcgMTEsMjIuNSBDMTEsMjQuNDMyOTk2NiA5LjQzMjk5NjYyLDI2IDcuNSwyNiBDNS41NjcwMDMzOCwyNiA0LDI0LjQzMjk5NjYgNCwyMi41IEM0LDIwLjU2NzAwMzQgNS41NjcwMDMzOCwxOSA3LjUsMTkgQzguMTAyNzU4MzEsMTkgOC42Njk5MjkxNCwxOS4xNTIzNjgxIDkuMTY1MDk3MjUsMTkuNDIwNjg5MiBaIE0yMS41LDEwIEMyMi4zMjg0MjcxLDEwIDIzLDkuMzI4NDI3MTIgMjMsOC41IEMyMyw3LjY3MTU3Mjg4IDIyLjMyODQyNzEsNyAyMS41LDcgQzIwLjY3MTU3MjksNyAyMCw3LjY3MTU3Mjg4IDIwLDguNSBDMjAsOS4zMjg0MjcxMiAyMC42NzE1NzI5LDEwIDIxLjUsMTAgWiBNNy41LDI0IEM4LjMyODQyNzEyLDI0IDksMjMuMzI4NDI3MSA5LDIyLjUgQzksMjEuNjcxNTcyOSA4LjMyODQyNzEyLDIxIDcuNSwyMSBDNi42NzE1NzI4OCwyMSA2LDIxLjY3MTU3MjkgNiwyMi41IEM2LDIzLjMyODQyNzEgNi42NzE1NzI4OCwyNCA3LjUsMjQgWiIvPgogIDwvZGVmcz4KICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0zIC0zKSI+CiAgICA8bWFzayBpZD0ibGluZS1iIiBmaWxsPSIjZmZmIj4KICAgICAgPHVzZSB4bGluazpocmVmPSIjbGluZS1hIi8+CiAgICA8L21hc2s+CiAgICA8dXNlIGZpbGw9IiM1QjVCNUIiIGZpbGwtcnVsZT0ibm9uemVybyIgeGxpbms6aHJlZj0iI2xpbmUtYSIvPgogICAgPGcgZmlsbD0iIzVCNUI1QiIgbWFzaz0idXJsKCNsaW5lLWIpIj4KICAgICAgPHJlY3Qgd2lkdGg9IjMwIiBoZWlnaHQ9IjMwIi8+CiAgICA8L2c+CiAgPC9nPgo8L3N2Zz4K);
}
.leaflet-pm-toolbar .leaflet-pm-icon-circle {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjRweCIgaGVpZ2h0PSIyNHB4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDUyLjUgKDY3NDY5KSAtIGh0dHA6Ly93d3cuYm9oZW1pYW5jb2RpbmcuY29tL3NrZXRjaCAtLT4KICAgIDx0aXRsZT5BdG9tcy9JY29ucy9Ub29scy9DaXJjbGU8L3RpdGxlPgogICAgPGRlc2M+Q3JlYXRlZCB3aXRoIFNrZXRjaC48L2Rlc2M+CiAgICA8ZGVmcz4KICAgICAgICA8cGF0aCBkPSJNMTguMjg5Nzc1MSw2Ljc4NjAyMjc1IEMxOC44OTI0MTMxLDYuMjk0NjQ5ODEgMTkuNjYxNzk3LDYgMjAuNSw2IEMyMi40MzI5OTY2LDYgMjQsNy41NjcwMDMzOCAyNCw5LjUgQzI0LDEwLjMzODIwMyAyMy43MDUzNTAyLDExLjEwNzU4NjkgMjMuMjEzOTc3MiwxMS43MTAyMjQ5IEMyMy43MTk1OTksMTIuODcxMjA1MyAyNCwxNC4xNTI4NTcxIDI0LDE1LjUgQzI0LDIwLjc0NjcwNTEgMTkuNzQ2NzA1MSwyNSAxNC41LDI1IEM5LjI1MzI5NDg4LDI1IDUsMjAuNzQ2NzA1MSA1LDE1LjUgQzUsMTAuMjUzMjk0OSA5LjI1MzI5NDg4LDYgMTQuNSw2IEMxNS44NDcxNDI5LDYgMTcuMTI4Nzk0Nyw2LjI4MDQwMDk4IDE4LjI4OTc3NTEsNi43ODYwMjI3NSBaIE0xNy4xNTA0MjI4LDguNDgxNzU4NiBDMTYuMzI2MzU4MSw4LjE3MDM5MjM2IDE1LjQzMzA3NzcsOCAxNC41LDggQzEwLjM1Nzg2NDQsOCA3LDExLjM1Nzg2NDQgNywxNS41IEM3LDE5LjY0MjEzNTYgMTAuMzU3ODY0NCwyMyAxNC41LDIzIEMxOC42NDIxMzU2LDIzIDIyLDE5LjY0MjEzNTYgMjIsMTUuNSBDMjIsMTQuNTY2OTIyMyAyMS44Mjk2MDc2LDEzLjY3MzY0MTkgMjEuNTE4MjQxNCwxMi44NDk1NzcyIEMyMS4xOTYwMzgzLDEyLjk0NzM5NjggMjAuODU0MTYyMiwxMyAyMC41LDEzIEMxOC41NjcwMDM0LDEzIDE3LDExLjQzMjk5NjYgMTcsOS41IEMxNyw5LjE0NTgzNzc4IDE3LjA1MjYwMzIsOC44MDM5NjE2OSAxNy4xNTA0MjI4LDguNDgxNzU4NiBaIE0xNC41LDE3IEMxMy42NzE1NzI5LDE3IDEzLDE2LjMyODQyNzEgMTMsMTUuNSBDMTMsMTQuNjcxNTcyOSAxMy42NzE1NzI5LDE0IDE0LjUsMTQgQzE1LjMyODQyNzEsMTQgMTYsMTQuNjcxNTcyOSAxNiwxNS41IEMxNiwxNi4zMjg0MjcxIDE1LjMyODQyNzEsMTcgMTQuNSwxNyBaIE0yMC41LDExIEMyMS4zMjg0MjcxLDExIDIyLDEwLjMyODQyNzEgMjIsOS41IEMyMiw4LjY3MTU3Mjg4IDIxLjMyODQyNzEsOCAyMC41LDggQzE5LjY3MTU3MjksOCAxOSw4LjY3MTU3Mjg4IDE5LDkuNSBDMTksMTAuMzI4NDI3MSAxOS42NzE1NzI5LDExIDIwLjUsMTEgWiIgaWQ9InBhdGgtMSI+PC9wYXRoPgogICAgPC9kZWZzPgogICAgPGcgaWQ9IlN5bWJvbHMiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJBdG9tcy9JY29ucy9Ub29scy9DaXJjbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0zLjAwMDAwMCwgLTMuMDAwMDAwKSI+CiAgICAgICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4KICAgICAgICAgICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI3BhdGgtMSI+PC91c2U+CiAgICAgICAgICAgIDwvbWFzaz4KICAgICAgICAgICAgPHVzZSBpZD0iTWFzayIgZmlsbD0iIzVCNUI1QiIgZmlsbC1ydWxlPSJub256ZXJvIiB4bGluazpocmVmPSIjcGF0aC0xIj48L3VzZT4KICAgICAgICAgICAgPGcgaWQ9IkF0b21zL0NvbG9yL0dyZXkiIG1hc2s9InVybCgjbWFzay0yKSIgZmlsbD0iIzVCNUI1QiI+CiAgICAgICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIwIiB5PSIwIiB3aWR0aD0iMzAiIGhlaWdodD0iMzAiPjwvcmVjdD4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+);
}
.leaflet-pm-toolbar .leaflet-pm-icon-circle-marker {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KCjxzdmcgdmlld0JveD0iMCAwIDEwMCAxMDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgc3Ryb2tlPSIjNUI1QjVCIiBzdHJva2Utd2lkdGg9IjgiCiAgICAgZmlsbD0ibm9uZSI+CjxjaXJjbGUgY3g9IjUwIiBjeT0iNTAiIHI9IjM1Ii8+CiAgPGNpcmNsZSBjeD0iNTAiIGN5PSI1MCIgcj0iMyIgZmlsbD0iIzVCNUI1QiIvPgo8L3N2Zz4=);
}
.leaflet-pm-toolbar .leaflet-pm-icon-rectangle {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCI+CiAgPGRlZnM+CiAgICA8cGF0aCBpZD0icmVjdGFuZ2xlLWEiIGQ9Ik0yMywxMC45NjQ1NTU2IEwyMywxOS4wMzU0NDQ0IEMyNC42OTYxNDcxLDE5LjI3ODA1OTMgMjYsMjAuNzM2NzY0IDI2LDIyLjUgQzI2LDI0LjQzMjk5NjYgMjQuNDMyOTk2NiwyNiAyMi41LDI2IEMyMC43MzY3NjQsMjYgMTkuMjc4MDU5MywyNC42OTYxNDcxIDE5LjAzNTQ0NDQsMjMgTDEwLjk2NDU1NTYsMjMgQzEwLjcyMTk0MDcsMjQuNjk2MTQ3MSA5LjI2MzIzNTk1LDI2IDcuNSwyNiBDNS41NjcwMDMzOCwyNiA0LDI0LjQzMjk5NjYgNCwyMi41IEM0LDIwLjczNjc2NCA1LjMwMzg1MjkzLDE5LjI3ODA1OTMgNywxOS4wMzU0NDQ0IEw3LDEwLjk2NDU1NTYgQzUuMzAzODUyOTMsMTAuNzIxOTQwNyA0LDkuMjYzMjM1OTUgNCw3LjUgQzQsNS41NjcwMDMzOCA1LjU2NzAwMzM4LDQgNy41LDQgQzkuMjYzMjM1OTUsNCAxMC43MjE5NDA3LDUuMzAzODUyOTMgMTAuOTY0NTU1Niw3IEwxOS4wMzU0NDQ0LDcgQzE5LjI3ODA1OTMsNS4zMDM4NTI5MyAyMC43MzY3NjQsNCAyMi41LDQgQzI0LjQzMjk5NjYsNCAyNiw1LjU2NzAwMzM4IDI2LDcuNSBDMjYsOS4yNjMyMzU5NSAyNC42OTYxNDcxLDEwLjcyMTk0MDcgMjMsMTAuOTY0NTU1NiBaIE0yMSwxMC42NjMxODQ0IEMyMC4yNzIxNTQsMTAuMzE3NDIyNSAxOS42ODI1Nzc1LDkuNzI3ODQ1OTggMTkuMzM2ODE1Niw5IEwxMC42NjMxODQ0LDkgQzEwLjMxNzQyMjUsOS43Mjc4NDU5OCA5LjcyNzg0NTk4LDEwLjMxNzQyMjUgOSwxMC42NjMxODQ0IEw5LDE5LjMzNjgxNTYgQzkuNzI3ODQ1OTgsMTkuNjgyNTc3NSAxMC4zMTc0MjI1LDIwLjI3MjE1NCAxMC42NjMxODQ0LDIxIEwxOS4zMzY4MTU2LDIxIEMxOS42ODI1Nzc1LDIwLjI3MjE1NCAyMC4yNzIxNTQsMTkuNjgyNTc3NSAyMSwxOS4zMzY4MTU2IEwyMSwxMC42NjMxODQ0IFogTTcuNSw5IEM4LjMyODQyNzEyLDkgOSw4LjMyODQyNzEyIDksNy41IEM5LDYuNjcxNTcyODggOC4zMjg0MjcxMiw2IDcuNSw2IEM2LjY3MTU3Mjg4LDYgNiw2LjY3MTU3Mjg4IDYsNy41IEM2LDguMzI4NDI3MTIgNi42NzE1NzI4OCw5IDcuNSw5IFogTTIyLjUsOSBDMjMuMzI4NDI3MSw5IDI0LDguMzI4NDI3MTIgMjQsNy41IEMyNCw2LjY3MTU3Mjg4IDIzLjMyODQyNzEsNiAyMi41LDYgQzIxLjY3MTU3MjksNiAyMSw2LjY3MTU3Mjg4IDIxLDcuNSBDMjEsOC4zMjg0MjcxMiAyMS42NzE1NzI5LDkgMjIuNSw5IFogTTIyLjUsMjQgQzIzLjMyODQyNzEsMjQgMjQsMjMuMzI4NDI3MSAyNCwyMi41IEMyNCwyMS42NzE1NzI5IDIzLjMyODQyNzEsMjEgMjIuNSwyMSBDMjEuNjcxNTcyOSwyMSAyMSwyMS42NzE1NzI5IDIxLDIyLjUgQzIxLDIzLjMyODQyNzEgMjEuNjcxNTcyOSwyNCAyMi41LDI0IFogTTcuNSwyNCBDOC4zMjg0MjcxMiwyNCA5LDIzLjMyODQyNzEgOSwyMi41IEM5LDIxLjY3MTU3MjkgOC4zMjg0MjcxMiwyMSA3LjUsMjEgQzYuNjcxNTcyODgsMjEgNiwyMS42NzE1NzI5IDYsMjIuNSBDNiwyMy4zMjg0MjcxIDYuNjcxNTcyODgsMjQgNy41LDI0IFoiLz4KICA8L2RlZnM+CiAgPGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMyAtMykiPgogICAgPG1hc2sgaWQ9InJlY3RhbmdsZS1iIiBmaWxsPSIjZmZmIj4KICAgICAgPHVzZSB4bGluazpocmVmPSIjcmVjdGFuZ2xlLWEiLz4KICAgIDwvbWFzaz4KICAgIDx1c2UgZmlsbD0iIzVCNUI1QiIgZmlsbC1ydWxlPSJub256ZXJvIiB4bGluazpocmVmPSIjcmVjdGFuZ2xlLWEiLz4KICAgIDxnIGZpbGw9IiM1QjVCNUIiIG1hc2s9InVybCgjcmVjdGFuZ2xlLWIpIj4KICAgICAgPHJlY3Qgd2lkdGg9IjMwIiBoZWlnaHQ9IjMwIi8+CiAgICA8L2c+CiAgPC9nPgo8L3N2Zz4K);
}
.leaflet-pm-toolbar .leaflet-pm-icon-delete {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjRweCIgaGVpZ2h0PSIyNHB4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDUyLjUgKDY3NDY5KSAtIGh0dHA6Ly93d3cuYm9oZW1pYW5jb2RpbmcuY29tL3NrZXRjaCAtLT4KICAgIDx0aXRsZT5BdG9tcy9JY29ucy9Ub29scy9FcmFzZXI8L3RpdGxlPgogICAgPGRlc2M+Q3JlYXRlZCB3aXRoIFNrZXRjaC48L2Rlc2M+CiAgICA8ZGVmcz4KICAgICAgICA8cGF0aCBkPSJNMTcuNzg3NDIxOSwxOC40ODEyNTUyIEwxMS42NDgwMDc5LDEzLjM0OTgxODQgTDYuNDA0NjYwMDksMTkuMzgxNjAwMSBMMTAuNTUzOTE1NiwyMi45ODg0OTI5IEwxMy44NjkzNCwyMi45ODg0OTI5IEwxNy43ODc0MjE5LDE4LjQ4MTI1NTIgWiBNMTYuNTA3NDI1MiwyMi45ODg0OTI5IEwyNi4wMDAwMDAyLDIyLjk4ODQ5MjkgTDI2LjAwMDAwMDIsMjQuOTg4NDkyOSBMMTAuMDAwMDAwMiwyNC45ODg0OTI5IEw5LjgwNzA4MzEzLDI0Ljk4ODQ5MjkgTDUuMDkyNTQyMDQsMjAuODkxMDE5MiBDNC4yNTg5MTI4NSwyMC4xNjYzNTY0IDQuMTcwNTc4MTQsMTguOTAzMTExMiA0Ljg5NTI0MDkzLDE4LjA2OTQ4MiBMMTYuMDQ4MjQ0NCw1LjIzOTQxOTE2IEMxNi43NzI5MDcyLDQuNDA1Nzg5OTggMTguMDM2MTUyNSw0LjMxNzQ1NTI2IDE4Ljg2OTc4MTYsNS4wNDIxMTgwNiBMMjQuOTA3NDU4MywxMC4yOTA1OTAzIEMyNS43NDEwODc1LDExLjAxNTI1MzEgMjUuODI5NDIyMiwxMi4yNzg0OTgzIDI1LjEwNDc1OTQsMTMuMTEyMTI3NSBMMTYuNTA3NDI1MiwyMi45ODg0OTI5IFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4KICAgIDwvZGVmcz4KICAgIDxnIGlkPSJTeW1ib2xzIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iQXRvbXMvSWNvbnMvVG9vbHMvRXJhc2VyIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMy4wMDAwMDAsIC0zLjAwMDAwMCkiPgogICAgICAgICAgICA8bWFzayBpZD0ibWFzay0yIiBmaWxsPSJ3aGl0ZSI+CiAgICAgICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPgogICAgICAgICAgICA8L21hc2s+CiAgICAgICAgICAgIDx1c2UgaWQ9IkNvbWJpbmVkLVNoYXBlIiBmaWxsPSIjNUI1QjVCIiBmaWxsLXJ1bGU9Im5vbnplcm8iIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+);
}
.leaflet-pm-toolbar .leaflet-pm-icon-edit {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCI+CiAgPGRlZnM+CiAgICA8cGF0aCBpZD0iZWRpdF9hbmNob3ItYSIgZD0iTTEzLjUsMTEgQzExLjU2NzAwMzQsMTEgMTAsOS40MzI5OTY2MiAxMCw3LjUgQzEwLDUuNTY3MDAzMzggMTEuNTY3MDAzNCw0IDEzLjUsNCBDMTUuNDMyOTk2Niw0IDE3LDUuNTY3MDAzMzggMTcsNy41IEMxNyw5LjQzMjk5NjYyIDE1LjQzMjk5NjYsMTEgMTMuNSwxMSBaIE0xMy41LDkgQzE0LjMyODQyNzEsOSAxNSw4LjMyODQyNzEyIDE1LDcuNSBDMTUsNi42NzE1NzI4OCAxNC4zMjg0MjcxLDYgMTMuNSw2IEMxMi42NzE1NzI5LDYgMTIsNi42NzE1NzI4OCAxMiw3LjUgQzEyLDguMzI4NDI3MTIgMTIuNjcxNTcyOSw5IDEzLjUsOSBaIE0xMi4wMDAyODg5LDcuNTI5NzM4OTMgQzEyLjAxMjU5ODMsOC4xNjI3MzY3MiAxMi40MTcwMTk3LDguNjk5NjY0MyAxMi45ODA3MTExLDguOTA3Njc5NjYgTDMsMTUgTDMsMTMgTDEyLjAwMDI4ODksNy41Mjk3Mzg5MyBaIE0xNC4yMTcyNzIyLDYuMTgyMjg0NzIgTDE5LjQ1MzEyNSwzIEwyMi42NTg5MzU1LDMgTDE0Ljk4OTEwMiw3LjY4MTczODg1IEMxNC45OTYyOTcxLDcuNjIyMTY0NTkgMTUsNy41NjE1MTQ3MiAxNSw3LjUgQzE1LDYuOTMxMzgzODEgMTQuNjgzNjA5OCw2LjQzNjY2NDUgMTQuMjE3MjcyMiw2LjE4MjI4NDcyIFogTTIzLjQ0MzQwNDIsMTkuMjg1MTczNiBMMjAuMTI4Mjc5OSwxOS4yODUxNzM2IEwyMS44NzI5OTgzLDIzLjUzNDk1MjUgQzIxLjk5NDUyOTYsMjMuODI5NTc3MyAyMS44NTU2NTQ2LDI0LjE1OTkyMDkgMjEuNTc3ODczNCwyNC4yODQ5MjA4IEwyMC4wNDE0Njc1LDI0Ljk1NDUxNDIgQzE5Ljc1NTA2MTMsMjUuMDc5NTE0MSAxOS40MzM4NzM4LDI0LjkzNjY3MDQgMTkuMzEyMzQyNiwyNC42NTA5NTE4IEwxNy42NTQ0MzY3LDIwLjYxNTQ1NDEgTDE0Ljk0NjE4NzMsMjMuNDAxMDE1MSBDMTQuNTg1MjgxMSwyMy43NzIxNzExIDE0LDIzLjQ4NjA0NjMgMTQsMjIuOTk5MjY1MyBMMTQsOS41NzE4MzUzMyBDMTQsOS4wNTkzMzU2MSAxNC42MjI1MzExLDguODA5NDkyIDE0Ljk0NjE1Niw5LjE3MDA4NTU1IEwyMy44MzQwMjkyLDE4LjMxMjAxNzkgQzI0LjE5MjUyOTEsMTguNjYxMzYxNSAyMy45Mjc5OTc5LDE5LjI4NTE3MzYgMjMuNDQzNDA0MiwxOS4yODUxNzM2IFoiLz4KICA8L2RlZnM+CiAgPGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMyAtMykiPgogICAgPG1hc2sgaWQ9ImVkaXRfYW5jaG9yLWIiIGZpbGw9IiNmZmYiPgogICAgICA8dXNlIHhsaW5rOmhyZWY9IiNlZGl0X2FuY2hvci1hIi8+CiAgICA8L21hc2s+CiAgICA8dXNlIGZpbGw9IiM1QjVCNUIiIGZpbGwtcnVsZT0ibm9uemVybyIgeGxpbms6aHJlZj0iI2VkaXRfYW5jaG9yLWEiLz4KICAgIDxnIGZpbGw9IiM1QjVCNUIiIG1hc2s9InVybCgjZWRpdF9hbmNob3ItYikiPgogICAgICA8cmVjdCB3aWR0aD0iMzAiIGhlaWdodD0iMzAiLz4KICAgIDwvZz4KICA8L2c+Cjwvc3ZnPgo=);
}
.leaflet-pm-toolbar .leaflet-pm-icon-drag {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCI+CiAgPGRlZnM+CiAgICA8cGF0aCBpZD0ibW92ZS1hIiBkPSJNMjEsMTQgTDIxLDEwIEwyNywxNSBMMjEsMjAgTDIxLDE2IEwxNiwxNiBMMTYsMjEgTDIwLDIxIEwxNSwyNyBMMTAsMjEgTDE0LDIxIEwxNCwxNiBMOSwxNiBMOSwyMCBMMywxNSBMOSwxMCBMOSwxNCBMMTQsMTQgTDE0LDkgTDEwLDkgTDE1LDMgTDIwLDkgTDE2LDkgTDE2LDE0IEwyMSwxNCBaIi8+CiAgPC9kZWZzPgogIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTMgLTMpIj4KICAgIDxtYXNrIGlkPSJtb3ZlLWIiIGZpbGw9IiNmZmYiPgogICAgICA8dXNlIHhsaW5rOmhyZWY9IiNtb3ZlLWEiLz4KICAgIDwvbWFzaz4KICAgIDx1c2UgZmlsbD0iI0Q4RDhEOCIgeGxpbms6aHJlZj0iI21vdmUtYSIvPgogICAgPGcgZmlsbD0iIzVCNUI1QiIgbWFzaz0idXJsKCNtb3ZlLWIpIj4KICAgICAgPHJlY3Qgd2lkdGg9IjMwIiBoZWlnaHQ9IjMwIi8+CiAgICA8L2c+CiAgPC9nPgo8L3N2Zz4K);
}
.leaflet-pm-toolbar .leaflet-pm-icon-cut {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjRweCIgaGVpZ2h0PSIyNHB4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDUyLjUgKDY3NDY5KSAtIGh0dHA6Ly93d3cuYm9oZW1pYW5jb2RpbmcuY29tL3NrZXRjaCAtLT4KICAgIDx0aXRsZT5BdG9tcy9JY29ucy9Ub29scy9TY2lzc29yczwvdGl0bGU+CiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4KICAgIDxkZWZzPgogICAgICAgIDxwYXRoIGQ9Ik0xMi45NjkxNTc0LDEzLjQ5Mzk0MzUgTDIxLjAzMTcwMzIsNS41NDE2NzAxMyBMMjMuNDY0OTQ5OSw1LjY3NzIyOTU3IEwxNy4wNDcwNzEzLDE0LjUxMDY4MTYgTDI3LjU2NjAzMzYsMTcuMTMzMzUzNSBMMjUuNzg5MTk0NCwxOC44MDEyNTg4IEwxNC41ODU0OTUxLDE3Ljg5ODc1MDYgTDEzLjY0ODc5NTUsMTkuMTg4MDA3IEMxMy43OTQ2MzksMTkuMjY1MDk1OCAxMy45MzY3OTg1LDE5LjM1MzQ0MTcgMTQuMDc0MTM3NywxOS40NTMyMjQ1IEMxNS42Mzc5NjQ4LDIwLjU4OTQxMTQgMTUuOTg0NjM1NywyMi43NzgyMDUyIDE0Ljg0ODQ0ODgsMjQuMzQyMDMyNCBDMTMuNzEyMjYxOSwyNS45MDU4NTk1IDExLjUyMzQ2ODEsMjYuMjUyNTMwNCA5Ljk1OTY0MDk2LDI1LjExNjM0MzUgQzguMzk1ODEzODQsMjMuOTgwMTU2NSA4LjA0OTE0Mjk2LDIxLjc5MTM2MjcgOS4xODUzMjk4NiwyMC4yMjc1MzU2IEM5Ljc0NTg3Mjc2LDE5LjQ1NjAxNDUgMTAuNTYyNjE4OCwxOC45ODA3NDc1IDExLjQzNDEyMTgsMTguODMzNjQwNyBMMTIuNjgwNTY1NiwxNy4xMTgwNTc5IEwxMi41MjM5NzI0LDE2LjM3NDcyMTYgTDExLjk1MDY5MzIsMTUuMzAxMjM5MSBMOS44OTMxMDY0NiwxNC43ODgyMjUxIEM5LjEzMDkzNzk2LDE1LjIzNTcyNjEgOC4xOTk3Nzg1NCwxNS4zOTY2NDQ3IDcuMjc0NDUzNTUsMTUuMTY1OTM1MiBDNS4zOTg4NzUxOSwxNC42OTgzMDEgNC4yNTc1MTA5NCwxMi43OTg3NTE5IDQuNzI1MTQ1MTUsMTAuOTIzMTczNiBDNS4xOTI3NzkzNSw5LjA0NzU5NTE5IDcuMDkyMzI4NDYsNy45MDYyMzA5NCA4Ljk2NzkwNjgyLDguMzczODY1MTUgQzEwLjg0MzQ4NTIsOC44NDE0OTkzNSAxMS45ODQ4NDk0LDEwLjc0MTA0ODUgMTEuNTE3MjE1MiwxMi42MTY2MjY4IEMxMS40NzYxNDY0LDEyLjc4MTM0NDkgMTEuNDI0MDMzNSwxMi45NDA0MDAxIDExLjM2MTg2MjcsMTMuMDkzMTk5OSBMMTIuOTY5MTU3NCwxMy40OTM5NDM1IFogTTcuNzU4Mjk3MzUsMTMuMjI1MzQzOCBDOC41NjIxMTY2NCwxMy40MjU3NTg0IDkuMzc2MjA5MTIsMTIuOTM2NjAyMyA5LjU3NjYyMzc4LDEyLjEzMjc4MyBDOS43NzcwMzg0NCwxMS4zMjg5NjM3IDkuMjg3ODgyMzMsMTAuNTE0ODcxMyA4LjQ4NDA2MzAzLDEwLjMxNDQ1NjYgQzcuNjgwMjQzNzMsMTAuMTE0MDQxOSA2Ljg2NjE1MTI2LDEwLjYwMzE5OCA2LjY2NTczNjYsMTEuNDA3MDE3MyBDNi40NjUzMjE5NCwxMi4yMTA4MzY2IDYuOTU0NDc4MDUsMTMuMDI0OTI5MSA3Ljc1ODI5NzM1LDEzLjIyNTM0MzggWiBNMTAuODAzMzYzOSwyMS40MDMxMDYxIEMxMC4zMTY0MjY2LDIyLjA3MzMxNzcgMTAuNDY0OTk5OCwyMy4wMTEzNzIyIDExLjEzNTIxMTUsMjMuNDk4MzA5NSBDMTEuODA1NDIzMSwyMy45ODUyNDY3IDEyLjc0MzQ3NzYsMjMuODM2NjczNSAxMy4yMzA0MTQ4LDIzLjE2NjQ2MTkgQzEzLjcxNzM1MjEsMjIuNDk2MjUwMiAxMy41Njg3Nzg4LDIxLjU1ODE5NTcgMTIuODk4NTY3MiwyMS4wNzEyNTg1IEMxMi4yMjgzNTU2LDIwLjU4NDMyMTIgMTEuMjkwMzAxMSwyMC43MzI4OTQ1IDEwLjgwMzM2MzksMjEuNDAzMTA2MSBaIiBpZD0icGF0aC0xIj48L3BhdGg+CiAgICA8L2RlZnM+CiAgICA8ZyBpZD0iU3ltYm9scyIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9IkF0b21zL0ljb25zL1Rvb2xzL1NjaXNzb3JzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMy4wMDAwMDAsIC0zLjAwMDAwMCkiPgogICAgICAgICAgICA8bWFzayBpZD0ibWFzay0yIiBmaWxsPSJ3aGl0ZSI+CiAgICAgICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPgogICAgICAgICAgICA8L21hc2s+CiAgICAgICAgICAgIDx1c2UgaWQ9Ik1hc2siIGZpbGw9IiM1QjVCNUIiIGZpbGwtcnVsZT0ibm9uemVybyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTYuMDkzMTk0LCAxNS42NjMzNTEpIHJvdGF0ZSgtMzIuMDAwMDAwKSB0cmFuc2xhdGUoLTE2LjA5MzE5NCwgLTE1LjY2MzM1MSkgIiB4bGluazpocmVmPSIjcGF0aC0xIj48L3VzZT4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==);
}
.leaflet-pm-toolbar .leaflet-pm-icon-snapping {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjRweCIgaGVpZ2h0PSIyNHB4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDU3LjEgKDgzMDg4KSAtIGh0dHBzOi8vc2tldGNoLmNvbSAtLT4KICAgIDx0aXRsZT5BdG9tcy9JY29ucy9Ub29scy9NYWduZXQ8L3RpdGxlPgogICAgPGRlc2M+Q3JlYXRlZCB3aXRoIFNrZXRjaC48L2Rlc2M+CiAgICA8ZGVmcz4KICAgICAgICA8cGF0aCBkPSJNMjEuOTk5NDc1OSwxMC45NDI4MTgzIEwyMS45OTk5OTg1LDE2LjM3MTA0MTcgQzIyLDE2LjY4NzIwMDcgMjIsMTcuMDA1ODI3OCAyMiwxNy4zMjY5NDExIEMyMiwyMS41NjQ2NTQ1IDE4LjY0MjEzNTYsMjUgMTQuNSwyNSBDMTAuMzU3ODY0NCwyNSA3LDIxLjU2NDY1NDUgNywxNy4zMjY5NDExIEw3LjAwMDg3NTA4LDEwLjk5MDc1MDcgTDExLjAwMjI4MDgsMTAuOTk4NDEyNSBDMTEuMDAxNzAzMywxMS42OTgwMTE0IDExLjAwMTI0NywxMi40MTY4MjQ4IDExLjAwMDg5OTIsMTMuMTU1NDg4NyBMMTEsMTcuMzI2OTQxMSBDMTEsMTkuMzc1NjgwOSAxMi41ODc2ODQxLDIxIDE0LjUsMjEgQzE2LjQxMjMxNTksMjEgMTgsMTkuMzc1NjgwOSAxOCwxNy4zMjY5NDExIEMxOCwxNS4wNzAyMDMyIDE3Ljk5OTU2OTYsMTIuOTYxOTY2OCAxNy45OTg1MzksMTAuOTkxMDAzMiBMMjEuOTk5NDc1OSwxMC45NDI4MTgzIFogTTEwLDcgQzEwLjU1MjI4NDcsNyAxMSw3LjQ0NzcxNTI1IDExLDggTDExLDEwIEw3LDEwIEw3LDggQzcsNy40NDc3MTUyNSA3LjQ0NzcxNTI1LDcgOCw3IEwxMCw3IFogTTIxLDcgQzIxLjU1MjI4NDcsNyAyMiw3LjQ0NzcxNTI1IDIyLDggTDIyLDEwIEwxOCwxMCBMMTgsOCBDMTgsNy40NDc3MTUyNSAxOC40NDc3MTUzLDcgMTksNyBMMjEsNyBaIiBpZD0icGF0aC0xIj48L3BhdGg+CiAgICA8L2RlZnM+CiAgICA8ZyBpZD0iU3ltYm9scyIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9IkF0b21zL0ljb25zL1Rvb2xzL01hZ25ldCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTMuMDAwMDAwLCAtMy4wMDAwMDApIj4KICAgICAgICAgICAgPG1hc2sgaWQ9Im1hc2stMiIgZmlsbD0id2hpdGUiPgogICAgICAgICAgICAgICAgPHVzZSB4bGluazpocmVmPSIjcGF0aC0xIj48L3VzZT4KICAgICAgICAgICAgPC9tYXNrPgogICAgICAgICAgICA8dXNlIGlkPSJNYXNrIiBmaWxsPSIjNUI1QjVCIiBmaWxsLXJ1bGU9Im5vbnplcm8iIHRyYW5zZm9ybT0idHJhbnNsYXRlKDE0LjUwMDAwMCwgMTYuMDAwMDAwKSByb3RhdGUoNDUuMDAwMDAwKSB0cmFuc2xhdGUoLTE0LjUwMDAwMCwgLTE2LjAwMDAwMCkgIiB4bGluazpocmVmPSIjcGF0aC0xIj48L3VzZT4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==);
}
.leaflet-pm-toolbar .leaflet-pm-icon-rotate {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCI+CiAgICA8ZGVmcz4KICAgICAgICA8cGF0aCBpZD0icm90YXRlIiBkPSJNMjEuMiw1LjhjLTAuMS0wLjItMC4yLTAuMy0wLjMtMC41bC0wLjEtMC4yYy0wLjEtMC4yLTAuMi0wLjMtMC4zLTAuNWwtMC4xLTAuMmMtMC4xLTAuMi0wLjItMC4zLTAuNC0wLjVsLTAuMi0wLjNsMi44LTMuMUwxOCwwLjZsLTQuNiwwLjFsMC41LDQuNWwwLjUsNC41bDMuMi0zLjZ2MC4xbDAuMSwwLjJjMC4xLDAuMSwwLjEsMC4yLDAuMiwwLjJsMC4xLDAuMkMxOCw3LDE4LDcuMSwxOC4xLDcuMmMwLjMsMC43LDAuNiwxLjQsMC43LDIuMWMwLjIsMS40LDAsMi45LTAuNiw0LjJMMTgsMTMuOUwxNy45LDE0bC0wLjMsMC41bC0wLjEsMC4yYy0wLjIsMC4yLTAuNCwwLjUtMC42LDAuN2MtMC41LDAuNS0xLjEsMS0xLjcsMS4zYy0wLjYsMC40LTEuMywwLjYtMi4xLDAuOGMtMC43LDAuMS0xLjUsMC4yLTIuMiwwLjFjLTAuOC0wLjEtMS41LTAuMy0yLjItMC41Yy0wLjctMC4zLTEuMy0wLjctMS45LTEuMmwtMC40LTAuNGwtMC4yLTAuM0w2LDE1Yy0wLjEtMC4xLTAuMi0wLjItMC4yLTAuM2wtMC4zLTAuNGwtMC4xLTAuMWwtMC4yLTAuNGMwLTAuMS0wLjEtMC4xLTAuMS0wLjJsLTAuMy0wLjVsLTAuMS0wLjJjLTAuMS0wLjMtMC4yLTAuNi0wLjMtMC45Yy0wLjItMC44LTAuMy0xLjYtMC4zLTIuNGMwLTAuMiwwLTAuMywwLTAuNVY4LjljMC0wLjIsMC0wLjMsMC4xLTAuNGwwLjEtMC42bDAuMi0wLjZjMC4zLTAuOCwwLjctMS41LDEuMi0yLjJjMC41LTAuNywxLjEtMS4zLDEuOC0xLjhjMC4yLTAuMSwwLjMtMC40LDAuMS0wLjZDNy41LDIuNiw3LjQsMi41LDcuMywyLjVINy4xTDcsMi42QzYuMSwzLDUuNCwzLjYsNC43LDQuMkM0LDQuOSwzLjUsNS43LDMsNi42Yy0wLjksMS44LTEuMiwzLjgtMC44LDUuOGMwLjEsMC41LDAuMiwwLjksMC4zLDEuNGwwLjMsMC44QzIuOSwxNC43LDMsMTQuOCwzLDE1bDAuMiwwLjRjMCwwLjEsMC4xLDAuMiwwLjEsMC4ybDAuMywwLjVjMC4xLDAuMiwwLjIsMC4zLDAuMywwLjVsMC4xLDAuMmMwLjEsMC4xLDAuMiwwLjMsMC4zLDAuNEw1LDE3LjhjMC43LDAuNywxLjYsMS4zLDIuNSwxLjhjMC45LDAuNSwxLjksMC44LDMsMC45YzAuNSwwLjEsMSwwLjEsMS41LDAuMWMwLjYsMCwxLjEsMCwxLjYtMC4xYzEtMC4yLDIuMS0wLjUsMy0xbDAuMi0wLjFjMC4yLTAuMSwwLjMtMC4yLDAuNS0wLjNsMC43LTAuNGMwLjItMC4xLDAuMy0wLjIsMC40LTAuM2wwLjItMC4yYzAuMi0wLjEsMC40LTAuMywwLjUtMC41bDAuMS0wLjFjMC4zLTAuMywwLjctMC43LDAuOS0xbDAuNi0wLjlsMC40LTAuNmMxLTEuOSwxLjQtNC4xLDEuMS02LjJDMjIsNy44LDIxLjcsNi43LDIxLjIsNS44eiIvPgogICAgPC9kZWZzPgogICAgPGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIDIpIj4KICAgICAgICA8bWFzayBpZD0icm90YXRlLWIiIGZpbGw9IiNmZmYiPgogICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNyb3RhdGUiLz4KICAgICAgICA8L21hc2s+CiAgICAgICAgPHVzZSBmaWxsPSIjNUI1QjVCIiBmaWxsLXJ1bGU9Im5vbnplcm8iIHhsaW5rOmhyZWY9IiNyb3RhdGUiLz4KICAgICAgICA8ZyBmaWxsPSIjNUI1QjVCIiBtYXNrPSJ1cmwoI3JvdGF0ZS1iKSI+CiAgICAgICAgICAgIDxyZWN0IHdpZHRoPSIzMCIgaGVpZ2h0PSIzMCIvPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+Cg==);
}

.leaflet-buttons-control-button:hover,
.leaflet-buttons-control-button:focus {
  cursor: pointer;
  background-color: #f4f4f4;
}
.active .leaflet-buttons-control-button {
  box-shadow: inset 0 -1px 5px 2px rgba(81, 77, 77, 0.31);
}

.leaflet-buttons-control-text-hide {
  display: none;
}

.button-container {
  position: relative;
}

.button-container .leaflet-pm-actions-container {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 100%;
  display: none;
  white-space: nowrap;
  direction: ltr;
}

.leaflet-right
  .leaflet-pm-toolbar
  .button-container
  .leaflet-pm-actions-container {
  right: 100%;
  left: auto;
}

.button-container.active .leaflet-pm-actions-container {
  display: block;
}

.button-container
  .leaflet-pm-actions-container:not(.pos-right)
  a.leaflet-pm-action:last-child {
  border-radius: 0 3px 3px 0;
  border-right: 0;
}
.button-container
  .leaflet-pm-actions-container.pos-right
  a.leaflet-pm-action:first-child {
  border-radius: 3px 0 0 3px;
}
.button-container
  .leaflet-pm-actions-container.pos-right
  a.leaflet-pm-action:last-child {
  border-right: 0;
}
.button-container .leaflet-pm-actions-container .leaflet-pm-action {
  padding: 0 10px;
  background-color: #666;
  color: #fff;
  display: inline-block;
  width: auto;
  border-right: 1px solid #eee;
  -webkit-user-select: none;
          user-select: none;
  border-bottom: none;
  height: 29px;
  line-height: 29px;
}
.leaflet-pm-toolbar
  .button-container:first-child.pos-right.active
  a.leaflet-buttons-control-button {
  border-top-left-radius: 0;
}
.leaflet-pm-toolbar
  .button-container:first-child.active:not(.pos-right)
  a.leaflet-buttons-control-button {
  border-top-right-radius: 0;
}

.button-container .leaflet-pm-actions-container .leaflet-pm-action:hover,
.button-container .leaflet-pm-actions-container .leaflet-pm-action:focus {
  cursor: pointer;
  background-color: #777;
}

/* That the active control is always over the other controls */
.leaflet-pm-toolbar.activeChild {
  z-index: 801;
}

.leaflet-buttons-control-button.pm-disabled {
  background-color: #f4f4f4;
}

.control-icon.pm-disabled {
  filter: opacity(0.6);
}


/* BASICS */

.CodeMirror {
  /* Set height, width, borders, and global font properties here */
  font-family: monospace;
  height: 300px;
  color: black;
  direction: ltr;
}

/* PADDING */

.CodeMirror-lines {
  padding: 4px 0; /* Vertical padding around content */
}
.CodeMirror pre.CodeMirror-line,
.CodeMirror pre.CodeMirror-line-like {
  padding: 0 4px; /* Horizontal padding of content */
}

.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  background-color: white; /* The little square between H and V scrollbars */
}

/* GUTTER */

.CodeMirror-gutters {
  border-right: 1px solid #ddd;
  background-color: #f7f7f7;
  white-space: nowrap;
}
.CodeMirror-linenumbers {}
.CodeMirror-linenumber {
  padding: 0 3px 0 5px;
  min-width: 20px;
  text-align: right;
  color: #999;
  white-space: nowrap;
}

.CodeMirror-guttermarker { color: black; }
.CodeMirror-guttermarker-subtle { color: #999; }

/* CURSOR */

.CodeMirror-cursor {
  border-left: 1px solid black;
  border-right: none;
  width: 0;
}
/* Shown when moving in bi-directional text */
.CodeMirror div.CodeMirror-secondarycursor {
  border-left: 1px solid silver;
}
.cm-fat-cursor .CodeMirror-cursor {
  width: auto;
  border: 0 !important;
  background: #7e7;
}
.cm-fat-cursor div.CodeMirror-cursors {
  z-index: 1;
}
.cm-fat-cursor .CodeMirror-line::selection,
.cm-fat-cursor .CodeMirror-line > span::selection, 
.cm-fat-cursor .CodeMirror-line > span > span::selection { background: transparent; }
.cm-fat-cursor .CodeMirror-line::-moz-selection,
.cm-fat-cursor .CodeMirror-line > span::-moz-selection,
.cm-fat-cursor .CodeMirror-line > span > span::-moz-selection { background: transparent; }
.cm-fat-cursor { caret-color: transparent; }
@keyframes blink {
  0% {}
  50% { background-color: transparent; }
  100% {}
}

/* Can style cursor different in overwrite (non-insert) mode */
.CodeMirror-overwrite .CodeMirror-cursor {}

.cm-tab { display: inline-block; text-decoration: inherit; }

.CodeMirror-rulers {
  position: absolute;
  left: 0; right: 0; top: -50px; bottom: 0;
  overflow: hidden;
}
.CodeMirror-ruler {
  border-left: 1px solid #ccc;
  top: 0; bottom: 0;
  position: absolute;
}

/* DEFAULT THEME */

.cm-s-default .cm-header {color: blue;}
.cm-s-default .cm-quote {color: #090;}
.cm-negative {color: #d44;}
.cm-positive {color: #292;}
.cm-header, .cm-strong {font-weight: bold;}
.cm-em {font-style: italic;}
.cm-link {text-decoration: underline;}
.cm-strikethrough {text-decoration: line-through;}

.cm-s-default .cm-keyword {color: #708;}
.cm-s-default .cm-atom {color: #219;}
.cm-s-default .cm-number {color: #164;}
.cm-s-default .cm-def {color: #00f;}
.cm-s-default .cm-variable,
.cm-s-default .cm-punctuation,
.cm-s-default .cm-property,
.cm-s-default .cm-operator {}
.cm-s-default .cm-variable-2 {color: #05a;}
.cm-s-default .cm-variable-3, .cm-s-default .cm-type {color: #085;}
.cm-s-default .cm-comment {color: #a50;}
.cm-s-default .cm-string {color: #a11;}
.cm-s-default .cm-string-2 {color: #f50;}
.cm-s-default .cm-meta {color: #555;}
.cm-s-default .cm-qualifier {color: #555;}
.cm-s-default .cm-builtin {color: #30a;}
.cm-s-default .cm-bracket {color: #997;}
.cm-s-default .cm-tag {color: #170;}
.cm-s-default .cm-attribute {color: #00c;}
.cm-s-default .cm-hr {color: #999;}
.cm-s-default .cm-link {color: #00c;}

.cm-s-default .cm-error {color: #f00;}
.cm-invalidchar {color: #f00;}

.CodeMirror-composing { border-bottom: 2px solid; }

/* Default styles for common addons */

div.CodeMirror span.CodeMirror-matchingbracket {color: #0b0;}
div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #a22;}
.CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }
.CodeMirror-activeline-background {background: #e8f2ff;}

/* STOP */

/* The rest of this file contains styles related to the mechanics of
   the editor. You probably shouldn't touch them. */

.CodeMirror {
  position: relative;
  overflow: hidden;
  background: white;
}

.CodeMirror-scroll {
  overflow: scroll !important; /* Things will break if this is overridden */
  /* 50px is the magic margin used to hide the element's real scrollbars */
  /* See overflow: hidden in .CodeMirror */
  margin-bottom: -50px; margin-right: -50px;
  padding-bottom: 50px;
  height: 100%;
  outline: none; /* Prevent dragging from highlighting the element */
  position: relative;
  z-index: 0;
}
.CodeMirror-sizer {
  position: relative;
  border-right: 50px solid transparent;
}

/* The fake, visible scrollbars. Used to force redraw during scrolling
   before actual scrolling happens, thus preventing shaking and
   flickering artifacts. */
.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  position: absolute;
  z-index: 6;
  display: none;
  outline: none;
}
.CodeMirror-vscrollbar {
  right: 0; top: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}
.CodeMirror-hscrollbar {
  bottom: 0; left: 0;
  overflow-y: hidden;
  overflow-x: scroll;
}
.CodeMirror-scrollbar-filler {
  right: 0; bottom: 0;
}
.CodeMirror-gutter-filler {
  left: 0; bottom: 0;
}

.CodeMirror-gutters {
  position: absolute; left: 0; top: 0;
  min-height: 100%;
  z-index: 3;
}
.CodeMirror-gutter {
  white-space: normal;
  height: 100%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: -50px;
}
.CodeMirror-gutter-wrapper {
  position: absolute;
  z-index: 4;
  background: none !important;
  border: none !important;
}
.CodeMirror-gutter-background {
  position: absolute;
  top: 0; bottom: 0;
  z-index: 4;
}
.CodeMirror-gutter-elt {
  position: absolute;
  cursor: default;
  z-index: 4;
}
.CodeMirror-gutter-wrapper ::selection { background-color: transparent }
.CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }

.CodeMirror-lines {
  cursor: text;
  min-height: 1px; /* prevents collapsing before first draw */
}
.CodeMirror pre.CodeMirror-line,
.CodeMirror pre.CodeMirror-line-like {
  /* Reset some styles that the rest of the page might have set */ border-radius: 0;
  border-width: 0;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  white-space: pre;
  word-wrap: normal;
  line-height: inherit;
  color: inherit;
  z-index: 2;
  position: relative;
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
  font-variant-ligatures: contextual;
}
.CodeMirror-wrap pre.CodeMirror-line,
.CodeMirror-wrap pre.CodeMirror-line-like {
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: normal;
}

.CodeMirror-linebackground {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 0;
}

.CodeMirror-linewidget {
  position: relative;
  z-index: 2;
  padding: 0.1px; /* Force widget margins to stay inside of the container */
}

.CodeMirror-widget {}

.CodeMirror-rtl pre { direction: rtl; }

.CodeMirror-code {
  outline: none;
}

/* Force content-box sizing for the elements where we expect it */
.CodeMirror-scroll,
.CodeMirror-sizer,
.CodeMirror-gutter,
.CodeMirror-gutters,
.CodeMirror-linenumber {
  box-sizing: content-box;
}

.CodeMirror-measure {
  position: absolute;
  width: 100%;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

.CodeMirror-cursor {
  position: absolute;
  pointer-events: none;
}
.CodeMirror-measure pre { position: static; }

div.CodeMirror-cursors {
  visibility: hidden;
  position: relative;
  z-index: 3;
}
div.CodeMirror-dragcursors {
  visibility: visible;
}

.CodeMirror-focused div.CodeMirror-cursors {
  visibility: visible;
}

.CodeMirror-selected { background: #d9d9d9; }
.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }
.CodeMirror-crosshair { cursor: crosshair; }
.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }
.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }

.cm-searching {
  background-color: #ffa;
  background-color: rgba(255, 255, 0, .4);
}

/* Used to force a border model for a node */
.cm-force-border { padding-right: .1px; }

@media print {
  /* Hide the cursor when printing */
  .CodeMirror div.CodeMirror-cursors {
    visibility: hidden;
  }
}

/* See issue #2901 */
.cm-tab-wrap-hack:after { content: ''; }

/* Help users use markselection to safely style text background */
span.CodeMirror-selectedtext { background: none; }

/*

    Name:       seti
    Author:     Michael Kaminsky (http://github.com/mkaminsky11)

    Original seti color scheme by Jesse Weed (https://github.com/jesseweed/seti-syntax)

*/


.cm-s-seti.CodeMirror {
  background-color: #151718 !important;
  color: #CFD2D1 !important;
  border: none;
}
.cm-s-seti .CodeMirror-gutters {
  color: #404b53;
  background-color: #0E1112;
  border: none;
}
.cm-s-seti .CodeMirror-cursor { border-left: solid thin #f8f8f0; }
.cm-s-seti .CodeMirror-linenumber { color: #6D8A88; }
.cm-s-seti.CodeMirror-focused div.CodeMirror-selected { background: rgba(255, 255, 255, 0.10); }
.cm-s-seti .CodeMirror-line::selection, .cm-s-seti .CodeMirror-line > span::selection, .cm-s-seti .CodeMirror-line > span > span::selection { background: rgba(255, 255, 255, 0.10); }
.cm-s-seti .CodeMirror-line::-moz-selection, .cm-s-seti .CodeMirror-line > span::-moz-selection, .cm-s-seti .CodeMirror-line > span > span::-moz-selection { background: rgba(255, 255, 255, 0.10); }
.cm-s-seti span.cm-comment { color: #41535b; }
.cm-s-seti span.cm-string, .cm-s-seti span.cm-string-2 { color: #55b5db; }
.cm-s-seti span.cm-number { color: #cd3f45; }
.cm-s-seti span.cm-variable { color: #55b5db; }
.cm-s-seti span.cm-variable-2 { color: #a074c4; }
.cm-s-seti span.cm-def { color: #55b5db; }
.cm-s-seti span.cm-keyword { color: #ff79c6; }
.cm-s-seti span.cm-operator { color: #9fca56; }
.cm-s-seti span.cm-keyword { color: #e6cd69; }
.cm-s-seti span.cm-atom { color: #cd3f45; }
.cm-s-seti span.cm-meta { color: #55b5db; }
.cm-s-seti span.cm-tag { color: #55b5db; }
.cm-s-seti span.cm-attribute { color: #9fca56; }
.cm-s-seti span.cm-qualifier { color: #9fca56; }
.cm-s-seti span.cm-property { color: #a074c4; }
.cm-s-seti span.cm-variable-3, .cm-s-seti span.cm-type { color: #9fca56; }
.cm-s-seti span.cm-builtin { color: #9fca56; }
.cm-s-seti .CodeMirror-activeline-background { background: #101213; }
.cm-s-seti .CodeMirror-matchingbracket { text-decoration: underline; color: white !important; }

/*
http://lesscss.org/ dark theme
Ported to CodeMirror by Peter Kroon
*/
.cm-s-lesser-dark {
  line-height: 1.3em;
}
.cm-s-lesser-dark.CodeMirror { background: #262626; color: #EBEFE7; text-shadow: 0 -1px 1px #262626; }
.cm-s-lesser-dark div.CodeMirror-selected { background: #45443B; } /* 33322B*/
.cm-s-lesser-dark .CodeMirror-line::selection, .cm-s-lesser-dark .CodeMirror-line > span::selection, .cm-s-lesser-dark .CodeMirror-line > span > span::selection { background: rgba(69, 68, 59, .99); }
.cm-s-lesser-dark .CodeMirror-line::-moz-selection, .cm-s-lesser-dark .CodeMirror-line > span::-moz-selection, .cm-s-lesser-dark .CodeMirror-line > span > span::-moz-selection { background: rgba(69, 68, 59, .99); }
.cm-s-lesser-dark .CodeMirror-cursor { border-left: 1px solid white; }
.cm-s-lesser-dark pre { padding: 0 8px; }/*editable code holder*/

.cm-s-lesser-dark.CodeMirror span.CodeMirror-matchingbracket { color: #7EFC7E; }/*65FC65*/

.cm-s-lesser-dark .CodeMirror-gutters { background: #262626; border-right:1px solid #aaa; }
.cm-s-lesser-dark .CodeMirror-guttermarker { color: #599eff; }
.cm-s-lesser-dark .CodeMirror-guttermarker-subtle { color: #777; }
.cm-s-lesser-dark .CodeMirror-linenumber { color: #777; }

.cm-s-lesser-dark span.cm-header { color: #a0a; }
.cm-s-lesser-dark span.cm-quote { color: #090; }
.cm-s-lesser-dark span.cm-keyword { color: #599eff; }
.cm-s-lesser-dark span.cm-atom { color: #C2B470; }
.cm-s-lesser-dark span.cm-number { color: #B35E4D; }
.cm-s-lesser-dark span.cm-def { color: white; }
.cm-s-lesser-dark span.cm-variable { color:#D9BF8C; }
.cm-s-lesser-dark span.cm-variable-2 { color: #669199; }
.cm-s-lesser-dark span.cm-variable-3, .cm-s-lesser-dark span.cm-type { color: white; }
.cm-s-lesser-dark span.cm-property { color: #92A75C; }
.cm-s-lesser-dark span.cm-operator { color: #92A75C; }
.cm-s-lesser-dark span.cm-comment { color: #666; }
.cm-s-lesser-dark span.cm-string { color: #BCD279; }
.cm-s-lesser-dark span.cm-string-2 { color: #f50; }
.cm-s-lesser-dark span.cm-meta { color: #738C73; }
.cm-s-lesser-dark span.cm-qualifier { color: #555; }
.cm-s-lesser-dark span.cm-builtin { color: #ff9e59; }
.cm-s-lesser-dark span.cm-bracket { color: #EBEFE7; }
.cm-s-lesser-dark span.cm-tag { color: #669199; }
.cm-s-lesser-dark span.cm-attribute { color: #81a4d5; }
.cm-s-lesser-dark span.cm-hr { color: #999; }
.cm-s-lesser-dark span.cm-link { color: #7070E6; }
.cm-s-lesser-dark span.cm-error { color: #9d1e15; }

.cm-s-lesser-dark .CodeMirror-activeline-background { background: #3C3A3A; }
.cm-s-lesser-dark .CodeMirror-matchingbracket { outline:1px solid grey; color:white !important; }

/*
  Name:       material
  Author:     Mattia Astorino (http://github.com/equinusocio)
  Website:    https://material-theme.site/
*/

.cm-s-material-ocean.CodeMirror {
  background-color: #0F111A;
  color: #8F93A2;
}

.cm-s-material-ocean .CodeMirror-gutters {
  background: #0F111A;
  color: #464B5D;
  border: none;
}

.cm-s-material-ocean .CodeMirror-guttermarker,
.cm-s-material-ocean .CodeMirror-guttermarker-subtle,
.cm-s-material-ocean .CodeMirror-linenumber {
  color: #464B5D;
}

.cm-s-material-ocean .CodeMirror-cursor {
  border-left: 1px solid #FFCC00;
}
.cm-s-material-ocean.cm-fat-cursor .CodeMirror-cursor {
  background-color: #a2a8a175 !important;
}
.cm-s-material-ocean .cm-animate-fat-cursor {
  background-color: #a2a8a175 !important;
}

.cm-s-material-ocean div.CodeMirror-selected {
  background: rgba(113, 124, 180, 0.2);
}

.cm-s-material-ocean.CodeMirror-focused div.CodeMirror-selected {
  background: rgba(113, 124, 180, 0.2);
}

.cm-s-material-ocean .CodeMirror-line::selection,
.cm-s-material-ocean .CodeMirror-line>span::selection,
.cm-s-material-ocean .CodeMirror-line>span>span::selection {
  background: rgba(128, 203, 196, 0.2);
}

.cm-s-material-ocean .CodeMirror-line::-moz-selection,
.cm-s-material-ocean .CodeMirror-line>span::-moz-selection,
.cm-s-material-ocean .CodeMirror-line>span>span::-moz-selection {
  background: rgba(128, 203, 196, 0.2);
}

.cm-s-material-ocean .CodeMirror-activeline-background {
  background: rgba(0, 0, 0, 0.5);
}

.cm-s-material-ocean .cm-keyword {
  color: #C792EA;
}

.cm-s-material-ocean .cm-operator {
  color: #89DDFF;
}

.cm-s-material-ocean .cm-variable-2 {
  color: #EEFFFF;
}

.cm-s-material-ocean .cm-variable-3,
.cm-s-material-ocean .cm-type {
  color: #f07178;
}

.cm-s-material-ocean .cm-builtin {
  color: #FFCB6B;
}

.cm-s-material-ocean .cm-atom {
  color: #F78C6C;
}

.cm-s-material-ocean .cm-number {
  color: #FF5370;
}

.cm-s-material-ocean .cm-def {
  color: #82AAFF;
}

.cm-s-material-ocean .cm-string {
  color: #C3E88D;
}

.cm-s-material-ocean .cm-string-2 {
  color: #f07178;
}

.cm-s-material-ocean .cm-comment {
  color: #464B5D;
}

.cm-s-material-ocean .cm-variable {
  color: #f07178;
}

.cm-s-material-ocean .cm-tag {
  color: #FF5370;
}

.cm-s-material-ocean .cm-meta {
  color: #FFCB6B;
}

.cm-s-material-ocean .cm-attribute {
  color: #C792EA;
}

.cm-s-material-ocean .cm-property {
  color: #C792EA;
}

.cm-s-material-ocean .cm-qualifier {
  color: #DECB6B;
}

.cm-s-material-ocean .cm-variable-3,
.cm-s-material-ocean .cm-type {
  color: #DECB6B;
}


.cm-s-material-ocean .cm-error {
  color: rgba(255, 255, 255, 1.0);
  background-color: #FF5370;
}

.cm-s-material-ocean .CodeMirror-matchingbracket {
  text-decoration: underline;
  color: white !important;
}

.CodeMirror-foldmarker {
  color: blue;
  text-shadow: #b9f 1px 1px 2px, #b9f -1px -1px 2px, #b9f 1px -1px 2px, #b9f -1px 1px 2px;
  font-family: arial;
  line-height: .3;
  cursor: pointer;
}
.CodeMirror-foldgutter {
  width: .7em;
}
.CodeMirror-foldgutter-open,
.CodeMirror-foldgutter-folded {
  cursor: pointer;
}
.CodeMirror-foldgutter-open:after {
  content: "\25BE";
}
.CodeMirror-foldgutter-folded:after {
  content: "\25B8";
}

/* The lint marker gutter */
.CodeMirror-lint-markers {
  width: 16px;
}

.CodeMirror-lint-tooltip {
  background-color: #ffd;
  border: 1px solid black;
  border-radius: 4px 4px 4px 4px;
  color: black;
  font-family: monospace;
  font-size: 10pt;
  overflow: hidden;
  padding: 2px 5px;
  position: fixed;
  white-space: pre;
  white-space: pre-wrap;
  z-index: 100;
  max-width: 600px;
  opacity: 0;
  transition: opacity .4s;
  -moz-transition: opacity .4s;
  -webkit-transition: opacity .4s;
  -o-transition: opacity .4s;
  -ms-transition: opacity .4s;
}

.CodeMirror-lint-mark {
  background-position: left bottom;
  background-repeat: repeat-x;
}

.CodeMirror-lint-mark-warning {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAADCAYAAAC09K7GAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9sJFhQXEbhTg7YAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAAMklEQVQI12NkgIIvJ3QXMjAwdDN+OaEbysDA4MPAwNDNwMCwiOHLCd1zX07o6kBVGQEAKBANtobskNMAAAAASUVORK5CYII=");
}

.CodeMirror-lint-mark-error {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAADCAYAAAC09K7GAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9sJDw4cOCW1/KIAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAAHElEQVQI12NggIL/DAz/GdA5/xkY/qPKMDAwAADLZwf5rvm+LQAAAABJRU5ErkJggg==");
}

.CodeMirror-lint-marker {
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
  display: inline-block;
  height: 16px;
  width: 16px;
  vertical-align: middle;
  position: relative;
}

.CodeMirror-lint-message {
  padding-left: 18px;
  background-position: top left;
  background-repeat: no-repeat;
}

.CodeMirror-lint-marker-warning, .CodeMirror-lint-message-warning {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAANlBMVEX/uwDvrwD/uwD/uwD/uwD/uwD/uwD/uwD/uwD6twD/uwAAAADurwD2tQD7uAD+ugAAAAD/uwDhmeTRAAAADHRSTlMJ8mN1EYcbmiixgACm7WbuAAAAVklEQVR42n3PUQqAIBBFUU1LLc3u/jdbOJoW1P08DA9Gba8+YWJ6gNJoNYIBzAA2chBth5kLmG9YUoG0NHAUwFXwO9LuBQL1giCQb8gC9Oro2vp5rncCIY8L8uEx5ZkAAAAASUVORK5CYII=");
}

.CodeMirror-lint-marker-error, .CodeMirror-lint-message-error {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAHlBMVEW7AAC7AACxAAC7AAC7AAAAAAC4AAC5AAD///+7AAAUdclpAAAABnRSTlMXnORSiwCK0ZKSAAAATUlEQVR42mWPOQ7AQAgDuQLx/z8csYRmPRIFIwRGnosRrpamvkKi0FTIiMASR3hhKW+hAN6/tIWhu9PDWiTGNEkTtIOucA5Oyr9ckPgAWm0GPBog6v4AAAAASUVORK5CYII=");
}

.CodeMirror-lint-marker-multiple {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAMAAADzjKfhAAAACVBMVEUAAAAAAAC/v7914kyHAAAAAXRSTlMAQObYZgAAACNJREFUeNo1ioEJAAAIwmz/H90iFFSGJgFMe3gaLZ0od+9/AQZ0ADosbYraAAAAAElFTkSuQmCC");
  background-repeat: no-repeat;
  background-position: right bottom;
  width: 100%; height: 100%;
}

.CodeMirror-lint-line-error {
  background-color: rgba(183, 76, 81, 0.08);
}

.CodeMirror-lint-line-warning {
  background-color: rgba(255, 211, 0, 0.1);
}

.CodeMirror-fullscreen {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  height: auto;
  z-index: 9;
}

.CodeMirror-dialog {
  position: absolute;
  left: 0; right: 0;
  background: inherit;
  z-index: 15;
  padding: .1em .8em;
  overflow: hidden;
  color: inherit;
}

.CodeMirror-dialog-top {
  border-bottom: 1px solid #eee;
  top: 0;
}

.CodeMirror-dialog-bottom {
  border-top: 1px solid #eee;
  bottom: 0;
}

.CodeMirror-dialog input {
  border: none;
  outline: none;
  background: transparent;
  width: 20em;
  color: inherit;
  font-family: monospace;
}

.CodeMirror-dialog button {
  font-size: 70%;
}

.CodeMirror-search-match {
  background: gold;
  border-top: 1px solid orange;
  border-bottom: 1px solid orange;
  box-sizing: border-box;
  opacity: .5;
}

.CodeMirror-hints {
  position: absolute;
  z-index: 10;
  overflow: hidden;
  list-style: none;

  margin: 0;
  padding: 2px;
  box-shadow: 2px 3px 5px rgba(0,0,0,.2);
  border-radius: 3px;
  border: 1px solid silver;

  background: white;
  font-size: 90%;
  font-family: monospace;

  max-height: 20em;
  overflow-y: auto;
  box-sizing: border-box;
}

.CodeMirror-hint {
  margin: 0;
  padding: 0 4px;
  border-radius: 2px;
  white-space: pre;
  color: black;
  cursor: pointer;
}

li.CodeMirror-hint-active {
  background: #08f;
  color: white;
}

.CodeMirror-merge {
  position: relative;
  border: 1px solid #ddd;
  white-space: pre;
}

.CodeMirror-merge, .CodeMirror-merge .CodeMirror {
  height: 350px;
}

.CodeMirror-merge-2pane .CodeMirror-merge-pane { width: 47%; }
.CodeMirror-merge-2pane .CodeMirror-merge-gap { width: 6%; }
.CodeMirror-merge-3pane .CodeMirror-merge-pane { width: 31%; }
.CodeMirror-merge-3pane .CodeMirror-merge-gap { width: 3.5%; }

.CodeMirror-merge-pane {
  display: inline-block;
  white-space: normal;
  vertical-align: top;
}
.CodeMirror-merge-pane-rightmost {
  position: absolute;
  right: 0px;
  z-index: 1;
}

.CodeMirror-merge-gap {
  z-index: 2;
  display: inline-block;
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  position: relative;
  background: #f8f8f8;
}

.CodeMirror-merge-scrolllock-wrap {
  position: absolute;
  bottom: 0; left: 50%;
}
.CodeMirror-merge-scrolllock {
  position: relative;
  left: -50%;
  cursor: pointer;
  color: #555;
  line-height: 1;
}
.CodeMirror-merge-scrolllock:after {
  content: "\21db\00a0\00a0\21da";
}
.CodeMirror-merge-scrolllock.CodeMirror-merge-scrolllock-enabled:after {
  content: "\21db\21da";
}

.CodeMirror-merge-copybuttons-left, .CodeMirror-merge-copybuttons-right {
  position: absolute;
  left: 0; top: 0;
  right: 0; bottom: 0;
  line-height: 1;
}

.CodeMirror-merge-copy {
  position: absolute;
  cursor: pointer;
  color: #44c;
  z-index: 3;
}

.CodeMirror-merge-copy-reverse {
  position: absolute;
  cursor: pointer;
  color: #44c;
}

.CodeMirror-merge-copybuttons-left .CodeMirror-merge-copy { left: 2px; }
.CodeMirror-merge-copybuttons-right .CodeMirror-merge-copy { right: 2px; }

.CodeMirror-merge-r-inserted, .CodeMirror-merge-l-inserted {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAACCAYAAACddGYaAAAAGUlEQVQI12MwuCXy3+CWyH8GBgYGJgYkAABZbAQ9ELXurwAAAABJRU5ErkJggg==);
  background-position: bottom left;
  background-repeat: repeat-x;
}

.CodeMirror-merge-r-deleted, .CodeMirror-merge-l-deleted {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAACCAYAAACddGYaAAAAGUlEQVQI12M4Kyb2/6yY2H8GBgYGJgYkAABURgPz6Ks7wQAAAABJRU5ErkJggg==);
  background-position: bottom left;
  background-repeat: repeat-x;
}

.CodeMirror-merge-r-chunk { background: #ffffe0; }
.CodeMirror-merge-r-chunk-start { border-top: 1px solid #ee8; }
.CodeMirror-merge-r-chunk-end { border-bottom: 1px solid #ee8; }
.CodeMirror-merge-r-connect { fill: #ffffe0; stroke: #ee8; stroke-width: 1px; }

.CodeMirror-merge-l-chunk { background: #eef; }
.CodeMirror-merge-l-chunk-start { border-top: 1px solid #88e; }
.CodeMirror-merge-l-chunk-end { border-bottom: 1px solid #88e; }
.CodeMirror-merge-l-connect { fill: #eef; stroke: #88e; stroke-width: 1px; }

.CodeMirror-merge-l-chunk.CodeMirror-merge-r-chunk { background: #dfd; }
.CodeMirror-merge-l-chunk-start.CodeMirror-merge-r-chunk-start { border-top: 1px solid #4e4; }
.CodeMirror-merge-l-chunk-end.CodeMirror-merge-r-chunk-end { border-bottom: 1px solid #4e4; }

.CodeMirror-merge-collapsed-widget:before {
  content: "(...)";
}
.CodeMirror-merge-collapsed-widget {
  cursor: pointer;
  color: #88b;
  background: #eef;
  border: 1px solid #ddf;
  font-size: 90%;
  padding: 0 3px;
  border-radius: 4px;
}
.CodeMirror-merge-collapsed-line .CodeMirror-gutter-elt { display: none; }

@font-face {
  font-family: 'bpmn-js-pp';
  src: url("data:;base64,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");
  src: url("data:;base64,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") format('embedded-opentype'), url("data:application/font-woff;base64,d09GRgABAAAAAAyIAA8AAAAAFWgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABWAAAADMAAABCsP6z7U9TLzIAAAGMAAAAQwAAAFY+IkmhY21hcAAAAdAAAABxAAABxp3ZvixjdnQgAAACRAAAAAoAAAAKAAAAAGZwZ20AAAJQAAAFlAAAC3CIkJBZZ2FzcAAAB+QAAAAIAAAACAAAABBnbHlmAAAH7AAAAbkAAAIOhlzkXGhlYWQAAAmoAAAAMwAAADYI4qaLaGhlYQAACdwAAAAgAAAAJAeRA01obXR4AAAJ/AAAABwAAAAcFWn/+mxvY2EAAAoYAAAAEAAAABABmgINbWF4cAAACigAAAAgAAAAIACaC6BuYW1lAAAKSAAAAYsAAALlD9cCaXBvc3QAAAvUAAAASgAAAGj6fxaccHJlcAAADCAAAABlAAAAe91rA4V4nGNgZGBg4GKQY9BhYHRx8wlh4GBgYYAAkAxjTmZ6IlAMygPKsYBpDiBmg4gCAIojA08AeJxjYGTmZ5zAwMrAwFTFtIeBgaEHQjM+YDBkZAKKMrAyM2AFAWmuKQwOL5heMjMH/c9iiGIOYpgGFGYEyQEAxHoLQgB4nO2R0Q2AMAhEr9ASYxzFERzEEfxybjqFHuAY0rzmONI0OQAMAEp20oF2oyHqotvSV6zpdxzsFx4BXN2mPg+V+JgSKqtxvmJLJXzb+YOxMfy15X1+nUV2RSTtWmS6o4jNuBWxnSlFbG1qAXsB44UXWgAAAAAAAAAAAAAAAAAAAHicrVZpcxNHEJ3VYcs2PoIPEjaBWcZyjHZWmMsIEMbsShbgHPKV7EKOXUt27otP/Ab9ml6RVJFv/LS8Hh3YYCdVVChK/ab37Uz3655ek9CSxF5Yj6TcfCmmtjZpZOdJSDdsWo7iQ9nZCylTTP4uiIJotdS+7TgkIhKBqnWFJYLY98jSJONDjzJatiW9alJu6Ul32RoP6q369tPQUY7dCSU1m6FD65EtqcKoEkUy7ZGSNi3D1V9JWuHnK8x81QwlgugkksabYQyP5GfjjFYZrcZ2HEWRTZYbRYpEMzyIIo+yWmKfXDFBQPmgGVJe+TSifIQfkRV7lNMKccl2mt/3JT/pHc6/JOJ6i7IlB/5AdmQHe6cr+SLS2grjpp1sR6GK8HR9J8Qjm5Pqn+xRXtNo4HZFpifNCJbKV5BY+Qll9g/JauF8ypc8GtWSg5wIWi9zYl/yDrQeR0yJaybIgu6OToig7pecodhj+rj4471dLBchBMg4lvWOSrgQRilhs5okbQQ5iJKyRZXUekdMnPI6LeItYb9O7ehLZ7RJqDsxnq2Hjq2cqOR4NKnTTKZO7aTm0ZQGUUo6Ezzm1wGUH9Ekr7axmsTKo2lsM2MkkVCghXNpKohlJ5Y0BdE8mtGbu2Gaa9eiRZo8UM89ek9vboWbOz2n7cA/a/xndSqmg70wnZ4OyEp8mna5SdG6fnqGfybxQ9YCKpEtNsOUxUO2fgfl5WNLjsJrA2z3nvMr6H32RMikgfgb8B4v1SkFTIWYVVAL3bTWtSzL1GpWi1Rk6rshTStf1mkCTTkOfWNfxjj+r5kZS0wJ3+/E6dkRl5659iXINIfcZl2P5nVqsV2AzmzP6TTL9n2d5th+oNM82/M6HWFr63SU7Yc6LbD9SKdjbC9oQZPuOwRyEYFcwAYSgbB1EAjbSwiErUIgbBcRCNsiAmG7hEDYfoxA2C4jELaXtayafippHDsTywBFiAOjOe7IZW4qV1PJpRKui0anNuQpcqukonhW/SsD/eKRN6yBtUC6RNb8ikmufFSV44+uaHnTxLkCjlV/e3NcnxMPZb9Y+FPwv9qaqqRXrHlkchV5I9CT40TXJhWPrunyuapH1/+Lig5rgX4DpRALRVmWDb6ZkPBRp9NQDVzlEDMbMw/X9bplzc/h/JsYIQvofvw3FBoL3INOWUlZ7WCv1dePZbm3B+WwJ1iSYr7M61vhi4zMSvtFZil7PvJ5wBUwKpVhqw1creDNexLzkOlN8kwQtxVlg6SNx5kgsYFjHjBvvpMgJExdtYHaKZywgbxgzCnY74RDVG+U5XB7oX0ejZR/a1fsyBkVTRD4bfZG2OuzUPJbrIGEJ7/U10BVIU3FuKmASyPlhmrwYVyt20YyTqCvqNgNy7KKDx9H3HdKjmUg+UgRq0dHP629Qp3Uuf3KKG7fO/0IgkFpYv72vpnioJR3tZJlVm0DU7calVPXmsPFqw7dzaPue8fZJ3LWNN10T9z0vqZVt4ODuVkQ7dsclKVMLqjrww4bqMvNpdDqZVyS3nYPMCwwoN+hFRv/V/dx+DxXqgqj40i9nagfo89iDPIPOH9H9QXo5zFMuYaU53uXE59u3MPZMl3FXayf4t/ArLXmZukacEPTDZiHrFodusoNfKcGOj3S3I70EPCx7grxAGATwGLwie5axvMpgPF8xhwf4HPmMGgyh8EWcxhsM2cNYIc5DHaZw2CPOQy+YM46wJfMYRAyh0HEHAZPmBMAPGUOg6+Yw+Br5jD4hjn3Ab5lDoOYOQwS5jDY13RrKHOLF3QXqG1QFejA9BMW97A41FQZsr/jhWF/bxCzfzCIqT9quj2k/sQLQ/3ZIKb+YhBTf9V0Z0j9jReG+rtBTP3DIKY+0y/GcpnBX0a+S4UDyi42n/P3xPsHwhpAtgABAAH//wAPeJxlUM9rE0EY/b6ZuLukTTs7O7sJxcZ1Nk2gaVOY/NiDiBcP0oMHDyGHniT0mD8h5BCk5ORxWaSnnjwUUdtCwUVKoSXHIv4BHv0D9iCaOJuAKA7DG943M++97wMEvfAreQmbYHxwKO7WtzxhyD00DVmrtp6ghrCjHqAGT6wjXvOK4uMxV5yxyYQxvmQVPrniSrIoWpTeHC8eaCYVP9YWmQ95SkbgaB9maB9Uoo6ukI8xkK1H2G6pTSTVcvmuf5cBvl6eGeivAPMrKsl3sGEDrLOSWM2RLOs6GntoBLLKOr7nCnNLeKrTqkqD5sqlRsVP9l+Mko8Inxuz0tG7od7P5f2G7yfbCcJ5Murtv+0dDd+/GgLQ+Y/5Ob2hFqwCAwH5C26vFfKE7tbveUbwUM8jxI4qOu3ADe3App/yQvwc83xhBRNrx9oYDAYlJhlndI3zX5V+/xR3Zl8W2S/pM0rA0qrWmb2SA5L17zHD17kxrJk1s2gWw2KIJ6dpOjtJU8zF3TjqxXEviruULGsH6ewg7kaRvskQ4D9tp/CvttNsBzpu4Dbd5h/tb7e3h9Pp4V+q2xmf/gaaAYe+AAAAeJxjYGRgYADiVL7Tf+L5bb4ycDO/AIowXPqwsQRG///1fxvzC2YOIJeDgQkkCgCeTA9OAHicY2BkYGAO+p/FEMX84v+v/5+ZXzAARVAAOwC+sAfjA+gAAAHWAAACRAAAAxUAAAPC//oDSAAAA0gAAAAAAAAANABUAIYAsgDgAQcAAQAAAAcAHgADAAAAAAACAAAAEABzAAAAHAtwAAAAAHicdZLNSgMxFIVPbKvYggsV3WYlSun0BxTsRqGgK0FcdOFu2qYzU6ZJyKRKn8E38B18JcE38XQarEKdMJnvnpzcexMGwCE+IbB+LvmuWaDOaM072MNN4Ar1u8BV8mPgGhp4DrxLXQWuowkTuIEjvDODqO4zmuEjsMCxOA28gwPRDFyhfh24Sn4IXMOJiAPvUn8NXMdQvAVu4Ex8DYxduixJvTwfXMhep3slR0tpKGU6zmW88KlxhbyVU6O9ynMTjc18ZOe6lZmWtU8qWeSx2wgbGipXZEbLbtTZiPdKKxd7NVlVKV6SnvdTOXVmLu9Cfmmdmamxj1Lvbb/d/l0XA16UxRIOGRKk8JA4p3rBbw8ddHFFGtEh6Vy7MmjEyKnEWHBHWq4UjG/5ThlpqoqOnBxhzHnOHJazRov7DWfL8URXwhw5M7mtjm3akLtW9bKykmSPETvd5rynU5fuuOxo8nOWAi+s3KPq2fGqa1d2Kfmj/e1fMs9qbUZlTD0qb8lT7aPN8c95vwGTUof7AHicY2BigAAuBuyAnZGJkZmRhZGVkY2RnZGDgTU5JzWxiDkxJYWtGMhIzuBMLClJzSvJzM/jBUvpJmcWARkp3EAlMDYDAwAmBxMfAAB4nGPw3sFwIihiIyNjX+QGxp0cDBwMyQUbGVidNjIwaEFoDhR6JwMDAycyi5nBZaMKY0dgxAaHjoiNzCkuG9VAvF0cDQyMLA4dySERICWRQLCRgUdrB+P/1g0svRuZGFwAB9MiuAAAAA==") format('woff'), url("data:application/x-font-ttf;base64,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IDxZIyAuRrACJUZQWCA8WS6xKwEUKy2wPiywNSsjIC5GsAIlRlJYIDxZLrErARQrLbA/LLA2K4ogIDywBCNCijgjIC5GsAIlRlJYIDxZLrErARQrsARDLrArKy2wQCywABawBCWwBCYgLkcjRyNhsAlDKyMgPCAuIzixKwEUKy2wQSyxCAQlQrAAFrAEJbAEJSAuRyNHI2EgsAQjQrAJQysgsGBQWCCwQFFYswIgAyAbswImAxpZQkIjIEewBEOwAmIgsABQWLBAYFlmsAFjYCCwASsgiophILACQ2BkI7ADQ2FkUFiwAkNhG7ADQ2BZsAMlsAJiILAAUFiwQGBZZrABY2GwAiVGYTgjIDwjOBshICBGI0ewASsjYTghWbErARQrLbBCLLA1Ky6xKwEUKy2wQyywNishIyAgPLAEI0IjOLErARQrsARDLrArKy2wRCywABUgR7AAI0KyAAEBFRQTLrAxKi2wRSywABUgR7AAI0KyAAEBFRQTLrAxKi2wRiyxAAEUE7AyKi2wRyywNCotsEgssAAWRSMgLiBGiiNhOLErARQrLbBJLLAII0KwSCstsEossgAAQSstsEsssgABQSstsEwssgEAQSstsE0ssgEBQSstsE4ssgAAQistsE8ssgABQistsFAssgEAQistsFEssgEBQistsFIssgAAPistsFMssgABPistsFQssgEAPistsFUssgEBPistsFYssgAAQCstsFcssgABQCstsFgssgEAQCstsFkssgEBQCstsFossgAAQystsFsssgABQystsFwssgEAQystsF0ssgEBQystsF4ssgAAPystsF8ssgABPystsGAssgEAPystsGEssgEBPystsGIssDcrLrErARQrLbBjLLA3K7A7Ky2wZCywNyuwPCstsGUssAAWsDcrsD0rLbBmLLA4Ky6xKwEUKy2wZyywOCuwOystsGgssDgrsDwrLbBpLLA4K7A9Ky2waiywOSsusSsBFCstsGsssDkrsDsrLbBsLLA5K7A8Ky2wbSywOSuwPSstsG4ssDorLrErARQrLbBvLLA6K7A7Ky2wcCywOiuwPCstsHEssDorsD0rLbByLLMJBAIDRVghGyMhWUIrsAhlsAMkUHiwARUwLQBLuADIUlixAQGOWbABuQgACABjcLEABUKxAAAqsQAFQrEACCqxAAVCsQAIKrEABUK5AAAACSqxAAVCuQAAAAkqsQMARLEkAYhRWLBAiFixA2REsSYBiFFYugiAAAEEQIhjVFixAwBEWVlZWbEADCq4Af+FsASNsQIARAA=") format('truetype'), url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/Pgo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxtZXRhZGF0YT5Db3B5cmlnaHQgKEMpIDIwMTYgYnkgb3JpZ2luYWwgYXV0aG9ycyBAIGZvbnRlbGxvLmNvbTwvbWV0YWRhdGE+CjxkZWZzPgo8Zm9udCBpZD0iYnBtbi1pby1wcCIgaG9yaXotYWR2LXg9IjEwMDAiID4KPGZvbnQtZmFjZSBmb250LWZhbWlseT0iYnBtbi1pby1wcCIgZm9udC13ZWlnaHQ9IjQwMCIgZm9udC1zdHJldGNoPSJub3JtYWwiIHVuaXRzLXBlci1lbT0iMTAwMCIgYXNjZW50PSI4NTAiIGRlc2NlbnQ9Ii0xNTAiIC8+CjxtaXNzaW5nLWdseXBoIGhvcml6LWFkdi14PSIxMDAwIiAvPgo8Z2x5cGggZ2x5cGgtbmFtZT0iY2xlYXIiIHVuaWNvZGU9IiYjeGU4MDI7IiBkPSJNNDUyIDE5NHExOC0xOCAxOC00M3QtMTgtNDNxLTE4LTE2LTQzLTE2dC00MyAxNmwtMTMyIDE1Mi0xMzItMTUycS0xOC0xNi00My0xNnQtNDMgMTZxLTE2IDE4LTE2IDQzdDE2IDQzbDEzOCAxNTYtMTM4IDE1OHEtMTYgMTgtMTYgNDN0MTYgNDNxMTggMTYgNDMgMTZ0NDMtMTZsMTMyLTE1MiAxMzIgMTUycTE4IDE2IDQzIDE2dDQzLTE2cTE4LTE4IDE4LTQzdC0xOC00M2wtMTM4LTE1OHoiIGhvcml6LWFkdi14PSI0NzAiIC8+CjxnbHlwaCBnbHlwaC1uYW1lPSJhZGQiIHVuaWNvZGU9IiYjeGU4MDM7IiBkPSJNNTUwIDQwMHEzMCAwIDMwLTUwdC0zMC01MGwtMjEwIDAgMC0yMTBxMC0zMC01MC0zMHQtNTAgMzBsMCAyMTAtMjEwIDBxLTMwIDAtMzAgNTB0MzAgNTBsMjEwIDAgMCAyMTBxMCAzMCA1MCAzMHQ1MC0zMGwwLTIxMCAyMTAgMHoiIGhvcml6LWFkdi14PSI1ODAiIC8+CjxnbHlwaCBnbHlwaC1uYW1lPSJzZWFyY2giIHVuaWNvZGU9IiYjeGU4MDU7IiBkPSJNNzcyIDc4cTMwLTM0IDYtNjJsLTQ2LTQ2cS0zNi0zMi02OCAwbC0xOTAgMTkwcS03NC00Mi0xNTYtNDItMTI4IDAtMjIzIDk1dC05NSAyMjMgOTAgMjE5IDIxOCA5MSAyMjQtOTUgOTYtMjIzcTAtODgtNDYtMTYyeiBtLTY3OCAzNThxMC04OCA2OC0xNTZ0MTU2LTY4IDE1MSA2MyA2MyAxNTNxMCA4OC02OCAxNTV0LTE1NiA2Ny0xNTEtNjMtNjMtMTUxeiIgaG9yaXotYWR2LXg9Ijc4OSIgLz4KPGdseXBoIGdseXBoLW5hbWU9ImF0dGVudGlvbiIgdW5pY29kZT0iJiN4ZTgwNjsiIGQ9Ik05NTctMjRxMTAtMTYgMC0zNC0xMC0xNi0zMC0xNmwtODkyIDBxLTE4IDAtMjggMTYtMTMgMTgtMiAzNGw0NDYgNzgycTggMTggMzAgMTh0MzAtMTh6IG0tNDIwIDUwbDAgMTAwLTExMCAwIDAtMTAwIDExMCAweiBtMCAxNzRsMCAzMDAtMTEwIDAgMC0zMDAgMTEwIDB6IiBob3Jpei1hZHYteD0iOTYyIiAvPgo8Z2x5cGggZ2x5cGgtbmFtZT0iY2xlYXItY2lyY2xlZCIgdW5pY29kZT0iJiN4ZTkwMjsiIGQ9Ik00MjAgNzcwcTE3NCAwIDI5Ny0xMjN0MTIzLTI5Ny0xMjMtMjk3LTI5Ny0xMjMtMjk3IDEyMy0xMjMgMjk3IDEyMyAyOTcgMjk3IDEyM3ogbTg2LTQyMGwxNTQgMTU0LTg2IDg2LTE1NC0xNTItMTUyIDE1Mi04OC04NiAxNTQtMTU0LTE1NC0xNTIgODgtODYgMTUyIDE1MiAxNTQtMTUyIDg2IDg2eiIgaG9yaXotYWR2LXg9Ijg0MCIgLz4KPGdseXBoIGdseXBoLW5hbWU9ImFkZC1jaXJjbGVkIiB1bmljb2RlPSImI3hlOTAzOyIgZD0iTTQyMCA3NzBxMTc0IDAgMjk3LTEyM3QxMjMtMjk3LTEyMy0yOTctMjk3LTEyMy0yOTcgMTIzLTEyMyAyOTcgMTIzIDI5NyAyOTcgMTIzeiBtNTItNDcwbDIwMCAwIDAgMTAyLTIwMCAwIDAgMjAyLTEwMiAwIDAtMjAyLTIwMiAwIDAtMTAyIDIwMiAwIDAtMjAyIDEwMiAwIDAgMjAyeiIgaG9yaXotYWR2LXg9Ijg0MCIgLz4KPC9mb250Pgo8L2RlZnM+Cjwvc3ZnPg==") format('svg');
  font-weight: normal;
  font-style: normal;
}
.bpp-properties-panel {
  background-color: #f8f8f8;
  position: relative;
}
.bpp-properties-panel:empty {
  display: none;
}
.bpp-properties-panel label,
.bpp-properties-panel input {
  vertical-align: middle;
}
.bpp-properties-panel input,
.bpp-properties-panel button,
.bpp-properties-panel textarea,
.bpp-properties-panel [contenteditable] {
  padding: 3px 6px;
  border: 1px solid #ccc;
}
.bpp-properties-panel input:focus,
.bpp-properties-panel button:focus,
.bpp-properties-panel textarea:focus,
.bpp-properties-panel [contenteditable]:focus {
  outline: none;
  border-color: #52B415;
  box-shadow: 0 0 1px 2px rgba(82, 180, 21, 0.2);
}
.bpp-properties-panel input.invalid,
.bpp-properties-panel button.invalid,
.bpp-properties-panel textarea.invalid,
.bpp-properties-panel [contenteditable].invalid {
  border-color: #cc3333;
  background: #f0c2c2;
}
.bpp-properties-panel input.invalid:focus,
.bpp-properties-panel button.invalid:focus,
.bpp-properties-panel textarea.invalid:focus,
.bpp-properties-panel [contenteditable].invalid:focus {
  box-shadow: 0 0 1px 2px rgba(204, 51, 51, 0.2);
}
.bpp-properties-panel [type=text],
.bpp-properties-panel [contenteditable],
.bpp-properties-panel textarea,
.bpp-properties-panel select {
  width: 100%;
}
.bpp-properties-panel [contenteditable],
.bpp-properties-panel textarea {
  resize: vertical;
}
.bpp-properties-panel [contenteditable] {
  outline: 0px solid transparent;
  background-color: white;
  overflow-y: auto;
  white-space: pre-wrap;
  /* css-3 */
  white-space: -moz-pre-wrap;
  /* Mozilla, since 1999 */
  white-space: -pre-wrap;
  /* Opera 4-6 */
  white-space: -o-pre-wrap;
  /* Opera 7 */
  word-wrap: break-word;
  /* Internet Explorer 5.5+ */
}
.bpp-properties-panel [contenteditable]:before {
  content: "\feff";
}
.bpp-properties-panel [disabled] {
  color: #808080;
}
.bpp-properties-panel label {
  font-weight: bolder;
  display: inline-block;
  vertical-align: middle;
  color: #666;
  margin-bottom: 3px;
}
.bpp-properties-panel label[for] {
  cursor: pointer;
}
.bpp-properties-panel label.bpp-hidden {
  display: none;
}
.bpp-properties-panel .entry-label {
  font-weight: bolder;
  display: inline-block;
  vertical-align: middle;
  color: #666;
  font-size: 120%;
  margin-top: 5px;
  margin-bottom: 10px;
  transition: margin 0.218s linear;
  font-style: italic;
}
.bpp-properties-panel .entry-label[for] {
  cursor: pointer;
}
.bpp-properties-panel .entry-label.bpp-hidden {
  display: none;
}
.bpp-properties-panel .entry-label.divider {
  border-top: 1px dotted #ccc;
  padding-top: 8px;
  margin-top: 16px;
  width: 100%;
}
.bpp-properties-panel button {
  position: absolute;
  top: 0;
  height: 23px;
  width: 24px;
  overflow: hidden;
  cursor: pointer;
  background-color: #f8f8f8;
  border: 1px solid #ccc;
}
.bpp-properties-panel button > span {
  display: none;
}
.bpp-properties-panel button:before {
  font-family: "bpmn-js-pp";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.bpp-properties-panel button.add:before {
  content: '\E803';
}
.bpp-properties-panel button.clear:before {
  content: '\E802';
}
.bpp-properties-panel button:hover {
  color: #52B415;
}
.bpp-error-message,
.bpp-error-message.bpp-entry-link {
  margin-top: 5px;
  color: #cc3333;
}
.bpp-row {
  margin-top: 10px;
  margin-bottom: 10px;
}
.bpp-row:first-of-type {
  margin-top: 0;
}
.bpp-row:last-of-type {
  margin-bottom: 0;
}
.bpp-textfield,
.bpp-textbox {
  margin-bottom: 3px;
}
.bpp-radios-group {
  list-style: none;
  padding: 0;
  margin: 0 0 9px 0;
}
.bpp-radios-group .bpp-radio-wrapper {
  margin: 6px 0;
}
.bpp-radios-group input,
.bpp-radios-group label {
  vertical-align: middle;
}
.bpp-radios-group input {
  margin-top: 0;
  margin-left: 0;
}
.bpp-radios-group input,
.bpp-checkbox input {
  margin-left: 0;
}
.bpp-radios-group label:after,
.bpp-checkbox label:after {
  display: none;
}
.bpp-textfield input {
  padding-right: 28px;
}
.bpp-textfield .clear {
  background: transparent;
  border: none;
  top: 0;
  right: 0;
}
.bpp-combo-input {
  margin-top: 7px;
}
.bpp-select select {
  height: 23px;
}
.bpp-select button.add {
  top: -22px;
  right: 0;
}
.bpp-select button.add,
.bpp-element-list button.add,
.bpp-select button.clear,
.bpp-element-list button.clear {
  top: -23px;
  border-bottom: none;
}
.bpp-select button.add,
.bpp-element-list button.add {
  right: 0px;
}
.bpp-select button.clear,
.bpp-element-list button.clear {
  right: 23px;
}
.bpp-properties-entry {
  margin-bottom: 9px;
}
.bpp-properties-entry .bpp-field-wrapper {
  position: relative;
}
.bpp-properties-entry .bpp-field-wrapper input[readonly] + .clear {
  display: none;
}
.bpp-properties-entry .bpp-field-wrapper select {
  resize: vertical;
}
.bpp-hidden {
  display: none;
}
label.bpp-hidden {
  display: none;
}
.bpp-table-add-row > button {
  position: relative;
  margin-left: 10px;
}
.bpp-table {
  margin-top: 10px;
}
.bpp-table-row {
  margin-bottom: 2px;
  overflow: hidden;
}
.bpp-table-row > input,
.bpp-table-row > button {
  float: left;
}
.bpp-table-row > label {
  padding-left: 5px;
}
.bpp-table-row > label.bpp-table-row-columns-1,
.bpp-table-row > input.bpp-table-row-columns-1 {
  width: 100%;
}
.bpp-table-row > label.bpp-table-row-columns-1.bpp-table-row-removable,
.bpp-table-row > input.bpp-table-row-columns-1.bpp-table-row-removable {
  width: calc(100% - 24px);
}
.bpp-table-row > label.bpp-table-row-columns-2,
.bpp-table-row > input.bpp-table-row-columns-2 {
  width: 50%;
  box-sizing: border-box;
}
.bpp-table-row > label.bpp-table-row-columns-2.bpp-table-row-removable,
.bpp-table-row > input.bpp-table-row-columns-2.bpp-table-row-removable {
  width: calc(50% - 12px);
}
.bpp-table-row > label.bpp-table-row-columns-2:nth-child(2),
.bpp-table-row > input.bpp-table-row-columns-2:nth-child(2) {
  border-left: none;
}
.bpp-table-row > button {
  border-left: none;
  position: static;
}
.bpp-properties-static {
  margin-bottom: 0;
  margin-top: 0;
  border: 1px solid #ccc;
  background-color: white;
  padding: 3px 6px;
  font: 13.3333px Arial;
  width: 100%;
}
.bpp-entry-link {
  cursor: pointer;
  color: #52B415;
}
.bpp-icon-warning:before {
  font-family: "bpmn-js-pp";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '\E806';
}
.bpp-field-description {
  margin-top: 5px;
  color: #999;
}
.bpp-field-description a {
  color: #3d8610;
  text-decoration: none;
}
.bpp-field-description a:hover {
  color: #52B415;
}
.bpp-properties-header {
  padding: 15px;
  padding-bottom: 5px;
}
.bpp-properties-header > .label {
  font-size: 120%;
  font-weight: bolder;
}
.bpp-properties-header > .search {
  display: none;
  margin-top: 5px;
  position: relative;
}
.bpp-properties-header > .search input {
  position: relative;
  border-radius: 15px;
  width: 100%;
  z-index: 1;
}
.bpp-properties-header > .search button {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  border: none;
  background-color: transparent;
  z-index: 2;
}
.bpp-properties-header > .search button:before {
  content: '\E805';
}
.bpp-properties-group {
  padding: 6px 15px 6px 15px;
  position: relative;
  overflow: hidden;
  transition: max-height 0.218s ease-in-out, padding-top 0.218s ease-in-out, padding-bottom 0.218s ease-in-out;
}
.bpp-properties-group:empty {
  display: none;
}
.bpp-properties-group > .group-toggle {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  cursor: pointer;
  transition: background-color 0.218s linear;
}
.bpp-properties-group > .group-toggle:hover {
  background-color: #8fc071;
}
.bpp-properties-group > .group-label {
  font-weight: bolder;
  display: inline-block;
  vertical-align: middle;
  color: #666;
  font-size: 120%;
  margin-top: 5px;
  margin-bottom: 10px;
  transition: margin 0.218s linear;
  font-style: italic;
}
.bpp-properties-group > .group-label[for] {
  cursor: pointer;
}
.bpp-properties-group > .group-label.bpp-hidden {
  display: none;
}
.bpp-properties-group:hover > .group-toggle {
  background-color: #ccc;
}
.bpp-properties-group:hover > .group-toggle:hover {
  background-color: #8fc071;
}
.bpp-properties-group.group-closed {
  max-height: 20px;
  border-top: none;
  cursor: pointer;
  background-color: rgba(143, 192, 113, 0.2);
  padding-top: 0;
  padding-bottom: 0;
}
.bpp-properties-group.group-closed > div {
  visibility: hidden;
}
.bpp-properties-group.group-closed > .group-label {
  margin-top: 2px;
  margin-bottom: 2px;
}
.bpp-properties-group.group-closed:hover > .group-label {
  color: #52B415;
}
.bpp-properties-group + .bpp-properties-group {
  border-top: 1px dotted #ccc;
}
.bpp-properties-group:last-child {
  padding-bottom: 9px;
}
.cam-add-listener > button {
  position: relative;
  margin-left: 10px;
}
[data-list-entry-container] > .bpp-listener-area {
  border: 1px solid #ccc;
  margin: 10px 1px;
  padding: 10px;
}
.bpp-listener-area {
  position: relative;
}
.bpp-listener-area > button {
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  background: none;
}
.bpp-listener-area + .bpp-listener-area {
  margin-top: 20px;
}
.bpp-properties-tab-bar {
  border-bottom: 1px solid #ccc;
  padding: 0 15px;
}
.bpp-properties-tab-bar .scroll-tabs-button {
  cursor: pointer;
  font-size: 16px;
  padding: 3px 4px 3px 4px;
  color: #666;
}
.bpp-properties-tab-bar .scroll-tabs-button:hover {
  font-weight: bold;
}
.bpp-properties-tab-bar .scroll-tabs-button.scroll-tabs-left {
  float: left;
  margin-left: -15px;
}
.bpp-properties-tab-bar .scroll-tabs-button.scroll-tabs-right {
  float: right;
  margin-right: -15px;
}
.bpp-properties-tab-bar:not(.scroll-tabs-overflow) .scroll-tabs-button {
  display: none;
}
ul.bpp-properties-tabs-links {
  margin: 5px 0 -1px 0;
  padding: 0;
  white-space: nowrap;
  overflow: hidden;
}
ul.bpp-properties-tabs-links > li {
  display: inline-block;
  margin: 0;
}
ul.bpp-properties-tabs-links > li.bpp-hidden {
  display: none;
}
ul.bpp-properties-tabs-links > li > a {
  display: inline-block;
  font-size: 12px;
  padding: 4px 7px;
  border: 1px solid #ccc;
  border-radius: 3px 3px 0 0;
  border-bottom: transparent;
  background-color: #f8f8f8;
  color: #666;
  text-decoration: none;
}
ul.bpp-properties-tabs-links > li > a:hover {
  color: #4d4d4d;
}
ul.bpp-properties-tabs-links > li + li {
  margin-left: 4px;
}
ul.bpp-properties-tabs-links > li.bpp-active a {
  padding-bottom: 5px;
  border-top: 2px solid #52B415;
  border-bottom: none;
}
.bpp-properties-tab,
.bpp-properties-tab.bpp-hidden {
  display: none;
}
.bpp-properties-tab.bpp-active {
  display: block;
}

@font-face {
  font-family: 'bpmn';
  src: url('bpmn.73ca35452fd2d80b.eot?61125153');
  src: url('bpmn.73ca35452fd2d80b.eot?61125153#iefix') format('embedded-opentype'),
       url('bpmn.7da8cd453b924cc3.svg?61125153#bpmn') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'bpmn';
  src: url('data:application/octet-stream;base64,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') format('woff'),
       url('data:application/octet-stream;base64,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AAAAGgAA6BoAAOgaAAAAGwAA6BsAAOgbAAAAHAAA6BwAAOgcAAAAHQAA6B0AAOgdAAAAHgAA6B4AAOgeAAAAHwAA6B8AAOgfAAAAIAAA6CAAAOggAAAAIQAA6CEAAOghAAAAIgAA6CIAAOgiAAAAIwAA6CMAAOgjAAAAJAAA6CQAAOgkAAAAJQAA6CUAAOglAAAAJgAA6CYAAOgmAAAAJwAA6CcAAOgnAAAAKAAA6CgAAOgoAAAAKQAA6CkAAOgpAAAAKgAA6CoAAOgqAAAAKwAA6CsAAOgrAAAALAAA6CwAAOgsAAAALQAA6C0AAOgtAAAALgAA6C4AAOguAAAALwAA6C8AAOgvAAAAMAAA6DAAAOgwAAAAMQAA6DEAAOgxAAAAMgAA6DIAAOgyAAAAMwAA6DMAAOgzAAAANAAA6DQAAOg0AAAANQAA6DUAAOg1AAAANgAA6DYAAOg2AAAANwAA6DcAAOg3AAAAOAAA6DgAAOg4AAAAOQAA6DkAAOg5AAAAOgAA6DoAAOg6AAAAOwAA6DsAAOg7AAAAPAAA6DwAAOg8AAAAPQAA6D0AAOg9AAAAPgAA6D4AAOg+AAAAPwAA6D8AAOg/AAAAQAAA6EAAAOhAAAAAQQAA6EEAAOhBAAAAQgAA6EIAAOhCAAAAQwAA6EMAAOhDAAAARAAA6EQAAOhEAAAARQAA6EUAAOhFAAAARgAA6EYAAOhGAAAARwAA6EcAAOhHAAAASAAA6EgAAOhIAAAASQAA6EkAAOhJAAAASgAA6EoAAOhKAAAASwAA6EsAAOhLAAAATAAA6EwAAOhMAAAATQAA6E0AAOhNAAAATgAA6E4AAOhOAAAATwAA6E8AAOhPAAAAUAAA6FAAAOhQAAAAUQAA6FEAAOhRAAAAUgAA6FIAAOhSAAAAUwAA6FMAAOhTAAAAVAAA6FQAAOhUAAAAVQAA6FUAAOhVAAAAVgAA6FYAAOhWAAAAVwAA6FcAAOhXAAAAWAAA6FgAAOhYAAAAWQAA6FkAAOhZAAAAWgAA6FoAAOhaAAAAWwAA6FsAAOhbAAAAXAAA6FwAAOhcAAAAXQAA6F0AAOhdAAAAXgAA6F4AAOheAAAAXwAA6F8AAOhfAAAAYAAA6GAAAOhgAAAAYQAA6GEAAOhhAAAAYgAA6GIAAOhiAAAAYwAA6GMAAOhjAAAAZAAA6GQAAOhk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AgIEARYBAQQDDAUJBAYFBAMKAggBAgECAgIHAQEBAQEEAwQI/KcFCAgEAgEBAQIGAgICAQQBBgIKAwQBAwYEBQkEBAQDBAIBEgECAQIBAgICBwIBAQEBAgcDBQLwBAUEBAMEAgIHAgMFAgQBAgMMCgMEAgQBAQQDBAQJCAUHAw8CAQYFCAEBAQYBAgECAQICAgkBAgIDBAj9rQQIBAMCAgIFBgwGAQwBBgcDAQMDAQcHAwEHBwEDAQMECAQEDAQEBAQJBAQEBQIBAQQEAxUDBAoHGQMKAgMDAwMDAwMCBgMCAwIDAggBnAUEBAEHChwLBxIECwQHBAQHBAgEEAgEAwICAQQEAwQFDAUNBAUEBQgFJgQJBAQEBAQEAQQDAQMBAwQECAQJBAICAQIGAwQF/kQEBQQGAgIBAgMDBQQBBA0JAQ0BBAUFBAEEBQUKBRkBBAEUBgUFBQsKCQUEBAMEAQIDAwQHEwUEBQUEBQUEJR4IBAQJDAMNAhIFBAUDARQEBAkIFiwFBQQFBQUEBRsEBgQBAQIDAwQEBAkDBgULBQUFBhQBHgUKBQUEAQQBBAUcDQQBBAUDAgECAgMECAH6/sgBODFaPrq6fQHyAQEBAQcCAgQDBAQECQQFBgMCCQIBAQEBAQECBQECAwMIBAUECQMDAwcBAQEBUwECAgQHCQkKAQkHBgcDBAMEAwQHCAcUBA0EBCADAwICAgIDAwgJBQYFBQQBBAEEBRwNBAEIBAEEBAQIAQMBAwEDBAgDAQMEAwEGBAcIAQQEAQMEAwEDDAMBAwEDAQgEBAQBBAQEAQQNFwUFBAEEAQkFCgUMBAUEBAMEAQIFBwweCAQJBBQHCAcEAwQDBAMHBgQDBwUEBAkEBAMEAQICBQwFCQQDBgIBAQEBAQICBwICAwICAgECAwMIBQkIAwUCAQIBAgECAgIJAgEBAScCAwUCBAECDwMCAQIJDAkBCQQDAwEDAwEDCwcHCQkEAwQEAQEEAwwDBAYDAwIDAwMDAwMCAwMCAwIDAgMCAwQDFgMDCAkJBwMEOwECAwMEDQULAgMDAwMDAwIDAwojAwcDBwQOCwMHAwgDAwIBAQMCBAgJBAIECQQEBAQEBQMBAwEDBAEDEAQDAQMIAwEKAQMDAQMDAQMDAQYECQEDAgMDqQEEBAMECAQECQUECQ0EGwUNCQQECQQBBCIEBQEE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BgcDBAMEAwQHCAQEBwIBAgIDBAgEAq8ECAYCAQEBAQECCAIBAgIEARYBAQQDDAUJBAYFBAMKAggBAgECAgIHAQEBAQEEAwQIBPymBAQIBAIBAQECBgICAgEEAQYCCgMEAQMGBAUJBAQEAwQCARIBAgECAQICAgcCAQEBAQIHAwUElAUEBgICAQIDAwUEAQQNCQENAQQFBQQBBAUFCgUZAQQBFAYFBQULCgkFBAQDBAECAwMEBxMFBAUFBAUFBCUeCAQECQwDDQ0CGgQFAwEUBAQJCBYsBQUEBQUFBAUbBAYEAQECAwMEBAQJAwYFCwUFBQYUAR4FCgUFBAEEAQQFHA0EAQQFAwIBAgIDBAgEAjQBSzs5gFkeFRVtQD5xGhUnASI9JTduHRUHGjhNUSElLDISIzYBDxEDAwEGGSJECO0BAgIFDAUJBAMGAgEBAQEBAgIHAgIDAgICAQIDAwgFCQgDBQIBAgECAQICAgkCAQEBJwEBAwUCBAECDwMCAQIJDAkBCQQDAwEDAwEDCwcHCQkEAwQEAQEEAwwDBAYDAwIDAwMDAwMCAwMCAwIDAgMCAwQDFgMDCAkJBwMEPAEBAwMEDQULAgMDAwMDAwIDAwojAwcDBwQOCwMHAwgDAwIBAQMCBAgJBAIECQQEBAQEBQMBAwEDBAEDEAQDAQMIAwEKAQMDAQMDAQMDAQYECQEDAgMDAqsBBAQDBAgEBAkFBAkNBBsFDQkEBAkEAQQiBAUBBAQDAwIBAgIDBAgJBQQSBAsEBwQEBwQIBB4ECAQHBAQHBAQJBAQEAwQBdwECAwMIBwQHBBoDCwsHBgQDBxQPAwcBCAUEBQgDAwICAgIHAQMVAQMLAQcQBAQMBAQEBAQECQQmBQUIBAQDBKECAgMDBAkJCQYBDAEGDAYFAwMCAQQBBAECBQQCAgEBAQQBAQEGAQEBAgEBAgMHBQQFBAgDAwkCAQYDEAMGAwIDAgMCAwIDBgIDAwMDAwcDTQECAQMGDAMDBQMCAQEBBAMDBAkFBAgDAwIBAQEBAgkCAgIBAgECAQEBAgICAQEBBAEBAQUEAwUEBQgIAwIBAs4BAQEBBwICBAMEBAQJBAUGAwIJAgEBAQEBAQIFAQIDAwgEBQQJAwMDBwEBAQFTAQICBAcJCQoBCQcGBwMEAwQDBAcIBxQEDQQEIAMDAgICAgMDCAkFBgUF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FRczFzMfARUfATMXFR8EMxczHwYzPwU1LxYhIw8XFR8GMz8IMz8ENTczNzM3NT8BNT8BMz8ENS8EAa59fYx9fXVefX1efX0vCwYLBQwFBQYmBgoIBAIDAQECBgQJBCsFCQUFBQUKBR4FCgUFBQUKBBgJBQQDBAQBAQQDBAcmBQYFCwYLBvQFBAUDBAQCAggCDAcIBwQDBAMEAwcGBw8CCQIDEQQDBAkJBAQDBAECAwIBAgMCAQISAQkEBgEDBAMBAwgEAwEDAQMBCAQEBAEECAEECv3xBQQIBQQBBAQEDAQEBAgDAQMEAwQDBAkBDwIBAgMDBQIBBAMDAQIDAwgECQUHBQUQBgIGAg8HBgcDBAMEAwQHCAQEBwIBAgIDBAgBBBINCgUHBgICAwgIBAEIBCYECAMEBAQHBAgDGgMIBwcDCQUEBAQDBAEEAwcBAwUEBAQEBAkEJgQJBQQEBQ2tBAgGBwEDCAMBFQMBAwMBCQEMAQkJAwMCAQIDAwgEAQQCAgIDAwgEBQQJAwgDAgQDAgMCAwIDAgMDAwIDAwMDAwMDAwYDIwIDBAQCAgUECAGEBQgEAwMDAQYDAwIDAgMCAwIDBxYBBAEEAQYDAgIEBAMEBQkEBAQDBAECAgIBAgECAQICAgEBAQgBAQECAgQBAgcDAgECAwIBAgYDCQMDAwT9wwUECAMDAgIBAgEBAQEBAQIBCAIBAQEDAwQEBAUJBAMDBAECBQMCAQEBAQEBAgEBAgMDCQLuBQQIBgIBAQEBAQIIAgECAgQBFgEBBAMMBQkEBgUEAwoCCAECAQICAgcBAQEBAQQDBAj8pwUICAQCAQEBAgYCAgIBBAEGAgoDBAEDBgQFCQQEBAMEAgESAQIBAgECAgIHAgEBAQECBwMFAvAEBQQEAwQCAgcCAwUCBAECAwwKAwQCBAEBBAMEBAkIBQcDDwIBBgUIAQEBBgECAQIBAgICCQECAgMECP2tBAgEAwICAgUGDAYBDAEGBwMBAwMBBwcDAQcHAQMBAwQIBAQMBAQEBAkEBAQFAgEBBAQDFQMECgcZAwoCAwMDAwMDAwIGAwIDAgMCCAGcBQQEAQcKHAsHEgQLBAcEBAcECAQQCAQDAgIBBAQDBAUMBQ0EBQQFCAUmBAkEBAQEBAQBBAMBAwEDBAQIBAkEAgIBAgYDBAX+RAQFBAYCAgECAwMFBAEEDQkBDQEEBQUEAQQFBQoFGQEEARQGBQUFCwoJBQQEAwQBAgMDBAcTBQQFBQQFBQQlHggEBAkMAw0CEgUEBQMBFAQECQgWLAUFBAUFBQQFGwQGBAEBAgMDBAQECQMGBQsFBQUGFAEeBQoFBQQBBAEEBRwNBAEEBQMCAQICAwQIAiF9jH19jH0XfV59fl0BlQEBAQEHAgIEAwQEBAkEBQYDAgkCAQEBAQEBAgUBAgMDCAQFBAkDAwMHAQEBAVMBAgIEBwkJCgEJBwYHAwQDBAMEBwgHFAQNBAQgAwMCAgICAwMICQUGBQUEAQQBBAUcDQQBCAQBBAQECAEDAQMBAwQIAwEDBAMBBgQHCAEEBAEDBAMBAwwDAQMBAwEIBAQEAQQEBAEEDRcFBQQBBAEJBQoFDAQFBAQDBAECBQcMHggECQQUBwgHBAMEAwQDBwYEAwcFBAQJBAQDBAECAgUMBQkEAwYCAQEBAQECAgcCAgMCAgIBAgMDCAUJCAMFAgECAQIBAgICCQIBAQEnAgMFAgQBAg8DAgECCQwJAQkEAwMBAwMBAwsHBwkJBAMEBAEBBAMMAwQGAwMCAwMDAwMDAgMDAgMCAwIDAgMEAxYDAwgJCQcDBDsBAgMDBA0FCwIDAwMDAwMCAwMKIwMHAwcEDgsDBwMIAwMCAQEDAgQICQQCBAkEBAQEBAUDAQMBAwQBAxAEAwEDCAMBCgEDAwEDAwEDAwEGBAkBAwIDA6kBBAQDBAgEBAkFBAkNBBsFDQkEBAkEAQQiBAUBBAQDAwIBAgIDBAgJBQQSBAsEBwQEBwQIBB4ECAQHBAQHBAQJBAQEAwQtAQQIBAQEBB4FCgUFBQUJBScFBAUJCgQyBAUECAQGAgIGCAoFGQEEARQGBQUFCwYmBQYFCwYLBhYGCQgDAwQQAgYICAkGEQUGBQYLBSEGCwUFCgYPAQQBGQUKAQQGAgEBAwIECAkIASkEBQUEBQUJBSIFCQUFBQUKBRcFBAcCAjkBAgMDCAcEBwQaAwsLBwYEAwcUDwMHAQgFBAUIAwMCAgICBwEDFQEDCwEHEAQEDAQEBAQEBAkEJgUFCAQEAwSgAQQDAwQJCQkGAQwBBgwGBQMDAgEEAQQBAgUEAgIBAQEEAQEBBgEBAQIBAQIDBwUEBQQIAwMJAgEGAxADBgMCAwIDAgMCAwYCAwMDAwMHSgECAQMGDAMDBQMCAQEBBAMDBAkFBAgDAwIBAQEBAgkCAgIBAgECAQEBAgICAQEBBAEBAQUEAwUEBQgIAwIBJwEBAwYECQUEBAQCBQMECQEGCQMCAQIDAgECAwQDCgIIAQIBAgIDAQIDAwgFBAkEAwMDBAIBAgECAQIBEBAGAgMFCQMKAQICAg8CAwUGDBQBAgECAQIBAgYCBgkEBQQEBAMDAgEBAQICAgECAQgMAwQDAgECAwIBAhIBCQQDBQQEBAUJBAMDBAAAAAAIAAD/mgO4AyIAFAApAC4AMgA2ADoAPgBCAAABIgcGBwYUFxYXFjI3Njc2NCcmJyYHMhcWFxYUBwYHBiInJicmNDc2NzYHFREhEQUzESMTFTM1BxUzNQcVMzUHFTM1AfR6amY8Pj48Zmr0amY8Pj48Zmp6bl5bNTc3NVte3F5bNTc3NVteKQEu/ur+/hrKysrKysrKAyI+PGZq9GpmPD4+PGZq9GpmPD4xNzVbXtxeWzU3NzVbXtxeWzU31Qz+kAF8GP60AScZGUoYGFUYGE0YGAAAAAoAAP+iA7gDIAAPACAAMgBtANYBXwG8AgMCTQK5AAABJgYHBh4CNz4BNzYmJyYHNh4BFxYGBw4BLgI2Nz4BFwYPAQ4BFhcWPgE7ATUjNjcmAysBByMHIwcVDwUVHwUzPwMzNzM3MzczFzMXMxczHwEzPwM1LwQjNSMnIycXDwYVHwozHwYVHwIzHw0zPwQ1LwE1JyMvBiMvATUjLwsjLwEjLwcjNSc1LwQjBQ8BIw8EFQ8EFQcjBxUPAyMVBxUHIxUPBBUHIw8BFQ8CFQ8CIw8DFQ8DFQcVDwoVBxUfBD8EMz8ENT8mNS8DAQ8FFRcVBxUHFQcVBxUHFQcVBxUHFQcVBxUHFQ8HFR8EPwUzPwEzPwE1PwEzNzM3NTc1MzU3NTc1NzU3NTc1NzU3NTc1JzUvBAUPBRUXFRcVFzMfBTMfARUXFRcVFxUzFxUXFR8EPwQ1Lw01JzUnNSc1LwMBDxcfBD8EMz8DMzczNzM3MzczNzU3Mzc1NzM/AjM3MzU/AzUvBAUPBRUfAxUfATMfAjMfAhUfATMfARUfATMXMxczFzMfAjMXMxcVMx8HMxcVFzMVMxczPwQ1LwQjJyMnIycjLwojLwQjLwUjAfRAbxcZGFZ+Oj1RAQREOSsyJkgzCQ8tMSFQSzgaCRYYUGMJFB0JCQQIBAkNBFlZEiYOOwcNBg0NBycNDgQDAwQBAgMDCQQFBgwGFwYLBgYGBikGBgYGBgUfBAUMAwMCAgYDCicGBwYNB+kFBAQDAwECAgIGAgIDBgUEAwgBDgIIAgYCBAECAgECAwIDBQQDBAMKBQYDCQQJBAQDBAIEBgEEAwIDAgMCAQIIAQUDBAIEAgIFAgcCAgECCQECAgMHAwIDAgECAwIGAgoF/fMFBwECAwIDAgMCAwIDBAECAgMCBAEEBAECAgICAgIBAgICBAICBAEBAQIDAgIKAQICAgEEAQIBAgECAQICAQQEAw4ECAQDAQECAwECAgIBAgECAQIBAgIDAgECCAIBAgICAQQCBAEGAgoCBgMKAwYDBQMCAQQGCAUCsgQFAwYCAQEBAQEBAQECAQMFAwUDBAMCBgMBAgMGBAkJBAQDAgEBAwIBAgMDAgEFAQwDAQIBAQEBAQEBAQQDBAQI/KYEBQMEBAEBAwIBAwIBBAEKAQQDAgMCAQIDAQIEBwkJBAQDBAIEAgMCBwQBBgECAQIIAQEBAQUICAKxBAQJBAUKBA8FBQsPBgULBSEGCxAIBAUCAgQDBA0JBgYUBQESBgcFAQUBBQEFARwBCwUBBQUBBQsPAQQBAwMCAQQDBAQI/d4EBAQDAgIBAgMEDQIBAgMCAQIDAwsCAQgDAwUBAgECAQIBAgMDAQIBAgECBAMGAw0DHQIDDQQDDQkFCAUCAQQDBAQDBAgDFAIRAwkFEQIGBQMFBQUCAQ8CBQICAQQDBBEEBAUCNAFLOzmAWR4VFW1APnEaFScBIj0lN24dFQcaOE1RISUsMhIjNgEPEQMDAQYZIkQIAUgBAgYBAgQCAwQICQUEBAMEAQICAgQCAQEBAQEFAQYEAwkFCAgCBAYBAQFPAQEDAwQEBAUJBAYBAgEGAwQCCA4DCAMGAwQBAgIDBAMEAwcHAwgDEgoIAgQCAgMDCAoHBwEMCAQEBAQEBAQLAQcDBgIGAgMFAwcDAgMJAwICBwICAgIBAQECAgQCBQwBBAICAgICAQICAgICAQQCAQICAwQBBAEEAQIDAgMCAQIDAgECBgIBAgYDAwIFAgECDwMCAQIBAgMGAwMDAwMDAwMBBAkFCAMDAwEEAwMEBgUDAgUBAgMCAwIDAgMDAgUCAwIMAgMCAwIDBAMEAwYDCgMGAgoBBgIF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LwQBXQEu/ur+/hrKysrKysrKZQsGCwUMBQUGJgYKCAQCAwEBAgYECQQrBQkFBQUFCgUeBQoFBQUFCgQYCQUEAwQEAQEEAwQHJgUGBQsGCwb0BQQFAwQEAgIIAgwHCAcEAwQDBAMHBgcPAgkCAxEEAwQJCQQEAwQBAgMCAQIDAgECEgEJBAYBAwQDAQMIBAMBAwEDAQgEBAQBBAgBBAr98QUECAUEAQQEBAwEBAQIAwEDBAMEAwQJAQ8CAQIDAwUCAQQDAwECAwMIBAkFBwUFEAYCBgIPBwYHAwQDBAMEBwgEBAcCAQICAwQIAQQSDQoFBwYCAgMICAQBCAQmBAgDBAQEBwQIAxoDCAcHAwkFBAQEAwQBBAMHAQMFBAQEBAQJBCYECQUEBAUNrQQIBgcBAwgDARUDAQMDAQkBDAEJCQMDAgECAwMIBAEEAgICAwMIBAUECQMIAwIEAwIDAgMCAwIDAwMCAwMDAwMDAwMGAyMCAwQEAgIFBAgBhAUIBAMDAwEGAwMCAwIDAgMCAwcWAQQBBAEGAwICBAQDBAUJBAQEAwQBAgICAQIBAgECAgIBAQEIAQEBAgIEAQIHAwIBAgMCAQIGAwkDAwME/cMFBAgDAwICAQIBAQEBAQECAQgCAQEBAwMEBAQFCQQDAwQBAgUDAgEBAQEBAQIBAQIDAwkC7gUECAYCAQEBAQECCAIBAgIEARYBAQQDDAUJBAYFBAMKAggBAgECAgIHAQEBAQEEAwQI/KcFCAgEAgEBAQIGAgICAQQBBgIKAwQBAwYEBQkEBAQDBAIBEgECAQIBAgICBwIBAQEBAgcDBQLwBAUEBAMEAgIHAgMFAgQBAgMMCgMEAgQBAQQDBAQJCAUHAw8CAQYFCAEBAQYBAgECAQICAgkBAgIDBAj9rQQIBAMCAgIFBgwGAQwBBgcDAQMDAQcHAwEHBwEDAQMECAQEDAQEBAQJBAQEBQIBAQQEAxUDBAoHGQMKAgMDAwMDAwMCBgMCAwIDAggBnAUEBAEHChwLBxIECwQHBAQHBAgEEAgEAwICAQQEAwQFDAUNBAUEBQgFJgQJBAQEBAQEAQQDAQMBAwQECAQJBAICAQIGAwQF/kQEBQQGAgIBAgMDBQQBBA0JAQ0BBAUFBAEEBQUKBRkBBAEUBgUFBQsKCQUEBAMEAQIDAwQHEwUEBQUEBQUEJR4IBAQJDAMNAhIFBAUDARQEBAkIFiwFBQQFBQUEBRsEBgQBAQIDAwQEBAkDBgULBQUFBhQBHgUKBQUEAQQBBAUcDQQBBAUDAgECAgMECAIcDP6QAXwY/rQBJxkZShgYVRgYTRgYAi8BAQEBBwICBAMEBAQJBAUGAwIJAgEBAQEBAQIFAQIDAwgEBQQJAwMDBwEBAQFTAQICBAcJCQoBCQcGBwMEAwQDBAcIBxQEDQQEIAMDAgICAgMDCAkFBgUFBAEEAQQFHA0EAQgEAQQEBAgBAwEDAQMECAMBAwQDAQYEBwgBBAQBAwQDAQMMAwEDAQMBCAQEBAEEBAQBBA0XBQUEAQQBCQUKBQwEBQQEAwQBAgUHDB4IBAkEFAcIBwQDBAMEAwcGBAMHBQQECQQEAwQBAgIFDAUJBAMGAgEBAQEBAgIHAgIDAgICAQIDAwgFCQgDBQIBAgECAQICAgkCAQEBJwIDBQIEAQIPAwIBAgkMCQEJBAMDAQMDAQMLBwcJCQQDBAQBAQQDDAMEBgMDAgMDAwMDAwIDAwIDAgMCAwIDBAMWAwMICQkHAwQ7AQIDAwQNBQsCAwMDAwMDAgMDCiMDBwMHBA4LAwcDCAMDAgEBAwIECAkEAgQJBAQEBAQFAwEDAQMEAQMQBAMBAwgDAQoBAwMBAwMBAwMBBgQJAQMCAwOpAQQEAwQIBAQJBQQJDQQbBQ0JBAQJBAEEIgQFAQQEAwMCAQICAwQICQUEEgQLBAcEBAcECAQeBAgEBwQEBwQECQQEBAMELQEECAQEBAQeBQoFBQUFCQUnBQQFCQoEMgQFBAgEBgICBggKBRkBBAEUBgUFBQsGJgUGBQsGCwYWBgkIAwMEEAIGCAgJBhEFBgUGCwUhBgsFBQoGDwEEARkFCgEEBgIBAQMCBAgJCAEpBAUFBAUFCQUiBQkFBQUFCgUXBQQHAgI5AQIDAwgHBAcEGgMLCwcGBAMHFA8DBwEIBQQFCAMDAgICAgcBAxUBAwsBBxAEBAwEBAQEBAQJBCYFBQgEBAMEoAEEAwMECQkJBgEMAQYMBgUDAwIBBAEEAQIFBAICAQEBBAEBAQYBAQECAQECAwcFBAUECAMDCQIBBgMQAwYDAgMCAwIDAgMGAgMDAwMDB0oBAgEDBgwDAwUDAgEBAQQDAwQJBQQIAwMCAQEBAQIJAgICAQIBAgEBAQICAgEBAQQB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ZQBkACAAYgB5ACAAcwB2AGcAMgB0AHQAZgAgAGYAcgBvAG0AIABGAG8AbgB0AGUAbABsAG8AIABwAHIAbwBqAGUAYwB0AC4AaAB0AHQAcAA6AC8ALwBmAG8AbgB0AGUAbABsAG8ALgBjAG8AbQAAAAACAAAAAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwBAgEDAQQBBQEGAQcBCAEJAQoBCwEMAQ0BDgEPARABEQESARMBFAEVARYBFwEYARkBGgEbARwBHQEeAR8BIAEhASIBIwEkASUBJgEnASgBKQEqASsBLAEtAS4BLwEwATEBMgEzATQBNQE2ATcBOAE5AToBOwE8AT0BPgE/AUABQQFCAUMBRAFFAUYBRwFIAUkBSgFLAUwBTQFOAU8BUAFRAVIBUwFUAVUBVgFXAVgBWQFaAVsBXAFdAV4BXwFgAWEBYgFjAWQBZQFmAWcBaAFpAWoBawFsAW0ADHNjcmV3LXdyZW5jaAV0cmFzaBBjb25kaXRpb25hbC1mbG93DGRlZmF1bHQtZmxvdxBnYXRld2F5LXBhcmFsbGVsH2ludGVybWVkaWF0ZS1ldmVudC1jYXRjaC1jYW5jZWwxaW50ZXJtZWRpYXRlLWV2ZW50LWNhdGNoLW5vbi1pbnRlcnJ1cHRpbmctbWVzc2FnZRhzdGFydC1ldmVudC1jb21wZW5zYXRpb24uc3RhcnQtZXZlbnQtbm9uLWludGVycnVwdGluZy1wYXJhbGxlbC1tdWx0aXBsZQtsb29wLW1hcmtlchJwYXJhbGxlbC1taS1tYXJrZXIjc3RhcnQtZXZlbnQtbm9uLWludGVycnVwdGluZy1zaWduYWwvaW50ZXJtZWRpYXRlLWV2ZW50LWNhdGNoLW5vbi1pbnRlcnJ1cHRpbmctdGltZXIqaW50ZXJtZWRpYXRlLWV2ZW50LWNhdGNoLXBhcmFsbGVsLW11bHRpcGxlJWludGVybWVkaWF0ZS1ldmVudC1jYXRjaC1jb21wZW5zYXRpb24LZ2F0ZXdheS14b3IKY29ubmVjdGlvbhBlbmQtZXZlbnQtY2FuY2VsImludGVybWVkaWF0ZS1ldmVudC1jYXRjaC1jb25kaXRpb247aW50ZXJtZWRpYXRlLWV2ZW50LWNhdGNoLW5vbi1pbnRlcnJ1cHRpbmctcGFyYWxsZWwtbXVsdGlwbGUVc3RhcnQtZXZlbnQtY29uZGl0aW9uInN0YXJ0LWV2ZW50LW5vbi1pbnRlcnJ1cHRpbmctdGltZXIUc2VxdWVudGlhbC1taS1tYXJrZXIJdXNlci10YXNrDWJ1c2luZXNzLXJ1bGUSc3ViLXByb2Nlc3MtbWFya2VyHXN0YXJ0LWV2ZW50LXBhcmFsbGVsLW11bHRpcGxlEXN0YXJ0LWV2ZW50LWVycm9yH2ludGVybWVkaWF0ZS1ldmVudC1jYXRjaC1zaWduYWweaW50ZXJtZWRpYXRlLWV2ZW50LWNhdGNoLWVycm9yFmVuZC1ldmVudC1jb21wZW5zYXRpb24Uc3VicHJvY2Vzcy1jb2xsYXBzZWQTc3VicHJvY2Vzcy1leHBhbmRlZAR0YXNrD2VuZC1ldmVudC1lcnJvciNpbnRlcm1lZGlhdGUtZXZlbnQtY2F0Y2gtZXNjYWxhdGlvbh5pbnRlcm1lZGlhdGUtZXZlbnQtY2F0Y2gtdGltZXIWc3RhcnQtZXZlbnQtZXNjYWxhdGlvbhJzdGFydC1ldmVudC1zaWduYWwSYnVzaW5lc3MtcnVsZS10YXNrBm1hbnVhbAdyZWNlaXZlDWNhbGwtYWN0aXZpdHkRc3RhcnQtZXZlbnQtdGltZXITc3RhcnQtZXZlbnQtbWVzc2FnZRdpbnRlcm1lZGlhdGUtZXZlbnQtbm9uZR1pbnRlcm1lZGlhdGUtZXZlbnQtY2F0Y2gtbGluaxRlbmQtZXZlbnQtZXNjYWxhdGlvbg90ZXh0LWFubm90YXRpb24HYnBtbi1pbw9nYXRld2F5LWNvbXBsZXgSZ2F0ZXdheS1ldmVudGJhc2VkDGdhdGV3YXktbm9uZQpnYXRld2F5LW9yE2VuZC1ldmVudC10ZXJtaW5hdGUQZW5kLWV2ZW50LXNpZ25hbA5lbmQtZXZlbnQtbm9uZRJlbmQtZXZlbnQtbXVsdGlwbGURZW5kLWV2ZW50LW1lc3NhZ2UOZW5kLWV2ZW50LWxpbmsgaW50ZXJtZWRpYXRlLWV2ZW50LWNhdGNoLW1lc3NhZ2UlaW50ZXJtZWRpYXRlLWV2ZW50LXRocm93LWNvbXBlbnNhdGlvbhRzdGFydC1ldmVudC1tdWx0aXBsZQZzY3JpcHQLbWFudWFsLXRhc2sEc2VuZAdzZXJ2aWNlDHJlY2VpdmUtdGFzawR1c2VyEHN0YXJ0LWV2ZW50LW5vbmUjaW50ZXJtZWRpYXRlLWV2ZW50LXRocm93LWVzY2FsYXRpb24haW50ZXJtZWRpYXRlLWV2ZW50LWNhdGNoLW11bHRpcGxlNGludGVybWVkaWF0ZS1ldmVudC1jYXRjaC1ub24taW50ZXJydXB0aW5nLWVzY2FsYXRpb24daW50ZXJtZWRpYXRlLWV2ZW50LXRocm93LWxpbmsmc3RhcnQtZXZlbnQtbm9uLWludGVycnVwdGluZy1jb25kaXRpb24LZGF0YS1vYmplY3QLc2NyaXB0LXRhc2sJc2VuZC10YXNrCmRhdGEtc3RvcmUnc3RhcnQtZXZlbnQtbm9uLWludGVycnVwdGluZy1lc2NhbGF0aW9uIGludGVybWVkaWF0ZS1ldmVudC10aHJvdy1tZXNzYWdlMmludGVybWVkaWF0ZS1ldmVudC1jYXRjaC1ub24taW50ZXJydXB0aW5nLW11bHRpcGxlMGludGVybWVkaWF0ZS1ldmVudC1jYXRjaC1ub24taW50ZXJydXB0aW5nLXNpZ25hbCFpbnRlcm1lZGlhdGUtZXZlbnQtdGhyb3ctbXVsdGlwbGUkc3RhcnQtZXZlbnQtbm9uLWludGVycnVwdGluZy1tZXNzYWdlDWFkLWhvYy1tYXJrZXIMc2VydmljZS10YXNrCXRhc2stbm9uZRNjb21wZW5zYXRpb24tbWFya2VyJXN0YXJ0LWV2ZW50LW5vbi1pbnRlcnJ1cHRpbmctbXVsdGlwbGUfaW50ZXJtZWRpYXRlLWV2ZW50LXRocm93LXNpZ25hbDNpbnRlcm1lZGlhdGUtZXZlbnQtY2F0Y2gtbm9uLWludGVycnVwdGluZy1jb25kaXRpb24LcGFydGljaXBhbnQZZXZlbnQtc3VicHJvY2Vzcy1leHBhbmRlZBFsYW5lLWluc2VydC1iZWxvdwpzcGFjZS10b29sEGNvbm5lY3Rpb24tbXVsdGkEbGFuZQpsYXNzby10b29sEWxhbmUtaW5zZXJ0LWFib3ZlEWxhbmUtZGl2aWRlLXRocmVlD2xhbmUtZGl2aWRlLXR3bwpkYXRhLWlucHV0C2RhdGEtb3V0cHV0CWhhbmQtdG9vbAVncm91cAt0cmFuc2FjdGlvbgAA') format('truetype');
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'bpmn';
    src: url('../font/bpmn.svg?61125153#bpmn') format('svg');
  }
}
*/

 [class^="bpmn-icon-"]:before, [class*=" bpmn-icon-"]:before {
  font-family: "bpmn";
  font-style: normal;
  font-weight: normal;
  speak: none;

  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  /* margin-right: .2em; */
  text-align: center;
  /* opacity: .8; */

  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;

  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;

  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  /* margin-left: .2em; */

  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */

  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
.bpmn-icon-screw-wrench:before { content: '\e800'; } /* '' */
.bpmn-icon-trash:before { content: '\e801'; } /* '' */
.bpmn-icon-conditional-flow:before { content: '\e802'; } /* '' */
.bpmn-icon-default-flow:before { content: '\e803'; } /* '' */
.bpmn-icon-gateway-parallel:before { content: '\e804'; } /* '' */
.bpmn-icon-intermediate-event-catch-cancel:before { content: '\e805'; } /* '' */
.bpmn-icon-intermediate-event-catch-non-interrupting-message:before { content: '\e806'; } /* '' */
.bpmn-icon-start-event-compensation:before { content: '\e807'; } /* '' */
.bpmn-icon-start-event-non-interrupting-parallel-multiple:before { content: '\e808'; } /* '' */
.bpmn-icon-loop-marker:before { content: '\e809'; } /* '' */
.bpmn-icon-parallel-mi-marker:before { content: '\e80a'; } /* '' */
.bpmn-icon-start-event-non-interrupting-signal:before { content: '\e80b'; } /* '' */
.bpmn-icon-intermediate-event-catch-non-interrupting-timer:before { content: '\e80c'; } /* '' */
.bpmn-icon-intermediate-event-catch-parallel-multiple:before { content: '\e80d'; } /* '' */
.bpmn-icon-intermediate-event-catch-compensation:before { content: '\e80e'; } /* '' */
.bpmn-icon-gateway-xor:before { content: '\e80f'; } /* '' */
.bpmn-icon-connection:before { content: '\e810'; } /* '' */
.bpmn-icon-end-event-cancel:before { content: '\e811'; } /* '' */
.bpmn-icon-intermediate-event-catch-condition:before { content: '\e812'; } /* '' */
.bpmn-icon-intermediate-event-catch-non-interrupting-parallel-multiple:before { content: '\e813'; } /* '' */
.bpmn-icon-start-event-condition:before { content: '\e814'; } /* '' */
.bpmn-icon-start-event-non-interrupting-timer:before { content: '\e815'; } /* '' */
.bpmn-icon-sequential-mi-marker:before { content: '\e816'; } /* '' */
.bpmn-icon-user-task:before { content: '\e817'; } /* '' */
.bpmn-icon-business-rule:before { content: '\e818'; } /* '' */
.bpmn-icon-sub-process-marker:before { content: '\e819'; } /* '' */
.bpmn-icon-start-event-parallel-multiple:before { content: '\e81a'; } /* '' */
.bpmn-icon-start-event-error:before { content: '\e81b'; } /* '' */
.bpmn-icon-intermediate-event-catch-signal:before { content: '\e81c'; } /* '' */
.bpmn-icon-intermediate-event-catch-error:before { content: '\e81d'; } /* '' */
.bpmn-icon-end-event-compensation:before { content: '\e81e'; } /* '' */
.bpmn-icon-subprocess-collapsed:before { content: '\e81f'; } /* '' */
.bpmn-icon-subprocess-expanded:before { content: '\e820'; } /* '' */
.bpmn-icon-task:before { content: '\e821'; } /* '' */
.bpmn-icon-end-event-error:before { content: '\e822'; } /* '' */
.bpmn-icon-intermediate-event-catch-escalation:before { content: '\e823'; } /* '' */
.bpmn-icon-intermediate-event-catch-timer:before { content: '\e824'; } /* '' */
.bpmn-icon-start-event-escalation:before { content: '\e825'; } /* '' */
.bpmn-icon-start-event-signal:before { content: '\e826'; } /* '' */
.bpmn-icon-business-rule-task:before { content: '\e827'; } /* '' */
.bpmn-icon-manual:before { content: '\e828'; } /* '' */
.bpmn-icon-receive:before { content: '\e829'; } /* '' */
.bpmn-icon-call-activity:before { content: '\e82a'; } /* '' */
.bpmn-icon-start-event-timer:before { content: '\e82b'; } /* '' */
.bpmn-icon-start-event-message:before { content: '\e82c'; } /* '' */
.bpmn-icon-intermediate-event-none:before { content: '\e82d'; } /* '' */
.bpmn-icon-intermediate-event-catch-link:before { content: '\e82e'; } /* '' */
.bpmn-icon-end-event-escalation:before { content: '\e82f'; } /* '' */
.bpmn-icon-text-annotation:before { content: '\e830'; } /* '' */
.bpmn-icon-bpmn-io:before { content: '\e831'; } /* '' */
.bpmn-icon-gateway-complex:before { content: '\e832'; } /* '' */
.bpmn-icon-gateway-eventbased:before { content: '\e833'; } /* '' */
.bpmn-icon-gateway-none:before { content: '\e834'; } /* '' */
.bpmn-icon-gateway-or:before { content: '\e835'; } /* '' */
.bpmn-icon-end-event-terminate:before { content: '\e836'; } /* '' */
.bpmn-icon-end-event-signal:before { content: '\e837'; } /* '' */
.bpmn-icon-end-event-none:before { content: '\e838'; } /* '' */
.bpmn-icon-end-event-multiple:before { content: '\e839'; } /* '' */
.bpmn-icon-end-event-message:before { content: '\e83a'; } /* '' */
.bpmn-icon-end-event-link:before { content: '\e83b'; } /* '' */
.bpmn-icon-intermediate-event-catch-message:before { content: '\e83c'; } /* '' */
.bpmn-icon-intermediate-event-throw-compensation:before { content: '\e83d'; } /* '' */
.bpmn-icon-start-event-multiple:before { content: '\e83e'; } /* '' */
.bpmn-icon-script:before { content: '\e83f'; } /* '' */
.bpmn-icon-manual-task:before { content: '\e840'; } /* '' */
.bpmn-icon-send:before { content: '\e841'; } /* '' */
.bpmn-icon-service:before { content: '\e842'; } /* '' */
.bpmn-icon-receive-task:before { content: '\e843'; } /* '' */
.bpmn-icon-user:before { content: '\e844'; } /* '' */
.bpmn-icon-start-event-none:before { content: '\e845'; } /* '' */
.bpmn-icon-intermediate-event-throw-escalation:before { content: '\e846'; } /* '' */
.bpmn-icon-intermediate-event-catch-multiple:before { content: '\e847'; } /* '' */
.bpmn-icon-intermediate-event-catch-non-interrupting-escalation:before { content: '\e848'; } /* '' */
.bpmn-icon-intermediate-event-throw-link:before { content: '\e849'; } /* '' */
.bpmn-icon-start-event-non-interrupting-condition:before { content: '\e84a'; } /* '' */
.bpmn-icon-data-object:before { content: '\e84b'; } /* '' */
.bpmn-icon-script-task:before { content: '\e84c'; } /* '' */
.bpmn-icon-send-task:before { content: '\e84d'; } /* '' */
.bpmn-icon-data-store:before { content: '\e84e'; } /* '' */
.bpmn-icon-start-event-non-interrupting-escalation:before { content: '\e84f'; } /* '' */
.bpmn-icon-intermediate-event-throw-message:before { content: '\e850'; } /* '' */
.bpmn-icon-intermediate-event-catch-non-interrupting-multiple:before { content: '\e851'; } /* '' */
.bpmn-icon-intermediate-event-catch-non-interrupting-signal:before { content: '\e852'; } /* '' */
.bpmn-icon-intermediate-event-throw-multiple:before { content: '\e853'; } /* '' */
.bpmn-icon-start-event-non-interrupting-message:before { content: '\e854'; } /* '' */
.bpmn-icon-ad-hoc-marker:before { content: '\e855'; } /* '' */
.bpmn-icon-service-task:before { content: '\e856'; } /* '' */
.bpmn-icon-task-none:before { content: '\e857'; } /* '' */
.bpmn-icon-compensation-marker:before { content: '\e858'; } /* '' */
.bpmn-icon-start-event-non-interrupting-multiple:before { content: '\e859'; } /* '' */
.bpmn-icon-intermediate-event-throw-signal:before { content: '\e85a'; } /* '' */
.bpmn-icon-intermediate-event-catch-non-interrupting-condition:before { content: '\e85b'; } /* '' */
.bpmn-icon-participant:before { content: '\e85c'; } /* '' */
.bpmn-icon-event-subprocess-expanded:before { content: '\e85d'; } /* '' */
.bpmn-icon-lane-insert-below:before { content: '\e85e'; } /* '' */
.bpmn-icon-space-tool:before { content: '\e85f'; } /* '' */
.bpmn-icon-connection-multi:before { content: '\e860'; } /* '' */
.bpmn-icon-lane:before { content: '\e861'; } /* '' */
.bpmn-icon-lasso-tool:before { content: '\e862'; } /* '' */
.bpmn-icon-lane-insert-above:before { content: '\e863'; } /* '' */
.bpmn-icon-lane-divide-three:before { content: '\e864'; } /* '' */
.bpmn-icon-lane-divide-two:before { content: '\e865'; } /* '' */
.bpmn-icon-data-input:before { content: '\e866'; } /* '' */
.bpmn-icon-data-output:before { content: '\e867'; } /* '' */
.bpmn-icon-hand-tool:before { content: '\e868'; } /* '' */
.bpmn-icon-group:before { content: '\e869'; } /* '' */
.bpmn-icon-transaction:before { content: '\e8c4'; } /* '' */
/**
 * outline styles
 */

.djs-outline {
  fill: none;
  visibility: hidden;
}

.djs-element.hover .djs-outline,
.djs-element.selected .djs-outline {
  visibility: visible;
  shape-rendering: crispEdges;
  stroke-dasharray: 3,3;
}

.djs-element.selected .djs-outline {
  stroke: #8888FF;
  stroke-width: 1px;
}

.djs-element.hover .djs-outline {
  stroke: #FF8888;
  stroke-width: 1px;
}

.djs-shape.connect-ok .djs-visual > :nth-child(1) {
  fill: #DCFECC /* light-green */ !important;
}

.djs-shape.connect-not-ok .djs-visual > :nth-child(1),
.djs-shape.drop-not-ok .djs-visual > :nth-child(1) {
  fill: #f9dee5 /* light-red */ !important;
}

.djs-shape.new-parent .djs-visual > :nth-child(1) {
  fill: #F7F9FF !important;
}

svg.drop-not-ok {
  background: #f9dee5 /* light-red */ !important;
}

svg.new-parent {
  background: #F7F9FF /* light-blue */ !important;
}

.djs-connection.connect-ok .djs-visual > :nth-child(1),
.djs-connection.drop-ok .djs-visual > :nth-child(1) {
  stroke: #90DD5F /* light-green */ !important;
}

.djs-connection.connect-not-ok .djs-visual > :nth-child(1),
.djs-connection.drop-not-ok .djs-visual > :nth-child(1) {
  stroke: #E56283 /* light-red */ !important;
}

.drop-not-ok,
.connect-not-ok {
  cursor: not-allowed;
}

.djs-element.attach-ok .djs-visual > :nth-child(1) {
  stroke-width: 5px !important;
  stroke: rgba(255, 116, 0, 0.7) !important;
}

.djs-frame.connect-not-ok .djs-visual > :nth-child(1),
.djs-frame.drop-not-ok .djs-visual > :nth-child(1) {
  stroke-width: 3px !important;
  stroke: #E56283 /* light-red */ !important;
  fill: none !important;
}

/**
* Selection box style
*
*/
.djs-lasso-overlay {
  fill: rgb(255, 116, 0);
  fill-opacity: 0.1;

  stroke-dasharray: 5 1 3 1;
  stroke: rgb(255, 116, 0);

  shape-rendering: crispEdges;
  pointer-events: none;
}

/**
 * Resize styles
 */
.djs-resize-overlay {
  fill: none;

  stroke-dasharray: 5 1 3 1;
  stroke: rgb(255, 116, 0);

  pointer-events: none;
}

.djs-resizer-hit {
  fill: none;
  pointer-events: all;
}

.djs-resizer-visual {
  fill: white;
  stroke-width: 1px;
  stroke: #BBB;
  shape-rendering: geometricprecision;
}

.djs-resizer:hover .djs-resizer-visual {
  stroke: #555;
}

.djs-cursor-resize-ns,
.djs-resizer-n,
.djs-resizer-s {
  cursor: ns-resize;
}

.djs-cursor-resize-ew,
.djs-resizer-e,
.djs-resizer-w {
  cursor: ew-resize;
}

.djs-cursor-resize-nwse,
.djs-resizer-nw,
.djs-resizer-se {
  cursor: nwse-resize;
}

.djs-cursor-resize-nesw,
.djs-resizer-ne,
.djs-resizer-sw {
  cursor: nesw-resize;
}

.djs-shape.djs-resizing > .djs-outline {
  visibility: hidden !important;
}

.djs-shape.djs-resizing > .djs-resizer {
  visibility: hidden;
}

.djs-dragger > .djs-resizer {
  visibility: hidden;
}

/**
 * drag styles
 */
.djs-dragger * {
  fill: none !important;
  stroke: rgb(255, 116, 0) !important;
}

.djs-dragger tspan,
.djs-dragger text {
  fill: rgb(255, 116, 0) !important;
  stroke: none !important;
}

marker.djs-dragger circle,
marker.djs-dragger path,
marker.djs-dragger polygon,
marker.djs-dragger polyline,
marker.djs-dragger rect {
  fill: rgb(255, 116, 0) !important;
  stroke: none !important;
}

marker.djs-dragger text,
marker.djs-dragger tspan {
  fill: none !important;
  stroke: rgb(255, 116, 0) !important;
}

.djs-dragging {
  opacity: 0.3;
}

.djs-dragging,
.djs-dragging > * {
  pointer-events: none !important;
}

.djs-dragging .djs-context-pad,
.djs-dragging .djs-outline {
  display: none !important;
}

/**
 * no pointer events for visual
 */
.djs-visual,
.djs-outline {
  pointer-events: none;
}

.djs-element.attach-ok .djs-hit {
  stroke-width: 60px !important;
}

/**
 * all pointer events for hit shape
 */
.djs-element > .djs-hit-all {
  pointer-events: all;
}

.djs-element > .djs-hit-stroke,
.djs-element > .djs-hit-click-stroke {
  pointer-events: stroke;
}

/**
 * all pointer events for hit shape
 */
.djs-drag-active .djs-element > .djs-hit-click-stroke {
  pointer-events: all;
}

/**
 * shape / connection basic styles
 */
.djs-connection .djs-visual {
  stroke-width: 2px;
  fill: none;
}

.djs-cursor-grab {
  cursor: grab;
}

.djs-cursor-grabbing {
  cursor: grabbing;
}

.djs-cursor-crosshair {
  cursor: crosshair;
}

.djs-cursor-move {
  cursor: move;
}

.djs-cursor-resize-ns {
  cursor: ns-resize;
}

.djs-cursor-resize-ew {
  cursor: ew-resize;
}


/**
 * snapping
 */
.djs-snap-line {
  stroke: rgb(255, 195, 66);
  stroke: rgba(255, 195, 66, 0.50);
  stroke-linecap: round;
  stroke-width: 2px;
  pointer-events: none;
}

/**
 * snapping
 */
.djs-crosshair {
  stroke: #555;
  stroke-linecap: round;
  stroke-width: 1px;
  pointer-events: none;
  shape-rendering: crispEdges;
  stroke-dasharray: 5, 5;
}

/**
 * palette
 */

.djs-palette {
  position: absolute;
  left: 20px;
  top: 20px;

  box-sizing: border-box;
  width: 48px;
}

.djs-palette .separator {
  margin: 0 5px;
  padding-top: 5px;

  border: none;
  border-bottom: solid 1px #DDD;

  clear: both;
}

.djs-palette .entry:before {
  vertical-align: text-bottom;
}

.djs-palette .djs-palette-toggle {
  cursor: pointer;
}

.djs-palette .entry,
.djs-palette .djs-palette-toggle {
  color: #333;
  font-size: 30px;

  text-align: center;
}

.djs-palette .entry {
  float: left;
}

.djs-palette .entry img {
  max-width: 100%;
}

.djs-palette .djs-palette-entries:after {
  content: '';
  display: table;
  clear: both;
}

.djs-palette .djs-palette-toggle:hover {
  background: #666;
}

.djs-palette .entry:hover {
  color: rgb(255, 116, 0);
}

.djs-palette .highlighted-entry {
  color: rgb(255, 116, 0) !important;
}

.djs-palette .entry,
.djs-palette .djs-palette-toggle {
  width: 46px;
  height: 46px;
  line-height: 46px;
  cursor: default;
}

/**
 * Palette open / two-column layout is controlled via
 * classes on the palette. Events to hook into palette
 * changed life-cycle are available in addition.
 */
.djs-palette.two-column.open {
  width: 94px;
}

.djs-palette:not(.open) .djs-palette-entries {
  display: none;
}

.djs-palette:not(.open) {
  overflow: hidden;
}

.djs-palette.open .djs-palette-toggle {
  display: none;
}

/**
 * context-pad
 */
.djs-overlay-context-pad {
  width: 72px;
}

.djs-context-pad {
  position: absolute;
  display: none;
  pointer-events: none;
}

.djs-context-pad .entry {
  width: 22px;
  height: 22px;
  text-align: center;
  display: inline-block;
  font-size: 22px;
  margin: 0 2px 2px 0;

  border-radius: 3px;

  cursor: default;

  background-color: #FEFEFE;
  box-shadow: 0 0 2px 1px #FEFEFE;
  pointer-events: all;
}

.djs-context-pad .entry:before {
  vertical-align: top;
}

.djs-context-pad .entry:hover {
  background: rgb(255, 252, 176);
}

.djs-context-pad.open {
  display: block;
}

/**
 * popup styles
 */
.djs-popup .entry {
  line-height: 20px;
  white-space: nowrap;
  cursor: default;
}

/* larger font for prefixed icons */
.djs-popup .entry:before {
  vertical-align: middle;
  font-size: 20px;
}

.djs-popup .entry > span {
  vertical-align: middle;
  font-size: 14px;
}

.djs-popup .entry:hover,
.djs-popup .entry.active:hover {
  background: rgb(255, 252, 176);
}

.djs-popup .entry.disabled {
  background: inherit;
}

.djs-popup .djs-popup-header .entry {
  display: inline-block;
  padding: 2px 3px 2px 3px;

  border: solid 1px transparent;
  border-radius: 3px;
}

.djs-popup .djs-popup-header .entry.active {
  color: rgb(255, 116, 0);
  border: solid 1px rgb(255, 116, 0);
  background-color: #F6F6F6;
}

.djs-popup-body .entry {
  padding: 4px 10px 4px 5px;
}

.djs-popup-body .entry > span {
  margin-left: 5px;
}

.djs-popup-body {
  background-color: #FEFEFE;
}

.djs-popup-header {
  border-bottom: 1px solid #DDD;
}

.djs-popup-header .entry {
  margin: 1px;
  margin-left: 3px;
}

.djs-popup-header .entry:last-child {
  margin-right: 3px;
}

/**
 * popup / palette styles
 */
.djs-popup, .djs-palette {
  background: #FAFAFA;
  border: solid 1px #CCC;
  border-radius: 2px;
}

/**
 * touch
 */

.djs-shape,
.djs-connection {
  touch-action: none;
}

.djs-segment-dragger,
.djs-bendpoint {
  display: none;
}

/**
 * bendpoints
 */
.djs-segment-dragger .djs-visual {
  fill: rgba(255, 255, 121, 0.2);
  stroke-width: 1px;
  stroke-opacity: 1;
  stroke: rgba(255, 255, 121, 0.3);
}

.djs-bendpoint .djs-visual {
  fill: rgba(255, 255, 121, 0.8);
  stroke-width: 1px;
  stroke-opacity: 0.5;
  stroke: black;
}

.djs-segment-dragger:hover,
.djs-bendpoints.hover .djs-segment-dragger,
.djs-bendpoints.selected .djs-segment-dragger,
.djs-bendpoint:hover,
.djs-bendpoints.hover .djs-bendpoint,
.djs-bendpoints.selected .djs-bendpoint {
  display: block;
}

.djs-drag-active .djs-bendpoints * {
  display: none;
}

.djs-bendpoints:not(.hover) .floating {
  display: none;
}

.djs-segment-dragger:hover .djs-visual,
.djs-segment-dragger.djs-dragging .djs-visual,
.djs-bendpoint:hover .djs-visual,
.djs-bendpoint.floating .djs-visual {
  fill: yellow;
  stroke-opacity: 0.5;
  stroke: black;
}

.djs-bendpoint.floating .djs-hit {
  pointer-events: none;
}

.djs-segment-dragger .djs-hit,
.djs-bendpoint .djs-hit {
  pointer-events: all;
  fill: none;
}

.djs-segment-dragger.horizontal .djs-hit {
  cursor: ns-resize;
}

.djs-segment-dragger.vertical .djs-hit {
  cursor: ew-resize;
}

.djs-segment-dragger.djs-dragging .djs-hit {
  pointer-events: none;
}

.djs-updating,
.djs-updating > * {
  pointer-events: none !important;
}

.djs-updating .djs-context-pad,
.djs-updating .djs-outline,
.djs-updating .djs-bendpoint,
.connect-ok .djs-bendpoint,
.connect-not-ok .djs-bendpoint,
.drop-ok .djs-bendpoint,
.drop-not-ok .djs-bendpoint {
  display: none !important;
}

.djs-segment-dragger.djs-dragging,
.djs-bendpoint.djs-dragging {
  display: block;
  opacity: 1.0;
}

.djs-segment-dragger.djs-dragging .djs-visual,
.djs-bendpoint.djs-dragging .djs-visual {
  fill: yellow;
  stroke-opacity: 0.5;
}


/**
 * tooltips
 */
.djs-tooltip-error {
  font-size: 11px;
  line-height: 18px;
  text-align: left;

  padding: 5px;

  opacity: 0.7;
}

.djs-tooltip-error > * {
  width: 160px;

  background: rgb(252, 236, 240);
  color: rgb(158, 76, 76);
  padding: 3px 7px;
  border-radius: 5px;
  border-left: solid 5px rgb(174, 73, 73);
}

.djs-tooltip-error:hover {
  opacity: 1;
}


/**
 * search pad
 */
.djs-search-container {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;

  width: 25%;
  min-width: 300px;
  max-width: 400px;
  z-index: 10;

  font-size: 1.05em;
  opacity: 0.9;
  background: #FAFAFA;
  border: solid 1px #CCC;
  border-radius: 2px;
}

.djs-search-container:not(.open) {
  display: none;
}

.djs-search-input input {
  font-size: 1.05em;
  width: 100%;
  padding: 6px 10px;
  border: 1px solid #ccc;
}

.djs-search-input input:focus {
  outline: none;
  border-color: #52B415;
}

.djs-search-results {
  position: relative;
  overflow-y: auto;
  max-height: 200px;
}

.djs-search-results:hover {
  /*background: #fffdd7;*/
  cursor: pointer;
}

.djs-search-result {
  width: 100%;
  padding: 6px 10px;
  background: white;
  border-bottom: solid 1px #AAA;
  border-radius: 1px;
}

.djs-search-highlight {
  color: black;
}

.djs-search-result-primary {
  margin: 0 0 10px;
}

.djs-search-result-secondary {
  font-family: monospace;
  margin: 0;
}

.djs-search-result:hover {
  background: #fdffd6;
}

.djs-search-result-selected {
  background: #fffcb0;
}

.djs-search-result-selected:hover {
  background: #f7f388;
}

.djs-search-overlay {
  background: yellow;
  opacity: 0.3;
}

/**
 * hidden styles
 */
.djs-element-hidden,
.djs-element-hidden .djs-hit,
.djs-element-hidden .djs-outline,
.djs-label-hidden .djs-label {
  display: none !important;
}

.djs-minimap {
  position: absolute;
  top: 20px;
  right: 20px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.9);
  border: solid 1px #CCC;
  border-radius: 2px;
  box-sizing: border-box;
  user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
}

.djs-minimap:not(.open) {
  overflow: hidden;
}

.djs-minimap .map {
  display: none;
}

.djs-minimap.open .map {
  display: block;
}

.djs-minimap .map {
  width: 320px;
  height: 180px;
}

.djs-minimap:not(.open) .toggle {
  width: 46px;
  height: 46px;
  line-height: 46px;
  text-align: center;
}

.djs-minimap:not(.open) .toggle:before {
  content: 'Open';
}

.djs-minimap.open .toggle {
  position: absolute;
  right: 0;
  padding: 6px;
  z-index: 1;
}

.djs-minimap.open .toggle:before {
  content: 'Close';
}

.djs-minimap .map {
  cursor: crosshair;
}

.djs-minimap .viewport {
  /* fill: rgba(255, 116, 0, 0.25); */
  fill: none;
  stroke: none;
}

.djs-minimap .viewport-dom {
  position: absolute;
  border: solid 2px orange;
  border-radius: 2px;
  box-sizing: border-box;
  cursor: move;
}

.djs-minimap:not(.open) .viewport-dom {
  display: none;
}

.djs-minimap.open .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.djs-minimap .cursor-crosshair {
  cursor: crosshair;
}

.djs-minimap .cursor-move {
  cursor: move;
}

.bjsl-overlay {
  z-index: 500;
}

.bjsl-overlay:hover {
  z-index: 1000;
}

.bjsl-dropdown {
  display: none;
}

.bjsl-overlay:hover .bjsl-dropdown,
.bjsl-dropdown.open {
  display: block;
}

.bjsl-issues {
  padding: 8px;
  color: #444;
  font-family: 'Arial', sans-serif;
  font-size: 12px;
  background: #FAFAFA;
  border: solid 1px #CCC;
  border-radius: 2px;
}

.bjsl-icon {
  background: white;
  border-radius: 100%;
  display: inline-block;
  height: 20px;
  line-height: 23px;
  text-align: center;
  width: 20px;
}

.bjsl-icon-error {
  background-color: #cc3300;
  color: white;

  /* color: #cc3300; */
}

.bjsl-icon-warning {
  background-color: #f7c71a;
  color: white;

  /* color: #f7c71a; */
}

.bjsl-overlay {
  position: relative;
}

.bjsl-issues-top-right .bjsl-dropdown,
.bjsl-issues-bottom-right .bjsl-dropdown-content {
  top: 0;
  left: 0;
}

.bjsl-issues-bottom-right .bjsl-dropdown,
.bjsl-issues-top-right .bjsl-dropdown-content {
  bottom: 0;
  left: 0;
}

.bjsl-issues-top-right .bjsl-dropdown-content {
  padding-bottom: 5px;
}

.bjsl-issues-bottom-right .bjsl-dropdown-content {
  padding-top: 5px;
}

.bjsl-dropdown-content {
  min-width: 260px;
  position:  absolute;
}

.bjsl-dropdown {
  position: absolute;
}

.bjsl-issues {
  list-style: none;
  margin: 0;
}

.bjsl-issues ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bjsl-issues li {
  display: flex;
  flex-direction: row;
  white-space: nowrap;
}

.bjsl-issues li:not(:first-child) {
  margin-top: 7px;
}

.bjsl-issues .error svg {
  color: #cc3300;
}

.bjsl-issues .warning svg {
  color: #f7c71a;
}

.bjsl-issues a {
  color: #444;
  margin-left: 8px;
  text-decoration: none;
}

.bjsl-issues .bjsl-issue-heading {
  margin-left: 0px;
  font-weight: bold;
  margin-bottom: 100px;
}

.bjsl-child-issues hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
}

.bjsl-child-issues ul {
  margin-top: 7px;
}

.bjsl-issues a:hover {
  text-decoration: none;
}

.bjsl-id-hint {
  background-color: #bdbdbd;
  padding: 1px;
  padding-left: 5px;
  padding-right: 5px;
  font-weight: bold;
  border-radius: 20px;
}


/**
 * Summary button styles
 */

.bjsl-button {
  border-radius: 100px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  background-color: #fafafa;
  padding: 5px 10px;
  border: none;
  color: #ddd;
  display: flex;
  align-items: center;
  outline: none;
  font-weight: bold;
}

.bjsl-button-inactive:hover {
  color: #444;
}

.bjsl-button svg {
  margin-top: -1px;
  margin-right: 10px;
}

.bjsl-button-success {
  background-color: #52b415;
  color: white;
}

.bjsl-button-error {
  background-color: #cc3300;
  color: white;
}

.bjsl-button-warning {
  background-color: #f7c71a;
  color: white;
}

.iv {
  /***** snap view css *****/
  /*** zoom slider ***/
  /**** snap view css end *****/
}
.iv-container {
  overflow: hidden;
  position: relative;
}
.iv-fullscreen {
  position: fixed;
  background: #0d0d0d;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
  z-index: 1000;
}
.iv-fullscreen-container {
  position: relative;
  height: 100%;
  width: 100%;
}
.iv-container {
  overflow: hidden;
  position: relative;
}
.iv-image-mode {
  display: inline-block;
}
.iv-fullscreen-close {
  position: absolute;
  width: 24px;
  height: 24px;
  right: 10px;
  top: 10px;
  padding: 10px;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  text-shadow: 0px 0px 3px #6d6d6d;
  transition: all ease 200ms;
}
.iv-fullscreen-close:after, .iv-fullscreen-close:before {
  content: "";
  height: 4px;
  width: 24px;
  background: #FFF;
  position: absolute;
  left: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.iv-fullscreen-close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.iv-fullscreen-close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.iv-fullscreen-close:hover {
  transform: rotate(90deg);
  transform-origin: 50% 50%;
}
.iv-snap-view {
  width: 150px;
  height: 150px;
  position: absolute;
  top: 20px;
  left: 20px;
  border: 1px solid #aaa;
  background: black;
  z-index: 100;
  box-sizing: content-box;
  transition: opacity ease 400ms;
  opacity: 0;
}
.iv-snap-image-wrap {
  display: inline-block;
  position: absolute;
  max-width: 150px;
  max-height: 150px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}
.iv-snap-image {
  position: relative;
  touch-action: none;
}
.iv-snap-handle {
  box-sizing: border-box;
  position: absolute;
  border: 1px solid white;
  transform: translate3d(0, 0, 0);
  box-shadow: 0px 0px 0px 200px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  cursor: grab;
}
.iv-snap-handle:active {
  cursor: grabbing;
}
.iv-zoom-slider {
  width: 100%;
  box-sizing: content-box;
  border: 1px solid #aaa;
  border-top: 0;
  background: rgba(0, 0, 0, 0.3);
  height: 15px;
  position: absolute;
  top: 150px;
  left: -1px;
}
.iv-zoom-handle {
  width: 20px;
  height: 15px;
  background: white;
  position: absolute;
  cursor: pointer;
  cursor: grab;
}
.iv-zoom-handle:active {
  cursor: grabbing;
}
.iv-image-view {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.iv-image-wrap {
  display: inline-block;
}
.iv-image-wrap:active {
  cursor: move;
}
.iv-image {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  touch-action: none;
  transform: translate3d(0, 0, 0);
}
.iv-loader {
  top: 50%;
  left: 50%;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  z-index: 100;
  margin-top: -16px;
  margin-left: -16px;
  font-size: 5px;
  position: absolute;
  text-indent: -9999em;
  border: 1.1em solid rgba(255, 255, 255, 0.2);
  border-left: 1.1em solid #ffffff;
  transform: translateZ(0);
  animation: loading-icon 1.1s infinite linear;
}
.iv-loader:after {
  width: 10em;
  height: 10em;
  border-radius: 50%;
}
@keyframes loading-icon {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media screen and (max-width: 767px) {
  .iv-snap-view {
    z-index: -1;
    visibility: hidden;
  }
}
.tippy-box[data-animation=fade][data-state=hidden]{opacity:0}[data-tippy-root]{max-width:calc(100vw - 10px)}.tippy-box{position:relative;background-color:#333;color:#fff;border-radius:4px;font-size:14px;line-height:1.4;white-space:normal;outline:0;transition-property:transform,visibility,opacity}.tippy-box[data-placement^=top]>.tippy-arrow{bottom:0}.tippy-box[data-placement^=top]>.tippy-arrow:before{bottom:-7px;left:0;border-width:8px 8px 0;border-top-color:initial;transform-origin:center top}.tippy-box[data-placement^=bottom]>.tippy-arrow{top:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{top:-7px;left:0;border-width:0 8px 8px;border-bottom-color:initial;transform-origin:center bottom}.tippy-box[data-placement^=left]>.tippy-arrow{right:0}.tippy-box[data-placement^=left]>.tippy-arrow:before{border-width:8px 0 8px 8px;border-left-color:initial;right:-7px;transform-origin:center left}.tippy-box[data-placement^=right]>.tippy-arrow{left:0}.tippy-box[data-placement^=right]>.tippy-arrow:before{left:-7px;border-width:8px 8px 8px 0;border-right-color:initial;transform-origin:center right}.tippy-box[data-inertia][data-state=visible]{transition-timing-function:cubic-bezier(.54,1.5,.38,1.11)}.tippy-arrow{width:16px;height:16px;color:#333}.tippy-arrow:before{content:"";position:absolute;border-color:transparent;border-style:solid}.tippy-content{position:relative;padding:5px 9px;z-index:1}
.tippy-box[data-animation=scale][data-placement^=top]{transform-origin:bottom}.tippy-box[data-animation=scale][data-placement^=bottom]{transform-origin:top}.tippy-box[data-animation=scale][data-placement^=left]{transform-origin:right}.tippy-box[data-animation=scale][data-placement^=right]{transform-origin:left}.tippy-box[data-animation=scale][data-state=hidden]{transform:scale(.5);opacity:0}
@charset "UTF-8";
/* You can add global styles to this file, and also import other style files */
/* Use your own utility and font modules */
/* External CSS libraries (can only be @import, keep them after all @use) */
/* Tippy.js */
/* Spacing */
/* divider */
/* disable */
.level4-style {
  /* --------------------------------------
   * Field Variables
   * -------------------------------------- */
  --fieldRadius: 0.67em;
  --fieldHeight: 2.9em;
  --fieldLabelGap: 0.25em;
  --fieldBorderWidth: 0.084em;
  --fieldHoverBorderWidth: 0.084em;
  --fieldFocusBorderWidth: 0.165em;
  /* Field Colors */
  --fieldPlaceholderColor: var(--grayColor400);
  --fieldLabelColor: var(--grayColor500);
  --fieldHoverLabelColor: var(--accentColor600);
  --fieldTextColor: var(--grayColor900);
  --fieldHoverBorderColor: var(--accentColor500);
  --fieldFocusBorderColor: var(--accentColor500);
  --fieldMatHintColor: var(--grayColor500);
  --fieldBorderColor: var(--grayColor100);
  /* Disabled Field Styles */
  --fieldDisabledBgColor: var(--bgColor50);
  --fieldDisabledActiveBgColor: var(--bgColor100);
  --fieldDisabledLabelColor: var(--grayColor400);
  --fieldDisabledTextColor: var(--grayColor500);
  --fieldDisabledBorderColor: var(--grayColor100);
  --fieldDisabledBorderWidth: 0em;
  /* General Field Styling */
  --fieldLabelFontWeight: 400;
  --fieldTextFontWeight: 500;
  --fieldPlaceholderFontWeight: 500;
  --fieldMatHintFontWeight: 300;
  --fieldAffixIconBorderWidth: 0em;
  --fieldCurrencyInputBorderWidth: 0.084em;
  /* --------------------------------------
   * Dropdown Variables
   * -------------------------------------- */
  --dropdownBorderColor: var(--fieldBorderColor);
  --dropdownItemHoverTextColor: var(--accentColor800);
  --dropdownItemHoverBgColor: var(--accentColor50);
  --dropdownSelectedCheckMarkColor: transparent;
  --dropdownSelectedTextColor: var(--accentColor500);
  --dropdownSelectedCheckMarkVisibility: none;
  --dropdownSelectedBgColor: var(--accentColor50);
  --dropdownSelectedBgColor: var(--bgColor50);
  --dropdownItemTextColor: var(--grayColor600);
  --dropDownArrowColor: var(--grayColor400);
  /* Field Error States */
  --fieldErrorBorderColor: var(--grayColor100);
  --fieldErrorHoverBorderColor: var(--accentColor500);
  --fieldErrorFocusBorderColor: var(--accentColor500);
  --fieldHintErrorColor: var(--warnColor600);
  --fieldErrorLtrMsgAlignment: right;
  --fieldErrorRtlMsgAlignment: left;
  /* Field Affix Text */
  --fieldAffixTextBorderWidth: 0em;
  /* --------------------------------------
   * Button Variables
   * -------------------------------------- */
  /* -------------------- Button Styles -------------------- */
  /* General Button Styling */
  --buttonRadius: var(--fieldRadius);
  --buttonHeight: 2.67em;
  --buttonIconWidth: 2.67em;
  --buttonIconHeight: 2.67em;
  --buttonPadding: 0.5em 0.67em;
  /* --------------------------------------
  * Filled Button Variables
  * -------------------------------------- */
  /* Disabled Filled Button Styles */
  --buttonFilledDisabledBgColor: var(--grayColor50);
  --buttonFilledDisabledTextColor: var(--grayColor400);
  --buttonFilledDisabledBorderColor: var(--grayColor50);
  /* Primary */
  --buttonFilledPrimaryBgColor: var(--primaryColor500);
  --buttonFilledPrimaryTextColor: var(--grayColor10);
  --buttonFilledPrimaryBorderColor: var(--primaryColor500);
  --buttonFilledPrimaryBorderWidth: 0.084em;
  --buttonFilledPrimaryHoverBgColor: var(--primaryColor600);
  --buttonFilledPrimaryHoverBorderColor: var(--primaryColor600);
  --buttonFilledPrimaryHoverTextColor: var(--grayColor10);
  --buttonFilledPrimaryFocusBgColor: var(--primaryColor700);
  --buttonFilledPrimaryFocusBorderColor: var(--primaryColor700);
  --buttonFilledPrimaryFocusTextColor: var(--grayColor10);
  /* Accent */
  --buttonFilledAccentBgColor: var(--accentColor500);
  --buttonFilledAccentTextColor: var(--grayColor10);
  --buttonFilledAccentBorderColor: var(--accentColor500);
  --buttonFilledAccentBorderWidth: 0.084em;
  --buttonFilledAccentHoverBgColor: var(--accentColor600);
  --buttonFilledAccentHoverBorderColor: var(--accentColor600);
  --buttonFilledAccentHoverTextColor: var(--grayColor10);
  --buttonFilledAccentFocusBgColor: var(--accentColor700);
  --buttonFilledAccentFocusBorderColor: var(--accentColor700);
  --buttonFilledAccentFocusTextColor: var(--grayColor10);
  /* Warn */
  --buttonFilledWarnBgColor: var(--warnColor600);
  --buttonFilledWarnTextColor: var(--grayColor10);
  --buttonFilledWarnBorderColor: var(--warnColor600);
  --buttonFilledWarnBorderWidth: 0.084em;
  --buttonFilledWarnHoverBgColor: var(--warnColor600);
  --buttonFilledWarnHoverBorderColor: var(--warnColor600);
  --buttonFilledWarnHoverTextColor: var(--grayColor10);
  --buttonFilledWarnFocusBgColor: var(--warnColor600);
  --buttonFilledWarnFocusBorderColor: var(--warnColor600);
  --buttonFilledWarnFocusTextColor: var(--grayColor10);
  /* --------------------------------------
  * Stroked Button Variables
  * -------------------------------------- */
  /* Disabled */
  --buttonStrokedDisabledBgColor: transparent;
  --buttonStrokedDisabledTextColor: var(--grayColor400);
  --buttonStrokedDisabledBorderColor: var(--grayColor200);
  /* Primary */
  --buttonStrokedPrimaryBgColor: transparent;
  --buttonStrokedPrimaryTextColor: var(--grayColor800);
  --buttonStrokedPrimaryBorderColor: var(--grayColor300);
  --buttonStrokedPrimaryBorderWidth: 0.084em;
  --buttonStrokedPrimaryHoverBgColor: transparent;
  --buttonStrokedPrimaryHoverBorderColor: var(--primaryColor500);
  --buttonStrokedPrimaryHoverTextColor: var(--primaryColor500);
  --buttonStrokedPrimaryFocusBgColor: transparent;
  --buttonStrokedPrimaryFocusBorderColor: var(--primaryColor600);
  --buttonStrokedPrimaryFocusTextColor: var(--primaryColor600);
  /* Accent */
  --buttonStrokedAccentBgColor: transparent;
  --buttonStrokedAccentTextColor: var(--grayColor800);
  --buttonStrokedAccentBorderColor: var(--grayColor300);
  --buttonStrokedAccentBorderWidth: 0.084em;
  --buttonStrokedAccentHoverBgColor: transparent;
  --buttonStrokedAccentHoverBorderColor: var(--accentColor500);
  --buttonStrokedAccentHoverTextColor: var(--accentColor500);
  --buttonStrokedAccentFocusBgColor: transparent;
  --buttonStrokedAccentFocusBorderColor: var(--accentColor500);
  --buttonStrokedAccentFocusTextColor: var(--accentColor500);
  /* Warn */
  --buttonStrokedWarnBgColor: transparent;
  --buttonStrokedWarnTextColor: var(--grayColor800);
  --buttonStrokedWarnBorderColor: var(--grayColor300);
  --buttonStrokedWarnBorderWidth: 0.084em;
  --buttonStrokedWarnHoverBgColor: transparent;
  --buttonStrokedWarnHoverBorderColor: var(--warnColor500);
  --buttonStrokedWarnHoverTextColor: var(--warnColor500);
  --buttonStrokedWarnFocusBgColor: transparent;
  --buttonStrokedWarnFocusBorderColor: var(--warnColor600);
  --buttonStrokedWarnFocusTextColor: var(--warnColor600);
  /* --------------------------------------
  * Icon Button Variables
  * -------------------------------------- */
  /* Disabled */
  --buttonIconDisabledBgColor: transparent;
  --buttonIconDisabledTextColor: var(--grayColor400);
  --buttonIconDisabledBorderColor: var(--grayColor10);
  /* Primary */
  --buttonIconPrimaryBgColor: transparent;
  --buttonIconPrimaryTextColor: var(--primaryColor500);
  --buttonIconPrimaryBorderColor: var(--primaryColor500);
  --buttonIconPrimaryBorderWidth: 0em;
  --buttonIconPrimaryHoverBgColor: transparent;
  --buttonIconPrimaryHoverBorderColor: transparent;
  --buttonIconPrimaryHoverTextColor: var(--primaryColor500);
  --buttonIconPrimaryFocusBgColor: transparent;
  --buttonIconPrimaryFocusBorderColor: transparent;
  --buttonIconPrimaryFocusTextColor: var(--primaryColor500);
  /* Accent */
  --buttonIconAccentBgColor: transparent;
  --buttonIconAccentTextColor: var(--accentColor500);
  --buttonIconAccentBorderColor: var(--accentColor500);
  --buttonIconAccentBorderWidth: 0em;
  --buttonIconAccentHoverBgColor: transparent;
  --buttonIconAccentHoverBorderColor: transparent;
  --buttonIconAccentHoverTextColor: var(--accentColor500);
  --buttonIconAccentFocusBgColor: transparent;
  --buttonIconAccentFocusBorderColor: transparent;
  --buttonIconAccentFocusTextColor: var(--accentColor500);
  /* Warn */
  --buttonIconWarnBgColor: transparent;
  --buttonIconWarnTextColor: var(--warnColor600);
  --buttonIconWarnBorderColor: var(--warnColor600);
  --buttonIconWarnBorderWidth: 0em;
  --buttonIconWarnHoverBgColor: transparent;
  --buttonIconWarnHoverBorderColor: transparent;
  --buttonIconWarnHoverTextColor: var(--warnColor600);
  --buttonIconWarnFocusBgColor: transparent;
  --buttonIconWarnFocusBorderColor: transparent;
  --buttonIconWarnFocusTextColor: var(--warnColor600);
  /* --------------------------------------
  * Icon Stroked Button Variables
  * -------------------------------------- */
  /* Disabled */
  --buttonIconStrokedDisabledBgColor: var(--grayColor50);
  --buttonIconStrokedDisabledTextColor: var(--grayColor400);
  --buttonIconStrokedDisabledBorderColor: var(--grayColor50);
  /* Primary */
  --buttonIconStrokedPrimaryBgColor: var(--grayColor50);
  --buttonIconStrokedPrimaryTextColor: var(--primaryColor500);
  --buttonIconStrokedPrimaryBorderColor: var(--grayColor50);
  --buttonIconStrokedPrimaryBorderWidth: 0.084em;
  --buttonIconStrokedPrimaryHoverBgColor: var(--grayColor50);
  --buttonIconStrokedPrimaryHoverTextColor: var(--primaryColor500);
  --buttonIconStrokedPrimaryHoverBorderColor: var(--primaryColor500);
  --buttonIconStrokedPrimaryFocusBgColor: var(--primaryColor50);
  --buttonIconStrokedPrimaryFocusTextColor: var(--primaryColor500);
  --buttonIconStrokedPrimaryFocusBorderColor: var(--primaryColor500);
  /* Accent */
  --buttonIconStrokedAccentBgColor: var(--grayColor50);
  --buttonIconStrokedAccentTextColor: var(--accentColor500);
  --buttonIconStrokedAccentBorderColor: var(--grayColor50);
  --buttonIconStrokedAccentBorderWidth: 0.084em;
  --buttonIconStrokedAccentHoverBgColor: var(--grayColor50);
  --buttonIconStrokedAccentHoverTextColor: var(--accentColor500);
  --buttonIconStrokedAccentHoverBorderColor: var(--accentColor500);
  --buttonIconStrokedAccentFocusBgColor: var(--grayColor50);
  --buttonIconStrokedAccentFocusTextColor: var(--accentColor500);
  --buttonIconStrokedAccentFocusBorderColor: var(--accentColor500);
  /* Warn */
  --buttonIconStrokedWarnBgColor: var(--grayColor50);
  --buttonIconStrokedWarnTextColor: var(--warnColor600);
  --buttonIconStrokedWarnBorderColor: var(--grayColor50);
  --buttonIconStrokedWarnBorderWidth: 0.084em;
  --buttonIconStrokedWarnHoverBgColor: var(--grayColor50);
  --buttonIconStrokedWarnHoverTextColor: var(--warnColor600);
  --buttonIconStrokedWarnHoverBorderColor: var(--warnColor600);
  --buttonIconStrokedWarnFocusBgColor: var(--grayColor50);
  --buttonIconStrokedWarnFocusTextColor: var(--warnColor600);
  --buttonIconStrokedWarnFocusBorderColor: var(--warnColor600);
  /* --------------------------------------
   * Toggle Variables
   * -------------------------------------- */
  /* Outer Focus Border Border */
  --focusOuterOutline: none !important;
  /* No outer border */
  /* --------------------------------------
  * Toggle Variables
  * -------------------------------------- */
  /* Button Toggle */
  --toggleButtonPadding: 0.2em;
  --toggleButtonBgColor: var(--bgColor10);
  --toggleButtonUncheckedTextColor: var(--grayColor700);
  --toggleBorderRadius: 1.5em;
  --toggleButtonOuterBorderWidth: var(--fieldBorderWidth);
  --toggleButtonOuterBorder: var(--fieldBorderColor);
  --toggleButtonCheckedDisabledBgColor: var(--bgColor10);
  --toggleButtonHeight: 2.3em;
  /* Slide Toggle */
  --toggleBorderColor: var(--grayColor200);
  --toggleBorderRadius: 1.5em;
  --toggleSelectedBgColor: var(--accentColor500);
  --toggleSelectedHoverBgColor: var(--accentColor600);
  --toggleUnselectedBgColor: var(--bgColor200);
  --toggleInnerBgColor: var(--bgColor10);
  --toggleInnerBorderColor: var(--grayColor300);
  /* --------------------------------------
   * Checkbox Variables
   * -------------------------------------- */
  --checkboxBorderColor: var(--grayColor600);
  --checkboxDisabledCheckmarkColor: var(--grayColor300);
  --checkboxBgColor: var(--accentColor500);
  --checkboxOuterBorderRadius: 0em;
  --checkboxBorderWidth: 0.084em;
  --checkboxBorderRadius: 0.37em;
  /* --------------------------------------
  * Slider Variables
  * -------------------------------------- */
  --sliderActiveTrackBgColor: var(--accentColor500);
  --sliderThumbBgColor: var(--bgColor10);
  --sliderTrackBgColor: var(--accentColor50);
  --sliderThumbBorderWidth: 0.084em;
  --sliderTrackHeight: 0.64em;
  --sliderThumbBoxShadow: 0em 0.22em 0.3em 0em var(--grayColor200);
  --sliderThumbBorderColor: var(--grayColor100);
  --sliderTopLabelTextColor: var(--grayColor600);
  --sliderTopLabelBgColor: var(--accentColor500);
  --sliderTopLabelBorderWidth: 0.084em;
  --sliderTopLabelBoxShadow: 0.17em 0.33em 0.92em 0em rgba(0, 0, 0, 0.1);
  --sliderDisabledInactiveBgColor: var(--bgColor100);
  --sliderDisabledActiveBgColor: var(--bgColor200);
  /* --------------------------------------
  * Range Slider Variables
  * -------------------------------------- */
  --rangeSliderActiveTrackBgColor: var(--accentColor500);
  --rangeSliderThumbBgColor: var(--bgColor10);
  --rangeSliderTrackBgColor: var(--accentColor50);
  --rangeSliderThumbBorderColor: var(--grayColor100);
  --rangeSliderThumbBoxShadow: 0em 0.22em 0.3em 0em var(--grayColor200);
  --rangeSliderTopLabelTextColor: var(--grayColor1000);
  --rangeSliderTopLabelBgColor: var(--bgColor200);
  --rangeSliderTopLabelBorderWidth:0;
  --rangeSliderTopLabelBoxShadow:none;
  /* --------------------------------------
   * Radio Button Variables
   * -------------------------------------- */
  --radioBorderColor: var(--grayColor600);
  --radioOuterBgColor: var(--bgColor10);
  --radioInnerBgColor: var(--accentColor500);
  --radioTabsBorderColor: var(--grayColor100);
  /* --------------------------------------
   * Upload Variables
   * -------------------------------------- */
  --uploadBoxRadius: 1em;
  --uploadBorderStyle: solid;
  --uploadBorderWidth: 0.084em;
  --uploadBorderRadius: 0.67em;
  --uploadBorderColor: var(--grayColor100);
  --uploadIconPadding: 0.5em;
  --uploadIconBorderRadius: 0.67em;
  --uploadDisabledBorderColor: var(--grayColor50);
  --uploadDisabledBgColor: var(--bgColor50);
  --uploadBoxTitleTextColor: var(--grayColor500);
  --uploadBoxSubTitleTextColor: var(--grayColor500);
  --uploadBoxTitleDisabledTextColor: var(--grayColor400);
  --uploadIconBorderColor: var(--grayColor300);
  --uploadHoverBorderColor: var(--accentColor500);
  --uploadIconBorderStyle: solid;
  --uploadBoxActionTextColor: var(--accentColor500);
  /* -------------------- Snackbar Styles -------------------- */
  --snackbarBorderWidth: 0.11em;
  --snackbarBorderRadius: 0.7em;
  /* Error Snackbar */
  --errorBgColor: var(--bgColor10);
  --errorBorderColor: var(--warnColor500);
  --errorIconColor: var(--warnColor500);
  --errorTextColor: var(--grayColor1000);
  /* Success Snackbar */
  --successBgColor: var(--bgColor10);
  --successBorderColor: #12b76a;
  --successIconColor: #12b76a;
  --successTextColor: var(--grayColor1000);
  /* Warning Snackbar */
  --warnBgColor: var(--bgColor10);
  --warnBorderColor: #f79008;
  --warnIconColor: #f79008;
  --warnTextColor: var(--grayColor1000);
  /* Info Snackbar */
  --infoBgColor: var(--bgColor10);
  --infoBorderColor: #0fa4ec;
  --infoIconColor: #0fa4ec;
  --infoTextColor: var(--grayColor1000);
  /* -------------------- Tooltip Styles -------------------- */
  --tooltipColor: rgb(255, 247, 247);
  --tooltipTextColor: #ffffff;
  --tooltipFontSize: 0.89em;
  --tooltipBgColor: #515151;
  --tooltipArrowBgColor: transparent;
  --tooltipBorderRadius: 0.6em;
  /* -------------------- ag-Grid Styles -------------------- */
  --agGridPinnedBorder: 0em;
  --agGridHeaderBg: var(--bgColor10);
  --agGridHeaderFontSize: 1.08em;
  --agGridHeaderLabelFontWeight: 500;
  --agGridHeaderToolBg: var(--grayColor50);
  --agGridHeaderPadding:0em 1.15em;
  --agGridHeaderBorderBottomColor: var(--grayColor50);
  --agGridHeaderBorderTopColor: transparent;
  --agGridBorderBottomColor: var(--grayColor50);
  --agGridHeaderColumnColor: var(--grayColor700);
  --agGridHeaderToolHeight: 4em;
  --agGridHeaderToolPadding: 0.8em;
  --agGridHeaderSearchTools: 0.3em;
  --agGridMenuIconColor: var(--grayColor600);
  --agGridRowHoverColor: var(--bgColor50);
  /* -------------------- Tab Styles -------------------- */
  --tabHeight: 4.31em;
  --tabWidth: 12.39em;
  --tabBottomBorderWidth: 0.084em;
  --tabTitleMargin: 0em;
  --tabBgColor: var(--bgColor10);
  /* -------------------- Radius Styles -------------------- */
  --dialogRadius: 1em;
  --chipRadius: 1em;
  --queryBuilderRadius: 1em;
  --iconSelectBoxRadius: var(--fieldRadius);
  --cardRadius: 1.6em;
  /* -------------------- Builder Config -------------------- */
  --configCardRadius: 1em;
  --configHeaderMargin: 0em 0em 1.34em 0em;
  --configHeaderBgColor: var(--bgColor10);
  --configHeaderBorderWidth: 0.06em;
  /* -------------------- App Container -------------------- */
  --appContainerGap: 2em;
  --appContainerRadius: 1em;
  /* -------------------- Radio Tabs -------------------- */
  --radioTabsTextColor: var(--accentColor500);
  --radioOuterBorderColor: var(--accentColor500);
  /* --------------------------------------
  * Stepper Variables
  * -------------------------------------- */
  --stepperLabelFontWeight: 400;
  --stepperConnectorLineWidth: var(--fieldBorderWidth);
  --stepperConnectorLineColor: var(--grayColor400);
  --stepperPreviousConnectorLineColor: var(--accentColor500);
  --stepperNextStepBgColor: var(--bgColor10);
  --stepperNextStepBorderColor: var(--grayColor400);
  --stepperNextStepTextColor: var(--grayColor600);
  --stepperNextLabelColor: var(--grayColor700);
  --stepperNextDescriptionColor: var(--grayColor700);
  --stepperCurrentStepBgColor: var(--accentColor500);
  --stepperCurrentStepBorderColor:var(--accentColor500);
  --stepperCurrentStepTextColor: var(--grayColor10);
  --stepperCurrentLabelColor: var(--accentColor500);
  --stepperCurrentDescriptionColor: var(--accentColor500);
  --stepperPreviousStepBgColor: var(--accentColor500);
  --stepperPreviousStepBorderColor:var(--accentColor500);
  --stepperPreviousStepTextColor: var(--grayColor10);
  --stepperPreviousLabelColor: var(--accentColor500);
  --stepperPreviousDescriptionColor: var(--accentColor500);
  /* -------------------- Date Picker  -------------------- */
  --datePickerBorderColor: var(--grayColor100);
  --datePickerHeaderDateBorderColor: var(--grayColor100);
  --datePickerSelectedCellBorderRadius: 2em;
  --datePickerCellInRangeBgColor: var(--bgColor50);
  --datePickerCellInRangeHoverBgColor: var(--bgColor100);
  --datePickerSelectedCellColor:black;
  --datePickerSelectedCellBgColor:var(--accentColor50);
  --datePickerTodayCellBgColor: var(--accentColor50);
  --datePickerSelectedRangeCellBgColor:var(--accentColor500);
  --datePickerSelectedRangeCellColor:var(--grayColor10);
  --datePickerCellRangeFromBorderRadius: 2em;
  --datePickerCellSpacing: 0em 0.3em;
  --datePickerCalendarHeight: 27em;
  /* -------------------- Splitview  -------------------- */
  --splitviewSelectedCardBorderColor: var(--accentColor600);
  --splitviewSelectedCardBoxShadow: none;
  /* -------------------- Breadcrumbs -------------------- */
  --breadCrumbBreadColor: var(--grayColor500);
  --breadCrumbRecentBreadColor: var(--grayColor1000);
  --breadCrumbIconColor: var(--grayColor500);
  --breadCrumbRecentIconColor: var(--grayColor1000);
}

.template13-style {
  /* --------------------------------------
  * Field Variables

  * -------------------------------------- */
  --fieldRadius: 0.5em;
  --fieldHeight: 2.9em;
  --fieldLabelGap: 0.25em;
  --fieldBorderWidth: 0.084em;
  --fieldHoverBorderWidth: 0.084em;
  --fieldFocusBorderWidth: 0.165em;
  /* Field Colors */
  --fieldPlaceholderColor: var(--grayColor400);
  --fieldLabelColor: var(--grayColor700);
  --fieldHoverLabelColor: var(--grayColor700);
  --fieldTextColor: var(--grayColor900);
  --fieldHoverBorderColor: var(--accentColor500);
  --fieldFocusBorderColor: var(--accentColor500);
  --fieldMatHintColor: var(--grayColor600);
  --fieldBorderColor: var(--grayColor300);
  /* Disabled Field Styles */
  --fieldDisabledBgColor: var(--bgColor50);
  --fieldDisabledActiveBgColor: var(--bgColor300);
  --fieldDisabledLabelColor: var(--grayColor700);
  --fieldDisabledTextColor: var(--grayColor400);
  --fieldDisabledBorderColor: var(--grayColor300);
  --fieldDisabledBorderWidth: var(--fieldBorderWidth);
  /* General Field Styling */
  --fieldLabelFontWeight: 500;
  --fieldTextFontWeight: 400;
  --fieldPlaceholderFontWeight: 400;
  --fieldMatHintFontWeight: 400;
  --fieldAffixIconBorderWidth: 0em;
  --fieldCurrencyInputBorderWidth: 0.084em;
  /* Outer Focus Border Border */
  --focusOuterOutline:0px 0px 0px 2px var(--grayColor10), 0px 0px 0px 4px var(--grayColor300);
  /* Field Error States */
  --fieldErrorBorderColor: var(--warnColor300);
  --fieldErrorHoverBorderColor: var(--warnColor500);
  --fieldErrorFocusBorderColor: var(--warnColor500);
  --fieldHintErrorColor: var(--warnColor600);
  --fieldErrorLtrMsgAlignment: left;
  --fieldErrorRtlMsgAlignment: right;
  /* Field Affix Text */
  --fieldAffixTextBorderWidth: 0.084em;
  /* --------------------------------------
  * Dropdown Variables
  * -------------------------------------- */
  --dropdownBorderColor: var(--grayColor200);
  --dropdownItemHoverTextColor: var(--grayColor900);
  --dropdownItemHoverBgColor: var(--bgColor50);
  --dropdownSelectedCheckMarkColor: var(--accentColor500);
  --dropdownSelectedTextColor: var(--grayColor900);
  --dropdownSelectedCheckMarkVisibility: block;
  --dropdownSelectedBgColor: var(--bgColor100);
  --dropdownItemTextColor: var(--grayColor900);
  --dropDownArrowColor: var(--grayColor500);
  /* --------------------------------------
  * Button Variables
  * -------------------------------------- */
  /* -------------------- Button Styles -------------------- */
  /* General Button Styling */
  --buttonRadius: 2em;
  --buttonHeight: 2.75em;
  --buttonIconWidth: 2.75em;
  --buttonIconHeight: 2.75em;
  --buttonPadding: 0.63em 1em;
  /* --------------------------------------
  * Filled Button Variables
  * -------------------------------------- */
  /* Disabled */
  --buttonFilledDisabledBgColor: var(--bgColor100);
  --buttonFilledDisabledTextColor: var(--grayColor400);
  --buttonFilledDisabledBorderColor: var(--grayColor200);
  /* Primary */
  --buttonFilledPrimaryBgColor: var(--primaryColor500);
  --buttonFilledPrimaryTextColor: var(--grayColor10);
  --buttonFilledPrimaryBorderColor: var(--primaryColor500);
  --buttonFilledPrimaryBorderWidth: 0.084em;
  --buttonFilledPrimaryHoverBgColor: var(--primaryColor600);
  --buttonFilledPrimaryHoverTextColor: var(--grayColor10);
  --buttonFilledPrimaryHoverBorderColor: var(--primaryColor600);
  --buttonFilledPrimaryFocusBgColor: var(--primaryColor700);
  --buttonFilledPrimaryFocusTextColor: var(--grayColor10);
  --buttonFilledPrimaryFocusBorderColor: var(--primaryColor700);
  /* Accent */
  --buttonFilledAccentBgColor: var(--accentColor500);
  --buttonFilledAccentTextColor: var(--grayColor10);
  --buttonFilledAccentBorderColor: var(--accentColor500);
  --buttonFilledAccentBorderWidth: 0.084em;
  --buttonFilledAccentHoverBgColor: var(--accentColor600);
  --buttonFilledAccentHoverTextColor: var(--grayColor10);
  --buttonFilledAccentHoverBorderColor: var(--accentColor600);
  --buttonFilledAccentFocusBgColor: var(--accentColor500);
  --buttonFilledAccentFocusTextColor: var(--grayColor10);
  --buttonFilledAccentFocusBorderColor: var(--accentColor500);
  /* Warn */
  --buttonFilledWarnBgColor: var(--warnColor600);
  --buttonFilledWarnTextColor: var(--grayColor10);
  --buttonFilledWarnBorderColor: var(--warnColor600);
  --buttonFilledWarnBorderWidth: 0.084em;
  --buttonFilledWarnHoverBgColor: var(--warnColor700);
  --buttonFilledWarnHoverTextColor: var(--grayColor10);
  --buttonFilledWarnHoverBorderColor: var(--warnColor700);
  --buttonFilledWarnFocusBgColor: var(--warnColor600);
  --buttonFilledWarnFocusTextColor: var(--grayColor10);
  --buttonFilledWarnFocusBorderColor: var(--warnColor600);
  /* --------------------------------------
  * Stroked Button Variables
  * -------------------------------------- */
  /* Disabled */
  --buttonStrokedDisabledBgColor: var(--grayColor10);
  --buttonStrokedDisabledTextColor: var(--grayColor400);
  --buttonStrokedDisabledBorderColor: var(--grayColor200);
  /* Primary */
  --buttonStrokedPrimaryBgColor: transparent;
  --buttonStrokedPrimaryTextColor: var(--grayColor700);
  --buttonStrokedPrimaryBorderColor: var(--grayColor400);
  --buttonStrokedPrimaryBorderWidth: 0.084em;
  --buttonStrokedPrimaryHoverBgColor: transparent;
  --buttonStrokedPrimaryHoverTextColor: var(--primaryColor500);
  --buttonStrokedPrimaryHoverBorderColor: var(--primaryColor500);
  --buttonStrokedPrimaryFocusBgColor: transparent;
  --buttonStrokedPrimaryFocusTextColor: var(--primaryColor600);
  --buttonStrokedPrimaryFocusBorderColor: var(--primaryColor600);
  /* Accent */
  --buttonStrokedAccentBgColor: transparent;
  --buttonStrokedAccentTextColor: var(--grayColor700);
  --buttonStrokedAccentBorderColor: var(--grayColor400);
  --buttonStrokedAccentBorderWidth: 0.084em;
  --buttonStrokedAccentHoverBgColor: transparent;
  --buttonStrokedAccentHoverTextColor: var(--accentColor500);
  --buttonStrokedAccentHoverBorderColor: var(--accentColor500);
  --buttonStrokedAccentFocusBgColor: transparent;
  --buttonStrokedAccentFocusTextColor: var(--accentColor600);
  --buttonStrokedAccentFocusBorderColor: var(--accentColor600);
  /* Warn */
  --buttonStrokedWarnBgColor: transparent;
  --buttonStrokedWarnTextColor: var(--grayColor700);
  --buttonStrokedWarnBorderColor: var(--grayColor400);
  --buttonStrokedWarnBorderWidth: 0.084em;
  --buttonStrokedWarnHoverBgColor: transparent;
  --buttonStrokedWarnHoverTextColor: var(--warnColor500);
  --buttonStrokedWarnHoverBorderColor: var(--warnColor500);
  --buttonStrokedWarnFocusBgColor: transparent;
  --buttonStrokedWarnFocusTextColor: var(--warnColor600);
  --buttonStrokedWarnFocusBorderColor: var(--warnColor600);
  /* --------------------------------------
  * Icon Button Variables
  * -------------------------------------- */
  /* Disabled */
  --buttonIconDisabledBgColor: transparent;
  --buttonIconDisabledTextColor: var(--grayColor400);
  --buttonIconDisabledBorderColor: var(--grayColor10);
  /* Primary */
  --buttonIconPrimaryBgColor: transparent;
  --buttonIconPrimaryTextColor: var(--primaryColor500);
  --buttonIconPrimaryBorderColor: var(--primaryColor500);
  --buttonIconPrimaryBorderWidth: 0em;
  --buttonIconPrimaryHoverBgColor: transparent;
  --buttonIconPrimaryHoverBorderColor: transparent;
  --buttonIconPrimaryHoverTextColor: var(--primaryColor500);
  --buttonIconPrimaryFocusBgColor: transparent;
  --buttonIconPrimaryFocusBorderColor: transparent;
  --buttonIconPrimaryFocusTextColor: var(--primaryColor500);
  /* Accent */
  --buttonIconAccentBgColor: transparent;
  --buttonIconAccentTextColor: var(--accentColor500);
  --buttonIconAccentBorderColor: transparent;
  --buttonIconAccentBorderWidth: 0;
  --buttonIconAccentHoverBgColor: transparent;
  --buttonIconAccentHoverBorderColor: transparent;
  --buttonIconAccentHoverTextColor: var(--accentColor500);
  --buttonIconAccentFocusBgColor: transparent;
  --buttonIconAccentFocusBorderColor: transparent;
  --buttonIconAccentFocusTextColor: var(--accentColor500);
  /* Warn */
  --buttonIconWarnBgColor: transparent;
  --buttonIconWarnTextColor: var(--warnColor600);
  --buttonIconWarnBorderColor: var(--warnColor600);
  --buttonIconWarnBorderWidth: 0em;
  --buttonIconWarnHoverBgColor: transparent;
  --buttonIconWarnHoverBorderColor: transparent;
  --buttonIconWarnHoverTextColor: var(--warnColor600);
  --buttonIconWarnFocusBgColor: transparent;
  --buttonIconWarnFocusBorderColor: transparent;
  --buttonIconWarnFocusTextColor: var(--warnColor600);
  /* --------------------------------------
  * Icon Stroked Button Variables
  * -------------------------------------- */
  /* Disabled */
  --buttonIconStrokedDisabledBgColor: var(--grayColor50);
  --buttonIconStrokedDisabledTextColor: var(--grayColor400);
  --buttonIconStrokedDisabledBorderColor: var(--grayColor100);
  /* Primary */
  --buttonIconStrokedPrimaryBgColor: transparent;
  --buttonIconStrokedPrimaryTextColor: var(--grayColor800);
  --buttonIconStrokedPrimaryBorderColor: var(--grayColor50);
  --buttonIconStrokedPrimaryBorderWidth: 0.084em;
  --buttonIconStrokedPrimaryHoverBgColor: var(--grayColor50);
  --buttonIconStrokedPrimaryHoverTextColor: var(--primaryColor500);
  --buttonIconStrokedPrimaryHoverBorderColor: var(--primaryColor500);
  --buttonIconStrokedPrimaryFocusBgColor: var(--primaryColor50);
  --buttonIconStrokedPrimaryFocusTextColor: var(--primaryColor500);
  --buttonIconStrokedPrimaryFocusBorderColor: var(--primaryColor500);
  /* Accent */
  --buttonIconStrokedAccentBgColor: var(--bgColor50);
  --buttonIconStrokedAccentTextColor: var(--accentColor500);
  --buttonIconStrokedAccentBorderColor: transparent;
  --buttonIconStrokedAccentBorderWidth: 0.084em;
  --buttonIconStrokedAccentHoverBgColor: var(--bgColor50);
  --buttonIconStrokedAccentHoverBorderColor: var(--accentColor500);
  --buttonIconStrokedAccentHoverTextColor: var(--accentColor500);
  --buttonIconStrokedAccentFocusBgColor: var(--bgColor50);
  --buttonIconStrokedAccentFocusBorderColor: var(--accentColor500);
  --buttonIconStrokedAccentFocusTextColor: var(--accentColor500);
  /* Warn */
  --buttonIconStrokedWarnBgColor: transparent;
  --buttonIconStrokedWarnTextColor: var(--warnColor600);
  --buttonIconStrokedWarnBorderColor: var(--grayColor50);
  --buttonIconStrokedWarnBorderWidth: 0.084em;
  --buttonIconStrokedWarnHoverBgColor: var(--grayColor50);
  --buttonIconStrokedWarnHoverBorderColor: var(--warnColor600);
  --buttonIconStrokedWarnHoverTextColor: var(--warnColor600);
  --buttonIconStrokedWarnFocusBgColor: var(--grayColor50);
  --buttonIconStrokedWarnFocusTextColor: var(--warnColor600);
  --buttonIconStrokedWarnFocusBorderColor: var(--warnColor600);
  /* --------------------------------------
  * Toggle Variables
  * -------------------------------------- */
  /* Button Toggle */
  --toggleButtonPadding: 0.28em;
  --toggleButtonBgColor: var(--bgColor200);
  --toggleButtonUncheckedTextColor: var(--grayColor700);
  --toggleButtonOuterBorderWidth: 0px;
  --toggleButtonOuterBorder: var(--fieldBorderColor);
  --toggleButtonCheckedDisabledBgColor: var(--bgColor10);
  --toggleButtonHeight: 2.3em;
  /* Slide Toggle */
  --toggleBorderColor: var(--grayColor200);
  --toggleBorderRadius: 1.5em;
  --toggleSelectedBgColor: var(--accentColor500);
  --toggleSelectedHoverBgColor: var(--accentColor600);
  --toggleUnselectedBgColor: var(--bgColor200);
  --toggleInnerBgColor: var(--bgColor10);
  --toggleInnerBorderColor: var(--fieldDisabledBorderColor);
  /* --------------------------------------
  * Checkbox Variables
  * -------------------------------------- */
  --checkboxBorderColor: var(--grayColor300);
  --checkboxDisabledCheckmarkColor: var(--grayColor300);
  --checkboxOuterBorderRadius:0.2em;
  --checkboxBorderWidth: 0.084em;
  --checkboxBorderRadius: 0.37em;
  --checkboxBgColor: var(--accentColor500);
  /* --------------------------------------
  * Slider Variables
  * -------------------------------------- */
  --sliderActiveTrackBgColor: var(--accentColor400);
  --sliderThumbBgColor: var(--bgColor10);
  --sliderTrackBgColor:var(--bgColor200);
  --sliderThumbBorderWidth: 0.084em;
  --sliderTrackHeight: 0.64em;
  --sliderThumbBoxShadow:0em 0.22em 0.3em 0em var(--grayColor200);
  --sliderThumbBorderColor: var(--bgColor300);
  --sliderTopLabelTextColor: var(--grayColor900);
  --sliderTopLabelBgColor: var(--bgColor200);
  --sliderTopLabelBorderWidth: 0.084em;
  --sliderTopLabelBoxShadow: 0.17em 0.33em 0.92em 0em rgba(0, 0, 0, 0.1);
  --sliderDisabledInactiveBgColor: var(--bgColor100);
  --sliderDisabledActiveBgColor: var(--bgColor200);
  /* --------------------------------------
  * Range Slider Variables
  * -------------------------------------- */
  --rangeSliderActiveTrackBgColor: var(--accentColor400);
  --rangeSliderThumbBgColor: var(--bgColor10);
  --rangeSliderTrackBgColor: var(--bgColor200);
  --rangeSliderThumbBorderColor: var(--grayColor300);
  --rangeSliderThumbBoxShadow:0em 0.22em 0.3em 0em var(--grayColor200);
  --rangeSliderTopLabelTextColor:var(--grayColor900);
  --rangeSliderTopLabelBgColor: var(--bgColor200);
  --rangeSliderTopLabelBorderWidth:0;
  --rangeSliderTopLabelBoxShadow:none;
  /* --------------------------------------
  * Radio Button Variables
  * -------------------------------------- */
  --radioBorderColor: var(--grayColor300);
  --radioOuterBgColor: var(--accentColor500);
  --radioInnerBgColor: var(--bgColor10);
  --radioTabsBorderColor: var(--grayColor200);
  /* --------------------------------------
  * Upload Variables
  * -------------------------------------- */
  --uploadBoxRadius: 1em;
  --uploadBorderStyle: solid;
  --uploadBorderWidth: 0.084em;
  --uploadBorderRadius: 0.8em;
  --uploadBorderColor: var(--grayColor200);
  --uploadIconPadding: 0.8em;
  --uploadIconBorderRadius: 0.8em;
  --uploadIconBorderColor: var(--grayColor200);
  --uploadBoxActionTextColor: var(--grayColor700);
  --uploadBoxTitleTextColor: var(--grayColor600);
  --uploadBoxSubTitleTextColor: var(--grayColor600);
  --uploadHoverBorderColor: var(--accentColor500);
  --uploadDisabledBorderColor: var(--grayColor200);
  --uploadDisabledBgColor: var(--bgColor50);
  --uploadBoxTitleDisabledTextColor: var(--grayColor400);
  --uploadIconBorderStyle: solid;
  /* -------------------- Snackbar Styles -------------------- */
  --snackbarBorderWidth: 0.11em;
  --snackbarBorderRadius: 0.7em;
  /* Error Snackbar */
  --errorBgColor: var(--bgColor10);
  --errorBorderColor: var(--warnColor500);
  --errorIconColor: var(--warnColor500);
  --errorTextColor: #252525;
  /* Success Snackbar */
  --successBgColor: var(--bgColor10);
  --successBorderColor: #12b76a;
  --successIconColor: #12b76a;
  --successTextColor: #252525;
  /* Warning Snackbar */
  --warnBgColor: var(--bgColor10);
  --warnBorderColor: #f79008;
  --warnIconColor: #f79008;
  --warnTextColor: #252525;
  /* Info Snackbar */
  --infoBgColor: var(--bgColor10);
  --infoBorderColor: #0fa4ec;
  --infoIconColor: #0fa4ec;
  --infoTextColor: #252525;
  /* -------------------- Tooltip Styles -------------------- */
  --tooltipColor: #D7D3D0;
  --tooltipTextColor: #ffffff;
  --tooltipFontSize: 0.89em;
  --tooltipBgColor: #171412;
  --tooltipArrowBgColor: #171412;
  --tooltipBorderRadius: 0.6em;
  /* -------------------- ag-Grid Styles -------------------- */
  --agGridPinnedBorder: 0em;
  --agGridHeaderBg: var(--bgColor50);
  --agGridHeaderFontSize: 1em;
  --agGridHeaderLabelFontWeight: 600;
  --agGridHeaderToolBg: var(--bgColor10);
  --agGridHeaderPadding:0em 1.15em 0em 0.2em;
  --agGridHeaderBorderBottomColor: var(--grayColor200);
  --agGridHeaderBorderTopColor: var(--grayColor200);
  --agGridBorderBottomColor: var(--grayColor200);
  --agGridHeaderToolHeight: 4em;
  --agGridHeaderToolPadding: 0.8em;
  --agGridHeaderColumnColor: var(--grayColor500);
  --agGridHeaderSearchTools: 0.3em;
  --agGridMenuIconColor: var(--grayColor400);
  --agGridRowHoverColor: var(--grayColor50);
  /* -------------------- Tab Styles -------------------- */
  --tabHeight: 4.31em;
  --tabWidth: 12.39em;
  --tabBottomBorderWidth: 0.084em;
  --tabTitleMargin: 0em;
  --tabBgColor: var(--bgColor10);
  /* -------------------- Radius Styles -------------------- */
  --dialogRadius: 1em;
  --chipRadius: 1em;
  --queryBuilderRadius: 1em;
  --iconSelectBoxRadius: 1em;
  --cardRadius: 1.6em;
  /* -------------------- Builder Config -------------------- */
  --configCardRadius: 1em;
  --configHeaderMargin: 0em 0em 1.34em 0em;
  --configHeaderBgColor: var(--bgColor10);
  --configHeaderBorderWidth: 0.084em;
  /* -------------------- App Container -------------------- */
  --appContainerGap: 2em;
  --appContainerRadius: 1em;
  /* -------------------- Radio Tabs -------------------- */
  --radioTabsTextColor: var(--accentColor500);
  --radioOuterBorderColor: var(--accentColor500);
  /* --------------------------------------
  * Stepper Variables
  * -------------------------------------- */
  --stepperLabelFontWeight: 500;
  --stepperConnectorLineWidth: 0.16em;
  --stepperConnectorLineColor:var(--grayColor200);
  --stepperPreviousConnectorLineColor: var(--accentColor500);
  --stepperNextStepBgColor:var(--bgColor50);
  --stepperNextStepBorderColor:var(--grayColor300);
  --stepperNextStepTextColor:var(--grayColor300);
  --stepperNextLabelColor:var(--grayColor700);
  --stepperNextDescriptionColor: var(--grayColor600);
  --stepperCurrentStepBgColor:var(--accentColor500);
  --stepperCurrentStepBorderColor:var(--accentColor500);
  --stepperCurrentStepTextColor:var(--grayColor10);
  --stepperCurrentLabelColor:var(--accentColor600);
  --stepperCurrentDescriptionColor: var(--accentColor500);
  --stepperPreviousStepBgColor:var(--accentColor500);
  --stepperPreviousStepBorderColor:var(--accentColor500);
  --stepperPreviousStepTextColor:var(--grayColor10);
  --stepperPreviousLabelColor:var(--grayColor700);
  --stepperPreviousDescriptionColor: var(--grayColor600);
  /* -------------------- Date Picker  -------------------- */
  --datePickerBorderColor: var(--grayColor200);
  --datePickerHeaderDateBorderColor: var(--grayColor300);
  --datePickerSelectedCellBorderRadius: 2em;
  --datePickerCellInRangeBgColor: var(--bgColor100);
  --datePickerCellInRangeHoverBgColor: var(--bgColor50);
  --datePickerSelectedCellColor:black;
  --datePickerSelectedCellBgColor:var(--accentColor50);
  --datePickerTodayCellBgColor: var(--accentColor50);
  --datePickerSelectedRangeCellBgColor:var(--accentColor500);
  --datePickerSelectedRangeCellColor:var(--grayColor10);
  --datePickerCellRangeFromBorderRadius: 2em;
  --datePickerCellSpacing: 0em 0.3em;
  --datePickerCalendarHeight: 27em;
  /* -------------------- Splitview -------------------- */
  --splitviewSelectedCardBorderColor: var(--accentColor600);
  --splitviewSelectedCardBoxShadow: none;
  /* -------------------- Breadcrumbs -------------------- */
  --breadCrumbBreadColor: var(--grayColor600);
  --breadCrumbRecentBreadColor: var(--grayColor700);
  --breadCrumbIconColor: var(--grayColor300);
  --breadCrumbRecentIconColor: var(--grayColor300);
}

:root {
  --direction: ltr;
  --fontFamily: "Poppins" ;
}

.font-normal {
  font-style: normal;
}

.font-italic {
  font-style: italic;
}

.font-thin {
  font-weight: 100;
}

.font-light {
  font-weight: 300;
}

.font-regular {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-bold {
  font-weight: 700;
}

.pointer-cursor {
  cursor: pointer;
}

.overflow-auto {
  overflow: auto;
}

.none-outlined {
  outline: none;
}

.box-sizing {
  box-sizing: border-box;
}

.border-radius {
  border-radius: 0.31em;
}

.border-transparent {
  border: 0.09em solid transparent;
}

.box-shadow {
  box-shadow: 0 0 0.33em 0 #c9c9c9;
}

.width-100vw {
  width: 100vw;
}

.height-100vh {
  height: 100vh;
}

.width-100pct {
  width: 100%;
}

.height-100pct {
  height: 100%;
}

.padding-0 {
  padding: em(0);
}

.padding-1 {
  padding: em(1);
}

.padding-2 {
  padding: em(2);
}

.padding-4 {
  padding: em(4);
}

.padding-5 {
  padding: em(5);
}

.padding-6 {
  padding: em(6);
}

.padding-8 {
  padding: em(8);
}

.padding-10 {
  padding: em(10);
}

.padding-12 {
  padding: em(12);
}

.padding-14 {
  padding: em(14);
}

.padding-16 {
  padding: em(16);
}

.padding-20 {
  padding: em(20);
}

.padding-24 {
  padding: em(24);
}

.padding-32 {
  padding: em(32);
}

.padding-48 {
  padding: em(48);
}

.padding-64 {
  padding: em(64);
}

.padding-128 {
  padding: em(128);
}

.padding-right-0 {
  padding-right: em(0);
}

.padding-right-1 {
  padding-right: em(1);
}

.padding-right-2 {
  padding-right: em(2);
}

.padding-right-4 {
  padding-right: em(4);
}

.padding-right-5 {
  padding-right: em(5);
}

.padding-right-6 {
  padding-right: em(6);
}

.padding-right-8 {
  padding-right: em(8);
}

.padding-right-10 {
  padding-right: em(10);
}

.padding-right-12 {
  padding-right: em(12);
}

.padding-right-14 {
  padding-right: em(14);
}

.padding-right-16 {
  padding-right: em(16);
}

.padding-right-20 {
  padding-right: em(20);
}

.padding-right-24 {
  padding-right: em(24);
}

.padding-right-32 {
  padding-right: em(32);
}

.padding-right-48 {
  padding-right: em(48);
}

.padding-right-64 {
  padding-right: em(64);
}

.padding-right-128 {
  padding-right: em(128);
}

.padding-left-0 {
  padding-left: em(0);
}

.padding-left-1 {
  padding-left: em(1);
}

.padding-left-2 {
  padding-left: em(2);
}

.padding-left-4 {
  padding-left: em(4);
}

.padding-left-5 {
  padding-left: em(5);
}

.padding-left-6 {
  padding-left: em(6);
}

.padding-left-8 {
  padding-left: em(8);
}

.padding-left-10 {
  padding-left: em(10);
}

.padding-left-12 {
  padding-left: em(12);
}

.padding-left-14 {
  padding-left: em(14);
}

.padding-left-16 {
  padding-left: em(16);
}

.padding-left-20 {
  padding-left: em(20);
}

.padding-left-24 {
  padding-left: em(24);
}

.padding-left-32 {
  padding-left: em(32);
}

.padding-left-48 {
  padding-left: em(48);
}

.padding-left-64 {
  padding-left: em(64);
}

.padding-left-128 {
  padding-left: em(128);
}

.padding-top-0 {
  padding-top: em(0);
}

.padding-top-1 {
  padding-top: em(1);
}

.padding-top-2 {
  padding-top: em(2);
}

.padding-top-4 {
  padding-top: em(4);
}

.padding-top-5 {
  padding-top: em(5);
}

.padding-top-6 {
  padding-top: em(6);
}

.padding-top-8 {
  padding-top: em(8);
}

.padding-top-10 {
  padding-top: em(10);
}

.padding-top-12 {
  padding-top: em(12);
}

.padding-top-14 {
  padding-top: em(14);
}

.padding-top-16 {
  padding-top: em(16);
}

.padding-top-20 {
  padding-top: em(20);
}

.padding-top-24 {
  padding-top: em(24);
}

.padding-top-32 {
  padding-top: em(32);
}

.padding-top-48 {
  padding-top: em(48);
}

.padding-top-64 {
  padding-top: em(64);
}

.padding-top-128 {
  padding-top: em(128);
}

.padding-bottom-0 {
  padding-bottom: em(0);
}

.padding-bottom-1 {
  padding-bottom: em(1);
}

.padding-bottom-2 {
  padding-bottom: em(2);
}

.padding-bottom-4 {
  padding-bottom: em(4);
}

.padding-bottom-5 {
  padding-bottom: em(5);
}

.padding-bottom-6 {
  padding-bottom: em(6);
}

.padding-bottom-8 {
  padding-bottom: em(8);
}

.padding-bottom-10 {
  padding-bottom: em(10);
}

.padding-bottom-12 {
  padding-bottom: em(12);
}

.padding-bottom-14 {
  padding-bottom: em(14);
}

.padding-bottom-16 {
  padding-bottom: em(16);
}

.padding-bottom-20 {
  padding-bottom: em(20);
}

.padding-bottom-24 {
  padding-bottom: em(24);
}

.padding-bottom-32 {
  padding-bottom: em(32);
}

.padding-bottom-48 {
  padding-bottom: em(48);
}

.padding-bottom-64 {
  padding-bottom: em(64);
}

.padding-bottom-128 {
  padding-bottom: em(128);
}

.margin-0 {
  margin: em(0);
}

.margin-1 {
  margin: em(1);
}

.margin-2 {
  margin: em(2);
}

.margin-4 {
  margin: em(4);
}

.margin-5 {
  margin: em(5);
}

.margin-6 {
  margin: em(6);
}

.margin-8 {
  margin: em(8);
}

.margin-10 {
  margin: em(10);
}

.margin-12 {
  margin: em(12);
}

.margin-14 {
  margin: em(14);
}

.margin-16 {
  margin: em(16);
}

.margin-20 {
  margin: em(20);
}

.margin-24 {
  margin: em(24);
}

.margin-32 {
  margin: em(32);
}

.margin-48 {
  margin: em(48);
}

.margin-64 {
  margin: em(64);
}

.margin-128 {
  margin: em(128);
}

.margin-right-0 {
  margin-right: em(0);
}

.margin-right-1 {
  margin-right: em(1);
}

.margin-right-2 {
  margin-right: em(2);
}

.margin-right-4 {
  margin-right: em(4);
}

.margin-right-5 {
  margin-right: em(5);
}

.margin-right-6 {
  margin-right: em(6);
}

.margin-right-8 {
  margin-right: em(8);
}

.margin-right-10 {
  margin-right: em(10);
}

.margin-right-12 {
  margin-right: em(12);
}

.margin-right-14 {
  margin-right: em(14);
}

.margin-right-16 {
  margin-right: em(16);
}

.margin-right-20 {
  margin-right: em(20);
}

.margin-right-24 {
  margin-right: em(24);
}

.margin-right-32 {
  margin-right: em(32);
}

.margin-right-48 {
  margin-right: em(48);
}

.margin-right-64 {
  margin-right: em(64);
}

.margin-right-128 {
  margin-right: em(128);
}

.margin-left-0 {
  margin-left: em(0);
}

.margin-left-1 {
  margin-left: em(1);
}

.margin-left-2 {
  margin-left: em(2);
}

.margin-left-4 {
  margin-left: em(4);
}

.margin-left-5 {
  margin-left: em(5);
}

.margin-left-6 {
  margin-left: em(6);
}

.margin-left-8 {
  margin-left: em(8);
}

.margin-left-10 {
  margin-left: em(10);
}

.margin-left-12 {
  margin-left: em(12);
}

.margin-left-14 {
  margin-left: em(14);
}

.margin-left-16 {
  margin-left: em(16);
}

.margin-left-20 {
  margin-left: em(20);
}

.margin-left-24 {
  margin-left: em(24);
}

.margin-left-32 {
  margin-left: em(32);
}

.margin-left-48 {
  margin-left: em(48);
}

.margin-left-64 {
  margin-left: em(64);
}

.margin-left-128 {
  margin-left: em(128);
}

.margin-top-0 {
  margin-top: em(0);
}

.margin-top-1 {
  margin-top: em(1);
}

.margin-top-2 {
  margin-top: em(2);
}

.margin-top-4 {
  margin-top: em(4);
}

.margin-top-5 {
  margin-top: em(5);
}

.margin-top-6 {
  margin-top: em(6);
}

.margin-top-8 {
  margin-top: em(8);
}

.margin-top-10 {
  margin-top: em(10);
}

.margin-top-12 {
  margin-top: em(12);
}

.margin-top-14 {
  margin-top: em(14);
}

.margin-top-16 {
  margin-top: em(16);
}

.margin-top-20 {
  margin-top: em(20);
}

.margin-top-24 {
  margin-top: em(24);
}

.margin-top-32 {
  margin-top: em(32);
}

.margin-top-48 {
  margin-top: em(48);
}

.margin-top-64 {
  margin-top: em(64);
}

.margin-top-128 {
  margin-top: em(128);
}

.margin-bottom-0 {
  margin-bottom: em(0);
}

.margin-bottom-1 {
  margin-bottom: em(1);
}

.margin-bottom-2 {
  margin-bottom: em(2);
}

.margin-bottom-4 {
  margin-bottom: em(4);
}

.margin-bottom-5 {
  margin-bottom: em(5);
}

.margin-bottom-6 {
  margin-bottom: em(6);
}

.margin-bottom-8 {
  margin-bottom: em(8);
}

.margin-bottom-10 {
  margin-bottom: em(10);
}

.margin-bottom-12 {
  margin-bottom: em(12);
}

.margin-bottom-14 {
  margin-bottom: em(14);
}

.margin-bottom-16 {
  margin-bottom: em(16);
}

.margin-bottom-20 {
  margin-bottom: em(20);
}

.margin-bottom-24 {
  margin-bottom: em(24);
}

.margin-bottom-32 {
  margin-bottom: em(32);
}

.margin-bottom-48 {
  margin-bottom: em(48);
}

.margin-bottom-64 {
  margin-bottom: em(64);
}

.margin-bottom-128 {
  margin-bottom: em(128);
}

/***************flex**********/
.flex-row-reverse {
  display: flex;
  flex-direction: row-reverse;
}

.flex-row-reverse-space-between {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.flex-row-reverse-space-between-stretch {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: stretch;
}

.flex-row-reverse-space-between-baseline {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: baseline;
}

.flex-row-reverse-space-between-flex-end {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-end;
}

.flex-row-reverse-space-between-center {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}

.flex-row-reverse-space-between-flex-start {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-start;
}

.flex-row-reverse-space-around {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-around;
}

.flex-row-reverse-space-around-stretch {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-around;
  align-items: stretch;
}

.flex-row-reverse-space-around-baseline {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-around;
  align-items: baseline;
}

.flex-row-reverse-space-around-flex-end {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-around;
  align-items: flex-end;
}

.flex-row-reverse-space-around-center {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-around;
  align-items: center;
}

.flex-row-reverse-space-around-flex-start {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-around;
  align-items: flex-start;
}

.flex-row-reverse-center {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
}

.flex-row-reverse-center-stretch {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: stretch;
}

.flex-row-reverse-center-baseline {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: baseline;
}

.flex-row-reverse-center-flex-end {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: flex-end;
}

.flex-row-reverse-center-center {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
}

.flex-row-reverse-center-flex-start {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: flex-start;
}

.flex-row-reverse-flex-end {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.flex-row-reverse-flex-end-stretch {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: stretch;
}

.flex-row-reverse-flex-end-baseline {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: baseline;
}

.flex-row-reverse-flex-end-flex-end {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: flex-end;
}

.flex-row-reverse-flex-end-center {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
}

.flex-row-reverse-flex-end-flex-start {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: flex-start;
}

.flex-row-reverse-flex-start {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
}

.flex-row-reverse-flex-start-stretch {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  align-items: stretch;
}

.flex-row-reverse-flex-start-baseline {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  align-items: baseline;
}

.flex-row-reverse-flex-start-flex-end {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  align-items: flex-end;
}

.flex-row-reverse-flex-start-center {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  align-items: center;
}

.flex-row-reverse-flex-start-flex-start {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  align-items: flex-start;
}

.flex-column-reverse {
  display: flex;
  flex-direction: column-reverse;
}

.flex-column-reverse-space-between {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
}

.flex-column-reverse-space-between-stretch {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  align-items: stretch;
}

.flex-column-reverse-space-between-baseline {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  align-items: baseline;
}

.flex-column-reverse-space-between-flex-end {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  align-items: flex-end;
}

.flex-column-reverse-space-between-center {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  align-items: center;
}

.flex-column-reverse-space-between-flex-start {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  align-items: flex-start;
}

.flex-column-reverse-space-around {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-around;
}

.flex-column-reverse-space-around-stretch {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-around;
  align-items: stretch;
}

.flex-column-reverse-space-around-baseline {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-around;
  align-items: baseline;
}

.flex-column-reverse-space-around-flex-end {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-around;
  align-items: flex-end;
}

.flex-column-reverse-space-around-center {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-around;
  align-items: center;
}

.flex-column-reverse-space-around-flex-start {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-around;
  align-items: flex-start;
}

.flex-column-reverse-center {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
}

.flex-column-reverse-center-stretch {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: stretch;
}

.flex-column-reverse-center-baseline {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: baseline;
}

.flex-column-reverse-center-flex-end {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: flex-end;
}

.flex-column-reverse-center-center {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
}

.flex-column-reverse-center-flex-start {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: flex-start;
}

.flex-column-reverse-flex-end {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
}

.flex-column-reverse-flex-end-stretch {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  align-items: stretch;
}

.flex-column-reverse-flex-end-baseline {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  align-items: baseline;
}

.flex-column-reverse-flex-end-flex-end {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  align-items: flex-end;
}

.flex-column-reverse-flex-end-center {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  align-items: center;
}

.flex-column-reverse-flex-end-flex-start {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  align-items: flex-start;
}

.flex-column-reverse-flex-start {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-start;
}

.flex-column-reverse-flex-start-stretch {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-start;
  align-items: stretch;
}

.flex-column-reverse-flex-start-baseline {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-start;
  align-items: baseline;
}

.flex-column-reverse-flex-start-flex-end {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-start;
  align-items: flex-end;
}

.flex-column-reverse-flex-start-center {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-start;
  align-items: center;
}

.flex-column-reverse-flex-start-flex-start {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-start;
  align-items: flex-start;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-column-space-between {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.flex-column-space-between-stretch {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}

.flex-column-space-between-baseline {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: baseline;
}

.flex-column-space-between-flex-end {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}

.flex-column-space-between-center {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.flex-column-space-between-flex-start {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.flex-column-space-around {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.flex-column-space-around-stretch {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: stretch;
}

.flex-column-space-around-baseline {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: baseline;
}

.flex-column-space-around-flex-end {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-end;
}

.flex-column-space-around-center {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.flex-column-space-around-flex-start {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
}

.flex-column-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flex-column-center-stretch {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}

.flex-column-center-baseline {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: baseline;
}

.flex-column-center-flex-end {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

.flex-column-center-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.flex-column-center-flex-start {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.flex-column-flex-end {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.flex-column-flex-end-stretch {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
}

.flex-column-flex-end-baseline {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: baseline;
}

.flex-column-flex-end-flex-end {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}

.flex-column-flex-end-center {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.flex-column-flex-end-flex-start {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.flex-column-flex-start {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.flex-column-flex-start-stretch {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.flex-column-flex-start-baseline {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: baseline;
}

.flex-column-flex-start-flex-end {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
}

.flex-column-flex-start-center {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.flex-column-flex-start-flex-start {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-row-space-between {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.flex-row-space-between-stretch {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
}

.flex-row-space-between-baseline {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
}

.flex-row-space-between-flex-end {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}

.flex-row-space-between-center {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.flex-row-space-between-flex-start {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}

.flex-row-space-around {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.flex-row-space-around-stretch {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: stretch;
}

.flex-row-space-around-baseline {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: baseline;
}

.flex-row-space-around-flex-end {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-end;
}

.flex-row-space-around-center {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

.flex-row-space-around-flex-start {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-start;
}

.flex-row-center {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.flex-row-center-stretch {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
}

.flex-row-center-baseline {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: baseline;
}

.flex-row-center-flex-end {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
}

.flex-row-center-center {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.flex-row-center-flex-start {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}

.flex-row-flex-end {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.flex-row-flex-end-stretch {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: stretch;
}

.flex-row-flex-end-baseline {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: baseline;
}

.flex-row-flex-end-flex-end {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
}

.flex-row-flex-end-center {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}

.flex-row-flex-end-flex-start {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
}

.flex-row-flex-start {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

.flex-row-flex-start-stretch {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
}

.flex-row-flex-start-baseline {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: baseline;
}

.flex-row-flex-start-flex-end {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
}

.flex-row-flex-start-center {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.flex-row-flex-start-flex-start {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}

/* moved below css form custom-utility.scss */
.button-xl .mat-mdc-flat-button {
  font-size: 1.08em;
  width: 10em;
}

.button-l .mat-mdc-flat-button {
  width: 9em;
}

.button-m .mat-mdc-flat-button {
  width: 7em;
}

.button-s .mat-mdc-flat-button {
  width: 5em;
}

/* Float and Clear */
.float-left {
  float: left;
}

.float-right {
  float: right;
}

.float-none {
  float: none;
}

.clear {
  clear: both;
}

.clear-fix {
  overflow: auto;
}

/* text align */
.text-left {
  text-align: left;
}

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

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

/* width */
.width-auto {
  width: auto;
}

.width-full {
  width: 100%;
}

/* vertical align */
.vertical-align-top {
  vertical-align: "va-top";
}

.vertical-align-middle {
  vertical-align: "va-middle";
}

.vertical-align-bottom {
  vertical-align: "va-bottom";
}

/* position */
.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.position-fixed {
  position: fixed;
}

.position-static {
  position: static;
}

/* cursor */
.cursor-alias {
  cursor: alias;
}

.cursor-all-scroll {
  cursor: all-scroll;
}

.cursor-auto {
  cursor: auto;
}

.cursor-cell {
  cursor: cell;
}

.cursor-col-resize {
  cursor: col-resize;
}

.cursor-crosshair {
  cursor: crosshair;
}

.cursor-default {
  cursor: default;
}

.cursor-grab {
  cursor: grab;
}

.cursor-help {
  cursor: help;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

.cursor-pointer {
  cursor: pointer;
}

/* text-decoration */
.text-decoration-none {
  text-decoration: none;
}

.text-decoration-overline {
  text-decoration: overline;
}

.text-decoration-line-through {
  text-decoration: line-through;
}

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

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

/* ellipsis */
.text-ellipsis {
  white-space: "nowrap";
  overflow: hidden;
  text-overflow: "ellipsis";
}

/* break word */
.text-break {
  word-wrap: break-word;
}

/* overflow hidden */
.overflow-hidden {
  overflow: hidden;
}

/* text-transform */
.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

/* disable */
.btn-disable .mat-mdc-flat-button {
  opacity: 0.5;
  pointer-events: none;
}

.disable {
  opacity: 0.5;
  pointer-events: none;
}

@font-face {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 300;
  src: local("OpenSans Light"), local("OpenSans-Light"), url('OpenSans-Light.d31fb061f625d022.woff2') format("woff2"), url('OpenSans-Light.77979e2ab53345a9.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "OpenSans";
  font-style: italic;
  font-weight: 300;
  src: local("OpenSans Light Italic"), local("OpenSans-Light-Italic"), url('OpenSans-LightItalic.d63fe9cab2e0040e.woff2') format("woff2"), url('OpenSans-LightItalic.919610f1616fb7a0.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  src: local("OpenSans"), local("OpenSans"), url('OpenSans-Regular.544348d106e5a1bb.woff2') format("woff2"), url('OpenSans-Regular.2bbed0656f8464b8.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "OpenSans";
  font-style: italic;
  font-weight: 400;
  src: local("OpenSans Italic"), local("OpenSans-Italic"), url('OpenSans-Italic.1eb5b0935f407322.woff2') format("woff2"), url('OpenSans-Italic.16c02faed50c96a0.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 500;
  src: local("OpenSans Medium"), local("OpenSans-Medium"), url('OpenSans-Medium.d75e6c9e87ee1834.woff2') format("woff2"), url('OpenSans-Medium.e71e44200ac0ea7e.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "OpenSans";
  font-style: italic;
  font-weight: 500;
  src: local("OpenSans Medium Italic"), local("OpenSans-Medium-Italic"), url('OpenSans-MediumItalic.57bc91f385435adb.woff2') format("woff2"), url('OpenSans-MediumItalic.8947060b1c575663.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 600;
  src: local("OpenSans Semi Bold"), local("OpenSans-Semi-Bold"), url('OpenSans-SemiBold.1ba08b4edac7fab8.woff2') format("woff2"), url('OpenSans-SemiBold.2d1479ac7f8c2e4c.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "OpenSans";
  font-style: italic;
  font-weight: 600;
  src: local("OpenSans Semi Bold Italic"), local("OpenSans-Semi-Bold-Italic"), url('OpenSans-SemiBoldItalic.7f93b67c062150e4.woff2') format("woff2"), url('OpenSans-SemiBoldItalic.adcea3b2b68381df.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 700;
  src: local("OpenSans Bold"), local("OpenSans-Bold"), url('OpenSans-Bold.ff832186bd33e6d3.woff2') format("woff2"), url('OpenSans-Bold.52457ed3b5226820.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "OpenSans";
  font-style: italic;
  font-weight: 700;
  src: local("OpenSans Bold Italic"), local("OpenSans-Bold-Italic"), url('OpenSans-BoldItalic.8a2e4d709381d7c8.woff2') format("woff2"), url('OpenSans-BoldItalic.e588b7242a42a1ba.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 800;
  src: local("OpenSans Extra Bold"), local("OpenSans-Extra-Bold"), url('OpenSans-ExtraBold.a3fb98ed3f3860d3.woff2') format("woff2"), url('OpenSans-ExtraBold.75fa684308a0f15e.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "OpenSans";
  font-style: italic;
  font-weight: 800;
  src: local("OpenSans Extra Bold Italic"), local("OpenSans-Extra-Bold-Italic"), url('OpenSans-ExtraBoldItalic.492766a66c4ce18f.woff2') format("woff2"), url('OpenSans-ExtraBoldItalic.597d5f8239e633ad.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 100;
  src: local("Poppins Thin"), local("Poppins-Thin"), url('Poppins-Thin.bf978adc7f0385f1.woff2') format("woff2"), url('Poppins-Thin.efae82de88042af6.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 100;
  src: local("Poppins Thin Italic"), local("Poppins-Thin-Italic"), url('Poppins-ThinItalic.3f1d9f00ee79f8cb.woff2') format("woff2"), url('Poppins-ThinItalic.4d2323c7f19438f5.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 200;
  src: local("Poppins Extra Light"), local("Poppins-Extra-Light"), url('Poppins-ExtraLight.cdc18e901dbe6077.woff2') format("woff2"), url('Poppins-ExtraLight.9f46c67188fe6f9f.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 200;
  src: local("Poppins Extra Light Italic"), local("Poppins-Extra-Light-Italic"), url('Poppins-ExtraLightItalic.fcf6bb6fdecc1134.woff2') format("woff2"), url('Poppins-ExtraLightItalic.0eba999269baafd4.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;
  src: local("Poppins Light"), local("Poppins-Light"), url('Poppins-Light.5433ed9b4632d5a7.woff2') format("woff2"), url('Poppins-Light.61ff7677a76d9835.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 300;
  src: local("Poppins Light Italic"), local("Poppins-Light-Italic"), url('Poppins-LightItalic.43a23ad1a0e5b8a3.woff2') format("woff2"), url('Poppins-LightItalic.568bd1c6a2a1bf04.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: local("Poppins"), local("Poppins"), url('Poppins-Regular.40ba2d9b41d4a28f.woff2') format("woff2"), url('Poppins-Regular.fb579737f236351b.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 400;
  src: local("Poppins Italic"), local("Poppins-Italic"), url('Poppins-Italic.780da855e03570c7.woff2') format("woff2"), url('Poppins-Italic.9a350a391b711196.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  src: local("Poppins Medium"), local("Poppins-Medium"), url('Poppins-Medium.2be0927c50beb4f9.woff2') format("woff2"), url('Poppins-Medium.001e002f03b017c1.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 500;
  src: local("Poppins Medium Italic"), local("Poppins-Medium-Italic"), url('Poppins-MediumItalic.096e4956296d5130.woff2') format("woff2"), url('Poppins-MediumItalic.04b90eb141ae7912.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  src: local("Poppins Semi Bold"), local("Poppins-Semi-Bold"), url('Poppins-SemiBold.fa759362a3a7dc51.woff2') format("woff2"), url('Poppins-SemiBold.9bd932ba6c70b0f1.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 600;
  src: local("Poppins Semi Bold Italic"), local("Poppins-Semi-Bold-Italic"), url('Poppins-SemiBoldItalic.cb1ec17dd1efa409.woff2') format("woff2"), url('Poppins-SemiBoldItalic.4174918e3fd982d9.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: local("Poppins Bold"), local("Poppins-Bold"), url('Poppins-Bold.88fbd22d1a426bd7.woff2') format("woff2"), url('Poppins-Bold.b99f9fddabdf7edd.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 700;
  src: local("Poppins Bold Italic"), local("Poppins-Bold-Italic"), url('Poppins-BoldItalic.e5d958a4ad95c8c7.woff2') format("woff2"), url('Poppins-BoldItalic.4197b3dcbac69fa9.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  src: local("Poppins Extra Bold"), local("Poppins-Extra-Bold"), url('Poppins-ExtraBold.a8609c876959c71d.woff2') format("woff2"), url('Poppins-ExtraBold.7488d04e7b3a6a32.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 800;
  src: local("Poppins Extra Bold Italic"), local("Poppins-Extra-Bold-Italic"), url('Poppins-ExtraBoldItalic.3276aecf7df33fa0.woff2') format("woff2"), url('Poppins-ExtraBoldItalic.3b7de731caa32d8e.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 900;
  src: local("Poppins Black"), local("Poppins-Black"), url('Poppins-Black.539002d78bae3bfa.woff2') format("woff2"), url('Poppins-Black.e895922e4c5cf870.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 900;
  src: local("Poppins Black Italic"), local("Poppins-Black-Italic"), url('Poppins-BlackItalic.0f12c63bc7538252.woff2') format("woff2"), url('Poppins-BlackItalic.495aac0c209fd003.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100;
  src: local("Inter Thin"), local("Inter-Thin"), url('Inter-Thin.878c323252f9425c.woff2') format("woff2"), url('Inter-Thin.98ff56c2f5cddece.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 200;
  src: local("Inter Extra Light"), local("Inter-Extra-Light"), url('Inter-ExtraLight.03839008e1735cf0.woff2') format("woff2"), url('Inter-ExtraLight.a290092aa663b8a5.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  src: local("Inter Light"), local("Inter-Light"), url('Inter-Light.bc3640bbf0ff56ac.woff2') format("woff2"), url('Inter-Light.679e7e83a9c528cf.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: local("Inter Regular"), local("Inter-Regular"), url('Inter-Regular.9d6ea955d442bf25.woff2') format("woff2"), url('Inter-Regular.dec2afd04490936c.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  src: local("Inter Medium"), local("Inter-Medium"), url('Inter-Medium.a3d41c8ab062f1f9.woff2') format("woff2"), url('Inter-Medium.f9c1b53537fc04b1.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  src: local("Inter Semi Bold"), local("Inter-Semi-Bold"), url('Inter-SemiBold.73543e8ce564a03d.woff2') format("woff2"), url('Inter-SemiBold.c2ba32e9ff8ee97b.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: local("Inter Bold"), local("Inter-Bold"), url('Inter-Bold.dbdc58a1c5040a08.woff2') format("woff2"), url('Inter-Bold.da32fa9c0bd2557d.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  src: local("Inter Extra Bold"), local("Inter-Extra-Bold"), url('Inter-ExtraBold.6973d7c96c7ae305.woff2') format("woff2"), url('Inter-ExtraBold.a792ab14a91c88fa.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  src: local("Inter Black"), local("Inter-Black"), url('Inter-Black.f9bee96f2cb938ce.woff2') format("woff2"), url('Inter-Black.7dac57fecbb3fd6f.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "IBMPlexSans";
  font-style: normal;
  font-weight: 100;
  src: local("IBMPlexSans Thin"), local("IBMPlexSans-Thin"), url('IBMPlexSans-Thin.8eaaa18339cda3cf.woff2') format("woff2"), url('IBMPlexSans-Thin.31708bbee623b8ce.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "IBMPlexSans";
  font-style: italic;
  font-weight: 100;
  src: local("IBMPlexSans Thin Italic"), local("IBMPlexSans-Thin-Italic"), url('IBMPlexSans-ThinItalic.89d755ab26b24622.woff2') format("woff2"), url('IBMPlexSans-ThinItalic.a61946d8d49711b7.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "IBMPlexSans";
  font-style: normal;
  font-weight: 200;
  src: local("IBMPlexSans Extra Light"), local("IBMPlexSans-Extra-Light"), url('IBMPlexSans-ExtraLight.a1da8f60fac947b1.woff2') format("woff2"), url('IBMPlexSans-ExtraLight.e5b1aec25a9c2358.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "IBMPlexSans";
  font-style: italic;
  font-weight: 200;
  src: local("IBMPlexSans Extra Light Italic"), local("IBMPlexSans-Extra-Light-Italic"), url('IBMPlexSans-ExtraLightItalic.119401ba40257630.woff2') format("woff2"), url('IBMPlexSans-ExtraLightItalic.8f056eb732773430.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "IBMPlexSans";
  font-style: normal;
  font-weight: 300;
  src: local("IBMPlexSans Light"), local("IBMPlexSans-Light"), url('IBMPlexSans-Light.2043a47cddaf1a1d.woff2') format("woff2"), url('IBMPlexSans-Light.c3f0a626f8e2eba5.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "IBMPlexSans";
  font-style: italic;
  font-weight: 300;
  src: local("IBMPlexSans Light Italic"), local("IBMPlexSans-Light-Italic"), url('IBMPlexSans-LightItalic.dd244acca17fb896.woff2') format("woff2"), url('IBMPlexSans-LightItalic.ccc8915fb98a3406.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "IBMPlexSans";
  font-style: normal;
  font-weight: 400;
  src: local("IBMPlexSans"), local("IBMPlexSans"), url('IBMPlexSans-Regular.aa7789581ca1e3a3.woff2') format("woff2"), url('IBMPlexSans-Regular.9f31a1aac50f21a7.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "IBMPlexSans";
  font-style: italic;
  font-weight: 400;
  src: local("IBMPlexSans Italic"), local("IBMPlexSans-Italic"), url('IBMPlexSans-Italic.5dea8149c4516b28.woff2') format("woff2"), url('IBMPlexSans-Italic.4f908c53a617a863.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "IBMPlexSans";
  font-style: normal;
  font-weight: 500;
  src: local("IBMPlexSans Medium"), local("IBMPlexSans-Medium"), url('IBMPlexSans-Medium.7b605ab15cbfbc31.woff2') format("woff2"), url('IBMPlexSans-Medium.841c6b645aa63a6c.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "IBMPlexSans";
  font-style: italic;
  font-weight: 500;
  src: local("IBMPlexSans Medium Italic"), local("IBMPlexSans-Medium-Italic"), url('IBMPlexSans-MediumItalic.96f1f093ae9138f9.woff2') format("woff2"), url('IBMPlexSans-MediumItalic.71e32769827bde73.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "IBMPlexSans";
  font-style: normal;
  font-weight: 600;
  src: local("IBMPlexSans Semi Bold"), local("IBMPlexSans-Semi-Bold"), url('IBMPlexSans-SemiBold.6c79a09d8ac83b8f.woff2') format("woff2"), url('IBMPlexSans-SemiBold.410f0c73e04fe862.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "IBMPlexSans";
  font-style: italic;
  font-weight: 600;
  src: local("IBMPlexSans Semi Bold Italic"), local("IBMPlexSans-Semi-Bold-Italic"), url('IBMPlexSans-SemiBoldItalic.0976cad32b114fd0.woff2') format("woff2"), url('IBMPlexSans-SemiBoldItalic.a38732dbe58383fc.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "IBMPlexSans";
  font-style: normal;
  font-weight: 700;
  src: local("IBMPlexSans Bold"), local("IBMPlexSans-Bold"), url('IBMPlexSans-Bold.f1bdffe1c5046ee3.woff2') format("woff2"), url('IBMPlexSans-Bold.8abad27d7f3f578a.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "IBMPlexSans";
  font-style: italic;
  font-weight: 700;
  src: local("IBMPlexSans Bold Italic"), local("IBMPlexSans-Bold-Italic"), url('IBMPlexSans-BoldItalic.d65a3ffca525c19c.woff2') format("woff2"), url('IBMPlexSans-BoldItalic.036c433ec7ca23b6.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "IBMPlexSansArabic";
  font-style: normal;
  font-weight: 100;
  src: local("IBMPlexSansArabic Thin"), local("IBMPlexSansArabic-Thin"), url('IBMPlexSansArabic-Thin.19a8ee9981d97fea.woff2') format("woff2"), url('IBMPlexSansArabic-Thin.6b549289e5ac69a3.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "IBMPlexSansArabic";
  font-style: normal;
  font-weight: 200;
  src: local("IBMPlexSansArabic Extra Light"), local("IBMPlexSansArabic-Extra-Light"), url('IBMPlexSansArabic-ExtraLight.6e0da82b27b44e92.woff2') format("woff2"), url('IBMPlexSansArabic-ExtraLight.ed2537822cd21ca5.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "IBMPlexSansArabic";
  font-style: normal;
  font-weight: 300;
  src: local("IBMPlexSansArabic Light"), local("IBMPlexSansArabic-Light"), url('IBMPlexSansArabic-Light.d8397e44526f657f.woff2') format("woff2"), url('IBMPlexSansArabic-Light.ec95fa410058b64a.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "IBMPlexSansArabic";
  font-style: normal;
  font-weight: 400;
  src: local("IBMPlexSansArabic"), local("IBMPlexSansArabic"), url('IBMPlexSansArabic-Regular.8cad0ce241afcdc1.woff2') format("woff2"), url('IBMPlexSansArabic-Regular.acc28337144ee66f.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "IBMPlexSansArabic";
  font-style: normal;
  font-weight: 500;
  src: local("IBMPlexSansArabic Medium"), local("IBMPlexSansArabic-Medium"), url('IBMPlexSansArabic-Medium.f58bf910af202664.woff2') format("woff2"), url('IBMPlexSansArabic-Medium.990ae81f60ffbb49.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "IBMPlexSansArabic";
  font-style: normal;
  font-weight: 600;
  src: local("IBMPlexSansArabic Semi Bold"), local("IBMPlexSansArabic-Semi-Bold"), url('IBMPlexSansArabic-SemiBold.33370915ab112b0c.woff2') format("woff2"), url('IBMPlexSansArabic-SemiBold.cc5b774ef56da8ad.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "IBMPlexSansArabic";
  font-style: normal;
  font-weight: 700;
  src: local("IBMPlexSansArabic Bold"), local("IBMPlexSansArabic-Bold"), url('IBMPlexSansArabic-Bold.f7f9a6fc6bd75e10.woff2') format("woff2"), url('IBMPlexSansArabic-Bold.09924e8c14cb0210.woff') format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
:root {
  --font-size-regular: 1.08em;
}

body {
  font-size: var(--font-size-regular);
}

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

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

.m-t-none {
  margin-top: 0 !important;
}

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

.p-t-none {
  padding-top: 0 !important;
}

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

.m-r-none {
  margin-inline-end: 0 !important;
}

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

.p-r-none {
  padding-inline-end: 0 !important;
}

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

.m-b-none {
  margin-bottom: 0 !important;
}

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

.p-b-none {
  padding-bottom: 0 !important;
}

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

.m-l-none {
  margin-inline-start: 0 !important;
}

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

.p-l-none {
  padding-inline-start: 0 !important;
}

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

.m-xxs {
  margin: 0.125em !important;
}

.p-xxs {
  padding: 0.125em !important;
}

.m-t-xxs {
  margin-top: 0.125em !important;
}

.m-all-xxs {
  margin: 0.125em !important;
}

.p-t-xxs {
  padding-top: 0.125em !important;
}

.p-all-xxs {
  padding: 0.125em !important;
}

.m-r-xxs {
  margin-inline-end: 0.125em !important;
}

.m-all-xxs {
  margin: 0.125em !important;
}

.p-r-xxs {
  padding-inline-end: 0.125em !important;
}

.p-all-xxs {
  padding: 0.125em !important;
}

.m-b-xxs {
  margin-bottom: 0.125em !important;
}

.m-all-xxs {
  margin: 0.125em !important;
}

.p-b-xxs {
  padding-bottom: 0.125em !important;
}

.p-all-xxs {
  padding: 0.125em !important;
}

.m-l-xxs {
  margin-inline-start: 0.125em !important;
}

.m-all-xxs {
  margin: 0.125em !important;
}

.p-l-xxs {
  padding-inline-start: 0.125em !important;
}

.p-all-xxs {
  padding: 0.125em !important;
}

.m-xs {
  margin: 0.25em !important;
}

.p-xs {
  padding: 0.25em !important;
}

.m-t-xs {
  margin-top: 0.25em !important;
}

.m-all-xs {
  margin: 0.25em !important;
}

.p-t-xs {
  padding-top: 0.25em !important;
}

.p-all-xs {
  padding: 0.25em !important;
}

.m-r-xs {
  margin-inline-end: 0.25em !important;
}

.m-all-xs {
  margin: 0.25em !important;
}

.p-r-xs {
  padding-inline-end: 0.25em !important;
}

.p-all-xs {
  padding: 0.25em !important;
}

.m-b-xs {
  margin-bottom: 0.25em !important;
}

.m-all-xs {
  margin: 0.25em !important;
}

.p-b-xs {
  padding-bottom: 0.25em !important;
}

.p-all-xs {
  padding: 0.25em !important;
}

.m-l-xs {
  margin-inline-start: 0.25em !important;
}

.m-all-xs {
  margin: 0.25em !important;
}

.p-l-xs {
  padding-inline-start: 0.25em !important;
}

.p-all-xs {
  padding: 0.25em !important;
}

.m-sm {
  margin: 0.5em !important;
}

.p-sm {
  padding: 0.5em !important;
}

.m-t-sm {
  margin-top: 0.5em !important;
}

.m-all-sm {
  margin: 0.5em !important;
}

.p-t-sm {
  padding-top: 0.5em !important;
}

.p-all-sm {
  padding: 0.5em !important;
}

.m-r-sm {
  margin-inline-end: 0.5em !important;
}

.m-all-sm {
  margin: 0.5em !important;
}

.p-r-sm {
  padding-inline-end: 0.5em !important;
}

.p-all-sm {
  padding: 0.5em !important;
}

.m-b-sm {
  margin-bottom: 0.5em !important;
}

.m-all-sm {
  margin: 0.5em !important;
}

.p-b-sm {
  padding-bottom: 0.5em !important;
}

.p-all-sm {
  padding: 0.5em !important;
}

.m-l-sm {
  margin-inline-start: 0.5em !important;
}

.m-all-sm {
  margin: 0.5em !important;
}

.p-l-sm {
  padding-inline-start: 0.5em !important;
}

.p-all-sm {
  padding: 0.5em !important;
}

.m-md {
  margin: 1em !important;
}

.p-md {
  padding: 1em !important;
}

.m-t-md {
  margin-top: 1em !important;
}

.m-all-md {
  margin: 1em !important;
}

.p-t-md {
  padding-top: 1em !important;
}

.p-all-md {
  padding: 1em !important;
}

.m-r-md {
  margin-inline-end: 1em !important;
}

.m-all-md {
  margin: 1em !important;
}

.p-r-md {
  padding-inline-end: 1em !important;
}

.p-all-md {
  padding: 1em !important;
}

.m-b-md {
  margin-bottom: 1em !important;
}

.m-all-md {
  margin: 1em !important;
}

.p-b-md {
  padding-bottom: 1em !important;
}

.p-all-md {
  padding: 1em !important;
}

.m-l-md {
  margin-inline-start: 1em !important;
}

.m-all-md {
  margin: 1em !important;
}

.p-l-md {
  padding-inline-start: 1em !important;
}

.p-all-md {
  padding: 1em !important;
}

.m-lg {
  margin: 2em !important;
}

.p-lg {
  padding: 2em !important;
}

.m-t-lg {
  margin-top: 2em !important;
}

.m-all-lg {
  margin: 2em !important;
}

.p-t-lg {
  padding-top: 2em !important;
}

.p-all-lg {
  padding: 2em !important;
}

.m-r-lg {
  margin-inline-end: 2em !important;
}

.m-all-lg {
  margin: 2em !important;
}

.p-r-lg {
  padding-inline-end: 2em !important;
}

.p-all-lg {
  padding: 2em !important;
}

.m-b-lg {
  margin-bottom: 2em !important;
}

.m-all-lg {
  margin: 2em !important;
}

.p-b-lg {
  padding-bottom: 2em !important;
}

.p-all-lg {
  padding: 2em !important;
}

.m-l-lg {
  margin-inline-start: 2em !important;
}

.m-all-lg {
  margin: 2em !important;
}

.p-l-lg {
  padding-inline-start: 2em !important;
}

.p-all-lg {
  padding: 2em !important;
}

.m-xl {
  margin: 4em !important;
}

.p-xl {
  padding: 4em !important;
}

.m-t-xl {
  margin-top: 4em !important;
}

.m-all-xl {
  margin: 4em !important;
}

.p-t-xl {
  padding-top: 4em !important;
}

.p-all-xl {
  padding: 4em !important;
}

.m-r-xl {
  margin-inline-end: 4em !important;
}

.m-all-xl {
  margin: 4em !important;
}

.p-r-xl {
  padding-inline-end: 4em !important;
}

.p-all-xl {
  padding: 4em !important;
}

.m-b-xl {
  margin-bottom: 4em !important;
}

.m-all-xl {
  margin: 4em !important;
}

.p-b-xl {
  padding-bottom: 4em !important;
}

.p-all-xl {
  padding: 4em !important;
}

.m-l-xl {
  margin-inline-start: 4em !important;
}

.m-all-xl {
  margin: 4em !important;
}

.p-l-xl {
  padding-inline-start: 4em !important;
}

.p-all-xl {
  padding: 4em !important;
}

.m-xxl {
  margin: 8em !important;
}

.p-xxl {
  padding: 8em !important;
}

.m-t-xxl {
  margin-top: 8em !important;
}

.m-all-xxl {
  margin: 8em !important;
}

.p-t-xxl {
  padding-top: 8em !important;
}

.p-all-xxl {
  padding: 8em !important;
}

.m-r-xxl {
  margin-inline-end: 8em !important;
}

.m-all-xxl {
  margin: 8em !important;
}

.p-r-xxl {
  padding-inline-end: 8em !important;
}

.p-all-xxl {
  padding: 8em !important;
}

.m-b-xxl {
  margin-bottom: 8em !important;
}

.m-all-xxl {
  margin: 8em !important;
}

.p-b-xxl {
  padding-bottom: 8em !important;
}

.p-all-xxl {
  padding: 8em !important;
}

.m-l-xxl {
  margin-inline-start: 8em !important;
}

.m-all-xxl {
  margin: 8em !important;
}

.p-l-xxl {
  padding-inline-start: 8em !important;
}

.p-all-xxl {
  padding: 8em !important;
}

.bt-none {
  border-top: 0;
}

.bt-dashed {
  border-top-dashed: 0;
}

.dt-dashed-none {
  border-top-dashed: 0;
}

.bt-dotted {
  border-top-dotted: 0;
}

.dt-dotted-none {
  border-top-dotted: 0;
}

.bt-solid {
  border-top-solid: 0;
}

.dt-solid-none {
  border-top-solid: 0;
}

.bt-xs {
  border-top: 0.5px;
}

.bt-dashed {
  border-top-dashed: 0.5px;
}

.dt-dashed-xs {
  border-top-dashed: 0.5px;
}

.bt-dotted {
  border-top-dotted: 0.5px;
}

.dt-dotted-xs {
  border-top-dotted: 0.5px;
}

.bt-solid {
  border-top-solid: 0.5px;
}

.dt-solid-xs {
  border-top-solid: 0.5px;
}

.bt-sm {
  border-top: 1px;
}

.bt-dashed {
  border-top-dashed: 1px;
}

.dt-dashed-sm {
  border-top-dashed: 1px;
}

.bt-dotted {
  border-top-dotted: 1px;
}

.dt-dotted-sm {
  border-top-dotted: 1px;
}

.bt-solid {
  border-top-solid: 1px;
}

.dt-solid-sm {
  border-top-solid: 1px;
}

.bt-md {
  border-top: 2px;
}

.bt-dashed {
  border-top-dashed: 2px;
}

.dt-dashed-md {
  border-top-dashed: 2px;
}

.bt-dotted {
  border-top-dotted: 2px;
}

.dt-dotted-md {
  border-top-dotted: 2px;
}

.bt-solid {
  border-top-solid: 2px;
}

.dt-solid-md {
  border-top-solid: 2px;
}

.bt-lg {
  border-top: 3px;
}

.bt-dashed {
  border-top-dashed: 3px;
}

.dt-dashed-lg {
  border-top-dashed: 3px;
}

.bt-dotted {
  border-top-dotted: 3px;
}

.dt-dotted-lg {
  border-top-dotted: 3px;
}

.bt-solid {
  border-top-solid: 3px;
}

.dt-solid-lg {
  border-top-solid: 3px;
}

.bt-xl {
  border-top: 4px;
}

.bt-dashed {
  border-top-dashed: 4px;
}

.dt-dashed-xl {
  border-top-dashed: 4px;
}

.bt-dotted {
  border-top-dotted: 4px;
}

.dt-dotted-xl {
  border-top-dotted: 4px;
}

.bt-solid {
  border-top-solid: 4px;
}

.dt-solid-xl {
  border-top-solid: 4px;
}

.bt-xxl {
  border-top: 5px;
}

.bt-dashed {
  border-top-dashed: 5px;
}

.dt-dashed-xxl {
  border-top-dashed: 5px;
}

.bt-dotted {
  border-top-dotted: 5px;
}

.dt-dotted-xxl {
  border-top-dotted: 5px;
}

.bt-solid {
  border-top-solid: 5px;
}

.dt-solid-xxl {
  border-top-solid: 5px;
}

@media screen and (max-width: 50em) {
  :root {
    --font-size-regular: 1em;
  }
}
@media screen and (min-width: 50.08em) and (max-width: 67em) {
  :root {
    --font-size-regular: 1.08em;
  }
}
@media screen and (min-width: 66.72em) and (max-width: 83em) {
  :root {
    --font-size-regular: 0.83em;
  }
}
@media screen and (min-width: 91.71em) and (max-width: 98.3em) {
  :root {
    --font-size-regular: 0.92em;
  }
}
@media screen and (min-width: 98.38em) and (max-width: 108em) {
  :root {
    --font-size-regular: 1em;
  }
}
@media screen and (min-width: 108.38em) {
  :root {
    --font-size-regular: 1.08em;
  }
}
/* We want overlays to always appear over user content, so set a baseline */
/* very high z-index for the overlay container, which is where we create the new
stacking context for all overlays. */
/* Background color for all of the backdrops */
/* Default backdrop animation is based on the Material Design swift-ease-out. */
.cdk-overlay-container, .cdk-global-overlay-wrapper {
  /* Disable events from being captured on the overlay container. */
  pointer-events: none;
  /* The container should be the size of the viewport. */
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

/* The overlay-container is an invisible element which contains all individual overlays. */
.cdk-overlay-container {
  position: fixed;
  z-index: 1000;
}
.cdk-overlay-container:empty {
  /* Hide the element when it doesn't have any child nodes. This doesn't
  include overlays that have been detached, rather than disposed. */
  display: none;
}

/* We use an extra wrapper element in order to use make the overlay itself a flex item.
This makes centering the overlay easy without running into the subpixel rendering
problems tied to using `transform` and without interfering with the other position
strategies. */
.cdk-global-overlay-wrapper {
  display: flex;
  position: absolute;
  z-index: 1000;
}

/* A single overlay pane. */
.cdk-overlay-pane {
  /* Note: it's important for this one to start off `absolute`,
  in order for us to be able to measure it correctly. */
  position: absolute;
  pointer-events: auto;
  box-sizing: border-box;
  z-index: 1000;
  /* For connected-position overlays, we set `display: flex` in
  order to force `max-width` and `max-height` to take effect. */
  display: flex;
  max-width: 100%;
  max-height: 100%;
}

.cdk-overlay-backdrop.cdk-overlay-backdrop-showing .cdk-overlay-backdrop {
  /* TODO(jelbourn): reuse sidenav fullscreen mixin. */
  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;
  background: var(--grayColor700) !important;
}
.cdk-overlay-backdrop.cdk-overlay-backdrop-showing .cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
  opacity: 0.3 !important;
  /* In high contrast mode the rgba background will become solid so we need to fall back
  to making it opaque using `opacity`. Note that we can't use the `cdk-high-contrast`
  mixin, because we can't normalize the import path to the _a11y.scss both for the
  source and when this file is distributed. See #10908. */
}
@media screen and (-ms-high-contrast: active) {
  .cdk-overlay-backdrop.cdk-overlay-backdrop-showing .cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
    opacity: 0.6;
  }
}

.cdk-overlay-dark-backdrop {
  background: hex-color-with-opacity(var(--bgColor1000), 0.2);
}

.cdk-overlay-transparent-backdrop {
  /* Note: as of Firefox 57, having the backdrop be `background: none` will prevent it from
  capturing the user's mouse scroll events. Since we also can't use something like
  `rgba(0, 0, 0, 0)`, we work around the inconsistency by not setting the background at
  all and using `opacity` to make the element transparent. */
}
.cdk-overlay-transparent-backdrop, .cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing {
  opacity: 0;
}

/* Overlay parent element used with the connected position strategy. Used to constrain the
overlay element's size to fit within the viewport. */
.cdk-overlay-connected-position-bounding-box {
  position: absolute;
  z-index: 1000;
  /* We use `display: flex` on this element exclusively for centering connected overlays.
  When *not* centering, a top/left/bottom/right will be set which overrides the normal
  flex layout. */
  display: flex;
  /* We use the `column` direction here to avoid some flexbox issues in Edge
  when using the "grow after open" options. */
  flex-direction: column;
  /* Add some dimensions so the element has an `innerText` which some people depend on in tests. */
  min-width: 0.08em;
  min-height: 0.08em;
}

/* Used when disabling global scrolling. */
.cdk-global-scrollblock {
  position: fixed;
  /* Necessary for the content not to lose its width. Note that we're using 100%, instead of
  100vw, because 100vw includes the width plus the scrollbar, whereas 100% is the width
  that the element had before we made it `fixed`. */
  width: 100%;
  /* Note: this will always add a scrollbar to whatever element it is on, which can
  potentially result in double scrollbars. It shouldn't be an issue, because we won't
  block scrolling on a page that doesn't have a scrollbar in the first place. */
  overflow-y: scroll;
}

.owl-dialog-container {
  position: relative;
  pointer-events: auto;
  box-sizing: border-box;
  display: block;
  padding: 1.5em;
  box-shadow: 0 0.92em 1.25em -0.58em var(--grayColor600), 0em 2em 3.17em 0.25em var(--grayColor800), 0em 0.75em 3.83em 0.67em var(--grayColor700);
  border-radius: 0.17em;
  overflow: auto;
  background: var(--bgColor10);
  color: var(--grayColor900);
  width: 100%;
  height: 100%;
  outline: none;
}

.owl-dt-container,
.owl-dt-container * {
  box-sizing: border-box;
}

.owl-dt-container {
  display: block;
  font-size: 1rem;
  background: var(--bgColor10);
  pointer-events: auto;
  z-index: 1000;
}

.owl-dt-container-row {
  border-bottom: 0.08em solid var(--grayColor100);
}
.owl-dt-container-row:last-child {
  border-bottom: none;
}

.owl-dt-calendar {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.owl-dt-calendar-control {
  font-size: 1em;
  width: 100%;
  padding: 0.5em 0em;
  color: var(--grayColor900);
}
.owl-dt-calendar-control .owl-dt-calendar-control-content {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.owl-dt-calendar-control .owl-dt-calendar-control-content .owl-dt-calendar-control-button {
  padding: 0 0.8em;
}
.owl-dt-calendar-control .owl-dt-calendar-control-content .owl-dt-calendar-control-button:hover {
  background-color: var(--bgColor700);
}

.owl-dt-calendar-main {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 0em 0em;
  outline: 0;
  overflow: hidden;
}

.owl-dt-calendar-view {
  display: block;
  flex: 1 1 auto;
}

.owl-dt-calendar-multi-year-view {
  display: flex;
  align-items: start;
}
.owl-dt-calendar-multi-year-view .owl-dt-calendar-table {
  width: calc(100% - 3em);
}
.owl-dt-calendar-multi-year-view .owl-dt-calendar-table .owl-dt-calendar-header th {
  padding-bottom: 0.25em;
}

.owl-dt-calendar-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.owl-dt-calendar-table .owl-dt-calendar-header {
  color: var(--grayColor300);
}
.owl-dt-calendar-table .owl-dt-calendar-header .owl-dt-weekdays th {
  font-size: 0.8em;
  font-weight: 500;
  text-align: center;
  color: var(--grayColor900);
}
.owl-dt-calendar-table .owl-dt-calendar-header .owl-dt-calendar-table-divider {
  position: relative;
  height: 0.08em;
}
.owl-dt-calendar-table .owl-dt-calendar-header .owl-dt-calendar-table-divider:after {
  content: "";
  position: absolute;
  top: 0;
  left: -0.5em;
  right: -0.5em;
  height: 0.08em;
  background: var(--bgColor200);
}
.owl-dt-calendar-table .owl-dt-calendar-cell {
  position: relative;
  height: 0;
  line-height: 0;
  text-align: center;
  outline: 0;
  color: var(--grayColor900);
  -webkit-appearance: none;
  -webkit-tap-highlight-color: var(--grayColor900);
  -webkit-tap-highlight-color: transparent;
}
.owl-dt-calendar-table .owl-dt-calendar-cell-content {
  position: absolute;
  top: 0%;
  left: 0%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  font-size: 0.8em;
  line-height: 1;
  border: 0.08em solid transparent;
  border-radius: 83.22em;
  color: inherit;
  cursor: pointer;
}
.owl-dt-calendar-table .owl-dt-calendar-cell-out {
  opacity: 0.4;
}
.owl-dt-calendar-table .owl-dt-calendar-cell-today:not(.owl-dt-calendar-cell-selected) {
  background: var(--datePickerTodayCellBgColor) !important;
  color: var(--datePickerSelectedCellColor) !important;
}
.owl-dt-calendar-table .owl-dt-calendar-cell-selected {
  color: hsla(0, 0%, 100%, 0.85);
  background-color: var(--accentColor50);
}
.owl-dt-calendar-table .owl-dt-calendar-cell-disabled {
  cursor: default;
}
.owl-dt-calendar-table .owl-dt-calendar-cell-disabled > .owl-dt-calendar-cell-content:not(.owl-dt-calendar-cell-selected) {
  color: var(--grayColor300);
}
.owl-dt-calendar-table .owl-dt-calendar-cell-disabled > .owl-dt-calendar-cell-content.owl-dt-calendar-cell-selected {
  opacity: 0.4;
}
.owl-dt-calendar-table .owl-dt-calendar-cell-disabled > .owl-dt-calendar-cell-today:not(.owl-dt-calendar-cell-selected) {
  border-color: none;
  background: var(--grayColor100);
}
.owl-dt-calendar-table .owl-dt-calendar-cell-active:focus > .owl-dt-calendar-cell-content:not(.owl-dt-calendar-cell-selected),
.owl-dt-calendar-table :not(.owl-dt-calendar-cell-disabled):hover > .owl-dt-calendar-cell-content:not(.owl-dt-calendar-cell-selected) {
  background-color: var(--grayColor100);
}
.owl-dt-calendar-table .owl-dt-calendar-cell-in-range {
  background: rgba(var(--accentColor50), 0.2);
}
.owl-dt-calendar-table .owl-dt-calendar-cell-in-range.owl-dt-calendar-cell-range-from {
  border-top-left-radius: 83.25em;
  border-bottom-left-radius: 83.25em;
}
.owl-dt-calendar-table .owl-dt-calendar-cell-in-range.owl-dt-calendar-cell-range-to {
  border-top-right-radius: 83.25em;
  border-bottom-right-radius: 83.25em;
}

.owl-dt-timer {
  display: flex;
  justify-content: center;
  width: 100%;
  background-color: var(--bgColor10);
  height: 7em;
  padding: 0.5em;
  outline: none;
}

.owl-dt-timer-box {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  width: 25%;
  height: 100%;
}

.owl-dt-timer-content {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0.2em 0;
}
.owl-dt-timer-content .owl-dt-timer-input {
  display: block;
  width: 2em;
  text-align: center;
  color: var(--grayColor600);
  background-color: var(--bgColor10);
  border: 0.08em solid var(--grayColor900);
  border-radius: 0.25em;
  outline: medium none;
  font-size: 1.2em;
  padding: 0.2em;
}

.owl-dt-timer-divider {
  display: inline-block;
  align-self: flex-end;
  position: absolute;
  width: 0.6em;
  height: 100%;
  left: -0.3em;
}
.owl-dt-timer-divider:before, .owl-dt-timer-divider:after {
  content: "";
  display: inline-block;
  width: 0.35em;
  height: 0.35em;
  position: absolute;
  left: 50%;
  border-radius: 50%;
  transform: translateX(-50%);
  background-color: currentColor;
}
.owl-dt-timer-divider:before {
  top: 35%;
}
.owl-dt-timer-divider:after {
  bottom: 35%;
}

.owl-dt-control-button {
  -webkit-user-select: none;
          user-select: none;
  cursor: pointer;
  outline: none;
  border: none;
  -webkit-tap-highlight-color: transparent;
  display: inline-block;
  white-space: nowrap;
  text-decoration: none;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
  background-color: transparent;
  font-size: 1em;
  color: var(--grayColor900);
}
.owl-dt-control-button .owl-dt-control-button-content {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  outline: none;
}

.owl-dt-control-period-button .owl-dt-control-button-content {
  height: 1.5em;
  padding: 0 0.5em;
  border-radius: 0.25em;
  color: var(--grayColor800);
  transition: background-color 100ms linear;
}
.owl-dt-control-period-button:hover > .owl-dt-control-button-content {
  background-color: var(--bgColor100);
}
.owl-dt-control-period-button .owl-dt-control-button-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1em;
  height: 1em;
  margin: 0.1em;
  transition: transform 200ms ease;
}

.owl-dt-control-arrow-button .owl-dt-control-button-content {
  padding: 0;
  border-radius: 50%;
  width: 1.3em;
  height: 1.5em;
}
.owl-dt-control-arrow-button[disabled] {
  color: var(--grayColor300);
  cursor: default;
}
.owl-dt-control-arrow-button svg {
  width: 40%;
  height: 100%;
  fill: var(--grayColor400);
}

.owl-dt-inline-container,
.owl-dt-popup-container {
  position: relative;
  width: 100%;
  border-radius: var(--fieldRadius);
  overflow: hidden;
  border: 0.08em solid var(--datePickerBorderColor);
  box-shadow: 0.17em 0.33em 0.92em 0em rgba(0, 0, 0, 0.1);
  top: 1em;
}
.owl-dt-inline-container .owl-dt-calendar,
.owl-dt-inline-container .owl-dt-timer,
.owl-dt-popup-container .owl-dt-calendar,
.owl-dt-popup-container .owl-dt-timer {
  width: 100%;
}
.owl-dt-inline-container .owl-dt-calendar,
.owl-dt-popup-container .owl-dt-calendar {
  height: var(--datePickerCalendarHeight);
  background: var(--bgColor10);
}

.owl-dt-dialog-container {
  max-height: 95vh;
  margin: -1.5em;
}
.owl-dt-dialog-container .owl-dt-calendar {
  min-width: 20.82em;
  min-height: 27.5em;
  max-width: 62.48em;
  max-height: 62.48em;
}
.owl-dt-dialog-container .owl-dt-timer {
  min-width: 20.82em;
  max-width: 62.48em;
}

@media all and (orientation: landscape) {
  .owl-dt-dialog-container .owl-dt-calendar {
    width: 58vh;
    height: 62vh;
  }
  .owl-dt-dialog-container .owl-dt-timer {
    width: 58vh;
  }
}
@media all and (orientation: portrait) {
  .owl-dt-dialog-container .owl-dt-calendar {
    width: 80vw;
    height: 80vw;
  }
  .owl-dt-dialog-container .owl-dt-timer {
    width: 80vw;
  }
}
.owl-dt-container-buttons {
  display: flex;
  width: 100%;
  height: 3em;
  color: var(--accentColor50);
}

.owl-dt-container-control-button {
  font-size: 1em;
  width: 50%;
  height: 100%;
  border-radius: 0;
}
.owl-dt-container-control-button .owl-dt-control-button-content {
  height: 100%;
  width: 100%;
  transition: background-color 100ms linear;
}

.owl-dt-container-info {
  padding: 0 0.5em;
  cursor: pointer;
  font-size: 0.9em;
  background: var(--bgColor10);
  -webkit-tap-highlight-color: transparent;
}
.owl-dt-container-info .owl-dt-container-range {
  outline: none;
}
.owl-dt-container-info .owl-dt-container-range .owl-dt-container-range-content {
  display: flex;
  justify-content: space-between;
  padding: 0.5em 0;
  font-size: 0.8em;
}
.owl-dt-container-info .owl-dt-container-range:last-child {
  border-top: 0.08em solid var(--grayColor100);
}
.owl-dt-container-info .owl-dt-container-info-active {
  color: var(--accentColor50);
}

.owl-dt-container-disabled,
.owl-dt-trigger-disabled {
  opacity: 0.35;
  filter: Alpha(Opacity=35);
  background-image: none;
  cursor: default !important;
}

.owl-dt-timer-hour12 {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--accentColor50);
}
.owl-dt-timer-hour12 .owl-dt-timer-hour12-box {
  border: 0.08em solid currentColor;
  border-radius: 0.17em;
  transition: background 200ms ease;
}
.owl-dt-timer-hour12 .owl-dt-timer-hour12-box .owl-dt-control-button-content {
  width: 100%;
  height: 100%;
  padding: 0.5em;
}
.owl-dt-timer-hour12 .owl-dt-timer-hour12-box:focus .owl-dt-control-button-content, .owl-dt-timer-hour12 .owl-dt-timer-hour12-box:hover .owl-dt-control-button-content {
  background: var(--accentColor50);
}

.owl-dt-calendar-only-current-month .owl-dt-calendar-cell-out {
  visibility: hidden;
  cursor: default;
}

.owl-dt-inline {
  display: inline-block;
}

.owl-dt-control {
  outline: none;
  cursor: pointer;
}
.owl-dt-control .owl-dt-control-content {
  outline: none;
}
.owl-dt-control:focus > .owl-dt-control-content {
  background-color: var(--bgColor700);
}
.owl-dt-control:not(:-moz-focusring):focus > .owl-dt-control-content {
  box-shadow: none;
}

.owl-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 0.08em;
  margin: -0.08em;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 0.08em;
}

/* Leaflet SCSS files (local SCSS partials) */
.leaflet-control-zoomslider-wrap {
  background-color: rgba(255, 255, 255, 0);
  border-bottom: 0.08em solid #ccc;
}

.leaflet-control-zoomslider-body {
  width: 0.33em;
  border: black;
  border-width: 0em 0.75em 0em 0.75em;
  background-color: var(--bgColor10);
  margin: 0 auto;
  height: 8.33em !important;
  box-shadow: aliceblue;
  box-shadow: 0em 0.08em 0.17em 0.17em #bfbfbf;
}

.leaflet-control-zoomslider-knob {
  position: relative;
  width: 1em;
  height: 0.5em;
  background-color: #ff00d4;
  border-radius: 0.17em;
  border: 0.08em solid #fffcfc;
  margin-left: -0.5em;
}

.leaflet-control-zoomslider-body:hover {
  cursor: pointer;
}

.leaflet-control-zoomslider-knob:hover {
  cursor: default;
  cursor: -moz-grab;
}

.leaflet-dragging .leaflet-control-zoomslider,
.leaflet-dragging .leaflet-control-zoomslider-wrap,
.leaflet-dragging .leaflet-control-zoomslider-body,
.leaflet-dragging .leaflet-control-zoomslider a,
.leaflet-dragging .leaflet-control-zoomslider a.leaflet-control-zoomslider-disabled,
.leaflet-dragging .leaflet-control-zoomslider-knob:hover {
  cursor: move;
  cursor: -moz-grabbing;
}

/** Leaflet Zoom Styles **/
.leaflet-container .leaflet-control-zoomslider {
  margin-left: 0.83em;
  margin-top: 0.83em;
}

.leaflet-control-zoomslider a {
  width: 2.17em;
  height: 2.17em;
  text-align: center;
  text-decoration: none;
  color: black;
  display: block;
}

.leaflet-control-zoomslider a:hover {
  background-color: #f4f4f4;
}

.leaflet-control-zoomslider-in {
  font: bold 1.5em "Lucida Console", Monaco, monospace;
}

.leaflet-control-zoomslider-in:after {
  content: "+";
}

.leaflet-control-zoomslider-out {
  font: bold 1.83em "Lucida Console", Monaco, monospace;
}

.leaflet-control-zoomslider-out:after {
  content: "−";
}

.leaflet-control-zoomslider a.leaflet-control-zoomslider-disabled {
  cursor: default;
  color: #bbb;
}

/* Touch */
.leaflet-touch .leaflet-control-zoomslider-body {
  background-position: 0.83em 0em;
}

.leaflet-touch .leaflet-control-zoomslider-knob {
  width: 1.58em;
  margin-left: -0.67em;
}

.leaflet-touch .leaflet-control-zoomslider a {
  width: 2.67em;
  line-height: 2.5em;
  height: 2.5em !important;
  box-shadow: 0em 0em 0.42em;
}

.leaflet-touch .leaflet-control-zoomslider a:hover {
  width: 2.67em;
  line-height: 2.5em;
  height: 2.5em !important;
  box-shadow: 0em 0em 0.42em;
}

.leaflet-touch .leaflet-control-zoomslider-in {
  font-size: 2em;
  line-height: 2.42em;
}

.leaflet-touch .leaflet-control-zoomslider-out {
  font-size: 2.33em;
  line-height: 2.5em;
}

.leaflet-touch .leaflet-control-zoomslider {
  box-shadow: none;
  border: none;
  background: none !important;
}

/* Old IE */
.leaflet-oldie .leaflet-control-zoomslider-wrap {
  width: 2.17em;
}

.leaflet-oldie .leaflet-control-zoomslider {
  border: 0.08em solid #999;
}

.leaflet-white-background {
  background: #ffffff;
}

.greyscale,
.greyscale .leaflet-google-layer,
.greyscale .leaflet-google-tile-container {
  filter: url("data:image/svg+xml;utf8, <svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  filter: gray;
  -webkit-filter: grayscale(100%);
  -webkit-backface-visibility: hidden;
}

.leaflet-bottom {
  margin-bottom: 0em !important;
}

.leaflet-control-zoom-in {
  color: #606060 !important;
  font: bold 1.39em monospace !important;
}

.leaflet-control-zoom-out {
  color: #606060 !important;
  font: bold 1.39em monospace !important;
}

.leaflet-container {
  font-family: var(--fontFamily);
  font-size: 1em !important;
  line-height: 1.5em;
  z-index: 1;
}
.leaflet-container .gmnoprint,
.leaflet-container .gmnoscreen,
.leaflet-container .gm-style-cc {
  display: none !important;
}
.leaflet-container .leaflet-bar {
  background: #ffffff;
  box-shadow: 0em 0em 0.67em rgba(0, 0, 0, 0.2) !important;
}
.leaflet-container .leaflet-bar.leaflet-disabled {
  color: rgba(0, 0, 0, 0.88);
}
.leaflet-container .leaflet-bar a {
  height: 2.46em;
  width: 2.46em;
  line-height: 2.46em;
  font-size: 1.39em;
  border-radius: 0.15em;
  color: #606060;
  display: flex;
  background: transparent;
  justify-content: center;
  align-items: center;
}
.leaflet-container .leaflet-bar a:hover {
  height: 2.46em;
  width: 2.46em;
  line-height: 2.46em;
  font-size: 1.39em;
  border-radius: 0.15em;
  color: #606060;
  display: flex;
  justify-content: center;
  align-items: center;
}
.leaflet-container .leaflet-bar a i {
  font-size: 1.54em;
  margin-bottom: 0.15em;
}
.leaflet-container .leaflet-bar a:first-child {
  border-radius: 0em;
}
.leaflet-container .leaflet-bar a.iconWrapper:before {
  font-size: 1.39em;
}
.leaflet-container .leaflet-draw-toolbar .leaflet-draw-edit-edit {
  background: none;
}
.leaflet-container .leaflet-draw-toolbar .leaflet-draw-edit-edit:before {
  content: "\e95f";
  font-size: 1.39em;
  font-family: "icomoon", Serif, Sans-serif;
}
.leaflet-container .leaflet-draw-toolbar .leaflet-draw-edit-remove {
  background: none;
}
.leaflet-container .leaflet-draw-toolbar .leaflet-draw-edit-remove:before {
  content: "\e993";
  font-size: 1.39em;
  font-family: "icomoon", Serif, Sans-serif;
}
.leaflet-container .leaflet-bottom.leaflet-left {
  display: flex;
}
.leaflet-container .leaflet-bottom.leaflet-left .leaflet-control-coordinates {
  padding: 0.77em 1.54em;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2em;
  margin-bottom: 1.23em;
  margin-left: 1.23em;
  display: flex;
  align-items: center;
  font-size: 1em;
  font-weight: bold;
}
.leaflet-container .leaflet-bottom .leaflet-control-scale {
  padding: 0.77em 1.54em;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2em;
  margin-bottom: 1.23em;
  margin-left: 1.23em;
}
.leaflet-container .leaflet-bottom .leaflet-control-scale .leaflet-control-scale-line {
  background: transparent;
  border-color: rgba(85, 85, 85, 0.9);
  color: #000;
  font-size: 0.85em;
  font-family: var(--fontFamily);
  font-weight: bold;
  text-align: center;
}

/* leaflet measure css */
.leaflet-measure-popup {
  color: rgba(0, 0, 0, 0.87);
}
.leaflet-measure-popup * {
  box-sizing: border-box;
}
.leaflet-measure-popup .leaflet-popup-content-wrapper {
  border: 0 none;
  padding: 0;
  box-shadow: 0 0.08em 0.42em rgba(0, 0, 0, 0.4);
}
.leaflet-measure-popup .leaflet-popup-content {
  margin: 0;
}
.leaflet-measure-popup .leaflet-popup-tip {
  box-shadow: 0 0.08em 0.42em rgba(0, 0, 0, 0.4);
}
.leaflet-measure-popup .measure-popup-wrap {
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
}
.leaflet-measure-popup .measure-popup-header {
  background-color: #2278cf;
  max-height: 4em;
  height: 4em;
  padding: 0em 1.25em;
  color: #fff;
  font-size: 1.17em;
  text-align: center;
  cursor: move;
  line-height: 4em;
}
.leaflet-measure-popup .measure-popup-header .md-icon-button {
  margin-right: -0.83em;
  margin-top: 0.33em;
  vertical-align: middle;
  display: inline-block;
}
.leaflet-measure-popup .measure-popup-header md-icon {
  color: #fff;
}
.leaflet-measure-popup .measure-popup-header span {
  vertical-align: middle;
  display: inline-block;
}
.leaflet-measure-popup .measure-popup-body {
  overflow: hidden;
  max-height: 14.16em;
  width: 100%;
  font-size: 1.08em;
  padding: 0.42em 0;
}
.leaflet-measure-popup .measure-popup-body .perfect-scrollbar {
  max-height: 13.33em;
}
.leaflet-measure-popup .measure-popup-body span {
  vertical-align: middle;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.leaflet-measure-popup .measure-popup-body .measureheadingtool-row {
  padding: 0.42em 1.25em;
  position: relative;
}
.leaflet-measure-popup .measurecountindex {
  position: absolute;
  left: 1.25em;
  top: 0.58em;
  width: 1.67em;
  font-size: 1.17em;
}
.leaflet-measure-popup .measure-info {
  width: 100%;
  display: inline-block;
  padding-left: 1.67em;
  position: relative;
}
.leaflet-measure-popup .measure-icon {
  font-size: 1.75em;
  padding-right: 0.58em;
}
.leaflet-measure-popup .measurelatlng {
  padding: 0 0.42em 0 0em;
  width: 7.91em;
}
.leaflet-measure-popup .measureDegree {
  width: 4.58em;
  position: absolute;
  right: 0em;
  top: 0.08em;
}
.leaflet-measure-popup .measuremage {
  padding: 0.17em 3.33em 0.17em 2.08em;
  width: 17.91em;
}
.leaflet-measure-popup .measureDistance {
  width: 7.08em;
  position: absolute;
  right: 0em;
  bottom: 0.17em;
}
.leaflet-measure-popup .measure-greyText {
  color: #999;
}
.leaflet-measure-popup .measure-redText {
  color: #eb4609;
}
.leaflet-measure-popup .measure-blueText {
  color: #2987ca;
}
.leaflet-measure-popup .measure-blackText {
  color: #111;
}
.leaflet-measure-popup .measure-popup-chart {
  padding: 0.58em 1.25em;
  border-top: 0.08em solid rgba(0, 0, 0, 0.13);
  height: 12.5em;
}
.leaflet-measure-popup .measure-popup-chart .measure-popup-chart-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.leaflet-measure-area-crosshair {
  cursor: crosshair !important;
}

.leaflet-measure-circle-tooltip {
  visibility: inherit !important;
}
.leaflet-measure-circle-tooltip::before {
  content: none !important;
}

.leaflet-draw-tooltip {
  background-color: rgb(51, 51, 51);
  color: rgb(255, 247, 247);
  border-radius: 0.5em;
}

.leaflet-draw-tooltip-subtext {
  color: var(--grayColor10) !important;
}

.leaflet-dragmarker-crosshair {
  cursor: crosshair !important;
}

.leaflet-zoom-box-crosshair {
  cursor: crosshair !important;
}

.leaflet-measure-editing-icon {
  transition: background-color 0.25s;
  outline: none;
  box-shadow: 0 0 0.25em rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  top: -0.17em;
  left: -0.17em;
  display: flex !important;
  justify-content: center;
  align-items: center;
  font-size: 0.92em;
  line-height: 1.23em;
  background: #ec0606 !important;
  border: none !important;
  color: #ffffff;
}

.leaflet-measuredots-icon {
  width: 0.83em !important;
  height: 0.83em !important;
}

.leaflet-popup-content-wrapper {
  border-radius: 0.62em !important;
  box-shadow: none !important;
}

.leaflet-measure-text-icon {
  width: 3.08em;
  height: 1.23em;
  font-size: 0.77em;
  line-height: 1.23em;
  color: #333333;
  background: transparent !important;
  border: none !important;
  text-align: center;
  font-weight: 700;
}

@-moz-document url-prefix() {
  .layer-legend.leaflet-bar.leaflet-legend-clicked .iconwrapper {
    padding: 0 0.08em 0.17em 0em;
  }
  .layer-legend.leaflet-bar .iconwrapper {
    padding: 0.17em 0.08em 0em 0.17em;
  }
}
.layer-legend.leaflet-bar .iconwrapper {
  padding: 0.08em 0.17em 0em 0.17em;
}

.layer-legend.leaflet-bar.leaflet-legend-clicked .iconwrapper {
  padding: 0em 0.33em 0.25em 0;
}

.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  border: 0em;
}

.leaflet-group-control.leaflet-bar {
  border-radius: 0.15em;
  overflow: hidden;
  border: 0 none !important;
}
.leaflet-group-control.leaflet-bar .leaflet-group-control-wrapper {
  width: 100%;
  overflow: hidden;
  padding-top: 1.62em;
}
.leaflet-group-control.leaflet-bar .leaflet-button-toggle-control {
  background: #909090;
  height: 1.62em;
  z-index: 999;
  position: absolute !important;
  top: 0em !important;
}
.leaflet-group-control.leaflet-bar .leaflet-button-toggle-control a {
  color: #fff;
  height: 100%;
  line-height: 1.08em !important;
  display: block;
}
.leaflet-group-control.leaflet-bar .leaflet-button-toggle-control a.arrow_up:before, .leaflet-group-control.leaflet-bar .leaflet-button-toggle-control a.arrow_down:before {
  font-weight: bold;
}
.leaflet-group-control.leaflet-bar .leaflet-bar {
  margin: 0;
  border-radius: 0;
  position: relative;
  box-shadow: none !important;
}
.leaflet-group-control.leaflet-bar .leaflet-bar:first-child {
  border-color: transparent !important;
}
.leaflet-group-control.leaflet-bar .leaflet-bar:first-child a {
  border-bottom: none !important;
}
.leaflet-group-control.leaflet-bar .leaflet-bar:last-child a {
  border-bottom: none !important;
}
.leaflet-group-control.leaflet-bar .leaflet-bar a {
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  border-bottom: 0.08em solid #ccc !important;
}
.leaflet-group-control.leaflet-bar .leaflet-bar a:hover {
  background: none;
}

.leaflet-group-horizontal-control.leaflet-bar.groupedbackground.leaflet-control {
  box-shadow: none !important;
}

.leaflet-group-horizontal-control.leaflet-bar {
  border-radius: 0.15em;
  overflow: hidden;
  border: 0 none !important;
}
.leaflet-group-horizontal-control.leaflet-bar.groupedbackground {
  overflow: visible;
  border-radius: 0;
  background-color: transparent;
  border-color: transparent !important;
}
.leaflet-group-horizontal-control.leaflet-bar.groupedbackground > .leaflet-bar {
  margin: 0 0 0 0.77em;
  border-radius: 0.15em;
}
.leaflet-group-horizontal-control.leaflet-bar > .leaflet-bar {
  margin: 0;
  border-radius: 0;
  border: 0 none !important;
  box-shadow: none;
  float: right;
  clear: none;
}
.leaflet-group-horizontal-control.leaflet-bar > .leaflet-bar:last-child {
  border-color: transparent !important;
}
.leaflet-group-horizontal-control.leaflet-bar > .leaflet-bar a {
  border-radius: 0;
  box-shadow: none;
}

.leaflet-div-icon.leaflet-editing-icon {
  background: #ff008c;
  border: 0.17em solid #fff;
  border-radius: 50%;
}
.leaflet-div-icon.leaflet-polypoint {
  border: 0.17em solid #ff008c;
  border-radius: 50%;
}

.measurmapimg {
  text-align: center !important;
}

.measurmapimg .productui-image-wrapper img {
  width: 1.33em !important;
}

.measurcrossimg img {
  width: 1.4em !important;
}

.measurcrossimg {
  text-align: center;
}

.leaflet-container .leaflet-bar a.icomoon.zoombox.leaflet-zoom-box-icon-custom::before {
  font-size: 1.39em;
}

.leaflet-edge {
  box-shadow: 0 0 0 0.17em white, 0 0 0.83em rgba(0, 0, 0, 0.35);
  border-radius: 50%;
  cursor: move;
  outline: none;
  transition: background-color 0.25s;
}

.leaflet-popup-margin-0 .leaflet-popup-content-wrapper .leaflet-popup-content {
  margin: 0;
}

.info-draggable {
  outline: none;
}
.info-draggable-label {
  font-size: 1em;
  font-weight: bold;
  transform: translate(-24%, 0);
  width: max-content;
}

/* ********** Marker cluster ************* */
.marker-cluster-small {
  background-color: rgba(181, 226, 140, 0.6);
}

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

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

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

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

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

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

.leaflet-oldie .marker-cluster-small div {
  background-color: rgb(110, 204, 57);
}

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

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

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

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

.marker-cluster {
  background-clip: padding-box;
  border-radius: 1.67em;
}

.marker-cluster div {
  width: 2.5em;
  height: 2.5em;
  margin-left: 0.42em;
  margin-top: 0.42em;
  text-align: center;
  border-radius: 1.25em;
  font: 1em "Helvetica Neue", Arial, Helvetica, sans-serif;
}

.marker-cluster span {
  line-height: 2.5em;
}

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

.leaflet-cluster-spider-leg {
  transition: stroke-dashoffset 0.3s ease-out, stroke-opacity 0.3s ease-in;
}

/* ********** div icon overwrite ************* */
.leaflet-sbs-range {
  -webkit-appearance: none;
  display: inline-block !important;
  vertical-align: middle;
  height: 0;
  padding: 0;
  margin: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.25);
  min-width: 8.33em;
  cursor: pointer;
  pointer-events: none;
  z-index: 999;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
}

.leaflet-sbs-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -0.17em;
  width: 0.33em;
  background-color: #fff;
  pointer-events: none;
  z-index: 999;
}

.leaflet-sbs-range::-ms-fill-upper {
  background: transparent;
}

.leaflet-sbs-range::-ms-fill-lower {
  background: rgba(255, 255, 255, 0.25);
}

/* Browser thingies */
.leaflet-sbs-range::-moz-range-track {
  opacity: 0;
}

.leaflet-sbs-range::-ms-track {
  opacity: 0;
}

.leaflet-sbs-range::-ms-tooltip {
  display: none;
}

/* For whatever reason, these need to be defined
* on their own so dont group them */
.leaflet-sbs-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  margin: 0;
  padding: 0;
  background: #fff;
  height: 3.33em;
  width: 3.33em;
  border-radius: 1.67em;
  cursor: ew-resize;
  pointer-events: auto;
  border: 0.08em solid #ddd;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 3.33em 3.33em;
}

.leaflet-sbs-range::-ms-thumb {
  margin: 0;
  padding: 0;
  background: #fff;
  height: 3.33em;
  width: 3.33em;
  border-radius: 1.67em;
  cursor: ew-resize;
  pointer-events: auto;
  border: 0.08em solid #ddd;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 3.33em 3.33em;
}

.leaflet-sbs-range::-moz-range-thumb {
  padding: 0;
  right: 0;
  background: #fff;
  height: 3.33em;
  width: 3.33em;
  border-radius: 1.67em;
  cursor: ew-resize;
  pointer-events: auto;
  border: 0.08em solid #ddd;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 3.33em 3.33em;
}

.leaflet-sbs-range:disabled::-moz-range-thumb {
  cursor: default;
}

.leaflet-sbs-range:disabled::-ms-thumb {
  cursor: default;
}

.leaflet-sbs-range:disabled::-webkit-slider-thumb {
  cursor: default;
}

.leaflet-sbs-range:disabled {
  cursor: default;
}

.leaflet-sbs-range:focus {
  outline: none !important;
}

.leaflet-sbs-range::-moz-focus-outer {
  border: 0;
}

.leaflet-ruler {
  height: 2.67em;
  width: 2.67em;
  background-image: image("assets/images/controlicon/measure.png");
  background-repeat: no-repeat;
  background-position: center;
}

.leaflet-ruler-clicked {
  height: 2.92em;
  width: 2.92em;
  background-repeat: no-repeat;
  border: #ff008c 0.17em solid !important;
  color: #ffffff !important;
  background-position: center;
  background-image: image("assets/images/controlicon/measure.png");
}

.leaflet-ruler-clicked-custom {
  background-repeat: no-repeat;
  border: #ff008c 0.08em solid !important;
  color: #ffffff !important;
  background-position: center;
  background-image: image("assets/images/controlicon/measure.png");
}

.leaflet-bar {
  background-color: #ffffff;
  color: dimgrey;
}

.leaflet-control {
  cursor: pointer;
}

.result-tooltip {
  background-color: var(--bgColor10);
  border-width: medium;
  border-color: #de0000;
  font-size: smaller;
}

.moving-tooltip {
  background-color: rgba(255, 255, 255, 0.7);
  background-clip: padding-box;
  opacity: 0.5;
  border: dotted;
  border-color: var(--warnColor600);
  font-size: smaller;
}

.plus-length {
  padding-left: 3.75em;
}

@-moz-document url-prefix() {
  .leaflet-ruler {
    width: 2.92em !important;
    height: 2.67em !important;
    text-align: center !important;
  }
}
.leaflet-draw-section {
  position: relative;
}

.leaflet-draw-toolbar {
  margin-top: 1em;
}

.leaflet-draw-toolbar-top {
  margin-top: 0;
}

.leaflet-draw-toolbar-notop a:first-child {
  border-top-right-radius: 0;
}

.leaflet-draw-toolbar-nobottom a:last-child {
  border-bottom-right-radius: 0;
}

.leaflet-draw-toolbar a {
  background-image: image("assets/images/spritesheet.png");
  background-image: linear-gradient(transparent, transparent), image("assets/images/spritesheet.svg");
  background-repeat: no-repeat;
  background-size: 25em 2.5em;
  background-clip: padding-box;
}

.leaflet-retina .leaflet-draw-toolbar a {
  background-image: image("assets/images/spritesheet-2x.png");
  background-image: linear-gradient(transparent, transparent), image("assets/images/spritesheet.svg");
}

.leaflet-draw a {
  display: block;
  text-align: center;
  text-decoration: none;
}

.leaflet-draw a .sr-only {
  position: absolute;
  width: 0.08em;
  height: 0.08em;
  padding: 0;
  margin: -0.08em;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.leaflet-draw-actions {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 2.17em;
  top: 0;
  white-space: nowrap;
}

.leaflet-touch .leaflet-draw-actions {
  left: 2.67em;
}

.leaflet-right .leaflet-draw-actions {
  right: 2.17em;
  left: auto;
}

.leaflet-touch .leaflet-right .leaflet-draw-actions {
  right: 2.67em;
  left: auto;
}

.leaflet-draw-actions li {
  display: inline-block;
}

.leaflet-draw-actions li:first-child a {
  border-left: 0;
}

.leaflet-draw-actions li:last-child a {
  border-radius: 0 0.33em 0.33em 0;
}

.leaflet-right .leaflet-draw-actions li:last-child a {
  border-radius: 0;
}

.leaflet-right .leaflet-draw-actions li:first-child a {
  border-radius: 0.33em 0 0 0.33em;
}

.leaflet-draw-actions a {
  background-color: #919187;
  border-left: 0.08em solid #aaa;
  color: #fff;
  font: 0.92em/1.58em "Helvetica Neue", Arial, Helvetica, sans-serif;
  line-height: 2.33em;
  text-decoration: none;
  padding-left: 0.83em;
  padding-right: 0.83em;
  height: 2.33em;
}

.leaflet-touch .leaflet-draw-actions a {
  font-size: 1em;
  line-height: 2.5em;
  height: 2.5em;
}

.leaflet-draw-actions-bottom {
  margin-top: 0;
}

.leaflet-draw-actions-top {
  margin-top: 0.08em;
}

.leaflet-draw-actions-top a,
.leaflet-draw-actions-bottom a {
  height: 2.25em;
  line-height: 2.25em;
}

.leaflet-draw-actions a:hover {
  background-color: #a0a098;
}

.leaflet-draw-actions-top.leaflet-draw-actions-bottom a {
  height: 2.17em;
  line-height: 2.17em;
}

.leaflet-draw-toolbar .leaflet-draw-draw-polyline {
  background-position: -0.17em -0.17em;
}

.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-polyline {
  background-position: 0 -0.08em;
}

.leaflet-draw-toolbar .leaflet-draw-draw-polygon {
  background-position: -2.58em -0.17em;
}

.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-polygon {
  background-position: -2.42em -0.08em;
}

.leaflet-draw-toolbar .leaflet-draw-draw-rectangle {
  background-position: -5.16em -0.17em;
}

.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-rectangle {
  background-position: -5em -0.08em;
}

.leaflet-draw-toolbar .leaflet-draw-draw-circle {
  background-position: -7.66em -0.17em;
}

.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-circle {
  background-position: -7.5em -0.08em;
}

.leaflet-draw-toolbar .leaflet-draw-draw-marker {
  background-position: -10.16em -0.17em;
}

.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-marker {
  background-position: -10em -0.08em;
}

.leaflet-draw-toolbar .leaflet-draw-draw-circlemarker {
  background-position: -22.74em -0.17em;
}

.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-circlemarker {
  background-position: -22.57em -0.08em;
}

.leaflet-draw-toolbar .leaflet-draw-edit-edit {
  background-position: -12.66em -0.17em;
}

.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-edit {
  background-position: -12.5em -0.08em;
}

.leaflet-draw-toolbar .leaflet-draw-edit-remove {
  background-position: -15.16em -0.17em;
}

.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-remove {
  background-position: -15em -0.08em;
}

.leaflet-draw-toolbar .leaflet-draw-edit-edit.leaflet-disabled {
  background-position: -17.66em -0.17em;
}

.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-edit.leaflet-disabled {
  background-position: -17.5em -0.08em;
}

.leaflet-draw-toolbar .leaflet-draw-edit-remove.leaflet-disabled {
  background-position: -20.16em -0.17em;
}

.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-remove.leaflet-disabled {
  background-position: -20em -0.17em;
}

.leaflet-mouse-marker {
  background-color: #fff;
  cursor: crosshair;
}

.leaflet-draw-tooltip {
  background: #363636;
  background: rgba(0, 0, 0, 0.5);
  border: 0.08em solid transparent;
  border-radius: 0.33em;
  color: #fff;
  font: 1em/1.5em "Helvetica Neue", Arial, Helvetica, sans-serif;
  margin-left: 1.67em;
  margin-top: -1.75em;
  padding: 0.33em 0.67em;
  position: absolute;
  visibility: hidden;
  white-space: nowrap;
  z-index: 6;
}

.leaflet-draw-tooltip:before {
  border-right: 0.5em solid black;
  border-right-color: rgba(0, 0, 0, 0.5);
  border-top: 0.5em solid transparent;
  border-bottom: 0.5em solid transparent;
  content: "";
  position: absolute;
  top: 0.58em;
  left: -0.58em;
}

.leaflet-error-draw-tooltip {
  background-color: #f2dede;
  border: 0.08em solid #e6b6bd;
  color: #b94a48;
}

.leaflet-error-draw-tooltip:before {
  border-right-color: #e6b6bd;
}

.leaflet-draw-tooltip-single {
  margin-top: -1em;
}

.leaflet-draw-tooltip-subtext {
  color: #f8d5e4;
}

.leaflet-draw-guide-dash {
  font-size: 1%;
  opacity: 0.6;
  position: absolute;
  width: 0.42em;
  height: 0.42em;
}

.leaflet-edit-marker-selected {
  background-color: rgba(254, 87, 161, 0.1);
  border: 0.33em dashed rgba(254, 87, 161, 0.6);
  border-radius: 0.33em;
  box-sizing: content-box;
}

.leaflet-edit-move {
  cursor: move;
}

.leaflet-edit-resize {
  cursor: pointer;
}

.leaflet-oldie .leaflet-draw-toolbar {
  border: 0.08em solid #999;
}

/* Global component SCSS */
.window-minimized {
  padding: 0.3em;
}
.window-minimized .mat-mdc-dialog-content {
  overflow: hidden !important;
}
.window-minimized .window-dialog-header {
  padding: 0 0 0 1.23em !important;
}

.html-window .mat-mdc-dialog-content {
  overflow: hidden;
  border: solid 0.08em #ccc;
  position: relative;
  transition: box-shadow 200ms cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0 0.25em 0.08em -0.17em rgba(0, 0, 0, 0.2), 0 0.17em 0.17em 0 rgba(0, 0, 0, 0.14), 0 0.08em 0.42em 0 rgba(0, 0, 0, 0.12) !important;
}
.html-window .mat-mdc-dialog-content:active {
  box-shadow: 0 0.42em 0.42em -0.25em rgba(0, 0, 0, 0.2), 0 0.67em 0.83em 0.08em rgba(0, 0, 0, 0.14), 0 0.25em 1.17em 0.17em rgba(0, 0, 0, 0.12) !important;
}

.start:dir(ltr) {
  border-bottom-left-radius: 100%;
  border-top-left-radius: 100%;
}

.start:dir(rtl) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 100%;
  border-top-right-radius: 100%;
}

.end:dir(ltr) {
  border-bottom-right-radius: 100%;
  border-top-right-radius: 100%;
}

.end:dir(rtl) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 100%;
  border-top-left-radius: 100%;
}

.mat-mdc-chip-list-wrapper {
  margin: 0em !important;
}

.mat-stepper-horizontal {
  height: 100%;
  overflow: hidden;
  background-color: var(--bgColor50) !important;
}
.mat-stepper-horizontal-line {
  border-top-width: 0.19em !important;
  border-top-color: var(--grayColor400) !important;
  max-width: 0;
}
.mat-stepper-vertical {
  background-color: var(--bgColor10);
}

.mat-step-header .mat-step-icon {
  height: 1.85em;
  width: 1.85em;
  border-radius: 50%;
}
.mat-step-header .mat-step-icon-state-number {
  color: var(--bgColor50) !important;
}
.mat-step-header .mat-step-icon-selected {
  background-color: var(--accentColor800);
}
.mat-step-label {
  font-size: 1.08em !important;
}
.mat-step-label-selected {
  font-weight: 400 !important;
}

.mat-horizontal-content-container {
  padding: 0em !important;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  font-family: var(--fontFamily);
  font-weight: 400;
}

div * {
  font-family: var(--fontFamily);
}

div {
  color: var(--grayColor700);
}

.fa,
.fas {
  font-weight: 900;
}

.material-icons {
  font-size: 1.84em;
  padding-left: 0.08em;
}

.mat-icon {
  font-size: 1.39em;
  position: relative;
}
.mat-icon.fa, .mat-icon.fas, .mat-icon.far, .mat-icon.fal, .mat-icon.fad, .mat-icon.fab {
  font-size: 1.5em;
  text-align: center;
  top: 0.3em;
}
.mat-icon.icomoon {
  font-size: 1.5em;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

a.snackbar-link {
  text-decoration: none;
  color: #047205;
  cursor: pointer;
}

a.text-link {
  text-decoration: underline;
  cursor: pointer;
}
a.text-link:focus {
  text-decoration: none;
  outline-width: 0.08em;
  outline-style: auto;
  padding: 0.3em;
}
a.text-link:hover {
  text-decoration: none;
}
a.text-link:active {
  font-weight: bold;
  text-decoration: none;
}

.mat-mdc-radio-label-content {
  color: var(--grayColor700) !important;
}

* {
  box-sizing: border-box;
}

.h4-font {
  margin: 0 !important;
  font-weight: 500 !important;
  font-size: 1.09em !important;
  line-height: 1.41em !important;
}

/* typography changes h1 to h5 and body1 body2 start */
h1,
h2,
h3,
h4,
h5,
.h1,
.h2,
.h3,
.h4,
.h5 {
  margin: 0 !important;
  color: var(--grayColor800);
}

h1,
.h1 {
  font-size: 1.88em !important;
  line-height: 2.19em !important;
}

h2,
.h2 {
  font-size: 1.56em !important;
  line-height: 1.88em !important;
}

h3,
.h3 {
  font-size: 1.25em !important;
  line-height: 1.56em !important;
}

h4,
.h4 {
  font-size: 1.09em !important;
  line-height: 1.41em !important;
}

h5,
.h5 {
  font-size: 0.94em !important;
  line-height: 1.25em !important;
}

.body-1 {
  font-size: 1.09em;
  line-height: 1.41em;
  color: var(--grayColor800) !important;
}

.body-2 {
  font-size: 0.94em;
  line-height: 1.25em;
  color: var(--grayColor800) !important;
}

.overline {
  font-size: 0.78em !important;
  line-height: 1.09em !important;
  color: var(--grayColor800) !important;
}

/* typography changes h1 to h5 and body1 body2 end */
.label-ellipsis {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.rex-font-display-1 {
  font-size: 3.54em !important;
}

.rex-font-display-2 {
  font-size: 3.08em !important;
}

.rex-font-display-3 {
  font-size: 2.77em !important;
}

.rex-font-display-4 {
  font-size: 2.46em !important;
}

.rex-font-display-5 {
  font-size: 2.15em !important;
}

.rex-font-header-1 {
  font-size: 1.85em !important;
}

.rex-font-header-2 {
  font-size: 1.54em !important;
}

.rex-font-header-3 {
  font-size: 1.23em !important;
}

.rex-font-header-4 {
  font-size: 1.08em !important;
}

.rex-font-header-5 {
  font-size: 0.92em !important;
}

.rex-font-lead-body {
  font-size: 1.54em !important;
}

.rex-font-body-1 {
  font-size: 1.23em !important;
}

.rex-font-body-2 {
  font-size: 1.08em !important;
}

.rex-font-caption {
  font-size: 0.92em !important;
}

.rex-font-overline {
  font-size: 0.77em !important;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-family: var(--fontFamily);
}

::-moz-placeholder {
  /* Firefox 19+ */
  font-family: var(--fontFamily);
}

:-ms-input-placeholder {
  /* IE 10+ */
  font-family: var(--fontFamily);
}

:-moz-placeholder {
  /* Firefox 18- */
  font-family: var(--fontFamily);
}

/* below class moved to mat-button component */
.mat-mdc-icon-button {
  width: var(--buttonIconWidth) !important;
  height: var(--buttonIconHeight) !important;
  line-height: var(--buttonIconHeight) !important;
}

/* below has affects on checkbox, select box multiple, multiselect autocomplete */
.mdc-checkbox,
mat-pseudo-checkbox {
  max-width: 1.5em;
  min-width: 1.5em;
  min-height: 1.5em;
  max-height: 1.5em;
}

/* am pm changes */
.owl-dt-timer {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  height: auto;
  padding: 0.5em;
}
.owl-dt-timer .owl-dt-timer-divider {
  display: none;
}
.owl-dt-timer .owl-dt-timer-box {
  flex-direction: row;
  border: 0.08em solid var(--grayColor100) !important;
  border-radius: var(--fieldRadius);
  height: 2.5em;
  margin: 0.2em;
  padding: 0.31em 0.62em;
  min-width: 3.7em;
  width: 100%;
}
.owl-dt-timer .owl-dt-timer-box .owl-dt-control-arrow-button {
  color: var(--grayColor900);
  cursor: default;
  right: 0.31em;
  position: absolute;
  top: 0.1em;
}
.owl-dt-timer .owl-dt-timer-input {
  border: none;
  text-align: left;
  padding: 0;
  margin-right: 0.5em;
  font-size: 1em;
}
.owl-dt-timer button:last-child {
  top: 0.9em;
}
.owl-dt-timer .owl-dt-timer-content {
  display: block;
  margin: 0;
}
.owl-dt-timer .owl-dt-timer-hour12 {
  color: var(--grayColor900);
  flex-direction: row;
  height: 2.5em;
}
.owl-dt-timer .owl-dt-timer-hour12-box {
  height: 100%;
  font-size: 1.08em;
  border: none;
  border: 0.08em solid var(--grayColor100);
  border-radius: var(--fieldRadius);
  margin: 0em 0.2em;
  padding: 0.3em !important;
  width: 100%;
  align-items: center;
  display: flex;
}
.owl-dt-timer .owl-dt-timer-hour12-box:hover .owl-dt-control-button-content {
  background: none;
}

.owl-dt-container-info .owl-dt-container-range .owl-dt-container-range-content {
  font-size: 0.9em;
}

.owl-dt-calendar .owl-dt-calendar-control .owl-dt-control.owl-dt-control-button {
  font-size: 0.8em;
  display: flex;
  place-content: center;
  align-items: center;
}

.owl-dt-calendar .owl-dt-calendar-control .owl-dt-control.owl-dt-control-button.owl-dt-container-control-button {
  font-size: 0.8em;
}

.owl-dt-control.owl-dt-control-button.owl-dt-container-control-button {
  color: var(--grayColor600);
  font-size: 0.8em;
}

.owl-dt-calendar-table .owl-dt-calendar-body .owl-dt-calendar-cell-in-range.owl-dt-calendar-cell-range-from:dir(ltr) {
  border-top-left-radius: var(--datePickerSelectedCellBorderRadius);
  border-bottom-left-radius: var(--datePickerSelectedCellBorderRadius);
}
.owl-dt-calendar-table .owl-dt-calendar-body .owl-dt-calendar-cell-in-range.owl-dt-calendar-cell-range-from:dir(rtl) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: var(--datePickerSelectedCellBorderRadius);
  border-top-right-radius: var(--datePickerSelectedCellBorderRadius);
}
.owl-dt-calendar-table .owl-dt-calendar-body .owl-dt-calendar-cell-selected {
  border-radius: var(--datePickerSelectedCellBorderRadius);
}
.owl-dt-calendar-table .owl-dt-calendar-body .owl-dt-calendar-cell-content {
  border-radius: var(--datePickerSelectedCellBorderRadius);
}
.owl-dt-calendar-table .owl-dt-calendar-body .owl-dt-calendar-cell-in-range.owl-dt-calendar-cell-range-from .owl-dt-calendar-cell-selected {
  border-start-end-radius: var(--datePickerCellRangeFromBorderRadius) !important;
  border-end-end-radius: var(--datePickerCellRangeFromBorderRadius) !important;
}
.owl-dt-calendar-table .owl-dt-calendar-body .owl-dt-calendar-cell-in-range.owl-dt-calendar-cell-range-to .owl-dt-calendar-cell-selected {
  border-start-start-radius: var(--datePickerCellRangeFromBorderRadius) !important;
  border-end-start-radius: var(--datePickerCellRangeFromBorderRadius) !important;
}
.owl-dt-calendar-table .owl-dt-calendar-body .owl-dt-calendar-cell-in-range.owl-dt-calendar-cell-range-from.owl-dt-calendar-cell-range-to .owl-dt-calendar-cell-selected {
  border-start-start-radius: unset !important;
  border-start-end-radius: unset !important;
  border-end-start-radius: unset !important;
  border-end-end-radius: unset !important;
  border-radius: var(--datePickerSelectedCellBorderRadius) !important;
}
.owl-dt-calendar-table .owl-dt-calendar-body .owl-dt-calendar-cell-in-range.owl-dt-calendar-cell-range-to:dir(ltr) {
  border-top-right-radius: var(--datePickerSelectedCellBorderRadius);
  border-bottom-right-radius: var(--datePickerSelectedCellBorderRadius);
}
.owl-dt-calendar-table .owl-dt-calendar-body .owl-dt-calendar-cell-in-range.owl-dt-calendar-cell-range-to:dir(rtl) {
  border-top-left-radius: var(--datePickerSelectedCellBorderRadius);
  border-bottom-left-radius: var(--datePickerSelectedCellBorderRadius);
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.mat-mdc-calendar-table .mat-mdc-calendar-body .mat-mdc-calendar-body-cell.start {
  border-bottom-left-radius: var(--fieldRadius);
  border-top-left-radius: var(--fieldRadius);
}
.mat-mdc-calendar-table .mat-mdc-calendar-body .mat-mdc-calendar-body-cell.end {
  border-bottom-right-radius: var(--fieldRadius);
  border-top-right-radius: var(--fieldRadius);
}
.mat-mdc-calendar-table .mat-mdc-calendar-body .mat-mdc-calendar-body-cell .mat-mdc-calendar-body-cell-content {
  border-radius: var(--fieldRadius);
}

.owl-dt-container {
  font-size: 1.23em;
}

/* below form field css affects input-box, select-box, multiselect-autocomplete
change all input border as per figma start */
.mat-form-field-outline {
  background-color: var(--bgColor10);
  border-radius: 0.5em;
}

.mat-form-field-appearance-outline .mdc-notched-outline__leading,
.mat-form-field-appearance-outline .mdc-notched-outline__trailing {
  border: unset;
}

.mat-form-field-appearance-outline .mdc-notched-outline__leading:dir(ltr) {
  border-radius: var(--fieldRadius) 0 0 var(--fieldRadius) !important;
  border-right-style: none !important;
  min-width: 1.39em !important;
}

.mat-form-field-appearance-outline .mdc-notched-outline__leading:dir(rtl) {
  border-radius: 0 var(--fieldRadius) var(--fieldRadius) 0 !important;
  border-left-style: none !important;
  min-width: 1.39em !important;
}

.mat-form-field-appearance-outline .mdc-notched-outline__trailing:dir(ltr) {
  border-radius: 0 var(--fieldRadius) var(--fieldRadius) 0 !important;
  border-left-style: none !important;
  min-width: 0.39em !important;
}

.mat-form-field-appearance-outline .mdc-notched-outline__trailing:dir(rtl) {
  border-radius: var(--fieldRadius) 0 0 var(--fieldRadius) !important;
  border-right-style: none !important;
  min-width: 0.39em !important;
}

.mat-form-field-appearance-outline .mdc-notched-outline__notch {
  border-radius: 0.0000001em !important;
  border: 0.09em solid currentColor !important;
  border-left-style: none !important;
  border-right-style: none !important;
}

.mat-mdc-form-field:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:hover:not([disabled]) .mdc-notched-outline__trailing,
.mat-mdc-form-field:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:hover:not([disabled]) .mdc-notched-outline__notch,
.mat-mdc-form-field:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:hover:not([disabled]) .mdc-notched-outline__leading {
  border-width: 0.09em !important;
  border-color: var(--accentColor500) !important;
}

.mat-focused .mat-mdc-form-field-flex .mdc-notched-outline__trailing,
.mat-focused .mat-mdc-form-field-flex .mdc-notched-outline__notch,
.mat-focused .mat-mdc-form-field-flex .mdc-notched-outline__leading {
  border: unset !important;
}

.layer-modules-icon .productui-input-button button {
  font-size: 1.21em !important;
}
.layer-modules-icon .gis-container-map-searchBox button {
  font-size: 1.21em !important;
}

/* below css moved to menu component */
/** menu **/
.productui-form-menu.mat-mdc-menu-panel,
.generic-menu.mat-mdc-menu-panel {
  min-width: 16.36em;
  max-width: 25.46em;
  min-height: auto;
  max-height: calc(100vh - 4.36em);
  border: 0.08em solid var(--grayColor100);
  box-shadow: 0.08em 0em 1.17em -0.33em var(--grayColor500);
  border-radius: var(--fieldRadius);
}
.productui-form-menu button.mat-mdc-menu-item,
.productui-form-menu span.mat-mdc-menu-item,
.generic-menu button.mat-mdc-menu-item,
.generic-menu span.mat-mdc-menu-item {
  font-family: var(--fontFamily);
  font-size: 1.08em;
  background-color: var(--bgColor10);
  line-height: 1em;
  height: 2.5em;
  min-height: 100%;
  padding: 0em 1em;
  color: var(--grayColor800);
  border-radius: var(--fieldRadius) !important;
}
.productui-form-menu button.mat-mdc-menu-item[disabled],
.productui-form-menu span.mat-mdc-menu-item[disabled],
.generic-menu button.mat-mdc-menu-item[disabled],
.generic-menu span.mat-mdc-menu-item[disabled] {
  opacity: 0.5;
}
.productui-form-menu button.mat-mdc-menu-item .mat-icon,
.productui-form-menu span.mat-mdc-menu-item .mat-icon,
.generic-menu button.mat-mdc-menu-item .mat-icon,
.generic-menu span.mat-mdc-menu-item .mat-icon {
  margin-right: 0.413em;
  color: #232361;
}
.productui-form-menu button.mat-mdc-menu-item .mat-icon.icomoon,
.productui-form-menu span.mat-mdc-menu-item .mat-icon.icomoon,
.generic-menu button.mat-mdc-menu-item .mat-icon.icomoon,
.generic-menu span.mat-mdc-menu-item .mat-icon.icomoon {
  font-size: 1.39em !important;
  line-height: 1em !important;
}
.productui-form-menu button.mat-mdc-menu-item:hover:not([disabled]),
.productui-form-menu span.mat-mdc-menu-item:hover:not([disabled]),
.generic-menu button.mat-mdc-menu-item:hover:not([disabled]),
.generic-menu span.mat-mdc-menu-item:hover:not([disabled]) {
  color: #232361;
}
.productui-form-menu bntv-icon,
.generic-menu bntv-icon {
  vertical-align: middle !important;
}

.mat-mdc-menu-panel .mat-mdc-menu-content .menubar-product-item.mat-mdc-menu-item {
  font-size: 1em;
}

.disable-trigger {
  pointer-events: none;
}

.font-bold {
  font-weight: 700;
}

/* below css has affects auto-complete, multiselection-auto-complete, select-box-with-tabs, select-box, map-search */
.productui-form-select-panel.mat-mdc-select-panel, .productui-form-select-panel.mat-mdc-autocomplete-panel,
.form-select-panel.mat-mdc-select-panel,
.form-select-panel.mat-mdc-autocomplete-panel,
.form-autocomplete-panel.mat-mdc-select-panel,
.form-autocomplete-panel.mat-mdc-autocomplete-panel {
  min-width: auto;
  overflow-y: auto !important;
  margin-top: 0em;
  padding: 0em;
}
.productui-form-select-panel .mat-mdc-option,
.form-select-panel .mat-mdc-option,
.form-autocomplete-panel .mat-mdc-option {
  font-family: var(--fontFamily);
  font-size: inherit !important;
  line-height: 3em;
  height: 3em;
  padding: 0em 0.5em;
}
.productui-form-select-panel.mat-mdc-autocomplete-panel .mat-mdc-option,
.form-select-panel.mat-mdc-autocomplete-panel .mat-mdc-option,
.form-autocomplete-panel.mat-mdc-autocomplete-panel .mat-mdc-option {
  font-size: inherit;
}

.chip-auto-complete {
  max-width: 60% !important;
  min-width: 12em !important;
}

.productui-tab-panel {
  /* below css for issue in tabs label color */
}
.productui-tab-panel.full-height {
  height: 100%;
}
.productui-tab-panel.full-height .mat-mdc-tab-body-wrapper {
  height: calc(100% - 4.31em);
  min-height: calc(100% - 4.31em);
  overflow: auto;
}
.productui-tab-panel .mat-mdc-tab-header .mat-mdc-tab .mdc-tab__content,
.productui-tab-panel .mat-mdc-tab-header .mat-mdc-tab-link .mdc-tab__content {
  font-size: 1.23em !important;
  font-family: var(--fontFamily);
  line-height: 1.38em;
  margin-top: 0.94em;
  flex-direction: column;
}
.productui-tab-panel.no-tabs .mat-mdc-tab-body-wrapper {
  display: none;
}
.productui-tab-panel.no-tabs .mat-mdc-tab-header {
  border: 0 none;
}
.productui-tab-panel.multiple-lines .mat-mdc-tab-header .mdc-tab__content {
  margin-top: 0em;
}
.productui-tab-panel.multiple-lines .mat-mdc-tab-header .mat-mdc-tab-label-subtitle {
  font-size: 0.69em;
  line-height: 1.36em;
}
.productui-tab-panel mat-divider.tab-divider {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0%, -50%);
}

/* For highlight checkbox */
.highlight-field .mat-mdc-checkbox-layout {
  border-radius: 0.321em !important;
  padding: 0 0.4em !important;
}

/* below has affects on checkbox, select-box multiple, multiselect autocomplete, aggrid */
.mdc-checkbox__background,
.mat-mdc-checkbox-frame, .mat-pseudo-checkbox {
  border-radius: var(--checkboxBorderRadius) !important;
  width: 1.5em !important;
  height: 1.5em !important;
}

.mat-pseudo-checkbox {
  border-color: var(--grayColor600);
}

/* Removed ripple effect from multiselect autocomplete */
.form-autocomplete-panel .mat-mdc-checkbox-ripple {
  z-index: -1 !important;
}

.mat-mdc-pseudo-checkbox-checked::after {
  width: 1em !important;
  height: 0.36em !important;
  top: 0.33em !important;
  left: 0.19em !important;
  border-left: 0.24em solid currentColor !important;
}

.mat-mdc-pseudo-checkbox {
  width: 1.67em !important;
  height: 1.67em !important;
  border-radius: 0.37em !important;
}

.page-buttons-controls {
  min-height: 4.84em;
  max-height: 4.84em;
  height: 4.84em;
  padding: var(--agGridHeaderPadding);
  border-bottom: 0.08em solid var(--grayColor50);
  background: var(--bgColor10);
  position: relative;
  width: 100%;
}
.page-buttons-controls.small {
  min-height: 3.69em;
  max-height: 3.69em;
  height: 3.69em;
}
.page-buttons-controls.big {
  min-height: 6em;
  max-height: 6em;
  height: 6em;
}
.page-buttons-controls .textContent {
  font-size: 1.23em;
}

/* agggrid end */
.hoveScrollDisplay {
  overflow: hidden !important;
  padding-right: 0.5em !important;
}
.hoveScrollDisplay:hover {
  padding-right: 0 !important;
  overflow: auto !important;
}

.page-content-wrapper {
  max-height: calc(100% - 4.84em);
  height: calc(100% - 4.84em);
}

.box-page-modal-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 0.31em;
  background: var(--bgColor10);
  overflow: hidden;
  position: relative;
}

.box-page-modal-body {
  padding: 1.39em;
  overflow: auto;
}
.box-page-modal-body-no-data {
  padding: 1.23em;
  margin-top: 3.08em;
  text-align: center;
  font-size: 1.08em;
}
.box-page-modal-body-no-data-img {
  margin: 0 auto;
  width: 13.85em;
}
.box-page-modal-body-no-data-img img {
  width: 100%;
}
.box-page-modal-body-no-data-title {
  margin-top: 1.08em;
  color: #001d6d;
}
.box-page-modal-body-no-data-subtitle {
  color: var(--grayColor500);
  margin-top: 0.77em;
}

.box-page-modal-header,
.box-page-modal-footer {
  border-bottom: 0.08em solid var(--grayColor50);
  min-height: 4.31em;
  max-height: 4.31em;
  height: 4.31em;
  padding: 0em 1.39em;
}
.box-page-modal-header.no-padding-left,
.box-page-modal-footer.no-padding-left {
  padding-left: 0em;
}
.box-page-modal-header.no-padding-right,
.box-page-modal-footer.no-padding-right {
  padding-right: 0em;
}
.box-page-modal-header > *,
.box-page-modal-footer > * {
  align-self: center;
}

.leaflet-button-control.new-earchfa {
  margin-left: 1.2em !important;
}

.leaflet-control-layers-toggle {
  background-image: url("/assets/images/controlmaps.PNG") !important;
  width: 2.75em !important;
  height: 2.75em !important;
  padding: 0.5em 0em 0em 0.75em;
  position: relative;
  color: var(--grayColor500) !important;
}

.leaflet-draw-toolbar a {
  background-image: none !important;
}

.leaflet-draw-toolbar a::before {
  position: relative;
  color: var(--grayColor500) !important;
  font-weight: 900;
  content: "\f08d" !important;
  font-size: larger;
}

.leaflet-control-layers-toggle:before {
  font-weight: 900;
  content: "\f279";
  font-size: larger;
}

.leaflet-control-simpleMapScreenshoter a {
  background-image: none !important;
}

.measure-single-line {
  max-height: 5em;
  min-height: 2em;
  padding-right: 1em;
  border-bottom: 0.08em solid var(--grayColor50);
}

.leaflet-container a.leaflet-popup-close-button {
  position: absolute !important;
  top: 0 !important;
  right: 0.67em !important;
  padding: 0.92em 0.83em 0.33em 0em !important;
  border: none !important;
  text-align: center !important;
  width: 1.5em !important;
  height: 1.75em !important;
  font: 1.83em/1.17em !important;
  font-family: var(--fontFamily);
  color: var(--grayColor100) !important;
  text-decoration: none !important;
  background: transparent !important;
}

.leaflet-zoom-box-icon.active {
  border-bottom: #ff008c 0.17em solid !important;
}

.mat-mdc-form-field-infix {
  min-height: unset !important;
  padding: 0.6em 0 0.6em !important;
  border: none;
}
.mat-mdc-form-field-infix input.mat-mdc-input-element {
  margin-top: 0.1em !important;
}

.leaflet-control-simpleMapScreenshoter {
  border-radius: 0.25em;
}

@-moz-document url-prefix() {
  .textboxinput .mat-mdc-form-field-infix {
    min-height: unset !important;
    padding: 0.33em 0em !important;
  }
}
mat-icon.material-icons.iconDialog {
  float: right;
  cursor: pointer;
}

.legends {
  position: absolute;
  width: 17.85em;
  min-width: 17.85em;
  max-width: 17.85em;
  box-shadow: 0 0 0.92em rgba(0, 0, 0, 0.1);
  border-radius: 0.62em;
  background: var(--bgColor10);
  box-sizing: border-box;
  margin-bottom: 0.77em;
  cursor: pointer;
  bottom: -0.42em;
  right: 0;
  z-index: 999;
}

.layer-legend .iconwrapper {
  width: 2.67em !important;
  height: 2.67em !important;
  padding-top: 0.33em;
  color: var(--grayColor500) !important;
  font-size: 1.5em;
}

.leaflet-legend-clicked {
  width: 2.67em !important;
  height: 2.67em !important;
  background-repeat: no-repeat;
  border: #ff008c 0.17em solid !important;
  color: var(--grayColor10) !important;
  background-position: center;
}

.legendmapicon .iconwrapper {
  background: #ff008c !important;
  color: var(--grayColor10) !important;
}

.leaflet-bar a.leaflet-disabled {
  background-color: var(--bgColor50) !important;
  color: var(--grayColor200) !important;
}

.leaflet-button-control.mapicon.leaflet-bar.changeactive.fa.fa-map.mapLayer.leaflet-control {
  padding: 0.5em 0.42em 0.42em 0.42em !important;
}

@-moz-document url-prefix() {
  .leaflet-button-control.mapicon.leaflet-bar.changeactive.fa.fa-map.mapLayer.leaflet-control {
    padding: 0.46em 0.5em 0.42em !important;
  }
}
.loadingContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  animation-delay: 1s;
}

.checkScSSExtention {
  color: #3036ee;
}

.loading-item-1 {
  width: 0.83em;
  height: 0.83em;
  background: #8389f5;
  border-radius: 50%;
  background-color: #3036ee;
  margin: 0.58em;
  margin-top: 1.25em;
  display: flex;
  justify-content: center;
  align-items: center;
}
@keyframes scale {
  0% {
    transform: scale(1);
  }
  50%, 75% {
    transform: scale(2.5);
  }
  78%, 100% {
    opacity: 0;
  }
}
.loading-item-1:before {
  content: "";
  width: 0.83em;
  height: 0.83em;
  border-radius: 50%;
  background-color: #3036ee;
  opacity: 0.7;
  animation: scale 2s infinite cubic-bezier(0, 0, 0.49, 1.02);
  animation-delay: 200ms;
  transition: 0.5s all ease;
  transform: scale(1);
}

.loading-item-2 {
  width: 0.83em;
  height: 0.83em;
  background: #8389f5;
  border-radius: 50%;
  background-color: #3036ee;
  margin: 0.58em;
  margin-top: 1.25em;
  display: flex;
  justify-content: center;
  align-items: center;
}
@keyframes scale {
  0% {
    transform: scale(1);
  }
  50%, 75% {
    transform: scale(2.5);
  }
  78%, 100% {
    opacity: 0;
  }
}
.loading-item-2:before {
  content: "";
  width: 0.83em;
  height: 0.83em;
  border-radius: 50%;
  background-color: #3036ee;
  opacity: 0.7;
  animation: scale 2s infinite cubic-bezier(0, 0, 0.49, 1.02);
  animation-delay: 400ms;
  transition: 0.5s all ease;
  transform: scale(1);
}

.loading-item-3 {
  width: 0.83em;
  height: 0.83em;
  background: #8389f5;
  border-radius: 50%;
  background-color: #3036ee;
  margin: 0.58em;
  margin-top: 1.25em;
  display: flex;
  justify-content: center;
  align-items: center;
}
@keyframes scale {
  0% {
    transform: scale(1);
  }
  50%, 75% {
    transform: scale(2.5);
  }
  78%, 100% {
    opacity: 0;
  }
}
.loading-item-3:before {
  content: "";
  width: 0.83em;
  height: 0.83em;
  border-radius: 50%;
  background-color: #3036ee;
  opacity: 0.7;
  animation: scale 2s infinite cubic-bezier(0, 0, 0.49, 1.02);
  animation-delay: 600ms;
  transition: 0.5s all ease;
  transform: scale(1);
}

.loading-item-4 {
  width: 0.83em;
  height: 0.83em;
  background: #8389f5;
  border-radius: 50%;
  background-color: #3036ee;
  margin: 0.58em;
  margin-top: 1.25em;
  display: flex;
  justify-content: center;
  align-items: center;
}
@keyframes scale {
  0% {
    transform: scale(1);
  }
  50%, 75% {
    transform: scale(2.5);
  }
  78%, 100% {
    opacity: 0;
  }
}
.loading-item-4:before {
  content: "";
  width: 0.83em;
  height: 0.83em;
  border-radius: 50%;
  background-color: #3036ee;
  opacity: 0.7;
  animation: scale 2s infinite cubic-bezier(0, 0, 0.49, 1.02);
  animation-delay: 800ms;
  transition: 0.5s all ease;
  transform: scale(1);
}

.page-body-content bntv-tabs .mat-mdc-tab-header {
  background-color: var(--bgColor10);
}

bntv-mat-button.processHubhomeButton div.bntv-mat-button button {
  color: var(--grayColor100) !important;
}

bntv-avatar.row-avtar-size.ng-star-inserted:hover {
  position: relative;
  transform: scale(1.1);
}

bntv-tabs.access-strategy-group > mat-tab-group.mat-mdc-tab-group.productui-tab-panel.mar-accent {
  height: 100% !important;
}

.cdk-overlay-pane {
  font-size: inherit !important;
  max-height: calc(100vh - 6em);
  direction: var(--direction);
}

.cdk-overlay-pane.phub-editvideo-options {
  transform: none !important;
}

.mat-mdc-tooltip {
  word-break: break-all;
}

.label-sidebar-doc .productui-label-wrap {
  margin: 0em !important;
}

.cdk-overlay-pane .mat-mdc-select-panel-wrap .mat-mdc-select-panel {
  font-size: inherit !important;
  outline: unset !important;
}

.grayedout-disabled {
  pointer-events: none !important;
  opacity: 0.2 !important;
}

.hide-dummy-option {
  display: none !important;
}

.snackbar-hyperlink {
  text-decoration: underline;
  cursor: pointer !important;
}

.height-100 {
  height: 100%;
}

/* loading subscription for button and select-box */
@keyframes three-quarters {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Styles for old versions of IE */
.app-loading-subscription-spinner {
  font-weight: 100;
  animation: three-quarters 1250ms infinite linear;
  border: 0.25em solid;
  border-color: inherit;
  border-right-color: transparent;
  border-radius: 100%;
  box-sizing: border-box;
  overflow: hidden;
  display: -webkit-inline-box;
}

.app-loading-subscription-spinner.select-spinner {
  inset-inline-end: 0.8em;
  position: absolute;
  background: var(--bgColor10) !important;
}

.app-loading-subscription-spinner:not(:required),
.app-loading-subscription-container:not(:required) {
  opacity: 0;
  display: none;
  transition: 0.4s margin ease-out, 0.2s opacity ease-out;
}

.app-loading-subscription-container {
  height: 100%;
  width: 100%;
  position: absolute;
  cursor: default;
  border-radius: inherit;
  display: flex;
  flex-direction: column;
  vertical-align: middle;
  place-content: center;
  background: inherit;
}

.app-loading-subscription-wrapper {
  display: flex;
  align-items: center;
  place-content: center;
}

.is-app-subscription-loading .app-loading-subscription-spinner,
.is-app-subscription-loading .app-loading-subscription-container {
  transition: 0.2s margin ease-in, 0.4s opacity ease-in;
  opacity: 1;
  top: 0;
  display: flex;
  background: inherit;
  min-width: 1.6em;
  min-height: 1.6em;
  text-align: center;
}

/* loading subscription for button and select-box ends here */
/* dynamic select */
.dynamic-select .mat-mdc-select-search-toggle-all-checkbox {
  padding-left: 1em !important;
}

/* For Red-Rose theme */
.white-background-toolbar .toolbar-search-form-input ::placeholder {
  color: var(--grayColor10) !important;
  opacity: 0.5 !important;
}
.white-background-toolbar .toolbar-search-form-input-search {
  color: var(--grayColor10);
}
.white-background-toolbar .toolbar-search-form-input-search .input-box {
  color: var(--grayColor10);
}
.white-background-toolbar .toolbar-search-form-input-search .animate-input-box {
  -webkit-text-fill-color: rgba(51, 51, 51, 0.5) !important;
  color: var(--grayColor10);
}
.white-background-toolbar .toolbar-search-form-input-search .prefix {
  color: var(--grayColor10) !important;
}
.white-background-toolbar .toolbar-search-form-input-search .clearInput {
  color: var(--grayColor10);
}
.white-background-toolbar .toolbar-nav-breadcrumb-title .module {
  font-weight: 600;
}
.white-background-toolbar .toolbar toolbar-profile bntv-mat-button button:not(.mat-mdc-button-disabled):not(:hover) mat-icon {
  color: var(--grayColor600) !important;
}

.dark-mode {
  filter: brightness(0.8) contrast(1.3) invert(1) hue-rotate(180deg);
  mix-blend-mode: screen;
}

.breadcrumb {
  margin-bottom: unset !important;
}

/* move below css from common.scss and removed this file */
.modal-body {
  width: 100%;
  height: 100%;
}

.body-container {
  box-shadow: 0em 0em 0.3em rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.platform-shadow-style {
  border-radius: var(--fieldRadius) !important;
  box-shadow: 0em 0em 0.3em rgba(0, 0, 0, 0.1) !important;
}

/* **********dialog************** */
.mat-mdc-dialog-container {
  padding: 0 !important;
  height: inherit !important;
  border-radius: 0.31em !important;
}

.mdc-radio__outer-circle {
  height: 1.44em !important;
  width: 1.44em !important;
  border-width: var(--fieldBorderWidth) !important;
}

.mdc-radio__inner-circle {
  height: 1.44em !important;
  width: 1.44em !important;
}

/* **********input**************** */
.mat-mdc-form-field-subscript-wrapper {
  font-size: inherit !important;
}

.mat-mdc-form-field {
  line-height: 1.625 !important;
}

.mat-form-field-appearance-outline.mat-mdc-form-field-can-float.mat-mdc-form-field-should-float .mdc-notched-outline__notch {
  border-top-color: transparent !important;
}

textarea.mat-mdc-input-element {
  margin: 0em !important;
  padding: 0em !important;
}

.mat-mdc-placeholder-required {
  color: #ff5722 !important;
}

.mat-mdc-form-field-label {
  color: var(--grayColor600) !important;
  transform: translateY(-1.49em) scale(0.75) !important;
}

.mat-mdc-form-field.mat-mdc-form-field-invalid .mat-mdc-form-field-label {
  color: #ff5722 !important;
}

.productui-form-field:hover ~ .input-label {
  color: var(--accentColor500);
}

.productui-form-field:focus-within ~ .input-label {
  color: var(--grayColor600);
}

.mat-form-field-appearance-outline .mat-mdc-form-field-flex {
  padding: 0 0.6em 0 0.6em;
  margin-top: var(--fieldLabelGap);
  position: relative;
  background-color: var(--bgColor10);
  border-radius: var(--fieldRadius);
}

.mat-form-field-appearance-outline .mdc-notched-outline-thick {
  color: var(--grayColor10) !important;
}

.mat-mdc-form-field-flex {
  display: inline-flex;
  box-sizing: border-box;
  width: 100%;
  min-height: var(--fieldHeight);
  align-items: center !important;
}

/* **********button**************** */
.mat-mdc-button,
.mat-mdc-unelevated-button,
.mat-mdc-outlined-button {
  min-width: 1.82em !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.mat-mdc-button-focus-overlay {
  background-color: transparent !important;
}

/* *************************scroll bar style**************/
/* width */
::-webkit-scrollbar {
  width: 0.78em;
  height: 0.78em;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 0.46em;
}

::-webkit-scrollbar-track:hover {
  background: var(--bgColor50);
}

/* Handle */
::-webkit-scrollbar-thumb {
  min-height: 0.78em;
  opacity: 0.4;
  background: var(--bgColor300);
  border-radius: 0.46em;
  width: 0.78em;
  cursor: pointer;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  opacity: 1;
  background: var(--bgColor800);
}

/* *********************select style *************************/
.mat-mdc-select-panel {
  margin-top: 2.73em;
}

/**************************************************************/
.clear {
  color: var(--grayColor400);
  font-size: 1.46em;
  padding: 0.09em;
  background-color: var(--bgColor50);
  border-radius: 50%;
  transition: transform 0.3s;
  cursor: pointer;
}
.clear:hover {
  color: var(--grayColor900);
}

/****************************pie highchart ********************/
.pie-ticket-chart {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.pie-ticket-chart .highcharts-legend-item rect {
  visibility: hidden;
}
.pie-ticket-chart .xInnerCircle {
  width: 10em;
  height: 10em;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.pie-ticket-chart .xTitle {
  font-weight: 400;
  display: block;
  text-align: center;
  font-size: 3.27em;
  line-height: 3.91em;
  color: var(--grayColor800);
}
.pie-ticket-chart .xSubtitle {
  font-family: var(--fontFamily);
  font-weight: 400;
  display: block;
  text-align: center;
  font-size: 0.91em;
  line-height: 1.27em;
  color: var(--grayColor900);
  opacity: 0.5;
}
.pie-ticket-chart .xLegendSymbol {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.73em;
  height: 1.46em;
  width: 4.36em;
  margin-right: 1.36em;
  margin-bottom: 0.91em;
  font-size: 1em;
  line-height: 1.46em;
  color: var(--grayColor10);
}
.pie-ticket-chart .xLegendLabelName {
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.27em;
  line-height: 1.55em;
  color: var(--grayColor600);
}

.overlay {
  z-index: 99999;
  position: absolute;
  height: calc(100% - 3.4em);
  width: 96.5%;
}

.dailog-footer div:first-child div:first-child .bntv-mat-button {
  margin-left: 0 !important;
}
.dailog-footer div:first-child div:first-child .bntv-mat-button button.mat-mdc-focus-indicator.mat-mdc-badge.mat-mdc-button.mat-mdc-button-base.mar-accent.mat-mdc-badge-overlap.mat-mdc-badge-above.mat-mdc-badge-after.mat-mdc-badge-medium.mat-mdc-badge-hidden.ng-star-inserted {
  padding-left: 0 !important;
}

.tippy-box[data-theme~=custom-tooltip] {
  background-color: var(--bgColor10);
  color: var(--grayColor900);
  box-shadow: 0em 0em 0.3em rgba(0, 0, 0, 0.1);
  border-radius: var(--fieldRadius);
}

.tippy-box[data-theme~=custom-tooltip] > .tippy-arrow::before {
  border-top-color: 0.06em solid var(--grayColor50);
}

.tippy-box > .tippy-content {
  padding: 0.8em;
}

.tippy-box[data-theme~=white-bg-tooltip] {
  background-color: var(--bgColor10);
  color: var(--grayColor900);
  box-shadow: 0em 0em 0.3em rgba(0, 0, 0, 0.1);
  border-radius: var(--fieldRadius);
}

.gx-form-error {
  color: var(--warnColor600) !important;
}

.mat-mdc-error {
  color: var(--warnColor600) !important;
}

.mat-mdc-option.mdc-list-item {
  background: var(--grayColor10) !important;
  color: var(--dropdownItemTextColor) !important;
}

div.mat-mdc-select-panel {
  box-shadow: 0em 0em 0.6em var(--grayColor400) !important;
}

.mat-mdc-optgroup-label .mdc-list-item__primary-text {
  color: var(--grayColor600);
}

.cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
  opacity: 0.3 !important;
  background: var(--grayColor700) !important;
}

.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing {
  opacity: 0 !important;
}

.mat-mdc-option:hover:not(.mdc-list-item--disabled) {
  background-color: var(--dropdownItemHoverBgColor) !important;
}

.mat-mdc-option.mdc-list-item--selected:not(.mdc-list-item--disabled) .mdc-list-item__primary-text {
  color: var(--dropdownSelectedTextColor) !important;
}

.mat-mdc-option.mdc-list-item.mdc-list-item--selected {
  background-color: var(--dropdownSelectedBgColor) !important;
}

.mat-mdc-option {
  margin: 0.2em 0.5em;
  border-radius: var(--fieldRadius);
}

.mat-mdc-option.mdc-list-item.mat-mdc-option-active {
  background-color: var(--dropdownSelectedBgColor) !important;
}
@font-face {
  font-family: "icomoon";
  src: url('icomoon.1a526df9a25f42e8.eot?22udtd');
  src: url('icomoon.1a526df9a25f42e8.eot?22udtd#iefix') format("embedded-opentype"), url('icomoon.68194a263f5cb300.ttf?22udtd') format("truetype"), url('icomoon.92b179f627dc3b35.woff?22udtd') format("woff"), url('icomoon.f13b12d3def7d3a8.svg?22udtd#icomoon') format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
.icomoon {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Enable Ligatures ================ */
  letter-spacing: 0;
  -ms-font-feature-settings: "liga" 1;
  font-feature-settings: "liga";
  font-variant-ligatures: discretionary-ligatures;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.cube_transparent:before {
  content: "\f608";
}

.filecode:before {
  content: "\f609";
}

.folder_user:before {
  content: "\f60a";
}

.hammer:before {
  content: "\f60b";
}

.hard_drives:before {
  content: "\f60c";
}

.house:before {
  content: "\f60d";
}

.infra_base:before {
  content: "\f60e";
}

.infra_core:before {
  content: "\f60f";
}

.infra_network:before {
  content: "\f610";
}

.Infra_ops:before {
  content: "\f611";
}

.infra_system:before {
  content: "\f612";
}

.monitor:before {
  content: "\f613";
}

.package:before {
  content: "\f614";
}

.resource_connector:before {
  content: "\f615";
}

.resource_cube:before {
  content: "\f616";
}

.resource_database:before {
  content: "\f617";
}

.resource_manual:before {
  content: "\f618";
}

.resource_panel:before {
  content: "\f619";
}

.resource_sql:before {
  content: "\f61a";
}

.resource_stack:before {
  content: "\f61b";
}

.resource-dashboard:before {
  content: "\f61c";
}

.security_info:before {
  content: "\f61d";
}

.security_key:before {
  content: "\f61e";
}

.security_lock:before {
  content: "\f61f";
}

.security_logo:before {
  content: "\f620";
}

.security_users:before {
  content: "\f621";
}

.sliders:before {
  content: "\f622";
}

.source_code:before {
  content: "\f623";
}

.store_front:before {
  content: "\f624";
}

.tool_wrench:before {
  content: "\f625";
}

.administrations:before {
  content: "\f600";
}

.data_analyzer:before {
  content: "\f601";
}

.data_catalog:before {
  content: "\f602";
}

.data_collector:before {
  content: "\f603";
}

.data_ops:before {
  content: "\f604";
}

.insider:before {
  content: "\f605";
}

.overview:before {
  content: "\f606";
}

.transformers:before {
  content: "\f607";
}

.arror-left-curve:before {
  content: "\f5f7";
}

.arrow-down-curve:before {
  content: "\f5f8";
}

.arrow-right-curve:before {
  content: "\f5f9";
}

.arrow-up-curve:before {
  content: "\f5fa";
}

.file-archive-outline:before {
  content: "\f5fb";
}

.file-image-outline:before {
  content: "\f5fc";
}

.file-text-outline:before {
  content: "\f5fd";
}

.file-video-outline:before {
  content: "\f5fe";
}

.like-filled-outline:before {
  content: "\f5ff";
}

.terminal-window-outline:before {
  content: "\f5f4";
}

.tree-structure-outline:before {
  content: "\f5f5";
}

.users-outline:before {
  content: "\f5f6";
}

.camera-plus:before {
  content: "\f5f0";
}

.caret-line-left:before {
  content: "\f5f1";
}

.caret-line-right:before {
  content: "\f5f2";
}

.microphone-outline:before {
  content: "\f5f3";
}

.hierarchy_thin:before {
  content: "\f5eb";
}

.speedometer_thin:before {
  content: "\f5ec";
}

.task_thin:before {
  content: "\f5ed";
}

.topology_thin:before {
  content: "\f5ee";
}

.warning_thin:before {
  content: "\f5ef";
}

.assign_user:before {
  content: "\f5da";
}

.block_storage:before {
  content: "\f5db";
}

.code_block:before {
  content: "\f5dc";
}

.compute:before {
  content: "\f5dd";
}

.drag_double_dots:before {
  content: "\f5de";
}

.file_cloud:before {
  content: "\f5df";
}

.file_code:before {
  content: "\f5e0";
}

.hard_drive:before {
  content: "\f5e1";
}

.home_blank:before {
  content: "\f5e2";
}

.marketplace:before {
  content: "\f5e3";
}

.pencil_simple:before {
  content: "\f5e4";
}

.pushpin_wide_outline:before {
  content: "\f5e5";
}

.pushpin_widesvg:before {
  content: "\f5e6";
}

.selection_foreground:before {
  content: "\f5e7";
}

.start:before {
  content: "\f5e8";
}

.stop_outline:before {
  content: "\f5e9";
}

.suspend:before {
  content: "\f5ea";
}

.cluster_ops_details:before {
  content: "\f5d4";
}

.cluster_ops_monitoring:before {
  content: "\f5d5";
}

.connectivity_monitoring:before {
  content: "\f5d6";
}

.folder_repository_cycle:before {
  content: "\f5d7";
}

.graph_service_setting:before {
  content: "\f5d8";
}

.workload_service:before {
  content: "\f5d9";
}

.date-picker:before {
  content: "\f5d1";
}

.filter_outline:before {
  content: "\f5d2";
}

.table_options:before {
  content: "\f5d3";
}

.field_force_mgmt:before {
  content: "\f5d0";
}

.ai_ops:before {
  content: "\f5b4";
}

.api_integration:before {
  content: "\f5b6";
}

.cloud_finops:before {
  content: "\f5ba";
}

.cloud_marketplace:before {
  content: "\f5bb";
}

.cms:before {
  content: "\f5bc";
}

.coverage:before {
  content: "\f5bd";
}

.DataOps:before {
  content: "\f5be";
}

.email_singularity:before {
  content: "\f5bf";
}

.evtrium:before {
  content: "\f5c0";
}

.hrms:before {
  content: "\f5c1";
}

.ivy:before {
  content: "\f5c2";
}

.ml_ops:before {
  content: "\f5c3";
}

.nawat:before {
  content: "\f5c4";
}

.platform_incidents:before {
  content: "\f5c5";
}

.plc:before {
  content: "\f5c6";
}

.project_singularity:before {
  content: "\f5c7";
}

.pureSureApp:before {
  content: "\f5c8";
}

.quickcraft:before {
  content: "\f5c9";
}

.security_app:before {
  content: "\f5ca";
}

.singlife:before {
  content: "\f5cb";
}

.talentsingularity:before {
  content: "\f5cc";
}

.trial_management:before {
  content: "\f5cd";
}

.vision_ai:before {
  content: "\f5ce";
}

.voice_ai:before {
  content: "\f5cf";
}

.Administration_Access-management:before {
  content: "\eefd";
}

.Administration_AOA-Profile:before {
  content: "\eefe";
}

.Administration_AOA-Resource-config:before {
  content: "\eeff";
}

.Administration_API-management:before {
  content: "\ef00";
}

.Administration_Base-config:before {
  content: "\ef01";
}

.Administration_component-management:before {
  content: "\ef02";
}

.Administration_department:before {
  content: "\ef03";
}

.Administration_Division:before {
  content: "\ef04";
}

.Administration_Location:before {
  content: "\ef05";
}

.Administration_Organization:before {
  content: "\ef06";
}

.Administration_Product-config:before {
  content: "\ef07";
}

.Administration_Profile-Assignment:before {
  content: "\ef08";
}

.Administration_Profile-template:before {
  content: "\ef09";
}

.Administration_Release-management:before {
  content: "\ef0a";
}

.Administration_Usage-history:before {
  content: "\ef0b";
}

.Administration_User-Actions:before {
  content: "\ef0c";
}

.Administration_User-Management:before {
  content: "\ef0d";
}

.Administration_User-operations:before {
  content: "\ef0e";
}

.Alerts_Alert-1:before {
  content: "\ef0f";
}

.Alerts_Alert:before {
  content: "\ef10";
}

.Alerts_Connectivity-audit-1:before {
  content: "\ef11";
}

.Alerts_Connectivity-audit:before {
  content: "\ef12";
}

.API-integration_API-Client:before {
  content: "\ef13";
}

.API-integration_API-Integration:before {
  content: "\ef14";
}

.API-integration_API-Pools:before {
  content: "\ef15";
}

.API-integration_operations:before {
  content: "\ef16";
}

.App-Onboarding_Change-request:before {
  content: "\ef17";
}

.App-Onboarding_Projects:before {
  content: "\ef18";
}

.BBH-configuration:before {
  content: "\ef19";
}

.BI--Analytics_Charts:before {
  content: "\ef1a";
}

.BI--Analytics_Overview:before {
  content: "\ef1b";
}

.BI--Analytics_Reports-Overview:before {
  content: "\ef1c";
}

.BI--Analytics_Reports-Template:before {
  content: "\ef1d";
}

.BI--Analytics_Schedules:before {
  content: "\ef1e";
}

.BI--Analytics_Template:before {
  content: "\ef1f";
}

.Builder_Admin:before {
  content: "\ef20";
}

.Builder_Audit:before {
  content: "\ef21";
}

.Builder_Home:before {
  content: "\ef22";
}

.Builder_Layout-specification:before {
  content: "\ef23";
}

.Builder_Map-Designer:before {
  content: "\ef24";
}

.Builder_Resources:before {
  content: "\ef25";
}

.Builder_Scheduler:before {
  content: "\ef26";
}

.Builder_View-Execution-History:before {
  content: "\ef27";
}

.Builder_Workflow:before {
  content: "\ef28";
}

.Builders_Mobile-Designer:before {
  content: "\ef29";
}

.Builders_Notifications:before {
  content: "\ef2a";
}

.Builders_SLA--OLA:before {
  content: "\ef2b";
}

.Campaigns_Campaigns:before {
  content: "\ef2c";
}

.Capacity_Forecast:before {
  content: "\ef2d";
}

.Capacity_HUC-configuration:before {
  content: "\ef2e";
}

.Configuration_Audit-template-1:before {
  content: "\ef2f";
}

.Configuration_Audit-template:before {
  content: "\ef30";
}

.Configuration_Dymanic-query-1:before {
  content: "\ef31";
}

.Configuration_Dymanic-query:before {
  content: "\ef32";
}

.Configuration:before {
  content: "\ef33";
}

.Coverage_Coverage:before {
  content: "\ef34";
}

.Data-Insider_API-client:before {
  content: "\ef35";
}

.Data-Insider_API-Pools:before {
  content: "\ef36";
}

.Documents_Fevourites:before {
  content: "\ef37";
}

.Documents_Home:before {
  content: "\ef38";
}

.Documents_Shared-with-me:before {
  content: "\ef39";
}

.Documents_Trash:before {
  content: "\ef3a";
}

.Facilities_Cabels:before {
  content: "\ef3b";
}

.Facilities_Circuit-termination:before {
  content: "\ef3c";
}

.Facilities_Circuit-type:before {
  content: "\ef3d";
}

.Facilities_Circuit:before {
  content: "\ef3e";
}

.Facilities_Circuits:before {
  content: "\ef3f";
}

.Facilities_Console-connect:before {
  content: "\ef40";
}

.Facilities_Console-port:before {
  content: "\ef41";
}

.Facilities_Console-server:before {
  content: "\ef42";
}

.Facilities_Device-bay-1:before {
  content: "\ef43";
}

.Facilities_Device-bay:before {
  content: "\ef44";
}

.Facilities_Device-components:before {
  content: "\ef45";
}

.Facilities_Device-Role:before {
  content: "\ef46";
}

.Facilities_Device-type:before {
  content: "\ef47";
}

.Facilities_Devices:before {
  content: "\ef48";
}

.Facilities_Equipment-configuration:before {
  content: "\ef49";
}

.Facilities_Equipment:before {
  content: "\ef4a";
}

.Facilities_Facilities:before {
  content: "\ef4b";
}

.Facilities_Front-port:before {
  content: "\ef4c";
}

.Facilities_Interface-connect:before {
  content: "\ef4d";
}

.Facilities_Interfaces:before {
  content: "\ef4e";
}

.Facilities_Inventory-items-role:before {
  content: "\ef4f";
}

.Facilities_Inventory-items:before {
  content: "\ef50";
}

.Facilities_Master:before {
  content: "\ef51";
}

.Facilities_Menufacturer-type:before {
  content: "\ef52";
}

.Facilities_Menufacturer_types:before {
  content: "\ef53";
}

.Facilities_Module-bay:before {
  content: "\ef54";
}

.Facilities_Module-type:before {
  content: "\ef55";
}

.Facilities_Module:before {
  content: "\ef56";
}

.Facilities_Point-of-interest:before {
  content: "\ef57";
}

.Facilities_Power-connection:before {
  content: "\ef58";
}

.Facilities_Power-feed:before {
  content: "\ef59";
}

.Facilities_Power-outlet:before {
  content: "\ef5a";
}

.Facilities_Power-panel:before {
  content: "\ef5b";
}

.Facilities_Power-port:before {
  content: "\ef5c";
}

.Facilities_Power:before {
  content: "\ef5d";
}

.Facilities_Provider-network:before {
  content: "\ef5e";
}

.Facilities_Providers:before {
  content: "\ef5f";
}

.Facilities_Rack-template:before {
  content: "\ef60";
}

.Facilities_Rear-port:before {
  content: "\ef61";
}

.Facilities_Site-template:before {
  content: "\ef62";
}

.Facilities_Types:before {
  content: "\ef63";
}

.Facilities_Wireless-link:before {
  content: "\ef64";
}

.Forecaster_Datasets:before {
  content: "\ef65";
}

.Forecaster_Metrics:before {
  content: "\ef66";
}

.Forecaster_Project:before {
  content: "\ef67";
}

.FTTX_BOM:before {
  content: "\ef68";
}

.FTTX_ILD:before {
  content: "\ef69";
}

.FTTX_Inquiry:before {
  content: "\ef6a";
}

.FTTX_Orders:before {
  content: "\ef6b";
}

.FTTX_Permit:before {
  content: "\ef6c";
}

.FTTX_Prioritization-Engine:before {
  content: "\ef6d";
}

.FTTX_Purchase-order:before {
  content: "\ef6e";
}

.FTTX_Purchase-request:before {
  content: "\ef6f";
}

.FTTX_Rule-Template:before {
  content: "\ef70";
}

.FTTX_SCM:before {
  content: "\ef71";
}

.Incidents_Auto-ticket-rule:before {
  content: "\ef72";
}

.Incidents_Incident-template:before {
  content: "\ef73";
}

.Iot_Analytics:before {
  content: "\ef74";
}

.IoT_Applications:before {
  content: "\ef75";
}

.IoT_Events:before {
  content: "\ef76";
}

.IoT_Fleet:before {
  content: "\ef77";
}

.Iot_History:before {
  content: "\ef78";
}

.IoT_Maintenance-Planner:before {
  content: "\ef79";
}

.IoT_Overview:before {
  content: "\ef7a";
}

.IoT_Real-Time-Data:before {
  content: "\ef7b";
}

.IoT_Schedule-Trip:before {
  content: "\ef7c";
}

.IoT_Trips:before {
  content: "\ef7d";
}

.IoT_Upcoming-Trip:before {
  content: "\ef7e";
}

.IoT_Vehicle-Assignment:before {
  content: "\ef7f";
}

.IoT_Vehicle-Overview:before {
  content: "\ef80";
}

.LCM-Orchestrator_Bulk-Planning:before {
  content: "\ef81";
}

.LCM-Orchestrator_Template:before {
  content: "\ef82";
}

.LCM-Orchestrator_Work-order:before {
  content: "\ef83";
}

.ML-Studio_Datasets:before {
  content: "\ef84";
}

.ML-Studio_Deployments:before {
  content: "\ef85";
}

.ML-Studio_Experiment:before {
  content: "\ef86";
}

.ML-Studio_Project:before {
  content: "\ef87";
}

.greenGpt_Access-group:before {
  content: "\ef88";
}

.greenGpt_Admin:before {
  content: "\ef89";
}

.greenGpt_Applications:before {
  content: "\ef8a";
}

.greenGpt_Arbitration:before {
  content: "\ef8b";
}

.greenGpt_Custom-layout:before {
  content: "\ef8c";
}

.greenGpt_Documents:before {
  content: "\ef8d";
}

.greenGpt_Hints:before {
  content: "\ef8e";
}

.greenGpt_Intents:before {
  content: "\ef8f";
}

.greenGpt-Feedback:before {
  content: "\ef90";
}

.greenGpt_Operations:before {
  content: "\ef91";
}

.greenGpt_Testing-suite-execution:before {
  content: "\ef92";
}

.greenGpt_Testing-suite:before {
  content: "\ef93";
}

.greenGpt_Testing:before {
  content: "\ef94";
}

.greenGpt_User-requests:before {
  content: "\ef95";
}

.Order-Management_Order-Items:before {
  content: "\ef96";
}

.Order-Management_Order-Type:before {
  content: "\ef97";
}

.Performance_Anomaly-candidate:before {
  content: "\ef98";
}

.Performance_Counter-library-1:before {
  content: "\ef99";
}

.Performance_Counter-library:before {
  content: "\ef9a";
}

.Performance_Report-repositery-1:before {
  content: "\ef9b";
}

.Performance_Report-repositery:before {
  content: "\ef9c";
}

.Procurement_Inquiry:before {
  content: "\ef9d";
}

.Programs--Projects_Adhoc-Projects:before {
  content: "\ef9e";
}

.RAN_Link:before {
  content: "\ef9f";
}

.RAN_Maintenance:before {
  content: "\efa0";
}

.Report-configuration:before {
  content: "\efa1";
}

.Self-Healing_Self-Healing:before {
  content: "\efa2";
}

.Service-health_Customer-service-monitoring:before {
  content: "\efa3";
}

.Service-health_Rule-configuration:before {
  content: "\efa4";
}

.SIM-Inventory_Bulk:before {
  content: "\efa5";
}

.SIM-Inventory_List:before {
  content: "\efa6";
}

.SIM-Inventory_Number-Search:before {
  content: "\efa7";
}

.SIM-Inventory_Request:before {
  content: "\efa8";
}

.SIM-Inventory_Search-History:before {
  content: "\efa9";
}

.Subscriber:before {
  content: "\efaa";
}

.Topology_Inventory:before {
  content: "\efab";
}

.Topology_Location:before {
  content: "\efac";
}

.Vendor--Contracts_Clauses:before {
  content: "\efad";
}

.Vendor--Contracts_Contract:before {
  content: "\efae";
}

.Vendor--Contracts_Negotiation:before {
  content: "\efaf";
}

.Vendor--Contracts_Proposal:before {
  content: "\efb0";
}

.Vendor--Contracts_Repository:before {
  content: "\efb1";
}

.acorn-bold:before {
  content: "\efb2";
}

.address-book-bold:before {
  content: "\efb3";
}

.address-book-tabs-bold:before {
  content: "\efb4";
}

.airplane-bold:before {
  content: "\efb5";
}

.airplane-in-flight-bold:before {
  content: "\efb6";
}

.airplane-landing-bold:before {
  content: "\efb7";
}

.airplane-takeoff-bold:before {
  content: "\efb8";
}

.airplane-taxiing-bold:before {
  content: "\efb9";
}

.airplane-tilt-bold:before {
  content: "\efba";
}

.airplay-bold:before {
  content: "\efbb";
}

.alarm-bold:before {
  content: "\efbc";
}

.alien-bold:before {
  content: "\efbd";
}

.align-bottom-bold:before {
  content: "\efbe";
}

.align-bottom-simple-bold:before {
  content: "\efbf";
}

.align-center-horizontal-bold:before {
  content: "\efc0";
}

.align-center-horizontal-simple-bold:before {
  content: "\efc1";
}

.align-center-vertical-bold:before {
  content: "\efc2";
}

.align-center-vertical-simple-bold:before {
  content: "\efc3";
}

.align-left-bold:before {
  content: "\efc4";
}

.align-left-simple-bold:before {
  content: "\efc5";
}

.align-right-bold:before {
  content: "\efc6";
}

.align-right-simple-bold:before {
  content: "\efc7";
}

.align-top-bold:before {
  content: "\efc8";
}

.align-top-simple-bold:before {
  content: "\efc9";
}

.amazon-logo-bold:before {
  content: "\efca";
}

.ambulance-bold:before {
  content: "\efcb";
}

.anchor-bold:before {
  content: "\efcc";
}

.anchor-simple-bold:before {
  content: "\efcd";
}

.android-logo-bold:before {
  content: "\efce";
}

.angle-bold:before {
  content: "\efcf";
}

.angular-logo-bold:before {
  content: "\efd0";
}

.aperture-bold:before {
  content: "\efd1";
}

.app-store-logo-bold:before {
  content: "\efd2";
}

.app-window-bold:before {
  content: "\efd3";
}

.apple-logo-bold:before {
  content: "\efd4";
}

.apple-podcasts-logo-bold:before {
  content: "\efd5";
}

.approximate-equals-bold:before {
  content: "\efd6";
}

.archive-bold:before {
  content: "\efd7";
}

.armchair-bold:before {
  content: "\efd8";
}

.arrow-arc-left-bold:before {
  content: "\efd9";
}

.arrow-arc-right-bold:before {
  content: "\efda";
}

.arrow-bend-double-up-left-bold:before {
  content: "\efdb";
}

.arrow-bend-double-up-right-bold:before {
  content: "\efdc";
}

.arrow-bend-down-left-bold:before {
  content: "\efdd";
}

.arrow-bend-down-right-bold:before {
  content: "\efde";
}

.arrow-bend-left-down-bold:before {
  content: "\efdf";
}

.arrow-bend-left-up-bold:before {
  content: "\efe0";
}

.arrow-bend-right-down-bold:before {
  content: "\efe1";
}

.arrow-bend-right-up-bold:before {
  content: "\efe2";
}

.arrow-bend-up-left-bold:before {
  content: "\efe3";
}

.arrow-bend-up-right-bold:before {
  content: "\efe4";
}

.arrow-circle-down-bold:before {
  content: "\efe5";
}

.arrow-circle-down-left-bold:before {
  content: "\efe6";
}

.arrow-circle-down-right-bold:before {
  content: "\efe7";
}

.arrow-circle-left-bold:before {
  content: "\efe8";
}

.arrow-circle-right-bold:before {
  content: "\efe9";
}

.arrow-circle-up-bold:before {
  content: "\efea";
}

.arrow-circle-up-left-bold:before {
  content: "\efeb";
}

.arrow-circle-up-right-bold:before {
  content: "\efec";
}

.arrow-clockwise-bold:before {
  content: "\efed";
}

.arrow-counter-clockwise-bold:before {
  content: "\efee";
}

.arrow-down-bold:before {
  content: "\efef";
}

.arrow-down-left-bold:before {
  content: "\eff0";
}

.arrow-down-right-bold:before {
  content: "\eff1";
}

.arrow-elbow-down-left-bold:before {
  content: "\eff2";
}

.arrow-elbow-down-right-bold:before {
  content: "\eff3";
}

.arrow-elbow-left-bold:before {
  content: "\eff4";
}

.arrow-elbow-left-down-bold:before {
  content: "\eff5";
}

.arrow-elbow-left-up-bold:before {
  content: "\eff6";
}

.arrow-elbow-right-bold:before {
  content: "\eff7";
}

.arrow-elbow-right-down-bold:before {
  content: "\eff8";
}

.arrow-elbow-right-up-bold:before {
  content: "\eff9";
}

.arrow-elbow-up-left-bold:before {
  content: "\effa";
}

.arrow-elbow-up-right-bold:before {
  content: "\effb";
}

.arrow-fat-down-bold:before {
  content: "\effc";
}

.arrow-fat-left-bold:before {
  content: "\effd";
}

.arrow-fat-line-down-bold:before {
  content: "\effe";
}

.arrow-fat-line-left-bold:before {
  content: "\efff";
}

.arrow-fat-line-right-bold:before {
  content: "\f000";
}

.arrow-fat-line-up-bold:before {
  content: "\f001";
}

.arrow-fat-lines-down-bold:before {
  content: "\f002";
}

.arrow-fat-lines-left-bold:before {
  content: "\f003";
}

.arrow-fat-lines-right-bold:before {
  content: "\f004";
}

.arrow-fat-lines-up-bold:before {
  content: "\f005";
}

.arrow-fat-right-bold:before {
  content: "\f006";
}

.arrow-fat-up-bold:before {
  content: "\f007";
}

.arrow-left-bold:before {
  content: "\f008";
}

.arrow-line-down-bold:before {
  content: "\f009";
}

.arrow-line-down-left-bold:before {
  content: "\f00a";
}

.arrow-line-down-right-bold:before {
  content: "\f00b";
}

.arrow-line-left-bold:before {
  content: "\f00c";
}

.arrow-line-right-bold:before {
  content: "\f00d";
}

.arrow-line-up-bold:before {
  content: "\f00e";
}

.arrow-line-up-left-bold:before {
  content: "\f00f";
}

.arrow-line-up-right-bold:before {
  content: "\f010";
}

.arrow-right-bold:before {
  content: "\f011";
}

.arrow-square-down-bold:before {
  content: "\f012";
}

.arrow-square-down-left-bold:before {
  content: "\f013";
}

.arrow-square-down-right-bold:before {
  content: "\f014";
}

.arrow-square-in-bold:before {
  content: "\f015";
}

.arrow-square-left-bold:before {
  content: "\f016";
}

.arrow-square-out-bold:before {
  content: "\f017";
}

.arrow-square-right-bold:before {
  content: "\f018";
}

.arrow-square-up-bold:before {
  content: "\f019";
}

.arrow-square-up-left-bold:before {
  content: "\f01a";
}

.arrow-square-up-right-bold:before {
  content: "\f01b";
}

.arrow-u-down-left-bold:before {
  content: "\f01c";
}

.arrow-u-down-right-bold:before {
  content: "\f01d";
}

.arrow-u-left-down-bold:before {
  content: "\f01e";
}

.arrow-u-left-up-bold:before {
  content: "\f01f";
}

.arrow-u-right-down-bold:before {
  content: "\f020";
}

.arrow-u-right-up-bold:before {
  content: "\f021";
}

.arrow-u-up-left-bold:before {
  content: "\f022";
}

.arrow-u-up-right-bold:before {
  content: "\f023";
}

.arrow-up-bold:before {
  content: "\f024";
}

.arrow-up-left-bold:before {
  content: "\f025";
}

.arrow-up-right-bold:before {
  content: "\f026";
}

.arrows-clockwise-bold:before {
  content: "\f027";
}

.arrows-counter-clockwise-bold:before {
  content: "\f028";
}

.arrows-down-up-bold:before {
  content: "\f029";
}

.arrows-horizontal-bold:before {
  content: "\f02a";
}

.arrows-in-bold:before {
  content: "\f02b";
}

.arrows-in-cardinal-bold:before {
  content: "\f02c";
}

.arrows-in-line-horizontal-bold:before {
  content: "\f02d";
}

.arrows-in-line-vertical-bold:before {
  content: "\f02e";
}

.arrows-in-simple-bold:before {
  content: "\f02f";
}

.arrows-left-right-bold:before {
  content: "\f030";
}

.arrows-merge-bold:before {
  content: "\f031";
}

.arrows-out-bold:before {
  content: "\f032";
}

.arrows-out-cardinal-bold:before {
  content: "\f033";
}

.arrows-out-line-horizontal-bold:before {
  content: "\f034";
}

.arrows-out-line-vertical-bold:before {
  content: "\f035";
}

.arrows-out-simple-bold:before {
  content: "\f036";
}

.arrows-split-bold:before {
  content: "\f037";
}

.arrows-vertical-bold:before {
  content: "\f038";
}

.article-bold:before {
  content: "\f039";
}

.article-medium-bold:before {
  content: "\f03a";
}

.article-ny-times-bold:before {
  content: "\f03b";
}

.asterisk-bold:before {
  content: "\f03c";
}

.asterisk-simple-bold:before {
  content: "\f03d";
}

.at-bold:before {
  content: "\f03e";
}

.atom-bold:before {
  content: "\f03f";
}

.avocado-bold:before {
  content: "\f040";
}

.axe-bold:before {
  content: "\f041";
}

.baby-bold:before {
  content: "\f042";
}

.baby-carriage-bold:before {
  content: "\f043";
}

.backpack-bold:before {
  content: "\f044";
}

.backspace-bold:before {
  content: "\f045";
}

.bag-bold:before {
  content: "\f046";
}

.bag-simple-bold:before {
  content: "\f047";
}

.balloon-bold:before {
  content: "\f048";
}

.bandaids-bold:before {
  content: "\f049";
}

.bank-bold:before {
  content: "\f04a";
}

.barbell-bold:before {
  content: "\f04b";
}

.barcode-bold:before {
  content: "\f04c";
}

.barn-bold:before {
  content: "\f04d";
}

.barricade-bold:before {
  content: "\f04e";
}

.baseball-bold:before {
  content: "\f04f";
}

.baseball-cap-bold:before {
  content: "\f050";
}

.baseball-helmet-bold:before {
  content: "\f051";
}

.basket-bold:before {
  content: "\f052";
}

.basketball-bold:before {
  content: "\f053";
}

.bathtub-bold:before {
  content: "\f054";
}

.battery-charging-bold:before {
  content: "\f055";
}

.battery-charging-vertical-bold:before {
  content: "\f056";
}

.battery-empty-bold:before {
  content: "\f057";
}

.battery-full-bold:before {
  content: "\f058";
}

.battery-high-bold:before {
  content: "\f059";
}

.battery-low-bold:before {
  content: "\f05a";
}

.battery-medium-bold:before {
  content: "\f05b";
}

.battery-plus-bold:before {
  content: "\f05c";
}

.battery-plus-vertical-bold:before {
  content: "\f05d";
}

.battery-vertical-empty-bold:before {
  content: "\f05e";
}

.battery-vertical-full-bold:before {
  content: "\f05f";
}

.battery-vertical-high-bold:before {
  content: "\f060";
}

.battery-vertical-low-bold:before {
  content: "\f061";
}

.battery-vertical-medium-bold:before {
  content: "\f062";
}

.battery-warning-bold:before {
  content: "\f063";
}

.battery-warning-vertical-bold:before {
  content: "\f064";
}

.beach-ball-bold:before {
  content: "\f065";
}

.beanie-bold:before {
  content: "\f066";
}

.bed-bold:before {
  content: "\f067";
}

.beer-bottle-bold:before {
  content: "\f068";
}

.beer-stein-bold:before {
  content: "\f069";
}

.behance-logo-bold:before {
  content: "\f06a";
}

.bell-bold:before {
  content: "\f06b";
}

.bell-ringing-bold:before {
  content: "\f06c";
}

.bell-simple-bold:before {
  content: "\f06d";
}

.bell-simple-ringing-bold:before {
  content: "\f06e";
}

.bell-simple-slash-bold:before {
  content: "\f06f";
}

.bell-simple-z-bold:before {
  content: "\f070";
}

.bell-slash-bold:before {
  content: "\f071";
}

.bell-z-bold:before {
  content: "\f072";
}

.belt-bold:before {
  content: "\f073";
}

.bezier-curve-bold:before {
  content: "\f074";
}

.bicycle-bold:before {
  content: "\f075";
}

.binary-bold:before {
  content: "\f076";
}

.binoculars-bold:before {
  content: "\f077";
}

.biohazard-bold:before {
  content: "\f078";
}

.bird-bold:before {
  content: "\f079";
}

.blueprint-bold:before {
  content: "\f07a";
}

.bluetooth-bold:before {
  content: "\f07b";
}

.bluetooth-connected-bold:before {
  content: "\f07c";
}

.bluetooth-slash-bold:before {
  content: "\f07d";
}

.bluetooth-x-bold:before {
  content: "\f07e";
}

.boat-bold:before {
  content: "\f07f";
}

.bomb-bold:before {
  content: "\f080";
}

.bone-bold:before {
  content: "\f081";
}

.book-bold:before {
  content: "\f082";
}

.book-bookmark-bold:before {
  content: "\f083";
}

.book-open-bold:before {
  content: "\f084";
}

.book-open-text-bold:before {
  content: "\f085";
}

.book-open-user-bold:before {
  content: "\f086";
}

.bookmark-bold:before {
  content: "\f087";
}

.bookmark-simple-bold:before {
  content: "\f088";
}

.bookmarks-bold:before {
  content: "\f089";
}

.bookmarks-simple-bold:before {
  content: "\f08a";
}

.books-bold:before {
  content: "\f08b";
}

.boot-bold:before {
  content: "\f08c";
}

.boules-bold:before {
  content: "\f08d";
}

.bounding-box-bold:before {
  content: "\f08e";
}

.bowl-food-bold:before {
  content: "\f08f";
}

.bowl-steam-bold:before {
  content: "\f090";
}

.bowling-ball-bold:before {
  content: "\f091";
}

.box-arrow-down-bold:before {
  content: "\f092";
}

.box-arrow-up-bold:before {
  content: "\f093";
}

.brackets-angle-bold:before {
  content: "\f094";
}

.brackets-curly-bold:before {
  content: "\f095";
}

.brackets-round-bold:before {
  content: "\f096";
}

.brackets-square-bold:before {
  content: "\f097";
}

.brain-bold:before {
  content: "\f098";
}

.brandy-bold:before {
  content: "\f099";
}

.bread-bold:before {
  content: "\f09a";
}

.briefcase-bold:before {
  content: "\f09b";
}

.briefcase-metal-bold:before {
  content: "\f09c";
}

.broadcast-bold:before {
  content: "\f09d";
}

.broom-bold:before {
  content: "\f09e";
}

.browser-bold:before {
  content: "\f09f";
}

.browsers-bold:before {
  content: "\f0a0";
}

.bug-beetle-bold:before {
  content: "\f0a1";
}

.bug-bold:before {
  content: "\f0a2";
}

.bug-droid-bold:before {
  content: "\f0a3";
}

.building-apartment-bold:before {
  content: "\f0a4";
}

.building-bold:before {
  content: "\f0a5";
}

.building-office-bold:before {
  content: "\f0a6";
}

.buildings-bold:before {
  content: "\f0a7";
}

.bulldozer-bold:before {
  content: "\f0a8";
}

.bus-bold:before {
  content: "\f0a9";
}

.butterfly-bold:before {
  content: "\f0aa";
}

.cable-car-bold:before {
  content: "\f0ab";
}

.cactus-bold:before {
  content: "\f0ac";
}

.calculator-bold:before {
  content: "\f0ad";
}

.calendar-blank-bold:before {
  content: "\f0ae";
}

.calendar-bold:before {
  content: "\f0af";
}

.calendar-check-bold:before {
  content: "\f0b0";
}

.calendar-dot-bold:before {
  content: "\f0b1";
}

.calendar-dots-bold:before {
  content: "\f0b2";
}

.calendar-heart-bold:before {
  content: "\f0b3";
}

.calendar-minus-bold:before {
  content: "\f0b4";
}

.calendar-plus-bold:before {
  content: "\f0b5";
}

.calendar-slash-bold:before {
  content: "\f0b6";
}

.calendar-star-bold:before {
  content: "\f0b7";
}

.calendar-x-bold:before {
  content: "\f0b8";
}

.call-bell-bold:before {
  content: "\f0b9";
}

.camera-bold:before {
  content: "\f0ba";
}

.camera-plus-bold:before {
  content: "\f0bb";
}

.camera-rotate-bold:before {
  content: "\f0bc";
}

.camera-slash-bold:before {
  content: "\f0bd";
}

.campfire-bold:before {
  content: "\f0be";
}

.car-battery-bold:before {
  content: "\f0bf";
}

.car-bold:before {
  content: "\f0c0";
}

.car-profile-bold:before {
  content: "\f0c1";
}

.car-simple-bold:before {
  content: "\f0c2";
}

.cardholder-bold:before {
  content: "\f0c3";
}

.cards-bold:before {
  content: "\f0c4";
}

.cards-three-bold:before {
  content: "\f0c5";
}

.caret-circle-double-down-bold:before {
  content: "\f0c6";
}

.caret-circle-double-left-bold:before {
  content: "\f0c7";
}

.caret-circle-double-right-bold:before {
  content: "\f0c8";
}

.caret-circle-double-up-bold:before {
  content: "\f0c9";
}

.caret-circle-down-bold:before {
  content: "\f0ca";
}

.caret-circle-left-bold:before {
  content: "\f0cb";
}

.caret-circle-right-bold:before {
  content: "\f0cc";
}

.caret-circle-up-bold:before {
  content: "\f0cd";
}

.caret-circle-up-down-bold:before {
  content: "\f0ce";
}

.caret-double-down-bold:before {
  content: "\f0cf";
}

.caret-double-left-bold:before {
  content: "\f0d0";
}

.caret-double-right-bold:before {
  content: "\f0d1";
}

.caret-double-up-bold:before {
  content: "\f0d2";
}

.caret-down-bold:before {
  content: "\f0d3";
}

.caret-left-bold:before {
  content: "\f0d4";
}

.caret-line-down-bold:before {
  content: "\f0d5";
}

.caret-line-left-bold:before {
  content: "\f0d6";
}

.caret-line-right-bold:before {
  content: "\f0d7";
}

.caret-line-up-bold:before {
  content: "\f0d8";
}

.caret-right-bold:before {
  content: "\f0d9";
}

.caret-up-bold:before {
  content: "\f0da";
}

.caret-up-down-bold:before {
  content: "\f0db";
}

.carrot-bold:before {
  content: "\f0dc";
}

.cash-register-bold:before {
  content: "\f0dd";
}

.cassette-tape-bold:before {
  content: "\f0de";
}

.castle-turret-bold:before {
  content: "\f0df";
}

.cat-bold:before {
  content: "\f0e0";
}

.cell-signal-full-bold:before {
  content: "\f0e1";
}

.cell-signal-high-bold:before {
  content: "\f0e2";
}

.cell-signal-low-bold:before {
  content: "\f0e3";
}

.cell-signal-medium-bold:before {
  content: "\f0e4";
}

.cell-signal-none-bold:before {
  content: "\f0e5";
}

.cell-signal-slash-bold:before {
  content: "\f0e6";
}

.cell-signal-x-bold:before {
  content: "\f0e7";
}

.cell-tower-bold:before {
  content: "\f0e8";
}

.certificate-bold:before {
  content: "\f0e9";
}

.chair-bold:before {
  content: "\f0ea";
}

.chalkboard-bold:before {
  content: "\f0eb";
}

.chalkboard-simple-bold:before {
  content: "\f0ec";
}

.chalkboard-teacher-bold:before {
  content: "\f0ed";
}

.champagne-bold:before {
  content: "\f0ee";
}

.charging-station-bold:before {
  content: "\f0ef";
}

.chart-bar-bold:before {
  content: "\f0f0";
}

.chart-bar-horizontal-bold:before {
  content: "\f0f1";
}

.chart-donut-bold:before {
  content: "\f0f2";
}

.chart-line-bold:before {
  content: "\f0f3";
}

.chart-line-down-bold:before {
  content: "\f0f4";
}

.chart-line-up-bold:before {
  content: "\f0f5";
}

.chart-pie-bold:before {
  content: "\f0f6";
}

.chart-pie-slice-bold:before {
  content: "\f0f7";
}

.chart-polar-bold:before {
  content: "\f0f8";
}

.chart-scatter-bold:before {
  content: "\f0f9";
}

.chat-bold:before {
  content: "\f0fa";
}

.chat-centered-bold:before {
  content: "\f0fb";
}

.chat-centered-dots-bold:before {
  content: "\f0fc";
}

.chat-centered-slash-bold:before {
  content: "\f0fd";
}

.chat-centered-text-bold:before {
  content: "\f0fe";
}

.chat-circle-bold:before {
  content: "\f0ff";
}

.chat-circle-dots-bold:before {
  content: "\f100";
}

.chat-circle-slash-bold:before {
  content: "\f101";
}

.chat-circle-text-bold:before {
  content: "\f102";
}

.chat-dots-bold:before {
  content: "\f103";
}

.chat-slash-bold:before {
  content: "\f104";
}

.chat-teardrop-bold:before {
  content: "\f105";
}

.chat-teardrop-dots-bold:before {
  content: "\f106";
}

.chat-teardrop-slash-bold:before {
  content: "\f107";
}

.chat-teardrop-text-bold:before {
  content: "\f108";
}

.chat-text-bold:before {
  content: "\f109";
}

.chats-bold:before {
  content: "\f10a";
}

.chats-circle-bold:before {
  content: "\f10b";
}

.chats-teardrop-bold:before {
  content: "\f10c";
}

.check-bold:before {
  content: "\f10d";
}

.check-circle-bold:before {
  content: "\f10e";
}

.check-fat-bold:before {
  content: "\f10f";
}

.check-square-bold:before {
  content: "\f110";
}

.check-square-offset-bold:before {
  content: "\f111";
}

.checkerboard-bold:before {
  content: "\f112";
}

.checks-bold:before {
  content: "\f113";
}

.cheers-bold:before {
  content: "\f114";
}

.cheese-bold:before {
  content: "\f115";
}

.chef-hat-bold:before {
  content: "\f116";
}

.cherries-bold:before {
  content: "\f117";
}

.church-bold:before {
  content: "\f118";
}

.cigarette-bold:before {
  content: "\f119";
}

.cigarette-slash-bold:before {
  content: "\f11a";
}

.circle-bold:before {
  content: "\f11b";
}

.circle-dashed-bold:before {
  content: "\f11c";
}

.circle-half-bold:before {
  content: "\f11d";
}

.circle-half-tilt-bold:before {
  content: "\f11e";
}

.circle-notch-bold:before {
  content: "\f11f";
}

.circles-four-bold:before {
  content: "\f120";
}

.circles-three-bold:before {
  content: "\f121";
}

.circles-three-plus-bold:before {
  content: "\f122";
}

.circuitry-bold:before {
  content: "\f123";
}

.city-bold:before {
  content: "\f124";
}

.clipboard-bold:before {
  content: "\f125";
}

.clipboard-text-bold:before {
  content: "\f126";
}

.clock-afternoon-bold:before {
  content: "\f127";
}

.clock-bold:before {
  content: "\f128";
}

.clock-clockwise-bold:before {
  content: "\f129";
}

.clock-countdown-bold:before {
  content: "\f12a";
}

.clock-counter-clockwise-bold:before {
  content: "\f12b";
}

.clock-user-bold:before {
  content: "\f12c";
}

.closed-captioning-bold:before {
  content: "\f12d";
}

.cloud-arrow-down-bold:before {
  content: "\f12e";
}

.cloud-arrow-up-bold:before {
  content: "\f12f";
}

.cloud-bold:before {
  content: "\f130";
}

.cloud-check-bold:before {
  content: "\f131";
}

.cloud-fog-bold:before {
  content: "\f132";
}

.cloud-lightning-bold:before {
  content: "\f133";
}

.cloud-moon-bold:before {
  content: "\f134";
}

.cloud-rain-bold:before {
  content: "\f135";
}

.cloud-slash-bold:before {
  content: "\f136";
}

.cloud-snow-bold:before {
  content: "\f137";
}

.cloud-sun-bold:before {
  content: "\f138";
}

.cloud-warning-bold:before {
  content: "\f139";
}

.cloud-x-bold:before {
  content: "\f13a";
}

.clover-bold:before {
  content: "\f13b";
}

.club-bold:before {
  content: "\f13c";
}

.coat-hanger-bold:before {
  content: "\f13d";
}

.coda-logo-bold:before {
  content: "\f13e";
}

.code-block-bold:before {
  content: "\f13f";
}

.code-bold:before {
  content: "\f140";
}

.code-simple-bold:before {
  content: "\f141";
}

.codepen-logo-bold:before {
  content: "\f142";
}

.codesandbox-logo-bold:before {
  content: "\f143";
}

.coffee-bean-bold:before {
  content: "\f144";
}

.coffee-bold:before {
  content: "\f145";
}

.coin-bold:before {
  content: "\f146";
}

.coin-vertical-bold:before {
  content: "\f147";
}

.coins-bold:before {
  content: "\f148";
}

.columns-bold:before {
  content: "\f149";
}

.columns-plus-left-bold:before {
  content: "\f14a";
}

.columns-plus-right-bold:before {
  content: "\f14b";
}

.command-bold:before {
  content: "\f14c";
}

.compass-bold:before {
  content: "\f14d";
}

.compass-rose-bold:before {
  content: "\f14e";
}

.compass-tool-bold:before {
  content: "\f14f";
}

.computer-tower-bold:before {
  content: "\f150";
}

.confetti-bold:before {
  content: "\f151";
}

.contactless-payment-bold:before {
  content: "\f152";
}

.control-bold:before {
  content: "\f153";
}

.cookie-bold:before {
  content: "\f154";
}

.cooking-pot-bold:before {
  content: "\f155";
}

.copy-bold:before {
  content: "\f156";
}

.copy-simple-bold:before {
  content: "\f157";
}

.copyleft-bold:before {
  content: "\f158";
}

.copyright-bold:before {
  content: "\f159";
}

.corners-in-bold:before {
  content: "\f15a";
}

.corners-out-bold:before {
  content: "\f15b";
}

.couch-bold:before {
  content: "\f15c";
}

.court-basketball-bold:before {
  content: "\f15d";
}

.cow-bold:before {
  content: "\f15e";
}

.cowboy-hat-bold:before {
  content: "\f15f";
}

.cpu-bold:before {
  content: "\f160";
}

.crane-bold:before {
  content: "\f161";
}

.crane-tower-bold:before {
  content: "\f162";
}

.credit-card-bold:before {
  content: "\f163";
}

.cricket-bold:before {
  content: "\f164";
}

.crop-bold:before {
  content: "\f165";
}

.cross-bold:before {
  content: "\f166";
}

.crosshair-bold:before {
  content: "\f167";
}

.crosshair-simple-bold:before {
  content: "\f168";
}

.crown-bold:before {
  content: "\f169";
}

.crown-simple-bold:before {
  content: "\f16a";
}

.cube-bold:before {
  content: "\f16b";
}

.cube-focus-bold:before {
  content: "\f16c";
}

.cube-transparent-bold:before {
  content: "\f16d";
}

.currency-btc-bold:before {
  content: "\f16e";
}

.currency-circle-dollar-bold:before {
  content: "\f16f";
}

.currency-cny-bold:before {
  content: "\f170";
}

.currency-dollar-bold:before {
  content: "\f171";
}

.currency-dollar-simple-bold:before {
  content: "\f172";
}

.currency-eth-bold:before {
  content: "\f173";
}

.currency-eur-bold:before {
  content: "\f174";
}

.currency-gbp-bold:before {
  content: "\f175";
}

.currency-inr-bold:before {
  content: "\f176";
}

.currency-jpy-bold:before {
  content: "\f177";
}

.currency-krw-bold:before {
  content: "\f178";
}

.currency-kzt-bold:before {
  content: "\f179";
}

.currency-ngn-bold:before {
  content: "\f17a";
}

.currency-rub-bold:before {
  content: "\f17b";
}

.cursor-bold:before {
  content: "\f17c";
}

.cursor-click-bold:before {
  content: "\f17d";
}

.cursor-text-bold:before {
  content: "\f17e";
}

.cylinder-bold:before {
  content: "\f17f";
}

.database-bold:before {
  content: "\f180";
}

.desk-bold:before {
  content: "\f181";
}

.desktop-bold:before {
  content: "\f182";
}

.desktop-tower-bold:before {
  content: "\f183";
}

.detective-bold:before {
  content: "\f184";
}

.dev-to-logo-bold:before {
  content: "\f185";
}

.device-mobile-bold:before {
  content: "\f186";
}

.device-mobile-camera-bold:before {
  content: "\f187";
}

.device-mobile-slash-bold:before {
  content: "\f188";
}

.device-mobile-speaker-bold:before {
  content: "\f189";
}

.device-rotate-bold:before {
  content: "\f18a";
}

.device-tablet-bold:before {
  content: "\f18b";
}

.device-tablet-camera-bold:before {
  content: "\f18c";
}

.device-tablet-speaker-bold:before {
  content: "\f18d";
}

.devices-bold:before {
  content: "\f18e";
}

.diamond-bold:before {
  content: "\f18f";
}

.diamonds-four-bold:before {
  content: "\f190";
}

.dice-five-bold:before {
  content: "\f191";
}

.dice-four-bold:before {
  content: "\f192";
}

.dice-one-bold:before {
  content: "\f193";
}

.dice-six-bold:before {
  content: "\f194";
}

.dice-three-bold:before {
  content: "\f195";
}

.dice-two-bold:before {
  content: "\f196";
}

.disc-bold:before {
  content: "\f197";
}

.disco-ball-bold:before {
  content: "\f198";
}

.discord-logo-bold:before {
  content: "\f199";
}

.divide-bold:before {
  content: "\f19a";
}

.dna-bold:before {
  content: "\f19b";
}

.dog-bold:before {
  content: "\f19c";
}

.door-bold:before {
  content: "\f19d";
}

.door-open-bold:before {
  content: "\f19e";
}

.dot-bold:before {
  content: "\f19f";
}

.dot-outline-bold:before {
  content: "\f1a0";
}

.dots-nine-bold:before {
  content: "\f1a1";
}

.dots-six-bold:before {
  content: "\f1a2";
}

.dots-six-vertical-bold:before {
  content: "\f1a3";
}

.dots-three-bold:before {
  content: "\f1a4";
}

.dots-three-circle-bold:before {
  content: "\f1a5";
}

.dots-three-circle-vertical-bold:before {
  content: "\f1a6";
}

.dots-three-outline-bold:before {
  content: "\f1a7";
}

.dots-three-outline-vertical-bold:before {
  content: "\f1a8";
}

.dots-three-vertical-bold:before {
  content: "\f1a9";
}

.download-bold:before {
  content: "\f1aa";
}

.download-simple-bold:before {
  content: "\f1ab";
}

.dress-bold:before {
  content: "\f1ac";
}

.dresser-bold:before {
  content: "\f1ad";
}

.dribbble-logo-bold:before {
  content: "\f1ae";
}

.drone-bold:before {
  content: "\f1af";
}

.drop-bold:before {
  content: "\f1b0";
}

.drop-half-bold:before {
  content: "\f1b1";
}

.drop-half-bottom-bold:before {
  content: "\f1b2";
}

.drop-simple-bold:before {
  content: "\f1b3";
}

.drop-slash-bold:before {
  content: "\f1b4";
}

.dropbox-logo-bold:before {
  content: "\f1b5";
}

.ear-slash-bold:before {
  content: "\f1b6";
}

.egg-bold:before {
  content: "\f1b7";
}

.egg-crack-bold:before {
  content: "\f1b8";
}

.eject-bold:before {
  content: "\f1b9";
}

.eject-simple-bold:before {
  content: "\f1ba";
}

.elevator-bold:before {
  content: "\f1bb";
}

.empty-bold:before {
  content: "\f1bc";
}

.engine-bold:before {
  content: "\f1bd";
}

.envelope-bold:before {
  content: "\f1be";
}

.envelope-open-bold:before {
  content: "\f1bf";
}

.envelope-simple-bold:before {
  content: "\f1c0";
}

.envelope-simple-open-bold:before {
  content: "\f1c1";
}

.equalizer-bold:before {
  content: "\f1c2";
}

.equals-bold:before {
  content: "\f1c3";
}

.eraser-bold:before {
  content: "\f1c4";
}

.escalator-down-bold:before {
  content: "\f1c5";
}

.escalator-up-bold:before {
  content: "\f1c6";
}

.exam-bold:before {
  content: "\f1c7";
}

.exclamation-mark-bold:before {
  content: "\f1c8";
}

.exclude-bold:before {
  content: "\f1c9";
}

.exclude-square-bold:before {
  content: "\f1ca";
}

.export-bold:before {
  content: "\f1cb";
}

.eye-bold:before {
  content: "\f1cc";
}

.eye-closed-bold:before {
  content: "\f1cd";
}

.eye-slash-bold:before {
  content: "\f1ce";
}

.eyedropper-bold:before {
  content: "\f1cf";
}

.eyedropper-sample-bold:before {
  content: "\f1d0";
}

.eyeglasses-bold:before {
  content: "\f1d1";
}

.eyes-bold:before {
  content: "\f1d2";
}

.face-mask-bold:before {
  content: "\f1d3";
}

.facebook-logo-bold:before {
  content: "\f1d4";
}

.factory-bold:before {
  content: "\f1d5";
}

.faders-bold:before {
  content: "\f1d6";
}

.faders-horizontal-bold:before {
  content: "\f1d7";
}

.fallout-shelter-bold:before {
  content: "\f1d8";
}

.fan-bold:before {
  content: "\f1d9";
}

.farm-bold:before {
  content: "\f1da";
}

.fast-forward-bold:before {
  content: "\f1db";
}

.feather-bold:before {
  content: "\f1dc";
}

.fediverse-logo-bold:before {
  content: "\f1dd";
}

.figma-logo-bold:before {
  content: "\f1de";
}

.file-archive-bold:before {
  content: "\f1df";
}

.file-arrow-down-bold:before {
  content: "\f1e0";
}

.file-arrow-up-bold:before {
  content: "\f1e1";
}

.file-audio-bold:before {
  content: "\f1e2";
}

.file-bold:before {
  content: "\f1e3";
}

.file-c-bold:before {
  content: "\f1e4";
}

.file-c-sharp-bold:before {
  content: "\f1e5";
}

.file-cloud-bold:before {
  content: "\f1e6";
}

.file-code-bold:before {
  content: "\f1e7";
}

.file-cpp-bold:before {
  content: "\f1e8";
}

.file-css-bold:before {
  content: "\f1e9";
}

.file-csv-bold:before {
  content: "\f1ea";
}

.file-dashed-bold:before {
  content: "\f1eb";
}

.file-doc-bold:before {
  content: "\f1ec";
}

.file-html-bold:before {
  content: "\f1ed";
}

.file-image-bold:before {
  content: "\f1ee";
}

.file-ini-bold:before {
  content: "\f1ef";
}

.file-jpg-bold:before {
  content: "\f1f0";
}

.file-js-bold:before {
  content: "\f1f1";
}

.file-jsx-bold:before {
  content: "\f1f2";
}

.file-lock-bold:before {
  content: "\f1f3";
}

.file-magnifying-glass-bold:before {
  content: "\f1f4";
}

.file-md-bold:before {
  content: "\f1f5";
}

.file-minus-bold:before {
  content: "\f1f6";
}

.file-pdf-bold:before {
  content: "\f1f7";
}

.file-plus-bold:before {
  content: "\f1f8";
}

.file-png-bold:before {
  content: "\f1f9";
}

.file-ppt-bold:before {
  content: "\f1fa";
}

.file-py-bold:before {
  content: "\f1fb";
}

.file-rs-bold:before {
  content: "\f1fc";
}

.file-sql-bold:before {
  content: "\f1fd";
}

.file-svg-bold:before {
  content: "\f1fe";
}

.file-text-bold:before {
  content: "\f1ff";
}

.file-ts-bold:before {
  content: "\f200";
}

.file-tsx-bold:before {
  content: "\f201";
}

.file-txt-bold:before {
  content: "\f202";
}

.file-video-bold:before {
  content: "\f203";
}

.file-vue-bold:before {
  content: "\f204";
}

.file-x-bold:before {
  content: "\f205";
}

.file-xls-bold:before {
  content: "\f206";
}

.file-zip-bold:before {
  content: "\f207";
}

.files-bold:before {
  content: "\f208";
}

.film-reel-bold:before {
  content: "\f209";
}

.film-script-bold:before {
  content: "\f20a";
}

.film-slate-bold:before {
  content: "\f20b";
}

.film-strip-bold:before {
  content: "\f20c";
}

.fingerprint-bold:before {
  content: "\f20d";
}

.fingerprint-simple-bold:before {
  content: "\f20e";
}

.finn-the-human-bold:before {
  content: "\f20f";
}

.fire-bold:before {
  content: "\f210";
}

.fire-extinguisher-bold:before {
  content: "\f211";
}

.fire-simple-bold:before {
  content: "\f212";
}

.fire-truck-bold:before {
  content: "\f213";
}

.first-aid-bold:before {
  content: "\f214";
}

.first-aid-kit-bold:before {
  content: "\f215";
}

.fish-bold:before {
  content: "\f216";
}

.fish-simple-bold:before {
  content: "\f217";
}

.flag-banner-bold:before {
  content: "\f218";
}

.flag-banner-fold-bold:before {
  content: "\f219";
}

.flag-bold:before {
  content: "\f21a";
}

.flag-checkered-bold:before {
  content: "\f21b";
}

.flag-pennant-bold:before {
  content: "\f21c";
}

.flame-bold:before {
  content: "\f21d";
}

.flashlight-bold:before {
  content: "\f21e";
}

.flask-bold:before {
  content: "\f21f";
}

.flip-horizontal-bold:before {
  content: "\f220";
}

.flip-vertical-bold:before {
  content: "\f221";
}

.floppy-disk-back-bold:before {
  content: "\f222";
}

.floppy-disk-bold:before {
  content: "\f223";
}

.flow-arrow-bold:before {
  content: "\f224";
}

.flower-bold:before {
  content: "\f225";
}

.flower-lotus-bold:before {
  content: "\f226";
}

.flower-tulip-bold:before {
  content: "\f227";
}

.flying-saucer-bold:before {
  content: "\f228";
}

.folder-bold:before {
  content: "\f229";
}

.folder-dashed-bold:before {
  content: "\f22a";
}

.folder-lock-bold:before {
  content: "\f22b";
}

.folder-minus-bold:before {
  content: "\f22c";
}

.folder-open-bold:before {
  content: "\f22d";
}

.folder-plus-bold:before {
  content: "\f22e";
}

.folder-simple-bold:before {
  content: "\f22f";
}

.folder-simple-dashed-bold:before {
  content: "\f230";
}

.folder-simple-lock-bold:before {
  content: "\f231";
}

.folder-simple-minus-bold:before {
  content: "\f232";
}

.folder-simple-plus-bold:before {
  content: "\f233";
}

.folder-simple-star-bold:before {
  content: "\f234";
}

.folder-simple-user-bold:before {
  content: "\f235";
}

.folder-star-bold:before {
  content: "\f236";
}

.folder-user-bold:before {
  content: "\f237";
}

.folders-bold:before {
  content: "\f238";
}

.football-bold:before {
  content: "\f239";
}

.football-helmet-bold:before {
  content: "\f23a";
}

.footprints-bold:before {
  content: "\f23b";
}

.fork-knife-bold:before {
  content: "\f23c";
}

.four-k-bold:before {
  content: "\f23d";
}

.frame-corners-bold:before {
  content: "\f23e";
}

.framer-logo-bold:before {
  content: "\f23f";
}

.function-bold:before {
  content: "\f240";
}

.funnel-bold:before {
  content: "\f241";
}

.funnel-simple-bold:before {
  content: "\f242";
}

.funnel-simple-x-bold:before {
  content: "\f243";
}

.funnel-x-bold:before {
  content: "\f244";
}

.game-controller-bold:before {
  content: "\f245";
}

.garage-bold:before {
  content: "\f246";
}

.gas-can-bold:before {
  content: "\f247";
}

.gas-pump-bold:before {
  content: "\f248";
}

.gauge-bold:before {
  content: "\f249";
}

.gavel-bold:before {
  content: "\f24a";
}

.gear-bold:before {
  content: "\f24b";
}

.gear-fine-bold:before {
  content: "\f24c";
}

.gear-six-bold:before {
  content: "\f24d";
}

.gender-female-bold:before {
  content: "\f24e";
}

.gender-intersex-bold:before {
  content: "\f24f";
}

.gender-male-bold:before {
  content: "\f250";
}

.gender-neuter-bold:before {
  content: "\f251";
}

.gender-nonbinary-bold:before {
  content: "\f252";
}

.gender-transgender-bold:before {
  content: "\f253";
}

.ghost-bold:before {
  content: "\f254";
}

.gif-bold:before {
  content: "\f255";
}

.gift-bold:before {
  content: "\f256";
}

.git-branch-bold:before {
  content: "\f257";
}

.git-commit-bold:before {
  content: "\f258";
}

.git-diff-bold:before {
  content: "\f259";
}

.git-fork-bold:before {
  content: "\f25a";
}

.git-merge-bold:before {
  content: "\f25b";
}

.git-pull-request-bold:before {
  content: "\f25c";
}

.github-logo-bold:before {
  content: "\f25d";
}

.gitlab-logo-bold:before {
  content: "\f25e";
}

.gitlab-logo-simple-bold:before {
  content: "\f25f";
}

.globe-bold:before {
  content: "\f260";
}

.globe-hemisphere-east-bold:before {
  content: "\f261";
}

.globe-hemisphere-west-bold:before {
  content: "\f262";
}

.globe-simple-bold:before {
  content: "\f263";
}

.globe-stand-bold:before {
  content: "\f264";
}

.goggles-bold:before {
  content: "\f265";
}

.golf-bold:before {
  content: "\f266";
}

.goodreads-logo-bold:before {
  content: "\f267";
}

.google-cardboard-logo-bold:before {
  content: "\f268";
}

.google-chrome-logo-bold:before {
  content: "\f269";
}

.google-logo-bold:before {
  content: "\f26a";
}

.google-photos-logo-bold:before {
  content: "\f26b";
}

.google-play-logo-bold:before {
  content: "\f26c";
}

.google-podcasts-logo-bold:before {
  content: "\f26d";
}

.gps-bold:before {
  content: "\f26e";
}

.gps-fix-bold:before {
  content: "\f26f";
}

.gps-slash-bold:before {
  content: "\f270";
}

.gradient-bold:before {
  content: "\f271";
}

.graduation-cap-bold:before {
  content: "\f272";
}

.grains-bold:before {
  content: "\f273";
}

.grains-slash-bold:before {
  content: "\f274";
}

.graph-bold:before {
  content: "\f275";
}

.graphics-card-bold:before {
  content: "\f276";
}

.greater-than-bold:before {
  content: "\f277";
}

.greater-than-or-equal-bold:before {
  content: "\f278";
}

.grid-four-bold:before {
  content: "\f279";
}

.grid-nine-bold:before {
  content: "\f27a";
}

.hair-dryer-bold:before {
  content: "\f27b";
}

.hamburger-bold:before {
  content: "\f27c";
}

.hammer-bold:before {
  content: "\f27d";
}

.hand-arrow-down-bold:before {
  content: "\f27e";
}

.hand-arrow-up-bold:before {
  content: "\f27f";
}

.hand-bold:before {
  content: "\f280";
}

.hand-coins-bold:before {
  content: "\f281";
}

.hand-deposit-bold:before {
  content: "\f282";
}

.hand-eye-bold:before {
  content: "\f283";
}

.hand-fist-bold:before {
  content: "\f284";
}

.hand-grabbing-bold:before {
  content: "\f285";
}

.hand-heart-bold:before {
  content: "\f286";
}

.hand-palm-bold:before {
  content: "\f287";
}

.hand-peace-bold:before {
  content: "\f288";
}

.hand-pointing-bold:before {
  content: "\f289";
}

.hand-soap-bold:before {
  content: "\f28a";
}

.hand-swipe-left-bold:before {
  content: "\f28b";
}

.hand-swipe-right-bold:before {
  content: "\f28c";
}

.hand-tap-bold:before {
  content: "\f28d";
}

.hand-waving-bold:before {
  content: "\f28e";
}

.hand-withdraw-bold:before {
  content: "\f28f";
}

.handbag-bold:before {
  content: "\f290";
}

.handbag-simple-bold:before {
  content: "\f291";
}

.hands-clapping-bold:before {
  content: "\f292";
}

.hands-praying-bold:before {
  content: "\f293";
}

.handshake-bold:before {
  content: "\f294";
}

.hard-drive-bold:before {
  content: "\f295";
}

.hard-drives-bold:before {
  content: "\f296";
}

.hard-hat-bold:before {
  content: "\f297";
}

.hash-bold:before {
  content: "\f298";
}

.hash-straight-bold:before {
  content: "\f299";
}

.head-circuit-bold:before {
  content: "\f29a";
}

.headlights-bold:before {
  content: "\f29b";
}

.headphones-bold:before {
  content: "\f29c";
}

.headset-bold:before {
  content: "\f29d";
}

.heart-bold:before {
  content: "\f29e";
}

.heart-break-bold:before {
  content: "\f29f";
}

.heart-half-bold:before {
  content: "\f2a0";
}

.heart-straight-bold:before {
  content: "\f2a1";
}

.heart-straight-break-bold:before {
  content: "\f2a2";
}

.heartbeat-bold:before {
  content: "\f2a3";
}

.hexagon-bold:before {
  content: "\f2a4";
}

.high-definition-bold:before {
  content: "\f2a5";
}

.high-heel-bold:before {
  content: "\f2a6";
}

.highlighter-bold:before {
  content: "\f2a7";
}

.highlighter-circle-bold:before {
  content: "\f2a8";
}

.hockey-bold:before {
  content: "\f2a9";
}

.hoodie-bold:before {
  content: "\f2aa";
}

.horse-bold:before {
  content: "\f2ab";
}

.hospital-bold:before {
  content: "\f2ac";
}

.hourglass-bold:before {
  content: "\f2ad";
}

.hourglass-high-bold:before {
  content: "\f2ae";
}

.hourglass-low-bold:before {
  content: "\f2af";
}

.hourglass-medium-bold:before {
  content: "\f2b0";
}

.hourglass-simple-bold:before {
  content: "\f2b1";
}

.hourglass-simple-high-bold:before {
  content: "\f2b2";
}

.hourglass-simple-low-bold:before {
  content: "\f2b3";
}

.hourglass-simple-medium-bold:before {
  content: "\f2b4";
}

.house-bold:before {
  content: "\f2b5";
}

.house-line-bold:before {
  content: "\f2b6";
}

.house-simple-bold:before {
  content: "\f2b7";
}

.ice-cream-bold:before {
  content: "\f2b8";
}

.identification-badge-bold:before {
  content: "\f2b9";
}

.identification-card-bold:before {
  content: "\f2ba";
}

.image-bold:before {
  content: "\f2bb";
}

.image-broken-bold:before {
  content: "\f2bc";
}

.image-square-bold:before {
  content: "\f2bd";
}

.images-bold:before {
  content: "\f2be";
}

.images-square-bold:before {
  content: "\f2bf";
}

.infinity-bold:before {
  content: "\f2c0";
}

.info-bold:before {
  content: "\f2c1";
}

.instagram-logo-bold:before {
  content: "\f2c2";
}

.intersect-bold:before {
  content: "\f2c3";
}

.intersect-square-bold:before {
  content: "\f2c4";
}

.intersect-three-bold:before {
  content: "\f2c5";
}

.intersection-bold:before {
  content: "\f2c6";
}

.invoice-bold:before {
  content: "\f2c7";
}

.island-bold:before {
  content: "\f2c8";
}

.jar-bold:before {
  content: "\f2c9";
}

.jar-label-bold:before {
  content: "\f2ca";
}

.joystick-bold:before {
  content: "\f2cb";
}

.kanban-bold:before {
  content: "\f2cc";
}

.key-bold:before {
  content: "\f2cd";
}

.key-return-bold:before {
  content: "\f2ce";
}

.keyboard-bold:before {
  content: "\f2cf";
}

.keyhole-bold:before {
  content: "\f2d0";
}

.knife-bold:before {
  content: "\f2d1";
}

.ladder-bold:before {
  content: "\f2d2";
}

.ladder-simple-bold:before {
  content: "\f2d3";
}

.lamp-bold:before {
  content: "\f2d4";
}

.lamp-pendant-bold:before {
  content: "\f2d5";
}

.laptop-bold:before {
  content: "\f2d6";
}

.lasso-bold:before {
  content: "\f2d7";
}

.lastfm-logo-bold:before {
  content: "\f2d8";
}

.layout-bold:before {
  content: "\f2d9";
}

.leaf-bold:before {
  content: "\f2da";
}

.lectern-bold:before {
  content: "\f2db";
}

.lego-bold:before {
  content: "\f2dc";
}

.lego-smiley-bold:before {
  content: "\f2dd";
}

.less-than-bold:before {
  content: "\f2de";
}

.less-than-or-equal-bold:before {
  content: "\f2df";
}

.letter-circle-h-bold:before {
  content: "\f2e0";
}

.letter-circle-p-bold:before {
  content: "\f2e1";
}

.letter-circle-v-bold:before {
  content: "\f2e2";
}

.lifebuoy-bold:before {
  content: "\f2e3";
}

.lightbulb-bold:before {
  content: "\f2e4";
}

.lightbulb-filament-bold:before {
  content: "\f2e5";
}

.lighthouse-bold:before {
  content: "\f2e6";
}

.lightning-a-bold:before {
  content: "\f2e7";
}

.lightning-bold:before {
  content: "\f2e8";
}

.lightning-slash-bold:before {
  content: "\f2e9";
}

.line-segment-bold:before {
  content: "\f2ea";
}

.line-segments-bold:before {
  content: "\f2eb";
}

.line-vertical-bold:before {
  content: "\f2ec";
}

.link-bold:before {
  content: "\f2ed";
}

.link-break-bold:before {
  content: "\f2ee";
}

.link-simple-bold:before {
  content: "\f2ef";
}

.link-simple-break-bold:before {
  content: "\f2f0";
}

.link-simple-horizontal-bold:before {
  content: "\f2f1";
}

.link-simple-horizontal-break-bold:before {
  content: "\f2f2";
}

.linkedin-logo-bold:before {
  content: "\f2f3";
}

.linktree-logo-bold:before {
  content: "\f2f4";
}

.linux-logo-bold:before {
  content: "\f2f5";
}

.list-bold:before {
  content: "\f2f6";
}

.list-bullets-bold:before {
  content: "\f2f7";
}

.list-checks-bold:before {
  content: "\f2f8";
}

.list-dashes-bold:before {
  content: "\f2f9";
}

.list-heart-bold:before {
  content: "\f2fa";
}

.list-magnifying-glass-bold:before {
  content: "\f2fb";
}

.list-numbers-bold:before {
  content: "\f2fc";
}

.list-plus-bold:before {
  content: "\f2fd";
}

.list-star-bold:before {
  content: "\f2fe";
}

.lock-bold:before {
  content: "\f2ff";
}

.lock-key-bold:before {
  content: "\f300";
}

.lock-key-open-bold:before {
  content: "\f301";
}

.lock-laminated-bold:before {
  content: "\f302";
}

.lock-laminated-open-bold:before {
  content: "\f303";
}

.lock-open-bold:before {
  content: "\f304";
}

.lock-simple-bold:before {
  content: "\f305";
}

.lock-simple-open-bold:before {
  content: "\f306";
}

.lockers-bold:before {
  content: "\f307";
}

.log-bold:before {
  content: "\f308";
}

.magic-wand-bold:before {
  content: "\f309";
}

.magnet-bold:before {
  content: "\f30a";
}

.magnet-straight-bold:before {
  content: "\f30b";
}

.magnifying-glass-bold:before {
  content: "\f30c";
}

.magnifying-glass-minus-bold:before {
  content: "\f30d";
}

.magnifying-glass-plus-bold:before {
  content: "\f30e";
}

.mailbox-bold:before {
  content: "\f30f";
}

.map-pin-area-bold:before {
  content: "\f310";
}

.map-pin-bold:before {
  content: "\f311";
}

.map-pin-line-bold:before {
  content: "\f312";
}

.map-pin-plus-bold:before {
  content: "\f313";
}

.map-pin-simple-area-bold:before {
  content: "\f314";
}

.map-pin-simple-bold:before {
  content: "\f315";
}

.map-pin-simple-line-bold:before {
  content: "\f316";
}

.map-trifold-bold:before {
  content: "\f317";
}

.markdown-logo-bold:before {
  content: "\f318";
}

.marker-circle-bold:before {
  content: "\f319";
}

.martini-bold:before {
  content: "\f31a";
}

.mask-happy-bold:before {
  content: "\f31b";
}

.mask-sad-bold:before {
  content: "\f31c";
}

.mastodon-logo-bold:before {
  content: "\f31d";
}

.math-operations-bold:before {
  content: "\f31e";
}

.matrix-logo-bold:before {
  content: "\f31f";
}

.medal-bold:before {
  content: "\f320";
}

.medal-military-bold:before {
  content: "\f321";
}

.medium-logo-bold:before {
  content: "\f322";
}

.megaphone-bold:before {
  content: "\f323";
}

.megaphone-simple-bold:before {
  content: "\f324";
}

.member-of-bold:before {
  content: "\f325";
}

.memory-bold:before {
  content: "\f326";
}

.messenger-logo-bold:before {
  content: "\f327";
}

.meta-logo-bold:before {
  content: "\f328";
}

.meteor-bold:before {
  content: "\f329";
}

.microphone-bold:before {
  content: "\f32a";
}

.microphone-slash-bold:before {
  content: "\f32b";
}

.microphone-stage-bold:before {
  content: "\f32c";
}

.microscope-bold:before {
  content: "\f32d";
}

.microsoft-excel-logo-bold:before {
  content: "\f32e";
}

.microsoft-outlook-logo-bold:before {
  content: "\f32f";
}

.microsoft-powerpoint-logo-bold:before {
  content: "\f330";
}

.microsoft-teams-logo-bold:before {
  content: "\f331";
}

.microsoft-word-logo-bold:before {
  content: "\f332";
}

.minus-bold:before {
  content: "\f333";
}

.minus-circle-bold:before {
  content: "\f334";
}

.minus-square-bold:before {
  content: "\f335";
}

.money-bold:before {
  content: "\f336";
}

.money-wavy-bold:before {
  content: "\f337";
}

.monitor-arrow-up-bold:before {
  content: "\f338";
}

.monitor-bold:before {
  content: "\f339";
}

.monitor-play-bold:before {
  content: "\f33a";
}

.moon-bold:before {
  content: "\f33b";
}

.moon-stars-bold:before {
  content: "\f33c";
}

.moped-bold:before {
  content: "\f33d";
}

.moped-front-bold:before {
  content: "\f33e";
}

.mosque-bold:before {
  content: "\f33f";
}

.motorcycle-bold:before {
  content: "\f340";
}

.mountains-bold:before {
  content: "\f341";
}

.mouse-bold:before {
  content: "\f342";
}

.mouse-left-click-bold:before {
  content: "\f343";
}

.mouse-middle-click-bold:before {
  content: "\f344";
}

.mouse-right-click-bold:before {
  content: "\f345";
}

.mouse-scroll-bold:before {
  content: "\f346";
}

.mouse-simple-bold:before {
  content: "\f347";
}

.music-note-bold:before {
  content: "\f348";
}

.music-note-simple-bold:before {
  content: "\f349";
}

.music-notes-bold:before {
  content: "\f34a";
}

.music-notes-minus-bold:before {
  content: "\f34b";
}

.music-notes-plus-bold:before {
  content: "\f34c";
}

.music-notes-simple-bold:before {
  content: "\f34d";
}

.navigation-arrow-bold:before {
  content: "\f34e";
}

.needle-bold:before {
  content: "\f34f";
}

.network-bold:before {
  content: "\f350";
}

.network-slash-bold:before {
  content: "\f351";
}

.network-x-bold:before {
  content: "\f352";
}

.newspaper-bold:before {
  content: "\f353";
}

.newspaper-clipping-bold:before {
  content: "\f354";
}

.not-equals-bold:before {
  content: "\f355";
}

.not-member-of-bold:before {
  content: "\f356";
}

.not-subset-of-bold:before {
  content: "\f357";
}

.not-superset-of-bold:before {
  content: "\f358";
}

.notches-bold:before {
  content: "\f359";
}

.note-blank-bold:before {
  content: "\f35a";
}

.note-bold:before {
  content: "\f35b";
}

.note-pencil-bold:before {
  content: "\f35c";
}

.notebook-bold:before {
  content: "\f35d";
}

.notepad-bold:before {
  content: "\f35e";
}

.notification-bold:before {
  content: "\f35f";
}

.notion-logo-bold:before {
  content: "\f360";
}

.nuclear-plant-bold:before {
  content: "\f361";
}

.number-circle-eight-bold:before {
  content: "\f362";
}

.number-circle-five-bold:before {
  content: "\f363";
}

.number-circle-four-bold:before {
  content: "\f364";
}

.number-circle-nine-bold:before {
  content: "\f365";
}

.number-circle-one-bold:before {
  content: "\f366";
}

.number-circle-seven-bold:before {
  content: "\f367";
}

.number-circle-six-bold:before {
  content: "\f368";
}

.number-circle-three-bold:before {
  content: "\f369";
}

.number-circle-two-bold:before {
  content: "\f36a";
}

.number-circle-zero-bold:before {
  content: "\f36b";
}

.number-eight-bold:before {
  content: "\f36c";
}

.number-five-bold:before {
  content: "\f36d";
}

.number-four-bold:before {
  content: "\f36e";
}

.number-nine-bold:before {
  content: "\f36f";
}

.number-one-bold:before {
  content: "\f370";
}

.number-seven-bold:before {
  content: "\f371";
}

.number-six-bold:before {
  content: "\f372";
}

.number-square-eight-bold:before {
  content: "\f373";
}

.number-square-five-bold:before {
  content: "\f374";
}

.number-square-four-bold:before {
  content: "\f375";
}

.number-square-nine-bold:before {
  content: "\f376";
}

.number-square-one-bold:before {
  content: "\f377";
}

.number-square-seven-bold:before {
  content: "\f378";
}

.number-square-six-bold:before {
  content: "\f379";
}

.number-square-three-bold:before {
  content: "\f37a";
}

.number-square-two-bold:before {
  content: "\f37b";
}

.number-square-zero-bold:before {
  content: "\f37c";
}

.number-three-bold:before {
  content: "\f37d";
}

.number-two-bold:before {
  content: "\f37e";
}

.number-zero-bold:before {
  content: "\f37f";
}

.numpad-bold:before {
  content: "\f380";
}

.nut-bold:before {
  content: "\f381";
}

.ny-times-logo-bold:before {
  content: "\f382";
}

.office-chair-bold:before {
  content: "\f383";
}

.onigiri-bold:before {
  content: "\f384";
}

.open-ai-logo-bold:before {
  content: "\f385";
}

.option-bold:before {
  content: "\f386";
}

.orange-bold:before {
  content: "\f387";
}

.orange-slice-bold:before {
  content: "\f388";
}

.oven-bold:before {
  content: "\f389";
}

.package-bold:before {
  content: "\f38a";
}

.paint-brush-bold:before {
  content: "\f38b";
}

.paint-brush-broad-bold:before {
  content: "\f38c";
}

.paint-brush-household-bold:before {
  content: "\f38d";
}

.paint-bucket-bold:before {
  content: "\f38e";
}

.paint-roller-bold:before {
  content: "\f38f";
}

.palette-bold:before {
  content: "\f390";
}

.panorama-bold:before {
  content: "\f391";
}

.pants-bold:before {
  content: "\f392";
}

.paper-plane-bold:before {
  content: "\f393";
}

.paper-plane-right-bold:before {
  content: "\f394";
}

.paper-plane-tilt-bold:before {
  content: "\f395";
}

.paperclip-bold:before {
  content: "\f396";
}

.paperclip-horizontal-bold:before {
  content: "\f397";
}

.parachute-bold:before {
  content: "\f398";
}

.paragraph-bold:before {
  content: "\f399";
}

.parallelogram-bold:before {
  content: "\f39a";
}

.park-bold:before {
  content: "\f39b";
}

.password-bold:before {
  content: "\f39c";
}

.path-bold:before {
  content: "\f39d";
}

.patreon-logo-bold:before {
  content: "\f39e";
}

.pause-bold:before {
  content: "\f39f";
}

.pause-circle-bold:before {
  content: "\f3a0";
}

.paw-print-bold:before {
  content: "\f3a1";
}

.paypal-logo-bold:before {
  content: "\f3a2";
}

.peace-bold:before {
  content: "\f3a3";
}

.pen-bold:before {
  content: "\f3a4";
}

.pen-nib-bold:before {
  content: "\f3a5";
}

.pen-nib-straight-bold:before {
  content: "\f3a6";
}

.pencil-bold:before {
  content: "\f3a7";
}

.pencil-circle-bold:before {
  content: "\f3a8";
}

.pencil-line-bold:before {
  content: "\f3a9";
}

.pencil-ruler-bold:before {
  content: "\f3aa";
}

.pencil-simple-bold:before {
  content: "\f3ab";
}

.pencil-simple-line-bold:before {
  content: "\f3ac";
}

.pencil-simple-slash-bold:before {
  content: "\f3ad";
}

.pencil-slash-bold:before {
  content: "\f3ae";
}

.pentagon-bold:before {
  content: "\f3af";
}

.pentagram-bold:before {
  content: "\f3b0";
}

.pepper-bold:before {
  content: "\f3b1";
}

.percent-bold:before {
  content: "\f3b2";
}

.person-arms-spread-bold:before {
  content: "\f3b3";
}

.person-bold:before {
  content: "\f3b4";
}

.person-simple-bike-bold:before {
  content: "\f3b5";
}

.person-simple-bold:before {
  content: "\f3b6";
}

.person-simple-circle-bold:before {
  content: "\f3b7";
}

.person-simple-hike-bold:before {
  content: "\f3b8";
}

.person-simple-run-bold:before {
  content: "\f3b9";
}

.person-simple-ski-bold:before {
  content: "\f3ba";
}

.person-simple-snowboard-bold:before {
  content: "\f3bb";
}

.person-simple-swim-bold:before {
  content: "\f3bc";
}

.person-simple-tai-chi-bold:before {
  content: "\f3bd";
}

.person-simple-throw-bold:before {
  content: "\f3be";
}

.person-simple-walk-bold:before {
  content: "\f3bf";
}

.perspective-bold:before {
  content: "\f3c0";
}

.phone-bold:before {
  content: "\f3c1";
}

.phone-call-bold:before {
  content: "\f3c2";
}

.phone-disconnect-bold:before {
  content: "\f3c3";
}

.phone-incoming-bold:before {
  content: "\f3c4";
}

.phone-list-bold:before {
  content: "\f3c5";
}

.phone-outgoing-bold:before {
  content: "\f3c6";
}

.phone-pause-bold:before {
  content: "\f3c7";
}

.phone-plus-bold:before {
  content: "\f3c8";
}

.phone-slash-bold:before {
  content: "\f3c9";
}

.phone-transfer-bold:before {
  content: "\f3ca";
}

.phone-x-bold:before {
  content: "\f3cb";
}

.phosphor-logo-bold:before {
  content: "\f3cc";
}

.pi-bold:before {
  content: "\f3cd";
}

.piano-keys-bold:before {
  content: "\f3ce";
}

.picnic-table-bold:before {
  content: "\f3cf";
}

.picture-in-picture-bold:before {
  content: "\f3d0";
}

.pill-bold:before {
  content: "\f3d1";
}

.ping-pong-bold:before {
  content: "\f3d2";
}

.pint-glass-bold:before {
  content: "\f3d3";
}

.pinterest-logo-bold:before {
  content: "\f3d4";
}

.pinwheel-bold:before {
  content: "\f3d5";
}

.pipe-bold:before {
  content: "\f3d6";
}

.pipe-wrench-bold:before {
  content: "\f3d7";
}

.pix-logo-bold:before {
  content: "\f3d8";
}

.pizza-bold:before {
  content: "\f3d9";
}

.placeholder-bold:before {
  content: "\f3da";
}

.planet-bold:before {
  content: "\f3db";
}

.plant-bold:before {
  content: "\f3dc";
}

.play-bold:before {
  content: "\f3dd";
}

.play-circle-bold:before {
  content: "\f3de";
}

.play-pause-bold:before {
  content: "\f3df";
}

.playlist-bold:before {
  content: "\f3e0";
}

.plug-bold:before {
  content: "\f3e1";
}

.plug-charging-bold:before {
  content: "\f3e2";
}

.plugs-bold:before {
  content: "\f3e3";
}

.plugs-connected-bold:before {
  content: "\f3e4";
}

.plus-bold:before {
  content: "\f3e5";
}

.plus-circle-bold:before {
  content: "\f3e6";
}

.plus-minus-bold:before {
  content: "\f3e7";
}

.plus-square-bold:before {
  content: "\f3e8";
}

.poker-chip-bold:before {
  content: "\f3e9";
}

.polygon-bold:before {
  content: "\f3ea";
}

.popcorn-bold:before {
  content: "\f3eb";
}

.popsicle-bold:before {
  content: "\f3ec";
}

.potted-plant-bold:before {
  content: "\f3ed";
}

.power-bold:before {
  content: "\f3ee";
}

.prescription-bold:before {
  content: "\f3ef";
}

.presentation-bold:before {
  content: "\f3f0";
}

.presentation-chart-bold:before {
  content: "\f3f1";
}

.printer-bold:before {
  content: "\f3f2";
}

.prohibit-bold:before {
  content: "\f3f3";
}

.prohibit-inset-bold:before {
  content: "\f3f4";
}

.projector-screen-bold:before {
  content: "\f3f5";
}

.projector-screen-chart-bold:before {
  content: "\f3f6";
}

.pulse-bold:before {
  content: "\f3f7";
}

.push-pin-bold:before {
  content: "\f3f8";
}

.push-pin-simple-bold:before {
  content: "\f3f9";
}

.push-pin-simple-slash-bold:before {
  content: "\f3fa";
}

.push-pin-slash-bold:before {
  content: "\f3fb";
}

.puzzle-piece-bold:before {
  content: "\f3fc";
}

.qr-code-bold:before {
  content: "\f3fd";
}

.question-bold:before {
  content: "\f3fe";
}

.question-mark-bold:before {
  content: "\f3ff";
}

.queue-bold:before {
  content: "\f400";
}

.quotes-bold:before {
  content: "\f401";
}

.rabbit-bold:before {
  content: "\f402";
}

.racquet-bold:before {
  content: "\f403";
}

.radical-bold:before {
  content: "\f404";
}

.radio-bold:before {
  content: "\f405";
}

.radio-button-bold:before {
  content: "\f406";
}

.radioactive-bold:before {
  content: "\f407";
}

.rainbow-bold:before {
  content: "\f408";
}

.rainbow-cloud-bold:before {
  content: "\f409";
}

.ranking-bold:before {
  content: "\f40a";
}

.read-cv-logo-bold:before {
  content: "\f40b";
}

.receipt-bold:before {
  content: "\f40c";
}

.receipt-x-bold:before {
  content: "\f40d";
}

.record-bold:before {
  content: "\f40e";
}

.rectangle-bold:before {
  content: "\f40f";
}

.rectangle-dashed-bold:before {
  content: "\f410";
}

.recycle-bold:before {
  content: "\f411";
}

.reddit-logo-bold:before {
  content: "\f412";
}

.repeat-bold:before {
  content: "\f413";
}

.repeat-once-bold:before {
  content: "\f414";
}

.replit-logo-bold:before {
  content: "\f415";
}

.resize-bold:before {
  content: "\f416";
}

.rewind-bold:before {
  content: "\f417";
}

.rewind-circle-bold:before {
  content: "\f418";
}

.road-horizon-bold:before {
  content: "\f419";
}

.robot-bold:before {
  content: "\f41a";
}

.rocket-bold:before {
  content: "\f41b";
}

.rocket-launch-bold:before {
  content: "\f41c";
}

.rows-bold:before {
  content: "\f41d";
}

.rows-plus-bottom-bold:before {
  content: "\f41e";
}

.rows-plus-top-bold:before {
  content: "\f41f";
}

.rss-bold:before {
  content: "\f420";
}

.rss-simple-bold:before {
  content: "\f421";
}

.rug-bold:before {
  content: "\f422";
}

.ruler-bold:before {
  content: "\f423";
}

.sailboat-bold:before {
  content: "\f424";
}

.scales-bold:before {
  content: "\f425";
}

.scan-bold:before {
  content: "\f426";
}

.scan-smiley-bold:before {
  content: "\f427";
}

.scissors-bold:before {
  content: "\f428";
}

.scooter-bold:before {
  content: "\f429";
}

.screencast-bold:before {
  content: "\f42a";
}

.screwdriver-bold:before {
  content: "\f42b";
}

.scribble-bold:before {
  content: "\f42c";
}

.scribble-loop-bold:before {
  content: "\f42d";
}

.scroll-bold:before {
  content: "\f42e";
}

.seal-bold:before {
  content: "\f42f";
}

.seal-check-bold:before {
  content: "\f430";
}

.seal-percent-bold:before {
  content: "\f431";
}

.seal-question-bold:before {
  content: "\f432";
}

.seal-warning-bold:before {
  content: "\f433";
}

.seat-bold:before {
  content: "\f434";
}

.seatbelt-bold:before {
  content: "\f435";
}

.security-camera-bold:before {
  content: "\f436";
}

.selection-all-bold:before {
  content: "\f437";
}

.selection-background-bold:before {
  content: "\f438";
}

.selection-bold:before {
  content: "\f439";
}

.selection-foreground-bold:before {
  content: "\f43a";
}

.selection-inverse-bold:before {
  content: "\f43b";
}

.selection-plus-bold:before {
  content: "\f43c";
}

.selection-slash-bold:before {
  content: "\f43d";
}

.shapes-bold:before {
  content: "\f43e";
}

.share-bold:before {
  content: "\f43f";
}

.share-fat-bold:before {
  content: "\f440";
}

.share-network-bold:before {
  content: "\f441";
}

.shield-bold:before {
  content: "\f442";
}

.shield-check-bold:before {
  content: "\f443";
}

.shield-checkered-bold:before {
  content: "\f444";
}

.shield-chevron-bold:before {
  content: "\f445";
}

.shield-plus-bold:before {
  content: "\f446";
}

.shield-slash-bold:before {
  content: "\f447";
}

.shield-star-bold:before {
  content: "\f448";
}

.shield-warning-bold:before {
  content: "\f449";
}

.shipping-container-bold:before {
  content: "\f44a";
}

.shirt-folded-bold:before {
  content: "\f44b";
}

.shooting-star-bold:before {
  content: "\f44c";
}

.shopping-bag-bold:before {
  content: "\f44d";
}

.shopping-bag-open-bold:before {
  content: "\f44e";
}

.shopping-cart-bold:before {
  content: "\f44f";
}

.shopping-cart-simple-bold:before {
  content: "\f450";
}

.shovel-bold:before {
  content: "\f451";
}

.shower-bold:before {
  content: "\f452";
}

.shrimp-bold:before {
  content: "\f453";
}

.shuffle-angular-bold:before {
  content: "\f454";
}

.shuffle-bold:before {
  content: "\f455";
}

.shuffle-simple-bold:before {
  content: "\f456";
}

.sidebar-bold:before {
  content: "\f457";
}

.sidebar-simple-bold:before {
  content: "\f458";
}

.sigma-bold:before {
  content: "\f459";
}

.sign-in-bold:before {
  content: "\f45a";
}

.sign-out-bold:before {
  content: "\f45b";
}

.signature-bold:before {
  content: "\f45c";
}

.signpost-bold:before {
  content: "\f45d";
}

.sim-card-bold:before {
  content: "\f45e";
}

.siren-bold:before {
  content: "\f45f";
}

.sketch-logo-bold:before {
  content: "\f460";
}

.skip-back-bold:before {
  content: "\f461";
}

.skip-back-circle-bold:before {
  content: "\f462";
}

.skip-forward-bold:before {
  content: "\f463";
}

.skip-forward-circle-bold:before {
  content: "\f464";
}

.skull-bold:before {
  content: "\f465";
}

.skype-logo-bold:before {
  content: "\f466";
}

.slack-logo-bold:before {
  content: "\f467";
}

.sliders-bold:before {
  content: "\f468";
}

.sliders-horizontal-bold:before {
  content: "\f469";
}

.slideshow-bold:before {
  content: "\f46a";
}

.smiley-angry-bold:before {
  content: "\f46b";
}

.smiley-blank-bold:before {
  content: "\f46c";
}

.smiley-bold:before {
  content: "\f46d";
}

.smiley-meh-bold:before {
  content: "\f46e";
}

.smiley-melting-bold:before {
  content: "\f46f";
}

.smiley-nervous-bold:before {
  content: "\f470";
}

.smiley-sad-bold:before {
  content: "\f471";
}

.smiley-sticker-bold:before {
  content: "\f472";
}

.smiley-wink-bold:before {
  content: "\f473";
}

.smiley-x-eyes-bold:before {
  content: "\f474";
}

.sneaker-bold:before {
  content: "\f475";
}

.sneaker-move-bold:before {
  content: "\f476";
}

.snowflake-bold:before {
  content: "\f477";
}

.soccer-ball-bold:before {
  content: "\f478";
}

.sock-bold:before {
  content: "\f479";
}

.solar-panel-bold:before {
  content: "\f47a";
}

.solar-roof-bold:before {
  content: "\f47b";
}

.sort-ascending-bold:before {
  content: "\f47c";
}

.sort-descending-bold:before {
  content: "\f47d";
}

.soundcloud-logo-bold:before {
  content: "\f47e";
}

.sparkle-bold:before {
  content: "\f47f";
}

.speaker-hifi-bold:before {
  content: "\f480";
}

.speaker-high-bold:before {
  content: "\f481";
}

.speaker-low-bold:before {
  content: "\f482";
}

.speaker-none-bold:before {
  content: "\f483";
}

.speaker-simple-high-bold:before {
  content: "\f484";
}

.speaker-simple-low-bold:before {
  content: "\f485";
}

.speaker-simple-none-bold:before {
  content: "\f486";
}

.speaker-simple-slash-bold:before {
  content: "\f487";
}

.speaker-simple-x-bold:before {
  content: "\f488";
}

.speaker-slash-bold:before {
  content: "\f489";
}

.speaker-x-bold:before {
  content: "\f48a";
}

.speedometer-bold:before {
  content: "\f48b";
}

.sphere-bold:before {
  content: "\f48c";
}

.spinner-ball-bold:before {
  content: "\f48d";
}

.spinner-bold:before {
  content: "\f48e";
}

.spinner-gap-bold:before {
  content: "\f48f";
}

.spiral-bold:before {
  content: "\f490";
}

.split-horizontal-bold:before {
  content: "\f491";
}

.split-vertical-bold:before {
  content: "\f492";
}

.spotify-logo-bold:before {
  content: "\f493";
}

.spray-bottle-bold:before {
  content: "\f494";
}

.square-bold:before {
  content: "\f495";
}

.square-half-bold:before {
  content: "\f496";
}

.square-half-bottom-bold:before {
  content: "\f497";
}

.square-logo-bold:before {
  content: "\f498";
}

.square-split-horizontal-bold:before {
  content: "\f499";
}

.square-split-vertical-bold:before {
  content: "\f49a";
}

.squares-four-bold:before {
  content: "\f49b";
}

.stack-bold:before {
  content: "\f49c";
}

.stack-minus-bold:before {
  content: "\f49d";
}

.stack-overflow-logo-bold:before {
  content: "\f49e";
}

.stack-plus-bold:before {
  content: "\f49f";
}

.stack-simple-bold:before {
  content: "\f4a0";
}

.stairs-bold:before {
  content: "\f4a1";
}

.stamp-bold:before {
  content: "\f4a2";
}

.standard-definition-bold:before {
  content: "\f4a3";
}

.star-and-crescent-bold:before {
  content: "\f4a4";
}

.star-bold:before {
  content: "\f4a5";
}

.star-four-bold:before {
  content: "\f4a6";
}

.star-half-bold:before {
  content: "\f4a7";
}

.star-of-david-bold:before {
  content: "\f4a8";
}

.steam-logo-bold:before {
  content: "\f4a9";
}

.steering-wheel-bold:before {
  content: "\f4aa";
}

.steps-bold:before {
  content: "\f4ab";
}

.stethoscope-bold:before {
  content: "\f4ac";
}

.sticker-bold:before {
  content: "\f4ad";
}

.stool-bold:before {
  content: "\f4ae";
}

.stop-bold:before {
  content: "\f4af";
}

.stop-circle-bold:before {
  content: "\f4b0";
}

.storefront-bold:before {
  content: "\f4b1";
}

.strategy-bold:before {
  content: "\f4b2";
}

.stripe-logo-bold:before {
  content: "\f4b3";
}

.student-bold:before {
  content: "\f4b4";
}

.subset-of-bold:before {
  content: "\f4b5";
}

.subset-proper-of-bold:before {
  content: "\f4b6";
}

.subtitles-bold:before {
  content: "\f4b7";
}

.subtitles-slash-bold:before {
  content: "\f4b8";
}

.subtract-bold:before {
  content: "\f4b9";
}

.subtract-square-bold:before {
  content: "\f4ba";
}

.subway-bold:before {
  content: "\f4bb";
}

.suitcase-bold:before {
  content: "\f4bc";
}

.suitcase-rolling-bold:before {
  content: "\f4bd";
}

.suitcase-simple-bold:before {
  content: "\f4be";
}

.sun-bold:before {
  content: "\f4bf";
}

.sun-dim-bold:before {
  content: "\f4c0";
}

.sun-horizon-bold:before {
  content: "\f4c1";
}

.sunglasses-bold:before {
  content: "\f4c2";
}

.superset-of-bold:before {
  content: "\f4c3";
}

.superset-proper-of-bold:before {
  content: "\f4c4";
}

.swap-bold:before {
  content: "\f4c5";
}

.swatches-bold:before {
  content: "\f4c6";
}

.swimming-pool-bold:before {
  content: "\f4c7";
}

.sword-bold:before {
  content: "\f4c8";
}

.synagogue-bold:before {
  content: "\f4c9";
}

.syringe-bold:before {
  content: "\f4ca";
}

.t-shirt-bold:before {
  content: "\f4cb";
}

.table-bold:before {
  content: "\f4cc";
}

.tabs-bold:before {
  content: "\f4cd";
}

.tag-bold:before {
  content: "\f4ce";
}

.tag-chevron-bold:before {
  content: "\f4cf";
}

.tag-simple-bold:before {
  content: "\f4d0";
}

.target-bold:before {
  content: "\f4d1";
}

.tea-bag-bold:before {
  content: "\f4d2";
}

.telegram-logo-bold:before {
  content: "\f4d3";
}

.television-bold:before {
  content: "\f4d4";
}

.television-simple-bold:before {
  content: "\f4d5";
}

.tennis-ball-bold:before {
  content: "\f4d6";
}

.tent-bold:before {
  content: "\f4d7";
}

.terminal-bold:before {
  content: "\f4d8";
}

.terminal-window-bold:before {
  content: "\f4d9";
}

.test-tube-bold:before {
  content: "\f4da";
}

.text-a-underline-bold:before {
  content: "\f4db";
}

.text-aa-bold:before {
  content: "\f4dc";
}

.text-align-center-bold:before {
  content: "\f4dd";
}

.text-align-justify-bold:before {
  content: "\f4de";
}

.text-align-left-bold:before {
  content: "\f4df";
}

.text-align-right-bold:before {
  content: "\f4e0";
}

.text-b-bold:before {
  content: "\f4e1";
}

.text-columns-bold:before {
  content: "\f4e2";
}

.text-h-bold:before {
  content: "\f4e3";
}

.text-h-five-bold:before {
  content: "\f4e4";
}

.text-h-four-bold:before {
  content: "\f4e5";
}

.text-h-one-bold:before {
  content: "\f4e6";
}

.text-h-six-bold:before {
  content: "\f4e7";
}

.text-h-three-bold:before {
  content: "\f4e8";
}

.text-h-two-bold:before {
  content: "\f4e9";
}

.text-indent-bold:before {
  content: "\f4ea";
}

.text-italic-bold:before {
  content: "\f4eb";
}

.text-outdent-bold:before {
  content: "\f4ec";
}

.text-strikethrough-bold:before {
  content: "\f4ed";
}

.text-subscript-bold:before {
  content: "\f4ee";
}

.text-superscript-bold:before {
  content: "\f4ef";
}

.text-t-bold:before {
  content: "\f4f0";
}

.text-t-slash-bold:before {
  content: "\f4f1";
}

.text-underline-bold:before {
  content: "\f4f2";
}

.textbox-bold:before {
  content: "\f4f3";
}

.thermometer-bold:before {
  content: "\f4f4";
}

.thermometer-cold-bold:before {
  content: "\f4f5";
}

.thermometer-hot-bold:before {
  content: "\f4f6";
}

.thermometer-simple-bold:before {
  content: "\f4f7";
}

.threads-logo-bold:before {
  content: "\f4f8";
}

.three-d-bold:before {
  content: "\f4f9";
}

.ticket-bold:before {
  content: "\f4fa";
}

.tidal-logo-bold:before {
  content: "\f4fb";
}

.tiktok-logo-bold:before {
  content: "\f4fc";
}

.tilde-bold:before {
  content: "\f4fd";
}

.timer-bold:before {
  content: "\f4fe";
}

.tip-jar-bold:before {
  content: "\f4ff";
}

.tipi-bold:before {
  content: "\f500";
}

.tire-bold:before {
  content: "\f501";
}

.toggle-left-bold:before {
  content: "\f502";
}

.toggle-right-bold:before {
  content: "\f503";
}

.toilet-bold:before {
  content: "\f504";
}

.toilet-paper-bold:before {
  content: "\f505";
}

.toolbox-bold:before {
  content: "\f506";
}

.tooth-bold:before {
  content: "\f507";
}

.tornado-bold:before {
  content: "\f508";
}

.tote-bold:before {
  content: "\f509";
}

.tote-simple-bold:before {
  content: "\f50a";
}

.towel-bold:before {
  content: "\f50b";
}

.tractor-bold:before {
  content: "\f50c";
}

.trademark-bold:before {
  content: "\f50d";
}

.trademark-registered-bold:before {
  content: "\f50e";
}

.traffic-cone-bold:before {
  content: "\f50f";
}

.traffic-sign-bold:before {
  content: "\f510";
}

.traffic-signal-bold:before {
  content: "\f511";
}

.train-bold:before {
  content: "\f512";
}

.train-regional-bold:before {
  content: "\f513";
}

.train-simple-bold:before {
  content: "\f514";
}

.tram-bold:before {
  content: "\f515";
}

.translate-bold:before {
  content: "\f516";
}

.trash-bold:before {
  content: "\f517";
}

.trash-simple-bold:before {
  content: "\f518";
}

.tray-arrow-down-bold:before {
  content: "\f519";
}

.tray-arrow-up-bold:before {
  content: "\f51a";
}

.tray-bold:before {
  content: "\f51b";
}

.treasure-chest-bold:before {
  content: "\f51c";
}

.tree-bold:before {
  content: "\f51d";
}

.tree-evergreen-bold:before {
  content: "\f51e";
}

.tree-palm-bold:before {
  content: "\f51f";
}

.tree-structure-bold:before {
  content: "\f520";
}

.tree-view-bold:before {
  content: "\f521";
}

.trend-down-bold:before {
  content: "\f522";
}

.trend-up-bold:before {
  content: "\f523";
}

.triangle-dashed-bold:before {
  content: "\f524";
}

.trolley-bold:before {
  content: "\f525";
}

.trolley-suitcase-bold:before {
  content: "\f526";
}

.truck-bold:before {
  content: "\f527";
}

.truck-trailer-bold:before {
  content: "\f528";
}

.tumblr-logo-bold:before {
  content: "\f529";
}

.twitch-logo-bold:before {
  content: "\f52a";
}

.twitter-logo-bold:before {
  content: "\f52b";
}

.union-bold:before {
  content: "\f52c";
}

.unite-bold:before {
  content: "\f52d";
}

.unite-square-bold:before {
  content: "\f52e";
}

.upload-bold:before {
  content: "\f52f";
}

.upload-simple-bold:before {
  content: "\f530";
}

.usb-bold:before {
  content: "\f531";
}

.user-bold:before {
  content: "\f532";
}

.user-check-bold:before {
  content: "\f533";
}

.user-circle-bold:before {
  content: "\f534";
}

.user-circle-check-bold:before {
  content: "\f535";
}

.user-circle-dashed-bold:before {
  content: "\f536";
}

.user-circle-gear-bold:before {
  content: "\f537";
}

.user-circle-minus-bold:before {
  content: "\f538";
}

.user-circle-plus-bold:before {
  content: "\f539";
}

.user-focus-bold:before {
  content: "\f53a";
}

.user-gear-bold:before {
  content: "\f53b";
}

.user-list-bold:before {
  content: "\f53c";
}

.user-minus-bold:before {
  content: "\f53d";
}

.user-plus-bold:before {
  content: "\f53e";
}

.user-rectangle-bold:before {
  content: "\f53f";
}

.user-sound-bold:before {
  content: "\f540";
}

.user-square-bold:before {
  content: "\f541";
}

.user-switch-bold:before {
  content: "\f542";
}

.users-bold:before {
  content: "\f543";
}

.users-four-bold:before {
  content: "\f544";
}

.users-three-bold:before {
  content: "\f545";
}

.van-bold:before {
  content: "\f546";
}

.vault-bold:before {
  content: "\f547";
}

.vector-three-bold:before {
  content: "\f548";
}

.vector-two-bold:before {
  content: "\f549";
}

.vibrate-bold:before {
  content: "\f54a";
}

.video-bold:before {
  content: "\f54b";
}

.video-camera-bold:before {
  content: "\f54c";
}

.video-camera-slash-bold:before {
  content: "\f54d";
}

.video-conference-bold:before {
  content: "\f54e";
}

.vignette-bold:before {
  content: "\f54f";
}

.vinyl-record-bold:before {
  content: "\f550";
}

.virtual-reality-bold:before {
  content: "\f551";
}

.virus-bold:before {
  content: "\f552";
}

.visor-bold:before {
  content: "\f553";
}

.voicemail-bold:before {
  content: "\f554";
}

.volleyball-bold:before {
  content: "\f555";
}

.wall-bold:before {
  content: "\f556";
}

.wallet-bold:before {
  content: "\f557";
}

.warehouse-bold:before {
  content: "\f558";
}

.warning-circle-bold:before {
  content: "\f559";
}

.warning-diamond-bold:before {
  content: "\f55a";
}

.washing-machine-bold:before {
  content: "\f55b";
}

.watch-bold:before {
  content: "\f55c";
}

.wave-sawtooth-bold:before {
  content: "\f55d";
}

.wave-sine-bold:before {
  content: "\f55e";
}

.wave-square-bold:before {
  content: "\f55f";
}

.wave-triangle-bold:before {
  content: "\f560";
}

.waveform-bold:before {
  content: "\f561";
}

.waveform-slash-bold:before {
  content: "\f562";
}

.waves-bold:before {
  content: "\f563";
}

.webcam-bold:before {
  content: "\f564";
}

.webcam-slash-bold:before {
  content: "\f565";
}

.webhooks-logo-bold:before {
  content: "\f566";
}

.wechat-logo-bold:before {
  content: "\f567";
}

.whatsapp-logo-bold:before {
  content: "\f568";
}

.wheelchair-bold:before {
  content: "\f569";
}

.wheelchair-motion-bold:before {
  content: "\f56a";
}

.wifi-high-bold:before {
  content: "\f56b";
}

.wifi-low-bold:before {
  content: "\f56c";
}

.wifi-medium-bold:before {
  content: "\f56d";
}

.wifi-none-bold:before {
  content: "\f56e";
}

.wifi-slash-bold:before {
  content: "\f56f";
}

.wifi-x-bold:before {
  content: "\f570";
}

.wind-bold:before {
  content: "\f571";
}

.windmill-bold:before {
  content: "\f572";
}

.windows-logo-bold:before {
  content: "\f573";
}

.wine-bold:before {
  content: "\f574";
}

.wrench-bold:before {
  content: "\f575";
}

.x-bold:before {
  content: "\f576";
}

.x-circle-bold:before {
  content: "\f577";
}

.x-logo-bold:before {
  content: "\f578";
}

.x-square-bold:before {
  content: "\f579";
}

.yarn-bold:before {
  content: "\f57a";
}

.yin-yang-bold:before {
  content: "\f57b";
}

.youtube-logo-bold:before {
  content: "\f57c";
}

.Administration_Audit:before {
  content: "\e900";
}

.Administration_COA-Certificate-of-Analysis:before {
  content: "\e901";
}

.Administration_forecast:before {
  content: "\e902";
}

.Administration_Geography:before {
  content: "\e903";
}

.Administration_meter:before {
  content: "\e904";
}

.Administration_Multilingual:before {
  content: "\e905";
}

.Administration_My-workspace:before {
  content: "\e906";
}

.Administration_Notifications:before {
  content: "\e907";
}

.Administration_Onboard-Configuration:before {
  content: "\e908";
}

.Administration_Onboard-user-1:before {
  content: "\e909";
}

.Administration_Onboard-user:before {
  content: "\e90a";
}

.Administration_Onboarding-approval:before {
  content: "\e90b";
}

.Administration_Organisation-Role:before {
  content: "\e90c";
}

.Administration_Password-policy:before {
  content: "\e90d";
}

.Administration_Permission-group:before {
  content: "\e90e";
}

.Administration_Profile-approval:before {
  content: "\e90f";
}

.Administration_Unit:before {
  content: "\e910";
}

.Administration_User-management:before {
  content: "\e911";
}

.Administration_User-profile:before {
  content: "\e912";
}

.Administration_Users-group:before {
  content: "\e913";
}

.Administration_Vendor:before {
  content: "\e914";
}

.Alerts_Archived:before {
  content: "\e915";
}

.Alerts_Administration:before {
  content: "\e916";
}

.Alerts_Alert-catalogue:before {
  content: "\e917";
}

.Alerts_Alerts:before {
  content: "\e918";
}

.Alerts_Correlation:before {
  content: "\e919";
}

.Alerts_Events:before {
  content: "\e91a";
}

.Alerts_Frame:before {
  content: "\e91b";
}

.Alerts_My-workspace:before {
  content: "\e91c";
}

.Alerts_Recent:before {
  content: "\e91d";
}

.Anomaly-Detector_build:before {
  content: "\e91e";
}

.Anomaly-Detector_Watch:before {
  content: "\e91f";
}

.App-Onboarding_Proc-bot:before {
  content: "\e920";
}

.App-Onboarding_Application:before {
  content: "\e921";
}

.App-Onboarding_Change-request1:before {
  content: "\e922";
}

.App-Onboarding_Dashboard:before {
  content: "\e923";
}

.App-Onboarding_Tasks:before {
  content: "\e924";
}

.App-Onboarding_Tickets:before {
  content: "\e925";
}

.BI--Analytics_Watch-1:before {
  content: "\e926";
}

.BI--Analytics_build-1:before {
  content: "\e927";
}

.BI--Analytics_build:before {
  content: "\e928";
}

.BI--Analytics_Dashboard:before {
  content: "\e929";
}

.BI--Analytics_Downloads:before {
  content: "\e92a";
}

.BI--Analytics_Package:before {
  content: "\e92b";
}

.BI--Analytics_Report:before {
  content: "\e92c";
}

.BI--Analytics_Watch:before {
  content: "\e92d";
}

.Builders_Orchestrator:before {
  content: "\e92e";
}

.Builders_Action-flow:before {
  content: "\e92f";
}

.Builders_BPMN_ACTION_APP:before {
  content: "\e930";
}

.Builders_configuration:before {
  content: "\e931";
}

.Builders_Dashboard:before {
  content: "\e932";
}

.Builders_Form-designer:before {
  content: "\e933";
}

.Builders_List-designer:before {
  content: "\e934";
}

.Builders_Page-designer:before {
  content: "\e935";
}

.Builders_Projects:before {
  content: "\e936";
}

.Builders_Question-bank:before {
  content: "\e937";
}

.Builders_Rule-Builder:before {
  content: "\e938";
}

.Builders_SLA-list:before {
  content: "\e939";
}

.Builders_tasks:before {
  content: "\e93a";
}

.Campaigns_Campaigns1:before {
  content: "\e93b";
}

.Campaigns_Communication:before {
  content: "\e93c";
}

.Campaigns_Dashboard:before {
  content: "\e93d";
}

.Capacity_Configuration:before {
  content: "\e93e";
}

.Capacity_Dashboard:before {
  content: "\e93f";
}

.Case-Management_Cases:before {
  content: "\e940";
}

.Case-Management_Dashboard:before {
  content: "\e941";
}

.Change-management_Change-management:before {
  content: "\e942";
}

.Channel-Partners_Areas:before {
  content: "\e943";
}

.Channel-Partners_Dashboard:before {
  content: "\e944";
}

.Channel-Partners_Partners:before {
  content: "\e945";
}

.Channel-Partners_Projects:before {
  content: "\e946";
}

.Channel-Partners_Tasks:before {
  content: "\e947";
}

.Configuration_Frame-1:before {
  content: "\e948";
}

.Configuration_Administration:before {
  content: "\e949";
}

.Configuration_Audit-Template:before {
  content: "\e94a";
}

.Configuration_Chaange-dashboard:before {
  content: "\e94b";
}

.Configuration_Config-provision:before {
  content: "\e94c";
}

.Configuration_Configuration-template:before {
  content: "\e94d";
}

.Configuration_Frame:before {
  content: "\e94e";
}

.Configuration_Golden-dashboard:before {
  content: "\e94f";
}

.Configuration_My-workspace:before {
  content: "\e950";
}

.Configuration_Network-hierarchy:before {
  content: "\e951";
}

.Configuration_Parameter-audit:before {
  content: "\e952";
}

.Configuration_Parameter-change:before {
  content: "\e953";
}

.Configuration_Parameter-comparison:before {
  content: "\e954";
}

.Configuration_Telecom-library:before {
  content: "\e955";
}

.Configuration_XML-editor:before {
  content: "\e956";
}

.Coverage_Coverage1:before {
  content: "\e957";
}

.Coverage_Topology:before {
  content: "\e958";
}

.CRM_Dashboard:before {
  content: "\e959";
}

.CRM_Deals:before {
  content: "\e95a";
}

.CRM_Leads:before {
  content: "\e95b";
}

.CRM_Quotes:before {
  content: "\e95c";
}

.CRM_Repeat-orders:before {
  content: "\e95d";
}

.Customer-care_Customer-361:before {
  content: "\e95e";
}

.Customer-care_Dashboard:before {
  content: "\e95f";
}

.Customer-care_Tickets:before {
  content: "\e960";
}

.Data-Ingester_Advance-ETL:before {
  content: "\e961";
}

.Data-Ingester_build-1:before {
  content: "\e962";
}

.Data-Ingester_build-2:before {
  content: "\e963";
}

.Data-Ingester_build-3:before {
  content: "\e964";
}

.Data-Ingester_build:before {
  content: "\e965";
}

.Data-Ingester_CDC:before {
  content: "\e966";
}

.Data-Ingester_Dashboard:before {
  content: "\e967";
}

.Data-Ingester_Package:before {
  content: "\e968";
}

.Data-Ingester_SMART:before {
  content: "\e969";
}

.Data-Ingester_Watch-1:before {
  content: "\e96a";
}

.Data-Ingester_Watch-2:before {
  content: "\e96b";
}

.Data-Ingester_Watch-3:before {
  content: "\e96c";
}

.Data-Ingester_Watch:before {
  content: "\e96d";
}

.Data-Ingester_X-to-Y:before {
  content: "\e96e";
}

.Data-Insider_API-client1:before {
  content: "\e96f";
}

.Data-Insider_API-Pools1:before {
  content: "\e970";
}

.Documents_Documents:before {
  content: "\e971";
}

.Facilities_Home:before {
  content: "\e972";
}

.Forecaster_Home:before {
  content: "\e973";
}

.FTTX_Administration:before {
  content: "\e974";
}

.FTTX_Area:before {
  content: "\e975";
}

.FTTX_Contracts:before {
  content: "\e976";
}

.FTTX_Dashboard:before {
  content: "\e977";
}

.FTTX_Link:before {
  content: "\e978";
}

.FTTX_Logistics:before {
  content: "\e979";
}

.FTTX_Maintenance:before {
  content: "\e97a";
}

.FTTX_Material:before {
  content: "\e97b";
}

.FTTX_My-reports:before {
  content: "\e97c";
}

.FTTX_Orders1:before {
  content: "\e97d";
}

.FTTX_Permit1:before {
  content: "\e97e";
}

.FTTX_Planning:before {
  content: "\e97f";
}

.FTTX_Priority:before {
  content: "\e980";
}

.FTTX_Procurement:before {
  content: "\e981";
}

.FTTX_Program:before {
  content: "\e982";
}

.FTTX_Projects:before {
  content: "\e983";
}

.FTTX_Severity:before {
  content: "\e984";
}

.FTTX_Site-1:before {
  content: "\e985";
}

.FTTX_Site:before {
  content: "\e986";
}

.FTTX_SLA:before {
  content: "\e987";
}

.FTTX_Structures:before {
  content: "\e988";
}

.FTTX_Tasks:before {
  content: "\e989";
}

.FTTX_Ticket-category:before {
  content: "\e98a";
}

.FTTX_Ticket:before {
  content: "\e98b";
}

.FTTX_Tickets:before {
  content: "\e98c";
}

.FTTX_Warehouse:before {
  content: "\e98d";
}

.Identity--IPAM_Identity-rule:before {
  content: "\e98e";
}

.Identity--IPAM_IP-manager:before {
  content: "\e98f";
}

.Identity--IPAM_IP-Topology:before {
  content: "\e990";
}

.Incidents_Incident-manager:before {
  content: "\e991";
}

.IoT_Administration:before {
  content: "\e992";
}

.IoT_Alarms:before {
  content: "\e993";
}

.IoT_Asset-template:before {
  content: "\e994";
}

.IoT_Assets:before {
  content: "\e995";
}

.IoT_Dashboard:before {
  content: "\e996";
}

.IoT_Device-templates:before {
  content: "\e997";
}

.IoT_Devices:before {
  content: "\e998";
}

.IoT_OTA-work-orders:before {
  content: "\e999";
}

.IoT_OTA:before {
  content: "\e99a";
}

.IoT_Processing-flow:before {
  content: "\e99b";
}

.Knowledge-Repo_Articles:before {
  content: "\e99c";
}

.Knowledge-Repo_Category:before {
  content: "\e99d";
}

.Knowledge-Repo_Home:before {
  content: "\e99e";
}

.Knowledge-Repo_Template:before {
  content: "\e99f";
}

.LCM-Orchestrator_Audit:before {
  content: "\e9a0";
}

.LCM-Orchestrator_Bundle:before {
  content: "\e9a1";
}

.LCM-Orchestrator_Cluster:before {
  content: "\e9a2";
}

.LCM-Orchestrator_Location:before {
  content: "\e9a3";
}

.LCM-Orchestrator_Logical:before {
  content: "\e9a4";
}

.LCM-Orchestrator_Network-element:before {
  content: "\e9a5";
}

.LCM-Orchestrator_Network-function:before {
  content: "\e9a6";
}

.LCM-Orchestrator_Physical:before {
  content: "\e9a7";
}

.LCM-Orchestrator_Planning:before {
  content: "\e9a8";
}

.LCM-Orchestrator_profile:before {
  content: "\e9a9";
}

.LCM-Orchestrator_Schema:before {
  content: "\e9aa";
}

.LCM-Orchestrator_Service-definition:before {
  content: "\e9ab";
}

.LCM-Orchestrator_Service-planning:before {
  content: "\e9ac";
}

.LCM-Orchestrator_Service:before {
  content: "\e9ad";
}

.LCM-Orchestrator_Sub-cloud:before {
  content: "\e9ae";
}

.LCM-Orchestrator_Virtual:before {
  content: "\e9af";
}

.Maintenance_Maintenance:before {
  content: "\e9b0";
}

.Material-management_Bills-of-materialBOM:before {
  content: "\e9b1";
}

.Material-management_Bundle:before {
  content: "\e9b2";
}

.Material-management_Dashboard:before {
  content: "\e9b3";
}

.Material-management_Material:before {
  content: "\e9b4";
}

.ML-Studio_build:before {
  content: "\e9b5";
}

.ML-Studio_Watch:before {
  content: "\e9b6";
}

.Observability_Logs:before {
  content: "\e9b7";
}

.Observability_Metrics:before {
  content: "\e9b8";
}

.Order-management_Customer-sites:before {
  content: "\e9b9";
}

.Order-management_Orders:before {
  content: "\e9ba";
}

.Projects:before {
  content: "\e9bb";
}

.BBH-configuration1:before {
  content: "\e9bc";
}

.Performance_Administration:before {
  content: "\e9bd";
}

.Performance_Aggregation-template:before {
  content: "\e9be";
}

.Performance_Analysis:before {
  content: "\e9bf";
}

.Performance_Anomaly-candidates:before {
  content: "\e9c0";
}

.Performance_configuration:before {
  content: "\e9c1";
}

.Performance_Counter-library1:before {
  content: "\e9c2";
}

.Performance_Dashboard-repository:before {
  content: "\e9c3";
}

.Performance_Data-integrity:before {
  content: "\e9c4";
}

.Performance_Matric-Threshhold:before {
  content: "\e9c5";
}

.Performance_Metric-designer:before {
  content: "\e9c6";
}

.Performance_Reports:before {
  content: "\e9c7";
}

.Performance_Repository:before {
  content: "\e9c8";
}

.Problem-Management_Home:before {
  content: "\e9c9";
}

.ProcBot_Build:before {
  content: "\e9ca";
}

.ProcBot_Watch:before {
  content: "\e9cb";
}

.Procurement_Bids:before {
  content: "\e9cc";
}

.Procurement_Dashboard:before {
  content: "\e9cd";
}

.Procurement_Purchase-order:before {
  content: "\e9ce";
}

.Procurement_Purchase-request:before {
  content: "\e9cf";
}

.Products--Plans_Products:before {
  content: "\e9d0";
}

.Products--Plans_Licenses:before {
  content: "\e9d1";
}

.Products--Plans_Plans:before {
  content: "\e9d2";
}

.Programs--Projects_Program:before {
  content: "\e9d3";
}

.Programs--Projects_Projects:before {
  content: "\e9d4";
}

.RAN_Facility:before {
  content: "\e9d5";
}

.RAN_Locations:before {
  content: "\e9d6";
}

.RAN_Program:before {
  content: "\e9d7";
}

.RAN_Projects:before {
  content: "\e9d8";
}

.RAN_SCM_Logistics:before {
  content: "\e9d9";
}

.RAN_SCM_Material:before {
  content: "\e9da";
}

.RAN_SCM_Procurement:before {
  content: "\e9db";
}

.RAN_SCM_Warehouse:before {
  content: "\e9dc";
}

.RAN_SCM:before {
  content: "\e9dd";
}

.RAN_Tasks:before {
  content: "\e9de";
}

.RAN_Tickets:before {
  content: "\e9df";
}

.RAN_Tower-provider:before {
  content: "\e9e0";
}

.Revenue-Engineering_Budget:before {
  content: "\e9e1";
}

.Revenue-Engineering_Optimization:before {
  content: "\e9e2";
}

.Revenue-Engineering_Unit-profitability:before {
  content: "\e9e3";
}

.Self-Healing_Build:before {
  content: "\e9e4";
}

.Self-Healing_Watch:before {
  content: "\e9e5";
}

.Service-health_Dashboard:before {
  content: "\e9e6";
}

.Service-health_Rule-configuration1:before {
  content: "\e9e7";
}

.SIM-Inventory_Dashboard:before {
  content: "\e9e8";
}

.SIM-Inventory_Orders:before {
  content: "\e9e9";
}

.SIM-Inventory_Provisioning:before {
  content: "\e9ea";
}

.SIM-Inventory_SIM:before {
  content: "\e9eb";
}

.SLAs--OLAs_Dashboard:before {
  content: "\e9ec";
}

.SLAs--OLAs_SLA-list:before {
  content: "\e9ed";
}

.SparkOps_build-1:before {
  content: "\e9ee";
}

.SparkOps_build:before {
  content: "\e9ef";
}

.SparkOps_Dashboard:before {
  content: "\e9f0";
}

.SparkOps_Package:before {
  content: "\e9f1";
}

.SparkOps_Pipeline:before {
  content: "\e9f2";
}

.SparkOps_SMART:before {
  content: "\e9f3";
}

.SparkOps_Watch-1:before {
  content: "\e9f4";
}

.SparkOps_Watch:before {
  content: "\e9f5";
}

.Subscribers_Analysis:before {
  content: "\e9f6";
}

.Subscribers_Invoice:before {
  content: "\e9f7";
}

.Subscribers_Notifications:before {
  content: "\e9f8";
}

.Subscribers_Subscriber:before {
  content: "\e9f9";
}

.Tickets--Issues_Auto-ticket-rule:before {
  content: "\e9fa";
}

.Tickets--Issues_Category:before {
  content: "\e9fb";
}

.Tickets--Issues_Change-request:before {
  content: "\e9fc";
}

.Tickets--Issues_Incident-template:before {
  content: "\e9fd";
}

.Tickets--Issues_Incident:before {
  content: "\e9fe";
}

.Tickets--Issues_Master:before {
  content: "\e9ff";
}

.Tickets--Issues_Priority:before {
  content: "\ea00";
}

.Tickets--Issues_Severity:before {
  content: "\ea01";
}

.Tickets--Issues_Sub-category:before {
  content: "\ea02";
}

.Tickets--Issues_Tickets:before {
  content: "\ea03";
}

.Topology_Topology:before {
  content: "\ea04";
}

.Vendor--Contracts_Contracts:before {
  content: "\ea05";
}

.Vendor--Contracts_Vendor:before {
  content: "\ea06";
}

.Warehouse--Logistics_Logistics:before {
  content: "\ea07";
}

.Warehouse--Logistics_Warehouse:before {
  content: "\ea08";
}

.Work-order-Management-_Tasks:before {
  content: "\ea09";
}

.Work-order-Management-_Work-order:before {
  content: "\ea0a";
}

.app_onboarding:before {
  content: "\ea0b";
}

.administration:before {
  content: "\ea0c";
}

.alerts:before {
  content: "\ea0d";
}

.anomaly_detector:before {
  content: "\ea0e";
}

.apps_menu:before {
  content: "\ea0f";
  color: #d6d4e3;
}

.apps_outline:before {
  content: "\ea10";
}

.bi_and_analytics:before {
  content: "\ea11";
}

.builders:before {
  content: "\ea12";
}

.campaigns:before {
  content: "\ea13";
}

.capacity:before {
  content: "\ea14";
}

.case_management:before {
  content: "\ea15";
}

.change_management:before {
  content: "\ea16";
}

.channel_partners:before {
  content: "\ea17";
}

.configurations:before {
  content: "\ea18";
}

.crm:before {
  content: "\ea23";
}

.customer_care:before {
  content: "\ea24";
}

.data_insider:before {
  content: "\ea26";
}

.documents:before {
  content: "\ea27";
}

.facilities:before {
  content: "\ea28";
}

.forcaster:before {
  content: "\ea29";
}

.forecaster:before {
  content: "\ea2a";
}

.fttx:before {
  content: "\ea2b";
}

.identity_and_ipam:before {
  content: "\ea2c";
}

.incidents:before {
  content: "\ea2d";
}

.iot:before {
  content: "\ea2f";
}

.knowledge_repo:before {
  content: "\ea30";
}

.maintenance:before {
  content: "\ea32";
}

.material_management:before {
  content: "\ea33";
}

.ml_studio:before {
  content: "\ea34";
}

.observability:before {
  content: "\ea35";
}

.order_management:before {
  content: "\ea36";
}

.performance:before {
  content: "\ea37";
}

.problem_management:before {
  content: "\ea38";
}

.proc_bot:before {
  content: "\ea39";
}

.procurement:before {
  content: "\ea3a";
}

.products_and_plan:before {
  content: "\ea3b";
}

.programs_and_projects:before {
  content: "\ea3c";
}

.revenue_engineering:before {
  content: "\ea3d";
}

.self_healing:before {
  content: "\ea3e";
}

.service_health:before {
  content: "\ea3f";
}

.sim_inventory:before {
  content: "\ea40";
}

.slas_and_olas:before {
  content: "\ea41";
}

.sparkops:before {
  content: "\ea42";
}

.subscribers:before {
  content: "\ea43";
}

.tickets_and_issues:before {
  content: "\ea44";
}

.topology:before {
  content: "\ea45";
}

.vendor_and_contracts:before {
  content: "\ea47";
}

.warehouse_and_logistics:before {
  content: "\ea48";
}

.wireless_sites:before {
  content: "\ea49";
}

.workorder_management:before {
  content: "\ea4a";
}

.Cluster-defination:before {
  content: "\ea4b";
}

.Cluster-planning:before {
  content: "\ea4c";
}

.Cluster:before {
  content: "\ea4d";
}

.Service-defination:before {
  content: "\ea4e";
}

.Service-planning:before {
  content: "\ea4f";
}

.Service:before {
  content: "\ea50";
}

.expand:before {
  content: "\ea51";
}

.add:before {
  content: "\ea52";
}

.alarm_filled:before {
  content: "\ea53";
}

.twitter:before {
  content: "\ea54";
}

.skype:before {
  content: "\ea55";
}

.apps:before {
  content: "\ea56";
}

.arrow_back:before {
  content: "\ea57";
}

.arrow_bounce:before {
  content: "\ea58";
}

.Chevron-Right:before {
  content: "\ea59";
}

.arrow_forward:before {
  content: "\ea5a";
}

.linkedin2:before {
  content: "\ea5b";
}

.arrow_received:before {
  content: "\ea5c";
}

.arrow_reply:before {
  content: "\ea5d";
}

.Chevron-Down:before {
  content: "\ea5e";
}

.arrow_sent:before {
  content: "\ea5f";
}

.Chevron-Left:before {
  content: "\ea60";
}

.arrowing_incoming:before {
  content: "\ea61";
}

.arrowing_outgoing:before {
  content: "\ea62";
}

.assistant_destiny_alt:before {
  content: "\ea63";
}

.assistant:before {
  content: "\ea64";
}

.back_arrow:before {
  content: "\ea65";
}

.calendar:before {
  content: "\ea66";
}

.call_add:before {
  content: "\ea67";
}

.camera:before {
  content: "\ea68";
}

.cancel:before {
  content: "\ea69";
}

.categories:before {
  content: "\ea6a";
}

.chat_filled:before {
  content: "\ea6b";
}

.chat_new_outline:before {
  content: "\ea6c";
}

.chat_new:before {
  content: "\ea6d";
}

.chat_notification:before {
  content: "\ea6e";
}

.chat_outline:before {
  content: "\ea6f";
}

.chat:before {
  content: "\ea70";
}

.check_box:before {
  content: "\ea71";
}

.check:before {
  content: "\ea72";
}

.Chevron-Up:before {
  content: "\ea73";
}

.close_circle_filled:before {
  content: "\ea74";
}

.close:before {
  content: "\ea75";
}

.columns:before {
  content: "\ea76";
}

.configuration1:before {
  content: "\ea77";
}

.contact_add:before {
  content: "\ea78";
}

.contact_book_outline:before {
  content: "\ea79";
}

.contact_book:before {
  content: "\ea7a";
}

.contact_card:before {
  content: "\ea7b";
}

.contact_new:before {
  content: "\ea7c";
}

.data:before {
  content: "\ea7d";
}

.download_filled:before {
  content: "\ea7e";
}

.draw:before {
  content: "\ea7f";
}

.envelope:before {
  content: "\ea80";
}

.explore_outline:before {
  content: "\ea81";
}

.explore:before {
  content: "\ea82";
}

.eye:before {
  content: "\ea83";
}

.linkedin:before {
  content: "\ea84";
}

.featured:before {
  content: "\ea85";
}

.field_date:before {
  content: "\ea86";
}

.file:before {
  content: "\ea87";
}

.Document:before {
  content: "\ea88";
}

.gear_filled:before {
  content: "\ea89";
}

.gear_outline:before {
  content: "\ea8a";
}

.group_new:before {
  content: "\ea8b";
}

.group:before {
  content: "\ea8c";
}

.happy_face:before {
  content: "\ea8d";
}

.hold:before {
  content: "\ea8e";
}

.image_explore:before {
  content: "\ea8f";
}

.image:before {
  content: "\ea90";
}

.incidents1:before {
  content: "\ea91";
}

.info_filled:before {
  content: "\ea92";
}

.info_outline:before {
  content: "\ea93";
}

.uniE94B:before {
  content: "\ea94";
}

.uniE94C:before {
  content: "\ea95";
}

.ios_minus:before {
  content: "\ea96";
}

.layers_filled:before {
  content: "\ea97";
}

.layers_select:before {
  content: "\ea98";
}

.less_horizontal:before {
  content: "\ea99";
}

.list_calls:before {
  content: "\ea9a";
}

.List-View:before {
  content: "\ea9b";
}

.magnify-zoom-in:before {
  content: "\ea9c";
}

.magnify-zoom-out:before {
  content: "\ea9d";
}

.magnify:before {
  content: "\ea9e";
}

.map_details:before {
  content: "\ea9f";
}

.map_legend:before {
  content: "\eaa0";
}

.maximize:before {
  content: "\eaa1";
}

.menu:before {
  content: "\eaa2";
}

.merge:before {
  content: "\eaa3";
}

.microphone_mute:before {
  content: "\eaa4";
}

.microphone:before {
  content: "\eaa5";
}

.minus_circle_filled:before {
  content: "\eaa6";
}

.more_horizontal:before {
  content: "\eaa7";
}

.more_vertical:before {
  content: "\eaa8";
}

.mute:before {
  content: "\eaa9";
}

.uniE961:before {
  content: "\eaaa";
}

.number:before {
  content: "\eaab";
}

.numpad:before {
  content: "\eaac";
}

.paper_clip:before {
  content: "\eaad";
}

.pencil:before {
  content: "\eaae";
}

.Performance:before {
  content: "\eaaf";
}

.phone_filled_end:before {
  content: "\eab0";
}

.phone_filled:before {
  content: "\eab1";
}

.phone_outline:before {
  content: "\eab2";
}

.Pie-Chart:before {
  content: "\eab3";
}

.play_outline:before {
  content: "\eab4";
}

.play:before {
  content: "\eab5";
}

.plus_large:before {
  content: "\eab6";
}

.plus_small:before {
  content: "\eab7";
}

.pointer:before {
  content: "\eab8";
}

.printer_filled:before {
  content: "\eab9";
}

.purchased:before {
  content: "\eaba";
}

.pushpin_outline:before {
  content: "\eabb";
}

.pushpin:before {
  content: "\eabc";
}

.namespace:before {
  content: "\eabd";
}

.arrow-next:before {
  content: "\eabe";
}

.refresh:before {
  content: "\eabf";
}

.rf_planning:before {
  content: "\eac0";
}

.ruler:before {
  content: "\eac1";
}

.search_save:before {
  content: "\eac2";
}

.search:before {
  content: "\eac3";
}

.security:before {
  content: "\eac4";
}

.selection:before {
  content: "\eac5";
}

.send:before {
  content: "\eac6";
}

.seperator_line_thin_trans:before {
  content: "\eac7";
}

.seperator_line_trans:before {
  content: "\eac8";
}

.share:before {
  content: "\eac9";
}

.show_side_panel:before {
  content: "\eaca";
}

.uniE983:before {
  content: "\eacb";
}

.uniE984:before {
  content: "\eacc";
}

.uniE985:before {
  content: "\eacd";
}

.uniE986:before {
  content: "\eace";
}

.uniE987:before {
  content: "\eacf";
}

.uniE988:before {
  content: "\ead0";
}

.uniE989:before {
  content: "\ead1";
}

.uniE98A:before {
  content: "\ead2";
}

.uniE98B:before {
  content: "\ead3";
}

.sites:before {
  content: "\ead4";
}

.sort_arrows:before {
  content: "\ead5";
}

.speaker_bluetooth:before {
  content: "\ead6";
}

.speaker_mute:before {
  content: "\ead7";
}

.speaker:before {
  content: "\ead8";
}

.star:before {
  content: "\ead9";
}

.stop:before {
  content: "\eada";
}

.swap:before {
  content: "\eadb";
}

.tag:before {
  content: "\eadc";
}

.target:before {
  content: "\eadd";
}

.text:before {
  content: "\eade";
}

.time:before {
  content: "\eadf";
}

.topology1:before {
  content: "\eae0";
}

.trash:before {
  content: "\eae1";
}

.updates:before {
  content: "\eae2";
}

.video:before {
  content: "\eae3";
}

.view_detailed:before {
  content: "\eae4";
}

.view_grid:before {
  content: "\eae5";
}

.view_map:before {
  content: "\eae6";
}

.view_rows:before {
  content: "\eae7";
}

.voice_input_filled:before {
  content: "\eae8";
}

.voice_input_outline:before {
  content: "\eae9";
}

.voice_mail:before {
  content: "\eaea";
}

.warning_filled:before {
  content: "\eaeb";
}

.warning_outline:before {
  content: "\eaec";
}

.dashboard:before {
  content: "\eaed";
}

.user_search:before {
  content: "\eaee";
}

.tickets:before {
  content: "\eaef";
}

.call_drop:before {
  content: "\eaf0";
}

.virus_apps:before {
  content: "\eaf1";
}

.vo_wifi:before {
  content: "\eaf2";
}

.uniE9AB:before {
  content: "\eaf3";
}

.uniE9AC:before {
  content: "\eaf4";
}

.coverage1:before {
  content: "\eaf5";
}

.bill_shock:before {
  content: "\eaf6";
}

.apn_settings:before {
  content: "\eaf7";
}

.I-search:before {
  content: "\eaf8";
}

.logs-down:before {
  content: "\eaf9";
}

.uniE9B2:before {
  content: "\eafa";
}

.logs-up:before {
  content: "\eafb";
}

.private_note:before {
  content: "\eafc";
}

.mail_send:before {
  content: "\eafd";
}

.signal_cellular_alt:before {
  content: "\eafe";
}

.swap_vert:before {
  content: "\eaff";
}

.coverage_2:before {
  content: "\eb00";
}

.insight:before {
  content: "\eb01";
}

.pie_chart:before {
  content: "\eb02";
}

.comments:before {
  content: "\eb03";
}

.customer-care:before {
  content: "\eb04";
}

.uniE9BD:before {
  content: "\eb05";
}

.Inventory1:before {
  content: "\eb06";
}

.page-builder:before {
  content: "\eb07";
}

.administration1:before {
  content: "\eb08";
}

.volumetric_stats:before {
  content: "\eb09";
}

.active_users:before {
  content: "\eb0a";
}

.total_data:before {
  content: "\eb0b";
}

.uniE9C4:before {
  content: "\eb0c";
}

.uniE9C5:before {
  content: "\eb0d";
}

.CMS_Favicon:before {
  content: "\eb0e";
}

.volte_calls:before {
  content: "\eb0f";
}

.prop:before {
  content: "\eb10";
}

.ticket:before {
  content: "\eb11";
}

.wifi_wave:before {
  content: "\eb12";
}

.Shape:before {
  content: "\eb13";
}

.Detailed-View:before {
  content: "\eb14";
}

.icon_audit:before {
  content: "\eb15";
}

.BPM:before {
  content: "\eb16";
}

.Map-View:before {
  content: "\eb17";
}

.unlink:before {
  content: "\eb18";
}

.customer_experience:before {
  content: "\eb19";
}

.ascending:before {
  content: "\eb1a";
}

.descending:before {
  content: "\eb1b";
}

.arrow_down1:before {
  content: "\eb1c";
}

.arrow_up1:before {
  content: "\eb1d";
}

.sort_arrows1:before {
  content: "\eb1e";
}

.voice_input_outline1:before {
  content: "\eb1f";
}

.voice_input_filled1:before {
  content: "\eb20";
}

.target1:before {
  content: "\eb21";
}

.Group:before {
  content: "\eb22";
}

.insight-earth:before {
  content: "\eb23";
}

.insight-people:before {
  content: "\eb24";
}

.insight-family:before {
  content: "\eb25";
}

.configchange:before {
  content: "\eb26";
}

.Medium-Holder:before {
  content: "\eb27";
}

.code:before {
  content: "\eb28";
}

.certificates:before {
  content: "\eb29";
}

.ipaddress:before {
  content: "\eb2a";
}

.firmware:before {
  content: "\eb2b";
}

.policies:before {
  content: "\eb2c";
}

.Capacity:before {
  content: "\eb2d";
}

.Weather:before {
  content: "\eb2e";
}

.shelter:before {
  content: "\eb2f";
}

.CO:before {
  content: "\eb30";
}

.CO2:before {
  content: "\eb31";
}

.Device:before {
  content: "\eb32";
}

.Humidity:before {
  content: "\eb33";
}

.Roll:before {
  content: "\eb34";
}

.Temperature:before {
  content: "\eb35";
}

.server:before {
  content: "\eb36";
}

.Process-catalouge:before {
  content: "\eb37";
}

.shield:before {
  content: "\eb38";
}

.Delete-Outline:before {
  content: "\eb39";
}

.Folder-Outline:before {
  content: "\eb3a";
}

.Rating-Outline:before {
  content: "\eb3b";
}

.microphone1:before {
  content: "\eb3c";
}

.User-Outline:before {
  content: "\eb3d";
}

.Download-Outline:before {
  content: "\eb3e";
}

.info:before {
  content: "\eb3f";
}

.Delete-Filled:before {
  content: "\eb40";
}

.server1:before {
  content: "\eb41";
}

.folder:before {
  content: "\eb42";
}

.link-app:before {
  content: "\eb43";
}

.zoombox:before {
  content: "\eb44";
}

.video-outline:before {
  content: "\eb45";
}

.key:before {
  content: "\eb46";
}

.deploy:before {
  content: "\eb47";
}

.milestone:before {
  content: "\eb48";
}

.site-workflow:before {
  content: "\eb49";
}

.Graduate:before {
  content: "\eb4a";
}

.linkedin1:before {
  content: "\eb4b";
}

.analytics:before {
  content: "\eb4c";
}

.Profile:before {
  content: "\eb4d";
}

.red__points1:before {
  content: "\eb4e";
}

.cloud_learner:before {
  content: "\eb4f";
}

.cloud_language:before {
  content: "\eb50";
}

.cloud_email:before {
  content: "\eb51";
}

.Kanban:before {
  content: "\eb52";
}

.bag:before {
  content: "\eb53";
}

.Communication:before {
  content: "\eb54";
}

.event:before {
  content: "\eb55";
}

.phone-outline:before {
  content: "\eb56";
}

.web-form:before {
  content: "\eb57";
}

.fourDot:before {
  content: "\eb58";
}

.twoDot:before {
  content: "\eb59";
}

.BNTVMF:before {
  content: "\eb5a";
}

.location:before {
  content: "\eb5b";
}

.bntvmf-pymethus:before {
  content: "\eb5c";
}

.location-marker:before {
  content: "\eb5d";
}

.maps-and-flags:before {
  content: "\eb5e";
}

.Gift-Filled:before {
  content: "\eb5f";
}

.Gift-Outline:before {
  content: "\eb60";
}

.GPS:before {
  content: "\eb61";
}

.Help-Filled:before {
  content: "\eb62";
}

.Help-Outline:before {
  content: "\eb63";
}

.Home-Filled:before {
  content: "\eb64";
}

.Home-Outline:before {
  content: "\eb65";
}

.Horizontal-Dots:before {
  content: "\eb66";
}

.marker-6:before {
  content: "\eb67";
}

.marker-7:before {
  content: "\eb68";
}

.placeholder:before {
  content: "\eb69";
}

.placeholder-1:before {
  content: "\eb6a";
}

.placeholder-on-map-paper-in-perspective:before {
  content: "\eb6b";
}

.placeholder-2:before {
  content: "\eb6c";
}

.Image-Filled:before {
  content: "\eb6d";
}

.map:before {
  content: "\eb6e";
}

.Image-Outline:before {
  content: "\eb6f";
}

.map-1:before {
  content: "\eb70";
}

.gps-1:before {
  content: "\eb71";
}

.travel:before {
  content: "\eb72";
}

.pin-1:before {
  content: "\eb73";
}

.In-Progress:before {
  content: "\eb74";
}

.Incidents:before {
  content: "\eb75";
}

.Info-Filled:before {
  content: "\eb76";
}

.Info-Outline:before {
  content: "\eb77";
}

.Info:before {
  content: "\eb78";
}

.Infrastructure:before {
  content: "\eb79";
}

.Inventory:before {
  content: "\eb7a";
}

.Keyboard-Filled:before {
  content: "\eb7b";
}

.Keyboard-Outline:before {
  content: "\eb7c";
}

.Lab:before {
  content: "\eb7d";
}

.Language-Filled:before {
  content: "\eb7e";
}

.Language-Outline:before {
  content: "\eb7f";
}

.Laptop-Filled:before {
  content: "\eb80";
}

.Laptop-Outline:before {
  content: "\eb81";
}

.Lat-Long:before {
  content: "\eb82";
}

.Legend:before {
  content: "\eb83";
}

.Lifecycle:before {
  content: "\eb84";
}

.Like-Filled:before {
  content: "\eb85";
}

.Like-Outline:before {
  content: "\eb86";
}

.List-Filled:before {
  content: "\eb87";
}

.List-Outline:before {
  content: "\eb88";
}

.List:before {
  content: "\eb89";
}

.Load:before {
  content: "\eb8a";
}

.Loading:before {
  content: "\eb8b";
}

.Location-Filled:before {
  content: "\eb8c";
}

.Location-Outline:before {
  content: "\eb8d";
}

.Login:before {
  content: "\eb8e";
}

.Logout:before {
  content: "\eb8f";
}

.Mail-Filled:before {
  content: "\eb90";
}

.Mail-Outline:before {
  content: "\eb91";
}

.Map-Filled:before {
  content: "\eb92";
}

.Master:before {
  content: "\eb93";
}

.Server:before {
  content: "\eb94";
}

.Server1:before {
  content: "\eb95";
}

.Ban-Outline:before {
  content: "\eb96";
}

.Service1:before {
  content: "\eb97";
}

.Education:before {
  content: "\eb98";
}

.Finance:before {
  content: "\eb99";
}

.Management:before {
  content: "\eb9a";
}

.align-1:before {
  content: "\eb9b";
}

.align-2:before {
  content: "\eb9c";
}

.text-2:before {
  content: "\eb9d";
}

.text-21:before {
  content: "\eb9e";
}

.align-21:before {
  content: "\eb9f";
}

.align-11:before {
  content: "\eba0";
}

.Application:before {
  content: "\eba1";
}

.Listing:before {
  content: "\eba2";
}

.Menu-Close:before {
  content: "\eba3";
}

.Menu:before {
  content: "\eba4";
}

.Minus:before {
  content: "\eba5";
}

.Missed-Call:before {
  content: "\eba6";
}

.Mobile-Filled:before {
  content: "\eba7";
}

.Mobile-Outline:before {
  content: "\eba8";
}

.Movie-Filled:before {
  content: "\eba9";
}

.Movie-Outline:before {
  content: "\ebaa";
}

.My-Apps:before {
  content: "\ebab";
}

.Mypage-Fill:before {
  content: "\ebac";
}

.Mypage-Outline:before {
  content: "\ebad";
}

.New-Filled:before {
  content: "\ebae";
}

.New-Tab:before {
  content: "\ebaf";
}

.New-User:before {
  content: "\ebb0";
}

.New-Window-Filled:before {
  content: "\ebb1";
}

.New-Window-Outline:before {
  content: "\ebb2";
}

.News-Outline:before {
  content: "\ebb3";
}

.Not-started:before {
  content: "\ebb4";
}

.Notice-Generic-Filled:before {
  content: "\ebb5";
}

.Notice-Generic-Outline:before {
  content: "\ebb6";
}

.share2:before {
  content: "\ebb7";
}

.Notice-User-Filled:before {
  content: "\ebb8";
}

.Notice-User-Outlined:before {
  content: "\ebb9";
}

.filter1:before {
  content: "\ebba";
}

.amazon:before {
  content: "\ebbb";
}

.google:before {
  content: "\ebbc";
}

.Outage:before {
  content: "\ebbd";
}

.Page-Builder:before {
  content: "\ebbe";
}

.Paint-Filled:before {
  content: "\ebbf";
}

.Paint-Outline:before {
  content: "\ebc0";
}

.PDF-Filled:before {
  content: "\ebc1";
}

.PDF-Outline:before {
  content: "\ebc2";
}

.google-drive:before {
  content: "\ebc3";
}

.facebook:before {
  content: "\ebc4";
}

.facebook2:before {
  content: "\ebc5";
}

.instagram:before {
  content: "\ebc6";
}

.whatsapp:before {
  content: "\ebc7";
}

.Performance1:before {
  content: "\ebc8";
}

.telegram:before {
  content: "\ebc9";
}

.Phone-Filled:before {
  content: "\ebca";
}

.Phone-Outline:before {
  content: "\ebcb";
}

.Phone-Slash:before {
  content: "\ebcc";
}

.Phone-Volume:before {
  content: "\ebcd";
}

.Photograph-Filled:before {
  content: "\ebce";
}

.pending:before {
  content: "\ebcf";
}

.Security:before {
  content: "\ebd0";
}

.Battery:before {
  content: "\ebd1";
}

.Building-Outline:before {
  content: "\ebd2";
}

.Plane-Filled:before {
  content: "\ebd3";
}

.Plane-Outline:before {
  content: "\ebd4";
}

.Planned:before {
  content: "\ebd5";
}

.Plus:before {
  content: "\ebd6";
}

.PODs:before {
  content: "\ebd7";
}

.Point-Filled:before {
  content: "\ebd8";
}

.Point-Outline:before {
  content: "\ebd9";
}

.Pointer:before {
  content: "\ebda";
}

.Price-Yen-Filled:before {
  content: "\ebdb";
}

.Price-Yen:before {
  content: "\ebdc";
}

.Print-Filled:before {
  content: "\ebdd";
}

.Print-Outline:before {
  content: "\ebde";
}

.gauge-dashboard:before {
  content: "\ebdf";
}

.Performance-Report:before {
  content: "\ebe0";
}

.Chat:before {
  content: "\ebe1";
}

.Database:before {
  content: "\ebe2";
}

.Copy-Outline:before {
  content: "\ebe3";
}

.Four-Arrow:before {
  content: "\ebe4";
}

.Grid-List:before {
  content: "\ebe5";
}

.Editor:before {
  content: "\ebe6";
}

.Full-Screen:before {
  content: "\ebe7";
}

.All-Apps:before {
  content: "\ebe8";
}

.controls:before {
  content: "\ebe9";
}

.Redo:before {
  content: "\ebea";
}

.Program:before {
  content: "\ebeb";
}

.Purchase-History-Filled:before {
  content: "\ebec";
}

.Purchase-History-Outline:before {
  content: "\ebed";
}

.Push-Notification-Filled:before {
  content: "\ebee";
}

.Push-Notification-Outline:before {
  content: "\ebef";
}

.appleinc:before {
  content: "\ebf0";
}

.Qr-Code-Filled:before {
  content: "\ebf1";
}

.android:before {
  content: "\ebf2";
}

.Qr-Code-Outline:before {
  content: "\ebf3";
}

.Rack:before {
  content: "\ebf4";
}

.Ranking-Filled:before {
  content: "\ebf5";
}

.Ranking-Outline:before {
  content: "\ebf6";
}

.Rating-Filled:before {
  content: "\ebf7";
}

.Rating-Outline1:before {
  content: "\ebf8";
}

.Rectifier:before {
  content: "\ebf9";
}

.Refresh:before {
  content: "\ebfa";
}

.Register-Account-Filled:before {
  content: "\ebfb";
}

.Register-Account-Outline:before {
  content: "\ebfc";
}

.Report:before {
  content: "\ebfd";
}

.Reporting:before {
  content: "\ebfe";
}

.Rewards-Filled:before {
  content: "\ebff";
}

.Rewards-Outline:before {
  content: "\ec00";
}

.Ruler:before {
  content: "\ec01";
}

.Save-File:before {
  content: "\ec02";
}

.Save-Filled:before {
  content: "\ec03";
}

.Save-Outline:before {
  content: "\ec04";
}

.Search-History-Filled:before {
  content: "\ec05";
}

.Search-History-Outline:before {
  content: "\ec06";
}

.Search:before {
  content: "\ec07";
}

.Security-Filled:before {
  content: "\ec08";
}

.Security-Outline:before {
  content: "\ec09";
}

.Undo:before {
  content: "\ec0a";
}

.mini-map:before {
  content: "\ec0b";
}

.redo-circle:before {
  content: "\ec0c";
}

.undo-circle:before {
  content: "\ec0d";
}

.git:before {
  content: "\ec0e";
}

.wi-fi:before {
  content: "\ec0f";
}

.Text-Field:before {
  content: "\ec10";
}

.tower-transmissions:before {
  content: "\ec11";
}

.single-sector:before {
  content: "\ec12";
}

.Button:before {
  content: "\ec13";
}

.Calendar:before {
  content: "\ec14";
}

.Frame-outline:before {
  content: "\ec15";
}

.Duplicate:before {
  content: "\ec16";
}

.Checkbox:before {
  content: "\ec17";
}

.Columns:before {
  content: "\ec18";
}

.Divider:before {
  content: "\ec19";
}

.answering:before {
  content: "\ec1a";
}

.Form:before {
  content: "\ec1b";
}

.Frame:before {
  content: "\ec1c";
}

.DNS:before {
  content: "\ec1d";
}

.forwarddouble-arrow:before {
  content: "\ec1e";
}

.Location:before {
  content: "\ec1f";
}

.Settings-Filled:before {
  content: "\ec20";
}

.Settings-Outline:before {
  content: "\ec21";
}

.Share-Filled:before {
  content: "\ec22";
}

.Share-Outline:before {
  content: "\ec23";
}

.Shipping-Filled:before {
  content: "\ec24";
}

.Shipping-Outline:before {
  content: "\ec25";
}

.Shop-Filled:before {
  content: "\ec26";
}

.Shop-Outline:before {
  content: "\ec27";
}

.calendar-6:before {
  content: "\ec28";
}

.ticket_fill:before {
  content: "\ec29";
}

.Shopping-Cart-Filled:before {
  content: "\ec2a";
}

.Shopping-Cart-Outline:before {
  content: "\ec2b";
}

.Comment-Outline:before {
  content: "\ec2c";
}

.Signal:before {
  content: "\ec2d";
}

.Slider-Filled:before {
  content: "\ec2e";
}

.Slider-Outlined:before {
  content: "\ec2f";
}

.Small-Cell:before {
  content: "\ec30";
}

.Smartphone-Filled:before {
  content: "\ec31";
}

.Smartphone-Outline:before {
  content: "\ec32";
}

.SON:before {
  content: "\ec33";
}

.Speed-Meter:before {
  content: "\ec34";
}

.Star:before {
  content: "\ec35";
}

.Survey-Filled:before {
  content: "\ec36";
}

.Survey-Outline:before {
  content: "\ec37";
}

.Switch:before {
  content: "\ec38";
}

.Tablet-Filled:before {
  content: "\ec39";
}

.Tablet-Outline:before {
  content: "\ec3a";
}

.Tag-Filled:before {
  content: "\ec3b";
}

.Tag-Outline:before {
  content: "\ec3c";
}

.Task:before {
  content: "\ec3d";
}

.Time-Filled:before {
  content: "\ec3e";
}

.Time-Outline:before {
  content: "\ec3f";
}

.Train-Filled:before {
  content: "\ec40";
}

.Train-Outline:before {
  content: "\ec41";
}

.Upload-Filled:before {
  content: "\ec42";
}

.Upload-Outline:before {
  content: "\ec43";
}

.User-Filled:before {
  content: "\ec44";
}

.User-Outline1:before {
  content: "\ec45";
}

.Vector:before {
  content: "\ec46";
}

.Vendors:before {
  content: "\ec47";
}

.Vertical-Dots:before {
  content: "\ec48";
}

.Video-Slash:before {
  content: "\ec49";
}

.VM:before {
  content: "\ec4a";
}

.Walking-Filled:before {
  content: "\ec4b";
}

.Warehouse:before {
  content: "\ec4c";
}

.Warning-Filled:before {
  content: "\ec4d";
}

.Warning-Outlined:before {
  content: "\ec4e";
}

.Window:before {
  content: "\ec4f";
}

.Workflow-Management:before {
  content: "\ec50";
}

.World-Filled:before {
  content: "\ec51";
}

.World-Outline:before {
  content: "\ec52";
}

.Zip-Filled:before {
  content: "\ec53";
}

.equalizer:before {
  content: "\ec54";
}

.equalizer2:before {
  content: "\ec55";
}

.Zip-Outline:before {
  content: "\ec56";
}

.Zoom-in-Filled:before {
  content: "\ec57";
}

.Zoom-in-Outline:before {
  content: "\ec58";
}

.Zoom-Out-Filled:before {
  content: "\ec59";
}

.Customer-Care:before {
  content: "\ec5a";
}

.backdouble-arrow:before {
  content: "\ec5b";
}

.Layers:before {
  content: "\ec5c";
}

.Check:before {
  content: "\ec5d";
}

.Facility:before {
  content: "\ec5e";
}

.Map-Outline:before {
  content: "\ec5f";
}

.Mobile-Outline1:before {
  content: "\ec60";
}

.Macro-Outline:before {
  content: "\ec61";
}

.Prediction:before {
  content: "\ec62";
}

.Polygon:before {
  content: "\ec63";
}

.Import:before {
  content: "\ec64";
}

.Publish:before {
  content: "\ec65";
}

.Number:before {
  content: "\ec66";
}

.Country:before {
  content: "\ec67";
}

.Credit-Card:before {
  content: "\ec68";
}

.State:before {
  content: "\ec69";
}

.Pages:before {
  content: "\ec6a";
}

.Applications:before {
  content: "\ec6b";
}

.Tools:before {
  content: "\ec6c";
}

.Edit-Outline:before {
  content: "\ec6d";
}

.Panel:before {
  content: "\ec6e";
}

.Platform:before {
  content: "\ec6f";
}

.vRAN:before {
  content: "\ec70";
}

.Arrow-Resize:before {
  content: "\ec71";
}

.Graph:before {
  content: "\ec72";
}

.Phone:before {
  content: "\ec73";
}

.Clock:before {
  content: "\ec74";
}

.Docm:before {
  content: "\ec75";
}

.Radio-Button:before {
  content: "\ec76";
}

.Database-Sync:before {
  content: "\ec77";
}

.Polygon-Filter:before {
  content: "\ec78";
}

.Eye-Ban-Outline:before {
  content: "\ec79";
}

.Eye-Outline:before {
  content: "\ec7a";
}

.Photograph-Outline:before {
  content: "\ec7b";
}

.Section:before {
  content: "\ec7c";
}

.Design-Planning:before {
  content: "\ec7d";
}

.Tabs:before {
  content: "\ec7e";
}

.Prediction-Plus:before {
  content: "\ec7f";
}

.Docf:before {
  content: "\ec80";
}

.Upload-File:before {
  content: "\ec81";
}

.Favorite-Outline:before {
  content: "\ec82";
}

.Improvement:before {
  content: "\ec83";
}

.Widget:before {
  content: "\ec84";
}

.Intelligent-Operations:before {
  content: "\ec85";
}

.Prediction1:before {
  content: "\ec86";
}

.Training:before {
  content: "\ec87";
}

.arrow_right:before {
  content: "\ec88";
}

.Mail-Outline1:before {
  content: "\ec89";
}

.Hand:before {
  content: "\ec8a";
}

.arrow_down:before {
  content: "\ec8b";
}

.Hardware:before {
  content: "\ec8c";
}

.License:before {
  content: "\ec8d";
}

.Vendor:before {
  content: "\ec8e";
}

.Material-Catalogue:before {
  content: "\ec8f";
}

.Vendor-List:before {
  content: "\ec90";
}

.Vendor-ListView:before {
  content: "\ec91";
}

.Vendor-Onboarding:before {
  content: "\ec92";
}

.Software:before {
  content: "\ec93";
}

.Bell:before {
  content: "\ec94";
}

.Upload:before {
  content: "\ec95";
}

.Excel:before {
  content: "\ec96";
}

.Workflow:before {
  content: "\ec97";
}

.Approved:before {
  content: "\ec98";
}

.Domestic:before {
  content: "\ec99";
}

.Draft:before {
  content: "\ec9a";
}

.Foreign:before {
  content: "\ec9b";
}

.Pending:before {
  content: "\ec9c";
}

.Rejected:before {
  content: "\ec9d";
}

.Select:before {
  content: "\ec9e";
}

.Adjust:before {
  content: "\ec9f";
}

.Lock:before {
  content: "\eca0";
}

.Table:before {
  content: "\eca1";
}

.Workorder-List:before {
  content: "\eca2";
}

.Workorder-Plus:before {
  content: "\eca3";
}

.Digital-Library:before {
  content: "\eca4";
}

.Processes:before {
  content: "\eca5";
}

.Contact-Us:before {
  content: "\eca6";
}

.Enterprise:before {
  content: "\eca7";
}

.Workflow1:before {
  content: "\eca8";
}

.Arrange:before {
  content: "\eca9";
}

.Database-Archived:before {
  content: "\ecaa";
}

.Database-Plus:before {
  content: "\ecab";
}

.Database-Refresh:before {
  content: "\ecac";
}

.Export:before {
  content: "\ecad";
}

.Move:before {
  content: "\ecae";
}

.Import1:before {
  content: "\ecaf";
}

.KPI:before {
  content: "\ecb0";
}

.Legend1:before {
  content: "\ecb1";
}

.Map-Control:before {
  content: "\ecb2";
}

.Approve:before {
  content: "\ecb3";
}

.Archive:before {
  content: "\ecb4";
}

.Cancel-Submission:before {
  content: "\ecb5";
}

.Re-Submit:before {
  content: "\ecb6";
}

.Reject:before {
  content: "\ecb7";
}

.Submit:before {
  content: "\ecb8";
}

.dollar_sign:before {
  content: "\ecb9";
}

.power:before {
  content: "\ecba";
}

.weight:before {
  content: "\ecbb";
}

.rack-icon:before {
  content: "\ecbc";
}

.slot:before {
  content: "\ecbd";
}

.Dollar-Flag:before {
  content: "\ecbe";
}

.untitled:before {
  content: "\ecbf";
}

.untitled1:before {
  content: "\ecc0";
}

.untitled2:before {
  content: "\ecc1";
}

.untitled3:before {
  content: "\ecc2";
}

.untitled4:before {
  content: "\ecc3";
}

.untitled5:before {
  content: "\ecc4";
}

.untitled6:before {
  content: "\ecc5";
}

.untitled7:before {
  content: "\ecc6";
}

.untitled8:before {
  content: "\ecc7";
}

.untitled9:before {
  content: "\ecc8";
}

.untitled10:before {
  content: "\ecc9";
}

.untitled11:before {
  content: "\ecca";
}

.untitled12:before {
  content: "\eccb";
}

.untitled13:before {
  content: "\eccc";
}

.untitled14:before {
  content: "\eccd";
}

.untitled15:before {
  content: "\ecce";
}

.untitled16:before {
  content: "\eccf";
}

.untitled17:before {
  content: "\ecd0";
}

.untitled18:before {
  content: "\ecd1";
}

.untitled19:before {
  content: "\ecd2";
}

.untitled20:before {
  content: "\ecd3";
}

.untitled21:before {
  content: "\ecd4";
}

.untitled22:before {
  content: "\ecd5";
}

.untitled23:before {
  content: "\ecd6";
}

.untitled24:before {
  content: "\ecd7";
}

.Hardware-Vendor:before {
  content: "\ecd8";
}

.Procurement:before {
  content: "\ecd9";
}

.Audit-Template:before {
  content: "\ecda";
}

.Vendor-Master:before {
  content: "\ecdb";
}

.gears:before {
  content: "\ecdc";
}

.script:before {
  content: "\ecdd";
}

.drag:before {
  content: "\ecde";
}

.config:before {
  content: "\ecdf";
}

.route:before {
  content: "\ece0";
}

.Arrow-Left:before {
  content: "\ece1";
}

.Classroom:before {
  content: "\ece2";
}

.Expand:before {
  content: "\ece3";
}

.Video-Outline:before {
  content: "\ece4";
}

.Kpi-chart:before {
  content: "\ece5";
}

.attributes:before {
  content: "\ece6";
}

.Budget:before {
  content: "\ece7";
}

.Congestion:before {
  content: "\ece8";
}

.Closed:before {
  content: "\ece9";
}

.Negotiate:before {
  content: "\ecea";
}

.Reassign-old:before {
  content: "\eceb";
}

.twitter-outline:before {
  content: "\ecec";
}

.Replied:before {
  content: "\eced";
}

.double-check:before {
  content: "\ecee";
}

.fulfillment:before {
  content: "\ecef";
}

.GC:before {
  content: "\ecf0";
}

.Rotate-Image:before {
  content: "\ecf1";
}

.Apple:before {
  content: "\ecf2";
}

.Android:before {
  content: "\ecf3";
}

.uniECF4:before {
  content: "\ecf4";
}

.Vector1:before {
  content: "\ecf5";
}

.Function:before {
  content: "\ecf6";
}

.User-Management:before {
  content: "\ecf7";
}

.Executed-Workflow:before {
  content: "\ecf8";
}

.Grant-View:before {
  content: "\ecf9";
}

.Create-folder:before {
  content: "\ecfa";
}

.Document-Management:before {
  content: "\ecfb";
}

.Attachment:before {
  content: "\ecfc";
}

.Move-Folder:before {
  content: "\ecfd";
}

.Play-List:before {
  content: "\ecfe";
}

.Target-Elements:before {
  content: "\ecff";
}

.Shared-Me:before {
  content: "\ed00";
}

.Upload-File1:before {
  content: "\ed01";
}

.Video-Setting:before {
  content: "\ed02";
}

.stop-streaming:before {
  content: "\ed03";
}

.Icon:before {
  content: "\ed04";
}

.Mypage-Outline1:before {
  content: "\ed05";
}

.Negotiate-Ticket:before {
  content: "\ed06";
}

.Reopen-Ticket:before {
  content: "\ed07";
}

.Customer-Search:before {
  content: "\ed08";
}

.Compress:before {
  content: "\ed09";
}

.Reassign:before {
  content: "\ed0a";
}

.Close-Ticket:before {
  content: "\ed0b";
}

.Cancel-Ticket:before {
  content: "\ed0c";
}

.Finance1:before {
  content: "\ed0d";
}

.Threshold:before {
  content: "\ed0e";
}

.Running-Process:before {
  content: "\ed0f";
}

.Business-Intelligence:before {
  content: "\ed10";
}

.Core:before {
  content: "\ed11";
}

.CPU:before {
  content: "\ed12";
}

.Memory:before {
  content: "\ed13";
}

.SDD:before {
  content: "\ed14";
}

.remote-control:before {
  content: "\ed15";
}

.Alignment-Properties:before {
  content: "\ed16";
}

.Analysis:before {
  content: "\ed17";
}

.Inventory2:before {
  content: "\ed18";
}

.View-Alignment:before {
  content: "\ed19";
}

.Workorder-Management:before {
  content: "\ed1a";
}

.project_connector:before {
  content: "\ed1b";
}

.Cold:before {
  content: "\ed1c";
}

.untitled25:before {
  content: "\ed1d";
}

.untitled32:before {
  content: "\ed1e";
}

.Breaker:before {
  content: "\ed1f";
}

.Reserve-Space:before {
  content: "\ed20";
}

.Pillar:before {
  content: "\ed21";
}

.AC:before {
  content: "\ed22";
}

.Door:before {
  content: "\ed23";
}

.DMARC:before {
  content: "\ed24";
}

.untitled76:before {
  content: "\ed25";
}

.Power-Supply:before {
  content: "\ed26";
}

.Desktop-Mobile:before {
  content: "\ed27";
}

.Task-Completion:before {
  content: "\ed28";
}

.Test-Template:before {
  content: "\ed29";
}

.Circle-Selection:before {
  content: "\ed2a";
}

.Column-Graph:before {
  content: "\ed2b";
}

.Import-Project:before {
  content: "\ed2c";
}

.New-Project:before {
  content: "\ed2d";
}

.Open-Project:before {
  content: "\ed2e";
}

.BNTV:before {
  content: "\ed2f";
}

.roaming:before {
  content: "\ed30";
}

.security-1:before {
  content: "\ed31";
}

.tools-1:before {
  content: "\ed32";
}

.transport:before {
  content: "\ed33";
}

.location-icon:before {
  content: "\ed34";
}

.Coupons-Outline:before {
  content: "\ed35";
}

.Ticket-Management:before {
  content: "\ed36";
}

.Deactivate:before {
  content: "\ed37";
}

.History:before {
  content: "\ed38";
}

.blackberry_logo:before {
  content: "\ed39";
}

.windows_logo:before {
  content: "\ed3a";
}

.linux_logo:before {
  content: "\ed3b";
}

.reply-outline:before {
  content: "\ed3c";
}

.trend:before {
  content: "\ed3d";
}

.timeline:before {
  content: "\ed3e";
}

.Domain-Master:before {
  content: "\ed3f";
}

.Knowledge-Base:before {
  content: "\ed40";
}

.Subdomain-Master:before {
  content: "\ed41";
}

.window:before {
  content: "\ed42";
}

.Third-Party-Integration:before {
  content: "\ed43";
}

.clear-path:before {
  content: "\ed44";
}

.Workflow-Builder:before {
  content: "\ed45";
}

.Workspace:before {
  content: "\ed46";
}

.Donut-chart:before {
  content: "\ed47";
}

.redo-path:before {
  content: "\ed48";
}

.Subract:before {
  content: "\ed49";
}

.speed-fast:before {
  content: "\ed4a";
}

.speed-faster:before {
  content: "\ed4b";
}

.speed-slow:before {
  content: "\ed4c";
}

.undo-path:before {
  content: "\ed4d";
}

.anchor:before {
  content: "\ed4e";
}

.Cell-Coverage:before {
  content: "\ed4f";
}

.Favorite-Filled:before {
  content: "\ed50";
}

.Form-Builder:before {
  content: "\ed51";
}

.properties:before {
  content: "\ed52";
}

.Track-Improvement:before {
  content: "\ed53";
}

.forward:before {
  content: "\ed54";
}

.stop1:before {
  content: "\ed55";
}

.play1:before {
  content: "\ed56";
}

.previous:before {
  content: "\ed57";
}

.Pause:before {
  content: "\ed58";
}

.icon-1:before {
  content: "\ed59";
}

.swap_horizontal:before {
  content: "\ed5a";
}

.Direction:before {
  content: "\ed5b";
}

.Open-Folder:before {
  content: "\ed5c";
}

.Facebook-Outline:before {
  content: "\ed5d";
}

.frame-outline:before {
  content: "\ed5e";
}

.history-reverse:before {
  content: "\ed5f";
}

.Annotate:before {
  content: "\ed60";
}

.Voice:before {
  content: "\ed61";
}

.Data:before {
  content: "\ed62";
}

.roadmap:before {
  content: "\ed63";
}

.Remove-User:before {
  content: "\ed64";
}

.Audio:before {
  content: "\ed65";
}

.Classified:before {
  content: "\ed66";
}

.Comments-Outline:before {
  content: "\ed67";
}

.Acquire:before {
  content: "\ed68";
}

.Detail-View:before {
  content: "\ed69";
}

.change-order:before {
  content: "\ed6a";
}

.Frame-user:before {
  content: "\ed6b";
}

.Public:before {
  content: "\ed6c";
}

.impact-change:before {
  content: "\ed6d";
}

.External-Link:before {
  content: "\ed6e";
}

.Subcategory-Master:before {
  content: "\ed6f";
}

.Unlock:before {
  content: "\ed70";
}

.Wordicon:before {
  content: "\ed71";
}

.Bundle:before {
  content: "\ed72";
}

.Data-Connection:before {
  content: "\ed73";
}

.Database-Plus1:before {
  content: "\ed74";
}

.Central-Inventory:before {
  content: "\ed75";
}

.Respository-Add:before {
  content: "\ed76";
}

.Union:before {
  content: "\ed77";
}

.dot-Flashing:before {
  content: "\ed78";
}

.Power-ON:before {
  content: "\ed79";
}

.degree-of-automation:before {
  content: "\ed7a";
}

.automation:before {
  content: "\ed7b";
}

.Fast-Forward:before {
  content: "\ed7c";
}

.Maximize-View:before {
  content: "\ed7d";
}

.Change-Order:before {
  content: "\ed7e";
}

.Category_Master:before {
  content: "\ed7f";
}

.impact:before {
  content: "\ed80";
}

.priority-matrix:before {
  content: "\ed81";
}

.priority:before {
  content: "\ed82";
}

.urgency:before {
  content: "\ed83";
}

.Assumption:before {
  content: "\ed84";
}

.Issue:before {
  content: "\ed85";
}

.Dependency:before {
  content: "\ed86";
}

.Filter_Hide:before {
  content: "\ed87";
}

.Filter_Show:before {
  content: "\ed88";
}

.Filter_Filled:before {
  content: "\ed89";
}

.baseline:before {
  content: "\ed8a";
}

.configuration-template:before {
  content: "\ed8b";
}

.csv-file:before {
  content: "\ed8c";
}

.cube-triangle:before {
  content: "\ed8d";
}

.cube:before {
  content: "\ed8e";
}

.Folder-Filled:before {
  content: "\ed8f";
}

.Search-History:before {
  content: "\ed90";
}

.Currency--Conversion:before {
  content: "\ed91";
}

.Project:before {
  content: "\ed92";
}

.Document-Category:before {
  content: "\ed93";
}

.Unit-of-Measure:before {
  content: "\ed94";
}

.Budget-Type:before {
  content: "\ed95";
}

.Account-Level:before {
  content: "\ed96";
}

.Organization:before {
  content: "\ed97";
}

.Barcode-Outline:before {
  content: "\ed98";
}

.attach-horizontal:before {
  content: "\ed99";
}

.day-one:before {
  content: "\ed9a";
}

.day-zero:before {
  content: "\ed9b";
}

.Pointer-Outline:before {
  content: "\ed9c";
}

.Eraser:before {
  content: "\ed9d";
}

.Spotlight:before {
  content: "\ed9e";
}

.Audit-Template1:before {
  content: "\ed9f";
}

.Calendar-outline:before {
  content: "\eda0";
}

.Add-Comment:before {
  content: "\eda1";
}

.Workflow-Edit:before {
  content: "\eda2";
}

.Workflow-Status-Master:before {
  content: "\eda3";
}

.circle-filled:before {
  content: "\eda4";
}

.Facilities:before {
  content: "\eda5";
}

.arrow_left:before {
  content: "\eda6";
}

.arrow_up:before {
  content: "\eda7";
}

.code-config:before {
  content: "\eda8";
}

.Connector:before {
  content: "\eda9";
}

.Template:before {
  content: "\edaa";
}

.Bookmark:before {
  content: "\edab";
}

.My-Articles:before {
  content: "\edac";
}

.Acquired:before {
  content: "\edad";
}

.Cancel-Acquired:before {
  content: "\edae";
}

.create-grid:before {
  content: "\edaf";
}

.export1:before {
  content: "\edb0";
}

.map-pin:before {
  content: "\edb1";
}

.powerpoint:before {
  content: "\edb2";
}

.knowledge-base:before {
  content: "\edb3";
}

.SLA-Indicator:before {
  content: "\edb4";
}

.Cause-Code:before {
  content: "\edb5";
}

.BI:before {
  content: "\edb6";
}

.Hyperlink:before {
  content: "\edb7";
}

.Priority:before {
  content: "\edb8";
}

.Relation:before {
  content: "\edb9";
}

.Bookmark1:before {
  content: "\edba";
}

.Video-Builder:before {
  content: "\edbb";
}

.Custom-Layout:before {
  content: "\edbc";
}

.Builder:before {
  content: "\edbd";
}

.check-response:before {
  content: "\edbe";
}

.Configuration-Template:before {
  content: "\edbf";
}

.Boolean:before {
  content: "\edc0";
}

.Re-execute:before {
  content: "\edc1";
}

.Read-and-write:before {
  content: "\edc2";
}

.contact-info:before {
  content: "\edc3";
}

.Bookmark-add:before {
  content: "\edc4";
}

.Frame1:before {
  content: "\edc5";
}

.Status-Management:before {
  content: "\edc6";
}

.Repeat:before {
  content: "\edc7";
}

.And:before {
  content: "\edc8";
}

.Bookmarks:before {
  content: "\edc9";
}

.Briefcase:before {
  content: "\edca";
}

.Move-Change:before {
  content: "\edcb";
}

.Or:before {
  content: "\edcc";
}

.Change-Request:before {
  content: "\edcd";
}

.Scheduler:before {
  content: "\edce";
}

.Sticker:before {
  content: "\edcf";
}

.Facebook-Logo:before {
  content: "\edd0";
}

.Youtube-Logo:before {
  content: "\edd1";
}

.Draw:before {
  content: "\edd2";
}

.Rectangle-Shape:before {
  content: "\edd3";
}

.Two-Sided-Arrow:before {
  content: "\edd4";
}

.One-Sided-Arrow:before {
  content: "\edd5";
}

.Line-Shape:before {
  content: "\edd6";
}

.zig-zag-line:before {
  content: "\edd7";
}

.Status-Management-01:before {
  content: "\edd8";
}

.KML:before {
  content: "\edd9";
}

.Polygon-Filter-Outline:before {
  content: "\edda";
}

.Import-Project-Outline:before {
  content: "\eddb";
}

.phone-incoming:before {
  content: "\eddc";
}

.phone-outgoing:before {
  content: "\eddd";
}

.Elipse-Shape:before {
  content: "\edde";
}

.Custom-Aggregation:before {
  content: "\eddf";
}

.Monitoring-View:before {
  content: "\ede0";
}

.Square:before {
  content: "\ede1";
}

.Stage-Connector:before {
  content: "\ede2";
}

.Mos-Outline:before {
  content: "\ede3";
}

.openproject:before {
  content: "\ede4";
}

.reorder:before {
  content: "\ede5";
}

.Admin-View:before {
  content: "\ede6";
}

.Administrator:before {
  content: "\ede7";
}

.KC:before {
  content: "\ede8";
}

.Pickup:before {
  content: "\ede9";
}

.Reporter:before {
  content: "\edea";
}

.Stack-Holder:before {
  content: "\edeb";
}

.distance:before {
  content: "\edec";
}

.duplicate-file:before {
  content: "\eded";
}

.excel-box:before {
  content: "\edee";
}

.file-convert:before {
  content: "\edef";
}

.link-chain:before {
  content: "\edf0";
}

.object-select:before {
  content: "\edf1";
}

.sql:before {
  content: "\edf2";
}

.Cable-Catalogue:before {
  content: "\edf3";
}

.Subtract:before {
  content: "\edf4";
}

.Batch-Progress:before {
  content: "\edf5";
}

.Draggable:before {
  content: "\edf6";
}

.jpg-image:before {
  content: "\edf7";
}

.raster-image:before {
  content: "\edf8";
}

.file-Outline:before {
  content: "\edf9";
}

.csv:before {
  content: "\edfa";
}

.Folder-backup:before {
  content: "\edfb";
}

.kml:before {
  content: "\edfc";
}

.Tab:before {
  content: "\edfd";
}

.Risk:before {
  content: "\edfe";
}

.Role-Management:before {
  content: "\edff";
}

.Assesment:before {
  content: "\ee00";
}

.downdouble-arrow:before {
  content: "\ee01";
}

.Reset-screen:before {
  content: "\ee02";
}

.Service-Catalogue:before {
  content: "\ee03";
}

.Star-Cap:before {
  content: "\ee04";
}

.updouble-arrow:before {
  content: "\ee05";
}

.Verified-User:before {
  content: "\ee06";
}

.Minimize:before {
  content: "\ee07";
}

.Network-Map:before {
  content: "\ee08";
}

.News-Outline1:before {
  content: "\ee09";
}

.split:before {
  content: "\ee0a";
}

.change-group:before {
  content: "\ee0b";
}

.Feedback:before {
  content: "\ee0c";
}

.Invoice:before {
  content: "\ee0d";
}

.Network-Carrier:before {
  content: "\ee0e";
}

.Automated-Task:before {
  content: "\ee0f";
}

.NPS:before {
  content: "\ee10";
}

.Manual-Task:before {
  content: "\ee11";
}

.audio-video:before {
  content: "\ee12";
}

.Add-Profile:before {
  content: "\ee13";
}

.Reset-map-screen:before {
  content: "\ee14";
}

.Add-Contact:before {
  content: "\ee15";
}

.Change-Profile:before {
  content: "\ee16";
}

.Manually-Added:before {
  content: "\ee17";
}

.Builder-Code:before {
  content: "\ee18";
}

.Excecute:before {
  content: "\ee19";
}

.Executed-Workflow1:before {
  content: "\ee1a";
}

.Notification:before {
  content: "\ee1b";
}

.Publish-Rocket:before {
  content: "\ee1c";
}

.Refresh-New:before {
  content: "\ee1d";
}

.Version-History:before {
  content: "\ee1e";
}

.Edit-Note:before {
  content: "\ee1f";
}

.Reboot:before {
  content: "\ee20";
}

.network-update:before {
  content: "\ee21";
}

.Social-Media:before {
  content: "\ee22";
}

.average:before {
  content: "\ee23";
}

.count-distinct:before {
  content: "\ee24";
}

.count:before {
  content: "\ee25";
}

.Instantiate:before {
  content: "\ee26";
}

.maximum:before {
  content: "\ee27";
}

.minimum:before {
  content: "\ee28";
}

.none:before {
  content: "\ee29";
}

.Retry:before {
  content: "\ee2a";
}

.sum:before {
  content: "\ee2b";
}

.WDM:before {
  content: "\ee2c";
}

.Data1:before {
  content: "\ee2d";
}

.Network-Discovery:before {
  content: "\ee2e";
}

.metadata-request:before {
  content: "\ee2f";
}

.Add-tt:before {
  content: "\ee30";
}

.Assign-tt:before {
  content: "\ee31";
}

.los:before {
  content: "\ee32";
}

.Circle-Shape:before {
  content: "\ee33";
}

.draw-polygon:before {
  content: "\ee34";
}

.polygon-shape:before {
  content: "\ee35";
}

.Prediction-analysis:before {
  content: "\ee36";
}

.String_Data:before {
  content: "\ee37";
}

.Integer-BI:before {
  content: "\ee38";
}

.Cloud:before {
  content: "\ee39";
}

.XML:before {
  content: "\ee3a";
}

.csv-fill:before {
  content: "\ee3b";
}

.drag-dots:before {
  content: "\ee3c";
}

.sms-configuration:before {
  content: "\ee3d";
}

.access-request:before {
  content: "\ee3e";
}

.configuration:before {
  content: "\ee3f";
}

.peer:before {
  content: "\ee40";
}

.stop-publish:before {
  content: "\ee41";
}

.file-attach:before {
  content: "\ee42";
}

.barChart:before {
  content: "\ee43";
}

.Communication1:before {
  content: "\ee44";
}

.trianglearrow-down:before {
  content: "\ee45";
}

.Dependent-Picklist:before {
  content: "\ee46";
}

.Notification-Builder:before {
  content: "\ee47";
}

.Reconcilation:before {
  content: "\ee48";
}

.Service-Master:before {
  content: "\ee49";
}

.Status-Categorization:before {
  content: "\ee4a";
}

.Excecute1:before {
  content: "\ee4b";
}

.Execute:before {
  content: "\ee4c";
}

.Manual-Task1:before {
  content: "\ee4d";
}

.NS-Template:before {
  content: "\ee4e";
}

.procbook:before {
  content: "\ee4f";
}

.Policy-Manager:before {
  content: "\ee50";
}

.Scale:before {
  content: "\ee51";
}

.Upgrade:before {
  content: "\ee52";
}

.fatal:before {
  content: "\ee53";
}

.loader:before {
  content: "\ee54";
}

.FiveG-site:before {
  content: "\ee55";
}

.External-Directories:before {
  content: "\ee56";
}

.API-Datasource:before {
  content: "\ee57";
}

.Data-Connection1:before {
  content: "\ee58";
}

.Grid-Datasource:before {
  content: "\ee59";
}

.Line-chart:before {
  content: "\ee5a";
}

.Repository:before {
  content: "\ee5b";
}

.debug:before {
  content: "\ee5c";
}

.Point-Inspection:before {
  content: "\ee5d";
}

.WF:before {
  content: "\ee5e";
}

.Data-Connection-Outline:before {
  content: "\ee5f";
}

.Data-Set:before {
  content: "\ee60";
}

.Local-Data-Source:before {
  content: "\ee61";
}

.DMN:before {
  content: "\ee62";
}

.cc-reply:before {
  content: "\ee63";
}

.user-group:before {
  content: "\ee64";
}

.permission:before {
  content: "\ee65";
}

.csvoutline:before {
  content: "\ee66";
}

.pdfoutline:before {
  content: "\ee67";
}

.Relational-Datasource:before {
  content: "\ee68";
}

.Dataset:before {
  content: "\ee69";
}

.yaml-file:before {
  content: "\ee6a";
}

.wifi-econnect:before {
  content: "\ee6b";
}

.transfer:before {
  content: "\ee6c";
}

.smart-security:before {
  content: "\ee6d";
}

.question:before {
  content: "\ee6e";
}

.Download-Docs:before {
  content: "\ee6f";
}

.cause:before {
  content: "\ee70";
}

.resolution:before {
  content: "\ee71";
}

.Text-color:before {
  content: "\ee72";
}

.Paint-Outline1:before {
  content: "\ee73";
}

.flag:before {
  content: "\ee74";
}

.read:before {
  content: "\ee75";
}

.write:before {
  content: "\ee76";
}

.Ticket-Flag:before {
  content: "\ee77";
}

.Forward:before {
  content: "\ee78";
}

.Pevious:before {
  content: "\ee79";
}

.Table-of-content:before {
  content: "\ee7a";
}

.Table-of-content1:before {
  content: "\ee7b";
}

.Union1:before {
  content: "\ee7c";
}

.Increase:before {
  content: "\ee7d";
}

.Decrease:before {
  content: "\ee7e";
}

.Semi-Donut:before {
  content: "\ee7f";
}

.Mini-Card:before {
  content: "\ee80";
}

.Distribution:before {
  content: "\ee81";
}

.Bar-Chart:before {
  content: "\ee82";
}

.Table-outline:before {
  content: "\ee83";
}

.SplineChart:before {
  content: "\ee84";
}

.Area-Inverted-Chart:before {
  content: "\ee85";
}

.Area-Chart:before {
  content: "\ee86";
}

.Area-Spline:before {
  content: "\ee87";
}

.column-Chart:before {
  content: "\ee88";
}

.Big-Card-with-Trend:before {
  content: "\ee89";
}

.Distribution-Bar:before {
  content: "\ee8a";
}

.Scatter:before {
  content: "\ee8b";
}

.Big-Card:before {
  content: "\ee8c";
}

.Security-Apps:before {
  content: "\ee8d";
}

.Administrator-Apps:before {
  content: "\ee8e";
}

.AppReach:before {
  content: "\ee8f";
}

.Domo:before {
  content: "\ee90";
}

.cursor-mouse:before {
  content: "\ee91";
}

.Free-Draw:before {
  content: "\ee92";
}

.redo-outline:before {
  content: "\ee93";
}

.shape-dropdown:before {
  content: "\ee94";
}

.square-shape:before {
  content: "\ee95";
}

.Text:before {
  content: "\ee96";
}

.undo-outline:before {
  content: "\ee97";
}

.Align-bottom:before {
  content: "\ee98";
}

.Align-dropdown:before {
  content: "\ee99";
}

.Align-Grid:before {
  content: "\ee9a";
}

.Align-left:before {
  content: "\ee9b";
}

.Align-right:before {
  content: "\ee9c";
}

.Align-top:before {
  content: "\ee9d";
}

.Error:before {
  content: "\ee9e";
}

.procbook-outline:before {
  content: "\ee9f";
}

.Flow-chart:before {
  content: "\eea0";
}

.Database-Outline:before {
  content: "\eea1";
}

.My-Task:before {
  content: "\eea2";
}

.Program1:before {
  content: "\eea3";
}

.Bookmark-Remove:before {
  content: "\eea4";
}

.Approval-Process-Setup:before {
  content: "\eea5";
}

.Master-Data-Management:before {
  content: "\eea6";
}

.Sad:before {
  content: "\eea7";
}

.Smile:before {
  content: "\eea8";
}

.Paused:before {
  content: "\eea9";
}

.republish:before {
  content: "\eeaa";
}

.Map-User-Account:before {
  content: "\eeab";
}

.Cataloge:before {
  content: "\eeac";
}

.Copy:before {
  content: "\eead";
}

.Insert-Above:before {
  content: "\eeae";
}

.Insert-Below:before {
  content: "\eeaf";
}

.trigger:before {
  content: "\eeb0";
}

.notification-builder-1:before {
  content: "\eeb1";
}

.rca:before {
  content: "\eeb2";
}

.workgroup-association:before {
  content: "\eeb3";
}

.Assets:before {
  content: "\eeb4";
}

.BPM-app:before {
  content: "\eeb5";
}

.Budget-app:before {
  content: "\eeb6";
}

.Document-app:before {
  content: "\eeb7";
}

.KMZ:before {
  content: "\eeb8";
}

.Dislike-Outline:before {
  content: "\eeb9";
}

.Material:before {
  content: "\eeba";
}

.Warehouse1:before {
  content: "\eebb";
}

.Work-Order:before {
  content: "\eebc";
}

.Workflow-Mgt:before {
  content: "\eebd";
}

.Discard-Draft:before {
  content: "\eebe";
}

.IAM:before {
  content: "\eebf";
}

.Custom-Tabs:before {
  content: "\eec0";
}

.data-science:before {
  content: "\eec1";
}

.Discussion:before {
  content: "\eec2";
}

.Live-Chat:before {
  content: "\eec3";
}

.Maintenance-Guide:before {
  content: "\eec4";
}

.Mandatory:before {
  content: "\eec5";
}

.Network-Tree:before {
  content: "\eec6";
}

.Recovery:before {
  content: "\eec7";
}

.remote-connector:before {
  content: "\eec8";
}

.Reports:before {
  content: "\eec9";
}

.Risk1:before {
  content: "\eeca";
}

.Team:before {
  content: "\eecb";
}

.Trend:before {
  content: "\eecc";
}

.emoji_excellent:before {
  content: "\eecd";
}

.emoji_great:before {
  content: "\eece";
}

.emoji_good:before {
  content: "\eecf";
}

.emoji_okay:before {
  content: "\eed0";
}

.emoji_bad:before {
  content: "\eed1";
}

.Download-Reports:before {
  content: "\eed2";
}

.Plan-to-Ship:before {
  content: "\eed3";
}

.Request-Replan:before {
  content: "\eed4";
}

.apply:before {
  content: "\eed5";
}

.twitter_copy:before {
  content: "\eed6";
}

.flag-check:before {
  content: "\eed7";
}

.flag-remove:before {
  content: "\eed8";
}

.web-post:before {
  content: "\eed9";
}

.Validate:before {
  content: "\eeda";
}

.Browse:before {
  content: "\eedb";
}

.Calls:before {
  content: "\eedc";
}

.Rename:before {
  content: "\eedd";
}

.Download:before {
  content: "\eede";
}

.Idle:before {
  content: "\eedf";
}

.Sms:before {
  content: "\eee0";
}

.Youtube:before {
  content: "\eee1";
}

.Add-Template:before {
  content: "\eee2";
}

.cut:before {
  content: "\eee3";
}

.history-info:before {
  content: "\eee4";
}

.sort:before {
  content: "\eee5";
}

.Detach:before {
  content: "\eee6";
}

.Browsing-History:before {
  content: "\eee7";
}

.Upgrade1:before {
  content: "\eee8";
}

.Time-back:before {
  content: "\eee9";
}

.Downgrade:before {
  content: "\eeea";
}

.PAM:before {
  content: "\eeeb";
}

.surface:before {
  content: "\eeec";
}

.rca1:before {
  content: "\eeed";
}

.Case:before {
  content: "\eeee";
}

.Action:before {
  content: "\eeef";
}

.Discard-Template:before {
  content: "\eef0";
}

.Ip-Config:before {
  content: "\eef1";
}

.MetaData:before {
  content: "\eef2";
}

.po-workorder-create:before {
  content: "\eef3";
}

.Default-App:before {
  content: "\eef4";
}

.Confirm-Alert:before {
  content: "\eef5";
}

.Access-Request:before {
  content: "\eef6";
}

.Assembly:before {
  content: "\eef7";
}

.Disassembly:before {
  content: "\eef8";
}

.Outline:before {
  content: "\eef9";
}

.InProgress:before {
  content: "\eefa";
}

.Meeting:before {
  content: "\eefb";
}

.Announcement:before {
  content: "\eefc";
}

.administration2:before {
  content: "\ea19";
}

.agent_ai:before {
  content: "\ea1a";
}

.ai_flow:before {
  content: "\ea1b";
}

.alerts1:before {
  content: "\ea1d";
}

.anomaly_detector1:before {
  content: "\ea1e";
}

.app_onboarding1:before {
  content: "\ea1f";
}

.bi_and_analytics1:before {
  content: "\ea20";
}

.builders1:before {
  content: "\ea22";
}

.campaigns1:before {
  content: "\ea25";
}

.Capacity1:before {
  content: "\ea2e";
}

.case_management1:before {
  content: "\ea31";
}

.change_management1:before {
  content: "\ea46";
}

.channel_partners1:before {
  content: "\f57d";
}

.ClusterOps:before {
  content: "\f57e";
}

.configuration2:before {
  content: "\f57f";
}

.crm1:before {
  content: "\f58a";
}

.customer_care1:before {
  content: "\f58b";
}

.data_insider1:before {
  content: "\f58d";
}

.documents1:before {
  content: "\f58f";
}

.Facilities1:before {
  content: "\f590";
}

.FinOps:before {
  content: "\f591";
}

.forecaster1:before {
  content: "\f592";
}

.fttx1:before {
  content: "\f593";
}

.HelmOps:before {
  content: "\f594";
}

.identity_and_ipam1:before {
  content: "\f595";
}

.Incident:before {
  content: "\f596";
}

.iot1:before {
  content: "\f598";
}

.knowledge_repo1:before {
  content: "\f599";
}

.maintenance1:before {
  content: "\f59b";
}

.material_management1:before {
  content: "\f59c";
}

.meta_shoof:before {
  content: "\f59d";
}

.ml_studio1:before {
  content: "\f59e";
}

.observability1:before {
  content: "\f59f";
}

.order_management1:before {
  content: "\f5a0";
}

.Performance2:before {
  content: "\f5a1";
}

.problem_management1:before {
  content: "\f5a3";
}

.proc_bot1:before {
  content: "\f5a4";
}

.Procurement1:before {
  content: "\f5a5";
}

.products_and_offerings:before {
  content: "\f5a6";
}

.programs_and_projects1:before {
  content: "\f5a7";
}

.prompt_smith:before {
  content: "\f5a8";
}

.ran:before {
  content: "\f5a9";
}

.revenue_engineering1:before {
  content: "\f5aa";
}

.service_health1:before {
  content: "\f5ab";
}

.ServiceOps:before {
  content: "\f5ac";
}

.sherlock:before {
  content: "\f5ad";
}

.sim_inventory1:before {
  content: "\f5ae";
}

.slas_and_olas1:before {
  content: "\f5af";
}

.sparkops1:before {
  content: "\f5b0";
}

.subscribers1:before {
  content: "\f5b1";
}

.tickets_and_issues1:before {
  content: "\f5b2";
}

.topology2:before {
  content: "\f5b3";
}

.vendor_and_contracts1:before {
  content: "\f5b5";
}

.warehouse_and_logistics1:before {
  content: "\f5b7";
}

.workorder_management1:before {
  content: "\f5b8";
}

.x101:before {
  content: "\f5b9";
}
@charset "UTF-8";
.cal-month-view .cal-header {
  text-align: center;
  font-weight: bolder;
  border-top: 0.09px solid var(--grayColor200);
}

.cal-month-view .cal-header .cal-cell {
  padding: 0.42em 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  white-space: nowrap;
}

.cal-month-view .cal-days {
  border: 0.08em solid;
  border-bottom: 0;
}

.cal-month-view .cal-cell-top {
  min-height: 6.5em;
  flex: 1;
}

.cal-month-view .cal-cell-row {
  display: flex;
  border-bottom: 0.09px solid var(--grayColor200);
}

.cal-month-view .cal-cell {
  float: left;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.cal-month-view .cal-cell .cal-event {
  pointer-events: all !important;
}

.cal-month-view .cal-day-cell {
  max-width: 17.5em;
  min-height: 8.8em;
  min-width: 12.5em;
}

.cal-month-view .cal-day-cell:not(:last-child) {
  border-inline-end: 0.08em solid;
}

[dir=rtl] .cal-month-view .cal-day-cell:not(:last-child) {
  border-right: initial;
  border-left: 0.08em solid;
}

.cal-month-view .cal-days .cal-cell-row {
  border-bottom: 0.08em solid;
}

.cal-month-view .cal-day-badge {
  margin-top: 1.5em;
  margin-inline-start: 0.83em;
  display: inline-block;
  min-width: 0.83em;
  padding: 0.25em 0.58em;
  font-size: 1em;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  border-radius: 0.83em;
  float: left;
}

.cal-month-view .cal-day-number {
  font-size: 1.1em;
  font-weight: 400;
  margin-top: 0.4em;
  margin-left: 0.5em;
  float: left;
  margin-bottom: 0.2em;
}

.cal-month-view .cal-events {
  flex: 1;
  align-items: flex-end;
  line-height: 0.6em;
  display: flex;
  flex-wrap: wrap;
}

.cal-month-view .cal-event {
  width: 0.83em;
  height: 0.83em;
  border-radius: 50%;
  display: inline-block;
  margin: 0.17em;
}

.cal-month-view .cal-day-cell.cal-in-month.cal-has-events {
  cursor: pointer;
}

.cal-month-view .cal-day-cell.cal-out-month .cal-day-number {
  opacity: 0.5;
  cursor: default;
}

.cal-month-view .cal-day-cell.cal-today .cal-day-number {
  background: var(--accentColor600);
  border-radius: 50%;
  color: var(--bgColor10);
  width: 2em;
  height: 2em;
  align-self: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cal-month-view .cal-open-day-events {
  padding: 1.25em;
}

.cal-month-view .cal-open-day-events .cal-event {
  position: relative;
  top: 0.17em;
}

.cal-month-view .cal-out-month .cal-day-badge,
.cal-month-view .cal-out-month .cal-event {
  opacity: 0.3;
}

.cal-month-view .cal-draggable {
  cursor: move;
}

.cal-month-view .cal-drag-active * {
  pointer-events: none;
}

.cal-month-view .cal-event-title {
  cursor: pointer;
}

.cal-month-view .cal-event-title:hover {
  text-decoration: underline;
}

.cal-month-view {
  background-color: var(--bgColor10);
}

.cal-month-view .cal-cell-row:hover {
  background-color: var(--bgColor50);
}

.cal-month-view .cal-cell-row .cal-cell:hover,
.cal-month-view .cal-cell.cal-has-events.cal-open {
  background-color: var(--bgColor50);
}

.cal-month-view .cal-days {
  border-color: var(--grayColor50);
}

.cal-month-view .cal-day-cell:not(:last-child) {
  border-inline-end-color: var(--grayColor200);
}

[dir=rtl] .cal-month-view .cal-day-cell:not(:last-child) {
  border-right-color: initial;
  border-left-color: var(--grayColor200);
}

.cal-month-view .cal-days .cal-cell-row {
  border-bottom-color: var(--grayColor200);
}

.cal-month-view .cal-day-badge {
  background-color: #b94a48;
  color: var(--grayColor10);
}

.cal-month-view .cal-event {
  background-color: #1e90ff;
  border-color: #d1e8ff;
  color: var(--grayColor10);
}

.cal-month-view .cal-day-cell.cal-weekend .cal-day-number {
  color: #8b0000;
}

.dark-theme .cal-month-view .cal-day-cell.cal-weekend .cal-day-number {
  color: red;
}

.cal-month-view .cal-day-cell.cal-drag-over {
  background-color: ar(--bgColor50) !important;
}

.cal-month-view .cal-open-day-events {
  color: var(--grayColor10);
  background-color: var(--bgColor600);
  box-shadow: inset 0 0 1.25em 0 var(--grayColor500);
}

.cal-week-view {
  /* stylelint-disable-next-line selector-type-no-unknown */
}

.cal-week-view * {
  box-sizing: border-box;
}

.cal-week-view .cal-day-headers {
  display: flex;
  padding-inline-start: 5.83em;
  border: 0.08em solid;
}

[dir=rtl] .cal-week-view .cal-day-headers {
  padding-inline-start: initial;
  padding-inline-end: 5.83em;
}

.cal-week-view .cal-day-headers .cal-header {
  flex: 1;
  text-align: center;
  padding: 0.42em;
}

.cal-week-view .cal-day-headers .cal-header:not(:last-child) {
  border-inline-end: 0.09em solid;
}

[dir=rtl] .cal-week-view .cal-day-headers .cal-header:not(:last-child) {
  border-right: initial;
  border-left: 0.08em solid;
}

.cal-week-view .cal-day-headers .cal-header:first-child {
  border-inline-start: 0.09em solid;
}

[dir=rtl] .cal-week-view .cal-day-headers .cal-header:first-child {
  border-left: initial;
  border-right: 0.08em solid;
}

.cal-week-view .cal-day-headers span {
  font-weight: 400;
  opacity: 0.5;
}

.cal-week-view .cal-day-column {
  flex-grow: 1;
  border-inline-start: solid 0.08em;
}

[dir=rtl] .cal-week-view .cal-day-column {
  border-left: initial;
  border-right: solid 0.08em;
}

.cal-week-view .cal-event {
  font-size: 1em;
  border: 0.08em solid;
  direction: ltr;
}

.cal-week-view .cal-time-label-column {
  width: 5.83em;
  height: 100%;
}

.cal-week-view .cal-current-time-marker {
  position: absolute;
  width: 100%;
  height: 0.17em;
  z-index: 2;
}

.cal-week-view .cal-all-day-events {
  border: solid 0.08em;
  border-top: 0;
  border-bottom-width: 0.25em;
  padding-top: 0.25em;
  position: relative;
}

.cal-week-view .cal-all-day-events .cal-day-columns {
  height: 100%;
  width: 100%;
  display: flex;
  position: absolute;
  top: 0;
  z-index: 0;
}

.cal-week-view .cal-all-day-events .cal-events-row {
  position: relative;
  height: 2.58em;
  margin-inline-start: 5.83em;
}

[dir=rtl] .cal-week-view .cal-all-day-events .cal-events-row {
  margin-inline-start: initial;
  margin-inline-end: 5.83em;
}

.cal-week-view .cal-all-day-events .cal-event-container {
  display: inline-block;
  position: absolute;
}

.cal-week-view .cal-all-day-events .cal-event-container.resize-active {
  z-index: 1;
  pointer-events: none;
}

.cal-week-view .cal-all-day-events .cal-event {
  padding: 0 0.42em;
  margin-inline-start: 0.17em;
  margin-inline-end: 0.17em;
  height: 2.33em;
  line-height: 2.33em;
}

.cal-week-view .cal-all-day-events .cal-starts-within-week .cal-event {
  border-top-left-radius: 0.42em;
  border-bottom-left-radius: 0.42em;
}

[dir=rtl] .cal-week-view .cal-all-day-events .cal-starts-within-week .cal-event {
  border-top-left-radius: initial;
  border-bottom-left-radius: initial;
  border-top-right-radius: 0.42em !important;
  border-bottom-right-radius: 0.42em !important;
}

.cal-week-view .cal-all-day-events .cal-ends-within-week .cal-event {
  border-top-right-radius: 0.42em;
  border-bottom-right-radius: 0.42em;
}

[dir=rtl] .cal-week-view .cal-all-day-events .cal-ends-within-week .cal-event {
  border-top-right-radius: initial;
  border-bottom-right-radius: initial;
  border-top-left-radius: 0.42em;
  border-bottom-left-radius: 0.42em;
}

.cal-week-view .cal-all-day-events .cal-time-label-column {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.17em;
}

.cal-week-view .cal-all-day-events .cal-resize-handle {
  width: 0.5em;
  height: 100%;
  cursor: col-resize;
  position: absolute;
  top: 0;
}

.cal-week-view .cal-all-day-events .cal-resize-handle.cal-resize-handle-after-end {
  inset-inline-end: 0;
}

[dir=rtl] .cal-week-view .cal-all-day-events .cal-resize-handle.cal-resize-handle-after-end {
  inset-inline-end: initial;
  inset-inline-start: 0;
}

.cal-week-view .cal-event,
.cal-week-view .cal-header {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cal-week-view .cal-drag-active {
  pointer-events: none;
  z-index: 1;
}

.cal-week-view .cal-drag-active * {
  pointer-events: none;
}

.cal-week-view .cal-time-events {
  position: relative;
  border: solid 0.08em;
  border-top: 0;
  display: flex;
}

.cal-week-view .cal-time-events .cal-day-columns {
  display: flex;
  flex-grow: 1;
}

.cal-week-view .cal-time-events .cal-day-column {
  position: relative;
}

.cal-week-view .cal-time-events .cal-events-container {
  position: relative;
}

.cal-week-view .cal-time-events .cal-event-container {
  position: absolute;
  z-index: 1;
}

.cal-week-view .cal-time-events .cal-event {
  width: 100%;
  height: calc(100% - 0.17em);
  padding: 0 0.42em;
  line-height: 2.08em;
}

.cal-week-view .cal-time-events .cal-resize-handle {
  width: 100%;
  height: 0.33em;
  cursor: row-resize;
  position: absolute;
}

.cal-week-view .cal-time-events .cal-resize-handle.cal-resize-handle-after-end {
  bottom: 0;
}

.cal-week-view .cal-hour-segment {
  position: relative;
}

.cal-week-view .cal-hour-segment::after {
  content: " ";
}

.cal-week-view .cal-event-container:not(.cal-draggable) {
  cursor: pointer;
}

.cal-week-view .cal-draggable {
  cursor: move;
}

.cal-week-view mwl-calendar-week-view-hour-segment,
.cal-week-view .cal-hour-segment {
  display: block;
}

.cal-week-view .cal-hour:not(:last-child) .cal-hour-segment,
.cal-week-view .cal-hour:last-child :not(:last-child) .cal-hour-segment {
  border-bottom: thin dashed;
}

.cal-week-view .cal-time {
  font-weight: bold;
  padding-top: 0.42em;
  width: 5.83em;
  text-align: center;
}

.cal-week-view .cal-hour-segment.cal-after-hour-start .cal-time {
  display: none;
}

.cal-week-view .cal-starts-within-day .cal-event {
  border-top-left-radius: 0.42em;
  border-top-right-radius: 0.42em;
}

.cal-week-view .cal-ends-within-day .cal-event {
  border-bottom-left-radius: 0.42em;
  border-bottom-right-radius: 0.42em;
}

.cal-week-view {
  background-color: var(--bgColor10);
  border-top: solid 0.08em var(--grayColor50);
}

.cal-week-view .cal-day-headers {
  border-color: var(--grayColor50);
  border-top: 0;
}

.cal-week-view .cal-day-headers .cal-header:not(:last-child) {
  border-inline-end-color: var(--grayColor50);
}

[dir=rtl] .cal-week-view .cal-day-headers .cal-header:not(:last-child) {
  border-right-color: initial;
  border-left: solid 0.08em var(--grayColor50) !important;
}

.cal-week-view .cal-day-headers .cal-header:first-child {
  border-inline-start-color: var(--grayColor50);
}

[dir=rtl] .cal-week-view .cal-day-headers .cal-header:first-child {
  border-left-color: initial;
  border-right-color: var(--grayColor50);
}

.cal-week-view .cal-day-headers .cal-header:hover,
.cal-week-view .cal-day-headers .cal-drag-over {
  background-color: var(--bgColor50);
}

.cal-week-view .cal-day-column {
  border-inline-start-color: var(--grayColor50);
}

[dir=rtl] .cal-week-view .cal-day-column {
  border-left-color: initial;
  border-right-color: var(--grayColor50);
}

.cal-week-view .cal-event {
  background-color: #d1e8ff;
  border-color: #1e90ff;
  color: #1e90ff;
}

.cal-week-view .cal-all-day-events {
  border-color: var(--grayColor50);
}

.cal-week-view .cal-header.cal-today {
  background-color: #e8fde7;
}

.dark-theme .cal-week-view .cal-header.cal-today {
  background-color: #1e551e;
}

.cal-week-view .cal-header.cal-weekend span {
  color: #8b0000;
}

.dark-theme .cal-week-view .cal-header.cal-weekend span {
  color: red;
}

.cal-week-view .cal-time-events {
  border-color: var(--grayColor50);
}

.cal-week-view .cal-time-events .cal-day-columns:not(.cal-resize-active) .cal-hour-segment:hover {
  background-color: var(--bgColor50);
}

.cal-week-view .cal-hour-odd {
  background-color: var(--bgColor50);
}

.cal-week-view .cal-drag-over .cal-hour-segment {
  background-color: var(--bgColor50);
}

.cal-week-view .cal-hour:not(:last-child) .cal-hour-segment,
.cal-week-view .cal-hour:last-child :not(:last-child) .cal-hour-segment {
  border-bottom-color: var(--grayColor50);
}

.cal-week-view .cal-current-time-marker {
  background-color: #ea4334;
}

.cal-day-view {
  /* stylelint-disable-next-line selector-type-no-unknown */
}

.cal-day-view mwl-calendar-week-view-header {
  display: none;
}

.cal-day-view .cal-events-container {
  margin-inline-start: 5.83em;
}

[dir=rtl] .cal-day-view .cal-events-container {
  margin-inline-start: initial;
  margin-inline-end: 5.83em;
}

.cal-day-view .cal-day-column {
  border-inline-start: 0;
}

.cal-day-view .cal-current-time-marker {
  margin-inline-start: 5.83em;
  width: calc(100% - 5.83em);
}

[dir=rtl] .cal-day-view .cal-current-time-marker {
  margin-inline-start: initial;
  margin-inline-end: 5.83em;
}

.cal-tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.5;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  font-size: 0.92em;
  word-wrap: break-word;
  opacity: 0.9;
}

.cal-tooltip.cal-tooltip-top {
  padding: 0.42em 0;
  margin-top: -0.25em;
}

.cal-tooltip.cal-tooltip-top .cal-tooltip-arrow {
  bottom: 0;
  inset-inline-start: 50%;
  margin-inline-start: -0.42em;
  border-width: 0.42em 0.42em 0;
}

.cal-tooltip.cal-tooltip-right {
  padding: 0 0.42em;
  margin-inline-start: 0.25em;
}

.cal-tooltip.cal-tooltip-right .cal-tooltip-arrow {
  top: 50%;
  inset-inline-start: 0;
  margin-top: -0.42em;
  border-width: 0.42em 0.42em 0.42em 0;
}

.cal-tooltip.cal-tooltip-bottom {
  padding: 0.42em 0;
  margin-top: 0.25em;
}

.cal-tooltip.cal-tooltip-bottom .cal-tooltip-arrow {
  top: 0;
  inset-inline-start: 50%;
  margin-inline-start: -0.42em;
  border-width: 0 0.42em 0.42em;
}

.cal-tooltip.cal-tooltip-left {
  padding: 0 0.42em;
  margin-inline-start: -0.25em;
}

.cal-tooltip.cal-tooltip-left .cal-tooltip-arrow {
  top: 50%;
  inset-inline-end: 0;
  margin-top: -0.42em;
  border-width: 0.42em 0 0.42em 0.42em;
}

.cal-tooltip-inner {
  max-width: 16.67em;
  padding: 0.25em 0.67em;
  text-align: center;
  border-radius: 0.25rem;
}

.cal-tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.cal-tooltip.cal-tooltip-top .cal-tooltip-arrow {
  border-top-color: var(--grayColor900);
}

.cal-tooltip.cal-tooltip-right .cal-tooltip-arrow {
  border-inline-end-color: var(--grayColor900);
}

.cal-tooltip.cal-tooltip-bottom .cal-tooltip-arrow {
  border-bottom-color: var(--grayColor900);
}

.cal-tooltip.cal-tooltip-left .cal-tooltip-arrow {
  border-inline-start-color: var(--grayColor900);
}

.cal-tooltip-inner {
  color: var(--grayColor10);
  background-color: var(--bgColor900);
}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0em, 0em, 0em);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 0.08em;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item.center {
  z-index: 5;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}

.owl-carousel .owl-item .owl-lazy {
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 6.67em;
  width: 6.67em;
  left: 50%;
  top: 50%;
  margin-left: -3.33em;
  margin-top: -3.33em;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 0.83em;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*=owl-] {
  color: #fff;
  font-size: 1.17em;
  margin: 0.42em;
  padding: 0.33em 0.58em;
  background: #d6d6d6;
  display: inline-block;
  cursor: pointer;
  border-radius: 0.25em;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #fff;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 0.83em;
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}

.owl-theme .owl-dots .owl-dot span {
  width: 0.83em;
  height: 0.83em;
  margin: 0.42em 0.58em;
  background: #d6d6d6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 2.5em;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}
:root{--smart-primary-rgb:0,92,153;--smart-primary:rgb(var(--smart-primary-rgb));--smart-primary-color:#ffffff;--smart-secondary-rgb:45,45,48;--smart-secondary:rgb(var(--smart-secondary-rgb));--smart-secondary-color:#ffffff;--smart-error-rgb:176,0,32;--smart-error:rgb(var(--smart-error-rgb));--smart-error-color:#ffffff;--smart-success-rgb:139,195,74;--smart-success:rgb(var(--smart-success-rgb));--smart-success-color:#ffffff;--smart-info-rgb:92,192,222;--smart-info:rgb(var(--smart-info-rgb));--smart-info-color:#fff;--smart-warning-rgb:240,173,78;--smart-warning:rgb(var(--smart-warning-rgb));--smart-warning-color:#fff;--smart-light-rgb:255,255,255;--smart-light:rgb(var(--smart-light-rgb));--smart-light-color:#222222;--smart-dark-rgb:34,34,34;--smart-dark:rgb(var(--smart-dark-rgb));--smart-dark-color:#ffffff;--smart-background:#fefefe;--smart-background-color:#5A5A5A;--smart-surface:#F5F5F5;--smart-surface-color:#323232;--smart-disabled:#CCCCCC;--smart-disabled-color:#555;--smart-ui-state-hover:#ebebeb;--smart-ui-state-color-hover:#333;--smart-ui-state-border-hover:var(--smart-ui-state-hover);--smart-ui-state-active:var(--smart-primary);--smart-ui-state-color-active:var(--smart-primary-color);--smart-ui-state-border-active:var(--smart-primary);--smart-ui-state-focus:#e2e0e0;--smart-ui-state-color-focus:#333;--smart-ui-state-border-focus:var(--smart-ui-state-focus);--smart-ui-state-selected:rgba(var(--smart-primary-rgb), .1);--smart-ui-state-color-selected:var(--smart-primary);--smart-ui-state-border-selected:rgba(var(--smart-primary-rgb), .1);--smart-item-border-width:1px;--smart-item-border-radius:var(--smart-border-radius);--smart-item-border-top-left-radius:var(--smart-border-radius);--smart-item-border-top-right-radius:var(--smart-border-radius);--smart-item-border-bottom-left-radius:var(--smart-border-radius);--smart-item-border-bottom-right-radius:var(--smart-border-radius);--smart-font-size:14px;--smart-font-weight:inherit;--smart-font-style:inherit;--smart-font-family:Roboto,"Helvetica Neue",sans-serif;--smart-font-family-icon:smart-icons;--smart-font-family-icon-src:local('./font/smart-icons'),url('smart-icons.3d6dfa6db497e61b.woff2') format('woff2'),url('smart-icons.3fa70cfb9a92d662.woff') format('woff'),url('smart-icons.25b7f0de9e73e343.ttf') format('truetype'),url('smart-icons.24e83f53cae99df8.eot') format('embedded-opentype');--smart-border-width:1px;--smart-border-radius:4px;--smart-border-top-left-radius:var(--smart-border-radius);--smart-border-top-right-radius:var(--smart-border-radius);--smart-border-bottom-left-radius:var(--smart-border-radius);--smart-border-bottom-right-radius:var(--smart-border-radius);--smart-border:#E0E0E0;--smart-border-rgb:244,224,224;--smart-outline:#b2b2b2;--smart-editor-selection:var(--smart-primary);--smart-editor-selection-color:var(--smart-primary-color);--smart-alternation-index0-color:var(--smart-surface-color);--smart-alternation-index0-border:var(--smart-surface);--smart-alternation-index0-background:var(--smart-surface);--smart-alternation-index1-color:#111;--smart-alternation-index1-border:#9BBB59;--smart-alternation-index1-background:#9BBB59;--smart-alternation-index2-color:#fff;--smart-alternation-index2-border:#FC3752;--smart-alternation-index2-background:#FC3752;--smart-tick-color:var(--smart-border);--smart-tick-label-color:var(--smart-background-color);--smart-box-height:450px;--smart-box-width:450px;--smart-bar-height:48px;--smart-bar-width:400px;--smart-editor-height:30px;--smart-editor-width:250px;--smart-editor-drop-down-width:300px;--smart-editor-drop-down-height:400px;--smart-editor-drop-down-padding-size:3px;--smart-editor-drop-down-max-width:800px;--smart-editor-drop-down-min-width:100px;--smart-editor-drop-down-max-height:400px;--smart-editor-drop-down-min-height:50px;--smart-editor-drop-down-resize-bar-height:15px;--smart-editor-drop-down-vertical-offset:5px;--smart-editor-drop-down-z-index:9999;--smart-editor-label-padding:4px;--smart-editor-addon-width:27px;--smart-column-icon-size:30px;--smart-icon-table:'\e800';--smart-icon-star:'\e801';--smart-icon-star-empty:'\e802';--smart-icon-plus:'\e803';--smart-icon-minus:'\e804';--smart-icon-attention-circled:'\e805';--smart-icon-align-left:'\e806';--smart-icon-align-right:'\e807';--smart-icon-align-center:'\e808';--smart-icon-align-justify:'\e813';--smart-icon-reload:'\e809';--smart-icon-cloud:'\e84d';--smart-icon-cancel:'\e80d';--smart-icon-close:'\e80d';--smart-icon-cancel-circled:'\e80e';--smart-icon-cancel-alt:'\E849';--smart-icon-arrow-alt:'\F105';--smart-icon-plus-circled:'\e810';--smart-icon-power:'\e811';--smart-icon-minus-circled:'\e814';--smart-icon-arrow-up-alt:'\e817';--smart-icon-radio:'\e818';--smart-icon-refresh:'\e819';--smart-icon-chart:'\e81a';--smart-icon-check-squared:'\e81b';--smart-icon-resize-full:'\e81c';--smart-icon-resize-small:'\e81d';--smart-icon-resize-vertical:'\e80c';--smart-icon-resize-horizontal:'\e80f';--smart-icon-lock:'\e821';--smart-icon-sort:'\e823';--smart-icon-delete:'\e826';--smart-icon-search:'\e828';--smart-icon-calendar:'\e829';--smart-icon-edit:'\e82a';--smart-icon-popup:'\e82c';--smart-icon-lock-open:'\e82e';--smart-icon-add-filter:'\e82f';--smart-icon-block:'\e832';--smart-icon-settings:'\e833';--smart-icon-duplicate:'\e834';--smart-icon-copy-record:'\e835';--smart-icon-download-alt:'\e836';--smart-icon-clock:'\e837';--smart-icon-attention:'\e838';--smart-icon-help-circled:'\e839';--smart-icon-mail:'\e83c';--smart-icon-up:'\e83f';--smart-icon-first-page:'\e900';--smart-icon-arrow-down:'\e901';--smart-icon-arrow-left:'\e902';--smart-icon-arrow-right:'\e903';--smart-icon-arrow-up:'\e904';--smart-icon-arrow-down-filled:'\e812';--smart-icon-arrow-left-filled:'\e816';--smart-icon-arrow-right-filled:'\e81e';--smart-icon-arrow-up-filled:'\e815';--smart-icon-last-page:'\e905';--smart-icon-more-horiz:'\e906';--smart-icon-skip-next:'\e907';--smart-icon-check:'\e908';--smart-icon-mode-edit:'\e909';--smart-icon-replay:'\e90c';--smart-icon-visibility:'\e90d';--smart-icon-visibility-off:'\e90e';--smart-icon-link:'\e831';--smart-icon-unlink:'\f127';--smart-icon-link-ext:'\f08e';--smart-icon-check-empty:'\f096';--smart-icon-filter:'\f0b0';--smart-icon-resize-full-alt:'\f0b2';--smart-icon-menu:'\f0c9';--smart-icon-sort-1:'\f0dc';--smart-icon-paste:'\f0ea';--smart-icon-circle-empty:'\f10c';--smart-icon-circle:'\f111';--smart-icon-ellipsis:'\f141';--smart-icon-minus-squared:'\f146';--smart-icon-ok-squared:'\f14a';--smart-icon-sort-name-up:'\f15d';--smart-icon-sort-name-down:'\f15e';--smart-icon-sort-alt-up:'\f160';--smart-icon-sort-alt-down:'\f161';--smart-icon-sort-number-up:'\f162';--smart-icon-sort-number-down:'\f163';--smart-icon-dot-circled:'\f192';--smart-icon-toggle-off:'\f204';--smart-icon-toggle-on:'\f205';--smart-icon-group:'\f247';--smart-icon-ungroup:'\f248';--smart-icon-window-maximize:'\f2d0';--smart-icon-window-minimize:'\f2d1';--smart-icon-window-restore:'\f2d2';--smart-icon-window-pin-alt:'\e82d';--smart-icon-window-pin:'\e80a';--smart-icon-docs:'\f0c5';--smart-icon-pdf:'\f1c1';--smart-icon-excel:'\f1C3';--smart-icon-word:'\f1C2';--smart-icon-archive:'\f1C6';--smart-icon-file:'\e845';--smart-icon-powerpoint:'\f1c4';--smart-icon-text:'\f0f6';--smart-icon-math:'\f01a';--smart-icon-spin:'\e80b';--smart-icon-user:'\e81f';--smart-icon-font:'\f031';--smart-icon-fontsize:'\f088';--smart-icon-contains:'\f063';--smart-icon-starts_with:'\f064';--smart-icon-ends_with:'\f065';--smart-icon-does_not_contain:'\f066';--smart-icon-equals:'\f52c';--smart-icon-greater-than:'\f531';--smart-icon-greater-than-equal:'\f532';--smart-icon-less-than:'\f536';--smart-icon-less-than-equal:'\f537';--smart-icon-not-equal:'\f53e';--smart-icon-percentage:'\f541';--smart-icon-grip-vertical:'\f58e';--smart-icon-between:'\f06a';--smart-icon-bold:'\e820';--smart-icon-italic:'\e822';--smart-icon-underline:'\f0cd';--smart-icon-strike-through:'\f0cc';--smart-icon-list-ordered:'\f0cb';--smart-icon-list-unordered:'\f0ca';--smart-icon-subscript:'\f12c';--smart-icon-superscript:'\f12b';--smart-icon-color-background:'\e830';--smart-icon-indent-right:'\e824';--smart-icon-indent-left:'\e825';--smart-icon-image:'\e827';--smart-icon-case-lower:'aa';--smart-icon-case-upper:'AA';--smart-icon-print:'\e82b';--smart-icon-format-clear:'T';--smart-icon-source-code:'\f121';--smart-icon-split-mode:'\e83b';--smart-icon-cut:'\e83a';--smart-icon-video:'\f16a';--smart-icon-video-camera:'\e840';--smart-icon-bell:'\f0f3';--smart-icon-header:'\f1dc';--smart-icon-row:'\f0db';--smart-icon-row-before:'\f2d0';--smart-icon-row-after:'\f2d0';--smart-icon-row-delete:var(--smart-icon-cancel-circled);--smart-icon-column:'\f0db';--smart-icon-column-left:'\f2d0';--smart-icon-column-right:'\f2d0';--smart-icon-column-delete:var(--smart-icon-cancel-circled);--smart-icon-vertical-align:'\f06a \e80c';--smart-icon-styles:'\f1fc';--smart-icon-comment:'\F0E5';--smart-icon-card:'\E83E';--smart-icon-tasks:'\F0AE';--smart-icon-phone:'\E83D';--smart-icon-kanban:'\F181';--smart-icon-table-alt:'\F0CE';--smart-icon-zoom-in:'\E841';--smart-icon-zoom-out:'\E842';--smart-icon-move:'\F047';--smart-icon-home:'\E843';--smart-accordion-animation-duration:225ms;--smart-accordion-default-width:var(--smart-box-width);--smart-accordion-default-height:var(--smart-box-height);--smart-accordion-expanded-content-height:0px;--smart-accordion-expanded-content-local-height:0px;--smart-accordion-item-header-height:var(--smart-bar-height);--smart-accordion-item-expanded-offset:20px;--smart-array-default-width:var(--smart-box-width);--smart-array-default-height:var(--smart-box-height);--smart-array-element-gap:3px;--smart-breadcrumb-default-width:400px;--smart-breadcrumb-default-height:auto;--smart-breadcrumb-padding:10px;--smart-breadcrumb-drop-down-width:var(--smart-editor-drop-down-width);--smart-breadcrumb-item-height:40px;--smart-breadcrumb-horizontal-offset:10px;--smart-button-text-transform:uppercase;--smart-button-padding:8px 16px;--smart-button-large-padding:10px 16px;--smart-button-large-font-size:18px;--smart-button-small-padding:5px 10px;--smart-button-small-font-size:12px;--smart-button-very-small-padding:3px 5px;--smart-button-very-small-font-size:10px;--smart-button-flat-color:var(--smart-background-color);--smart-button-outlined-color:var(--smart-background-color);--smart-button-outlined-border:var(--smart-border);--smart-button-group-default-width:auto;--smart-button-group-default-height:auto;--smart-calendar-header-height:calc(0.75 * var(--smart-bar-height));--smart-calendar-footer-height:calc(0.75 * var(--smart-bar-height));--smart-calendar-title-height:calc(1.25 * var(--smart-bar-height));--smart-calendar-cell-size:30px;--smart-calendar-cell-spacing:4px;--smart-calendar-default-width:calc(50px + var(--smart-calendar-cell-spacing) + 7 * (var(--smart-calendar-cell-spacing) + var(--smart-calendar-cell-size)));--smart-calendar-default-height:calc(var(--smart-calendar-cell-spacing) + 7 * (var(--smart-calendar-cell-spacing) + var(--smart-calendar-cell-size)) + var(--smart-calendar-header-height));--smart-calendar-title-text-transform:initial;--smart-calendar-week-title-text-transform:uppercase;--smart-calendar-header-text-transform:uppercase;--smart-calendar-footer-text-transform:uppercase;--smart-calendar-cell-border-top-right-radius:15px;--smart-calendar-cell-border-top-left-radius:15px;--smart-calendar-cell-border-bottom-left-radius:15px;--smart-calendar-cell-border-bottom-right-radius:15px;--smart-calendar-title-padding:10px;--smart-calendar-important-date-background:var(--smart-ui-state-hover);--smart-calendar-important-date-color:var(--smart-ui-state-color-hover);--smart-calendar-important-date-border-color:var(--smart-ui-state-border-hover);--smart-calendar-navigation-button-size:30px;--smart-card-view-default-width:1200px;--smart-card-view-default-height:800px;--smart-card-view-header-height:30px;--smart-card-view-cover-height:var(--smart-carousel-default-height);--smart-card-view-vertical-offset:15px;--smart-card-view-column-min-width:250px;--smart-card-view-gap:10px;--smart-card-view-add-new-button-size:60px;--smart-carousel-default-width:600px;--smart-carousel-default-height:200px;--smart-carousel-3d-mode-slide-width:400px;--smart-carousel-3d-mode-slide-height:400px;--smart-carousel-multiple-mode-slide-width:200px;--smart-chart-default-width:850px;--smart-chart-default-height:500px;--smart-check-box-default-size:calc(1px + 1/2 * var(--smart-editor-height));--smart-color-panel-default-width:auto;--smart-color-panel-default-height:auto;--smart-color-panel-palette-size:300px;--smart-color-panel-grid-mode-item-size:20px;--smart-color-panel-grid-mode-column-count:8;--smart-color-panel-grid-mode-columns-gap:1px;--smart-color-panel-brightness:0;--smart-color-panel-default-mode-sections-gap:8px;--smart-color-panel-palette-width:var(--smart-color-panel-palette-size);--smart-color-panel-palette-height:var(--smart-color-panel-palette-size);--smart-color-panel-alpha-channel-color:white;--smart-color-picker-default-width:var(--smart-editor-width);--smart-color-picker-default-height:var(--smart-editor-height);--smart-color-picker-drop-down-width:auto;--smart-color-picker-drop-down-height:auto;--smart-combo-box-default-width:var(--smart-editor-width);--smart-combo-box-default-height:var(--smart-editor-height);--smart-combo-box-drop-down-width:auto;--smart-combo-box-drop-down-height:auto;--smart-chip-default-height:var(--smart-editor-height);--smart-chip-avatar-background:var(--smart-secondary);--smart-currency-format-panel-currency-holder-width:1fr;--smart-currency-format-panel-apply-button-width:125px;--smart-currency-format-panel-header-holder-offset:2%;--smart-currency-format-panel-currency-holder-input-width:1fr;--smart-currency-format-panel-currency-holder-dropdown-width:165px;--smart-currency-format-panel-currency-holder-dropdown-button-width:95%;--smart-currency-format-panel-border-size:1px;--smart-currency-format-panel-border-color:#ccc;--smart-currency-format-panel-border-radius:4px;--smart-currency-format-panel-currencies-margin-top:15px;--smart-currency-format-panel-currencies-max-height:400px;--smart-currency-format-panel-currencies-item-padding:12px;--smart-currency-format-panel-currency-holder-padding-left:5px;--smart-currency-format-panel-currency-holder-padding-top:3px;--smart-currency-format-panel-currency-holder-padding-bottom:3px;--smart-currency-format-panel-currency-input-width:100%;--smart-currency-format-panel-currencies-left-padding:10px;--smart-currency-format-panel-currencies-hover-background:#f1f1f1;--smart-currency-format-panel-currencies-example-format-color:#777;--smart-data-view-padding:10px;--smart-data-view-customize-panel-width:320px;--smart-data-view-filter-panel-width:550px;--smart-data-view-sort-panel-width:470px;--smart-data-view-search-panel-width:250px;--smart-date-format-panel-main-container-width:960px;--smart-date-format-panel-main-container-padding:15px;--smart-date-format-panel-border-radius:4px;--smart-date-format-panel-border-size:1px;--smart-date-format-panel-border-color:#ccc;--smart-date-format-panel-smart-inputs-container-width:1fr;--smart-date-format-panel-apply-container-width:150px;--smart-date-format-panel-smart-input-buttons-column-gap:2%;--smart-date-format-panel-smart-inputs-holder-width:94%;--smart-date-format-panel-add-format-holder-width:6%;--smart-date-format-panel-smart-inputs-list-holder-offset:2px;--smart-date-format-panel-smart-input-format-width:150px;--smart-date-format-panel-smart-input-sign-width:80px;--smart-date-format-panel-smart-input-height:25px;--smart-date-format-panel-each-smart-input-offset:4px;--smart-date-format-panel-all-format-holders-width:255px;--smart-date-format-panel-add-format-holder-button:120px;--smart-date-format-panel-each-add-format-holder-width:120px;--smart-date-format-panel-add-new-format-dropdown-offset:5px;--smart-date-format-panel-date-time-format-list-offset-top:15px;--smart-date-format-panel-date-time-format-list-max-height:400px;--smart-date-format-panel-each-date-time-format-offset:12px;--smart-date-time-picker-default-width:var(--smart-editor-width);--smart-date-time-picker-default-height:var(--smart-editor-height);--smart-date-time-picker-header-opacity:0.8;--smart-date-time-picker-header-opacity-active:1;--smart-date-time-picker-drop-down-width:var(--smart-editor-drop-down-height);--smart-date-time-picker-drop-down-height:auto;--smart-docking-layout-default-width:1000px;--smart-docking-layout-default-height:800px;--smart-docking-layout-feedback-background-secondary-size:7px;--smart-drop-down-list-default-width:var(--smart-editor-width);--smart-drop-down-list-default-height:var(--smart-editor-height);--smart-drop-down-list-drop-down-width:initial;--smart-drop-down-list-drop-down-height:auto;--smart-drop-down-button-default-width:auto;--smart-drop-down-button-default-height:var(--smart-editor-height);--smart-drop-down-button-drop-down-width:var(--smart-editor-drop-down-width);--smart-drop-down-button-drop-down-height:var(--smart-editor-drop-down-height);--smart-editor-default-width:100%;--smart-editor-default-height:600px;--smart-editor-input-min-height:100px;--smart-editor-padding:15px;--smart-editor-toolbar-item-margin:5px;--smart-editor-toolbar-button-width:30px;--smart-editor-toolbar-delimiter-width:5px;--smart-editor-toolbar-drop-down-width-large:100px;--smart-editor-toolbar-drop-down-width-small:65px;--smart-editor-window-header-height:var(--smart-scheduler-window-header-height);--smart-editor-window-footer-height:var(--smart-scheduler-window-footer-height);--smart-editor-inline-toolbar-max-width:80vw;--smart-editor-table-column-width:initial;--smart-editor-table-cell-min-height:20px;--smart-editor-table-cell-min-width:var(--smart-editor-table-cell-min-height);--smart-editor-char-counter-offset:30px;--smart-editor-toolbar-item-height:30px;--smart-editor-toolbar-item-border-radius:var(--smart-border-radius);--smart-editor-toolbar-height:calc(var(--smart-editor-toolbar-item-height) + 2 * var(--smart-editor-toolbar-item-margin));--smart-editor-highlight:var(--smart-primary);--smart-editor-highlight-color:var(--smart-primary-color);--smart-editor-search-bar-offset:5px;--smart-editor-search-bar-padding:5px;--smart-filter-builder-default-width:var(--smart-box-width);--smart-filter-builder-default-height:var(--smart-box-height);--smart-filter-builder-row-height:var(--smart-editor-height);--smart-filter-builder-item-width:var(--smart-editor-width);--smart-filter-builder-group-container-border:4px;--smart-filter-builder-item-margin:20px;--smart-filter-builder-group-condition-margin:5px;--smart-filter-builder-group-margin:15px;--smart-filter-panel-default-width:300px;--smart-filter-panel-default-height:auto;--smart-filter-panel-padding:10px;--smart-filter-panel-border-top-right-radius:var(--smart-border-radius);--smart-filter-panel-border-top-left-radius:var(--smart-border-radius);--smart-filter-panel-border-bottom-left-radius:var(--smart-border-radius);--smart-filter-panel-border-bottom-right-radius:var(--smart-border-radius);--smart-filter-panel-border-width:var(--smart-border-width);--smart-filter-panel-border:var(--smart-border);--smart-filter-panel-background:var(--smart-background);--smart-filter-panel-color:var(--smart-background-color);--smart-filter-panel-vertical-offset:10px;--smart-filter-panel-main-element-height:400px;--smart-file-upload-default-width:var(--smart-editor-width);--smart-file-upload-browse-button-width:auto;--smart-file-upload-browse-button-height:auto;--smart-file-upload-footer-button-width:auto;--smart-file-upload-footer-button-height:auto;--smart-file-upload-text-content-uploading-start:"Connecting ...";--smart-file-upload-text-content-uploading:"Uploading ...";--smart-file-upload-text-content-error:"Upload error!";--smart-file-upload-text-content-pause:"Upload paused!";--smart-file-upload-text-content-drop-zone:"Drag files here";--smart-file-upload-text-content-drop-zone-over:"Drop here \e824";--smart-file-upload-container-min-height:60px;--smart-file-upload-total-files-min-height:20px;--smart-file-upload-drop-zone-height:100%;--smart-gantt-chart-resource-splitter-bar-fit-size:calc(var(--smart-gantt-chart-resource-timeline-content-height) + var(--smart-gantt-chart-task-default-height));--smart-gantt-chart-task-splitter-bar-fit-size:var(--smart-gantt-chart-task-timeline-content-height);--smart-gantt-chart-task-default-height:30px;--smart-gantt-chart-header-height:var(--smart-gantt-chart-task-default-height);--smart-gantt-chart-task-bar-fill-padding:5px;--smart-gantt-chart-task-label-padding:2px var(--smart-gantt-chart-task-bar-fill-padding);--smart-gantt-chart-task-thumb-color:rgba(0, 0, 0, .55);--smart-gantt-chart-task-progress-color:rgba(0, 0, 0, .15);--smart-gantt-chart-project-color:#ffa558;--smart-gantt-chart-project-label-color:#333;--smart-gantt-chart-project-label-color-selected:#000;--smart-gantt-chart-project-progress-color:var(--smart-gantt-chart-task-progress-color);--smart-gantt-chart-task-color:rgb(43, 195, 190);--smart-gantt-chart-milestone-color:#800080;--smart-gantt-chart-timeline-task-background-color:transparent;--smart-gantt-chart-timeline-task-connection-feedback-color:#e6510a;--smart-gantt-chart-timeline-task-connection-feedback-width:1px;--smart-gantt-chart-timeline-task-connection-feedback-style:dashed;--smart-gantt-chart-timeline-task-connection-color:var(--smart-gantt-chart-timeline-task-connection-feedback-color);--smart-gantt-chart-timeline-task-connection-color-hover:var(--smart-gantt-chart-timeline-task-connection-color);--smart-gantt-chart-timeline-task-connection-width:var(--smart-gantt-chart-timeline-task-connection-feedback-width);--smart-gantt-chart-timeline-task-connection-style:solid;--smart-gantt-chart-timeline-task-connection-arrow-type:solid;--smart-gantt-chart-timeline-task-connection-arrow-width:5px;--smart-gantt-chart-timeline-task-resize-indicator-width:4px;--smart-gantt-chart-timeline-task-resize-indicator-color:#fff;--smart-gantt-chart-timeline-task-resize-indicator-border-color:#333;--smart-gantt-chart-timeline-task-progress-thumb-size:10px;--smart-gantt-chart-timeline-cell-size:auto;--smart-gantt-chart-timeline-cell-min-size:70px;--smart-gantt-chart-timeline-task-min-width:5px;--smart-gantt-chart-timeline-weekend-color:#EFF5FD;--smart-gantt-chart-timeline-nonworking-color:#F5F5F5;--smart-gantt-chart-default-width:auto;--smart-gantt-chart-default-height:600px;--smart-gantt-chart-task-popup-window-default-width:60vw;--smart-gantt-chart-connection-popup-window-default-width:300px;--smart-gantt-chart-confirm-popup-window-default-width:var(--smart-gantt-chart-connection-popup-default-width);--smart-gantt-chart-popup-window-header-height:35px;--smart-gantt-chart-popup-window-footer-height:50px;--smart-gantt-chart-header-placeholder:' - ';--smart-gantt-chart-progress-label-padding:0 10px 0 10px;--smart-gantt-chart-filter-row-height:30px;--smart-gantt-chart-task-fill-border-radius:0;--smart-gantt-chart-segment-link-color:var(--smart-gantt-chart-task-color);--smart-gantt-chart-segment-link-size:var(--smart-border-width);--smart-gantt-chart-date-marker-height:25px;--smart-gantt-chart-date-marker-width:var(--smart-border-width);--smart-gantt-chart-date-marker-background:var(--smart-primary);--smart-gantt-chart-date-marker-color:var(--smart-primary-color);--smart-gantt-chart-date-marker-v-offset:15%;--smart-gantt-chart-date-marker-h-offset:10px;--smart-gantt-chart-indicator-icon:initial;--smart-gantt-chart-deadline-icon:var(--smart-icon-attention-circled);--smart-gantt-chart-deadline-color:var(--smart-error);--smart-gantt-chart-baseline-proportion:2;--smart-gantt-chart-baseline-background:rgba(166, 205, 87, .5);--smart-gantt-chart-progress-label-width:60px;--smart-gantt-chart-current-time-indicator-size:1px;--smart-gantt-chart-current-time-indicator-background:var(--smart-primary);--smart-gantt-chart-current-time-indicator-arrow-size:7px;--smart-gantt-chart-current-time-indicator-header-size:2px;--smart-gantt-chart-shader-background:rgba(var(--smart-border-rgb), .5);--smart-gauge-default-width:var(--smart-box-width);--smart-gauge-default-height:var(--smart-box-height);--smart-gauge-track-border:var(--smart-border);--smart-gauge-track-background:var(--smart-background);--smart-gauge-needle-background:var(--smart-primary);--smart-gauge-label-fill-state:initial;--smart-gauge-label-stroke:initial;--smart-grid-default-width:800px;--smart-grid-default-height:400px;--smart-grid-footer-height:var(--smart-bar-height);--smart-grid-header-height:var(--smart-bar-height);--smart-grid-group-header-height:var(--smart-bar-height);--smart-grid-row-height:30px;--smart-grid-column-header-height:var(--smart-bar-height);--smart-grid-filter-footer-height:var(--smart-bar-height);--smart-grid-aggregate-footer-height:var(--smart-bar-height);--smart-grid-header-background-freeze:var(--smart-surface);--smart-grid-header-color-freeze:var(--smart-surface-color);--smart-grid-column-menu-width:200px;--smart-grid-column-menu-height:auto;--smart-grid-column-buttons-width:23px;--smart-grid-cell-color-freeze:var(--smart-surface-color);--smart-grid-cell-background-freeze:var(--smart-surface);--smart-grid-cell-color-delete:#333;--smart-grid-cell-background-delete:#FFDCDC;--smart-grid-cell-color-update:#333;--smart-grid-cell-background-update:#D7F9C7;--smart-grid-cell-color-add:#333;--smart-grid-cell-background-add:#FED59B;--smart-grid-cell-color-unbound:var(--smart-surface-color);--smart-grid-cell-background-unbound:var(--smart-surface);--smart-grid-cell-color-sort:var(--smart-surface-color);--smart-grid-cell-background-sort:#FEF3dd;--smart-grid-cell-color-filter:var(--smart-surface-color);--smart-grid-cell-background-filter:#E8F2DB;--smart-grid-view-bar-background:#FCFCFC;--smart-grid-group-row-vertical-offset:5;--smart-grid-group-row-horizontal-offset:1;--smart-grid-template-columns:none;--smart-grid-column-gap:0px;--smart-grid-row-gap:0px;--smart-grid-freeze-splitter-size:1px;--smart-grid-resize-line-size:1px;--smart-grid-layout-col-gap:10px;--smart-grid-layout-row-gap:10px;--smart-grid-layout-width:100%;--smart-grid-layout-rows:none;--smart-grid-panel-default-width:450px;--smart-grid-panel-default-height:auto;--smart-grid-panel-padding:10px;--smart-grid-panel-vertical-offset:10px;--smart-grid-panel-item-height:30px;--smart-column-panel-drop-down-height:350px;--smart-multi-column-filter-panel-template-columns:15px 60px 2fr 3fr 3fr;--smart-formatting-panel-default-width:600px;--smart-formatting-panel-row-height:30px;--smart-formatting-panel-add-new-button-size:40px;--smart-formatting-panel-popup-width:300px;--smart-formatting-panel-color-box-height:20px;--smart-kanban-default-width:1200px;--smart-kanban-default-height:500px;--smart-kanban-header-size:35px;--smart-kanban-task-min-width:150px;--smart-kanban-task-min-height:80px;--smart-kanban-text-max-height:200px;--smart-kanban-user-icon-size:30px;--smart-kanban-user-list-width:150px;--smart-kanban-user-list-max-height:500px;--smart-kanban-comments-list-width:350px;--smart-kanban-comments-list-height:auto;--smart-kanban-new-comment-height:50px;--smart-kanban-new-comment-height-expanded:175px;--smart-kanban-send-button-height:30px;--smart-kanban-color-band-width:3px;--smart-kanban-add-new-column-width:1fr;--smart-list-box-default-width:var(--smart-editor-width);--smart-list-box-default-height:var(--smart-editor-width);--smart-list-item-group-header-text-transform:uppercase;--smart-list-item-horizontal-offset:3px;--smart-list-item-vertical-offset:3px;--smart-list-item-height:36px;--smart-list-item-check-box-radius:2px;--smart-list-item-label-padding:0;--smart-list-item-label-border-radius:0;--smart-list-item-padding:9px 12px;--smart-loader-size:var(--smart-editor-height);--smart-led-default-width:var(--smart-editor-height);--smart-led-default-height:var(--smart-editor-height);--smart-list-menu-default-width:var(--smart-box-width);--smart-list-menu-default-height:var(--smart-box-height);--smart-list-menu-filter-input-vertical-offset:5px;--smart-list-menu-filter-input-horizontal-offset:5px;--smart-masked-text-box-default-width:var(--smart-editor-width);--smart-masked-text-box-default-height:var(--smart-editor-height);--smart-menu-default-width:var(--smart-bar-width);--smart-menu-default-height:var(--smart-bar-height);--smart-menu-vertical-default-width:calc(var(--smart-bar-width) / 2);--smart-menu-vertical-default-height:var(--smart-bar-width);--smart-menu-scroll-button-size:calc(var(--smart-bar-height) / 1.5);--smart-multiline-text-box-default-width:var(--smart-editor-width);--smart-multiline-text-box-default-height:calc(10 * var(--smart-editor-height));--smart-multi-split-button-default-width:var(--smart-editor-width);--smart-multi-split-button-default-height:var(--smart-editor-height);--smart-number-format-panel-selected-format-width:1fr;--smart-number-format-panel-apply-button-width:125px;--smart-number-format-panel-header-holder-offset:10px;--smart-number-format-panel-border-size:1px;--smart-number-format-panel-border-color:#ccc;--smart-number-format-panel-border-radius:4px;--smart-number-format-panel-sample-container-vertical-offset:15px;--smart-number-format-panel-sample-container-horizontal-offset:5px;--smart-number-format-panel-formats-list-margin-top:15px;--smart-number-format-panel-formats-list-max-height:400px;--smart-number-format-panel-formats-item-padding:12px;--smart-number-format-panel-selected-format-padding-left:5px;--smart-number-format-panel-selected-format-padding-top:3px;--smart-number-format-panel-selected-format-padding-bottom:3px;--smart-number-format-panel-header-input-width:100%;--smart-number-format-panel-formats-item-left-padding:10px;--smart-number-format-panel-formats-item-hover-background:#f1f1f1;--smart-number-format-panel-formats-item-example-format-color:#777;--smart-numeric-text-box-default-width:var(--smart-editor-width);--smart-numeric-text-box-default-height:var(--smart-editor-height);--smart-numeric-text-box-default-radix-display-width:12%;--smart-numeric-text-box-default-unit-display-width:var(--smart-editor-addon-width);--smart-numeric-text-box-text-align:right;--smart-path-default-width:var(--smart-editor-width);--smart-path-default-height:var(--smart-editor-height);--smart-path-drop-down-width:auto;--smart-path-drop-down-height:auto;--smart-path-button-gap:5px;--smart-path-text-align:start;--smart-power-button-default-width:var(--smart-editor-height);--smart-power-button-default-height:var(--smart-editor-height);--smart-progress-bar-default-width:var(--smart-editor-width);--smart-progress-bar-default-height:var(--smart-editor-height);--smart-circular-progress-bar-default-size:var(--smart-editor-width);--smart-circular-progress-bar-fill-size:20%;--smart-query-builder-default-width:auto;--smart-query-builder-default-height:auto;--smart-query-builder-min-width:100px;--smart-query-builder-content-padding:5px;--smart-query-builder-editor-width:125px;--smart-radio-button-default-size:calc(1px + 1/2 * var(--smart-editor-height));--smart-ribbon-tab-height:125px;--smart-ribbon-collapsed-tab-height:50px;--smart-ribbon-border-color:var(--smart-border);--smart-ribbon-tab-header-width:100px;--smart-ribbon-tab-padding:0px;--smart-ribbon-group-items-padding:0 10px;--smart-ribbon-tab-header-height:32px;--smart-ribbon-header-padding:0px;--smart-sortable-handle-size:25px;--smart-splitter-default-width:var(--smart-box-width);--smart-splitter-default-height:var(--smart-box-height);--smart-splitter-bar-size:10px;--smart-splitter-bar-fit-size:100%;--smart-splitter-item-padding:0;--smart-splitter-item-content-padding:0;--smart-splitter-item-size:auto;--smart-switch-button-default-width:calc(var(--smart-editor-height) + 10px);--smart-switch-button-default-height:var(--smart-editor-height);--smart-switch-button-thumb-size:calc(var(--smart-switch-button-default-height) - 8px);--smart-slider-default-width:var(--smart-editor-width);--smart-slider-default-height:35px;--smart-slider-track-size:1px;--smart-slider-thumb-width:20px;--smart-slider-thumb-height:20px;--smart-slider-tooltip-width:60px;--smart-slider-tooltip-height:30px;--smart-slider-spin-button-width:30px;--smart-slider-spin-button-height:30px;--smart-slider-tick-size:10px;--smart-slider-minor-tick-size:5px;--smart-slider-thumb-border-top-right-radius:15px;--smart-slider-thumb-border-top-left-radius:15px;--smart-slider-thumb-border-bottom-left-radius:15px;--smart-slider-thumb-border-bottom-right-radius:15px;--smart-scroll-button-size:16px;--smart-scroll-bar-size:18px;--smart-scroll-bar-default-width:var(--smart-editor-width);--smart-scroll-bar-default-height:var(--smart-scroll-bar-size);--smart-scroll-bar-background:#F1F1F1;--smart-scroll-bar-track-background:var(--smart-scroll-bar-background);--smart-scroll-bar-border:#F1F1F1;--smart-scroll-bar-thumb-border-top-right-radius:0px;--smart-scroll-bar-thumb-border-top-left-radius:0px;--smart-scroll-bar-thumb-border-bottom-left-radius:0px;--smart-scroll-bar-thumb-border-bottom-right-radius:0px;--smart-scroll-bar-thumb-background:#C1C1C1;--smart-scroll-bar-thumb-border:transparent;--smart-scroll-bar-thumb-size:100%;--smart-scroll-bar-thumb-padding:1px;--smart-scroll-bar-thumb-background-hover:#A8A8A8;--smart-scroll-bar-thumb-border-hover:transparent;--smart-scroll-bar-thumb-background-active:#787878;--smart-scroll-bar-thumb-border-active:transparent;--smart-scroll-bar-button-background:#F1F1F1;--smart-scroll-bar-button-border:#F1F1F1;--smart-scroll-bar-button-color:#505050;--smart-scroll-bar-button-background-hover:#D2D2D2;--smart-scroll-bar-button-border-hover:#F1F1F1;--smart-scroll-bar-button-color-hover:#505050;--smart-scroll-bar-button-background-active:#787878;--smart-scroll-bar-button-border-active:#F1F1F1;--smart-scroll-bar-button-color-active:#fff;--smart-table-default-width:100%;--smart-table-default-height:auto;--smart-table-header-footer-height:56px;--smart-table-column-header-height:var(--smart-table-header-footer-height);--smart-table-row-height:48px;--smart-table-cell-padding:12px;--smart-table-row-detail-height:var(--smart-table-row-height);--smart-table-indent:30px;--smart-table-arrow-size:16px;--smart-table-arrow-margin:5px;--smart-table-group-name-display:unset;--smart-table-group-count-display:unset;--smart-pivot-table-cell-width:200px;--smart-pivot-table-secondary-group-width:calc(1.25 * var(--smart-pivot-table-cell-width));--smart-pivot-panel-width:300px;--smart-pivot-panel-default-height:800px;--smart-pivot-panel-tab-item-height:150px;--smart-pivot-panel-padding:10px;--smart-tank-default-width:var(--smart-editor-width);--smart-tank-default-height:calc(10 * var(--smart-editor-height));--smart-tank-scale-size:105px;--smart-tank-thumb-width:25px;--smart-tank-thumb-height:var(--smart-tank-thumb-width);--smart-tank-tooltip-width:80px;--smart-tank-tooltip-height:30px;--smart-tank-tick-size:10px;--smart-tank-minor-tick-size:5px;--smart-tank-minimum-track-size:6px;--smart-tabs-header-button-size:20px;--smart-tabs-animation-duration:0.5s;--smart-tabs-default-width:var(--smart-box-width);--smart-tabs-default-height:var(--smart-box-height);--smart-tabs-header-padding:0px;--smart-tabs-header-offset:0px;--smart-tab-item-padding:12px 16px;--smart-tab-item-offset:5px;--smart-tab-item-initial-offset:5px;--smart-tab-item-text-transform:uppercase;--smart-time-picker-default-width:var(--smart-editor-width);--smart-time-picker-default-height:calc(12 * var(--smart-editor-height));--smart-tooltip-arrow-width:6px;--smart-tooltip-arrow-color:var(--smart-secondary);--smart-tooltip-arrow-translate:0;--smart-tooltip-padding:4px 8px;--smart-tooltip-content-shadow:none;--smart-toast-item-icon:'';--smart-toast-container-default-width:var(--smart-bar-width);--smart-toast-header-height:20px;--smart-toast-info-background:var(--smart-info);--smart-toast-info-color:var(--smart-info-color);--smart-toast-warning-background:var(--smart-warning);--smart-toast-warning-color:var(--smart-warning-color);--smart-toast-error-background:var(--smart-error);--smart-toast-error-color:var(--smart-error-color);--smart-toast-success-background:var(--smart-success);--smart-toast-success-color:var(--smart-success-color);--smart-tree-default-width:var(--smart-box-width);--smart-tree-default-height:var(--smart-box-height);--smart-tree-scroll-button-size:20px;--smart-tree-lines-style:dashed;--smart-tree-indent:16px;--smart-tree-lines-color:var(--smart-border);--smart-tree-lines-width:1px;--smart-tree-item-label-height:36px;--smart-tree-item-padding:9px 12px;--smart-tree-item-vertical-offset:3px;--smart-tree-item-horizontal-offset:3px;--smart-text-box-default-width:var(--smart-editor-width);--smart-text-box-default-height:var(--smart-editor-height);--smart-validation-panel-description-width:20%;--smart-validation-panel-content-width:80%;--smart-validation-panel-appearance-vertical-offset:10px;--smart-validation-panel-appearance-reset-button-left-offset:5px;--smart-validation-panel-appearance-textbox-vertical-offset:5px;--smart-validation-panel-appearance-reset-button-color:var(--smart-primary);--smart-validation-panel-criteria-row-margin-top:10px;--smart-validation-panel-criteria-container-vertical-offset:10px;--smart-validation-panel-criteria-container-input-width:180px;--smart-validation-panel-criteria-container-input-horizontal-offset:2px;--smart-validation-panel-criteria-container-textbox-width:80px;--smart-validation-panel-criteria-container-textbox-horizontal-offset:2px;--smart-validation-panel-criteria-container-text-between-inputs-offset:5px;--smart-validation-panel-invalid-data-vertical-offset:10px;--smart-validation-panel-footer-button-color:#188038;--smart-validation-panel-footer-button-background:white;--smart-validation-panel-footer-vertical-offset:20px;--smart-validation-panel-footer-button-horizontal-offset:5px;--smart-validation-panel-footer-remove-validation-button-color:var(--smart-validation-panel-footer-button-color);--smart-validation-panel-footer-cancel-button-color:var(--smart-validation-panel-footer-button-color);--smart-validation-panel-footer-save-button-color:var(--smart-validation-panel-footer-button-background);--smart-validation-panel-footer-save-button-background:var(--smart-validation-panel-footer-button-color);--smart-password-text-box-default-width:var(--smart-editor-width);--smart-password-text-box-default-height:var(--smart-editor-height);--smart-pager-default-width:var(--smart-bar-width);--smart-pager-default-height:var(--smart-bar-height);--smart-pager-button-width:'auto';--smart-pager-button-height:32px;--smart-pager-page-size-selector-width:60px;--smart-pager-page-index-selector-width:32px;--smart-pager-page-index-selector-height:32px;--smart-pager-page-index-ellipsis-selector-width:32px;--smart-pager-page-index-ellipsis-selector-height:32px;--smart-pager-page-index-selector-horizontal-offset:8px;--smart-pager-padding:2px;--smart-pager-input-width:50px;--smart-scroll-viewer-min-width:none;--smart-scroll-viewer-max-width:none;--smart-scroll-viewer-min-height:none;--smart-scroll-viewer-max-height:none;--smart-scheduler-default-height:auto;--smart-scheduler-default-width:auto;--smart-scheduler-item-size:auto;--smart-scheduler-timeline-cell-width:auto;--smart-scheduler-timeline-cell-height:50px;--smart-scheduler-timeline-cell-min-width:70px;--smart-scheduler-timeline-cell-min-height:35px;--smart-scheduler-header-height:50px;--smart-scheduler-header-today-button-size:70px;--smart-scheduler-header-date-button-max-size:auto;--smart-scheduler-header-navigation-button-size:30px;--smart-scheduler-footer-height:var(--smart-scheduler-header-height);--smart-scheduler-header-box-shadow:initial;--smart-scheduler-header-padding:10px;--smart-scheduler-timeline-header-cell-padding:5px;--smart-scheduler-header-menu-button-size:auto;--smart-scheduler-timeline-weekend-color:var(--smart-background);--smart-scheduler-timeline-nonworking-color:var(--smart-gantt-chart-timeline-nonworking-color);--smart-scheduler-timeline-all-day-label-font-weight:600;--smart-scheduler-timeline-header-horizontal-cells-size:40px;--smart-scheduler-timeline-header-horizontal-label-padding:initial;--smart-scheduler-timeline-header-horizontal-details-size:var(--smart-scheduler-timeline-header-horizontal-cells-size);--smart-scheduler-timeline-header-horizontal-group-size:var(--smart-scheduler-timeline-header-horizontal-cells-size);--smart-scheduler-timeline-header-vertical-cells-size:100px;--smart-scheduler-timeline-header-vertical-label-padding:initial;--smart-scheduler-timeline-header-vertical-details-size:var(--smart-scheduler-timeline-header-vertical-cells-size);--smart-scheduler-timeline-header-vertical-group-size:var(--smart-scheduler-timeline-header-vertical-cells-size);--smart-scheduler-timeline-header-all-day-cells-size:75px;--smart-scheduler-timeline-group-separator-background:var(--smart-outline);--smart-scheduler-timeline-group-separator-size:var(--smart-border-width);--smart-scheduler-timeline-group-white-space:nowrap;--smart-scheduler-timeline-group-header-offset:calc(-50% - var(--smart-scheduler-timeline-header-cell-padding));--smart-scheduler-current-time-indicator-background:var(--smart-primary);--smart-scheduler-current-time-indicator-size:1px;--smart-scheduler-current-time-indicator-header-size:2px;--smart-scheduler-current-time-indicator-arrow-size:7px;--smart-scheduler-shader-background:rgba(var(--smart-border-rgb), .5);--smart-scheduler-view-background:transparent;--smart-scheduler-view-line-size:var(--smart-border-width);--smart-scheduler-view-horizontal-line-color:var(--smart-border);--smart-scheduler-view-vertical-line-color:var(--smart-border);--smart-scheduler-day-week-view-vertical-line-size:var(--smart-scheduler-view-line-size);--smart-scheduler-day-week-view-vertical-line-color:var(--smart-border);--smart-scheduler-day-week-view-hour-size:var(--smart-scheduler-view-line-size);--smart-scheduler-day-week-view-hour-color:var(--smart-border);--smart-scheduler-time-ruler-tick-size:10px;--smart-scheduler-event-background-rgb:52,121,186;--smart-scheduler-event-background:rgba(var(--smart-scheduler-event-background-rgb), 1);--smart-scheduler-legend-item-background:var(--smart-scheduler-event-background);--smart-scheduler-event-color:var(--smart-primary-color);--smart-scheduler-event-focus:rgba(var(--smart-scheduler-event-background-rgb), .9);--smart-scheduler-event-color-focus:var(--smart-scheduler-event-color);--smart-scheduler-event-hover:rgba(var(--smart-scheduler-event-background-rgb), .8);--smart-scheduler-event-color-hover:var(--smart-scheduler-event-color);--smart-scheduler-event-padding-agenda:5px;--smart-scheduler-event-padding-basic:2px;--smart-scheduler-event-padding-timeline:2px;--smart-scheduler-event-padding-all-day:2px;--smart-scheduler-event-content-padding:5px;--smart-scheduler-event-label-font-size:var(--smart-font-size);--smart-scheduler-event-time-font-size:calc(var(--smart-font-size) - 3px);--smart-scheduler-event-time-font-size-agenda:var(--smart-font-size);--smart-scheduler-event-time-font-weight-agenda:600;--smart-scheduler-event-time-opacity-agenda:1;--smart-scheduler-event-time-opacity:0.7;--smart-scheduler-event-icon-size:30px;--smart-scheduler-event-size:30px;--smart-scheduler-event-size-basic:var(--smart-scheduler-event-size);--smart-scheduler-event-size-timeline:60px;--smart-scheduler-event-collector-size:24px;--smart-scheduler-event-collector-mobile-size:28px;--smart-scheduler-event-collector-background:rgba(var(--smart-primary-rgb), 1);--smart-scheduler-event-collector-color:var(--smart-primary-color);--smart-scheduler-event-collector-focus:rgba(var(--smart-primary-rgb), .9);--smart-scheduler-event-collector-color-focus:var(--smart-scheduler-event-collector-color);--smart-scheduler-event-collector-hover:rgba(var(--smart-primary-rgb), .8);--smart-scheduler-event-collector-color-hover:var(--smart-scheduler-event-collector-color);--smart-scheduler-month-view-number-size:24px;--smart-scheduler-status-size:7px;--smart-scheduler-status-padding:5px;--smart-scheduler-status-background:transparent;--smart-scheduler-status-free-background:white;--smart-scheduler-status-tentative-background:0 -244rem/5rem 5rem linear-gradient(45deg, #fd7e14 25%, rgba(0, 0, 0, .2) 25%, rgba(0, 0, 0, .2) 50%, #fd7e14 50%, #fd7e14 75%, rgba(0, 0, 0, .2) 75%, rgba(0, 0, 0, .2));--smart-scheduler-status-busy-background:#dc3545;--smart-scheduler-status-out-of-office-background:#00a9e6;--smart-scheduler-cell-feedback-background:transparent;--smart-scheduler-event-resize-indicator-size:var(--smart-gantt-chart-timeline-task-resize-indicator-width);--smart-scheduler-event-resize-indicator-color:var(--smart-gantt-chart-timeline-task-resize-indicator-color);--smart-scheduler-event-resize-indicator-border-color:var(--smart-gantt-chart-timeline-task-resize-indicator-border-color);--smart-scheduler-restricted-background:0 -245rem/12px 12px linear-gradient(135deg, rgba(255, 0, 0, .15) 25%, transparent 25%, transparent 50%, rgba(255, 0, 0, .15) 50%, rgba(255, 0, 0, .15) 75%, transparent 75%, transparent);--smart-scheduler-event-item-size:50px;--smart-scheduler-event-button-size:30px;--smart-scheduler-event-border-radius:initial;--smart-scheduler-event-collector-border-radius:20px;--smart-scheduler-context-menu-max-height:calc(4 * var(--smart-scheduler-event-item-size));--smart-scheduler-context-menu-max-width:300px;--smart-scheduler-window-header-height:var(--smart-gantt-chart-popup-window-header-height);--smart-scheduler-window-footer-height:var(--smart-gantt-chart-popup-window-footer-height);--smart-scheduler-event-label-font-weight:300;--smart-scheduler-event-time-font-weight:300;--smart-scheduler-event-item-label-font-weight:600;--smart-scheduler-toast-default-width:400px;--smart-scheduler-toast-default-height:50px;--smart-scheduler-shortcut-size:28px;--smart-window-default-height:var(--smart-box-height);--smart-window-default-width:var(--smart-box-width);--smart-window-header-height:var(--smart-bar-height);--smart-window-footer-height:var(--smart-bar-height);--smart-window-min-width:250px;--smart-window-header-padding:10px;--smart-window-footer-padding:6.5px;--smart-window-header-button-size:24px;--smart-window-header-icon-size:var(--smart-font-size);--smart-window-header-background:var(--smart-surface);--smart-window-footer-background:var(--smart-surface);--smart-window-footer-button-width:100px;--smart-window-content-padding:10px;--smart-elevation-24:0 24px 38px 3px rgba(0, 0, 0, .14),0 9px 46px 8px rgba(0, 0, 0, .12),0 11px 15px 0 rgba(0, 0, 0, .2);--smart-elevation-16:0 16px 24px 2px rgba(0, 0, 0, .14),0 6px 30px 5px rgba(0, 0, 0, .12),0 8px 10px 0 rgba(0, 0, 0, .2);--smart-elevation-12:0 12px 17px 2px rgba(0, 0, 0, .14),0 5px 22px 4px rgba(0, 0, 0, .12),0 7px 8px 0 rgba(0, 0, 0, .2);--smart-elevation-8:0 8px 10px 1px rgba(0, 0, 0, .14),0 3px 14px 3px rgba(0, 0, 0, .12),0 4px 15px 0 rgba(0, 0, 0, .2);--smart-elevation-6:0 6px 10px 0 rgba(0, 0, 0, .14),0 1px 18px 0 rgba(0, 0, 0, .12),0 3px 5px 0 rgba(0, 0, 0, .2);--smart-elevation-4:0 2px 4px 0 rgba(0, 0, 0, .14),0 4px 5px 0 rgba(0, 0, 0, .12),0 1px 10px 0 rgba(0, 0, 0, .2);--smart-elevation-2:0 3px 1px -2px rgba(0, 0, 0, .2),0 2px 2px 0 rgba(0, 0, 0, .14),0 1px 5px 0 rgba(0, 0, 0, .12);--smart-elevation-1:0 0 2px 0 rgba(0, 0, 0, .14),0 2px 2px 0 rgba(0, 0, 0, .12),0 1px 3px 0 rgba(0, 0, 0, .2);--smart-elevation-0:none;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--pseudo-element-height:0}.smart-ui-component[theme=dark],body[theme=dark]{--smart-primary-rgb:122,202,255;--smart-primary:rgb(var(--smart-primary-rgb));--smart-primary-color:#242424;--smart-background:#242424;--smart-background-color:#fff;--smart-surface:#333;--smart-surface-color:#fff;--smart-disabled:#535353;--smart-disabled-color:#fff;--smart-border:#464646;--smart-editor-selection:var(--smart-primary);--smart-editor-selection-color:var(--smart-primary-color);--smart-ui-state-hover:#444;--smart-ui-state-color-hover:#fff;--smart-ui-state-border-hover:var(--smart-ui-state-hover);--smart-ui-state-active:var(--smart-primary);--smart-ui-state-color-active:var(--smart-primary-color);--smart-ui-state-border-active:var(--smart-primary);--smart-ui-state-focus:#555;--smart-ui-state-color-focus:#fff;--smart-ui-state-border-focus:#555;--smart-ui-state-selected:rgba(var(--smart-primary-rgb), .1);--smart-ui-state-color-selected:var(--smart-primary);--smart-ui-state-border-selected:rgba(var(--smart-primary-rgb), .1);--smart-alternation-index0-color:var(--smart-surface-color);--smart-alternation-index0-border:var(--smart-surface);--smart-alternation-index0-background:var(--smart-surface);--smart-alternation-index1-color:#111;--smart-alternation-index1-border:#9BBB59;--smart-alternation-index1-background:#9BBB59;--smart-alternation-index2-color:#fff;--smart-alternation-index2-border:#FC3752;--smart-alternation-index2-background:#FC3752;--smart-grid-cell-background-freeze:#242424;--smart-grid-cell-color-freeze:#fff;--smart-scroll-bar-background:#3E3E42;--smart-scroll-bar-track-background:var(--smart-scroll-bar-background);--smart-scroll-bar-border:#3E3E42;--smart-scroll-bar-thumb-background:#686868;--smart-scroll-bar-thumb-border:#686868;--smart-scroll-bar-thumb-background-hover:#9E9E9E;--smart-scroll-bar-thumb-border-hover:#9E9E9E;--smart-scroll-bar-thumb-background-active:#444;--smart-scroll-bar-thumb-border-active:#444;--smart-scroll-bar-button-background:#3E3E42;--smart-scroll-bar-button-border:#3E3E42;--smart-scroll-bar-button-color:#999999;--smart-scroll-bar-button-background-hover:#3E3E42;--smart-scroll-bar-button-border-hover:#3E3E42;--smart-scroll-bar-button-color-hover:var(--smart-primary);--smart-scroll-bar-button-background-active:#3E3E42;--smart-scroll-bar-button-border-active:#3E3E42;--smart-scroll-bar-button-color-active:var(--smart-primary);--smart-gantt-chart-timeline-nonworking-color:#3E3E42;--smart-scheduler-timeline-weekend-color:var(--smart-background);--smart-scheduler-timeline-nonworking-color:var(--smart-gantt-chart-timeline-nonworking-color);--smart-scheduler-event-background-rgb:103,176,245;--smart-scheduler-event-background:rgba(var(--smart-scheduler-event-background-rgb), 1);--smart-scheduler-event-color:var(--smart-primary-color);--smart-scheduler-event-focus:rgba(var(--smart-scheduler-event-background-rgb), .9);--smart-scheduler-event-color-focus:var(--smart-scheduler-event-color);--smart-scheduler-event-hover:rgba(var(--smart-scheduler-event-background-rgb), .8);--smart-scheduler-event-color-hover:var(--smart-scheduler-event-color);--smart-scheduler-event-collector-background:rgba(var(--smart-primary-rgb), 1);--smart-scheduler-event-collector-color:var(--smart-primary-color);--smart-scheduler-event-collector-focus:rgba(var(--smart-primary-rgb), .9);--smart-scheduler-event-collector-color-focus:var(--smart-scheduler-event-collector-color);--smart-scheduler-event-collector-hover:rgba(var(--smart-primary-rgb), .8);--smart-scheduler-event-collector-color-hover:var(--smart-scheduler-event-collector-color);--smart-scheduler-status-free-background:white;--smart-scheduler-status-tentative-background:0 -244rem/5rem 5rem linear-gradient(45deg, #fd7e14 25%, rgba(0, 0, 0, .2) 25%, rgba(0, 0, 0, .2) 50%, #fd7e14 50%, #fd7e14 75%, rgba(0, 0, 0, .2) 75%, rgba(0, 0, 0, .2));--smart-scheduler-status-busy-background:#dc3545;--smart-scheduler-status-out-of-office-background:#00a9e6;--smart-scheduler-event-resize-indicator-color:var(--smart-gantt-chart-timeline-task-resize-indicator-color);--smart-scheduler-event-resize-indicator-border-color:var(--smart-gantt-chart-timeline-task-resize-indicator-border-color);--smart-scheduler-restricted-background:0 -245rem/12px 12px linear-gradient(135deg, rgba(255, 0, 0, .15) 25%, transparent 25%, transparent 50%, rgba(255, 0, 0, .15) 50%, rgba(255, 0, 0, .15) 75%, transparent 75%, transparent)}
smart-accordion,smart-alert-window,smart-array,smart-breadcrumb,smart-button,smart-calendar,smart-card,smart-card-view,smart-carousel,smart-check-box,smart-circular-progress-bar,smart-color-panel,smart-color-picker,smart-column-panel,smart-combo-box,smart-date-time-picker,smart-dialog-window,smart-docking-layout,smart-drop-down-button,smart-drop-down-list,smart-filter-panel,smart-gantt-chart,smart-gauge,smart-grid,smart-group-panel,smart-kanban,smart-layout,smart-led,smart-list-box,smart-list-menu,smart-masked-text-box,smart-menu,smart-multi-column-filter-panel,smart-multi-split-button,smart-multiline-prompt-window,smart-multiline-text-box,smart-numeric-text-box,smart-pager,smart-password-text-box,smart-path,smart-pivot-panel,smart-power-button,smart-progress-bar,smart-progress-window,smart-prompt-window,smart-query-builder,smart-radio-button,smart-repeat-button,smart-scroll-bar,smart-sheduler,smart-slider,smart-sort-panel,smart-splitter,smart-switch-button,smart-tabs,smart-tabs-window,smart-tank,smart-text-box,smart-time-picker,smart-toggle-button,smart-tooltip,smart-tree,smart-wait-window,smart-window{padding:0;margin:0;overflow:hidden;display:block}.smart-element{outline:0;box-sizing:border-box;font-family:var(--smart-font-family);font-size:var(--smart-font-size);font-weight:var(--smart-font-weight);-webkit-tap-highlight-color:transparent;background:var(--smart-background);color:var(--smart-background-color)}.smart-root{width:100%;height:100%;padding:0;margin:0;box-sizing:border-box}smart-alert-window[disabled],smart-breadcrumb[disabled],smart-button-group[disabled],smart-button[disabled],smart-calendar[disabled],smart-card-view[disabled],smart-card[disabled],smart-check-box[disabled],smart-check-input[disabled],smart-chip[disabled],smart-circular-progress-bar[disabled],smart-color-input[disabled],smart-color-panel[disabled],smart-color-picker[disabled],smart-column-panel[disabled],smart-combo-box[disabled],smart-date-input[disabled],smart-date-range-input[disabled],smart-date-time-picker[disabled],smart-dialog-window[disabled],smart-docking-layout[disabled],smart-drop-down-button[disabled],smart-drop-down-list[disabled],smart-editor[disabled],smart-filter-panel[disabled],smart-formatting-panel[disabled],smart-gantt-chart[disabled],smart-gantt[disabled],smart-gauge[disabled],smart-grid[disabled],smart-group-panel[disabled],smart-input[disabled],smart-kanban[disabled],smart-layout[disabled],smart-led[disabled],smart-list-box[disabled],smart-list-item[disabled],smart-list-menu[disabled],smart-menu-item[disabled],smart-menu-items-group[disabled],smart-menu[disabled],smart-multi-column-filter-panel[disabled],smart-multi-combo-input[disabled],smart-multi-input[disabled],smart-multi-split-button[disabled],smart-multiline-prompt-window[disabled],smart-multiline-text-box[disabled],smart-notification-panel[disabled],smart-number-input[disabled],smart-numeric-text-box[disabled],smart-pager .smart-pager-button[disabled],smart-pager[disabled],smart-password-input[disabled],smart-password-text-box[disabled],smart-path[disabled],smart-pivot-table[disabled],smart-power-button[disabled],smart-progress-bar[disabled],smart-progress-window[disabled],smart-prompt-window[disabled],smart-query-builder[disabled],smart-radio-button[disabled],smart-repeat-button[disabled],smart-scheduler[disabled],smart-scroll-bar[disabled],smart-slider[disabled],smart-sort-panel[disabled],smart-splitter[disabled],smart-switch-button[disabled],smart-tab[disabled],smart-table[disabled],smart-tabs[disabled],smart-tank[disabled],smart-text-area[disabled],smart-text-box[disabled],smart-time-input[disabled],smart-time-picker[disabled],smart-toggle-button[disabled],smart-tree-item[disabled]>.smart-tree-item-label-container,smart-tree-items-group[disabled]>.smart-tree-item-label-container,smart-tree[disabled],smart-wait-window[disabled],smart-window[disabled]{opacity:.55;cursor:default;pointer-events:none;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.smart-window,smart-accordion,smart-button,smart-button-group,smart-calendar,smart-card-view,smart-color-panel,smart-column-panel,smart-date-time-picker,smart-docking-layout,smart-formatting-panel,smart-gantt-chart,smart-grid,smart-group-panel,smart-kanban,smart-layout,smart-list-box,smart-list-menu,smart-menu,smart-multi-column-filter-panel,smart-multiline-text-box,smart-pager,smart-progress-bar,smart-scheduler,smart-scroll-viewer,smart-sort-panel,smart-splitter,smart-tank,smart-text-box,smart-time-picker,smart-tree{border-color:var(--smart-border);border-top-left-radius:var(--smart-border-top-left-radius);border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);border-width:var(--smart-border-width);border-style:solid}smart-card-view.smart-element,smart-color-panel.smart-element,smart-color-picker.smart-element,smart-combo-box.smart-element,smart-date-time-picker.smart-element,smart-drop-down-button.smart-element,smart-drop-down-list.smart-element,smart-filter-panel.smart-element,smart-kanban.smart-element,smart-masked-text-box.smart-element,smart-menu.smart-element,smart-multi-split-button.smart-element,smart-multiline-text-box.smart-element,smart-numeric-text-box.smart-element,smart-pager.smart-element,smart-password-text-box.smart-element,smart-path.smart-element,smart-query-builder.smart-element,smart-slider.smart-element,smart-switch-button.smart-element,smart-tabs.smart-element,smart-tank.smart-element,smart-text-box.smart-element{overflow:visible}.smart-disabled{opacity:.55;cursor:default;pointer-events:none;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.smart-element input::selection,.smart-input::selection{background:var(--smart-editor-selection);color:var(--smart-editor-selection-color)}@media (hover:hover){.smart-element[theme=dark],body[theme=dark]{scrollbar-color:var(--smart-scroll-bar-thumb-background) var(--smart-scroll-bar-track-background)}body[theme=dark] ::-webkit-scrollbar,body[theme=dark]::-webkit-scrollbar{background-color:var(--smart-background)}body[theme=dark] ::-webkit-scrollbar-track,body[theme=dark] ::-webkit-scrollbar-track-piece,body[theme=dark]::-webkit-scrollbar-track,body[theme=dark]::-webkit-scrollbar-track-piece{background-color:var(--smart-scroll-bar-track-background)}body[theme=dark] ::-webkit-scrollbar-thumb,body[theme=dark]::-webkit-scrollbar-thumb{border:1px solid var(--smart-scroll-bar-thumb-border);background-color:var(--smart-scroll-bar-thumb-background)}body[theme=dark] ::-webkit-scrollbar-thumb:hover,body[theme=dark]::-webkit-scrollbar-thumb:hover{border-color:var(--smart-scroll-bar-thumb-border-hover);background-color:var(--smart-scroll-bar-thumb-background-hover)}body[theme=dark] ::-webkit-scrollbar-button,body[theme=dark]::-webkit-scrollbar-button{background-color:var(--smart-scroll-bar-button-background)}}
smart-accordion{width:var(--smart-accordion-default-width);height:var(--smart-accordion-default-height);border:0;display:block}smart-accordion.smart-element{background:0 0}smart-accordion:not(.smart-element){visibility:hidden}smart-accordion>.smart-container{overflow:auto;touch-action:none;padding:10px}smart-accordion.smart-container{overflow:auto;touch-action:none}smart-accordion .smart-reordering *{user-select:none;-webkit-user-select:none;cursor:move}smart-accordion .smart-empty:after{content:"No accordion items.";display:flex;justify-content:center;align-items:center;width:100%;height:100%}smart-accordion .smart-accordion.smart-container{padding:10px}smart-accordion smart-accordion-item{font-size:inherit;font-family:inherit;display:block;overflow:hidden;box-sizing:border-box;box-shadow:var(--smart-elevation-4);width:100%;border:0;border-top-left-radius:var(--smart-item-border-top-left-radius);border-top-right-radius:var(--smart-item-border-top-right-radius);border-bottom-left-radius:var(--smart-item-border-bottom-left-radius);border-bottom-right-radius:var(--smart-item-border-bottom-right-radius)}smart-accordion smart-accordion-item:first-child{border-top-left-radius:var(--smart-first-item-border-top-left-radius,--smart-item-border-top-left-radius);border-top-right-radius:var(--smart-first-item-border-top-right-radius,--smart-item-border-top-right-radius);border-bottom-left-radius:var(--smart-first-item-border-bottom-left-radius,--smart-item-border-bottom-left-radius);border-bottom-right-radius:var(--smart-first-item-border-bottom-right-radius,--smart-item-border-bottom-right-radius)}smart-accordion smart-accordion-item:last-child{border-top-left-radius:var(--smart-last-item-border-top-left-radius,--smart-item-border-top-left-radius);border-top-right-radius:var(--smart-last-item-border-top-right-radius,--smart-item-border-top-right-radius);border-bottom-left-radius:var(--smart-last-item-border-bottom-left-radius,--smart-item-border-bottom-left-radius);border-bottom-right-radius:var(--smart-last-item-border-bottom-right-radius,--smart-item-border-bottom-right-radius)}smart-accordion smart-accordion-item>.smart-container{border-bottom:var(--smart-border-width) solid var(--smart-border)}smart-accordion smart-accordion-item .smart-ripple{background-color:var(--smart-background-color);opacity:.5}smart-accordion smart-accordion-item .smart-accordion-item-header{width:100%;cursor:pointer;color:var(--smart-surface-color);background:var(--smart-surface);border-color:var(--smart-border);font-family:inherit;font-size:inherit;box-sizing:border-box;padding:0 24px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;display:flex;align-items:center;position:relative;height:var(--smart-accordion-item-header-height)}smart-accordion smart-accordion-item .smart-accordion-item-header>.smart-arrow{width:var(--smart-editor-addon-width);display:flex;justify-content:center;align-items:center;order:2}smart-accordion smart-accordion-item .smart-accordion-item-header>.smart-arrow:after{vertical-align:middle;content:var(--smart-icon-arrow-up-alt);transform:rotate(180deg);width:var(--smart-editor-addon-width);height:100%;margin-left:2px;font-family:var(--smart-font-family-icon);font-style:normal;font-weight:400;font-size:12px;text-decoration:inherit;font-variant:normal;text-transform:none;display:flex;justify-content:center;align-items:center;color:var(--smart-ui-state);transform-origin:center}smart-accordion smart-accordion-item .smart-accordion-item-header>.smart-label{margin-left:5px;width:calc(100% - var(--smart-editor-addon-width));display:block;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}smart-accordion smart-accordion-item .smart-accordion-item-content{overflow-y:auto;height:var(--smart-accordion-expanded-content-height);padding:0 24px;color:var(--smart-background-color);background:var(--smart-background);width:100%;box-sizing:border-box;display:none}smart-accordion smart-accordion-item .smart-accordion-item-content .smart-content-container{width:100%;height:100%;box-sizing:border-box;min-height:5px;padding:10px}smart-accordion smart-accordion-item[expanded]:not(:last-child){margin-bottom:var(--smart-accordion-item-expanded-offset)}smart-accordion smart-accordion-item[expanded]:last-child:not(:first-child){margin-top:var(--smart-accordion-item-expanded-offset)}smart-accordion smart-accordion-item[expanded] .smart-accordion-item-header{color:var(--smart-ui-state-color-focus);background:var(--smart-ui-state-focus);border-color:var(--smart-ui-state-border-focus);border-bottom:var(--smart-border-width) solid var(--smart-border)}smart-accordion smart-accordion-item[expanded] .smart-accordion-item-header>.smart-arrow:after{transform:rotate(0);transform-origin:center}smart-accordion smart-accordion-item[expanded]>.smart-container>.smart-accordion-item-content{display:block}smart-accordion smart-accordion-item[hover] .smart-accordion-item-header{color:var(--smart-ui-state-color-hover);background:var(--smart-ui-state-hover);border-color:vaR(--smart-ui-state-border-hover)}smart-accordion smart-accordion-item[focused] .smart-accordion-item-header{color:var(--smart-ui-state-color-focus);background:var(--smart-ui-state-focus);border-color:vaR(--smart-ui-state-border-focus)}smart-accordion smart-accordion-item[focused] .smart-accordion-item-header>.smart-arrow{opacity:.6}smart-accordion smart-accordion-item[dragged]{-webkit-user-select:none;user-select:none;cursor:move}smart-accordion smart-accordion-item[dragged] .smart-accordion-item-header{cursor:move}smart-accordion smart-accordion-item[disabled]{cursor:default;opacity:1}smart-accordion smart-accordion-item[disabled] .smart-accordion-item-header{cursor:initial}smart-accordion[expand-mode=singleFitHeight] smart-accordion-item .smart-accordion-item-header{height:var(--smart-accordion-item-header-height)}smart-accordion[expand-mode=singleFitHeight] smart-accordion-item .smart-accordion-item-content{overflow-y:auto;height:var(--smart-accordion-expanded-content-height);padding:0 24px;color:var(--smart-background-color);background:var(--smart-background)}smart-accordion[expand-mode=multiple] smart-accordion-item .smart-accordion-item-content,smart-accordion[expand-mode=none] smart-accordion-item .smart-accordion-item-content,smart-accordion[expand-mode=single] smart-accordion-item .smart-accordion-item-content,smart-accordion[expand-mode=toggle] smart-accordion-item .smart-accordion-item-content{overflow-y:hidden;height:auto}smart-accordion[expand-mode=multiple].smart-container.smart-toggling,smart-accordion[expand-mode=multiple]>.smart-container.smart-toggling{padding:10px}smart-accordion[disabled],smart-accordion[disabled] smart-accordion-item .smart-accordion-item-header{cursor:default}smart-accordion:focus,smart-accordion:focus smart-accordion-item:focus{outline:0}smart-accordion.smart-no-arrow .smart-accordion-item-header>.smart-arrow,smart-accordion.smart-no-arrow .smart-accordion-item-header>.smart-arrow:after{visibility:hidden;width:0}smart-accordion.smart-arrow-right smart-accordion-item .smart-accordion-item-header>.smart-arrow{float:right}smart-accordion.smart-arrow-right smart-accordion-item .smart-accordion-item-header>.smart-arrow:after{content:var(--smart-icon-arrow-right)}smart-accordion.smart-arrow-right smart-accordion-item[expanded] .smart-accordion-item-header>.smart-arrow:after{content:var(--smart-icon-arrow-up-alt)}smart-accordion .smart-toggled-item .smart-accordion-item-content{overflow:hidden}smart-accordion:not([animation=none]){animation-duration:var(--smart-accordion-animation-duration)}smart-accordion:not([animation=none]) *{animation-duration:inherit}smart-accordion:not([animation=none])[expand-mode=singleFitHeight] smart-accordion-item.smart-toggled-item .smart-accordion-item-content{animation:smart-accordion-item-expand-animation-default-mode ease-out;animation-direction:reverse;display:block;animation-duration:inherit;animation-iteration-count:1}smart-accordion:not([animation=none])[expand-mode=singleFitHeight].smart-toggled-item smart-accordion-item[expanded] .smart-accordion-item-content{animation:smart-accordion-item-expand-animation-default-mode ease-in;animation-duration:inherit;animation-iteration-count:1}smart-accordion:not([animation=none])[expand-mode=multiple] smart-accordion-item.smart-toggled-item .smart-accordion-item-content,smart-accordion:not([animation=none])[expand-mode=none] smart-accordion-item.smart-toggled-item .smart-accordion-item-content,smart-accordion:not([animation=none])[expand-mode=single] smart-accordion-item.smart-toggled-item .smart-accordion-item-content,smart-accordion:not([animation=none])[expand-mode=toggle] smart-accordion-item.smart-toggled-item .smart-accordion-item-content{animation:smart-accordion-item-expand-animation ease-out;animation-direction:reverse;display:block;animation-duration:inherit;animation-iteration-count:1}smart-accordion:not([animation=none])[expand-mode=multiple] smart-accordion-item[expanded].smart-toggled-item .smart-accordion-item-content,smart-accordion:not([animation=none])[expand-mode=none] smart-accordion-item[expanded].smart-toggled-item .smart-accordion-item-content,smart-accordion:not([animation=none])[expand-mode=single] smart-accordion-item[expanded].smart-toggled-item .smart-accordion-item-content,smart-accordion:not([animation=none])[expand-mode=toggle] smart-accordion-item[expanded].smart-toggled-item .smart-accordion-item-content{animation:smart-accordion-item-expand-animation ease-in;animation-duration:inherit;animation-iteration-count:1}smart-accordion:not([animation=none]) smart-accordion-item .smart-accordion-item-header>.smart-arrow.smart-animate-trigger:after{transition:transform .2s ease-out}smart-accordion:not([animation=none]) smart-accordion-item.smart-toggled-item .smart-accordion-item-content{animation:smart-accordion-item-expand-animation-default-mode ease-out;animation-direction:reverse;display:block;animation-duration:inherit;animation-iteration-count:1}smart-accordion:not([animation=none]) smart-accordion-item[expanded].smart-toggled-item .smart-accordion-item-content{animation:smart-accordion-item-expand-animation-default-mode ease-in;animation-duration:inherit;animation-iteration-count:1}smart-accordion[right-to-left]>.smart-container{direction:rtl}:host .smart-ripple{background-color:var(--smart-background-color);opacity:.5}@keyframes smart-accordion-item-expand-animation-default-mode{0%{height:0}100%{height:var(--smart-accordion-expanded-content-height)}}@keyframes smart-accordion-item-expand-animation{0%{height:0}100%{height:var(--smart-accordion-expanded-content-local-height)}}
smart-array{width:var(--smart-array-default-width);height:var(--smart-array-default-height);display:block;overflow:visible}smart-array .smart-big-container,smart-array>.smart-container{display:flex}smart-array .smart-array-indexer{display:block;margin-bottom:2px;width:100%}smart-array .smart-big-container{background-color:var(--smart-background)}smart-array[show-index-display] .smart-big-container{margin-left:2px}smart-array .smart-main-container,smart-array .smart-scrollbar-container-horizontal{width:100%}smart-array .smart-array-element-gap{border-spacing:0}smart-array .smart-array-table-data{border:2px solid transparent;padding:0;min-width:0;background-color:transparent;white-space:nowrap}smart-array .smart-array-table-data-gap{border-width:var(--smart-array-element-gap);padding:var(--smart-array-element-gap)}smart-array .smart-scrollbar-container-horizontal{height:20px}smart-array .smart-scrollbar-container-vertical{width:20px}smart-array .smart-scrollbar-container-horizontal>smart-scroll-bar,smart-array .smart-scrollbar-container-vertical>smart-scroll-bar{width:100%;height:100%}smart-array .smart-array-element{position:relative}smart-array .smart-array-element-selected{border-color:#00f}smart-array .smart-array-element-empty{border-color:#999;color:#999;opacity:.7}smart-array .smart-array-element>smart-check-box,smart-array .smart-array-element>smart-led,smart-array .smart-array-element>smart-numeric-text-box,smart-array .smart-array-element>smart-power-button,smart-array .smart-array-element>smart-radio-button,smart-array .smart-array-element>smart-switch-button,smart-array .smart-array-element>smart-toggle-button,smart-array smart-switch-button.smart-array-element,smart-array smart-text-box.smart-array-element{display:block}smart-array .smart-array-element>smart-check-box{padding:0}
.smart-badge{display:inline-block;padding:.25em .4em;font-weight:700;line-height:1}.smart-badge.smart-badge-primary{color:var(--smart-primary-color);background-color:var(--smart-primary)}.smart-badge.smart-badge-secondary{color:var(--smart-secondary-color);background-color:var(--smart-secondary)}.smart-badge.smart-badge-success{color:var(--smart-success-color);background-color:var(--smart-success)}.smart-badge.smart-badge-error{color:var(--smart-error-color);background-color:var(--smart-error)}.smart-badge.smart-badge-info{color:var(--smart-info-color);background-color:var(--smart-info)}.smart-badge.smart-badge-warning{color:var(--smart-warning-color);background-color:var(--smart-warning)}.smart-badge.smart-badge-light{color:var(--smart-light-color);background-color:var(--smart-light)}.smart-badge.smart-badge-dark{color:var(--smart-dark-color);background-color:var(--smart-dark)}.smart-badge.smart-badge-danger{color:var(--smart-error-color);background-color:var(--smart-error)}.smart-badge.smart-badge-pill{border-radius:10rem}.smart-badge[right-to-left]{direction:rtl}
.smart-breadcrumb-feedback,.smart-breadcrumb-feedback *,smart-breadcrumb{box-sizing:border-box}smart-breadcrumb{display:block;width:var(--smart-breadcrumb-default-width);min-width:calc(2 * var(--smart-breadcrumb-padding) + 2 * var(--smart-border-width) + 40px);height:var(--smart-breadcrumb-default-height);border:var(--smart-border-width) solid var(--smart-border);padding:var(--smart-breadcrumb-padding);padding-top:0;border-top-right-radius:var(--smart-border-top-right-radius);border-top-left-radius:var(--smart-border-top-left-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius)}smart-breadcrumb .smart-template-container{height:auto}smart-breadcrumb .smart-template-container .smart-breadcrumb-items{width:100%;height:auto;display:flex;flex-direction:row;flex-wrap:wrap}.smart-breadcrumb-feedback,smart-breadcrumb .smart-template-container .smart-breadcrumb-items .smart-breadcrumb-item{flex-direction:row;margin-top:var(--smart-breadcrumb-padding);width:auto;padding:5px;color:var(--smart-background-color)}smart-breadcrumb .smart-template-container .smart-breadcrumb-items .smart-breadcrumb-item{display:flex;align-items:center;position:relative;border:var(--smart-border-width) solid var(--smart-border);margin-right:var(--smart-breadcrumb-horizontal-offset);height:var(--smart-breadcrumb-item-height);background-color:var(--smart-background)}smart-breadcrumb .smart-template-container .smart-breadcrumb-items .smart-breadcrumb-item:not(:last-child):after{position:absolute;width:var(--smart-breadcrumb-horizontal-offset);height:2px;background-color:var(--smart-border);left:calc(100% + var(--smart-border-width));top:50%;content:""}smart-breadcrumb .smart-template-container .smart-breadcrumb-items .smart-breadcrumb-item>.smart-close-button{display:none;margin-left:10px;margin-right:5px;width:1em;user-select:none;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;cursor:pointer;font-family:smart-icons}smart-breadcrumb .smart-template-container .smart-breadcrumb-items .smart-breadcrumb-item>.smart-close-button:after{content:var(--smart-icon-close)}smart-breadcrumb .smart-template-container .smart-breadcrumb-items .smart-breadcrumb-item .smart-breadcrumb-item-label{user-select:none;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none}smart-breadcrumb .smart-template-container .smart-breadcrumb-items>.afterTarget:last-child:after,smart-breadcrumb .smart-template-container .smart-breadcrumb-items>.target:before{position:absolute;width:2px;height:100%;background-color:var(--smart-primary);left:calc(-1 * var(--smart-breadcrumb-horizontal-offset)/ 2 - 1px);content:""}smart-breadcrumb .smart-template-container .smart-breadcrumb-items>.afterTarget:last-child:after{left:calc(100% + var(--smart-breadcrumb-horizontal-offset)/ 2)}smart-breadcrumb .smart-breadcrumb-placeholder{width:100%;height:100%;display:flex;padding:5px}smart-breadcrumb[allow-drag] .smart-template-container .smart-breadcrumb-items .smart-breadcrumb-item{cursor:pointer;touch-action:none}smart-breadcrumb[allow-drag] .smart-template-container .smart-breadcrumb-items .smart-breadcrumb-item.dragged{background-image:linear-gradient(45deg,rgba(0,0,0,.1) 25%,transparent 25%,transparent 50%,rgba(0,0,0,.1) 50%,rgba(0,0,0,.1) 75%,transparent 75%,transparent);background-size:3em 3em}smart-breadcrumb[add-new-item] .smart-template-container .smart-breadcrumb-items>smart-button{--smart-button-padding:0;position:relative;margin-right:var(--smart-breadcrumb-horizontal-offset);margin-top:var(--smart-breadcrumb-padding);border:var(--smart-border-width) solid var(--smart-border);border-radius:initial;width:var(--smart-breadcrumb-item-height);height:var(--smart-breadcrumb-item-height);text-align:center;font-size:25px;overflow:visible}smart-breadcrumb[add-new-item] .smart-template-container .smart-breadcrumb-items>smart-button>button{overflow:hidden;user-select:none;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none}smart-breadcrumb[close-buttons] .smart-template-container .smart-breadcrumb-items .smart-breadcrumb-item>.smart-close-button{display:block}smart-breadcrumb[minimized]{padding:0;overflow:visible}smart-breadcrumb[minimized] .smart-container{display:flex;align-items:center;position:relative;padding:var(--smart-breadcrumb-padding)}smart-breadcrumb[minimized] .smart-hamburger-icon{width:40px;height:40px;display:flex;flex-direction:column;align-items:center;justify-content:center;float:none;cursor:pointer}smart-breadcrumb[minimized] .smart-hamburger-icon.smart-close-button>.smart-hamburger-icon-line-top{width:29px;transform:translateX(4px) rotate(45deg)}smart-breadcrumb[minimized] .smart-hamburger-icon.smart-close-button>.smart-hamburger-icon-line-center{visibility:hidden}smart-breadcrumb[minimized] .smart-hamburger-icon.smart-close-button>.smart-hamburger-icon-line-bottom{width:29px;transform:translateX(4px) rotate(-45deg)}smart-breadcrumb[minimized] .smart-hamburger-icon-line{margin-bottom:5px;border-radius:10px;width:30px;height:5px;background-color:var(--smart-primary);transform-origin:left}smart-breadcrumb[minimized] .smart-hamburger-icon-line-bottom{margin-bottom:0}smart-breadcrumb[minimized] .smart-template-container{position:absolute;left:calc(-1 * var(--smart-border-width));top:calc(100% + 2px + var(--smart-border-width));margin:calc(var(--smart-drop-down-vertical-offset) + var(--smart-drop-down-element-padding-size)) 0;border-width:var(--smart-border-width);border-style:solid;border-color:var(--smart-border);padding:var(--smart-drop-down-element-padding-size);width:var(--smart-breadcrumb-drop-down-width);background-color:var(--smart-background);box-shadow:var(--smart-elevation-8);z-index:1}smart-breadcrumb[minimized] .smart-template-container .smart-breadcrumb-items .smart-breadcrumb-item{width:100%;margin:0;justify-content:space-between}smart-breadcrumb[minimized] .smart-template-container .smart-breadcrumb-items .smart-breadcrumb-item:not(:last-child):after{content:none}smart-breadcrumb[minimized] .smart-template-container .smart-breadcrumb-items>smart-button{width:100%;margin:0}smart-breadcrumb[minimized] .smart-template-container .smart-breadcrumb-items>smart-button>button{padding:0;justify-content:center}smart-breadcrumb[minimized] .smart-template-container .smart-breadcrumb-items>.afterTarget:last-child:after,smart-breadcrumb[minimized] .smart-template-container .smart-breadcrumb-items>.target:before{width:100%;height:4px;left:0;top:-3px}smart-breadcrumb[minimized] .smart-template-container .smart-breadcrumb-items>.afterTarget:last-child:after{top:100%}smart-breadcrumb[minimized][animation=none] .smart-template-container.smart-visibility-hidden{display:none}smart-breadcrumb[minimized]:not([animation=none]) .smart-template-container{opacity:1;transform:scaleY(1);transform-origin:top;transition:opacity .2s ease-in,visibility .2s ease-in,transform .2s ease-in}smart-breadcrumb[minimized]:not([animation=none]) .smart-template-container.smart-visibility-hidden.not-in-view{left:-9999px;top:-9999px;transition:none}smart-breadcrumb[minimized]:not([animation=none]) .smart-template-container.smart-visibility-hidden{opacity:.2;transform:scaleY(0)}smart-breadcrumb[minimized]:not([animation=none]) .smart-hamburger-icon-line{transition:visibility 20ms ease-in,transform .2s ease-in,width .2s ease-in}.smart-breadcrumb-feedback{align-items:center;border:var(--smart-border-width) solid var(--smart-border);margin-right:var(--smart-breadcrumb-horizontal-offset);height:var(--smart-breadcrumb-item-height);background-color:var(--smart-background);box-shadow:var(--smart-elevation-12);white-space:nowrap;opacity:.8;position:absolute;display:inline-flex;font-family:var(--smart-font-family);font-size:var(--smart-font-size);z-index:999}.smart-breadcrumb-feedback:after{margin-left:10px;content:var(--smart-icon-check);font-family:smart-icons;font-size:14px;width:1.5em;border-radius:100%;height:1.5em;background-color:var(--smart-success);color:var(--smart-success-color);display:flex;align-items:center;justify-content:center}.smart-breadcrumb-feedback.freeze:after{background-color:inherit;color:var(--smart-primary);content:var(--smart-icon-lock)}.smart-breadcrumb-feedback.unfreeze:after{background-color:inherit;color:var(--smart-primary);content:var(--smart-icon-lock-open)}.smart-breadcrumb-feedback.error:after{background-color:var(--smart-error);color:var(--smart-error-color);content:var(--smart-icon-attention-circled)}.smart-breadcrumb-feedback.data:after{background-color:var(--smart-primary);color:var(--smart-primary-color);content:var(--smart-icon-docs)}smart-breadcrumb[right-to-left]>.smart-container{direction:rtl}smart-breadcrumb[right-to-left]>.smart-container .smart-template-container .smart-breadcrumb-items>.afterTarget:first-child:after{position:absolute;content:"";width:2px;height:100%;top:0;left:calc(100% + var(--smart-breadcrumb-horizontal-offset)/ 2);background-color:var(--smart-success)}smart-breadcrumb[right-to-left]>.smart-container .smart-template-container .smart-breadcrumb-items .smart-breadcrumb-item>.smart-close-button{margin-left:5px;margin-right:10px}.smart-breadcrumb-feedback[right-to-left],smart-breadcrumb[right-to-left]:not([minimized]) .smart-template-container .smart-breadcrumb-items .smart-breadcrumb-item,smart-breadcrumb[right-to-left]:not([minimized])[add-new-item]:not([minimized]) .smart-breadcrumb-items>smart-button{margin-left:var(--smart-breadcrumb-horizontal-offset);margin-right:initial}smart-breadcrumb[right-to-left]>.smart-container .smart-template-container .smart-breadcrumb-items .smart-breadcrumb-item:not(:last-child):after{left:calc(-1 * var(--smart-breadcrumb-horizontal-offset))}smart-breadcrumb[right-to-left][minimized] .smart-container .smart-template-container{right:calc(-1 * var(--smart-border-width));left:auto}.smart-breadcrumb-feedback[right-to-left]{direction:rtl}.smart-breadcrumb-feedback[right-to-left]:after{margin-left:initial;margin-right:var(--smart-breadcrumb-horizontal-offset)}
smart-button,smart-repeat-button,smart-toggle-button{--smart-button-flat-color:var(--smart-background-color);text-align:center;display:inline-flex;vertical-align:middle;cursor:pointer;text-transform:var(--smart-button-text-transform);letter-spacing:.08929em;overflow:hidden;border-color:var(--smart-border);border-top-left-radius:var(--smart-border-top-left-radius);border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);border-width:var(--smart-border-width);border-style:solid;visibility:hidden;font-weight:500}smart-button.smart-element,smart-repeat-button.smart-element,smart-toggle-button.smart-element{display:inline-flex;visibility:inherit}smart-button button::-moz-focus-inner,smart-repeat-button button::-moz-focus-inner,smart-toggle-button button::-moz-focus-inner{border:0}smart-button.primary,smart-repeat-button.primary,smart-toggle-button.primary{--smart-button-opacity-hover:0.75;--smart-button-opacity-focus:0.7;--smart-button-opacity-active:0.65;--smart-background:var(--smart-primary);--smart-border:var(--smart-primary);--smart-border-rgb:var(--smart-primary-rgb);--smart-background-color:var(--smart-primary-color);--smart-ui-state-hover:var(--smart-primary);--smart-ui-state-border-hover:var(--smart-primary);--smart-ui-state-color-hover:var(--smart-primary-color);--smart-ui-state-active:var(--smart-primary);--smart-ui-state-border-active:var(--smart-primary);--smart-ui-state-color-active:var(--smart-primary-color);--smart-ui-state-focus:var(--smart-primary);--smart-ui-state-border-focus:var(--smart-primary);--smart-ui-state-color-focus:var(--smart-primary-color);--smart-button-flat-color:var(--smart-primary);--smart-button-outlined-color:var(--smart-primary);--smart-button-outlined-border:var(--smart-primary)}smart-button.secondary,smart-repeat-button.secondary,smart-toggle-button.secondary{--smart-button-opacity-hover:0.75;--smart-button-opacity-focus:0.7;--smart-button-opacity-active:0.65;--smart-background:var(--smart-secondary);--smart-border:var(--smart-secondary);--smart-border-rgb:var(--smart-secondary-rgb);--smart-background-color:var(--smart-secondary-color);--smart-ui-state-hover:var(--smart-secondary);--smart-ui-state-border-hover:var(--smart-secondary);--smart-ui-state-color-hover:var(--smart-secondary-color);--smart-ui-state-active:var(--smart-secondary);--smart-ui-state-border-active:var(--smart-secondary);--smart-ui-state-color-active:var(--smart-secondary-color);--smart-ui-state-focus:var(--smart-secondary);--smart-ui-state-border-focus:var(--smart-secondary);--smart-ui-state-color-focus:var(--smart-secondary-color);--smart-button-flat-color:var(--smart-secondary);--smart-button-outlined-color:var(--smart-secondary);--smart-button-outlined-border:var(--smart-secondary)}smart-button.success,smart-repeat-button.success,smart-toggle-button.success{--smart-button-opacity-hover:0.75;--smart-button-opacity-focus:0.7;--smart-button-opacity-active:0.65;--smart-background:var(--smart-success);--smart-border:var(--smart-success);--smart-border-rgb:var(--smart-success-rgb);--smart-background-color:var(--smart-success-color);--smart-ui-state-hover:var(--smart-success);--smart-ui-state-border-hover:var(--smart-success);--smart-ui-state-color-hover:var(--smart-success-color);--smart-ui-state-active:var(--smart-success);--smart-ui-state-border-active:var(--smart-success);--smart-ui-state-color-active:var(--smart-success-color);--smart-ui-state-focus:var(--smart-success);--smart-ui-state-border-focus:var(--smart-success);--smart-ui-state-color-focus:var(--smart-success-color);--smart-button-flat-color:var(--smart-success);--smart-button-outlined-color:var(--smart-success);--smart-button-outlined-border:var(--smart-success)}smart-button.error,smart-repeat-button.error,smart-toggle-button.error{--smart-button-opacity-hover:0.75;--smart-button-opacity-focus:0.7;--smart-button-opacity-active:0.65;--smart-background:var(--smart-error);--smart-border:var(--smart-error);--smart-border-rgb:var(--smart-error-rgb);--smart-background-color:var(--smart-error-color);--smart-ui-state-hover:var(--smart-error);--smart-ui-state-border-hover:var(--smart-error);--smart-ui-state-color-hover:var(--smart-error-color);--smart-ui-state-active:var(--smart-error);--smart-ui-state-border-active:var(--smart-error);--smart-ui-state-color-active:var(--smart-error-color);--smart-ui-state-focus:var(--smart-error);--smart-ui-state-border-focus:var(--smart-error);--smart-ui-state-color-focus:var(--smart-error-color);--smart-button-flat-color:var(--smart-error);--smart-button-outlined-color:var(--smart-error);--smart-button-outlined-border:var(--smart-error)}smart-button.info,smart-repeat-button.info,smart-toggle-button.info{--smart-button-opacity-hover:0.75;--smart-button-opacity-focus:0.7;--smart-button-opacity-active:0.65;--smart-background:var(--smart-info);--smart-border:var(--smart-info);--smart-border-rgb:var(--smart-info-rgb);--smart-background-color:var(--smart-info-color);--smart-ui-state-hover:var(--smart-info);--smart-ui-state-border-hover:var(--smart-info);--smart-ui-state-color-hover:var(--smart-info-color);--smart-ui-state-active:var(--smart-info);--smart-ui-state-border-active:var(--smart-info);--smart-ui-state-color-active:var(--smart-info-color);--smart-ui-state-focus:var(--smart-info);--smart-ui-state-border-focus:var(--smart-info);--smart-ui-state-color-focus:var(--smart-info-color);--smart-button-flat-color:var(--smart-info);--smart-button-outlined-color:var(--smart-info);--smart-button-outlined-border:var(--smart-info)}smart-button.warning,smart-repeat-button.warning,smart-toggle-button.warning{--smart-button-opacity-hover:0.75;--smart-button-opacity-focus:0.7;--smart-button-opacity-active:0.65;--smart-background:var(--smart-warning);--smart-border:var(--smart-warning);--smart-border-rgb:var(--smart-warning-rgb);--smart-background-color:var(--smart-warning-color);--smart-ui-state-hover:var(--smart-warning);--smart-ui-state-border-hover:var(--smart-warning);--smart-ui-state-color-hover:var(--smart-warning-color);--smart-ui-state-active:var(--smart-warning);--smart-ui-state-border-active:var(--smart-warning);--smart-ui-state-color-active:var(--smart-warning-color);--smart-ui-state-focus:var(--smart-warning);--smart-ui-state-border-focus:var(--smart-warning);--smart-ui-state-color-focus:var(--smart-warning-color);--smart-button-flat-color:var(--smart-warning);--smart-button-outlined-color:var(--smart-warning);--smart-button-outlined-border:var(--smart-warning)}smart-button.light,smart-repeat-button.light,smart-toggle-button.light{--smart-button-opacity-hover:0.75;--smart-button-opacity-focus:0.7;--smart-button-opacity-active:0.65;--smart-background:var(--smart-light);--smart-border:var(--smart-light);--smart-border-rgb:var(--smart-light-rgb);--smart-background-color:var(--smart-light-color);--smart-ui-state-hover:var(--smart-light);--smart-ui-state-border-hover:var(--smart-light);--smart-ui-state-color-hover:var(--smart-light-color);--smart-ui-state-active:var(--smart-light);--smart-ui-state-border-active:var(--smart-light);--smart-ui-state-color-active:var(--smart-light-color);--smart-ui-state-focus:var(--smart-light);--smart-ui-state-border-focus:var(--smart-light);--smart-ui-state-color-focus:var(--smart-light-color);--smart-button-flat-color:var(--smart-light);--smart-button-outlined-color:var(--smart-light);--smart-button-outlined-border:var(--smart-light)}smart-button.dark,smart-repeat-button.dark,smart-toggle-button.dark{--smart-button-opacity-hover:0.75;--smart-button-opacity-focus:0.7;--smart-button-opacity-active:0.65;--smart-background:var(--smart-dark);--smart-border:var(--smart-dark);--smart-border-rgb:var(--smart-dark-rgb);--smart-background-color:var(--smart-dark-color);--smart-ui-state-hover:var(--smart-dark);--smart-ui-state-border-hover:var(--smart-dark);--smart-ui-state-color-hover:var(--smart-dark-color);--smart-ui-state-active:var(--smart-dark);--smart-ui-state-border-active:var(--smart-dark);--smart-ui-state-color-active:var(--smart-dark-color);--smart-ui-state-focus:var(--smart-dark);--smart-ui-state-border-focus:var(--smart-dark);--smart-ui-state-color-focus:var(--smart-dark-color);--smart-button-flat-color:var(--smart-dark);--smart-button-outlined-color:var(--smart-dark);--smart-button-outlined-border:var(--smart-dark)}smart-button[hover],smart-repeat-button[hover],smart-toggle-button[hover]{color:var(--smart-ui-state-color-hover);border-color:var(--smart-ui-state-border-hover);background-color:var(--smart-ui-state-hover);transition:background-color .1s linear,box-shadow 280ms ease-in-out;opacity:var(--smart-button-opacity-hover)}smart-button[focus],smart-repeat-button[focus],smart-toggle-button[focus]{color:var(--smart-ui-state-color-focus);border-color:var(--smart-ui-state-border-focus);background-color:var(--smart-ui-state-focus);opacity:var(--smart-button-opacity-focus)}smart-button[active],smart-repeat-button[active],smart-toggle-button[active]{color:var(--smart-ui-state-color-active);border-color:var(--smart-ui-state-border-active);background-color:var(--smart-ui-state-active);transition:background-color .1s linear,box-shadow 280ms ease-in-out;opacity:var(--smart-button-opacity-active)}smart-button[disabled],smart-repeat-button[disabled],smart-toggle-button[disabled]{color:var(--smart-disabled-color);border-color:var(--smart-disabled);background-color:var(--smart-disabled);cursor:default;--smart-background:var(--smart-disabled);--smart-border:var(--smart-disabled);--smart-background-color:var(--smart-disabled-color)}smart-button.large button,smart-repeat-button.large button,smart-toggle-button.large button{padding:var(--smart-button-large-padding);font-size:var(--smart-button-large-font-size)}smart-button.small button,smart-repeat-button.small button,smart-toggle-button.small button{padding:var(--smart-button-small-padding);font-size:var(--smart-button-small-font-size)}smart-button.very-small button,smart-repeat-button.very-small button,smart-toggle-button.very-small button{padding:var(--smart-button-very-small-padding);font-size:var(--smart-button-very-small-font-size)}smart-button.rounded,smart-repeat-button.rounded,smart-toggle-button.rounded{--smart-border-top-left-radius:50px;--smart-border-top-right-radius:50px;--smart-border-bottom-left-radius:50px;--smart-border-bottom-right-radius:50px;border-radius:var(--smart-border-bottom-left-radius)!important}smart-button.squared,smart-repeat-button.squared,smart-toggle-button.squared{--smart-border-top-left-radius:0;--smart-border-top-right-radius:0;--smart-border-bottom-left-radius:0;--smart-border-bottom-right-radius:0}smart-button.flat,smart-button.flat[active],smart-button.flat[hover],smart-repeat-button.flat,smart-repeat-button.flat[active],smart-repeat-button.flat[hover],smart-toggle-button.flat,smart-toggle-button.flat[active],smart-toggle-button.flat[hover]{color:var(--smart-button-flat-color);background:0 0;border-color:transparent}smart-button.outlined,smart-button.outlined[active],smart-button.outlined[hover],smart-repeat-button.outlined,smart-repeat-button.outlined[active],smart-repeat-button.outlined[hover],smart-toggle-button.outlined,smart-toggle-button.outlined[active],smart-toggle-button.outlined[hover]{color:var(--smart-button-outlined-color);border-color:var(--smart-button-outlined-border);background:0 0}smart-button.flat[focus],smart-repeat-button.flat[focus],smart-toggle-button.flat[focus]{border-color:var(--smart-ui-state-focus)}smart-button.flat[checked],smart-repeat-button.flat[checked],smart-toggle-button.flat[checked]{text-decoration:underline;background:var(--smart-ui-state-active)}smart-button.flat .smart-ripple,smart-repeat-button.flat .smart-ripple,smart-toggle-button.flat .smart-ripple{background-color:var(--smart-button-flat-color)}smart-button.outlined,smart-repeat-button.outlined,smart-toggle-button.outlined{border-width:calc(2 * var(--smart-border-width))}smart-button.outlined[focus],smart-repeat-button.outlined[focus],smart-toggle-button.outlined[focus]{color:var(--smart-button-outlined-color);border-color:var(--smart-ui-state-focus);background:0 0}smart-button.outlined[checked],smart-repeat-button.outlined[checked],smart-toggle-button.outlined[checked]{color:var(--smart-ui-state-color-active);border-color:var(--smart-ui-state-active);background:var(--smart-ui-state-active)}smart-button.outlined .smart-ripple,smart-repeat-button.outlined .smart-ripple,smart-toggle-button.outlined .smart-ripple{background-color:var(--smart-button-outlined-color)}smart-button.outlined button.smart-button,smart-repeat-button.outlined button.smart-button,smart-toggle-button.outlined button.smart-button{border-radius:initial}smart-button.raised,smart-repeat-button.raised,smart-toggle-button.raised{box-shadow:var(--smart-elevation-2);transition:background-color .1s linear,box-shadow 280ms ease-in-out}smart-button.raised[hover],smart-repeat-button.raised[hover],smart-toggle-button.raised[hover]{box-shadow:var(--smart-elevation-4)}smart-button.raised button[active],smart-button.raised[active],smart-button.raised[checked],smart-repeat-button.raised button[active],smart-repeat-button.raised[active],smart-repeat-button.raised[checked],smart-toggle-button.raised button[active],smart-toggle-button.raised[active],smart-toggle-button.raised[checked]{box-shadow:var(--smart-elevation-8)}smart-button.raised[focus],smart-button.raised[focus]:not([checked]),smart-repeat-button.raised[focus],smart-repeat-button.raised[focus]:not([checked]),smart-toggle-button.raised[focus],smart-toggle-button.raised[focus]:not([checked]){box-shadow:var(--smart-elevation-6)}smart-button.floating,smart-repeat-button.floating,smart-toggle-button.floating{border-radius:50%;width:48px;height:48px;box-shadow:var(--smart-elevation-4);transition:background-color .1s linear,box-shadow 280ms ease-in-out}smart-button.floating[hover],smart-repeat-button.floating[hover],smart-toggle-button.floating[hover]{box-shadow:var(--smart-elevation-6)}smart-button.floating[active],smart-button.floating[checked],smart-repeat-button.floating[active],smart-repeat-button.floating[checked],smart-toggle-button.floating[active],smart-toggle-button.floating[checked]{box-shadow:var(--smart-elevation-12)}smart-button.floating[focus],smart-button.floating[focus]:not([checked]),smart-repeat-button.floating[focus],smart-repeat-button.floating[focus]:not([checked]),smart-toggle-button.floating[focus],smart-toggle-button.floating[focus]:not([checked]){box-shadow:var(--smart-elevation-6)}button.smart-button{position:relative;padding:var(--smart-button-padding);text-align:inherit;vertical-align:inherit;cursor:inherit;text-transform:inherit;font-weight:inherit;letter-spacing:inherit;background:inherit;color:inherit;border:none;-webkit-font-smoothing:antialiased;opacity:var(--smart-button-opacity);white-space:nowrap;border-radius:inherit}.smart-button .smart-ripple{background:var(--smart-background-color)}[smart-toggle-button] .smart-container,smart-toggle-button .smart-container{font-weight:inherit;font-style:inherit}[smart-toggle-button][checked],smart-toggle-button[checked]{color:var(--smart-ui-state-color-selected);border-color:var(--smart-ui-state-border-selected);background-color:var(--smart-ui-state-selected)}.smart-scroll-button .smart-button{padding:0}:host(.smart-button.flat) .smart-ripple{background-color:var(--smart-button-flat-color)}:host(.smart-button.outlined) .smart-ripple{background-color:var(--smart-button-outlined-color)}button.smart-button[type]:not(.smart-container){border-color:var(--smart-border);border-top-left-radius:var(--smart-border-top-left-radius);border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);border-width:var(--smart-border-width);border-style:solid;text-align:center;vertical-align:middle;cursor:pointer;text-transform:var(--smart-button-text-transform);font-weight:500;letter-spacing:.08929em;overflow:hidden;font-style:var(--smart-font-style);font-size:var(--smart-font-size);background:var(--smart-background);outline:0}button.smart-button[type]:hover{color:var(--smart-ui-state-color-hover);border-color:var(--smart-ui-state-border-hover);background-color:var(--smart-ui-state-hover)}button.smart-button[type]:not([disabled]):active{color:var(--smart-ui-state-color-active);border-color:var(--smart-ui-state-border-active);background-color:var(--smart-ui-state-active)}smart-button[right-to-left],smart-repeat-button[right-to-left],smart-toggle-button[right-to-left]{direction:rtl}
.smart-button-group{display:inline-flex;vertical-align:middle;width:var(--smart-button-group-default-width);height:var(--smart-button-group-default-height);cursor:pointer;text-transform:var(--smart-button-text-transform);letter-spacing:.08929em;overflow:hidden}.smart-button-group .smart-button-group-items{display:flex;align-items:center;height:100%;width:100%}.smart-button-group .smart-button-group-items .smart-button-group-item{display:flex;align-items:center;justify-content:center;position:relative;padding:var(--smart-button-padding);cursor:inherit;font-weight:inherit;-webkit-font-smoothing:antialiased;opacity:var(--smart-button-opacity);white-space:nowrap;border-radius:inherit;width:100%;height:100%}.smart-button-group .smart-button-group-items .smart-button-group-item>div{overflow:hidden;text-overflow:ellipsis;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.smart-button-group .smart-button-group-items .smart-button-group-item:hover{color:var(--smart-ui-state-color-hover);border-color:var(--smart-ui-state-border-hover);background-color:var(--smart-ui-state-hover);opacity:var(--smart-button-opacity-hover)}.smart-button-group .smart-button-group-items .smart-button-group-item[active]{color:var(--smart-ui-state-color-selected);border-color:var(--smart-ui-state-border-selected);background-color:var(--smart-ui-state-selected)}.smart-button-group .smart-button-group-items .smart-button-group-item:active{color:var(--smart-ui-state-color-active);border-color:var(--smart-ui-state-border-active);background-color:var(--smart-ui-state-active);opacity:var(--smart-button-opacity-active)}.smart-button-group.small .smart-button-group-items .smart-button-group-item{padding:var(--smart-button-small-padding);font-size:var(--smart-button-small-font-size)}.smart-button-group.large .smart-button-group-items .smart-button-group-item{padding:var(--smart-button-large-padding);font-size:var(--smart-button-large-font-size)}.smart-button-group:focus .smart-button-group-item[focus]:not(:active){color:var(--smart-ui-state-color-focus);border-color:var(--smart-ui-state-border-focus);background-color:var(--smart-ui-state-focus);opacity:var(--smart-button-opacity-focus)}.smart-button-group.primary{border-color:var(--smart-primary)}.smart-button-group.primary .smart-button-group-items .smart-button-group-item{color:var(--smart-primary-color);background-color:var(--smart-primary)}.smart-button-group.primary .smart-button-group-items .smart-button-group-item:hover{background-color:rgba(var(--smart-primary-rgb),.8)}.smart-button-group.primary .smart-button-group-items .smart-button-group-item:active,.smart-button-group.primary .smart-button-group-items .smart-button-group-item[active]{color:var(--smart-primary);border-color:var(--smart-ui-state-border-selected);background-color:rgba(var(--smart-primary-rgb),.2)}.smart-button-group.secondary{border-color:var(--smart-secondary)}.smart-button-group.secondary .smart-button-group-items .smart-button-group-item{color:var(--smart-secondary-color);background-color:var(--smart-secondary)}.smart-button-group.secondary .smart-button-group-items .smart-button-group-item:hover{background-color:rgba(var(--smart-secondary-rgb),.8)}.smart-button-group.secondary .smart-button-group-items .smart-button-group-item:active,.smart-button-group.secondary .smart-button-group-items .smart-button-group-item[active]{color:var(--smart-secondary);border-color:var(--smart-ui-state-border-selected);background-color:rgba(var(--smart-secondary-rgb),.2)}.smart-button-group.success{border-color:var(--smart-success)}.smart-button-group.success .smart-button-group-items .smart-button-group-item{color:var(--smart-success-color);background-color:var(--smart-success)}.smart-button-group.success .smart-button-group-items .smart-button-group-item:hover{background-color:rgba(var(--smart-success-rgb),.8)}.smart-button-group.success .smart-button-group-items .smart-button-group-item:active,.smart-button-group.success .smart-button-group-items .smart-button-group-item[active]{color:var(--smart-success);border-color:var(--smart-ui-state-border-selected);background-color:rgba(var(--smart-success-rgb),.2)}.smart-button-group.error{border-color:var(--smart-error)}.smart-button-group.error .smart-button-group-items .smart-button-group-item{color:var(--smart-error-color);background-color:var(--smart-error)}.smart-button-group.error .smart-button-group-items .smart-button-group-item:hover{background-color:rgba(var(--smart-error-rgb),.8)}.smart-button-group.error .smart-button-group-items .smart-button-group-item:active,.smart-button-group.error .smart-button-group-items .smart-button-group-item[active]{color:var(--smart-error);border-color:var(--smart-ui-state-border-selected);background-color:rgba(var(--smart-error-rgb),.2)}.smart-button-group.info{border-color:var(--smart-info)}.smart-button-group.info .smart-button-group-items .smart-button-group-item{color:var(--smart-info-color);background-color:var(--smart-info)}.smart-button-group.info .smart-button-group-items .smart-button-group-item:hover{background-color:rgba(var(--smart-info-rgb),.8)}.smart-button-group.info .smart-button-group-items .smart-button-group-item:active,.smart-button-group.info .smart-button-group-items .smart-button-group-item[active]{color:var(--smart-info);border-color:var(--smart-ui-state-border-selected);background-color:rgba(var(--smart-info-rgb),.2)}.smart-button-group.warning{border-color:var(--smart-warning)}.smart-button-group.warning .smart-button-group-items .smart-button-group-item{color:var(--smart-warning-color);background-color:var(--smart-warning)}.smart-button-group.warning .smart-button-group-items .smart-button-group-item:hover{background-color:rgba(var(--smart-warning-rgb),.8)}.smart-button-group.warning .smart-button-group-items .smart-button-group-item:active,.smart-button-group.warning .smart-button-group-items .smart-button-group-item[active]{color:var(--smart-warning);border-color:var(--smart-ui-state-border-selected);background-color:rgba(var(--smart-warning-rgb),.2)}.smart-button-group.light{border-color:var(--smart-light)}.smart-button-group.light .smart-button-group-items .smart-button-group-item{color:var(--smart-light-color);background-color:var(--smart-light)}.smart-button-group.light .smart-button-group-items .smart-button-group-item:hover{background-color:rgba(var(--smart-light-rgb),.8)}.smart-button-group.light .smart-button-group-items .smart-button-group-item:active,.smart-button-group.light .smart-button-group-items .smart-button-group-item[active]{color:var(--smart-light);border-color:var(--smart-ui-state-border-selected);background-color:rgba(var(--smart-light-rgb),.2)}.smart-button-group.dark{border-color:var(--smart-dark)}.smart-button-group.dark .smart-button-group-items .smart-button-group-item{color:var(--smart-dark-color);background-color:var(--smart-dark)}.smart-button-group.dark .smart-button-group-items .smart-button-group-item:hover{background-color:rgba(var(--smart-dark-rgb),.8)}.smart-button-group.dark .smart-button-group-items .smart-button-group-item:active,.smart-button-group.dark .smart-button-group-items .smart-button-group-item[active]{color:var(--smart-dark);border-color:var(--smart-ui-state-border-selected);background-color:rgba(var(--smart-dark-rgb),.2)}.smart-button-group:not([animation=none]) .smart-button-group-item{transition:background-color .1s linear,box-shadow 280ms ease-in-out}.smart-button-group[right-to-left] .smart-button-group-items{direction:rtl}
.smart-calendar,.smart-calendar[months="1"]{min-width:var(--smart-calendar-default-width);min-height:var(--smart-calendar-default-height)}.smart-calendar{width:var(--smart-calendar-default-width);height:var(--smart-calendar-default-height)}.smart-calendar:focus{border-color:var(--smart-outline)}.smart-calendar>.smart-container{user-select:none;-moz-user-select:none;-webkit-user-select:none}.smart-calendar.smart-container,.smart-calendar>.smart-container{display:flex;justify-content:center;flex-direction:column}.smart-calendar smart-drop-down-list{--smart-drop-down-list-default-min-height:initial}.smart-calendar smart-tooltip{top:0}.smart-calendar smart-tooltip .smart-tooltip-content{border-top-left-radius:var(--smart-border-top-left-radius);border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius)}.smart-calendar input{background:inherit;color:inherit}.smart-calendar button:focus{border:1px solid var(--smart-outline);outline:0}.smart-calendar .smart-calendar-container{width:100%;height:100%;border:initial;padding:0}.smart-calendar .smart-calendar-container>.smart-calendar-body{position:relative;width:96%;height:calc(100% - var(--smart-calendar-header-height));display:flex;padding:2px;padding-left:initial;padding-right:initial;margin-left:2%;margin-right:2%;cursor:default;overflow:hidden;outline:initial;user-select:none;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;touch-action:none}.smart-calendar .smart-calendar-container>.smart-calendar-body:focus .smart-calendar-date-view-container .smart-calendar-cell:focus,.smart-calendar .smart-calendar-container>.smart-calendar-body:focus .smart-calendar-date-view-container .smart-calendar-cell[focus]{background-color:var(--smart-background);color:var(--smart-primary);border-color:var(--smart-primary)}.smart-calendar .smart-calendar-footer,.smart-calendar .smart-calendar-header{background:var(--smart-surface);color:var(--smart-surface-color);width:100%;outline:initial}.smart-calendar .smart-calendar-container>.smart-calendar-body>div{display:flex;flex-shrink:0;flex-wrap:wrap;font-size:inherit}.smart-calendar .smart-calendar-container>.smart-calendar-body .smart-hidden{display:none}.smart-calendar .smart-calendar-header{display:flex;align-items:center;justify-content:center;border:var(--smart-border-width) solid var(--smart-border);height:var(--smart-calendar-header-height);border-left-width:0;border-right-width:0;border-top-width:0;box-sizing:border-box;text-transform:var(--smart-calendar-header-text-transform)}.smart-calendar .smart-calendar-header.smart-hidden{display:none}.smart-calendar .smart-calendar-footer{display:flex;align-items:center;justify-content:center;border:var(--smart-border-width) solid var(--smart-border);height:var(--smart-calendar-footer-height);border-left-width:0;border-right-width:0;border-top-width:0;box-sizing:border-box;text-transform:var(--smart-calendar-footer-text-transform)}.smart-calendar .smart-calendar-footer.smart-hidden{display:none}.smart-calendar .smart-calendar-title{width:100%;padding:var(--smart-calendar-title-padding);font-size:inherit;font-family:inherit;background:var(--smart-primary);border:none;color:var(--smart-primary-color);user-select:none;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;overflow:hidden;display:flex;justify-content:center;flex-direction:column;text-transform:var(--smart-calendar-title-text-transform);height:calc(var(--smart-calendar-title-height))}.smart-calendar .smart-calendar-title.smart-hidden{display:none}.smart-calendar .smart-calendar-title div:first-of-type{font-size:70%}.smart-calendar .smart-calendar-title .smart-calendar-selected{opacity:1}.smart-calendar .smart-calendar-title div{position:relative;opacity:.5;font-size:125%;cursor:pointer;display:table;border:1px solid transparent}.smart-calendar .smart-calendar-cell[other-month]{background:var(--smart-background);color:var(--smart-background-color);border-color:var(--smart-border);opacity:.5}.smart-calendar .smart-calendar-cell[focus]{border-color:var(--smart-outline)}.smart-calendar .smart-calendar-date-element{cursor:default;align-items:center;border:1px solid transparent;position:relative;display:flex;width:74%;height:100%;outline:initial;overflow:hidden;text-align:center}.smart-calendar .smart-calendar-date-element:focus{border-color:var(--smart-outline)}.smart-calendar .smart-calendar-date-element>div{display:flex;justify-content:center;align-items:center;width:100%;height:100%;outline:initial;font-size:inherit}.smart-calendar .smart-calendar-date-element>div:first-of-type{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;user-select:none;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none}.smart-calendar .smart-calendar-date-element div.smart-hidden{display:none}.smart-calendar .smart-calendar-date-element .smart-ripple{background-color:var(--smart-button-color);opacity:.2}.smart-calendar .smart-calendar-button .smart-button{font-family:var(--smart-font-family-icon);padding:0;border-radius:0;border:none;background:0 0;min-height:initial}.smart-calendar .smart-calendar-button[next-month],.smart-calendar .smart-calendar-button[prev-month]{width:var(--smart-calendar-navigation-button-size);min-width:var(--smart-calendar-navigation-button-size);height:var(--smart-calendar-navigation-button-size);position:relative;font-size:initial;display:inline-block;font-weight:inherit;font-family:var(--smart-font-family-icon);border-radius:100%;background:0 0;border:none;color:inherit}.smart-calendar .smart-calendar-button[next-month][active] button,.smart-calendar .smart-calendar-button[prev-month][active] button{border:1px solid var(--smart-ui-state-hover);background-color:var(--smart-ui-state-hover);color:var(--smart-primary)}.smart-calendar .smart-calendar-button[next-year],.smart-calendar .smart-calendar-button[prev-year]{position:relative;display:block;cursor:default;font-size:10px;padding:0;margin:0;border-radius:0;border-color:var(--smart-border);border-left:none}.smart-calendar .smart-calendar-button[next-year] span:after{content:var(--smart-icon-arrow-up)}.smart-calendar .smart-calendar-button[prev-year]{border-top-color:transparent}.smart-calendar .smart-calendar-button[prev-year] span:after{content:var(--smart-icon-arrow-down)}.smart-calendar [next-month][focus] button,.smart-calendar [next-year][focus] button,.smart-calendar [prev-month][focus] button,.smart-calendar [prev-year][focus] button{border:1px solid var(--smart-border-focus);background-color:var(--smart-background-focus);outline:0}.smart-calendar .smart-calendar-list-view.smart-scroll-viewer{--smart-input-drop-down-menu-height:100%;--smart-input-drop-down-menu-width:100%;width:100%;height:100%;border:initial;position:absolute;color:inherit;text-align:center;top:0;left:0;opacity:initial;z-index:initial;padding:initial;float:initial;transform:initial;margin:initial;transition:initial;box-shadow:initial}.smart-calendar .smart-calendar-week .smart-calendar-cell,.smart-calendar .smart-calendar-week .smart-calendar-week-number{padding:0;text-overflow:ellipsis;width:var(--smart-calendar-cell-size);height:var(--smart-calendar-cell-size);line-height:calc(var(--smart-calendar-cell-size) - 2px);overflow:hidden;position:relative}.smart-calendar .smart-calendar-list-view.smart-scroll-viewer>.smart-container{max-height:initial}.smart-calendar .smart-calendar-list-view.smart-scroll-viewer a{pointer-events:none}.smart-calendar .smart-calendar-week{display:flex;overflow:hidden;text-align:center;justify-content:center}.smart-calendar .smart-calendar-week .smart-calendar-cell{border:1px solid transparent;border-top-left-radius:var(--smart-calendar-cell-border-top-left-radius);border-top-right-radius:var(--smart-calendar-cell-border-top-right-radius);border-bottom-left-radius:var(--smart-calendar-cell-border-bottom-left-radius);border-bottom-right-radius:var(--smart-calendar-cell-border-bottom-right-radius);margin-right:var(--smart-calendar-cell-spacing);margin-bottom:var(--smart-calendar-cell-spacing)}.smart-calendar .smart-calendar-week .smart-calendar-cell[selected],.smart-calendar .smart-calendar-week .smart-calendar-cell[selected][hover]{background-color:var(--smart-primary);color:var(--smart-primary-color);border-color:var(--smart-primary)}.smart-calendar .smart-calendar-week .smart-calendar-cell[today],.smart-calendar .smart-calendar-week .smart-calendar-cell[today][hover]{background:var(--smart-secondary);color:var(--smart-secondary-color);border-color:var(--smart-secondary)}.smart-calendar .smart-calendar-week .smart-calendar-cell[selected][today]{background-color:var(--smart-primary);color:var(--smart-primary-color);border-color:var(--smart-primary)}.smart-calendar .smart-calendar-week .smart-calendar-cell:focus:not([selected]),.smart-calendar .smart-calendar-week .smart-calendar-cell[focus]:not([selected]){background-color:var(--smart-background);color:var(--smart-primary);border-color:var(--smart-primary)}.smart-calendar .smart-calendar-week .smart-calendar-cell .smart-ripple{background-color:var(--smart-primary-color);opacity:.5}.smart-calendar .smart-calendar-week .smart-calendar-week-number{border:1px solid transparent;border-top-left-radius:var(--smart-calendar-cell-border-top-left-radius);border-top-right-radius:var(--smart-calendar-cell-border-top-right-radius);border-bottom-left-radius:var(--smart-calendar-cell-border-bottom-left-radius);border-bottom-right-radius:var(--smart-calendar-cell-border-bottom-right-radius);margin:0}.smart-calendar .smart-calendar-week.smart-hidden{display:none}.smart-calendar .smart-calendar-week div[restricted]{cursor:not-allowed;opacity:.55;text-decoration:line-through}.smart-calendar .smart-calendar-week div[hover]:not([restricted]){background-color:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover);border-color:var(--smart-ui-state-border-hover)}.smart-calendar .smart-calendar-week div[important]{background:var(--smart-calendar-important-date-background);color:var(--smart-calendar-important-date-color);border-color:var(--smart-calendar-important-date-border-color)}@-moz-document url-prefix(){.smart-calendar .smart-calendar-week div{padding:initial}}.smart-calendar .smart-calendar-week-number{display:none;margin:auto}.smart-calendar .smart-calendar-week-titles{display:flex;overflow:hidden;text-align:center;justify-content:center}.smart-calendar .smart-calendar-week-titles div:first-child{display:none;margin:auto}.smart-calendar .smart-calendar-week-titles .smart-calendar-week-title{text-overflow:ellipsis;overflow:hidden;border:1px solid transparent;padding:0;border-top-left-radius:var(--smart-calendar-cell-border-top-left-radius);border-top-right-radius:var(--smart-calendar-cell-border-top-right-radius);border-bottom-left-radius:var(--smart-calendar-cell-border-bottom-left-radius);border-bottom-right-radius:var(--smart-calendar-cell-border-bottom-right-radius);width:var(--smart-calendar-cell-size);height:var(--smart-calendar-cell-size);line-height:calc(var(--smart-calendar-cell-size) - 2px);margin-right:var(--smart-calendar-cell-spacing);margin-bottom:var(--smart-calendar-cell-spacing);position:relative;text-transform:var(--smart-calendar-week-title-text-transform)}.smart-calendar .smart-calendar-months-container{order:1;width:100%;height:100%;align-items:center}.smart-calendar .smart-calendar-month{display:flex;overflow:hidden;text-align:center;justify-content:center;flex-direction:column;max-width:var(--smart-calendar-default-width);margin:auto}.smart-calendar .smart-calendar-month-name{display:none}.smart-calendar .smart-calendar-month-separator{display:flex;overflow:hidden;text-align:center;justify-content:center;width:50%;order:2}.smart-calendar .smart-calendar-month-element{position:relative;width:70%;height:80%;margin:5% 0;text-align:center;font-size:inherit}.smart-calendar .smart-calendar-year-container:focus{border:1px solid var(--smart-outline);outline:0}.smart-calendar .smart-calendar-year-element{outline:0;width:25%;height:80%;margin-left:5%;padding:2px;text-align:center;font-size:inherit;border-style:solid;border-width:1px;border-color:var(--smart-border);border-top-left-radius:var(--smart-border-top-left-radius);border-top-right-radius:0;border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:0;background:var(--smart-background)}.smart-calendar .smart-calendar-year-element:focus{border-color:var(--smart-outline)}.smart-calendar .smart-calendar-year-elements{display:flex;width:10%;height:80%;flex-direction:column;align-items:center;justify-content:space-around}.smart-calendar .smart-calendar-year-elements>smart-repeat-button{height:50%;width:100%}.smart-calendar .smart-calendar-year-selector{display:inline-block}.smart-calendar .smart-calendar-next-months-container{order:3;width:100%;height:100%;align-items:center}@-moz-document url-prefix(){.smart-calendar .smart-calendar-months-container,.smart-calendar .smart-calendar-next-months-container{line-height:initial}}.smart-calendar .smart-calendar-date-container:focus{border:1px solid var(--smart-outline);outline:0}.smart-calendar .smart-calendar-date-view-container{width:100%;height:100%;text-align:center;flex-direction:row;align-items:center}.smart-calendar .smart-calendar-date-view-container.smart-list-display-mode-view{flex-direction:column}.smart-calendar .smart-calendar-date-view-container .smart-calendar-cell{display:flex;justify-content:center;align-items:center;position:relative;width:23%;margin:0 1%;height:23%;border:1px solid transparent;border-top-left-radius:var(--smart-calendar-cell-border-top-left-radius);border-top-right-radius:var(--smart-calendar-cell-border-top-right-radius);border-bottom-left-radius:var(--smart-calendar-cell-border-bottom-left-radius);border-bottom-right-radius:var(--smart-calendar-cell-border-bottom-right-radius)}.smart-calendar .smart-calendar-date-view-container .smart-calendar-cell[focus]{border-color:var(--smart-outline)}.smart-calendar .smart-calendar-date-view-container .smart-calendar-cell[other-month]{background:var(--smart-background);color:var(--smart-background-color);border-color:var(--smart-border);opacity:.5}.smart-calendar .smart-calendar-date-view-container .smart-visibility-hidden{visibility:visible;opacity:.55}.smart-calendar .smart-calendar-animation-panel{position:absolute;background-color:var(--smart-background);justify-content:center;align-items:center;pointer-events:none}.smart-calendar[months] .smart-calendar-month{width:50%}.smart-calendar[months] .smart-calendar-month-name{display:initial}.smart-calendar[hide-day-names] .smart-calendar-week-titles,.smart-calendar[months="1"] .smart-calendar-month-name{display:none}.smart-calendar[months]:not([months="1"]){width:calc(2 * var(--smart-calendar-default-width) + var(--smart-calendar-cell-size));height:calc(var(--smart-calendar-title-height) + var(--smart-calendar-cell-spacing) + 7 * (var(--smart-calendar-cell-spacing) + var(--smart-calendar-cell-size)) + var(--smart-calendar-header-height) + var(--smart-calendar-footer-height))}.smart-calendar[months="1"]{width:var(--smart-calendar-default-width);height:var(--smart-calendar-default-height)}.smart-calendar[months="1"] .smart-calendar-month{width:100%;font-size:100%}.smart-calendar[months="3"],.smart-calendar[months="4"]{--smart-calendar-default-height:calc(2 * calc(var(--smart-calendar-title-height) + var(--smart-calendar-cell-spacing) + 7 * (var(--smart-calendar-cell-spacing) + var(--smart-calendar-cell-size)) + var(--smart-calendar-header-height)))}.smart-calendar[months="5"],.smart-calendar[months="6"]{--smart-calendar-default-height:calc(3 * calc(var(--smart-calendar-title-height) + var(--smart-calendar-cell-spacing) + 7 * (var(--smart-calendar-cell-spacing) + var(--smart-calendar-cell-size)) + var(--smart-calendar-header-height)))}.smart-calendar[months="7"],.smart-calendar[months="8"]{--smart-calendar-default-height:calc(4 * calc(var(--smart-calendar-title-height) + var(--smart-calendar-cell-spacing) + 7 * (var(--smart-calendar-cell-spacing) + var(--smart-calendar-cell-size)) + var(--smart-calendar-header-height)))}.smart-calendar[months="9"],.smart-calendar[months="10"]{--smart-calendar-default-height:calc(5 * calc(var(--smart-calendar-title-height) + var(--smart-calendar-cell-spacing) + 7 * (var(--smart-calendar-cell-spacing) + var(--smart-calendar-cell-size)) + var(--smart-calendar-header-height)))}.smart-calendar[months="12"],.smart-calendar[months="11"]{--smart-calendar-default-height:calc(6 * calc(var(--smart-calendar-title-height) + var(--smart-calendar-cell-spacing) + 7 * (var(--smart-calendar-cell-spacing) + var(--smart-calendar-cell-size)) + var(--smart-calendar-header-height)))}@media only screen and (max-width:768px){.smart-calendar[months] .smart-calendar-month{width:100%}.smart-calendar[months="2"]{height:calc(var(--smart-calendar-title-height) + var(--smart-calendar-cell-spacing) + 7 * (var(--smart-calendar-cell-spacing) + var(--smart-calendar-cell-size)) + var(--smart-calendar-header-height) + var(--smart-calendar-footer-height))}.smart-calendar[months="3"]{--smart-calendar-default-height:calc(3 * calc(var(--smart-calendar-title-height) + var(--smart-calendar-cell-spacing) + 7 * (var(--smart-calendar-cell-spacing) + var(--smart-calendar-cell-size)) + var(--smart-calendar-header-height)))}.smart-calendar[months="4"]{--smart-calendar-default-height:calc(4 * calc(var(--smart-calendar-title-height) + var(--smart-calendar-cell-spacing) + 7 * (var(--smart-calendar-cell-spacing) + var(--smart-calendar-cell-size)) + var(--smart-calendar-header-height)))}.smart-calendar[months="5"]{--smart-calendar-default-height:calc(5 * calc(var(--smart-calendar-title-height) + var(--smart-calendar-cell-spacing) + 7 * (var(--smart-calendar-cell-spacing) + var(--smart-calendar-cell-size)) + var(--smart-calendar-header-height)))}.smart-calendar[months="6"]{--smart-calendar-default-height:calc(6 * calc(var(--smart-calendar-title-height) + var(--smart-calendar-cell-spacing) + 7 * (var(--smart-calendar-cell-spacing) + var(--smart-calendar-cell-size)) + var(--smart-calendar-header-height)))}.smart-calendar[months="7"]{--smart-calendar-default-height:calc(7 * calc(var(--smart-calendar-title-height) + var(--smart-calendar-cell-spacing) + 7 * (var(--smart-calendar-cell-spacing) + var(--smart-calendar-cell-size)) + var(--smart-calendar-header-height)))}.smart-calendar[months="8"]{--smart-calendar-default-height:calc(8 * calc(var(--smart-calendar-title-height) + var(--smart-calendar-cell-spacing) + 7 * (var(--smart-calendar-cell-spacing) + var(--smart-calendar-cell-size)) + var(--smart-calendar-header-height)))}.smart-calendar[months="9"]{--smart-calendar-default-height:calc(9 * calc(var(--smart-calendar-title-height) + var(--smart-calendar-cell-spacing) + 7 * (var(--smart-calendar-cell-spacing) + var(--smart-calendar-cell-size)) + var(--smart-calendar-header-height)))}.smart-calendar[months="10"]{--smart-calendar-default-height:calc(10 * calc(var(--smart-calendar-title-height) + var(--smart-calendar-cell-spacing) + 7 * (var(--smart-calendar-cell-spacing) + var(--smart-calendar-cell-size)) + var(--smart-calendar-header-height)))}.smart-calendar[months="11"]{--smart-calendar-default-height:calc(11 * calc(var(--smart-calendar-title-height) + var(--smart-calendar-cell-spacing) + 7 * (var(--smart-calendar-cell-spacing) + var(--smart-calendar-cell-size)) + var(--smart-calendar-header-height)))}.smart-calendar[months="12"]{--smart-calendar-default-height:calc(12 * calc(var(--smart-calendar-title-height) + var(--smart-calendar-cell-spacing) + 7 * (var(--smart-calendar-cell-spacing) + var(--smart-calendar-cell-size)) + var(--smart-calendar-header-height)))}}.smart-calendar[view-sections*=footer]{--smart-calendar-default-height:calc(var(--smart-calendar-title-height) + var(--smart-calendar-cell-spacing) + 7 * (var(--smart-calendar-cell-spacing) + var(--smart-calendar-cell-size)) + var(--smart-calendar-header-height) + var(--smart-calendar-footer-height))}.smart-calendar[view-sections*=footer][view-sections*=header] .smart-calendar-container>.smart-calendar-body{height:calc(100% - var(--smart-calendar-header-height) - var(--smart-calendar-footer-height))}.smart-calendar[view-sections*=title]{--smart-calendar-default-height:calc(var(--smart-calendar-title-height) + var(--smart-calendar-cell-spacing) + 7 * (var(--smart-calendar-cell-spacing) + var(--smart-calendar-cell-size)) + var(--smart-calendar-header-height))}.smart-calendar[view-sections*=title] .smart-calendar-container{width:100%;height:calc(100% - var(--smart-calendar-title-height))}.smart-calendar[view-sections*=title][view-sections*=footer]{--smart-calendar-default-height:calc(var(--smart-calendar-title-height) + var(--smart-calendar-cell-spacing) + 7 * (var(--smart-calendar-cell-spacing) + var(--smart-calendar-cell-size)) + var(--smart-calendar-header-height) + var(--smart-calendar-footer-height))}.smart-calendar[scroll-buttons-position=near] .smart-calendar-button[prev-month]{order:1}.smart-calendar[scroll-buttons-position=near] .smart-calendar-button[next-month]{order:2}.smart-calendar[scroll-buttons-position=near] .smart-calendar-date-element{order:3}.smart-calendar[scroll-buttons-position=far] .smart-calendar-date-element{order:1}.smart-calendar[scroll-buttons-position=far] .smart-calendar-button[prev-month]{order:2}.smart-calendar[scroll-buttons-position=far] .smart-calendar-button[next-month]{order:3}.smart-calendar[scroll-buttons-navigation-mode=portrait] .smart-calendar-month-separator{width:100%;height:50%}.smart-calendar[scroll-buttons-navigation-mode=portrait] .smart-calendar-container>.smart-calendar-body{flex-direction:column}.smart-calendar[calendar-mode=classic] .smart-calendar-title div{cursor:initial}.smart-calendar[calendar-mode=classic] .smart-calendar-date-element{align-items:initial;overflow:initial}.smart-calendar[display-mode-view=list][display-mode=decade] .smart-calendar-container>.smart-calendar-body,.smart-calendar[display-mode-view=list][display-mode=year] .smart-calendar-container>.smart-calendar-body{touch-action:auto}.smart-calendar[hide-other-month-days] .smart-calendar-cell[other-month]{visibility:hidden}.smart-calendar[week-numbers]{--smart-calendar-default-width:calc(var(--smart-calendar-cell-spacing) + 8 * (var(--smart-calendar-cell-spacing) + var(--smart-calendar-cell-size)))}.smart-calendar[week-numbers][view-sections*=title][view=landscape]{--smart-calendar-default-width:calc(var(--smart-calendar-title-height) + var(--smart-calendar-cell-spacing) + 8 * (var(--smart-calendar-cell-spacing) + var(--smart-calendar-cell-size)))}.smart-calendar[week-numbers] .smart-calendar-week-number,.smart-calendar[week-numbers] .smart-calendar-week-titles div:first-child{display:initial}.smart-calendar[view=portrait].smart-container,.smart-calendar[view=portrait]>.smart-container{display:flex;justify-content:center;flex-direction:column}.smart-calendar[view=landscape]{--smart-calendar-default-width:calc(var(--smart-calendar-title-height) + var(--smart-calendar-cell-spacing) + 7 * (var(--smart-calendar-cell-spacing) + var(--smart-calendar-cell-size)));--smart-calendar-default-height:calc(var(--smart-calendar-cell-spacing) + 7 * (var(--smart-calendar-cell-spacing) + var(--smart-calendar-cell-size)) + var(--smart-calendar-header-height))}.smart-calendar[view=landscape].smart-container,.smart-calendar[view=landscape]>.smart-container{flex-direction:row}.smart-calendar[view=landscape] .smart-calendar-container{width:calc(100% - var(--smart-calendar-title-height));height:100%}.smart-calendar[view=landscape] .smart-calendar-title{width:calc(var(--smart-calendar-title-height));height:100%;justify-content:flex-start}.smart-calendar[view=landscape][view-sections*=footer]{--smart-calendar-default-height:calc(var(--smart-calendar-cell-spacing) + 7 * (var(--smart-calendar-cell-spacing) + var(--smart-calendar-cell-size)) + var(--smart-calendar-header-height) + var(--smart-calendar-footer-height))}.smart-calendar[animation=none] .smart-calendar-body .smart-calendar-month-separator,.smart-calendar[animation=none] .smart-calendar-body .smart-calendar-next-months-container{display:none}.smart-calendar[right-to-left] .smart-calendar-date-element>div,.smart-calendar[right-to-left] .smart-calendar-date-view-container,.smart-calendar[right-to-left] .smart-calendar-date-view-container .smart-calendar-cell,.smart-calendar[right-to-left] .smart-calendar-footer,.smart-calendar[right-to-left] .smart-calendar-title,.smart-calendar[right-to-left] .smart-calendar-week .smart-calendar-cell,.smart-calendar[right-to-left] .smart-calendar-week .smart-calendar-week-number,.smart-calendar[right-to-left] .smart-calendar-week-titles .smart-calendar-week-title{direction:rtl}.smart-calendar[right-to-left] .smart-calendar-month-element{direction:initial}.smart-calendar[right-to-left] .smart-calendar-year-element{margin-left:initial;margin-right:5%}.smart-calendar[right-to-left][view=landscape]>.smart-container{flex-direction:row-reverse}
.smart-cards{display:flex;flex-wrap:wrap;align-items:flex-start;justify-content:space-evenly;width:100%;max-width:1500px;margin-left:auto;margin-right:auto;background-color:var(--smart-surface)}@media only screen and (max-width:768px){.smart-cards smart-card{margin:0 10px 10px}}smart-card{display:inline-block;width:30.5%;min-height:20px;margin:1%;box-shadow:var(--smart-elevation-2);box-sizing:border-box;font-size:inherit}@media only screen and (max-width:1024px){smart-card{display:inline-block;width:47%}}@media only screen and (max-width:768px){smart-card{display:block;width:100%;margin:0;max-height:100vh;overflow-y:auto}}smart-card:hover{box-shadow:var(--smart-elevation-4)}smart-card.simple{box-shadow:unset;width:auto;margin:0}smart-card[right-to-left].smart-container,smart-card[right-to-left]>.smart-container{direction:rtl}
.smart-card-view{width:var(--smart-card-view-default-width);min-width:var(--smart-card-view-column-min-width);height:var(--smart-card-view-default-height);min-height:100px}.smart-card-view.smart-container{position:relative;contain:layout style}.smart-card-view.smart-container>smart-scroll-viewer,.smart-card-view>.smart-container>smart-scroll-viewer{position:relative;contain:layout style;border:none;width:100%;height:100%;background-color:transparent}.smart-card-view.smart-container>smart-scroll-viewer .smart-scroll-viewer-content-container,.smart-card-view>.smart-container>smart-scroll-viewer .smart-scroll-viewer-content-container{display:flex;padding:0}.smart-card-view.smart-container[modal],.smart-card-view>.smart-container[modal]{position:relative;pointer-events:none;-webkit-user-select:none;user-select:none}.smart-card-view.smart-container[modal]:after,.smart-card-view>.smart-container[modal]:after{content:"";position:absolute;width:100%;height:100%;top:0;left:0;background-color:#000;opacity:.3;pointer-events:none;cursor:default;-webkit-user-select:none;user-select:none}.smart-card-view.smart-container[modal] .smart-indicator,.smart-card-view>.smart-container[modal] .smart-indicator{position:relative;pointer-events:none;-webkit-user-select:none;user-select:none}.smart-card-view.smart-container[modal] .smart-carousel-item.smart-active,.smart-card-view>.smart-container[modal] .smart-carousel-item.smart-active{pointer-events:none}.smart-card-view smart-card{display:flex;margin:0;border:var(--smart-border-width) solid;width:unset;padding:var(--smart-data-view-padding);overflow:auto;font-family:inherit;font-size:inherit;background-color:var(--smart-background);color:var(--smart-background-color);border-top-left-radius:var(--smart-border-top-left-radius);border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius)}.smart-card-view smart-card>.smart-container{display:grid;grid-template-rows:1fr;grid-row-gap:var(--smart-card-view-vertical-offset);overflow:auto}.smart-card-view smart-card .smart-arrow-up.collapsed{transform:rotate(-180deg)}.smart-card-view smart-card .smart-card-view-content.smart-visibility-hidden{margin-top:0;height:0;transform:scaleY(0);opacity:0}.smart-card-view smart-card.collapsed{height:auto!important;align-self:start}.smart-card-view smart-card[updating] .smart-card-view-content,.smart-card-view smart-card[updating] .smart-card-view-title .smart-arrow-up{transition:none}.smart-card-view smart-card.drop-target{position:relative}.smart-card-view smart-card.drop-target:after{content:"";position:absolute;width:10%;height:5000px;background-color:var(--smart-primary);text-decoration:underline;top:0}.smart-card-view smart-card.drop-target.left:after{left:0}.smart-card-view smart-card.drop-target.right:after{right:0}.smart-card-view smart-card.dragged{position:relative}.smart-card-view smart-card.dragged:after{content:"";position:absolute;top:0;left:0;width:100%;height:5000px;background-image:linear-gradient(45deg,rgba(0,0,0,.1) 25%,transparent 25%,transparent 50%,rgba(0,0,0,.1) 50%,rgba(0,0,0,.1) 75%,transparent 75%,transparent);background-size:3em 3em;opacity:.8}.smart-card-view smart-carousel{width:100%}.smart-card-view smart-carousel .smart-carousel-item{border-bottom:1px solid var(--smart-border);background-size:cover}.smart-card-view smart-carousel .smart-carousel-item.smart-active{pointer-events:none}.smart-card-view smart-carousel .smart-indicator{pointer-events:all}.smart-card-view smart-carousel .smart-indicator:only-child{display:none}.smart-card-view smart-carousel *{pointer-events:none}.smart-card-view[header-position=bottom].smart-container>smart-scroll-viewer,.smart-card-view[header-position=top].smart-container>smart-scroll-viewer{height:calc(100% - var(--smart-card-view-header-height))}.smart-card-view .smart-card-container{border:none;width:100%;height:100%;display:grid;grid-template-columns:repeat(auto-fit,minmax(var(--smart-card-view-column-min-width),1fr));grid-column-gap:var(--smart-card-view-column-gap,var(--smart-card-view-gap));grid-row-gap:var(--smart-card-view-row-gap,var(--smart-card-view-gap))}.smart-card-view .smart-data-view-header{height:var(--smart-card-view-header-height)}.smart-card-view .smart-data-view-header-drop-down .smart-card-view-customize-top{padding:var(--smart-data-view-padding);padding-bottom:0}.smart-card-view .smart-data-view-header-drop-down .smart-card-view-customize-top>div{display:flex;align-items:center;justify-content:space-between}.smart-card-view .smart-data-view-header-drop-down .smart-card-view-customize-top smart-switch-button{margin-left:30px;margin-right:30px;position:relative;z-index:1}.smart-card-view .smart-data-view-header-drop-down .smart-card-view-customize-top smart-switch-button:before{content:attr(crop);position:absolute;left:-30px;top:50%;transform:translateY(-50%);font-size:11px}.smart-card-view .smart-data-view-header-drop-down .smart-card-view-customize-top smart-switch-button:after{position:absolute;top:50%;transform:translateY(-50%);font-size:11px;content:attr(fit);left:calc(100% + 5px)}.smart-card-view .smart-data-view-header-drop-down .smart-card-view-customize-top smart-input{width:100%}.smart-card-view .smart-scroll-viewer-container.vscroll .smart-card-container{padding-right:3px}.smart-card-view .smart-card-data-container{display:grid;grid-template-rows:1fr;padding:0 .5rem}.smart-card-view .smart-card-view-value{overflow:hidden;text-overflow:ellipsis;word-break:break-word}.smart-card-view .smart-card-view-title{font-size:calc(var(--smart-font-size) + 3px);font-weight:700;display:grid;grid-template-columns:1fr auto;width:100%;align-items:center;overflow:hidden;text-overflow:ellipsis}.smart-card-view .smart-card-view-title:first-child{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.smart-card-view .smart-card-view-title .smart-arrow-up{display:none;border-radius:50%;width:16px;height:16px;background-color:var(--smart-background-color);opacity:.7;cursor:pointer}.smart-card-view .smart-card-view-title .smart-arrow-up:after{color:var(--smart-background)}.smart-card-view .smart-card-view-title .smart-arrow-up:hover{opacity:1}.smart-card-view .smart-card-view-label{margin-bottom:calc(var(--smart-card-view-vertical-offset)/ 3);text-transform:uppercase;font-size:calc(var(--smart-font-size) - 2px);opacity:.7;overflow:hidden;text-overflow:ellipsis}.smart-card-view .smart-card-view-label.icon{position:relative;padding-left:30px}.smart-card-view .smart-card-view-label.icon:after{content:"";position:absolute;left:0;top:0;width:30px;height:100%;background-repeat:no-repeat;background-position:center}.smart-card-view .smart-card-view-content{margin-top:var(--smart-card-view-vertical-offset);transform:scaleY(1);transform-origin:top;opacity:1}.smart-card-view .smart-card-view-cell{margin-bottom:var(--smart-card-view-vertical-offset)}.smart-card-view .smart-card-view-cell:last-child,.smart-card-view[cell-orientation=horizontal] .smart-card-view-label{margin-bottom:0}.smart-card-view .smart-add-new-button{display:none}.smart-card-view[cell-orientation=horizontal] .smart-card-view-cell{display:flex;align-items:center;justify-content:space-between}.smart-card-view[cell-orientation=horizontal] .smart-card-view-value{text-align:right}.smart-card-view[cover-mode=fit] .smart-carousel-item{background-size:contain}.smart-card-view[editable] smart-card{cursor:pointer}.smart-card-view[add-new-button] .smart-add-new-button{display:block;position:absolute;bottom:20px;right:calc(23px + var(--smart-scroll-bar-size));width:var(--smart-card-view-add-new-button-size);height:var(--smart-card-view-add-new-button-size);border-radius:50%;background-color:var(--smart-primary);color:var(--smart-primary-color);cursor:pointer}.smart-card-view[add-new-button] .smart-add-new-button:after{content:var(--smart-icon-plus);display:flex;align-items:center;justify-content:center;margin-top:2px;width:100%;height:100%;font-family:var(--smart-font-family-icon);font-size:20px}.smart-card-view[add-new-button] .smart-add-new-button:hover{transform:scale(1.2,1.2)}.smart-card-view[add-new-button]:not([animation=none]) .smart-add-new-button{transition:transform cubic-bezier(.81,.27,0,.93) .5s}.smart-card-view[empty] .smart-card-view-header{pointer-events:none;opacity:.55}.smart-card-view[empty] .smart-card-container:after{content:attr(no-data)}.smart-card-view[no-matches] .smart-card-container:after{content:attr(no-matches)}.smart-card-view[empty] .smart-card-container,.smart-card-view[empty] .smart-scroll-viewer-content-container,.smart-card-view[no-matches] .smart-card-container,.smart-card-view[no-matches] .smart-scroll-viewer-content-container{height:100%}.smart-card-view[empty] .smart-card-container:after,.smart-card-view[no-matches] .smart-card-container:after{display:flex;align-items:center;justify-content:center;font-style:italic}.smart-card-view[loading] smart-card>.smart-container{visibility:hidden}.smart-card-view[loading] smart-card.smart-hidden{display:flex!important}.smart-card-view[loading] .smart-card-view-content{transition:none}.smart-card-view[cover-field]:not([cover-field=null]) smart-card>.smart-container{grid-template-rows:var(--smart-card-view-cover-height) 1fr}.smart-card-view[collapsible] .smart-card-data-container,.smart-card-view[title-field] .smart-card-data-container{grid-template-rows:auto 1fr}.smart-card-view:not([collapsible]) .smart-card-view-title.empty{display:none}.smart-card-view:not([collapsible]) .smart-card-view-title.empty:first-child+.smart-card-view-content{margin-top:0}.smart-card-view:not([animation=none]) .smart-card-view-title .smart-arrow-up{transition:transform .2s ease-in}.smart-card-view:not([animation=none]) .smart-card-view-content{transition-property:margin-top,height,transform,visibility,opacity;transition-duration:.2s;transition-timing-function:ease-in}.smart-card-view[collapsible] .smart-card-view-title .smart-arrow-up{display:block}.smart-card-view[dragging] smart-card{overflow:hidden}.smart-card-view[allow-drag] .smart-card-data-container{-webkit-user-select:none;user-select:none}.smart-card-view[allow-drag] .smart-card-view-content{pointer-events:none}.smart-window.smart-card-view-window{--smart-numeric-text-box-text-align:left;--smart-window-default-height:75%;cursor:initial;z-index:999}.smart-window.smart-card-view-window .smart-header{font-size:calc(var(--smart-font-size) * 1.5)}.smart-window.smart-card-view-window .smart-next-button:after,.smart-window.smart-card-view-window .smart-prev-button:after{font-size:calc(100% - 2px)}.smart-window.smart-card-view-window .smart-prev-button:after{content:var(--smart-icon-arrow-up)}.smart-window.smart-card-view-window .smart-next-button:after{content:var(--smart-icon-arrow-down)}.smart-window.smart-card-view-window .smart-card-view-label{overflow:hidden;text-overflow:ellipsis;display:flex;justify-content:space-between;margin-bottom:calc(var(--smart-card-view-vertical-offset)/ 3);text-transform:uppercase;font-size:calc(var(--smart-font-size) - 2px);opacity:.7}.smart-window.smart-card-view-window .smart-card-view-label .toggle-visibility{font-family:var(--smart-font-family-icon);cursor:pointer;color:var(--smart-color)}.smart-window.smart-card-view-window .smart-card-view-label .toggle-visibility:after{content:var(--smart-icon-visibility)}.smart-window.smart-card-view-window .smart-card-view-label .toggle-visibility.hidden:after{content:var(--smart-icon-visibility-off)}.smart-window.smart-card-view-window .smart-card-view-label:not(:first-child){margin-top:var(--smart-card-view-vertical-offset)}.smart-window.smart-card-view-window .smart-card-view-label.icon{position:relative;padding-left:30px}.smart-window.smart-card-view-window .smart-card-view-label.icon:after{content:"";position:absolute;left:0;top:0;width:30px;height:100%;background-repeat:no-repeat;background-position:center}.smart-window.smart-card-view-window .smart-content-container>.smart-content{display:block;padding:20px}.smart-window.smart-card-view-window .smart-content-container>.smart-footer{display:flex;justify-content:space-evenly;align-items:center}.smart-window.smart-card-view-window .smart-footer smart-button{--smart-button-padding:0;width:25%;height:100%}.smart-window.smart-card-view-window .smart-card-view-editor{width:100%}.smart-window.smart-card-view-window .smart-card-view-editor.image .thumbnail{position:relative;display:inline-block;margin-right:5px;border:var(--smart-border-width) solid var(--smart-border);width:75px;height:75px;background-position:center;background-repeat:no-repeat;background-size:cover;cursor:pointer}.smart-window.smart-card-view-window .smart-card-view-editor.image .thumbnail:hover:after{content:var(--smart-icon-close);position:absolute;display:flex;justify-content:center;align-items:center;width:100%;height:100%;left:0;top:0;background-color:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover);font-family:var(--smart-font-family-icon);font-size:50px;opacity:.4}.smart-card-view[right-to-left] .smart-card-view-label.icon:after,.smart-window.smart-card-view-window[right-to-left] .smart-card-view-label.icon:after{left:initial;right:0}.smart-window.smart-card-view-window .smart-card-view-editor.image .label{margin-top:3px;font-size:calc(var(--smart-font-size) - 3px);text-transform:uppercase;opacity:.7}.smart-window.smart-card-view-window .smart-card-view-editor.image .container{display:flex;flex-direction:row;justify-content:space-between;align-items:stretch;margin-top:5px;height:30px}.smart-window.smart-card-view-window .smart-card-view-editor.image smart-input{width:calc(100% - 40px);height:100%}.smart-window.smart-card-view-window .smart-card-view-editor.image smart-button{--smart-button-padding:0;width:30px;height:100%;font-size:20px}.smart-window.smart-card-view-window textarea.smart-card-view-editor{min-height:150px;resize:vertical;border-color:var(--smart-border);border-top-right-radius:var(--smart-border-top-right-radius);border-top-left-radius:var(--smart-border-top-left-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);font-family:inherit;font-size:inherit}.smart-window.smart-card-view-window textarea.smart-card-view-editor:hover{border-color:var(--smart-ui-state-border-hover)}.smart-window.smart-card-view-window textarea.smart-card-view-editor:focus{outline:0;border-color:var(--smart-outline)}.smart-card-view-drag-feedback{position:absolute;display:flex;align-items:center;box-shadow:var(--smart-elevation-8);border:var(--smart-border-width) solid var(--smart-border);border-radius:var(--smart-border-radius);padding:5px;white-space:nowrap;font-family:var(--smart-font-family);font-size:20px;background-color:var(--smart-background);color:var(--smart-background-color);z-index:10000;opacity:.85}.smart-card-view-drag-feedback>.drag-feedback-thumbnail{width:50px;height:50px;background-size:cover}.smart-card-view-drag-feedback:nth-child(2){margin-left:10px}.smart-card-view[right-to-left] .smart-card-view-label.icon{padding-left:0;padding-right:30px}.smart-card-view[right-to-left] .smart-card-view-customize-top{direction:rtl}.smart-card-view[right-to-left] .smart-scroll-viewer-container.vscroll .smart-card-container{padding-left:3px;padding-right:initial}.smart-window.smart-card-view-window[right-to-left] .smart-card-view-label.icon{padding-left:0;padding-right:30px}.smart-card-view-drag-feedback[right-to-left]{direction:rtl}.smart-card-view-drag-feedback[right-to-left]:nth-child(2){margin-right:10px;margin-left:initial}.smart-column-panel[right-to-left] .smart-grid-panel-container-footer,.smart-group-panel[right-to-left] .smart-grid-panel-container-footer,.smart-multi-column-filter-panel[right-to-left] .smart-grid-panel-container-footer,.smart-sort-panel[right-to-left] .smart-grid-panel-container-footer{flex-direction:row-reverse}.smart-column-panel[right-to-left] .smart-grid-panel-buttons-container .smart-grid-panel-apply-button,.smart-group-panel[right-to-left] .smart-grid-panel-buttons-container .smart-grid-panel-apply-button,.smart-multi-column-filter-panel[right-to-left] .smart-grid-panel-buttons-container .smart-grid-panel-apply-button,.smart-sort-panel[right-to-left] .smart-grid-panel-buttons-container .smart-grid-panel-apply-button{margin-right:15px;margin-left:initial}
smart-carousel .smart-carousel-item,smart-carousel .smart-carousel-item .smart-carousel-item-container{pointer-events:none;background-repeat:no-repeat;background-position:center;box-sizing:border-box;height:100%}smart-carousel{width:var(--smart-carousel-default-width);height:var(--smart-carousel-default-height)}smart-carousel.smart-container,smart-carousel>.smart-container{display:block;position:relative;width:100%;height:100%}smart-carousel .smart-items-container{position:relative;width:100%;height:100%;box-sizing:border-box;overflow:hidden}smart-carousel[disabled]{opacity:.55;cursor:default;pointer-events:none}smart-carousel[swipe]{-webkit-user-select:none;user-select:none}smart-carousel .smart-carousel-item{width:100%;position:absolute;left:0;top:0;opacity:0;z-index:0;-webkit-user-select:none;user-select:none}smart-carousel .smart-carousel-item .smart-carousel-item-container{-webkit-user-select:text;user-select:text;position:relative;width:100%;padding-top:50px;z-index:1;background-size:cover}smart-carousel .smart-carousel-item .smart-carousel-item-content,smart-carousel .smart-carousel-item .smart-carousel-item-label{text-align:center;box-sizing:border-box;position:absolute;top:30%;left:50%;transform:translate(-50%,-50%)}smart-carousel .smart-carousel-item .smart-carousel-item-content{top:40%;transform:translate(-50%,0)}smart-carousel .smart-carousel-item .smart-carousel-html-content{position:absolute;left:0;top:0;width:100%;height:100%;z-index:0;box-sizing:border-box}smart-carousel .smart-carousel-item.smart-active{opacity:1;pointer-events:all;-webkit-user-select:text;user-select:text}smart-carousel .smart-arrow{position:absolute;top:0;width:30px;height:100%;cursor:pointer;opacity:.6;display:block}smart-carousel[hide-arrows] .smart-arrow,smart-carousel[hide-indicators] .smart-indicators-container{display:none}smart-carousel .smart-arrow:after{font-size:20px;position:absolute;left:0;top:0;pointer-events:none;-webkit-user-select:none;user-select:none}smart-carousel .smart-arrow:focus,smart-carousel .smart-arrow:hover{opacity:.8}smart-carousel .smart-arrow:active{opacity:1}smart-carousel .smart-arrow>.smart-button{border-width:0}smart-carousel .smart-arrow>.smart-button:active{background-color:transparent}smart-carousel .smart-arrow[disabled]{opacity:.4;pointer-events:none}smart-carousel .smart-arrow.smart-arrow-left{left:0}smart-carousel .smart-arrow.smart-arrow-right{right:0}smart-carousel .smart-indicators-container{position:absolute;bottom:10px;left:50%;transform:translate(-50%);display:flex;flex-direction:row;align-items:center}smart-carousel .smart-indicators-container .smart-indicator{width:10px;height:10px;border:1px solid gray;background-color:#fff;margin:2px;cursor:pointer;box-sizing:content-box;opacity:.5}smart-carousel .smart-indicators-container .smart-indicator.smart-active{opacity:.9;border-width:3px}smart-carousel .smart-indicators-container .smart-indicator:hover{opacity:.7}smart-carousel:not([animation=none]) .smart-carousel-item{animation-duration:1s}smart-carousel:not([animation=none]) .smart-carousel-item.smart-active.smart-animate-trigger,smart-carousel:not([animation=none]).fade .smart-carousel-item.smart-active.smart-animate-trigger{animation-name:carousel-active-fade}smart-carousel:not([animation=none]) .smart-carousel-item.smart-out.smart-animate-trigger,smart-carousel:not([animation=none]).fade .smart-carousel-item.smart-out.smart-animate-trigger{animation-name:carousel-out-fade}smart-carousel:not([animation=none]).slide .smart-carousel-item.smart-active.smart-animate-trigger,smart-carousel:not([animation=none]).slide-left .smart-carousel-item.smart-active.smart-animate-trigger{animation-name:carousel-active-slide}smart-carousel:not([animation=none]).slide .smart-carousel-item.smart-out.smart-animate-trigger,smart-carousel:not([animation=none]).slide-left .smart-carousel-item.smart-out.smart-animate-trigger{animation-name:carousel-out-slide}smart-carousel:not([animation=none]).slide-right .smart-carousel-item.smart-active.smart-animate-trigger{animation-name:carousel-active-slide-right}smart-carousel:not([animation=none]).slide-right .smart-carousel-item.smart-out.smart-animate-trigger{animation-name:carousel-out-slide-right}smart-carousel:not([animation=none]).slide-top .smart-carousel-item.smart-active.smart-animate-trigger{animation-name:carousel-active-slide-top}smart-carousel:not([animation=none]).slide-top .smart-carousel-item.smart-out.smart-animate-trigger{animation-name:carousel-out-slide-top}smart-carousel:not([animation=none]).slide-bottom .smart-carousel-item.smart-active.smart-animate-trigger{animation-name:carousel-active-slide-bottom}smart-carousel:not([animation=none]).slide-bottom .smart-carousel-item.smart-out.smart-animate-trigger{animation-name:carousel-out-slide-bottom}smart-carousel[display-mode="3d"] .smart-carousel-html-content{padding-left:30px;padding-right:20px}smart-carousel[display-mode="3d"] .smart-carousel-item{width:var(--smart-carousel-3d-mode-slide-width);height:var(--smart-carousel-3d-mode-slide-height);border:20px solid #fff;position:absolute;box-sizing:border-box;overflow:hidden;top:50%;left:50%;z-index:10;transform:translateX(-50%) translateY(-50%) rotateX(1deg) scale(1);transition-duration:0s}smart-carousel[display-mode="3d"] .smart-carousel-item[position="-3"]{transform:perspective(800px) translateX(calc(-50% - 340px)) translateY(-50%) scale(.4);opacity:.1;z-index:1}smart-carousel[display-mode="3d"] .smart-carousel-item[position="-2"]{transform:perspective(800px) translateX(calc(-50% - 300px)) translateY(-50%) scale(.5);opacity:.2;z-index:8}smart-carousel[display-mode="3d"] .smart-carousel-item[position="-1"]{transform:perspective(800px) translateX(calc(-50% - 260px)) translateY(-50%) scale(.6);opacity:.3;z-index:9}smart-carousel[display-mode="3d"] .smart-carousel-item[position="1"]{transform:perspective(800px) translateX(calc(-50% + 260px)) translateY(-50%) scale(.6);opacity:.3;z-index:9}smart-carousel[display-mode="3d"] .smart-carousel-item[position="2"]{transform:perspective(800px) translateX(calc(-50% + 300px)) translateY(-50%) scale(.5);opacity:.2;z-index:8}smart-carousel[display-mode="3d"] .smart-carousel-item[position="3"]{transform:perspective(800px) translateX(calc(-50% + 340px)) translateY(-50%) scale(.4);opacity:.1;z-index:1}smart-carousel[display-mode="3d"]:not([animation=none]) .smart-carousel-item{transition-duration:.7s}smart-carousel[display-mode="3d"]:not([animation=none]) .smart-carousel-item,smart-carousel[display-mode="3d"]:not([animation=none]) .smart-carousel-item.smart-active,smart-carousel[display-mode="3d"]:not([animation=none]) .smart-carousel-item.smart-out{animation-name:unset}smart-carousel[display-mode="3d"].circle .smart-carousel-item{border-radius:50%}smart-carousel[display-mode="3d"].vertical .smart-carousel-item[position="-3"]{transform:perspective(800px) translateX(-50%) translateY(calc(-50% - 210px)) scale(.4)}smart-carousel[display-mode="3d"].vertical .smart-carousel-item[position="-2"]{transform:perspective(800px) translateX(-50%) translateY(calc(-50% - 180px)) scale(.5)}smart-carousel[display-mode="3d"].vertical .smart-carousel-item[position="-1"]{transform:perspective(800px) translateX(-50%) translateY(calc(-50% - 150px)) scale(.6)}smart-carousel[display-mode="3d"].vertical .smart-carousel-item[position="1"]{transform:perspective(800px) translateX(-50%) translateY(calc(-50% + 150px)) scale(.6)}smart-carousel[display-mode="3d"].vertical .smart-carousel-item[position="2"]{transform:perspective(800px) translateX(-50%) translateY(calc(-50% + 180px)) scale(.5)}smart-carousel[display-mode="3d"].vertical .smart-carousel-item[position="3"]{transform:perspective(800px) translateX(-50%) translateY(calc(-50% + 210px)) scale(.4)}smart-carousel[display-mode="3d"]:not([animation=none]).horizontal-stacked .smart-carousel-item[position="-3"]{transform:perspective(800px) translateX(calc(-50% - 395px)) translateY(-50%) scale(.4)}smart-carousel[display-mode="3d"]:not([animation=none]).horizontal-stacked .smart-carousel-item[position="-2"]{transform:perspective(800px) translateX(calc(-50% - 355px)) translateY(-50%) scale(.5)}smart-carousel[display-mode="3d"]:not([animation=none]).horizontal-stacked .smart-carousel-item[position="-1"]{transform:perspective(800px) translateX(calc(-50% - 280px)) translateY(-50%) scale(.6)}smart-carousel[display-mode="3d"]:not([animation=none]).horizontal-stacked .smart-carousel-item[position="1"]{transform:perspective(800px) translateX(calc(-50% + 280px)) translateY(-50%) scale(.6)}smart-carousel[display-mode="3d"]:not([animation=none]).horizontal-stacked .smart-carousel-item[position="2"]{transform:perspective(800px) translateX(calc(-50% + 355px)) translateY(-50%) scale(.5)}smart-carousel[display-mode="3d"]:not([animation=none]).horizontal-stacked .smart-carousel-item[position="3"]{transform:perspective(800px) translateX(calc(-50% + 395px)) translateY(-50%) scale(.4)}smart-carousel[display-mode="3d"]:not([animation=none]).bottom-top .smart-carousel-item[position="-3"]{transform:perspective(800px) translateX(calc(-50% - 450px)) translateY(calc(-50% + 150px)) scale(.2)}smart-carousel[display-mode="3d"]:not([animation=none]).bottom-top .smart-carousel-item[position="-2"]{transform:perspective(800px) translateX(calc(-50% - 380px)) translateY(calc(-50% + 100px)) scale(.4)}smart-carousel[display-mode="3d"]:not([animation=none]).bottom-top .smart-carousel-item[position="-1"]{transform:perspective(800px) translateX(calc(-50% - 280px)) translateY(calc(-50% + 30px)) scale(.6)}smart-carousel[display-mode="3d"]:not([animation=none]).bottom-top .smart-carousel-item[position="1"]{transform:perspective(800px) translateX(calc(-50% + 280px)) translateY(calc(-50% - 30px)) scale(.6)}smart-carousel[display-mode="3d"]:not([animation=none]).bottom-top .smart-carousel-item[position="2"]{transform:perspective(800px) translateX(calc(-50% + 380px)) translateY(calc(-50% - 100px)) scale(.4)}smart-carousel[display-mode="3d"]:not([animation=none]).bottom-top .smart-carousel-item[position="3"]{transform:perspective(800px) translateX(calc(-50% + 450px)) translateY(calc(-50% - 150px)) scale(.2)}smart-carousel[display-mode="3d"]:not([animation=none]).top-bottom .smart-carousel-item[position="-3"]{transform:perspective(800px) translateX(calc(-50% - 450px)) translateY(calc(-50% - 150px)) scale(.2)}smart-carousel[display-mode="3d"]:not([animation=none]).top-bottom .smart-carousel-item[position="-2"]{transform:perspective(800px) translateX(calc(-50% - 380px)) translateY(calc(-50% - 100px)) scale(.4)}smart-carousel[display-mode="3d"]:not([animation=none]).top-bottom .smart-carousel-item[position="-1"]{transform:perspective(800px) translateX(calc(-50% - 280px)) translateY(calc(-50% - 30px)) scale(.6)}smart-carousel[display-mode="3d"]:not([animation=none]).top-bottom .smart-carousel-item[position="1"]{transform:perspective(800px) translateX(calc(-50% + 280px)) translateY(calc(-50% + 30px)) scale(.6)}smart-carousel[display-mode="3d"]:not([animation=none]).top-bottom .smart-carousel-item[position="2"]{transform:perspective(800px) translateX(calc(-50% + 380px)) translateY(calc(-50% + 100px)) scale(.4)}smart-carousel[display-mode="3d"]:not([animation=none]).top-bottom .smart-carousel-item[position="3"]{transform:perspective(800px) translateX(calc(-50% + 450px)) translateY(calc(-50% + 150px)) scale(.2)}smart-carousel[display-mode=multiple]:not([animation=none]).smart-carousel-item.smart-active,smart-carousel[display-mode=multiple]:not([animation=none]).smart-carousel-item.smart-animate-trigger.smart-active,smart-carousel[display-mode=multiple]:not([animation=none]).smart-carousel-item.smart-animate-trigger.smart-out,smart-carousel[display-mode=multiple]:not([animation=none]).smart-carousel-item.smart-out{animation-name:none}smart-carousel[display-mode=multiple]:not([animation=none]) .smart-items-container{transition-duration:1s}smart-carousel[display-mode=multiple] .smart-items-container{overflow:hidden;width:max-content;transition:margin-left ease-in-out}smart-carousel[display-mode=multiple] .smart-carousel-item{opacity:1;float:left;display:inline-block;position:relative;width:var(--smart-carousel-multiple-mode-slide-width)}smart-carousel[display-mode=multiple] .smart-carousel-item.smart-active{background-color:#d3d3d3;transition:background-color 1s ease-in-out}smart-carousel[display-mode=multiple] .smart-carousel-item.smart-out{transition:background-color 1s ease-in-out}smart-carousel smart-repeat-button[hover] button{background-color:transparent}smart-carousel[adaptive-auto-height],smart-carousel[adaptive-height]{height:100%;overflow:visible;transition:height .6s ease-out;margin:0 auto 70px}smart-carousel[adaptive-auto-height].smart-container,smart-carousel[adaptive-auto-height]>.smart-container,smart-carousel[adaptive-height].smart-container,smart-carousel[adaptive-height]>.smart-container{position:relative}smart-carousel[adaptive-auto-height] .smart-container,smart-carousel[adaptive-height] .smart-container{overflow:visible}smart-carousel[adaptive-auto-height] .smart-carousel-item,smart-carousel[adaptive-height] .smart-carousel-item{height:auto}smart-carousel[adaptive-auto-height] .smart-slide-wrapper,smart-carousel[adaptive-height] .smart-slide-wrapper{height:100%;position:relative;display:flex;align-items:center;padding:0 65px}smart-carousel[adaptive-auto-height] .smart-indicators-container,smart-carousel[adaptive-height] .smart-indicators-container{display:flex;align-items:center;justify-content:center;position:relative;bottom:0;margin-top:20px}smart-carousel[adaptive-auto-height] .smart-arrow,smart-carousel[adaptive-height] .smart-arrow{width:50px;height:50px;background:var(--smart-surface);display:flex;align-items:center;justify-content:center;border-color:var(--smart-border);top:50%;transform:translateY(-50%)}smart-carousel[adaptive-auto-height].smart-calculated-height .smart-carousel-item,smart-carousel[adaptive-height].smart-calculated-height .smart-carousel-item{height:100%;display:flex;justify-content:center;align-items:center}smart-carousel[adaptive-auto-height].smart-calculated-height .smart-slide-wrapper,smart-carousel[adaptive-height].smart-calculated-height .smart-slide-wrapper{height:auto}[disabled] .smart-carousel-item.smart-active{pointer-events:none}@keyframes carousel-active-fade{from{opacity:0}to{opacity:1}}@keyframes carousel-out-fade{from{opacity:1}to{opacity:0}}@keyframes carousel-active-slide{from{left:100%;opacity:1}to{left:0;opacity:1}}@keyframes carousel-out-slide{from{left:0;opacity:1}to{left:-100%;opacity:1}}@keyframes carousel-active-slide-right{from{opacity:1;left:-100%}to{opacity:1;left:0}}@keyframes carousel-out-slide-right{from{left:0;opacity:1}to{left:100%;opacity:1}}@keyframes carousel-active-slide-top{from{top:100%;opacity:1}to{top:0;opacity:1}}@keyframes carousel-out-slide-top{from{top:0;opacity:1}to{top:-100%;opacity:1}}@keyframes carousel-active-slide-bottom{from{opacity:1;top:-100%}to{opacity:1;top:0}}@keyframes carousel-out-slide-bottom{from{opacity:1;top:0}to{opacity:1;top:100%}}smart-carousel[right-to-left] .smart-carousel-item,smart-carousel[right-to-left] .smart-indicators-container{direction:rtl}
.smart-chart-tooltip .smart-chart-tooltip-text,smart-chart .smart-chart-annotation-text,smart-chart .smart-chart-axis-description,smart-chart .smart-chart-axis-text,smart-chart .smart-chart-label-text,smart-chart .smart-chart-legend-text,smart-chart .smart-chart-title-description,smart-chart .smart-chart-title-text{fill:var(--smart-background-color);color:var(--smart-background-color);font-family:var(--smart-font-family)}smart-chart{display:block;width:var(--smart-chart-default-width);height:var(--smart-chart-default-height)}smart-chart .smart-chart-annotation-text,smart-chart .smart-chart-axis-description,smart-chart .smart-chart-axis-text,smart-chart .smart-chart-label-text,smart-chart .smart-chart-legend-text{box-sizing:content-box;font-size:calc(var(--smart-font-size) - 1px)}smart-chart .smart-chart-title-text{font-weight:700;font-size:calc(var(--smart-font-size) + 2px)}smart-chart .smart-chart-title-description{font-size:var(--smart-font-size)}smart-chart[theme=dark] .smart-chart-annotation-text,smart-chart[theme=dark] .smart-chart-axis-description .smart-chart-label-text,smart-chart[theme=dark] .smart-chart-axis-text,smart-chart[theme=dark] .smart-chart-legend-text,smart-chart[theme=dark] .smart-chart-title-description,smart-chart[theme=dark] .smart-chart-title-text{fill:var(--smart-background-color);color:var(--smart-background-color)}.smart-chart-range-selector>smart-chart{width:100%;height:100%;touch-action:none}.smart-chart-range-selector .slider{box-sizing:content-box;pointer-events:none}.smart-chart-tooltip{position:absolute;cursor:default;z-index:10000000;transition:.3s ease-in,transform .3s ease-in;opacity:1;transform:scale(1)}.smart-chart-tooltip .smart-chart-tooltip-content{position:absolute;box-sizing:content-box;outline:0;border:1px solid transparent;padding:3px;text-align:center;vertical-align:middle;margin:0;cursor:default;left:0;top:0;border-radius:var(--smart-border-radius)}.smart-chart-tooltip .smart-chart-tooltip-text{box-sizing:content-box;font-size:calc(var(--smart-font-size) - 1px)}.smart-chart-tooltip .smart-chart-tooltip-arrow-outer{box-sizing:content-box;width:0;height:0;position:absolute;z-index:10000001}.smart-chart-tooltip .smart-chart-tooltip-arrow-inner{box-sizing:content-box;width:0;height:0;position:absolute;z-index:10000002}.smart-chart-tooltip[animation=none]{transition:none}.smart-chart-tooltip.smart-visibility-hidden{transform:scale(0)}[theme=dark] .smart-chart-tooltip:not([theme=dark]) .smart-chart-tooltip-text{fill:var(--smart-background);color:var(--smart-background)}.smart-chart-tooltip[right-to-left] .smart-chart-tooltip-text,smart-chart[right-to-left] .smart-chart-annotation-text,smart-chart[right-to-left] .smart-chart-axis-description,smart-chart[right-to-left] .smart-chart-axis-text,smart-chart[right-to-left] .smart-chart-label-text,smart-chart[right-to-left] .smart-chart-legend-text,smart-chart[right-to-left] .smart-chart-title-text{direction:rtl;text-anchor:end}
.smart-chip .smart-avatar,.smart-chip .smart-value{text-overflow:ellipsis;vertical-align:middle;display:none}.smart-chip .smart-avatar,.smart-chip .smart-close-button{width:var(--smart-chip-default-height);height:var(--smart-chip-default-height);vertical-align:middle}.smart-chip .smart-value,.smart-chip.smart-container,smart-chip .smart-container{white-space:nowrap}smart-chip:focus,smart-chip:hover{box-shadow:var(--smart-elevation-2);outline:0}smart-chip.smart-element{display:inline-block}smart-chip[disabled]:hover{box-shadow:none}.smart-chip{min-height:var(--smart-chip-default-height);min-width:var(--smart-chip-default-height);border-radius:calc(var(--smart-chip-default-height)/ 2);box-sizing:border-box;background-color:var(--smart-primary);color:var(--smart-primary-color);position:relative;margin:2px}.smart-chip .smart-avatar{line-height:var(--smart-chip-default-height);border-radius:50%;font-size:20px;box-sizing:border-box;text-align:center;overflow:hidden}.smart-chip .smart-value{line-height:var(--smart-chip-default-height);padding:0 15px;overflow:hidden;margin:0;cursor:default}.smart-chip .smart-close-button{display:none;position:relative}.smart-chip .smart-close-button:after,.smart-chip[avatar] .smart-avatar,.smart-chip[close-button] .smart-close-button,.smart-chip[value] .smart-value{display:inline-block}.smart-chip .smart-close-button:after{font-family:var(--smart-font-family-icon);content:var(--smart-icon-close);color:inherit;line-height:var(--smart-chip-default-height);width:100%;text-align:center}.smart-chip .smart-close-button:hover:after{color:var(--smart-primary-color);cursor:pointer}.smart-chip[avatar] .smart-avatar img{width:100%;height:100%;border-radius:50%}.smart-chip[avatar] .smart-value{width:calc(100% - var(--smart-chip-default-height));padding-left:5px}.smart-chip[close-button] .smart-value{width:calc(100% - var(--smart-chip-default-height));padding-right:5px}.smart-chip[avatar][close-button] .smart-value{width:calc(100% - 2 * var(--smart-chip-default-height))}smart-chip[right-to-left]>.smart-container{direction:rtl}
smart-combo-box{width:var(--smart-combo-box-default-width);height:var(--smart-combo-box-default-height);overflow:initial;visibility:hidden;cursor:pointer}smart-combo-box.smart-element{overflow:visible;visibility:inherit;border-width:0}.smart-combo-box smart-list-box{position:relative;width:100%;height:100%;border:initial;padding:initial;overflow:hidden;font-size:inherit;font-family:inherit;outline:0}.smart-combo-box .smart-action-button input.smart-input{flex-grow:1;align-self:center;width:var(--smart-editor-addon-width);min-width:var(--smart-editor-addon-width);min-height:100%;max-height:1rem;vertical-align:middle;margin:0}.smart-combo-box .smart-buttons-container .smart-token{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;cursor:pointer;margin:0 2px;-webkit-user-select:none;user-select:none}.smart-combo-box .smart-buttons-container .smart-combo-box-auto-complete-string{position:absolute;display:flex;pointer-events:none;align-items:center;padding:var(--smart-editor-label-padding);opacity:.5;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;z-index:1}.smart-combo-box .smart-buttons-container .smart-combo-box-auto-complete-string:empty{display:none}.smart-combo-box.smart-element .smart-drop-down.smart-visibility-hidden{transform:scale(0);transition:transform .2s ease-in;transform-origin:left top 0}
smart-color-panel{width:var(--smart-color-panel-default-width);height:var(--smart-color-panel-default-height);-webkit-user-select:none;user-select:none}smart-color-panel .no-touch{touch-action:none}smart-color-panel.smart-element{display:inline-block;overflow:initial;border:none;background:var(--smart-background);color:var(--smart-background-color)}smart-color-panel[disabled]{opacity:.55;pointer-events:none;-webkit-user-select:none;user-select:none}.smart-color-panel .smart-content{position:relative;cursor:pointer;display:flex;width:100%;height:100%}.smart-color-panel label{display:inline-block;-webkit-user-select:none;user-select:none}.smart-color-panel smart-tooltip .smart-tooltip-content{box-shadow:0 0 20px 0 #8b8b8b}.smart-color-panel input[type=number]::-webkit-inner-spin-button,.smart-color-panel input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.smart-color-panel input[type=number]{-moz-appearance:textfield;-webkit-appearance:textfied}.smart-color-panel .color-input{width:70px;height:var(--smart-editor-height);margin:5px;padding:5px;border:var(--smart-border-width) solid var(--smart-border);border-radius:var(--smart-border-radius);background:var(--smart-background);color:var(--smart-color);outline:0}.smart-color-panel .color-input:focus{border-color:var(--smart-outline)}.smart-color-panel .color-input::selection{background:var(--smart-editor-selection);color:var(--smart-editor-selection-color)}.smart-color-panel .grid-mode-container,.smart-color-panel .palette-mode-container{width:100%;max-height:100%;position:relative}.smart-color-panel .custom-color-selection .buttons-container{display:flex;align-items:center;justify-content:flex-end}.smart-color-panel .custom-colors-box,.smart-color-panel .gray-shades-box,.smart-color-panel .grid-samples-container,.smart-color-panel .spectrum-box{display:grid;grid-template-columns:repeat(var(--smart-color-panel-grid-mode-column-count),auto)}.smart-color-panel .hue-scale{display:block;max-width:100px;height:var(--smart-color-panel-palette-size);background-image:linear-gradient(red,#f0f,#00f,#0ff,#0f0,#ff0,red);width:20px;margin-left:15px;margin-right:15px;position:relative;padding:1px;border:var(--smart-border-width) solid var(--smart-border);background-clip:content-box;-webkit-background-clip:content-box}.smart-color-panel .hue-scale-thumb{width:100%;height:10px;box-sizing:content-box;border:3px solid #fff;border-left-width:10px;border-right-width:10px;position:absolute;left:-10px;top:-3px;box-shadow:0 0 5px #666,inset 0 0 2px 0 #999,inset 0 0 2px 0 #999;opacity:.8;cursor:pointer}.smart-color-panel .color-palette-thumb{width:0;height:0;top:0;position:absolute;z-index:10;pointer-events:none}.smart-color-panel .color-palette-thumb:after{content:" ";position:absolute;left:-14px;top:-14px;width:16px;height:16px;border:5px solid #fff;border-radius:50%;box-shadow:var(--smart-elevation-2)}.smart-color-panel .color-palette{width:var(--smart-color-panel-palette-size);height:var(--smart-color-panel-palette-size);background-color:red;display:block;position:relative;overflow:hidden;cursor:crosshair;padding:1px;border:1px solid #d3d3d3;background-clip:content-box;-webkit-background-clip:content-box}.smart-color-panel .color-palette:after,.smart-color-panel .color-palette:before{width:100%;height:100%;content:" ";display:block;position:absolute;left:0;top:0;z-index:0}.smart-color-panel .color-palette:before{background-image:linear-gradient(90deg,#fff,transparent)}.smart-color-panel .color-palette:after{background-image:linear-gradient(transparent,#000)}.smart-color-panel .color-controls-container{display:block;max-width:100px;overflow:hidden}.smart-color-panel .color-palette-container{width:100%;height:var(--smart-color-panel-palette-size);display:flex;flex-direction:row}.smart-color-panel .preview-container{width:100%;min-width:100px;height:100px;background-color:#fff;margin-bottom:20px;position:relative;padding:1px;border:var(--smart-border-width) solid var(--smart-border);background-clip:content-box;-webkit-background-clip:content-box}.smart-color-panel .preview-container-bottom,.smart-color-panel .preview-container-top{width:100%;height:50%;display:block;background-color:#fff}.smart-color-panel .alpha-channel-container{flex-direction:row;width:100%;align-items:center;align-content:space-around;margin-top:5px;display:none}.smart-color-panel .alpha-channel-container label{width:48px}.smart-color-panel .alpha-channel-scale{width:var(--smart-color-panel-palette-size);height:20px;margin-top:15px;margin-bottom:15px;position:relative;border:var(--smart-border-width) solid var(--smart-border);margin-right:20px}.smart-color-panel .alpha-channel-scale:after,.smart-color-panel .alpha-channel-scale:before{position:absolute;left:0;top:0;display:block;width:100%;height:100%;content:" "}.smart-color-panel .alpha-channel-scale:before{background-image:linear-gradient(45deg,#ccc 25%,transparent 25%,transparent 74%,#ccc 75%,#ccc),linear-gradient(45deg,#ccc 25%,transparent 25%,transparent 74%,#ccc 75%,#ccc);background-position:0 6px,8px 14px;background-size:16px 16px}.smart-color-panel .alpha-channel-scale:after{background-image:linear-gradient(90deg,var(--smart-color-panel-alpha-channel-color),transparent);box-shadow:inset 1px -1px 0 0 #fff,inset -1px 1px 0 0 #fff}.smart-color-panel .alpha-channel-thumb{width:10px;height:100%;box-sizing:content-box;border:3px solid #fff;border-top-width:10px;border-bottom-width:10px;position:absolute;left:-3px;top:-10px;opacity:.8;box-shadow:0 0 5px #666,inset 0 0 2px 0 #999,inset 0 0 2px 0 #999;cursor:pointer;z-index:1}.smart-color-panel .buttons-container{display:none;flex-direction:row;justify-content:flex-end;padding:10px 0 0}.smart-color-panel .buttons-container smart-button{width:100px}.smart-color-panel .color-sample,.smart-color-panel .user-color-container{width:var(--smart-color-panel-grid-mode-item-size);height:var(--smart-color-panel-grid-mode-item-size)}.smart-color-panel .buttons-container smart-button:last-of-type{margin-left:20px}.smart-color-panel .gradient-background{background-image:linear-gradient(45deg,#ccc 25%,transparent 25%,transparent 74%,#ccc 75%,#ccc),linear-gradient(45deg,#ccc 25%,transparent 25%,transparent 74%,#ccc 75%,#ccc);background-position:0 6px,8px 14px;background-size:16px 16px}.smart-color-panel .color-sample.user-color:before,.smart-color-panel .user-color-container{background-image:linear-gradient(45deg,#ccc 25%,transparent 25%,transparent 74%,#ccc 75%,#ccc),linear-gradient(45deg,#ccc 25%,transparent 25%,transparent 74%,#ccc 75%,#ccc);background-position:0 5px,5px 10px;background-size:10px 10px}.smart-color-panel .material-grid-samples-container{display:grid;grid-template-columns:80px repeat(14,auto)}.smart-color-panel .button-custom-color{margin:5px 0}.smart-color-panel .color-sample{margin:var(--smart-color-panel-grid-mode-columns-gap);box-sizing:border-box;cursor:pointer;border:var(--smart-border-width) solid rgba(0,0,0,.1);background-clip:content-box;-webkit-background-clip:content-box;text-overflow:ellipsis}.smart-color-panel .color-sample.user-color{position:relative;background-clip:padding-box;-webkit-background-clip:padding-box}.smart-color-panel .color-sample.user-color:before{position:absolute;content:"";width:100%;height:100%;top:50%;left:50%;transform:translate(-50%,-50%);z-index:-1}.smart-color-panel .color-sample.selected{border:2px solid var(--smart-ui-state-color-selected);padding:1px}.smart-color-panel .color-sample.empty{visibility:hidden}.smart-color-panel .color-sample.header,.smart-color-panel .color-sample.label-column{display:flex;align-items:center;justify-content:center;font-size:11px;border-width:0;pointer-events:none;-webkit-user-select:none;user-select:none}.smart-color-panel .color-sample.label-column{width:100%;justify-content:flex-start}.smart-color-panel .color-sample.color-sample-column,.smart-color-panel .color-sample.color-sample-row{width:16px;height:16px;border:2px solid rgba(0,0,0,.2);padding:1px;background:repeating-linear-gradient(-55deg,#fff,#fff 10px,#eee 10px,#eee 20px)}.smart-color-panel .color-sample[transparent]{position:relative}.smart-color-panel .color-sample[transparent]:after{content:"";border:1px solid red;top:50%;left:50%;transform:translate(-50%,-50%) rotate(-45deg);position:absolute;width:150%;border-radius:5px}.smart-color-panel .user-color.empty{background:repeating-linear-gradient(-55deg,#fff,#fff 10px,#eee 10px,#eee 20px);background-origin:content-box;border-color:#d3d3d3}.smart-color-panel .default-samples-container div{display:grid;grid-template-columns:repeat(10,auto);justify-items:center}.smart-color-panel .default-samples-container .theme-shades-box{margin-top:var(--smart-color-panel-default-mode-sections-gap);margin-bottom:var(--smart-color-panel-default-mode-sections-gap)}.smart-color-panel .default-samples-container .standard-colors-label,.smart-color-panel .default-samples-container .theme-colors-label{display:block;font-weight:600;margin-left:2px;margin-top:var(--smart-color-panel-default-mode-sections-gap);margin-bottom:calc(var(--smart-color-panel-default-mode-sections-gap)/ 2)}.smart-color-panel .hex-mode-resize-trigger{visibility:hidden;position:absolute;left:0;top:0}.smart-color-panel[edit-alpha-channel] .alpha-channel-container{display:flex}.smart-color-panel[enable-custom-colors] .button-custom-color,.smart-color-panel[enable-custom-colors] .user-samples-container{width:100%;display:flex;align-items:center}.smart-color-panel[enable-custom-colors]:not([display-mode=palette]):not([display-mdoe=radial]) .custom-color-selection .palette-mode-container{display:block}.smart-color-panel:not([display-mode=radial]) .canvas-radial{display:none}.smart-color-panel[display-mode=hexagonal] .brightness-scale,.smart-color-panel[display-mode=radial] .brightness-scale{display:block;max-width:100px;height:var(--smart-color-panel-palette-size);background-image:linear-gradient(red,#f0f,#00f,#0ff,#0f0,#ff0,red);width:20px;margin-left:15px;margin-right:15px;position:relative;padding:1px;border:var(--smart-border-width) solid var(--smart-border);background-clip:content-box;-webkit-background-clip:content-box}.smart-color-panel[display-mode=hexagonal] .brightness-scale-thumb,.smart-color-panel[display-mode=radial] .brightness-scale-thumb{width:100%;height:10px;box-sizing:content-box;border:3px solid #fff;border-left-width:10px;border-right-width:10px;position:absolute;left:-10px;top:-3px;box-shadow:0 0 5px #666,inset 0 0 2px 0 #999,inset 0 0 2px 0 #999;opacity:.8;cursor:pointer}.smart-color-panel[display-mode=hexagonal] .alpha-channel-scale{width:var(--smart-color-panel-palette-width)}.smart-color-panel[display-mode=hexagonal] .brightness-scale{display:block;height:var(--smart-color-panel-palette-height);background-image:linear-gradient(white,#000)}.smart-color-panel[display-mode=hexagonal] .selected{stroke:#fff;stroke-width:4px}.smart-color-panel[display-mode=hexagonal] .color-palette-container{height:var(--smart-color-panel-palette-height)}.smart-color-panel[display-mode=hexagonal] .color-palette-hexagonal,.smart-color-panel[display-mode=hexagonal] .palette-mode-container{display:block}.smart-color-panel[display-mode=radial] .hue-scale{display:none}.smart-color-panel[display-mode=radial] .brightness-scale{background-image:linear-gradient(white,#000)}.smart-color-panel[display-mode=radial] .color-palette-radial{width:var(--smart-color-panel-palette-size);height:var(--smart-color-panel-palette-size);display:block;position:relative;overflow:hidden;cursor:crosshair;padding:1px;border:1px solid #d3d3d3;background-clip:content-box;-webkit-background-clip:content-box;background:conic-gradient(from 90deg,red,#ff0,#0f0,#0ff,#00f,#ff00ff,red) #ff005a;border-radius:50%}.smart-color-panel[display-mode=radial] .color-palette-radial:after{width:100%;height:100%;content:" ";display:block;position:absolute;left:0;top:0;z-index:0;background:#000;opacity:var(--smart-color-panel-brightness);border-radius:50%}.smart-color-panel[display-mode=radial] .color-palette-radial-thumb{width:0;height:0;position:absolute;z-index:10;pointer-events:none;left:50%;top:50%}.smart-color-panel[display-mode=radial] .color-palette-radial-thumb:after{content:" ";position:absolute;left:-14px;top:-14px;width:16px;height:16px;border:5px solid #fff;border-radius:50%;box-shadow:var(--smart-elevation-2)}.smart-color-panel[display-mode=radial] .white-radial-gradient{z-index:2;width:var(--smart-color-panel-palette-size);height:var(--smart-color-panel-palette-size);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);border-radius:50%;background-image:radial-gradient(circle,#fff,transparent)}.smart-color-panel[display-mode=radial] .palette-mode-container{display:block}.smart-color-panel[display-mode=radial] canvas{transform:rotate(-180deg);transform-origin:center}.smart-color-panel[display-mode=radial][inverted] .color-palette-radial:after{background:#fff}.smart-color-panel[display-mode=radial][inverted] .white-radial-gradient{background:radial-gradient(black,transparent)}.smart-color-panel[display-mode=default] .default-samples-container,.smart-color-panel[display-mode=materialGrid] .color-palette,.smart-color-panel[display-mode=palette] .color-palette,.smart-color-panel[display-mode=palette] .palette-mode-container,.smart-color-panel[display-mode=spectrumGrid] .spectrum-grid-samples-container{display:block}.smart-color-panel[apply-value-mode=useButtons] .buttons-container{display:flex;align-items:center;justify-content:flex-end}.smart-color-panel .button-custom-color,.smart-color-panel .color-palette-hexagonal,.smart-color-panel .custom-color-selection .grid-mode-container,.smart-color-panel .palette-mode-container,.smart-color-panel .spectrum-grid-samples-container,.smart-color-panel .user-samples-container,.smart-color-panel[display-mode=default] .grid-samples-container,.smart-color-panel[display-mode=default] .material-grid-samples-container,.smart-color-panel[display-mode=default] .palette-mode-container,.smart-color-panel[display-mode=grid] .default-samples-container,.smart-color-panel[display-mode=grid] .material-grid-samples-container,.smart-color-panel[display-mode=grid] .palette-mode-container,.smart-color-panel[display-mode=hexagonal] .color-palette,.smart-color-panel[display-mode=hexagonal] .default-samples-container,.smart-color-panel[display-mode=hexagonal] .grid-samples-container,.smart-color-panel[display-mode=hexagonal] .hue-scale,.smart-color-panel[display-mode=hexagonal] .spectrum-grid-samples-container,.smart-color-panel[display-mode=materialGrid] .default-samples-container,.smart-color-panel[display-mode=materialGrid] .grid-samples-container,.smart-color-panel[display-mode=materialGrid] .palette-mode-container,.smart-color-panel[display-mode=palette] .color-palette-radial,.smart-color-panel[display-mode=palette] .grid-mode-container,.smart-color-panel[display-mode=radial] .color-palette,.smart-color-panel[display-mode=radial] .grid-mode-container,.smart-color-panel[display-mode=spectrumGrid] .default-samples-container,.smart-color-panel[display-mode=spectrumGrid] .grid-samples-container,.smart-color-panel[display-mode=spectrumGrid] .material-grid-samples-container,.smart-color-panel[display-mode=spectrumGrid] .palette-mode-container,.smart-color-panel[enable-custom-colors][display-mode=hexagonal] .button-custom-color,.smart-color-panel[enable-custom-colors][display-mode=hexagonal] .user-samples-container,.smart-color-panel[hide-alpha-editor] .a-channel,.smart-color-panel[hide-h-e-x-editor] .hex,.smart-color-panel[hide-preview-container] .preview-container,.smart-color-panel[hide-r-g-b-editor] .b-channel,.smart-color-panel[hide-r-g-b-editor] .g-channel,.smart-color-panel[hide-r-g-b-editor] .r-channel{display:none}smart-color-panel[right-to-left] .alpha-channel-container,smart-color-panel[right-to-left] .color-palette-container,smart-color-panel[right-to-left] .grid-mode-container{direction:rtl}smart-color-panel[right-to-left] .alpha-channel-scale{margin:0 0 0 20px}smart-color-panel[right-to-left] .alpha-channel-scale:after{background-image:linear-gradient(90deg,transparent,var(--smart-color-panel-alpha-channel-color))}smart-color-panel[right-to-left] .buttons-container{flex-direction:row-reverse}smart-color-panel[right-to-left] .buttons-container smart-button:last-of-type{margin:0 0 0 20px}
smart-color-picker{width:var(--smart-color-picker-default-width);height:var(--smart-color-picker-default-height)}smart-color-picker.smart-element{overflow:initial;border:none}.smart-color-picker smart-color-panel{position:relative;display:flex;width:100%;height:100%;padding:5px;border:none}.smart-color-picker .smart-color-box{position:relative;width:20px;height:20px;border-radius:var(--smart-border-radius);border:var(--smart-border-width) solid var(--smart-border);background-color:var(--smart-background);margin-right:5px;overflow:hidden;background-image:linear-gradient(45deg,#ccc 25%,transparent 25%,transparent 74%,#ccc 75%,#ccc),linear-gradient(45deg,#ccc 25%,transparent 25%,transparent 74%,#ccc 75%,#ccc);background-position:0 5px,5px 10px;background-size:10px 10px}.smart-color-picker .smart-color-box.no-color{background-image:linear-gradient(45deg,transparent 47.5%,rgba(0,0,0,.2) 0,rgba(0,0,0,.2) 52.5%,transparent 52.5%),linear-gradient(-45deg,transparent 47.5%,rgba(0,0,0,.2) 20%,rgba(0,0,0,.2) 52.5%,transparent 52.5%);background-position:initial;background-size:initial}.smart-color-picker .smart-color-box>div{width:100%;height:100%}.smart-color-picker .smart-color-input{border:0;background-color:transparent;outline:0;color:inherit}.smart-color-picker .smart-ripple{background:var(--smart-primary-color)}.smart-color-picker .smart-drop-down.smart-drop-down-color-picker.smart-drop-down-container{width:var(--smart-color-picker-drop-down-width);max-width:none;height:var(--smart-color-picker-drop-down-height);max-height:none;box-sizing:content-box;overflow:hidden}.smart-color-picker:not([opened]) .smart-color-input{color:inherit}.smart-color-picker:not([editable]) .smart-color-input{cursor:pointer;-webkit-user-select:none;user-select:none}.smart-color-picker[value-display-mode=none] .smart-color-box,.smart-color-picker[value-display-mode=none] .smart-color-input{display:none}.smart-color-picker[value-display-mode=none] .smart-color-input.smart-input{width:0;opacity:0;padding:initial}.smart-color-picker[value-display-mode=none] .smart-action-button{padding:initial;border:none}.smart-color-picker[value-display-mode=none] .smart-drop-down-button{border-top-left-radius:var(--smart-border-top-left-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-left-width:var(--smart-border-width);border-left-style:solid}.smart-color-picker[value-display-mode=none]:not([opened]):not([drop-down-open-mode=dropDownButton]) .smart-drop-down-button{border-left-color:var(--smart-border)}.smart-color-picker[value-display-mode=colorCode] .smart-color-box{display:none}.smart-color-picker[value-display-mode=colorBox] .smart-color-box,.smart-color-picker[value-display-mode=colorCode] .smart-color-input{display:block}.smart-color-picker[value-display-mode=colorBox] .smart-input{display:none}.smart-color-picker[editable] .smart-action-button{cursor:initial}.smart-color-picker[editable]:not([opened]):not([drop-down-open-mode=dropDownButton])[hover] .smart-action-button{background:var(--smart-background);color:var(--smart-background-color)}.smart-color-picker[opened][editable] .smart-action-button{background-color:var(--smart-backgroud);color:var(--smart-background-color)}.smart-color-panel .color-sample.no-color{background-image:linear-gradient(45deg,transparent 47.5%,rgba(0,0,0,.2) 0,rgba(0,0,0,.2) 52.5%,transparent 52.5%),linear-gradient(-45deg,transparent 47.5%,rgba(0,0,0,.2) 20%,rgba(0,0,0,.2) 52.5%,transparent 52.5%);background-position:initial;background-size:initial}.smart-drop-down-repositioned smart-color-panel{width:100%;height:100%;padding:5px;border:none}.smart-drop-down.smart-drop-down-color-picker.smart-drop-down-container,.smart-drop-down.smart-drop-down-color-picker.smart-drop-down-container.smart-drop-down-repositioned{width:var(--smart-color-picker-drop-down-width);max-width:none;height:var(--smart-color-picker-drop-down-height);max-height:none;box-sizing:content-box;overflow:hidden}
smart-date-time-picker{width:var(--smart-date-time-picker-default-width);min-width:var(--smart-editor-addon-width);height:var(--smart-date-time-picker-default-height);min-height:var(--smart-editor-height)}smart-date-time-picker.smart-element{overflow:visible}smart-date-time-picker[hover]{border-color:var(--smart-ui-state-border-hover)}.smart-date-time-picker.smart-container,smart-date-time-picker>.smart-container{display:flex;position:relative;align-items:center}.smart-date-time-picker.smart-container>.smart-content,smart-date-time-picker>.smart-container>.smart-content{display:flex;height:100%;width:100%}.smart-date-time-picker.smart-container>input,smart-date-time-picker>.smart-container>input{height:100%}.smart-date-time-picker .smart-input.smart-date-time-input{width:100%;border:none;background:inherit;padding:var(--smart-editor-label-padding);outline:0;color:inherit;font-family:inherit;font-size:inherit;text-align:inherit}.smart-date-time-picker>.smart-container>.smart-hint,.smart-date-time-picker>.smart-container>.smart-label{display:none;position:absolute}.smart-date-time-picker .smart-spin-buttons-container{height:100%;display:none;width:var(--smart-editor-addon-width);border-radius:0}.smart-date-time-picker .smart-spin-button{--smart-button-padding:0;display:block;width:100%;height:50%;min-height:0;color:var(--smart-surface-color);background-color:var(--smart-surface);border:solid;border-width:0;border-color:var(--smart-border);border-left-width:var(--smart-border-width);font-weight:500;border-radius:0}.smart-date-time-picker .smart-spin-button:first-child{border-bottom-width:1px}.smart-date-time-picker .smart-spin-button[hover]{background-color:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover);border-color:var(--smart-ui-state-border-hover)}.smart-date-time-picker .smart-spin-button[active]{background-color:var(--smart-ui-state-active);color:var(--smart-ui-state-color-active);border-color:var(--smart-ui-state-border-active)}.smart-date-time-picker .smart-drop-down-button.smart-calendar-button{height:100%;display:none;width:var(--smart-editor-addon-width);cursor:pointer;background-color:var(--smart-surface);color:var(--smart-surface-color);border-color:var(--smart-border);border-width:0;border-left-width:var(--smart-border-width);border-style:solid;border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);overflow:hidden}.smart-date-time-picker .smart-drop-down-button.smart-calendar-button:after{width:100%;height:100%;font-family:var(--smart-font-family-icon);font-style:normal;font-weight:400;color:inherit;font-size:var(--smart-arrow-size);text-decoration:inherit;font-variant:normal;text-transform:none;display:flex;flex-wrap:wrap;align-items:center;justify-content:center;content:var(--smart-icon-calendar)}.smart-date-time-picker .smart-drop-down-button.smart-calendar-button[hover]{background-color:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover);border-color:var(--smart-ui-state-border-hover)}.smart-date-time-picker .smart-drop-down-button.smart-calendar-button[active]{background-color:var(--smart-ui-state-active);color:var(--smart-ui-state-color-active);border-color:var(--smart-ui-state-border-active)}.smart-date-time-picker .smart-drop-down-button.smart-calendar-button.time:after{content:var(--smart-icon-clock)}.smart-date-time-picker .smart-drop-down-button.smart-calendar-button.smart-drop-down-button-pressed{color:var(--smart-ui-state-color)}.smart-date-time-picker .smart-drop-down-button.smart-calendar-button.smart-drop-down-button-pressed[hover]:after{color:var(--smart-ui-state-color-hover)}.smart-date-time-picker .smart-drop-down.smart-date-time-drop-down{padding:0!important}.smart-date-time-picker .smart-ripple{background:var(--smart-background)}.smart-date-time-picker[focus],.smart-date-time-picker[focus] .smart-drop-down-button.smart-calendar-button{border-color:var(--smart-outline)}.smart-date-time-picker[disabled] .smart-input.smart-date-time-input{background-color:transparent;-webkit-user-select:none;user-select:none}.smart-date-time-picker[disabled] .smart-drop-down-button.smart-calendar-button,.smart-date-time-picker[readonly] .smart-drop-down-button.smart-calendar-button{cursor:default}.smart-date-time-picker[label]>.smart-container>.smart-label{position:absolute;left:0;bottom:100%;font-size:12px;width:100%;display:block;padding:var(--smart-editor-label-padding);pointer-events:none;user-select:none;-webkit-user-select:none;-ms-user-select:none;-moz-user-select:none;text-align:initial;line-height:initial}.smart-date-time-picker[calendar-button] .smart-input.smart-date-time-input,.smart-date-time-picker[spin-buttons] .smart-input.smart-date-time-input{width:calc(100% - var(--smart-editor-addon-width))}.smart-date-time-picker[spin-buttons-position=left] .smart-spin-button{border-right-width:var(--smart-border-width);border-left-width:0}.smart-date-time-picker[spin-buttons-position=left] .smart-spin-button:first-child{border-top-left-radius:var(--smart-border-top-left-radius)}.smart-date-time-picker[spin-buttons-position=left] .smart-spin-button:last-child{border-bottom-left-radius:var(--smart-border-bottom-left-radius)}.smart-date-time-picker[spin-buttons]{min-width:calc(var(--smart-editor-addon-width))}.smart-date-time-picker[spin-buttons] .smart-spin-buttons-container{display:block}.smart-date-time-picker[spin-buttons]:not([spin-buttons-position=left]) .smart-input.smart-date-time-input{border-top-left-radius:var(--smart-border-top-left-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius)}.smart-date-time-picker[calendar-button]{min-width:var(--smart-editor-addon-width)}.smart-date-time-picker[calendar-button] .smart-drop-down-button.smart-calendar-button{display:block;position:relative}.smart-date-time-picker[spin-buttons][calendar-button]{min-width:calc(var(--smart-editor-addon-width) + var(--smart-editor-addon-width))}.smart-date-time-picker[spin-buttons][calendar-button] .smart-input.smart-date-time-input{width:calc(100% - var(--smart-editor-addon-width) - var(--smart-editor-addon-width))}.smart-date-time-picker[spin-buttons][calendar-button][calendar-button-position=left][spin-buttons-position=left] .smart-spin-button:first-child{border-top-left-radius:0}.smart-date-time-picker[spin-buttons][calendar-button][calendar-button-position=left][spin-buttons-position=left] .smart-spin-button:last-child{border-bottom-left-radius:0}.smart-date-time-picker:not([spin-buttons]) .smart-input.smart-date-time-input,.smart-date-time-picker[calendar-button-position=left] .smart-drop-down-button{border-top-left-radius:var(--smart-border-top-left-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius)}.smart-date-time-picker[calendar-button-position=left] .smart-drop-down-button{border-left:none;border-right-width:var(--smart-border-width);border-top-right-radius:0;border-bottom-right-radius:0}.smart-date-time-picker[calendar-button-position=left][spin-buttons]:not([spin-buttons-position=left]) .smart-spin-button:first-child{border-top-right-radius:var(--smart-border-top-right-radius)}.smart-date-time-picker[calendar-button-position=left][spin-buttons]:not([spin-buttons-position=left]) .smart-spin-button:last-child{border-bottom-right-radius:var(--smart-border-bottom-right-radius)}.smart-date-time-picker:not([calendar-button])[spin-buttons-position=left] .smart-input.smart-date-time-input,.smart-date-time-picker[calendar-button-position=left][spin-buttons-position=left] .smart-input.smart-date-time-input{border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius)}.smart-date-time-picker:not([calendar-button])[spin-buttons]:not([spin-buttons-position=left]) .smart-spin-button:first-child{border-top-right-radius:var(--smart-border-top-right-radius)}.smart-date-time-picker:not([calendar-button])[spin-buttons]:not([spin-buttons-position=left]) .smart-spin-button:last-child{border-bottom-right-radius:var(--smart-border-bottom-right-radius)}.smart-date-time-picker:not([spin-buttons]):not([calendar-button]) .smart-input.smart-date-time-input,.smart-date-time-picker:not([spin-buttons])[calendar-button-position=left] .smart-input.smart-date-time-input{border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius)}.smart-date-time-picker.underlined{border-width:0 0 1px;background:var(--smart-background)}.smart-date-time-picker.underlined .smart-drop-down-button,.smart-date-time-picker.underlined .smart-spin-button{border-width:0;background:var(--smart-background)}.smart-date-time-picker.underlined .smart-spin-button[active],.smart-date-time-picker.underlined .smart-spin-button[hover]{background:var(--smart-background);color:var(--smart-ui-state-active)}.smart-date-time-picker.underlined .smart-drop-down-button.smart-calendar-button[active],.smart-date-time-picker.underlined .smart-drop-down-button.smart-calendar-button[hover]{background:var(--smart-background);color:var(--smart-ui-state-active)}.smart-date-time-picker.underlined .smart-hint{position:absolute;top:0;left:0;right:0;bottom:0;display:block!important;box-sizing:border-box;padding:var(--smart-editor-label-padding);color:var(--smart-background-color);pointer-events:none;font-size:75%;opacity:0;transition:color .2s,font-size .2s,line-height .2s,margin-top .2s,opacity .1s,top .2s;margin-top:calc(0px - var(--smart-font-size))}.smart-date-time-picker.underlined .smart-hint:after{content:"";position:absolute;left:0;bottom:-2px;display:block;width:100%;height:2px;background-color:var(--smart-primary);transform-origin:bottom center;transform:scaleX(0);transition:transform .2s}.smart-date-time-picker.underlined:not([focus]) .smart-hint{margin-top:0}.smart-date-time-picker.underlined[focus] .smart-drop-down-button.smart-calendar-button,.smart-date-time-picker.underlined[focus] .smart-hint{color:var(--smart-primary);opacity:1}.smart-date-time-picker.underlined[focus] .smart-hint:after{transform:scale(1)}.smart-date-time-picker.outlined{padding-top:6px;height:auto;min-height:0;border:none;background:inherit}.smart-date-time-picker.outlined input{padding:0;border:none!important;z-index:initial}.smart-date-time-picker.outlined .smart-content{padding:4px 3px;border:1px solid var(--smart-border);height:auto;border-radius:var(--smart-border-radius);background:var(--smart-background);z-index:5}.smart-date-time-picker.outlined .smart-spin-button{background:var(--smart-background);border-width:0}.smart-date-time-picker.outlined .smart-spin-button[active],.smart-date-time-picker.outlined .smart-spin-button[hover]{background:var(--smart-background);color:var(--smart-ui-state-active)}.smart-date-time-picker.outlined .smart-drop-down-button{padding:8px 0;background:var(--smart-background);border-width:0}.smart-date-time-picker.outlined .smart-drop-down-button.smart-calendar-button[active],.smart-date-time-picker.outlined .smart-drop-down-button.smart-calendar-button[hover]{background:var(--smart-background);color:var(--smart-ui-state-active)}.smart-date-time-picker.outlined .smart-hint{position:absolute;top:0;left:0;display:flex!important;border-color:var(--smart-border)!important;width:100%;max-height:100%;color:var(--smart-background-color);z-index:5;pointer-events:none;font-size:75%;line-height:15px;cursor:text;margin-top:-6px;transition:color .2s,font-size .2s,opacity .1s,font-size .2s,line-height .2s}.smart-date-time-picker.outlined .smart-hint:after,.smart-date-time-picker.outlined .smart-hint:before{content:"";display:block;box-sizing:border-box;margin-top:6px;border-top:solid 1px;border-top-color:var(--smart-border)!important;min-width:10px;height:8px;pointer-events:none;box-shadow:inset 0 1px transparent;transition:border-color .2s,box-shadow .2s}.smart-date-time-picker.outlined .smart-hint:before{margin-right:4px;border-left:solid 1px transparent;border-radius:4px 0}.smart-date-time-picker.outlined .smart-hint:after{flex-grow:1;margin-left:4px;border-right:solid 1px transparent;border-radius:0 4px}.smart-date-time-picker.outlined:not([focus]) .smart-hint{font-size:var(--smart-font-size);line-height:48px;opacity:0}.smart-date-time-picker.outlined[focus] .smart-content{border-color:var(--smart-primary);border-top-color:transparent!important}.smart-date-time-picker.outlined[focus] .smart-drop-down-button{color:var(--smart-primary)}.smart-date-time-picker.outlined[focus] .smart-hint{color:var(--smart-primary);opacity:1}.smart-date-time-picker.outlined[focus] .smart-hint:after,.smart-date-time-picker.outlined[focus] .smart-hint:before{border-top-color:var(--smart-primary)!important}.smart-date-time-picker.outlined.smart-element-init .smart-hint{visibility:hidden;display:none!important}.smart-drop-down.smart-date-time-drop-down{padding:0!important}.smart-drop-down.smart-date-time-drop-down[footer]{height:calc(30px + var(--smart-editor-drop-down-height));max-height:calc(30px + var(--smart-editor-drop-down-height))}.smart-drop-down.smart-date-time-drop-down smart-calendar{border:none;width:100%;height:100%;min-width:0;min-height:0;border-radius:0}.smart-drop-down.smart-date-time-drop-down smart-time-picker{border:none;width:100%;height:100%;min-height:0;border-radius:0;min-width:initial}.smart-drop-down.smart-date-time-drop-down smart-time-picker .smart-hour-minute-container{font-size:40px}.smart-drop-down.smart-date-time-drop-down .smart-footer,.smart-drop-down.smart-date-time-drop-down .smart-header{cursor:initial}.smart-drop-down.smart-date-time-drop-down .smart-date-time-picker-footer{height:100%;width:100%;display:flex;padding:1px}.smart-drop-down.smart-date-time-drop-down .smart-am-pm-element{width:100%}.smart-drop-down.smart-date-time-drop-down .smart-footer-component{display:flex;padding:1px}.smart-drop-down.smart-date-time-drop-down .smart-footer-component:focus{border-color:var(--smart-outline)}.smart-drop-down.smart-date-time-drop-down .smart-footer-component>input{outline:0;border:var(--smart-border-width) solid var(--smart-border);text-align:center;color:inherit;font-family:inherit;font-size:inherit;height:100%}.smart-drop-down.smart-date-time-drop-down .smart-footer-component>input:focus{border-color:var(--smart-outline)}.smart-drop-down.smart-date-time-drop-down .smart-footer-component>span{width:30%;overflow:hidden;display:flex;flex-direction:column}.smart-drop-down.smart-date-time-drop-down .smart-footer-component-today{padding:1px;font-family:var(--smart-font-family-icon);border:var(--smart-border-width) solid transparent;display:flex;width:30%;overflow:hidden;flex-direction:column;align-items:center;justify-content:center}.smart-drop-down.smart-date-time-drop-down .smart-footer-component-today:focus{outline:0}.smart-drop-down.smart-date-time-drop-down .smart-footer-component-hour,.smart-drop-down.smart-date-time-drop-down .smart-footer-component-minute{width:30%}.smart-drop-down.smart-date-time-drop-down .smart-footer-component-hour smart-repeat-button,.smart-drop-down.smart-date-time-drop-down .smart-footer-component-minute smart-repeat-button{border-radius:0;margin:0 0 0 -1px;width:100%;height:50%}.smart-drop-down.smart-date-time-drop-down .smart-footer-component-hour smart-repeat-button:last-child,.smart-drop-down.smart-date-time-drop-down .smart-footer-component-minute smart-repeat-button:last-child{border-top-color:transparent}.smart-drop-down.smart-date-time-drop-down .smart-footer-component-hour button,.smart-drop-down.smart-date-time-drop-down .smart-footer-component-minute button{border-radius:0;padding:0}.smart-drop-down.smart-date-time-drop-down .smart-footer-component-ampm{width:30%;overflow:hidden;display:flex;flex-direction:column}.smart-drop-down.smart-date-time-drop-down .smart-hour-element,.smart-drop-down.smart-date-time-drop-down .smart-minute-element{width:60%}.smart-drop-down.smart-date-time-drop-down .smart-today-element{cursor:pointer;outline:0}.smart-drop-down.smart-date-time-drop-down .smart-today-element:after{content:var(--smart-icon-calendar)}.smart-drop-down.smart-date-time-drop-down .smart-today-element:focus{border-color:var(--smart-outline)}.smart-drop-down.smart-date-time-drop-down .smart-drop-down-header{height:var(--smart-bar-height);width:100%;display:flex;align-items:center}.smart-drop-down.smart-date-time-drop-down .smart-drop-down-header:focus{outline:0}.smart-drop-down.smart-date-time-drop-down .smart-drop-down-header>div{width:50%;height:100%;display:flex;align-items:center;justify-content:center;cursor:pointer;background-color:var(--smart-primary);color:var(--smart-primary-color);opacity:var(--smart-date-time-picker-header-opacity);outline:unset}.smart-drop-down.smart-date-time-drop-down .smart-drop-down-header>div:focus{text-decoration:underline}.smart-drop-down.smart-date-time-drop-down .smart-drop-down-header>.smart-selected{background-color:var(--smart-primary);border-color:var(--smart-primary);color:var(--smart-primary-color);opacity:var(--smart-date-time-picker-header-opacity-active)}.smart-drop-down.smart-date-time-drop-down .smart-drop-down-content{width:100%;height:calc(100% - var(--smart-bar-height))}.smart-drop-down.smart-date-time-drop-down .smart-drop-down-content.partial,.smart-drop-down.smart-date-time-drop-down[drop-down-display-mode=classic] .smart-calendar-container,.smart-drop-down.smart-date-time-drop-down[drop-down-display-mode=timePicker] .smart-calendar-container{height:100%}.smart-drop-down.smart-date-time-drop-down .smart-date-time-picker .smart-hidden{display:none}.smart-drop-down.smart-date-time-drop-down.smart-visibility-hidden.not-in-view{left:-9999px;top:-9999px;transition:none}.smart-date-time-picker[right-to-left]>.smart-container{direction:initial}.smart-date-time-picker[right-to-left] .smart-hint,.smart-date-time-picker[right-to-left] .smart-input.smart-date-time-input,.smart-date-time-picker[right-to-left]>.smart-container>.smart-label{direction:rtl}
smart-docking-layout{width:var(--smart-docking-layout-default-width);height:var(--smart-docking-layout-default-height)}.smart-docking-layout .smart-items-container,smart-docking-layout .smart-horizontal-hidden-items-container,smart-docking-layout .smart-items-container,smart-docking-layout .smart-vertical-hidden-items-container{height:100%;width:100%;background-color:transparent}smart-docking-layout.smart-element{overflow:initial}smart-docking-layout:not([animation=none]) .smart-window .smart-dock-button:after{transition:transform .2s ease}.smart-docking-layout>.smart-container{overflow:hidden}.smart-docking-layout .smart-tabs-window-feedback.smart-window{position:absolute;opacity:0;max-width:400px;max-height:400px;pointer-events:none}.smart-docking-layout .smart-tabs-window-feedback.smart-window:not([animation=none]){transition:transform .2s ease-out,opacity .2s ease-out,visibility .2s ease-out}.smart-docking-layout .smart-tabs-window-feedback[tabs-window-dragged]{z-index:10001;opacity:.9;transform:scale(.2);min-width:400px;min-height:400px}.smart-docking-layout .smart-window .smart-content-container>.smart-content{align-items:stretch}.smart-docking-layout .smart-window .smart-dock-button:after{content:var(--smart-icon-arrow-up);font-size:.8rem}.smart-docking-layout .smart-window .smart-buttons-container .smart-dock-button:after{content:var(--smart-icon-window-pin-alt);font-size:.8rem}.smart-docking-layout .smart-window .smart-buttons-container .smart-menu-button:after{content:var(--smart-icon-menu);transform:rotate(180deg);font-size:.8rem}.smart-docking-layout .smart-window .smart-buttons-container .smart-auto-hide-button:after{content:var(--smart-icon-window-pin);font-size:.8rem}.smart-docking-layout .smart-window[focused]{box-shadow:none}.smart-docking-layout .smart-placeholder .smart-window .smart-content-container>.smart-header-section{min-height:0;height:0;padding:0}.smart-docking-layout .smart-docking-layout-item-holder{width:100%;height:100%}.smart-docking-layout .smart-horizontal-hidden-items-container,.smart-docking-layout .smart-vertical-hidden-items-container{width:100%;height:100%;background-color:transparent}.smart-docking-layout .smart-horizontal-hidden-items-container>.smart-container>smart-splitter-item,.smart-docking-layout .smart-vertical-hidden-items-container>.smart-container>smart-splitter-item{background-color:transparent}.smart-docking-layout .smart-docking-layout-auto-hide-window:focus,.smart-docking-layout .smart-docking-layout-auto-hide-window[focused]{box-shadow:none}.smart-docking-layout .smart-docking-layout-auto-hide-window[resize-mode=right]{transition:animation,visibility .2s ease-in;transform-origin:left;animation:leftToRightOut .2s cubic-bezier(.4,0,1,1)}.smart-docking-layout .smart-docking-layout-auto-hide-window[resize-mode=right][opened]{transition:animation,visibility .2s ease-in;transform-origin:left;animation:leftToRightIn .2s cubic-bezier(0,0,.2,1)}.smart-docking-layout .smart-docking-layout-auto-hide-window[resize-mode=right]:not([animation=none]){transform:scaleX(1)}.smart-docking-layout .smart-docking-layout-auto-hide-window[resize-mode=right]:not([animation=none]).smart-visibility-hidden{transform:scaleX(0)}.smart-docking-layout .smart-docking-layout-auto-hide-window[resize-mode=left]{transition:animation,visibility .2s ease-in;transform-origin:right;animation:rightToLeftOut .2s cubic-bezier(.4,0,1,1)}.smart-docking-layout .smart-docking-layout-auto-hide-window[resize-mode=left][opened]{transition:animation,visibility .2s ease-in;transform-origin:right;animation:rightToLeftIn .2s cubic-bezier(0,0,.2,1)}.smart-docking-layout .smart-docking-layout-auto-hide-window[resize-mode=left]:not([animation=none]){transform:scaleX(1)}.smart-docking-layout .smart-docking-layout-auto-hide-window[resize-mode=left]:not([animation=none]).smart-visibility-hidden{transform:scaleX(0)}.smart-docking-layout .smart-docking-layout-auto-hide-window[resize-mode=top]{transition:animation,visibility .2s ease-in;transform-origin:bottom;animation:bottomToTopOut .2s cubic-bezier(.4,0,1,1)}.smart-docking-layout .smart-docking-layout-auto-hide-window[resize-mode=top][opened]{transition:animation,visibility .2s ease-in;transform-origin:bottom;animation:bottomToTopIn .2s cubic-bezier(0,0,.2,1)}.smart-docking-layout .smart-docking-layout-auto-hide-window[resize-mode=top]:not([animation=none]){transform:scaleY(1)}.smart-docking-layout .smart-docking-layout-auto-hide-window[resize-mode=top]:not([animation=none]).smart-visibility-hidden{transform:scaleY(0)}.smart-docking-layout .smart-docking-layout-auto-hide-window[resize-mode=bottom]{transition:animation,visibility .2s ease-in;transform-origin:top;animation:topToBottomOut .2s cubic-bezier(.4,0,1,1)}.smart-docking-layout .smart-docking-layout-auto-hide-window[resize-mode=bottom][opened]{transition:animation,visibility .2s ease-in;transform-origin:top;animation:topToBottomIn .2s cubic-bezier(0,0,.2,1)}.smart-docking-layout .smart-docking-layout-auto-hide-window[resize-mode=bottom]:not([animation=none]){transform:scaleY(1)}.smart-docking-layout .smart-docking-layout-auto-hide-window[resize-mode=bottom]:not([animation=none]).smart-visibility-hidden{transform:scaleY(0)}.smart-docking-layout .smart-docking-layout-auto-hide-window.smart-window{position:absolute;box-shadow:none;border:1px solid #A9A9A9;border-radius:0;width:200px;height:200px;min-width:100px;min-height:100px}.smart-docking-layout .smart-docking-layout-auto-hide-window.smart-window .smart-content-container:not([class*=smart-window-resizing])>.smart-header-section{cursor:pointer;-webkit-user-select:none;user-select:none}.smart-docking-layout .smart-window-resize-feedback{border:2.5px solid #d3d3d3}.smart-docking-layout smart-tabs-window.smart-window{width:100%;height:100%;max-width:100%;top:initial;left:initial;z-index:initial;transform:initial;border-radius:0;position:relative;min-width:0;min-height:0;box-shadow:none;border:var(--smart-border-width) solid var(--smart-border)}.smart-docking-layout smart-tabs-window.smart-window smart-tabs{min-width:0;min-height:0;height:100%}.smart-docking-layout smart-tabs-window.smart-window .smart-maximize-button,.smart-docking-layout smart-tabs-window.smart-window .smart-minimize-button,.smart-docking-layout smart-tabs-window.smart-window .smart-pin-button{display:none}.smart-docking-layout smart-tabs-window.smart-window:not(.smart-docking-layout-auto-hide-window) .smart-content-container,.smart-docking-layout smart-tabs-window.smart-window[pinned]:not(.smart-docking-layout-auto-hide-window) .smart-content-container{cursor:pointer;-webkit-user-select:none;user-select:none}.smart-docking-layout smart-tabs-window.smart-window:not([animation=none]):not(.smart-docking-layout-auto-hide-window){transition:transform .2s ease-out}.smart-docking-layout smart-tabs-window.smart-window[collapsed]{height:100%}.smart-docking-layout smart-tabs-window.smart-window[tabs-window-dragged]:not(.smart-tabs-window-feedback){transform:scale(.75)}.smart-docking-layout smart-tabs-window.smart-window[ontop]:not([tabs-window-dragged]){z-index:initial}.smart-docking-layout smart-tabs-window.smart-window[auto-hide]{height:100%;width:100%;border:none}.smart-docking-layout smart-tabs-window.smart-window[auto-hide] smart-tabs{height:100%;width:100%}.smart-docking-layout smart-tabs-window.smart-window[auto-hide] .smart-content-container>.smart-content{padding:0;overflow:hidden}.smart-docking-layout smart-placeholder .smart-window .smart-content{height:100%}.smart-docking-layout smart-splitter{border:none}.smart-docking-layout smart-splitter smart-splitter-bar .smart-splitter-resize-button{display:none}.smart-docking-layout smart-splitter[show-locked-items] smart-splitter-item[locked].auto-hide-bottom>.smart-container::after,.smart-docking-layout smart-splitter[show-locked-items] smart-splitter-item[locked].auto-hide-left>.smart-container::after,.smart-docking-layout smart-splitter[show-locked-items] smart-splitter-item[locked].auto-hide-right>.smart-container::after,.smart-docking-layout smart-splitter[show-locked-items] smart-splitter-item[locked].auto-hide-top>.smart-container::after{content:""}.smart-docking-layout smart-splitter-item smart-tabs-window.smart-window[auto-hide] .smart-content-container>.smart-content{height:100%}.smart-docking-layout smart-splitter-item smart-tabs-window.smart-window:not([animation=none]){transition:none;animation:none;border:none}.smart-docking-layout smart-splitter-item.smart-placeholder smart-tab-item .smart-container:after{content:"Drop Items Here";font-family:var(--smart-font-family-icon);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);font-size:20px;padding:15px;color:gray;opacity:.75}@-moz-document url-prefix(){.smart-docking-layout smart-splitter-item[locked].auto-hide-top{line-height:100%}}@supports (-ms-ime-align:auto){.smart-docking-layout smart-tabs[vertical]>.smart-container{display:table-cell}}.smart-docking-layout[dragged]{cursor:pointer;-webkit-user-select:none;user-select:none}.smart-docking-layout[dragged]>.smart-container{overflow:visible}.smart-docking-layout[snap-mode=advanced] smart-splitter-item .smart-content{overflow:hidden}smart-tabs-window[tabs-window-dragged]:not(.smart-tabs-window-feedback){transform:scale(.2)}smart-tabs-window.smart-window .smart-buttons-container .smart-auto-hide-button:after{content:var(--smart-icon-window-pin);font-size:.8rem}smart-tabs-window.smart-window[auto-hide] .smart-content-container>.smart-content{padding:5px}smart-tabs-window.smart-window[tabs-window-dragged]{animation:none;position:absolute;opacity:.5;transform:scale(.2);transform-origin:top left;z-index:10001;pointer-events:none;min-width:400px;min-height:400px}smart-tabs-window.smart-window[tabs-window-dragged]:not([animation=none]){transition:transform .2s ease-in;animation:scaleInNo .2s cubic-bezier(.4,0,.2,1)}.smart-docking-snap-bottom-feedback,.smart-docking-snap-left-feedback,.smart-docking-snap-right-feedback,.smart-docking-snap-top-feedback{transition:all 50ms cubic-bezier(.4,0,.6,1);z-index:10001;position:absolute;opacity:.65;border-radius:2px;box-shadow:0 0 1px 1px var(--smart-background-color);border-top-left-radius:var(--smart-border-top-left-radius);border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-left-radius:var(--smart-border-bottom-right-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);animation:scaleIn .2s cubic-bezier(.4,0,.2,1);transform:scale(1);pointer-events:none}.smart-docking-snap-bottom-feedback[disabled]:after,.smart-docking-snap-left-feedback[disabled]:after,.smart-docking-snap-right-feedback[disabled]:after,.smart-docking-snap-top-feedback[disabled]:after{position:absolute;content:var(--smart-icon-block);font-family:var(--smart-font-family-icon);opacity:.25;color:red;font-size:35px;top:50%;left:50%;transform:translate(-50%,-50%)}.smart-docking-snap-right-feedback{width:50%;left:calc(50% - 5px)}.smart-docking-snap-header-feedback,.smart-docking-snap-layout-bottom-feedback,.smart-docking-snap-layout-left-feedback,.smart-docking-snap-layout-right-feedback,.smart-docking-snap-layout-top-feedback{position:absolute;opacity:.65;box-shadow:0 0 1px 1px var(--smart-background-color);border-radius:var(--smart-border-radius);animation:scaleIn .2s cubic-bezier(.4,0,.2,1);transform:scale(1);pointer-events:none;cursor:pointer;z-index:10001;transition:width 50ms cubic-bezier(.4,0,.2,1),height 50ms cubic-bezier(.4,0,.2,1),top 50ms cubic-bezier(.4,0,.6,1),animation .2s cubic-bezier(.4,0,.6,1),left 50ms cubic-bezier(.4,0,.2,1)}.smart-docking-snap-header-feedback.smart-visibility-hidden,.smart-docking-snap-layout-bottom-feedback.smart-visibility-hidden,.smart-docking-snap-layout-left-feedback.smart-visibility-hidden,.smart-docking-snap-layout-right-feedback.smart-visibility-hidden,.smart-docking-snap-layout-top-feedback.smart-visibility-hidden{transition:animation .2s cubic-bezier(.4,0,.6,1),visibility .2s cubic-bezier(.4,0,.6,1),top .2s cubic-bezier(.4,0,.2,1),left .1s cubic-bezier(.4,0,.2,1);animation:scaleOut .2s cubic-bezier(.4,0,.6,1);transform:scale(0)}.smart-docking-snap-header-feedback[disabled]:after,.smart-docking-snap-layout-bottom-feedback[disabled]:after,.smart-docking-snap-layout-left-feedback[disabled]:after,.smart-docking-snap-layout-right-feedback[disabled]:after,.smart-docking-snap-layout-top-feedback[disabled]:after{position:absolute;content:var(--smart-icon-block);font-family:var(--smart-font-family-icon);opacity:.25;color:red;font-size:35px;top:50%;left:50%;transform:translate(-50%,-50%)}.smart-docking-snap-layout-left-feedback,.smart-docking-snap-layout-right-feedback{max-width:50px;transform-origin:left}.smart-docking-snap-layout-bottom-feedback,.smart-docking-snap-layout-top-feedback{max-height:50px;transform-origin:left}.smart-docking-layout-auto-hide-window,.smart-docking-layout-auto-hide-window[ontop]{z-index:9999!important}.smart-docking-layout-snap{width:110px;height:110px;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.smart-docking-layout-snap>div{width:100%;height:33.3333333333%;display:flex;justify-content:center;align-items:center}.smart-docking-layout-snap .header{background-color:var(--smart-primary);position:absolute}.smart-docking-layout-snap .bottom,.smart-docking-layout-snap .center,.smart-docking-layout-snap .left,.smart-docking-layout-snap .right,.smart-docking-layout-snap .top{width:35px;height:35px;float:left;padding:2px;overflow:hidden;opacity:.25}.smart-docking-layout-snap .bottom>div,.smart-docking-layout-snap .center>div,.smart-docking-layout-snap .left>div,.smart-docking-layout-snap .right>div,.smart-docking-layout-snap .top>div{width:100%;height:100%;border:1px solid var(--smart-border);background:var(--smart-background);border-top-width:6px;box-sizing:border-box;display:flex;pointer-events:none}.smart-docking-layout-snap .bottom>div div,.smart-docking-layout-snap .center>div div,.smart-docking-layout-snap .left>div div,.smart-docking-layout-snap .right>div div,.smart-docking-layout-snap .top>div div{width:100%;height:50%;background-color:var(--smart-primary)}.smart-docking-layout-snap .bottom[show],.smart-docking-layout-snap .center[show],.smart-docking-layout-snap .left[show],.smart-docking-layout-snap .right[show],.smart-docking-layout-snap .top[show]{opacity:1}.smart-docking-layout-snap .left>div div,.smart-docking-layout-snap .right>div div{width:50%;height:100%}.smart-docking-layout-snap .right>div{flex-direction:column;align-items:flex-end}.smart-docking-layout-snap .bottom>div{align-items:flex-end}.smart-docking-layout-snap .center>div div{height:100%}.smart-docking-layout-snap.layout-bottom,.smart-docking-layout-snap.layout-left,.smart-docking-layout-snap.layout-right,.smart-docking-layout-snap.layout-top{position:absolute;width:30px;height:30px;overflow:hidden;opacity:.25}.smart-docking-layout-snap.layout-bottom>div,.smart-docking-layout-snap.layout-left>div,.smart-docking-layout-snap.layout-right>div,.smart-docking-layout-snap.layout-top>div{width:100%;height:100%;border:1px solid var(--smart-border);background:var(--smart-background);border-top-width:6px;box-sizing:border-box;display:flex;pointer-events:none}.smart-docking-layout-snap.layout-bottom>div div,.smart-docking-layout-snap.layout-left>div div,.smart-docking-layout-snap.layout-right>div div,.smart-docking-layout-snap.layout-top>div div{width:100%;height:100%;background-color:var(--smart-primary)}.smart-docking-layout-snap.layout-bottom.smart-hidden,.smart-docking-layout-snap.layout-left.smart-hidden,.smart-docking-layout-snap.layout-right.smart-hidden,.smart-docking-layout-snap.layout-top.smart-hidden{display:none}.smart-docking-layout-snap.layout-bottom[show],.smart-docking-layout-snap.layout-left[show],.smart-docking-layout-snap.layout-right[show],.smart-docking-layout-snap.layout-top[show]{opacity:1}.smart-docking-layout-snap.layout-top{left:50%;transform:translateX(-50%);top:5px}.smart-docking-layout-snap.layout-top>div{height:50%;position:relative}.smart-docking-layout-snap.layout-bottom>div:after,.smart-docking-layout-snap.layout-top>div:after{position:absolute;height:0;border-left:var(--smart-docking-layout-feedback-background-secondary-size) solid transparent}.smart-docking-layout-snap.layout-top>div:after{content:"";width:0;border-right:var(--smart-docking-layout-feedback-background-secondary-size) solid transparent;border-top:none;border-bottom:var(--smart-docking-layout-feedback-background-secondary-size) solid var(--smart-border);left:50%;top:180%;transform:translateX(-50%)}.smart-docking-layout-snap.layout-bottom{display:flex;align-items:flex-end;left:50%;transform:translateX(-50%);top:auto;bottom:5px}.smart-docking-layout-snap.layout-bottom>div{height:50%;position:relative}.smart-docking-layout-snap.layout-bottom>div:after{content:"";width:0;border-right:var(--smart-docking-layout-feedback-background-secondary-size) solid transparent;border-top:var(--smart-docking-layout-feedback-background-secondary-size) solid var(--smart-border);border-bottom:none;left:50%;top:-100%;transform:translate(-50%,-150%)}.smart-docking-layout-snap.layout-left>div:after,.smart-docking-layout-snap.layout-right>div:after{content:"";height:0;border-top:var(--smart-docking-layout-feedback-background-secondary-size) solid transparent}.smart-docking-layout-snap.layout-left{top:50%;transform:translateY(-50%);left:5px}.smart-docking-layout-snap.layout-left>div{width:50%;position:relative}.smart-docking-layout-snap.layout-left>div:after{position:absolute;width:0;border-left:none;border-right:var(--smart-docking-layout-feedback-background-secondary-size) solid var(--smart-border);border-bottom:var(--smart-docking-layout-feedback-background-secondary-size) solid transparent;left:155%;top:50%;transform:translateY(-50%)}.smart-docking-layout-snap.layout-right{display:flex;align-items:flex-end;flex-direction:column;left:auto;top:50%;transform:translateY(-50%);right:5px}.smart-docking-layout-snap.layout-right>div{width:50%;position:relative}.smart-docking-layout-snap.layout-right>div:after{position:absolute;width:0;top:50%;transform:translateY(-50%);border-right:none;border-left:var(--smart-docking-layout-feedback-background-secondary-size) solid var(--smart-border);border-bottom:var(--smart-docking-layout-feedback-background-secondary-size) solid transparent;left:calc(-100% - 1px)}.smart-docking-layout-snap-highlighter{background-color:var(--smart-primary);opacity:.5;position:absolute;pointer-events:none;z-index:10001}.smart-docking-layout-snap-highlighter[position=header]{width:100%;height:100%}.smart-docking-layout-snap-highlighter[position=center]{top:0;left:0;width:100%;height:100%}.smart-docking-layout-snap-highlighter[position=top]{width:100%;height:50%;max-height:50%;top:0}.smart-docking-layout-snap-highlighter[position=bottom]{width:100%;height:50%;max-height:50%;bottom:0}.smart-docking-layout-snap-highlighter[position=left]{width:50%;max-width:50%;height:100%;left:0;top:0}.smart-docking-layout-snap-highlighter[position=right]{width:50%;max-width:50%;height:100%;right:0;top:0}.smart-docking-layout-snap-highlighter[position=layout-top]{width:100%;height:10%;max-height:50%;top:0}.smart-docking-layout-snap-highlighter[position=layout-bottom]{width:100%;height:10%;max-height:50%;bottom:0}.smart-docking-layout-snap-highlighter[position=layout-left]{width:10%;max-width:50%;height:100%;left:0;bottom:0}.smart-docking-layout-snap-highlighter[position=layout-right]{width:10%;max-width:50%;height:100%;right:0;bottom:0}.smart-docking-layout-snap-highlighter-header{background-color:var(--smart-primary);opacity:.5;position:absolute;pointer-events:none;z-index:10001;transform:none}@keyframes scaleInNo{0%{transform:scale(1)}100%{transform:scale(.2)}}@keyframes leftToRightIn{0%{transform:scaleX(0)}}@keyframes leftToRightOut{0%{transform:scaleX(1)}100%{transform:scaleX(0)}}@keyframes rightToLeftIn{0%{transform:scaleX(0)}}@keyframes rightToLeftOut{0%{transform:scaleX(1)}100%{transform:scaleX(0)}}@keyframes bottomToTopIn{0%{transform:scaleY(0)}}@keyframes bottomToTopOut{0%{transform:scaleY(1)}100%{transform:scaleY(0)}}@keyframes topToBottomIn{0%{transform:scaleY(0)}}@keyframes topToBottomOut{0%{transform:scaleY(1)}100%{transform:scaleY(0)}}
smart-drop-down-list{width:var(--smart-drop-down-list-default-width);height:var(--smart-drop-down-list-default-height);overflow:initial;visibility:hidden;cursor:pointer}smart-drop-down-list.smart-element{overflow:visible;visibility:inherit;border-width:0}smart-drop-down-list.smart-element .smart-drop-down.smart-visibility-hidden{transform:scale(0);transition:transform .2s ease-in;transform-origin:left top 0}.smart-drop-down-list smart-list-box{position:relative;width:100%;height:100%;border:initial;padding:initial;overflow:hidden;font-size:inherit;font-family:inherit;outline:0}.smart-drop-down-list .smart-buttons-container .smart-action-button .smart-token{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;cursor:pointer;margin:0 2px;-webkit-user-select:none;user-select:none}.smart-drop-down-list .smart-drop-down-list-unselect-button{pointer-events:none}.smart-drop-down-list .smart-drop-down-list-unselect-button:not(:empty){margin-right:2px}.smart-drop-down-list[selection-display-mode=tokens] .smart-drop-down-list-unselect-button{pointer-events:initial}
.smart-drop-down-button.smart-drop-down-container smart-scroll-viewer>.smart-container>.smart-scroll-viewer-container>.smart-scroll-viewer-content-container,smart-drop-down-button .smart-drop-down-container>smart-scroll-viewer>.smart-container>.smart-scroll-viewer-container>.smart-scroll-viewer-content-container{vertical-align:top;padding:0}smart-drop-down-button{width:var(--smart-drop-down-button-default-width);height:var(--smart-drop-down-button-default-height);visibility:hidden}smart-drop-down-button.smart-element{display:inline-block;backface-visibility:hidden;overflow:visible;border:none;visibility:inherit}smart-drop-down-button .smart-ripple{background:var(--smart-primary-color)}smart-drop-down-button .smart-buttons-container>.smart-action-button:empty{padding:0;width:0}smart-drop-down-button .smart-drop-down-container>smart-scroll-viewer{--smart-scroll-viewer-min-width:calc(var(--smart-editor-drop-down-min-width) - 2 * var(--smart-border-width) - 2 * var(--smart-editor-drop-down-padding-size));--smart-scroll-viewer-max-width:calc(var(--smart-editor-drop-down-max-width) - 2 * var(--smart-border-width) - 2 * var(--smart-editor-drop-down-padding-size));--smart-scroll-viewer-min-height:calc(var(--smart-editor-drop-down-min-height) - 2 * var(--smart-border-width) - 2 * var(--smart-editor-drop-down-padding-size));--smart-scroll-viewer-max-height:calc(var(--smart-editor-drop-down-max-height) - 2 * var(--smart-border-width) - 2 * var(--smart-editor-drop-down-padding-size));width:100%;height:100%;border:none;padding:0;overflow:hidden}smart-drop-down-button .smart-drop-down-container:not([resize-mode=none])>smart-scroll-viewer{--smart-scroll-viewer-min-height:calc(var(--smart-editor-drop-down-min-height) - 2 * var(--smart-border-width) - 2 * var(--smart-editor-drop-down-padding-size) - var(--smart-editor-drop-down-resize-bar-height));--smart-scroll-viewer-max-height:calc(var(--smart-editor-drop-down-max-height) - 2 * var(--smart-border-width) - 2 * var(--smart-editor-drop-down-padding-size) - var(--smart-editor- drop-down-resize-bar-height));height:calc(100% - var(--smart-editor-drop-down-resize-bar-height))}smart-drop-down-button .smart-drop-down-container[empty]>smart-scroll-viewer>.smart-container>.smart-scroll-viewer-container{display:flex;align-items:center;justify-content:center;font-style:italic}smart-drop-down-button .smart-drop-down-container smart-tree{border:0}smart-drop-down-button.primary{--smart-editor-selection:var(--smart-primary);--smart-editor-selection-color:var(--smart-primary-color);--smart-ui-state-active:var(--smart-primary);--smart-ui-state-color-active:var(--smart-primary-color);--smart-ui-state-border-active:var(--smart-primary);--smart-ui-state-selected:rgba(var(--smart-primary-rgb), .1);--smart-ui-state-color-selected:var(--smart-primary);--smart-ui-state-border-selected:rgba(var(--smart-primary-rgb), .1);--smart-border:rgba(var(--smart-primary-rgb), .9)}smart-drop-down-button.primary:not([drop-down-open-mode=dropDownButton]) .smart-action-button{--smart-border:rgba(var(--smart-primary-rgb), .9);background-color:var(--smart-primary);color:var(--smart-primary-color)}smart-drop-down-button.primary .smart-action-button,smart-drop-down-button.primary .smart-drop-down-button{--smart-ui-state-border-hover:rgba(var(--smart-primary-rgb), .9);--smart-ui-state-hover:rgba(var(--smart-primary-rgb), .9);--smart-ui-state-color-hover:var(--smart-primary-color);background-color:var(--smart-primary);color:var(--smart-primary-color)}smart-drop-down-button.secondary{--smart-editor-selection:var(--smart-secondary);--smart-editor-selection-color:var(--smart-secondary-color);--smart-ui-state-active:var(--smart-secondary);--smart-ui-state-color-active:var(--smart-secondary-color);--smart-ui-state-border-active:var(--smart-secondary);--smart-ui-state-selected:rgba(var(--smart-secondary-rgb), .1);--smart-ui-state-color-selected:var(--smart-secondary);--smart-ui-state-border-selected:rgba(var(--smart-secondary-rgb), .1);--smart-border:rgba(var(--smart-secondary-rgb), .9)}smart-drop-down-button.secondary:not([drop-down-open-mode=dropDownButton]) .smart-action-button{--smart-border:rgba(var(--smart-secondary-rgb), .9);background-color:var(--smart-secondary);color:var(--smart-secondary-color)}smart-drop-down-button.secondary .smart-action-button,smart-drop-down-button.secondary .smart-drop-down-button{--smart-ui-state-border-hover:rgba(var(--smart-secondary-rgb), .9);--smart-ui-state-hover:rgba(var(--smart-secondary-rgb), .9);--smart-ui-state-color-hover:var(--smart-secondary-color);background-color:var(--smart-secondary);color:var(--smart-secondary-color)}smart-drop-down-button.success{--smart-editor-selection:var(--smart-success);--smart-editor-selection-color:var(--smart-success-color);--smart-ui-state-active:var(--smart-success);--smart-ui-state-color-active:var(--smart-success-color);--smart-ui-state-border-active:var(--smart-success);--smart-ui-state-selected:rgba(var(--smart-success-rgb), .1);--smart-ui-state-color-selected:var(--smart-success);--smart-ui-state-border-selected:rgba(var(--smart-success-rgb), .1);--smart-border:rgba(var(--smart-success-rgb), .9)}smart-drop-down-button.success:not([drop-down-open-mode=dropDownButton]) .smart-action-button{--smart-border:rgba(var(--smart-success-rgb), .9);background-color:var(--smart-success);color:var(--smart-success-color)}smart-drop-down-button.success .smart-action-button,smart-drop-down-button.success .smart-drop-down-button{--smart-ui-state-border-hover:rgba(var(--smart-success-rgb), .9);--smart-ui-state-hover:rgba(var(--smart-success-rgb), .9);--smart-ui-state-color-hover:var(--smart-success-color);background-color:var(--smart-success);color:var(--smart-success-color)}smart-drop-down-button.info{--smart-editor-selection:var(--smart-info);--smart-editor-selection-color:var(--smart-info-color);--smart-ui-state-active:var(--smart-info);--smart-ui-state-color-active:var(--smart-info-color);--smart-ui-state-border-active:var(--smart-info);--smart-ui-state-selected:rgba(var(--smart-info-rgb), .1);--smart-ui-state-color-selected:var(--smart-info);--smart-ui-state-border-selected:rgba(var(--smart-info-rgb), .1);--smart-border:rgba(var(--smart-info-rgb), .9)}smart-drop-down-button.info:not([drop-down-open-mode=dropDownButton]) .smart-action-button{--smart-border:rgba(var(--smart-info-rgb), .9);background-color:var(--smart-info);color:var(--smart-info-color)}smart-drop-down-button.info .smart-action-button,smart-drop-down-button.info .smart-drop-down-button{--smart-ui-state-border-hover:rgba(var(--smart-info-rgb), .9);--smart-ui-state-hover:rgba(var(--smart-info-rgb), .9);--smart-ui-state-color-hover:var(--smart-info-color);background-color:var(--smart-info);color:var(--smart-info-color)}smart-drop-down-button.warning{--smart-editor-selection:var(--smart-warning);--smart-editor-selection-color:var(--smart-warning-color);--smart-ui-state-active:var(--smart-warning);--smart-ui-state-color-active:var(--smart-warning-color);--smart-ui-state-border-active:var(--smart-warning);--smart-ui-state-selected:rgba(var(--smart-warning-rgb), .1);--smart-ui-state-color-selected:var(--smart-warning);--smart-ui-state-border-selected:rgba(var(--smart-warning-rgb), .1);--smart-border:rgba(var(--smart-warning-rgb), .9)}smart-drop-down-button.warning:not([drop-down-open-mode=dropDownButton]) .smart-action-button{--smart-border:rgba(var(--smart-warning-rgb), .9);background-color:var(--smart-warning);color:var(--smart-warning-color)}smart-drop-down-button.warning .smart-action-button,smart-drop-down-button.warning .smart-drop-down-button{--smart-ui-state-border-hover:rgba(var(--smart-warning-rgb), .9);--smart-ui-state-hover:rgba(var(--smart-warning-rgb), .9);--smart-ui-state-color-hover:var(--smart-warning-color);background-color:var(--smart-warning);color:var(--smart-warning-color)}smart-drop-down-button.error{--smart-editor-selection:var(--smart-error);--smart-editor-selection-color:var(--smart-error-color);--smart-ui-state-active:var(--smart-error);--smart-ui-state-color-active:var(--smart-error-color);--smart-ui-state-border-active:var(--smart-error);--smart-ui-state-selected:rgba(var(--smart-error-rgb), .1);--smart-ui-state-color-selected:var(--smart-error);--smart-ui-state-border-selected:rgba(var(--smart-error-rgb), .1);--smart-border:rgba(var(--smart-error-rgb), .9)}smart-drop-down-button.error:not([drop-down-open-mode=dropDownButton]) .smart-action-button{--smart-border:rgba(var(--smart-error-rgb), .9);background-color:var(--smart-error);color:var(--smart-error-color)}smart-drop-down-button.error .smart-action-button,smart-drop-down-button.error .smart-drop-down-button{--smart-ui-state-border-hover:rgba(var(--smart-error-rgb), .9);--smart-ui-state-hover:rgba(var(--smart-error-rgb), .9);--smart-ui-state-color-hover:var(--smart-error-color);background-color:var(--smart-error);color:var(--smart-error-color)}smart-drop-down-button.light{--smart-editor-selection:var(--smart-light);--smart-editor-selection-color:var(--smart-light-color);--smart-ui-state-active:var(--smart-light);--smart-ui-state-color-active:var(--smart-light-color);--smart-ui-state-border-active:var(--smart-light);--smart-ui-state-selected:rgba(var(--smart-light-rgb), .1);--smart-ui-state-color-selected:var(--smart-light);--smart-ui-state-border-selected:rgba(var(--smart-light-rgb), .1);--smart-border:rgba(var(--smart-light-rgb), .9)}smart-drop-down-button.light:not([drop-down-open-mode=dropDownButton]) .smart-action-button{--smart-border:rgba(var(--smart-light-rgb), .9);background-color:var(--smart-light);color:var(--smart-light-color)}smart-drop-down-button.light .smart-action-button,smart-drop-down-button.light .smart-drop-down-button{--smart-ui-state-border-hover:rgba(var(--smart-light-rgb), .9);--smart-ui-state-hover:rgba(var(--smart-light-rgb), .9);--smart-ui-state-color-hover:var(--smart-light-color);background-color:var(--smart-light);color:var(--smart-light-color)}smart-drop-down-button.dark{--smart-editor-selection:var(--smart-dark);--smart-editor-selection-color:var(--smart-dark-color);--smart-ui-state-active:var(--smart-dark);--smart-ui-state-color-active:var(--smart-dark-color);--smart-ui-state-border-active:var(--smart-dark);--smart-ui-state-selected:rgba(var(--smart-dark-rgb), .1);--smart-ui-state-color-selected:var(--smart-dark);--smart-ui-state-border-selected:rgba(var(--smart-dark-rgb), .1);--smart-border:rgba(var(--smart-dark-rgb), .9)}smart-drop-down-button.dark:not([drop-down-open-mode=dropDownButton]) .smart-action-button{--smart-border:rgba(var(--smart-dark-rgb), .9);background-color:var(--smart-dark);color:var(--smart-dark-color)}smart-drop-down-button.dark .smart-action-button,smart-drop-down-button.dark .smart-drop-down-button{--smart-ui-state-border-hover:rgba(var(--smart-dark-rgb), .9);--smart-ui-state-hover:rgba(var(--smart-dark-rgb), .9);--smart-ui-state-color-hover:var(--smart-dark-color);background-color:var(--smart-dark);color:var(--smart-dark-color)}.smart-drop-down-button.smart-drop-down-container smart-scroll-viewer{--smart-scroll-viewer-min-width:calc(var(--smart-editor-drop-down-min-width) - 2 * var(--smart-border-width) - 2 * var(--smart-editor-drop-down-padding-size));--smart-scroll-viewer-max-width:calc(var(--smart-editor-drop-down-max-width) - 2 * var(--smart-border-width) - 2 * var(--smart-editor-drop-down-padding-size));--smart-scroll-viewer-min-height:calc(var(--smart-editor-drop-down-min-height) - 2 * var(--smart-border-width) - 2 * var(--smart-editor-drop-down-padding-size));--smart-scroll-viewer-max-height:calc(var(--smart-editor-drop-down-max-height) - 2 * var(--smart-border-width) - 2 * var(--smart-editor-drop-down-padding-size));width:100%;height:100%;border:none;padding:0;overflow:hidden}
.smart-drop-down-box,.smart-drop-down-box .smart-action-button{border-color:var(--smart-border);border-top-left-radius:var(--smart-border-top-left-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius)}.smart-drop-down-box{background:var(--smart-surface);border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);overflow:initial;font-family:var(--smart-font-family);font-size:var(--smart-font-size);outline:0;height:var(--smart-editor-height)}.smart-drop-down-box.smart-container,.smart-drop-down-box>.smart-container{display:flex;position:relative;align-items:center}.smart-drop-down-box.smart-container>.smart-content,.smart-drop-down-box>.smart-container>.smart-content{position:relative;display:flex;width:100%;height:100%}.smart-drop-down-box .smart-buttons-container{width:inherit;height:inherit;display:inherit;flex-direction:inherit;cursor:inherit;position:inherit;overflow:hidden;min-height:inherit}.smart-drop-down-box .smart-action-button{display:flex;padding-left:var(--smart-editor-label-padding);align-content:center;outline:transparent solid 1px;height:100%;width:calc(100% - var(--smart-editor-addon-width));flex-wrap:wrap;overflow:hidden;position:relative;border-style:solid;border-width:var(--smart-border-width);align-items:center;border-right:none;-webkit-user-select:none;user-select:none;white-space:nowrap}.smart-drop-down-box .smart-action-button .smart-input{color:inherit;background:inherit;border:none;width:calc(100% - var(--smart-editor-addon-width));height:100%;outline:0;text-overflow:ellipsis}.smart-drop-down-box .smart-action-button .smart-input::placeholder{color:inherit}.smart-drop-down-box .smart-drop-down-button{display:flex;align-items:center;justify-content:center;width:var(--smart-editor-addon-width);min-width:var(--smart-editor-addon-width);color:inherit;outline:transparent solid 1px;overflow:hidden;position:relative;background-color:var(--smart-surface);border-width:var(--smart-border-width);border-style:solid;border-color:var(--smart-border);border-left:none;color:var(--smart-surface-color);border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);cursor:pointer}.smart-drop-down-box .smart-drop-down-button .smart-drop-down-button-icon{pointer-events:none;width:100%;height:100%;display:flex;justify-content:center;align-items:center;transform-origin:center;font-family:var(--smart-font-family-icon)}.smart-drop-down-box .smart-drop-down-button .smart-drop-down-button-icon:after{content:var(--smart-icon-arrow-down);font-size:var(--smart-arrow-size)}.smart-drop-down-box .smart-drop-down-button[active]{border-color:var(--smart-ui-state-border-active);background-color:var(--smart-ui-state-active);color:var(--smart-ui-state-color-active)}.smart-drop-down-box .smart-drop-down-button[center-top] .smart-drop-down-button-icon:after,.smart-drop-down-box .smart-drop-down-button[top] .smart-drop-down-button-icon:after{transform:rotate(180deg)}.smart-drop-down-box .smart-drop-down{font-family:var(--smart-font-family);font-size:var(--smart-font-size)}.smart-drop-down-box .smart-drop-down.smart-visibility-hidden{transform:scale(0);transition:transform .2s ease-in;transform-origin:left top 0}.smart-drop-down-box[drop-down-button-position=bottom] .smart-action-button,.smart-drop-down-box[drop-down-button-position=top] .smart-action-button{min-height:var(--smart-editor-height);padding-left:initial}.smart-drop-down-box[drop-down-button-position=bottom] .smart-action-button,.smart-drop-down-box[drop-down-button-position=bottom] .smart-drop-down-button,.smart-drop-down-box[drop-down-button-position=top] .smart-action-button,.smart-drop-down-box[drop-down-button-position=top] .smart-drop-down-button{width:100%;border:var(--smart-border-width) solid var(--smart-border);height:50%;justify-content:center}.smart-drop-down-box[drop-down-button-position=bottom]:not([drop-down-open-mode=dropDownButton]) .smart-drop-down-button,.smart-drop-down-box[drop-down-button-position=top]:not([drop-down-open-mode=dropDownButton]) .smart-action-button{border-top:initial}.smart-drop-down-box[drop-down-button-position=top]{min-height:calc(2 * var(--smart-editor-height))}.smart-drop-down-box[drop-down-button-position=top] .smart-content{flex-direction:column-reverse}.smart-drop-down-box[drop-down-button-position=top] .smart-drop-down-button{border-bottom:initial;border-top-left-radius:var(--smart-border-top-left-radius);border-bottom-left-radius:0;border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-right-radius:0}.smart-drop-down-box[drop-down-button-position=top] .smart-action-button{border-top-left-radius:0;border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-top-right-radius:0;border-bottom-right-radius:var(--smart-border-bottom-right-radius)}.smart-drop-down-box[drop-down-button-position=bottom]{min-height:calc(2 * var(--smart-editor-height))}.smart-drop-down-box[drop-down-button-position=bottom] .smart-content{flex-direction:column}.smart-drop-down-box[drop-down-button-position=bottom] .smart-action-button{border-bottom:initial;border-top-left-radius:var(--smart-border-top-left-radius);border-bottom-left-radius:0;border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-right-radius:0}.smart-drop-down-box[drop-down-button-position=bottom] .smart-drop-down-button{border-top-left-radius:0;border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-top-right-radius:0;border-bottom-right-radius:var(--smart-border-bottom-right-radius)}.smart-drop-down-box[drop-down-button-position=left].smart-container>.smart-content,.smart-drop-down-box[drop-down-button-position=left]>.smart-container>.smart-content{flex-direction:row-reverse}.smart-drop-down-box[drop-down-button-position=left] .smart-action-button{padding-right:var(--smart-editor-label-padding);border-right:var(--smart-border-width) solid var(--smart-border);border-color:var(--smart-border);border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);padding-left:initial;flex-direction:row-reverse}.smart-drop-down-box[drop-down-button-position=left] .smart-drop-down-button{border-left:var(--smart-border-width) solid var(--smart-border);border-color:var(--smart-border);border-top-left-radius:var(--smart-border-top-left-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-top-right-radius:0;border-bottom-right-radius:0;border-right:initial}.smart-drop-down-box[drop-down-button-position=left] .smart-drop-down-button[selected]{border-right:initial}.smart-drop-down-box[drop-down-button-position=left]:not([drop-down-open-mode=dropDownButton]) .smart-action-button{border-left:initial}.smart-drop-down-box[drop-down-button-position=right] .smart-action-button{padding-left:var(--smart-editor-label-padding)}.smart-drop-down-box[drop-down-button-position=none] .smart-action-button{border-right:var(--smart-border-width) solid var(--smart-border);border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);width:100%;padding-right:var(--smart-editor-label-padding)}.smart-drop-down-box[drop-down-button-position=none] .smart-drop-down-button{display:none}.smart-drop-down-box:not([drop-down-open-mode=dropDownButton]) .smart-action-button{border-color:var(--smart-border);background-color:var(--smart-surface);color:var(--smart-surface-color)}.smart-drop-down-box[drop-down-open-mode=dropDownButton] .smart-action-button{border-color:var(--smart-border);background-color:var(--smart-background);color:var(--smart-background-color)}.smart-drop-down-box[drop-down-open-mode=dropDownButton] .smart-action-button[active]{border-color:var(--smart-ui-state-border-active);background-color:var(--smart-ui-state-active);color:var(--smart-ui-state-color-active)}.smart-drop-down-box[drop-down-open-mode=dropDownButton] .smart-drop-down-button{border-color:var(--smart-border);background-color:var(--smart-surface);color:var(--smart-surface-color);border-left-style:solid;border-left-width:var(--smart-border-width)}.smart-drop-down-box[drop-down-open-mode=dropDownButton][drop-down-button-position=left]:not([hover]) .smart-drop-down-button:focus{border-color:var(--smart-outline);box-shadow:var(--smart-border-width) 0 0 0 var(--smart-outline)}.smart-drop-down-box[drop-down-open-mode=dropDownButton][drop-down-button-position=left]:not([hover]) .smart-action-button:focus{border-color:var(--smart-outline);box-shadow:calc(-1 * var(--smart-border-width)) 0 0 0 var(--smart-outline)}.smart-drop-down-box[drop-down-open-mode=dropDownButton]:not([drop-down-button-position]):not([hover]) .smart-action-button:focus,.smart-drop-down-box[drop-down-open-mode=dropDownButton][drop-down-button-position=right]:not([hover]) .smart-action-button:focus{box-shadow:var(--smart-border-width) 0 0 0 var(--smart-outline);border-color:var(--smart-outline);z-index:1}.smart-drop-down-box[drop-down-open-mode=dropDownButton]:not([drop-down-button-position]):not([hover]) .smart-drop-down-button:focus{border-color:var(--smart-outline)}.smart-drop-down-box[resizing]{-webkit-user-select:none;user-select:none;touch-action:none}.smart-drop-down-box[readonly] input{user-select:none;-moz-user-select:none;-webkit-user-select:none}.smart-drop-down-box[hover] .smart-drop-down-button,.smart-drop-down-box[hover]:not([drop-down-open-mode=dropDownButton]) .smart-action-button{border-color:var(--smart-ui-state-border-hover);background-color:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover)}.smart-drop-down-box[focus]:not([opened]) .smart-action-button,.smart-drop-down-box[focus]:not([opened]) .smart-action-button[focus],.smart-drop-down-box[focus]:not([opened]) .smart-drop-down-button,.smart-drop-down-box[focus]:not([opened]) .smart-drop-down-button[focus]{outline:initial;border-color:var(--smart-outline)}.smart-drop-down-box[active] .smart-action-button,.smart-drop-down-box[active][drop-down-open-mode=dropDownButton] .smart-drop-down-button:focus,.smart-drop-down-box[active][focus][drop-down-open-mode=dropDownButton] .smart-action-button,.smart-drop-down-box[active][focus][drop-down-open-mode=dropDownButton] .smart-drop-down-button{border-color:var(--smart-ui-state-border-active);background-color:var(--smart-ui-state-active);color:var(--smart-ui-state-color-active)}.smart-drop-down-box[opened] .smart-drop-down-button .smart-drop-down-button-icon:after,.smart-drop-down-box[opened] .smart-drop-down-button[bottom] .smart-drop-down-button-icon:after,.smart-drop-down-box[opened] .smart-drop-down-button[center-bottom] .smart-drop-down-button-icon:after{transform:rotate(180deg)}.smart-drop-down-box[opened] .smart-drop-down-button[center-top] .smart-drop-down-button-icon:after,.smart-drop-down-box[opened] .smart-drop-down-button[top] .smart-drop-down-button-icon:after{transform:rotate(0)}.smart-drop-down-box[opened]:not(.outlined):not(.underlined) .smart-drop-down-button,.smart-drop-down-box[opened]:not([drop-down-open-mode=dropDownButton]):not(.outlined):not(.underlined) .smart-action-button{border-color:var(--smart-ui-state-active);background-color:var(--smart-ui-state-active);color:var(--smart-ui-state-color-active)}.smart-drop-down-box.auto-height{height:auto;min-height:var(--smart-editor-height)}.smart-drop-down-box.auto-height .smart-action-button,.smart-drop-down-box.auto-height .smart-content,.smart-drop-down-box.auto-height.smart-container,.smart-drop-down-box.auto-height>.smart-container{min-height:inherit}.smart-drop-down-box.auto-height .smart-action-button{padding:3px}.smart-drop-down-box.auto-height[hint],.smart-drop-down-box.auto-height[label]{height:auto}.smart-drop-down-box[label][hint]>.smart-container{display:flex;position:relative;align-items:center}.smart-drop-down-box[label]>.smart-container{align-items:flex-end}.smart-drop-down-box[hint]>.smart-container{align-items:flex-start}.smart-drop-down-box[hint] .smart-hint{opacity:0;transition:opacity .2s cubic-bezier(.4,0,.6,1);top:100%}.smart-drop-down-box[hint][focus] .smart-hint{opacity:1;transition:opacity .2s cubic-bezier(.4,0,.2,1)}.smart-drop-down-box[hint] .smart-hint,.smart-drop-down-box[label] .smart-label{position:absolute;left:0;bottom:100%;font-size:12px;width:100%;display:block;padding:var(--smart-editor-label-padding);pointer-events:none;user-select:none;-webkit-user-select:none;-ms-user-select:none;-moz-user-select:none;text-align:initial;line-height:initial;vertical-align:initial}.smart-drop-down-box[disabled] .smart-drop-down-button,.smart-drop-down-box[disabled]>.smart-container{cursor:default;background-color:initial}.smart-drop-down-box[disabled][selection-display-mode=tokens] .smart-action-button>span{cursor:default}.smart-drop-down-box.underlined{background-color:transparent;border-width:0 0 1px;background:var(--smart-background);border-bottom-color:var(--smart-border)}.smart-drop-down-box.underlined .smart-action-button{border-top-color:transparent;border-left-color:transparent;border-right-color:transparent;border-bottom-left-radius:0;background-color:transparent;color:var(--smart-background-color)}.smart-drop-down-box.underlined .smart-action-button input{border-color:transparent!important}.smart-drop-down-box.underlined .smart-action-button[active]{background-color:var(--smart-ui-state-active);color:var(--smart-ui-state-color-active)}.smart-drop-down-box.underlined .smart-drop-down-button[hover],.smart-drop-down-box.underlined .smart-spin-button[active],.smart-drop-down-box.underlined .smart-spin-button[hover]{background:var(--smart-background);color:var(--smart-ui-state-active)}.smart-drop-down-box.underlined .smart-spin-button{background:var(--smart-background);border-width:0}.smart-drop-down-box.underlined .smart-drop-down-button{background:var(--smart-background);border-width:0;border-bottom:1px solid var(--smart-border)!important;border-top-color:transparent;border-left-color:transparent;border-right-color:transparent}.smart-drop-down-box.underlined .smart-drop-down-button[active]{background-color:var(--smart-ui-state-active);color:var(--smart-ui-state-color-active)}.smart-drop-down-box.underlined .smart-hint{position:absolute;top:0;left:0;right:0;bottom:0;display:block!important;box-sizing:border-box;padding:var(--smart-editor-label-padding);color:var(--smart-background-color);pointer-events:none;font-size:75%;opacity:0;transition:color .2s,opacity .1s,font-size .2s,line-height .2s,margin-top .2s,top .2s;margin-top:calc(0px - var(--smart-font-size))}.smart-drop-down-box.underlined .smart-hint:after{content:"";position:absolute;left:0;bottom:-2px;display:block;width:100%;height:2px;background-color:var(--smart-primary);transform-origin:bottom center;transform:scaleX(0);transition:transform .2s}.smart-drop-down-box.underlined:not([focus]) .smart-hint{margin-top:0}.smart-drop-down-box.underlined[focus] .smart-action-button,.smart-drop-down-box.underlined[focus] input{border-color:transparent!important}.smart-drop-down-box.underlined[focus] .smart-drop-down-button,.smart-drop-down-box.underlined[focus] .smart-hint{color:var(--smart-primary)!important;opacity:1;border-color:transparent!important}.smart-drop-down-box.underlined:not([opened]):not([hover]) .smart-drop-down-button,.smart-drop-down-box.underlined[opened] .smart-action-button{color:var(--smart-background-color);background-color:transparent}.smart-drop-down-box.underlined[drop-down-open-mode=dropDownButton][hover]:not([opened]) .smart-action-button[hover],.smart-drop-down-box.underlined[hover]:not([opened]) .smart-action-button,.smart-drop-down-box.underlined[hover]:not([opened]):not([drop-down-open-mode=dropDownButton]) .smart-action-button:not([active]),.smart-drop-down-box.underlined[opened] .smart-action-button{border-top-color:transparent;border-left-color:transparent;border-right-color:transparent}.smart-drop-down-box.underlined[focus] .smart-hint:after{transform:scale(1)}.smart-drop-down-box.underlined[opened] .smart-action-button{border-bottom-left-radius:0}.smart-drop-down-box.underlined:not([opened]):not([hover]) .smart-drop-down-button:not([hover]){border-bottom-left-radius:0}.smart-drop-down-box.underlined:not([opened]) .smart-action-button:not([active]):not([hover]),.smart-drop-down-box.underlined:not([opened]):not([hover]) .smart-drop-down-button:not([active]):not([hover]){border-radius:initial}.smart-drop-down-box.underlined[hover]:not([drop-down-open-mode=dropDownButton]):not([opened]) .smart-action-button{border-bottom-left-radius:0}.smart-drop-down-box.underlined[hover]:not([drop-down-open-mode=dropDownButton]):not([opened]) .smart-action-button:not([active]){background-color:transparent}.smart-drop-down-box.underlined[drop-down-open-mode=dropDownButton]:not([drop-down-button-position=left]):not([drop-down-button-position=top]):not([drop-down-button-position=bottom]):not([hover]) .smart-action-button:focus{box-shadow:none;z-index:initial}.smart-drop-down-box.underlined[drop-down-open-mode=dropDownButton][drop-down-button-position=left]:not([hover]) .smart-drop-down-button:focus{box-shadow:none}.smart-drop-down-box.underlined.smart-invalid .smart-drop-down-button{border-bottom-color:rgba(var(--smart-error-rgb),.5)!important}.smart-drop-down-box.outlined{padding-top:6px;height:auto;min-height:0;border:none;background:0 0}.smart-drop-down-box.outlined>.smart-container>.smart-content{padding:4px 3px;border:1px solid var(--smart-border);height:auto;background:var(--smart-background);border-radius:var(--smart-border-radius);z-index:5}.smart-drop-down-box.outlined .smart-action-button{border:none;background:var(--smart-background)!important;border-color:var(--smart-border)!important;color:var(--smart-background-color)!important}.smart-drop-down-box.outlined .smart-action-button input{padding:0;border:none!important;z-index:initial}.smart-drop-down-box.outlined .smart-spin-button{background:var(--smart-background);border-width:0}.smart-drop-down-box.outlined .smart-spin-button[active],.smart-drop-down-box.outlined .smart-spin-button[hover]{background:var(--smart-background);color:var(--smart-ui-state-active)}.smart-drop-down-box.outlined .smart-drop-down-button{border-width:0;padding:8px 0;background:var(--smart-background)!important;border-color:var(--smart-border)!important;color:var(--smart-background-color)!important}.smart-drop-down-box.outlined .smart-drop-down-button.smart-calendar-button[active],.smart-drop-down-box.outlined .smart-drop-down-button.smart-calendar-button[hover]{background:var(--smart-background);color:var(--smart-ui-state-active)}.smart-drop-down-box.outlined:not([opened]) .smart-action-button:not([active]),.smart-drop-down-box.outlined:not([opened]) .smart-drop-down-button,.smart-drop-down-box.outlined[drop-down-open-mode=dropDownButton]:not([hover]) .smart-action-button:not([active]),.smart-drop-down-box.outlined[focus],.smart-drop-down-box.outlined[hover]:not([opened]):not([drop-down-open-mode=dropDownButton]) .smart-action-button:not([active]){background-color:transparent}.smart-drop-down-box.outlined.smart-element-init .smart-hint{visibility:hidden;display:none!important}.smart-drop-down-box.outlined:not([focus])[hint] .smart-hint{font-size:var(--smart-font-size);line-height:48px;opacity:0}.smart-drop-down-box.outlined[hint] .smart-hint{position:absolute;top:0;left:0;display:flex!important;border-color:var(--smart-border)!important;width:100%;max-height:100%;color:var(--smart-background-color);font-size:75%;line-height:15px;cursor:text;margin-top:-6px;z-index:10;padding:0;transition:color .2s,font-size .2s,opacity .1s,font-size .2s,line-height .2s}.smart-drop-down-box.outlined[hint] .smart-hint:after,.smart-drop-down-box.outlined[hint] .smart-hint:before{content:"";display:block;box-sizing:border-box;margin-top:6px;border-top:solid 1px;border-top-color:var(--smart-border)!important;min-width:10px;height:8px;pointer-events:none;box-shadow:inset 0 1px transparent;transition:border-color .2s,box-shadow .2s}.smart-drop-down-box.outlined[hint] .smart-hint:before{margin-right:4px;border-left:solid 1px transparent;border-radius:4px 0}.smart-drop-down-box.outlined[hint] .smart-hint:after{flex-grow:1;margin-left:4px;border-right:solid 1px transparent;border-radius:0 4px}.smart-drop-down-box[right-to-left]:not([drop-down-button-position])>.smart-container>.smart-content,.smart-drop-down-box[right-to-left][drop-down-button-position=left] .smart-action-button,.smart-drop-down-box[right-to-left][drop-down-button-position=left]>.smart-container>.smart-content{flex-direction:row}.smart-drop-down-box.outlined[focus]>.smart-container>.smart-content{border-color:var(--smart-primary)}.smart-drop-down-box.outlined[focus] .smart-drop-down-button{color:var(--smart-ui-state-active)!important}.smart-drop-down-box.outlined[focus][hint]>.smart-container>.smart-content{border-top-color:transparent!important}.smart-drop-down-box.outlined[focus][hint] .smart-hint{color:var(--smart-primary);opacity:1}.smart-drop-down-box.outlined[focus][hint] .smart-hint:after,.smart-drop-down-box.outlined[focus][hint] .smart-hint:before{border-top-color:var(--smart-primary)!important}.smart-drop-down-box.outlined.smart-invalid>.smart-container>.smart-content{border-color:rgba(var(--smart-error-rgb),.5)}.smart-drop-down-box:not([placeholder])[dropDownButtonPosition=none] .smart-drop-down-button,.smart-drop-down-box[placeholder=""][dropDownButtonPosition=none] .smart-drop-down-button{border-left-width:var(--smart-border-width);border-left-style:solid;border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius)}.smart-drop-down-box:not([placeholder]):not([opened])[dropDownButtonPosition=none] .smart-drop-down-button:not([focus]),.smart-drop-down-box[placeholder=""]:not([opened])[dropDownButtonPosition=none] .smart-drop-down-button:not([focus]){border-color:var(--smart-border)}.smart-drop-down-box:not([animation=none]) .smart-drop-down-button .smart-drop-down-button-icon:after{transition:transform .2s}.smart-drop-down-box[drop-down-position=overlay-center] .smart-drop-down-button .smart-drop-down-button-icon:after{content:var(--smart-icon-minus)}.smart-drop-down-box.smart-invalid:not([drop-down-open-mode=dropDownButton]) .smart-action-button{border-bottom-color:rgba(var(--smart-error-rgb),.5)!important}.smart-drop-down-box[right-to-left],.smart-drop-down-box[right-to-left] .smart-hint,.smart-drop-down-box[right-to-left] .smart-label{direction:rtl}.smart-drop-down-box[right-to-left] .smart-drop-down-button:focus,.smart-drop-down-box[right-to-left]:not([hover]) .smart-action-button[focus],.smart-drop-down-box[right-to-left]:not([hover]) .smart-drop-down-button[focus]{border-color:var(--smart-outline)}.smart-drop-down-box[right-to-left][drop-down-button-position=right]>.smart-container>.smart-content{flex-direction:row-reverse}.smart-drop-down-box[right-to-left]:not([drop-down-button-position]) .smart-action-button,.smart-drop-down-box[right-to-left][drop-down-button-position=left] .smart-action-button{padding:0 var(--smart-editor-label-padding) 0 0;border-right:var(--smart-border-width) solid var(--smart-border);border-top-left-radius:initial;border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-left-radius:initial;border-bottom-right-radius:var(--smart-border-bottom-right-radius)}.smart-drop-down-box[right-to-left]:not([drop-down-button-position]) .smart-drop-down-button,.smart-drop-down-box[right-to-left][drop-down-button-position=left] .smart-drop-down-button{border-left:var(--smart-border-width) solid var(--smart-border);border-top-right-radius:initial;border-bottom-right-radius:initial;border-top-left-radius:var(--smart-border-top-left-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius)}.smart-drop-down.smart-drop-down-container,.smart-drop-down.smart-drop-down-container.smart-drop-down-repositioned{flex-direction:column;height:var(--smart-editor-drop-down-height);min-height:var(--smart-editor-drop-down-min-height)}.smart-drop-down-box[right-to-left]:not([drop-down-button-position]) .smart-action-button,.smart-drop-down-box[right-to-left]:not([drop-down-open-mode=dropDownButton])[drop-down-button-position=left] .smart-action-button{border-left:initial}.smart-drop-down-box[right-to-left]:not([drop-down-open-mode=dropDownButton]):not([drop-down-button-position]) .smart-drop-down-button,.smart-drop-down-box[right-to-left][drop-down-button-position=left] .smart-drop-down-button{border-right:initial}.smart-drop-down-box[right-to-left][opened] .smart-action-button,.smart-drop-down-box[right-to-left][opened] .smart-drop-down-button{border-color:var(--smart-border-active)}.smart-drop-down-box[right-to-left][drop-down-open-mode=dropDownButton]:not([drop-down-button-position]):not([hover]) .smart-action-button:focus,.smart-drop-down-box[right-to-left][drop-down-open-mode=dropDownButton][drop-down-button-position=right]:not([hover]) .smart-action-button:focus{box-shadow:calc(-1 * var(--smart-border-width)) 0 0 0 var(--smart-outline)}.smart-drop-down.smart-drop-down-container{box-shadow:var(--smart-elevation-8);background-color:var(--smart-background);box-sizing:border-box;outline:0;border-width:var(--smart-border-width);border-style:solid;border-color:var(--smart-border);display:flex;max-height:var(--smart-editor-drop-down-max-height);width:var(--smart-editor-drop-down-width);max-width:var(--smart-editor-drop-down-max-width);min-width:var(--smart-editor-drop-down-min-width);font-size:var(--smart-font-size);font-family:var(--smart-font-family);margin:calc(var(--smart-editor-drop-down-vertical-offset) + var(--smart-editor-drop-down-padding-size)) 0;padding:var(--smart-editor-drop-down-padding-size) 0!important}.smart-drop-down.smart-drop-down-container smart-list-box:focus{border-color:var(--smart-outline)}.smart-drop-down.smart-date-time-drop-down.smart-drop-down-repositioned,.smart-drop-down.smart-drop-down-container.smart-drop-down-repositioned{outline:0;border-width:var(--smart-border-width);border-style:solid;border-color:var(--smart-border);display:flex;max-height:var(--smart-editor-drop-down-max-height);max-width:var(--smart-editor-drop-down-max-width);min-width:var(--smart-editor-drop-down-min-width);font-size:var(--smart-font-size);font-family:var(--smart-font-family);padding:var(--smart-editor-drop-down-padding-size) 0!important;box-sizing:border-box;background-color:var(--smart-background)}.smart-drop-down.smart-drop-down-container .smart-drop-down-resize-bar{position:relative;width:100%;margin-top:2.5px;height:calc(var(--smart-editor-drop-down-resize-bar-height) - 2.5px);touch-action:none}.smart-drop-down.smart-drop-down-container.smart-visibility-hidden{transform:scale(0)}.smart-drop-down.smart-drop-down-container.smart-drop-down-repositioned.smart-visibility-hidden{top:0;left:0}.smart-drop-down.smart-drop-down-container.smart-visibility-hidden.not-in-view{left:-9999px;top:-9999px;transition:none}.smart-drop-down.smart-drop-down-container.smart-drop-down-repositioned{width:var(--smart-editor-drop-down-width);margin:calc(var(--smart-editor-drop-down-vertical-offset) + var(--smart-editor-drop-down-padding-size)) 0}.smart-drop-down.smart-drop-down-container.smart-drop-down-repositioned.smart-visibility-hidden.not-in-view{left:-9999px;top:-9999px;transition:none}.smart-drop-down.smart-drop-down-container.smart-drop-down-repositioned[center-top],.smart-drop-down.smart-drop-down-container.smart-drop-down-repositioned[top]{margin:calc(-1 * (var(--smart-editor-drop-down-vertical-offset) + 3px)) 0}.smart-drop-down.smart-date-time-drop-down{width:var(--smart-editor-drop-down-width);height:var(--smart-editor-drop-down-height)}.smart-drop-down.smart-date-time-drop-down.smart-drop-down-repositioned{flex-direction:column;height:var(--smart-editor-drop-down-height);min-height:var(--smart-editor-drop-down-min-height);width:var(--smart-editor-drop-down-width);margin:calc(var(--smart-editor-drop-down-vertical-offset) + var(--smart-editor-drop-down-padding-size)) 0}.smart-drop-down.smart-date-time-drop-down[drop-down-display-mode=calendar]{height:calc(var(--smart-editor-drop-down-height) - var(--smart-calendar-title-height))!important}.smart-drop-down.smart-drop-down-color-picker.smart-drop-down-repositioned{max-height:calc(var(--smart-editor-drop-down-max-height) + 50px)}.smart-drop-down[top] .smart-drop-down-resize-bar{margin-top:0;margin-bottom:2.5px}.smart-drop-down[top].smart-drop-down-container.smart-drop-down-repositioned,.smart-drop-down[top].smart-drop-down-container.smart-drop-down-repositioned.smart-visibility-hidden{top:initial;bottom:calc(100% - var(--smart-border-width));flex-direction:column-reverse}.smart-drop-down[overlay-bottom],.smart-drop-down[overlay-center],.smart-drop-down[overlay-top]{margin:unset}.smart-drop-down:not([resize-mode=none]) smart-list-box{position:relative;width:100%;height:calc(100% - var(--smart-editor-drop-down-resize-bar-height));border:none}.smart-drop-down:not([resize-mode=none]) .smart-drop-down-resize-bar{border-top:1px solid var(--smart-border)}.smart-drop-down:not([resize-mode=none])[top] .smart-drop-down-resize-bar{border-top:initial;border-bottom:1px solid var(--smart-border)}.smart-drop-down[resize-mode][top] .smart-drop-down-resize-bar>div{top:calc(50% - 1px)}.smart-drop-down[resize-mode=none] smart-list-box{width:100%;height:100%;position:relative;border:none}.smart-drop-down[resize-mode=none] .smart-drop-down-resize-bar{display:none;cursor:default}.smart-drop-down[resize-mode=none] .smart-drop-down-resize-bar>div{display:none}.smart-drop-down[resize-mode=both] .smart-drop-down-resize-bar>div,.smart-drop-down[resize-mode=vertical] .smart-drop-down-resize-bar>div{display:initial;position:absolute;width:5px;height:5px;left:50%;top:calc(50% + 1px);transform:translate(-50%,-50%);border:1px solid var(--smart-border);border-radius:50%;pointer-events:none}.smart-drop-down[resize-mode=both] .smart-drop-down-resize-bar>div:after,.smart-drop-down[resize-mode=both] .smart-drop-down-resize-bar>div:before,.smart-drop-down[resize-mode=vertical] .smart-drop-down-resize-bar>div:after,.smart-drop-down[resize-mode=vertical] .smart-drop-down-resize-bar>div:before{position:absolute;top:50%;transform:translate(-50%,-50%);content:"";width:100%;height:100%;border:1px solid var(--smart-border);border-radius:50%;pointer-events:none}.smart-drop-down[resize-mode=both] .smart-drop-down-resize-bar>div:after,.smart-drop-down[resize-mode=vertical] .smart-drop-down-resize-bar>div:after{left:500%}.smart-drop-down[resize-mode=both] .smart-drop-down-resize-bar>div:before,.smart-drop-down[resize-mode=vertical] .smart-drop-down-resize-bar>div:before{left:-400%}.smart-drop-down[resize-mode=both].smart-drop-down-container.smart-drop-down-repositioned .smart-drop-down-resize-bar>div,.smart-drop-down[resize-mode=vertical].smart-drop-down-container.smart-drop-down-repositioned .smart-drop-down-resize-bar>div{width:3px;height:3px}.smart-drop-down[resize-mode=both][resize-indicator] .smart-drop-down-resize-bar:before,.smart-drop-down[resize-mode=horizontal][resize-indicator] .smart-drop-down-resize-bar:before{width:8px;height:5px;font-family:var(--smart-font-family-icon);content:var(--smart-icon-resize-horizontal);position:absolute;top:calc(100% - 8px);left:calc(100% - 8px);transform:rotate(-45deg);font-size:10px;cursor:se-resize}.smart-drop-down[resize-mode=both][resize-indicator] .smart-drop-down-resize-bar:after,.smart-drop-down[resize-mode=horizontal][resize-indicator] .smart-drop-down-resize-bar:after{width:8px;height:12px;font-family:var(--smart-font-family-icon);content:var(--smart-icon-resize-full);position:absolute;top:calc(100% - 12px);left:calc(100% - 7px);transform:rotate(-45deg) scaleX(2.25);font-size:10px;cursor:e-resize}.smart-color-picker .smart-drop-down,.smart-combo-box .smart-drop-down,.smart-date-time-picker .smart-drop-down,.smart-drop-down-button .smart-drop-down,.smart-drop-down-container.smart-drop-down-repositioned,.smart-drop-down-list .smart-drop-down,.smart-multi-split-button .smart-drop-down,.smart-path .smart-drop-down,.smart-text-box .smart-drop-down{height:var(--smart-editor-drop-down-height);max-height:var(--smart-editor-drop-down-max-height);min-height:var(--smart-editor-drop-down-min-height);width:var(--smart-editor-drop-down-width);max-width:var(--smart-editor-drop-down-max-width);min-width:var(--smart-editor-drop-down-min-width);font-size:var(--smart-font-size);font-family:var(--smart-font-family);padding:var(--smart-editor-drop-down-padding-size) 0!important;margin:calc(var(--smart-editor-drop-down-vertical-offset) + var(--smart-editor-drop-down-padding-size)) 0;border-width:var(--smart-border-width);border-style:solid;border-color:var(--smart-border);outline:0}.smart-drop-down[resize-mode=both][top] .smart-drop-down-resize-bar:before,.smart-drop-down[resize-mode=horizontal][top] .smart-drop-down-resize-bar:before{transform:rotate(45deg);top:calc(100% - 13px);left:calc(100% - 4px)}.smart-drop-down[resize-mode=vertical] .smart-drop-down-resize-bar{cursor:n-resize}.smart-drop-down[resize-mode=horizontal] .smart-drop-down-resize-bar{cursor:e-resize}.smart-drop-down[resize-mode=horizontal] .smart-drop-down-resize-bar>div{display:none}.smart-drop-down[resize-mode=both] .smart-drop-down-resize-bar{cursor:nwse-resize}.smart-drop-down[resize-mode=both][top] .smart-drop-down-resize-bar{cursor:sw-resize}.smart-drop-down-container.smart-drop-down-repositioned{background-color:var(--smart-background);box-sizing:border-box;display:flex;flex-direction:column}.smart-drop-down-container.smart-drop-down-repositioned.smart-visibility-hidden.not-in-view{left:-9999px;top:-9999px;transition:none}.smart-drop-down-container.smart-drop-down-repositioned:focus{border-color:var(--smart-border)}.smart-drop-down-container.smart-drop-down-repositioned[overlay-bottom],.smart-drop-down-container.smart-drop-down-repositioned[overlay-center],.smart-drop-down-container.smart-drop-down-repositioned[overlay-top]{margin:unset}.smart-drop-down-container.smart-drop-down-repositioned[overlay-bottom]:not([animation=none]),.smart-drop-down-container.smart-drop-down-repositioned[overlay-center]:not([animation=none]),.smart-drop-down-container.smart-drop-down-repositioned[overlay-top]:not([animation=none]){animation:smart-drop-down-list-smart-animate-opening .2s ease-out;transform-origin:center}.smart-drop-down-container.smart-drop-down-repositioned[overlay-bottom]:not([animation=none]).smart-visibility-hidden,.smart-drop-down-container.smart-drop-down-repositioned[overlay-center]:not([animation=none]).smart-visibility-hidden,.smart-drop-down-container.smart-drop-down-repositioned[overlay-top]:not([animation=none]).smart-visibility-hidden{animation:smart-drop-down-list-smart-animate-closing .2s ease-in;transform-origin:center}.smart-drop-down-container.smart-drop-down-repositioned[center-top],.smart-drop-down-container.smart-drop-down-repositioned[top]{margin:calc(-1 * (var(--smart-editor-drop-down-vertical-offset) + 3px)) 0}.smart-drop-down-container.smart-drop-down-repositioned[center-top]:not([animation=none]),.smart-drop-down-container.smart-drop-down-repositioned[top]:not([animation=none]){animation:smart-drop-down-list-smart-animate-opening .2s ease-out;transform-origin:bottom}.smart-drop-down-container.smart-drop-down-repositioned[center-top]:not([animation=none]).smart-visibility-hidden,.smart-drop-down-container.smart-drop-down-repositioned[top]:not([animation=none]).smart-visibility-hidden{animation:smart-drop-down-list-smart-animate-closing .2s ease-in;transform-origin:bottom}.smart-drop-down-container.smart-drop-down-repositioned[bottom]:not([animation=none]),.smart-drop-down-container.smart-drop-down-repositioned[center-bottom]:not([animation=none]){animation:smart-drop-down-list-smart-animate-opening .2s ease-out;transform-origin:top}.smart-drop-down-container.smart-drop-down-repositioned[bottom]:not([animation=none]).smart-visibility-hidden,.smart-drop-down-container.smart-drop-down-repositioned[center-bottom]:not([animation=none]).smart-visibility-hidden{animation:smart-drop-down-list-smart-animate-closing .2s ease-in;transform-origin:top}.smart-drop-down-container.smart-drop-down-repositioned:not([animation=none]).smart-visibility-hidden{transition:animation,visibility .2s ease-in}.smart-drop-down-container[top].smart-drop-down-container.smart-drop-down-repositioned{bottom:initial}.smart-drop-down-container[top].smart-drop-down-container.smart-drop-down-repositioned.smart-visibility-hidden{bottom:calc(100% - var(--smart-border-width))}.smart-color-picker .smart-drop-down,.smart-combo-box .smart-drop-down,.smart-date-time-picker .smart-drop-down,.smart-drop-down-button .smart-drop-down,.smart-drop-down-list .smart-drop-down,.smart-multi-split-button .smart-drop-down,.smart-path .smart-drop-down,.smart-text-box .smart-drop-down{background-color:var(--smart-background);box-sizing:border-box;display:flex;flex-direction:column;top:calc(100% - var(--smart-border-width))}.smart-color-picker .smart-drop-down.smart-visibility-hidden,.smart-combo-box .smart-drop-down.smart-visibility-hidden,.smart-date-time-picker .smart-drop-down.smart-visibility-hidden,.smart-drop-down-button .smart-drop-down.smart-visibility-hidden,.smart-drop-down-list .smart-drop-down.smart-visibility-hidden,.smart-multi-split-button .smart-drop-down.smart-visibility-hidden,.smart-path .smart-drop-down.smart-visibility-hidden,.smart-text-box .smart-drop-down.smart-visibility-hidden{top:calc(100% - var(--smart-border-width))}.smart-color-picker .smart-drop-down.smart-visibility-hidden.not-in-view,.smart-combo-box .smart-drop-down.smart-visibility-hidden.not-in-view,.smart-date-time-picker .smart-drop-down.smart-visibility-hidden.not-in-view,.smart-drop-down-button .smart-drop-down.smart-visibility-hidden.not-in-view,.smart-drop-down-list .smart-drop-down.smart-visibility-hidden.not-in-view,.smart-multi-split-button .smart-drop-down.smart-visibility-hidden.not-in-view,.smart-path .smart-drop-down.smart-visibility-hidden.not-in-view,.smart-text-box .smart-drop-down.smart-visibility-hidden.not-in-view{left:-9999px;top:-9999px;transition:none}.smart-color-picker .smart-drop-down[overlay-bottom],.smart-color-picker .smart-drop-down[overlay-bottom].smart-visibility-hidden,.smart-combo-box .smart-drop-down[overlay-bottom],.smart-combo-box .smart-drop-down[overlay-bottom].smart-visibility-hidden,.smart-date-time-picker .smart-drop-down[overlay-bottom],.smart-date-time-picker .smart-drop-down[overlay-bottom].smart-visibility-hidden,.smart-drop-down-button .smart-drop-down[overlay-bottom],.smart-drop-down-button .smart-drop-down[overlay-bottom].smart-visibility-hidden,.smart-drop-down-list .smart-drop-down[overlay-bottom],.smart-drop-down-list .smart-drop-down[overlay-bottom].smart-visibility-hidden,.smart-multi-split-button .smart-drop-down[overlay-bottom],.smart-multi-split-button .smart-drop-down[overlay-bottom].smart-visibility-hidden,.smart-path .smart-drop-down[overlay-bottom],.smart-path .smart-drop-down[overlay-bottom].smart-visibility-hidden,.smart-text-box .smart-drop-down[overlay-bottom],.smart-text-box .smart-drop-down[overlay-bottom].smart-visibility-hidden{border-color:var(--smart-border);border-width:var(--smart-border-width);border-style:solid;top:0}.smart-color-picker .smart-drop-down[overlay-center],.smart-color-picker .smart-drop-down[overlay-center].smart-visibility-hidden,.smart-combo-box .smart-drop-down[overlay-center],.smart-combo-box .smart-drop-down[overlay-center].smart-visibility-hidden,.smart-date-time-picker .smart-drop-down[overlay-center],.smart-date-time-picker .smart-drop-down[overlay-center].smart-visibility-hidden,.smart-drop-down-button .smart-drop-down[overlay-center],.smart-drop-down-button .smart-drop-down[overlay-center].smart-visibility-hidden,.smart-drop-down-list .smart-drop-down[overlay-center],.smart-drop-down-list .smart-drop-down[overlay-center].smart-visibility-hidden,.smart-multi-split-button .smart-drop-down[overlay-center],.smart-multi-split-button .smart-drop-down[overlay-center].smart-visibility-hidden,.smart-path .smart-drop-down[overlay-center],.smart-path .smart-drop-down[overlay-center].smart-visibility-hidden,.smart-text-box .smart-drop-down[overlay-center],.smart-text-box .smart-drop-down[overlay-center].smart-visibility-hidden{border-color:var(--smart-border);border-width:var(--smart-border-width);border-style:solid;top:50%;transform:translateY(-50%)}.smart-color-picker .smart-drop-down[overlay-top],.smart-color-picker .smart-drop-down[overlay-top].smart-visibility-hidden,.smart-combo-box .smart-drop-down[overlay-top],.smart-combo-box .smart-drop-down[overlay-top].smart-visibility-hidden,.smart-date-time-picker .smart-drop-down[overlay-top],.smart-date-time-picker .smart-drop-down[overlay-top].smart-visibility-hidden,.smart-drop-down-button .smart-drop-down[overlay-top],.smart-drop-down-button .smart-drop-down[overlay-top].smart-visibility-hidden,.smart-drop-down-list .smart-drop-down[overlay-top],.smart-drop-down-list .smart-drop-down[overlay-top].smart-visibility-hidden,.smart-multi-split-button .smart-drop-down[overlay-top],.smart-multi-split-button .smart-drop-down[overlay-top].smart-visibility-hidden,.smart-path .smart-drop-down[overlay-top],.smart-path .smart-drop-down[overlay-top].smart-visibility-hidden,.smart-text-box .smart-drop-down[overlay-top],.smart-text-box .smart-drop-down[overlay-top].smart-visibility-hidden{border-color:var(--smart-border);border-width:var(--smart-border-width);border-style:solid;top:initial;bottom:0}.smart-color-picker .smart-drop-down[top],.smart-color-picker .smart-drop-down[top].smart-visibility-hidden,.smart-combo-box .smart-drop-down[top],.smart-combo-box .smart-drop-down[top].smart-visibility-hidden,.smart-date-time-picker .smart-drop-down[top],.smart-date-time-picker .smart-drop-down[top].smart-visibility-hidden,.smart-drop-down-button .smart-drop-down[top],.smart-drop-down-button .smart-drop-down[top].smart-visibility-hidden,.smart-drop-down-list .smart-drop-down[top],.smart-drop-down-list .smart-drop-down[top].smart-visibility-hidden,.smart-multi-split-button .smart-drop-down[top],.smart-multi-split-button .smart-drop-down[top].smart-visibility-hidden,.smart-path .smart-drop-down[top],.smart-path .smart-drop-down[top].smart-visibility-hidden,.smart-text-box .smart-drop-down[top],.smart-text-box .smart-drop-down[top].smart-visibility-hidden{top:initial;bottom:calc(100% - var(--smart-border-width));flex-direction:column-reverse}.smart-color-picker .smart-drop-down[bottom],.smart-combo-box .smart-drop-down[bottom],.smart-date-time-picker .smart-drop-down[bottom],.smart-drop-down-button .smart-drop-down[bottom],.smart-drop-down-list .smart-drop-down[bottom],.smart-multi-split-button .smart-drop-down[bottom],.smart-path .smart-drop-down[bottom],.smart-text-box .smart-drop-down[bottom]{cursor:default;left:0;box-sizing:border-box;font-size:inherit;padding:var(--smart-editor-drop-down-padding-size);margin:calc(var(--smart-editor-drop-down-vertical-offset) + var(--smart-editor-drop-down-padding-size)) 0;background-color:var(--smart-background);border-width:var(--smart-border-width);border-style:solid;border-color:var(--smart-border);box-shadow:var(--smart-elevation-8);display:flex;flex-direction:column;padding-left:0;top:calc(100% - var(--smart-border-width))}.smart-color-picker .smart-drop-down .smart-list-items-container.vscroll[orientation=vertical],.smart-combo-box .smart-drop-down .smart-list-items-container.vscroll[orientation=vertical],.smart-drop-down-button .smart-drop-down .smart-list-items-container.vscroll[orientation=vertical],.smart-drop-down-list .smart-drop-down .smart-list-items-container.vscroll[orientation=vertical],.smart-multi-split-button .smart-drop-down .smart-list-items-container.vscroll[orientation=vertical],.smart-text-box .smart-drop-down .smart-list-items-container.vscroll[orientation=vertical]{padding-top:initial}.smart-color-picker .smart-drop-down[bottom].smart-visibility-hidden,.smart-combo-box .smart-drop-down[bottom].smart-visibility-hidden,.smart-date-time-picker .smart-drop-down[bottom].smart-visibility-hidden,.smart-drop-down-button .smart-drop-down[bottom].smart-visibility-hidden,.smart-drop-down-list .smart-drop-down[bottom].smart-visibility-hidden,.smart-multi-split-button .smart-drop-down[bottom].smart-visibility-hidden,.smart-path .smart-drop-down[bottom].smart-visibility-hidden,.smart-text-box .smart-drop-down[bottom].smart-visibility-hidden{top:calc(100% - var(--smart-border-width))}.smart-color-picker .smart-drop-down[center-bottom],.smart-color-picker .smart-drop-down[center-bottom].smart-visibility-hidden,.smart-combo-box .smart-drop-down[center-bottom],.smart-combo-box .smart-drop-down[center-bottom].smart-visibility-hidden,.smart-date-time-picker .smart-drop-down[center-bottom],.smart-date-time-picker .smart-drop-down[center-bottom].smart-visibility-hidden,.smart-drop-down-button .smart-drop-down[center-bottom],.smart-drop-down-button .smart-drop-down[center-bottom].smart-visibility-hidden,.smart-drop-down-list .smart-drop-down[center-bottom],.smart-drop-down-list .smart-drop-down[center-bottom].smart-visibility-hidden,.smart-multi-split-button .smart-drop-down[center-bottom],.smart-multi-split-button .smart-drop-down[center-bottom].smart-visibility-hidden,.smart-path .smart-drop-down[center-bottom],.smart-path .smart-drop-down[center-bottom].smart-visibility-hidden,.smart-text-box .smart-drop-down[center-bottom],.smart-text-box .smart-drop-down[center-bottom].smart-visibility-hidden{left:50%;border:var(--smart-border-width) solid var(--smart-border);top:calc(100% - var(--smart-border-width))}.smart-color-picker .smart-drop-down[center-top],.smart-color-picker .smart-drop-down[center-top].smart-visibility-hidden,.smart-combo-box .smart-drop-down[center-top],.smart-combo-box .smart-drop-down[center-top].smart-visibility-hidden,.smart-date-time-picker .smart-drop-down[center-top],.smart-date-time-picker .smart-drop-down[center-top].smart-visibility-hidden,.smart-drop-down-button .smart-drop-down[center-top],.smart-drop-down-button .smart-drop-down[center-top].smart-visibility-hidden,.smart-drop-down-list .smart-drop-down[center-top],.smart-drop-down-list .smart-drop-down[center-top].smart-visibility-hidden,.smart-multi-split-button .smart-drop-down[center-top],.smart-multi-split-button .smart-drop-down[center-top].smart-visibility-hidden,.smart-path .smart-drop-down[center-top],.smart-path .smart-drop-down[center-top].smart-visibility-hidden,.smart-text-box .smart-drop-down[center-top],.smart-text-box .smart-drop-down[center-top].smart-visibility-hidden{left:50%;border:var(--smart-border-width) solid var(--smart-border);top:initial;bottom:calc(100% - var(--smart-border-width))}.smart-color-picker:not([animation=none]) .smart-drop-down,.smart-combo-box:not([animation=none]) .smart-drop-down,.smart-date-time-picker:not([animation=none]) .smart-drop-down,.smart-drop-down-button:not([animation=none]) .smart-drop-down,.smart-drop-down-list:not([animation=none]) .smart-drop-down,.smart-multi-split-button:not([animation=none]) .smart-drop-down,.smart-path:not([animation=none]) .smart-drop-down,.smart-text-box:not([animation=none]) .smart-drop-down{animation:smart-drop-down-list-smart-animate-opening .2s ease-out;transform-origin:top}.smart-color-picker:not([animation=none]) .smart-drop-down.smart-visibility-hidden,.smart-combo-box:not([animation=none]) .smart-drop-down.smart-visibility-hidden,.smart-date-time-picker:not([animation=none]) .smart-drop-down.smart-visibility-hidden,.smart-drop-down-button:not([animation=none]) .smart-drop-down.smart-visibility-hidden,.smart-drop-down-list:not([animation=none]) .smart-drop-down.smart-visibility-hidden,.smart-multi-split-button:not([animation=none]) .smart-drop-down.smart-visibility-hidden,.smart-path:not([animation=none]) .smart-drop-down.smart-visibility-hidden,.smart-text-box:not([animation=none]) .smart-drop-down.smart-visibility-hidden{transition:animation,visibility .2s ease-in;animation:smart-drop-down-list-smart-animate-closing .2s ease-in;transform-origin:top}.smart-color-picker:not([animation=none]) .smart-drop-down[bottom],.smart-color-picker:not([animation=none]) .smart-drop-down[center-bottom],.smart-combo-box:not([animation=none]) .smart-drop-down[bottom],.smart-combo-box:not([animation=none]) .smart-drop-down[center-bottom],.smart-date-time-picker:not([animation=none]) .smart-drop-down[bottom],.smart-date-time-picker:not([animation=none]) .smart-drop-down[center-bottom],.smart-drop-down-button:not([animation=none]) .smart-drop-down[bottom],.smart-drop-down-button:not([animation=none]) .smart-drop-down[center-bottom],.smart-drop-down-list:not([animation=none]) .smart-drop-down[bottom],.smart-drop-down-list:not([animation=none]) .smart-drop-down[center-bottom],.smart-multi-split-button:not([animation=none]) .smart-drop-down[bottom],.smart-multi-split-button:not([animation=none]) .smart-drop-down[center-bottom],.smart-path:not([animation=none]) .smart-drop-down[bottom],.smart-path:not([animation=none]) .smart-drop-down[center-bottom],.smart-text-box:not([animation=none]) .smart-drop-down[bottom],.smart-text-box:not([animation=none]) .smart-drop-down[center-bottom]{animation:smart-drop-down-list-smart-animate-opening .2s ease-out;transform-origin:top}.smart-color-picker:not([animation=none]) .smart-drop-down[bottom].smart-visibility-hidden,.smart-color-picker:not([animation=none]) .smart-drop-down[center-bottom].smart-visibility-hidden,.smart-combo-box:not([animation=none]) .smart-drop-down[bottom].smart-visibility-hidden,.smart-combo-box:not([animation=none]) .smart-drop-down[center-bottom].smart-visibility-hidden,.smart-date-time-picker:not([animation=none]) .smart-drop-down[bottom].smart-visibility-hidden,.smart-date-time-picker:not([animation=none]) .smart-drop-down[center-bottom].smart-visibility-hidden,.smart-drop-down-button:not([animation=none]) .smart-drop-down[bottom].smart-visibility-hidden,.smart-drop-down-button:not([animation=none]) .smart-drop-down[center-bottom].smart-visibility-hidden,.smart-drop-down-list:not([animation=none]) .smart-drop-down[bottom].smart-visibility-hidden,.smart-drop-down-list:not([animation=none]) .smart-drop-down[center-bottom].smart-visibility-hidden,.smart-multi-split-button:not([animation=none]) .smart-drop-down[bottom].smart-visibility-hidden,.smart-multi-split-button:not([animation=none]) .smart-drop-down[center-bottom].smart-visibility-hidden,.smart-path:not([animation=none]) .smart-drop-down[bottom].smart-visibility-hidden,.smart-path:not([animation=none]) .smart-drop-down[center-bottom].smart-visibility-hidden,.smart-text-box:not([animation=none]) .smart-drop-down[bottom].smart-visibility-hidden,.smart-text-box:not([animation=none]) .smart-drop-down[center-bottom].smart-visibility-hidden{animation:smart-drop-down-list-smart-animate-closing .2s ease-in;transform-origin:top}.smart-color-picker:not([animation=none]) .smart-drop-down[center-top],.smart-color-picker:not([animation=none]) .smart-drop-down[top],.smart-combo-box:not([animation=none]) .smart-drop-down[center-top],.smart-combo-box:not([animation=none]) .smart-drop-down[top],.smart-date-time-picker:not([animation=none]) .smart-drop-down[center-top],.smart-date-time-picker:not([animation=none]) .smart-drop-down[top],.smart-drop-down-button:not([animation=none]) .smart-drop-down[center-top],.smart-drop-down-button:not([animation=none]) .smart-drop-down[top],.smart-drop-down-list:not([animation=none]) .smart-drop-down[center-top],.smart-drop-down-list:not([animation=none]) .smart-drop-down[top],.smart-multi-split-button:not([animation=none]) .smart-drop-down[center-top],.smart-multi-split-button:not([animation=none]) .smart-drop-down[top],.smart-path:not([animation=none]) .smart-drop-down[center-top],.smart-path:not([animation=none]) .smart-drop-down[top],.smart-text-box:not([animation=none]) .smart-drop-down[center-top],.smart-text-box:not([animation=none]) .smart-drop-down[top]{animation:smart-drop-down-list-smart-animate-opening .2s ease-out;transform-origin:bottom}.smart-color-picker:not([animation=none]) .smart-drop-down[center-top].smart-visibility-hidden,.smart-color-picker:not([animation=none]) .smart-drop-down[top].smart-visibility-hidden,.smart-combo-box:not([animation=none]) .smart-drop-down[center-top].smart-visibility-hidden,.smart-combo-box:not([animation=none]) .smart-drop-down[top].smart-visibility-hidden,.smart-date-time-picker:not([animation=none]) .smart-drop-down[center-top].smart-visibility-hidden,.smart-date-time-picker:not([animation=none]) .smart-drop-down[top].smart-visibility-hidden,.smart-drop-down-button:not([animation=none]) .smart-drop-down[center-top].smart-visibility-hidden,.smart-drop-down-button:not([animation=none]) .smart-drop-down[top].smart-visibility-hidden,.smart-drop-down-list:not([animation=none]) .smart-drop-down[center-top].smart-visibility-hidden,.smart-drop-down-list:not([animation=none]) .smart-drop-down[top].smart-visibility-hidden,.smart-multi-split-button:not([animation=none]) .smart-drop-down[center-top].smart-visibility-hidden,.smart-multi-split-button:not([animation=none]) .smart-drop-down[top].smart-visibility-hidden,.smart-path:not([animation=none]) .smart-drop-down[center-top].smart-visibility-hidden,.smart-path:not([animation=none]) .smart-drop-down[top].smart-visibility-hidden,.smart-text-box:not([animation=none]) .smart-drop-down[center-top].smart-visibility-hidden,.smart-text-box:not([animation=none]) .smart-drop-down[top].smart-visibility-hidden{animation:smart-drop-down-list-smart-animate-closing .2s ease-in;transform-origin:bottom}.smart-color-picker:not([animation=none]) .smart-drop-down[overlay-bottom],.smart-color-picker:not([animation=none]) .smart-drop-down[overlay-top],.smart-combo-box:not([animation=none]) .smart-drop-down[overlay-bottom],.smart-combo-box:not([animation=none]) .smart-drop-down[overlay-top],.smart-date-time-picker:not([animation=none]) .smart-drop-down[overlay-bottom],.smart-date-time-picker:not([animation=none]) .smart-drop-down[overlay-top],.smart-drop-down-button:not([animation=none]) .smart-drop-down[overlay-bottom],.smart-drop-down-button:not([animation=none]) .smart-drop-down[overlay-top],.smart-drop-down-list:not([animation=none]) .smart-drop-down[overlay-bottom],.smart-drop-down-list:not([animation=none]) .smart-drop-down[overlay-top],.smart-multi-split-button:not([animation=none]) .smart-drop-down[overlay-bottom],.smart-multi-split-button:not([animation=none]) .smart-drop-down[overlay-top],.smart-path:not([animation=none]) .smart-drop-down[overlay-bottom],.smart-path:not([animation=none]) .smart-drop-down[overlay-top],.smart-text-box:not([animation=none]) .smart-drop-down[overlay-bottom],.smart-text-box:not([animation=none]) .smart-drop-down[overlay-top]{animation:smart-drop-down-list-smart-animate-opening .2s ease-out;transform-origin:center}.smart-color-picker:not([animation=none]) .smart-drop-down[overlay-bottom].smart-visibility-hidden,.smart-color-picker:not([animation=none]) .smart-drop-down[overlay-top].smart-visibility-hidden,.smart-combo-box:not([animation=none]) .smart-drop-down[overlay-bottom].smart-visibility-hidden,.smart-combo-box:not([animation=none]) .smart-drop-down[overlay-top].smart-visibility-hidden,.smart-date-time-picker:not([animation=none]) .smart-drop-down[overlay-bottom].smart-visibility-hidden,.smart-date-time-picker:not([animation=none]) .smart-drop-down[overlay-top].smart-visibility-hidden,.smart-drop-down-button:not([animation=none]) .smart-drop-down[overlay-bottom].smart-visibility-hidden,.smart-drop-down-button:not([animation=none]) .smart-drop-down[overlay-top].smart-visibility-hidden,.smart-drop-down-list:not([animation=none]) .smart-drop-down[overlay-bottom].smart-visibility-hidden,.smart-drop-down-list:not([animation=none]) .smart-drop-down[overlay-top].smart-visibility-hidden,.smart-multi-split-button:not([animation=none]) .smart-drop-down[overlay-bottom].smart-visibility-hidden,.smart-multi-split-button:not([animation=none]) .smart-drop-down[overlay-top].smart-visibility-hidden,.smart-path:not([animation=none]) .smart-drop-down[overlay-bottom].smart-visibility-hidden,.smart-path:not([animation=none]) .smart-drop-down[overlay-top].smart-visibility-hidden,.smart-text-box:not([animation=none]) .smart-drop-down[overlay-bottom].smart-visibility-hidden,.smart-text-box:not([animation=none]) .smart-drop-down[overlay-top].smart-visibility-hidden{animation:smart-drop-down-list-smart-animate-closing .2s ease-in;transform-origin:center}.smart-color-picker:not([animation=none]) .smart-drop-down[overlay-center],.smart-combo-box:not([animation=none]) .smart-drop-down[overlay-center],.smart-date-time-picker:not([animation=none]) .smart-drop-down[overlay-center],.smart-drop-down-button:not([animation=none]) .smart-drop-down[overlay-center],.smart-drop-down-list:not([animation=none]) .smart-drop-down[overlay-center],.smart-multi-split-button:not([animation=none]) .smart-drop-down[overlay-center],.smart-path:not([animation=none]) .smart-drop-down[overlay-center],.smart-text-box:not([animation=none]) .smart-drop-down[overlay-center]{animation:smart-drop-down-list-smart-animate-overlay-center-opening .2s ease-out;transform-origin:top}.smart-color-picker:not([animation=none]) .smart-drop-down[overlay-center].smart-visibility-hidden,.smart-combo-box:not([animation=none]) .smart-drop-down[overlay-center].smart-visibility-hidden,.smart-date-time-picker:not([animation=none]) .smart-drop-down[overlay-center].smart-visibility-hidden,.smart-drop-down-button:not([animation=none]) .smart-drop-down[overlay-center].smart-visibility-hidden,.smart-drop-down-list:not([animation=none]) .smart-drop-down[overlay-center].smart-visibility-hidden,.smart-multi-split-button:not([animation=none]) .smart-drop-down[overlay-center].smart-visibility-hidden,.smart-path:not([animation=none]) .smart-drop-down[overlay-center].smart-visibility-hidden,.smart-text-box:not([animation=none]) .smart-drop-down[overlay-center].smart-visibility-hidden{animation:smart-drop-down-list-smart-animate-overlay-center-closing .2s ease-in;transform-origin:top}.smart-drop-down-button .smart-drop-down,.smart-drop-down-list .smart-drop-down,.smart-multi-split-button .smart-drop-down,.smart-text-box .smart-drop-down{height:calc(var(--smart-scroll-bar-size))}.smart-drop-down-button .smart-drop-down smart-scroll-bar:before,.smart-drop-down-list .smart-drop-down smart-scroll-bar:before,.smart-multi-split-button .smart-drop-down smart-scroll-bar:before,.smart-text-box .smart-drop-down smart-scroll-bar:before{display:none;background-color:var(--smart-border)}.smart-drop-down-button .smart-drop-down smart-scroll-bar[orientation=vertical].bottom-corner,.smart-drop-down-list .smart-drop-down smart-scroll-bar[orientation=vertical].bottom-corner,.smart-multi-split-button .smart-drop-down smart-scroll-bar[orientation=vertical].bottom-corner,.smart-text-box .smart-drop-down smart-scroll-bar[orientation=vertical].bottom-corner{width:calc(var(--smart-scroll-bar-size));height:calc(100% - var(--smart-scroll-bar-size))}.smart-drop-down-button .smart-drop-down .smart-list-items-container.vscroll,.smart-drop-down-button .smart-drop-down smart-scroll-bar.bottom-corner,.smart-drop-down-list .smart-drop-down .smart-list-items-container.vscroll,.smart-drop-down-list .smart-drop-down smart-scroll-bar.bottom-corner,.smart-multi-split-button .smart-drop-down .smart-list-items-container.vscroll,.smart-multi-split-button .smart-drop-down smart-scroll-bar.bottom-corner,.smart-text-box .smart-drop-down .smart-list-items-container.vscroll,.smart-text-box .smart-drop-down smart-scroll-bar.bottom-corner{width:calc(100% - var(--smart-scroll-bar-size))}.smart-drop-down-button .smart-drop-down input:focus,.smart-drop-down-list .smart-drop-down input:focus,.smart-multi-split-button .smart-drop-down input:focus,.smart-text-box .smart-drop-down input:focus{outline:0}.smart-drop-down-button.auto-height .smart-action-button,.smart-drop-down-list.auto-height .smart-action-button,.smart-multi-split-button.auto-height .smart-action-button{white-space:initial;text-overflow:initial;line-height:1rem;flex-wrap:wrap}.smart-drop-down-button.auto-height[selection-display-mode=tokens] .smart-action-button>span:first-of-type,.smart-drop-down-button.auto-height[selection-display-mode=tokens] smart-action-button>span,.smart-drop-down-list.auto-height[selection-display-mode=tokens] .smart-action-button>span:first-of-type,.smart-drop-down-list.auto-height[selection-display-mode=tokens] smart-action-button>span,.smart-multi-split-button.auto-height[selection-display-mode=tokens] .smart-action-button>span:first-of-type,.smart-multi-split-button.auto-height[selection-display-mode=tokens] smart-action-button>span{display:inline-block;margin:.2em}.smart-color-picker .smart-drop-down smart-scroll-bar:before,.smart-combo-box .smart-drop-down smart-scroll-bar:before,.smart-list-box smart-scroll-bar:before,.smart-scroll-viewer smart-scroll-bar:before{display:none;background-color:var(--smart-border)}.smart-color-picker .smart-drop-down{width:var(--smart-drop-down-button-drop-down-width);height:var(--smart-drop-down-button-drop-down-height)}.smart-color-picker .smart-drop-down.smart-drop-down-color-picker{max-height:calc(var(--smart-editor-drop-down-max-height) + 50px)}.smart-color-picker .smart-drop-down smart-scroll-bar[orientation=vertical].bottom-corner{width:calc(var(--smart-scroll-bar-size));height:calc(100% - var(--smart-scroll-bar-size))}.smart-color-picker .smart-drop-down .smart-list-items-container.vscroll{width:calc(100% - var(--smart-scroll-bar-size))}.smart-drop-down-list .smart-drop-down{width:var(--smart-drop-down-list-drop-down-width);height:var(--smart-drop-down-list-drop-down-height)}.smart-combo-box .smart-drop-down{width:var(--smart-combo-box-drop-down-width);height:var(--smart-combo-box-drop-down-height)}.smart-combo-box .smart-drop-down smart-scroll-bar[orientation=vertical].bottom-corner{width:calc(var(--smart-scroll-bar-size));height:calc(100% - var(--smart-scroll-bar-size))}.smart-combo-box .smart-drop-down .smart-list-items-container.vscroll,.smart-combo-box .smart-drop-down smart-scroll-bar.bottom-corner{width:calc(100% - var(--smart-scroll-bar-size))}.smart-combo-box .smart-selection-field input{outline:0}.smart-drop-down-button .smart-drop-down{width:var(--smart-drop-down-button-drop-down-width);height:var(--smart-drop-down-button-drop-down-height)}.smart-date-time-picker .smart-drop-down{border:none}.smart-drop-down-overlay{position:absolute;top:0;left:0;z-index:9000}.smart-list-box input.vscroll{outline:0}.smart-list-box smart-scroll-bar[orientation=vertical].bottom-corner{width:calc(var(--smart-scroll-bar-size));height:calc(100% - var(--smart-scroll-bar-size))}.smart-list-box .smart-list-items-container.vscroll,.smart-list-box smart-scroll-bar.bottom-corner{width:calc(100% - var(--smart-scroll-bar-size))}.smart-scroll-viewer{max-width:100%;border:0}.smart-drop-down-box[right-to-left]:not([drop-down-button-position]) .smart-action-button,.smart-drop-down-box[right-to-left]:not([drop-down-button-position]) .smart-drop-down-button,.smart-drop-down-box[right-to-left]:not([drop-down-button-position]) .smart-drop-down-button[focus],.smart-drop-down-box[right-to-left]:not([hover]) .smart-action-button[focus]{border-top-color:transparent;border-left-color:transparent;border-right-color:transparent}.smart-scroll-viewer smart-scroll-bar[orientation=vertical].bottom-corner{width:calc(var(--smart-scroll-bar-size));height:calc(100% - var(--smart-scroll-bar-size))}.smart-scroll-viewer .smart-list-items-container.vscroll,.smart-scroll-viewer smart-scroll-bar.bottom-corner{width:calc(100% - var(--smart-scroll-bar-size))}@keyframes smart-drop-down-list-smart-animate-overlay-center-opening{0%{opacity:.2;transform:scaleY(0) translateY(-50%)}50%{opacity:.4}100%{opacity:1;transform:scaleY(1) translateY(-50%)}}@keyframes smart-drop-down-list-smart-animate-overlay-center-closing{0%{opacity:1;transform:scaleY(1) translateY(-50%)}50%{opacity:.4}100%{opacity:.2;transform:scaleY(0) translateY(-50%)}}@keyframes smart-drop-down-list-smart-animate-opening{0%{opacity:.2;transform:scaleY(0)}50%{opacity:.4}100%{opacity:1;transform:scaleY(1)}}@keyframes smart-drop-down-list-smart-animate-closing{0%{opacity:1;transform:scaleY(1);pointer-events:none}50%{opacity:.4;pointer-events:none}100%{opacity:.2;transform:scaleY(0);pointer-events:none}}.smart-drop-down-box[right-to-left]:not([hover]) .smart-action-button[focus]{border-bottom-left-radius:0}.smart-drop-down-box[right-to-left]:not([drop-down-button-position]) .smart-action-button{border-bottom-left-radius:0;border-bottom-right-radius:0}.smart-drop-down-box[right-to-left]:not([drop-down-button-position]):not([opened]):not([hover]) .smart-drop-down-button:not([hover]),.smart-drop-down-box[right-to-left]:not([drop-down-button-position]):not([opened]):not([hover]) .smart-drop-down-button[focus]:not([hover]){border-bottom-left-radius:0}
.smart-editor>.smart-container,.smart-editor[toolbar-view-mode=multiRow]>.smart-container,.smart-editor[toolbar-view-mode=scroll]>.smart-container{grid-template-rows:auto minmax(0,1fr)}.smart-editor .smart-editor-content-container .smart-editor-editable,.smart-editor .smart-editor-content-container textarea{width:100%;height:100%;outline:0;padding:var(--smart-editor-padding);background:0 0}.smart-editor-toolbar-item[item-type=button],.smart-editor-toolbar-item[item-type=color-input],.smart-editor-toolbar-item[item-type=delimiter],.smart-editor-toolbar-item[item-type=drop-down],.smart-editor-toolbar-item[item-type=toggle]{position:relative;height:var(--smart-editor-toolbar-item-height);outline:0}.smart-editor-toolbar-item:not([item-type=drop-down])::before,.smart-editor-toolbar-item[item-name=alignment]::before,.smart-editor-toolbar-item[item-name=clearformat]::after,.smart-editor-toolbar-item[item-type=color-input] .smart-editor-item-drop-down-button::before,.smart-editor-toolbar-item[item-type=delimiter]::before,.smart-editor-toolbar-item[item-type=drop-down]:after{font-size:var(--smart-font-size);font-family:var(--smart-font-family-icon);display:flex;align-items:center;justify-content:center;width:100%;min-width:var(--smart-editor-addon-width);height:100%;box-sizing:border-box;pointer-events:none}.smart-editor-toolbar-item[item-type=color-input] .smart-editor-item-drop-down-button::before,.smart-editor-toolbar-item[item-type=drop-down]:after{content:var(--smart-icon-arrow-down);width:var(--smart-editor-addon-width);min-width:var(--smart-editor-addon-width)}.smart-editor-toolbar-item[item-type=drop-down]:before{font-size:var(--smart-font-size);font-family:var(--smart-font-family-icon);overflow:hidden;text-overflow:ellipsis;white-space:nowrap;content:attr(item-value);width:calc(100% - 30px);padding:var(--smart-editor-label-padding);padding-top:initial;padding-right:initial;padding-bottom:initial;text-align:center}[disabled].smart-editor-toolbar-item{-webkit-user-select:none;user-select:none;opacity:.55;cursor:default;pointer-events:none}.smart-editor{display:block;width:var(--smart-editor-default-width);height:var(--smart-editor-default-height);min-height:var(--smart-editor-input-min-height);border:var(--smart-border-width) solid var(--smart-border);border-radius:var(--smart-border-radius);contain:content}.smart-editor.smart-editor-iframe-body{margin:initial;border:initial;min-height:initial;border-radius:initial;width:100%;height:100%}.smart-editor .smart-editor-toolbar-items-primary .smart-editor-toolbar-item,.smart-editor[toolbar-mode=singleLineRibbon] .smart-editor-toolbar-items-secondary .smart-editor-toolbar-item{margin-bottom:var(--smart-editor-toolbar-item-margin)}.smart-editor.smart-editor-iframe-body table{font-size:var(--smart-font-size);font-weight:var(--smart-font-weight)}.smart-editor.smart-editor-iframe-body *{box-sizing:border-box}.smart-editor>.smart-container{display:grid;grid-template-columns:100%;position:relative;min-height:inherit}.smart-editor .smart-toast-container.smart-toast-container-custom{position:absolute;top:0;right:0;height:auto;max-height:100%}.smart-editor.full-screen-mode{min-width:100%;max-width:100%;min-height:100%;max-height:100%;position:fixed!important;left:0!important;right:0!important;top:0!important;z-index:calc(var(--smart-editor-drop-down-z-index) - 1)}.smart-editor[readonly] .smart-editor-toolbar-items-primary,.smart-editor[readonly] .smart-editor-toolbar-items-secondary{pointer-events:none}.smart-editor[toolbar-mode=singleLineRibbon] .smart-editor-toolbar[toolbar-tab-selected]:not([expanded]) .smart-editor-toolbar-toggle-button::before{content:var(--smart-icon-window-pin)}.smart-editor[toolbar-mode=singleLineRibbon] .smart-editor-toolbar-tab-selection-bar{position:absolute;bottom:0;height:calc(2 * var(--smart-border-width));background-color:var(--smart-primary);transform:scaleX(1)}.smart-editor[toolbar-mode=singleLineRibbon] .smart-editor-toolbar-tab-selection-bar.smart-visibility-hidden{transform:scaleX(0)}.smart-editor[toolbar-mode=singleLineRibbon] .smart-editor-toolbar-items-primary{position:relative}.smart-editor[toolbar-mode=singleLineRibbon] .smart-editor-toolbar[expanded] .smart-editor-toolbar-items-primary,.smart-editor[toolbar-mode=singleLineRibbon] .smart-editor-toolbar[expanded] .smart-editor-toolbar-toggle-button{border-bottom:var(--smart-border-width) solid var(--smart-border)}.smart-editor[toolbar-mode=singleLineRibbon] .smart-editor-toolbar:not(.smart-tooltip) .smart-editor-toolbar-items-secondary .smart-editor-toolbar-item{margin-left:initial}.smart-editor[toolbar-mode=singleLineRibbon] .smart-editor-toolbar-items-secondary{background-color:var(--smart-background);padding-bottom:initial;flex-wrap:initial}.smart-editor[toolbar-mode=singleLineRibbon] .smart-editor-toolbar-items-secondary.smart-drop-down{border-bottom:var(--smart-border-width) solid var(--smart-border);box-shadow:var(--smart-elevation-4);overflow:hidden}.smart-editor[toolbar-mode=singleLineRibbon] .smart-editor-toolbar-items-secondary .smart-editor-toolbar-item:not(:last-of-type){margin-right:var(--smart-editor-toolbar-item-margin)}.smart-editor[toolbar-mode=singleLineRibbon] .smart-editor-toolbar-tab{-webkit-user-select:none;user-select:none;padding:var(--smart-tab-item-padding)}.smart-editor[toolbar-mode=singleLineRibbon] .smart-editor-toolbar-tab:not([disabled]){cursor:pointer}.smart-editor[toolbar-mode=singleLineRibbon] .smart-editor-toolbar .smart-editor-toolbar-tab-group{padding-top:initial}.smart-editor[toolbar-mode=singleLineRibbon] .smart-editor-toolbar-tab-group{position:relative;display:flex;align-items:center;flex-wrap:wrap;height:100%;padding:var(--smart-editor-toolbar-item-margin);padding-bottom:initial}.smart-editor[hide-toolbar] .smart-editor-toolbar:not(.smart-tooltip),.smart-editor[toolbar-view-mode=multiRow] .smart-editor-toolbar .smart-editor-toolbar-toggle-button,.smart-editor[toolbar-view-mode=scroll] .smart-editor-toolbar .smart-editor-toolbar-toggle-button{display:none}.smart-editor[toolbar-mode=singleLineRibbon] .smart-editor-toolbar-tab-group:not(:first-of-type){border-left:var(--smart-border-width) solid var(--smart-border)}.smart-editor[toolbar-view-mode=multiRow] .smart-editor-toolbar,.smart-editor[toolbar-view-mode=scroll] .smart-editor-toolbar{grid-template-areas:"primary primary" "secondary secondary "}.smart-editor[toolbar-view-mode=multiRow] .smart-editor-toolbar-items-primary,.smart-editor[toolbar-view-mode=scroll] .smart-editor-toolbar-items-primary{padding:0 5px 5px 0}.smart-editor[toolbar-view-mode=multiRow] .smart-editor-toolbar-items-primary .smart-editor-toolbar-item,.smart-editor[toolbar-view-mode=scroll] .smart-editor-toolbar-items-primary .smart-editor-toolbar-item{margin-bottom:initial}.smart-editor[toolbar-view-mode=multiRow] .smart-editor-toolbar .smart-editor-toolbar-items-primary{height:auto}.smart-editor[toolbar-view-mode=scroll] .smart-editor-toolbar-items-primary{overflow-y:auto}.smart-editor:not([animation=none]) .smart-editor-toolbar-tab-selection-bar{transition:width .2s cubic-bezier(.35,0,.25,1),left .2s cubic-bezier(.35,0,.25,1),visibility .2s cubic-bezier(.35,0,.25,1),transform .2s cubic-bezier(.35,0,.25,1)}.smart-editor:not([animation=none]) .smart-editor-search-bar,.smart-editor:not([animation=none])[toolbar-mode=singleLineRibbon] .smart-editor-toolbar-items-secondary{animation:smart-drop-down-list-smart-animate-opening .2s ease-out;transition:animation .2s ease-out,opacity .2s ease-out,visibility .2s ease-out;transform-origin:top}.smart-editor:not([animation=none]) .smart-editor-search-bar.smart-visibility-hidden,.smart-editor:not([animation=none])[toolbar-mode=singleLineRibbon] .smart-editor-toolbar-items-secondary.smart-visibility-hidden{animation:smart-drop-down-list-smart-animate-closing .2s ease-in;transition:animation .2s ease-in,opacity .2s ease-in,visibility .2s ease-in}.smart-editor:not([animation=none]) .smart-editor-content-container,.smart-editor:not([animation=none]) .smart-editor-toolbar:not(.smart-tooltip){transition:height .2s ease-in-out}.smart-editor:not([animation=none]) .smart-editor-toolbar-item,.smart-editor:not([animation=none]) .smart-editor-toolbar-toggle-button{transition:background-color 0s linear,border-color 0s ease-in-out,color 0s linear,box-shadow .2s ease-in-out}.smart-editor:not([animation=none]) .smart-editor-toolbar-toggle-button::before{transition:transform .2s ease-in-out}.smart-editor.preview-mode .smart-editor-toolbar-item:not([item-name=print]):not([item-name=sourcecode]):not([item-name=fullscreen]):not([item-name=splitmode]),.smart-editor[edit-mode=markdown] .smart-editor-toolbar-item[item-name=alignment],.smart-editor[edit-mode=markdown] .smart-editor-toolbar-item[item-name=indent],.smart-editor[edit-mode=markdown] .smart-editor-toolbar-item[item-name=lowercase],.smart-editor[edit-mode=markdown] .smart-editor-toolbar-item[item-name=outdent],.smart-editor[edit-mode=markdown] .smart-editor-toolbar-item[item-name=removelink],.smart-editor[edit-mode=markdown] .smart-editor-toolbar-item[item-name=uppercase]{-webkit-user-select:none;user-select:none;opacity:.55;cursor:default;pointer-events:none}.smart-editor[hide-toolbar]>.smart-container{grid-template-rows:minmax(auto,1fr)}.smart-editor .smart-editor-toolbar:not(.smart-tooltip){width:100%;height:100%;border-bottom:var(--smart-border-width) solid var(--smart-border);background:var(--smart-surface);display:grid;grid-template-areas:"primary toggleButton" "secondary secondary ";grid-template-columns:minmax(0,1fr) auto;overflow:hidden;position:relative}.smart-editor .smart-editor-toolbar:not(.smart-tooltip)[expanded] .smart-editor-toolbar-toggle-button::before{transform:rotate(180deg)}.smart-editor .smart-editor-toolbar:not(.smart-tooltip) .smart-editor-toolbar-item{margin-left:var(--smart-editor-toolbar-item-margin);margin-top:var(--smart-editor-toolbar-item-margin)}.smart-editor[toolbar-sticky] .smart-editor-toolbar{position:sticky;top:0;z-index:calc(var(--smart-editor-drop-down-z-index) - 1)}.smart-editor[edit-mode=markdown] .smart-editor-toolbar-item[item-name=sourcecode]::before{content:var(--smart-icon-visibility)}.smart-editor .smart-editor-toolbar-toggle-button{grid-area:toggleButton;width:var(--smart-editor-toolbar-button-width);height:var(--smart-editor-toolbar-height);position:relative;cursor:pointer}.smart-editor .smart-editor-toolbar-toggle-button::before{font-size:var(--smart-font-size);font-family:var(--smart-font-family-icon);display:flex;align-items:center;justify-content:center;height:100%;box-sizing:border-box;pointer-events:none;content:var(--smart-icon-arrow-down);width:var(--smart-editor-addon-width);min-width:var(--smart-editor-addon-width)}.smart-editor .smart-editor-toolbar-items-primary{grid-area:primary;height:var(--smart-editor-toolbar-height);overflow:hidden}.smart-editor .smart-editor-toolbar-items-secondary{grid-area:secondary;padding-bottom:var(--smart-editor-toolbar-item-margin)}.smart-editor .smart-editor-toolbar-items-secondary:empty{display:none}.smart-editor .smart-editor-toolbar-items-primary,.smart-editor .smart-editor-toolbar-items-secondary{width:100%;display:flex;align-items:center;flex-wrap:wrap}.smart-editor iframe{width:100%;height:100%;min-height:var(--smart-editor-input-min-height);border:initial}.smart-editor .smart-editor-content-container{display:grid;width:100%;height:100%;position:relative;overflow:hidden;outline:0;background:0 0}.smart-editor .smart-editor-content-container[split-mode]{display:grid;grid-template-columns:minmax(0,1fr) var(--smart-border-width) minmax(0,1fr);grid-template-rows:100%;grid-column-gap:2px}.smart-editor .smart-editor-content-container[split-mode] .smart-editor-editable{order:1}.smart-editor .smart-editor-content-container[split-mode]::before{content:"";width:100%;height:100%;background-color:var(--smart-border);order:2}.smart-editor .smart-editor-content-container[split-mode] textarea,.smart-editor[edit-mode=markdown] .smart-editor-content-container[split-mode] .smart-editor-editable{order:3}.smart-editor .smart-editor-content-container textarea{resize:none;outline:0;border:initial;min-height:var(--smart-editor-input-min-height);font-size:inherit;font-family:inherit;color:inherit}.smart-editor .smart-editor-content-container .smart-editor-editable{min-height:var(--smart-editor-input-min-height);overflow:auto}.smart-editor .smart-editor-content-container .smart-editor-editable[show-placeholder]::before{content:attr(placeholder);width:100%;height:100%;position:absolute;pointer-events:none;color:var(--smart-disabled-color);opacity:.9;font-family:inherit;font-size:inherit}.smart-editor .smart-editor-content-container .smart-editor-editable p:first-child{margin-top:0}.smart-editor .smart-editor-content-container .smart-editor-editable p:last-child{margin-bottom:0}.smart-editor .smart-editor-content-container .smart-editor-editable ul[checklist] li{list-style:none}.smart-editor .smart-editor-content-container .smart-editor-editable ul[checklist] li::before{border-radius:3px;top:3.5px;width:12px;height:12px;display:inline-block;content:"";margin-right:5px;position:relative;border:2px solid rgba(0,0,0,.25)}.smart-editor .smart-editor-content-container .smart-editor-editable ul[checklist] li[checked]::before{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16' style='shape-rendering: geometricprecision;'%3E%3Cpath fill-rule='evenodd' fill='white' d='M5.944 12.305a1.031 1.031 0 0 0 1.433-.009l5.272-5.181A1.483 1.483 0 0 0 12.661 5a1.468 1.468 0 0 0-2.109.025L7.008 8.701a.465.465 0 0 1-.685-.01l-.587-.641A1.42 1.42 0 0 0 3.661 8a1.473 1.473 0 0 0 .017 2.106l2.266 2.199z'%3E%3C/path%3E%3C/svg%3E");background-color:var(--smart-primary);border:2px solid transparent}.smart-editor .smart-editor-content-container .smart-editor-editable a{display:inline-block}.smart-editor .smart-editor-content-container .smart-editor-editable [alignment=left]{text-align:left}.smart-editor .smart-editor-content-container .smart-editor-editable [alignment=center]{text-align:center}.smart-editor .smart-editor-content-container .smart-editor-editable [alignment=right]{text-align:right}.smart-editor .smart-editor-content-container .smart-editor-editable [alignment=justify]{text-align:justify}.smart-editor .smart-editor-content-container .smart-editor-editable[table-cell-resize=horizontal]{cursor:col-resize}.smart-editor .smart-editor-content-container .smart-editor-editable[table-cell-resize=horizontal] table{overflow:hidden}.smart-editor .smart-editor-content-container .smart-editor-editable[table-cell-resize=horizontal] td[resizing],.smart-editor .smart-editor-content-container .smart-editor-editable[table-cell-resize=horizontal] th[resizing]{position:relative}.smart-editor .smart-editor-content-container .smart-editor-editable[table-cell-resize=horizontal] td[resizing]::after,.smart-editor .smart-editor-content-container .smart-editor-editable[table-cell-resize=horizontal] th[resizing]::after{content:"";position:absolute;right:0;display:flex;width:var(--smart-border-width);height:100%;transform:scaleY(100);background-color:var(--smart-primary)}.smart-editor .smart-editor-content-container .smart-editor-editable[table-cell-resize=vertical]{cursor:row-resize}.smart-editor .smart-editor-content-container .smart-editor-editable[table-cell-resize=vertical] tr[resizing]>td,.smart-editor .smart-editor-content-container .smart-editor-editable[table-cell-resize=vertical] tr[resizing]>th{border-bottom-color:var(--smart-primary)}.smart-editor .smart-editor-content-container .smart-editor-editable[contenteditable=true] img{cursor:pointer}.smart-editor .smart-editor-content-container .smart-editor-editable font:empty{min-width:1px;min-height:1px;display:inline-block}.smart-editor .smart-editor-content-container .smart-editor-editable font:empty::before{content:"a";opacity:0}.smart-editor .smart-editor-content-container .smart-editor-editable pre{padding:10px;background:var(--smart-surface)}.smart-editor .smart-editor-content-container .smart-editor-editable blockquote{border-left:calc(2 * var(--smart-border-width)) solid var(--smart-border);padding:20px 10px}.smart-editor .smart-editor-content-container .smart-editor-editable .find-and-replace-match{background-color:var(--smart-editor-highlight);opacity:.75;color:var(--smart-editor-highlight-color)}.smart-editor .smart-editor-content-container .smart-editor-editable .find-and-replace-match.selected{background-color:var(--smart-editor-highlight);opacity:1}.smart-editor .smart-editor-content-container .smart-editor-video-container iframe,.smart-editor .smart-editor-content-container .smart-editor-video-container video,.smart-editor .smart-editor-content-container img{float:initial;vertical-align:initial;margin:auto;min-width:10px;min-height:10px}.smart-editor .smart-editor-content-container .smart-editor-video-container iframe:not([display=block])[alignment=left],.smart-editor .smart-editor-content-container .smart-editor-video-container video:not([display=block])[alignment=left],.smart-editor .smart-editor-content-container img:not([display=block])[alignment=left],.smart-editor .smart-editor-image-container:not([display=block])[alignment=left]{float:left}.smart-editor .smart-editor-content-container .smart-editor-video-container iframe[display=block],.smart-editor .smart-editor-content-container .smart-editor-video-container video[display=block],.smart-editor .smart-editor-content-container img[display=block]{display:block}.smart-editor .smart-editor-content-container .smart-editor-video-container iframe[display=block][alignment=left],.smart-editor .smart-editor-content-container .smart-editor-video-container video[display=block][alignment=left],.smart-editor .smart-editor-content-container img[display=block][alignment=left]{margin-left:0}.smart-editor .smart-editor-content-container .smart-editor-video-container iframe[display=block][alignment=right],.smart-editor .smart-editor-content-container .smart-editor-video-container video[display=block][alignment=right],.smart-editor .smart-editor-content-container img[display=block][alignment=right]{margin-right:0}.smart-editor .smart-editor-content-container .smart-editor-video-container iframe[show-resize-frame],.smart-editor .smart-editor-content-container .smart-editor-video-container video[show-resize-frame],.smart-editor .smart-editor-content-container img[show-resize-frame]{box-shadow:0 0 0 var(--smart-border-width) var(--smart-primary)}.smart-editor .smart-editor-content-container .smart-editor-video-container iframe:not([display=block])[alignment=right],.smart-editor .smart-editor-content-container .smart-editor-video-container video:not([display=block])[alignment=right],.smart-editor .smart-editor-content-container img:not([display=block])[alignment=right]{float:right}.smart-editor .smart-editor-content-container .smart-editor-search-bar{position:absolute;top:var(--smart-editor-search-bar-offset);right:var(--smart-editor-search-bar-offset);padding:var(--smart-editor-search-bar-padding);display:grid;grid-template-columns:minmax(0,1fr) repeat(3,auto);grid-column-gap:5px;border:var(--smart-border-width) solid var(--smart-border);box-shadow:var(--smart-elevation-4);background:var(--smart-background);border-top-left-radius:var(--smart-border-top-left-radius);border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius)}.smart-editor .smart-editor-content-container .smart-editor-search-bar .smart-search-input-container{width:var(--smart-text-box-default-width);display:flex;align-items:center}.smart-editor .smart-editor-content-container .smart-editor-search-bar .smart-search-input-container::after{content:attr(selected) "/" attr(matches);margin:0 var(--smart-editor-search-bar-offset)}.smart-editor .smart-editor-content-container .smart-editor-search-bar .smart-search-input{height:100%;outline:0;border:initial;padding:var(--smart-editor-label-padding)}.smart-editor .smart-editor-content-container .smart-editor-search-bar .smart-search-input:focus{border-color:var(--smart-outline)}.smart-editor .smart-editor-content-container .smart-editor-search-bar .smart-search-button{--smart-button-padding:0;border:initial;height:var(--smart-editor-toolbar-button-width);width:var(--smart-editor-toolbar-button-width)}.smart-editor .smart-editor-content-container .smart-editor-search-bar .smart-search-button button::after{font-size:var(--smart-font-size);font-family:var(--smart-font-family-icon);display:flex;align-items:center;justify-content:center;box-sizing:border-box;pointer-events:none}.smart-editor .smart-editor-content-container .smart-editor-search-bar .smart-search-button.prev button::after{content:var(--smart-icon-arrow-up)}.smart-editor .smart-editor-content-container .smart-editor-search-bar .smart-search-button.next button::after{content:var(--smart-icon-arrow-down)}.smart-editor .smart-editor-content-container .smart-editor-search-bar .smart-search-button.close button::after{content:var(--smart-icon-close)}.smart-editor[show-char-count] .smart-editor-content-container::after{content:attr(char-count);position:absolute;display:flex;justify-content:flex-end;bottom:var(--smart-editor-char-counter-offset);right:var(--smart-editor-char-counter-offset);box-sizing:border-box;background:var(--smart-background);border-radius:var(--smart-border-radius);background-clip:content-box;-webkit-background-clip:content-box;font-family:inherit;font-size:inherit;pointer-events:none;-webkit-user-select:none;user-select:none}.smart-editor[show-char-count] .smart-editor-content-container.char-count-error::after{color:var(--smart-error)}.smart-editor[show-char-count] .smart-editor-content-container.char-count-warning::after{color:var(--smart-warning)}.smart-editor[edit-mode=markdown] .smart-editor-content-container[split-mode] textarea{order:1}.smart-editor .smart-editor-resize-frame{-webkit-user-select:none;user-select:none;position:absolute}.smart-editor .smart-editor-resize-frame span{cursor:pointer;position:absolute;width:10px;height:10px;background:var(--smart-primary);transform:translate(-50%,-50%)}.smart-editor .smart-editor-resize-frame span[position=bottom-right],.smart-editor .smart-editor-resize-frame span[position=top-left]{cursor:se-resize}.smart-editor .smart-editor-resize-frame span[position=bottom-left],.smart-editor .smart-editor-resize-frame span[position=top-right]{cursor:sw-resize}.smart-editor .smart-editor-resize-frame span[position=bottom-center],.smart-editor .smart-editor-resize-frame span[position=top-center]{cursor:ns-resize}.smart-editor .smart-editor-resize-frame span[position=left-center],.smart-editor .smart-editor-resize-frame span[position=right-center]{cursor:ew-resize}.smart-editor .smart-editor-image-container{display:inline-block}.smart-editor .smart-editor-image-container.smart-editor-video-container{position:relative}.smart-editor .smart-editor-image-container.smart-editor-video-container .smart-editor-video-white-space{position:absolute;opacity:0}.smart-editor .smart-editor-image-container.smart-editor-video-container[dragged]::before{content:"";position:absolute;width:100%;height:100%;top:0;left:0}.smart-editor .smart-editor-image-container.smart-editor-video-container iframe,.smart-editor .smart-editor-image-container.smart-editor-video-container video{width:100%;height:100%}.smart-editor .smart-editor-image-container.smart-editor-video-container>br[class]{display:none}.smart-editor .smart-editor-image-container.smart-editor-video-container::after{content:var(--smart-icon-menu);position:absolute;font-family:var(--smart-font-family-icon);font-size:var(--smart-font-size);width:var(--smart-editor-toolbar-item-height);height:var(--smart-editor-toolbar-item-height);top:0;left:calc(50% - var(--smart-editor-toolbar-item-height)/ 2);background:var(--smart-background);border-radius:50%;display:inline-flex;align-items:center;justify-content:center;visibility:hidden;transform-origin:top;transform:scale(0) translateY(-100%);transition:transform .2s ease-in-out,visibility .2s ease-in-out}.smart-editor .smart-editor-image-container.smart-editor-video-container:hover::after{visibility:visible;transform:scale(1) translateY(25%)}.smart-editor .smart-editor-image-container[display=block]{display:block}.smart-editor .smart-editor-image-container[display=block][alignment=left] img{margin-left:0}.smart-editor .smart-editor-image-container[display=block][alignment=left] .smart-editor-image-caption{text-align:left}.smart-editor .smart-editor-image-container[display=block][alignment=right] img{margin-right:0}.smart-editor .smart-editor-image-container[display=block][alignment=right] .smart-editor-image-caption{text-align:right}.smart-editor .smart-editor-image-container:not([display=block])[alignment=right]{float:right}.smart-editor .smart-editor-image-container .smart-editor-image-caption{display:block;text-align:center;outline:0}.smart-editor table{width:100%;border-collapse:collapse;empty-cells:show;border-spacing:0;table-layout:fixed}.smart-editor table td,.smart-editor table th{border:var(--smart-border-width) solid var(--smart-border);width:var(--smart-editor-table-column-width);min-height:var(--smart-editor-table-cell-min-height);min-width:var(--smart-editor-table-cell-min-width);padding:2px 5px;vertical-align:middle}.smart-editor table img{max-width:100%}.smart-editor table table{width:100%}.smart-editor table th{background:var(--smart-surface)}.smart-editor table td:empty::before,.smart-editor table th:empty::before{content:"A";visibility:hidden}.smart-editor table[dashed-borders] td,.smart-editor table[dashed-borders] th{border-style:dashed}.smart-editor table[alternation] tr:nth-child(2n){background-color:var(--smart-alternation-index0-background)}.smart-editor table [selected]{box-shadow:0 0 0 var(--smart-border-width) var(--smart-primary) inset}.smart-editor[focus] .smart-editor-toolbar-item[item-type=button][checked]{color:var(--smart-ui-state-color-active);border-color:var(--smart-ui-state-border-active);background-color:var(--smart-ui-state-active)}.smart-editor-toolbar-item{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;position:relative;border-radius:var(--smart-editor-toolbar-item-border-radius);cursor:pointer}.smart-editor-toolbar-item:not([item-type=custom]):hover{color:var(--smart-ui-state-color-hover);border-color:var(--smart-ui-state-border-hover);background-color:var(--smart-ui-state-hover);box-shadow:var(--smart-elevation-1)}.smart-editor-toolbar-item:not([item-type=custom]):not([item-type=color-input]):not([disabled]):active,.smart-editor-toolbar-item[item-type=toggle][checked]{color:var(--smart-ui-state-color-active);border-color:var(--smart-ui-state-border-active);background-color:var(--smart-ui-state-active)}.smart-editor-toolbar-item[item-name=bold]::before{content:var(--smart-icon-bold)}.smart-editor-toolbar-item[item-name=italic]::before{content:var(--smart-icon-italic)}.smart-editor-toolbar-item[item-name=underline]::before{content:var(--smart-icon-underline)}.smart-editor-toolbar-item[item-name=strikethrough]::before{content:var(--smart-icon-strike-through)}.smart-editor-toolbar-item[item-name=caption]::before{content:var(--smart-icon-format-clear);font-weight:600}.smart-editor-toolbar-item[item-name=orderedlist]::before{content:var(--smart-icon-list-ordered)}.smart-editor-toolbar-item[item-name=checklist]::before,.smart-editor-toolbar-item[item-name=unorderedlist]::before{content:var(--smart-icon-list-unordered)}.smart-editor-toolbar-item[item-name=subscript]::before{content:var(--smart-icon-subscript)}.smart-editor-toolbar-item[item-name=superscript]::before{content:var(--smart-icon-superscript)}.smart-editor-toolbar-item .smart-editor-item-action-button[item-name=backgroundcolor]::before{content:var(--smart-icon-color-background)}.smart-editor-toolbar-item .smart-editor-item-action-button[item-name=fontcolor]::before{content:var(--smart-icon-font)}.smart-editor-toolbar-item[item-name=delete]::before{content:var(--smart-icon-delete)}.smart-editor-toolbar-item[item-name=redo]::before,.smart-editor-toolbar-item[item-name=undo]::before{content:var(--smart-icon-reload)}.smart-editor-toolbar-item[item-name=indent]::before{content:var(--smart-icon-indent-left)}.smart-editor-toolbar-item[item-name=outdent]::before{content:var(--smart-icon-indent-right)}.smart-editor-toolbar-item[item-name=createlink]::before{content:var(--smart-icon-link)}.smart-editor-toolbar-item[item-name=removelink]::before{content:var(--smart-icon-unlink)}.smart-editor-toolbar-item[item-name=hyperlink]::before{content:var(--smart-icon-link)}.smart-editor-toolbar-item[item-name=openlink]::before{content:var(--smart-icon-link-ext)}.smart-editor-toolbar-item[item-name=editlink]::before{content:var(--smart-icon-mode-edit)}.smart-editor-toolbar-item[item-name=image]::before{content:var(--smart-icon-image)}.smart-editor-toolbar-item[item-name=table]::before{content:var(--smart-icon-table)}.smart-editor-toolbar-item[item-name=lowercase]::before{content:var(--smart-icon-case-lower)}.smart-editor-toolbar-item[item-name=uppercase]::before{content:var(--smart-icon-case-upper)}.smart-editor-toolbar-item[item-name=print]::before{content:var(--smart-icon-print)}.smart-editor-toolbar-item[item-name=copy]::before{content:var(--smart-icon-copy-record)}.smart-editor-toolbar-item[item-name=paste]::before{content:var(--smart-icon-paste)}.smart-editor-toolbar-item[item-name=cut]::before{content:var(--smart-icon-cut);transform:rotate(-90deg)}.smart-editor-toolbar-item[item-name=clearformat]::before{content:var(--smart-icon-format-clear);font-style:italic;font-weight:600}.smart-editor-toolbar-item[item-name=fullscreen]::before{content:var(--smart-icon-resize-full)}.smart-editor-toolbar-item[item-name=sourcecode]::before{content:var(--smart-icon-source-code)}.smart-editor-toolbar-item[item-name=preview]::before{content:var(--smart-icon-visibility)}.smart-editor-toolbar-item[item-name=splitmode]::before{content:var(--smart-icon-split-mode)}.smart-editor-toolbar-item[item-name=tableheader]::before{content:var(--smart-icon-header)}.smart-editor-toolbar-item[item-name=tablerows]::before{content:var(--smart-icon-row)}.smart-editor-toolbar-item[item-name=tablecolumns]::before{content:var(--smart-icon-column)}.smart-editor-toolbar-item[item-name=tablevalign]::before{content:var(--smart-icon-vertical-align)}.smart-editor-toolbar-item[item-name=tablestyle]::before{content:var(--smart-icon-styles)}.smart-editor-toolbar-item[item-name=findandreplace]::before{content:var(--smart-icon-search)}.smart-editor-toolbar-item[item-name=video]::before{content:var(--smart-icon-video)}.smart-editor-toolbar-item[item-name=redo]::before{transform:scaleX(-1)}.smart-editor-toolbar-item[item-name=clearformat]::after{content:"-";position:absolute;top:0;font-weight:600;transform:scaleX(1.5)}.smart-editor-toolbar-item[item-name=alignment][item-value=left]::before{content:var(--smart-icon-align-left)}.smart-editor-toolbar-item[item-name=alignment][item-value=center]::before{content:var(--smart-icon-align-center)}.smart-editor-toolbar-item[item-name=alignment][item-value=right]::before{content:var(--smart-icon-align-right)}.smart-editor-toolbar-item[item-name=alignment][item-value=justify]::before{content:var(--smart-icon-align-justify)}.smart-editor-toolbar-item[item-type=button],.smart-editor-toolbar-item[item-type=toggle]{width:var(--smart-editor-toolbar-button-width)}.smart-editor-toolbar-item[item-type=color-input],.smart-editor-toolbar-item[item-type=drop-down]{display:flex;align-items:center;justify-content:space-between;width:var(--smart-editor-toolbar-drop-down-width-small)}.smart-editor-toolbar-item[item-type=drop-down][item-name=fontname],.smart-editor-toolbar-item[item-type=drop-down][item-name=formats]{width:var(--smart-editor-toolbar-drop-down-width-large)}.smart-editor-toolbar-item[item-type=drop-down][item-name=tablerows]:before{transform:rotate(90deg);padding:var(--smart-editor-label-padding);padding-left:initial;padding-right:initial;padding-top:initial}.smart-editor-toolbar-item[item-type=color-input] .smart-editor-item-action-button{display:flex;align-items:center;justify-content:center;position:relative;width:calc(100% - var(--smart-editor-addon-width));height:100%;min-width:var(--smart-editor-addon-width);padding:var(--smart-editor-label-padding);padding-top:initial;padding-bottom:initial}.smart-editor-toolbar-item[item-type=color-input] .smart-editor-item-action-button::before{font-size:var(--smart-font-size);font-family:var(--smart-font-family-icon);border-bottom:calc(3 * var(--smart-border-width)) solid var(--item-value)}.smart-editor-toolbar-item[item-type=color-input] .smart-editor-item-drop-down-button{position:relative;height:100%}.smart-editor-toolbar-item[item-type=custom]>:first-child{width:100%;height:var(--smart-editor-toolbar-item-height)}.smart-editor-toolbar-item .smart-editor-item-action-button:hover,.smart-editor-toolbar-item .smart-editor-item-drop-down-button:hover{color:var(--smart-ui-state-color-hover);border-color:var(--smart-ui-state-focus);background-color:var(--smart-ui-state-focus)}.smart-editor-toolbar-item .smart-editor-item-action-button:not([disabled]):active,.smart-editor-toolbar-item .smart-editor-item-drop-down-button:not([disabled]):active{color:var(--smart-ui-state-color-active);border-color:var(--smart-ui-state-border-active);background-color:var(--smart-ui-state-active)}.smart-editor-toolbar-item[item-type=delimiter]{width:var(--smart-editor-toolbar-delimiter-width);pointer-events:none}.smart-editor-toolbar-item[item-type=delimiter]::before{content:attr(item-name);transform:scaleY(1.5);min-width:initial}.smart-editor-toolbar-item .smart-ripple{background-color:var(--smart-background-color)}.smart-editor-toolbar-item .smart-editor-item-drop-down{position:absolute;top:0;left:0;visibility:hidden}.smart-color-input-drop-down-menu.smart-editor-color-input .grid-samples-container{grid-template-columns:repeat(2,minmax(0,1fr))}.smart-color-input-drop-down-menu.smart-editor-color-input:not([animation=none]) .default-samples-container div{transition:transform .2s ease-in-out}.smart-color-input-drop-down-menu.smart-editor-color-input .default-samples-container div{position:relative;border-radius:50%;border:initial;transform:scale(.95)}.smart-color-input-drop-down-menu.smart-editor-color-input .default-samples-container div.selected{transform:scale(1)}.smart-color-input-drop-down-menu.smart-editor-color-input .default-samples-container div.selected:not(.no-color):after{content:var(--smart-icon-check);width:100%;height:100%;position:absolute;top:0;left:0;display:flex;justify-content:center;align-items:center;font-family:var(--smart-font-family-icon);color:var(--smart-secondary-color);border-radius:inherit}.smart-editor-color-input{--smart-input-drop-down-menu-width:auto}.smart-editor-color-input.smart-color-input-drop-down-menu .default-samples-container div.selected[value="#FFFFFF"]::after{border:var(--smart-border-width) solid var(--smart-border);color:var(--smart-ui-state-color-hover);box-sizing:border-box}.smart-editor-input li .editor-icon::before{font-size:var(--smart-font-size);font-family:var(--smart-font-family-icon);display:flex;align-items:center;justify-content:center;position:absolute;left:0;width:var(--smart-column-icon-size);line-height:1rem}.smart-editor-input li[value=left] .editor-icon::before{content:var(--smart-icon-align-left)}.smart-editor-input li[value=center] .editor-icon::before{content:var(--smart-icon-align-center)}.smart-editor-input li[value=right] .editor-icon::before{content:var(--smart-icon-align-right)}.smart-editor-input li[value=justify] .editor-icon::before{content:var(--smart-icon-align-justify)}.smart-editor-input li[value=insertRowBefore] .editor-icon::before{content:var(--smart-icon-row-before)}.smart-editor-input li[value=insertRowAfter] .editor-icon::before{content:var(--smart-icon-row-after);transform:rotate(180deg)}.smart-editor-input li[value=deleteRow] .editor-icon::before{content:var(--smart-icon-row-delete)}.smart-editor-input li[value=insertColumnLeft] .editor-icon::before{content:var(--smart-icon-column-left);transform:rotate(-90deg)}.smart-editor-input li[value=insertColumnRight] .editor-icon::before{content:var(--smart-icon-column-right);transform:rotate(90deg)}.smart-editor-input li[value=deleteColumn] .editor-icon::before{content:var(--smart-icon-column-delete)}.smart-editor-input li[value=h1] a{font-size:1.5rem;font-weight:700}.smart-editor-input li[value=h2] a{font-size:1.3rem;font-weight:700}.smart-editor-input li[value=h3] a{font-size:1.1rem;font-weight:700}.smart-editor-input li[value=h4] a{font-size:.9rem;font-weight:700}.smart-editor-input li[value=segueUi] a{font-family:"Segoe UI",Tahoma,Geneva,Verdana,sans-serif}.smart-editor-input li[value=arial] a{font-family:Arial,Helvetica,sans-serif}.smart-editor-input li[value=georgia] a{font-family:Georgia,"Times New Roman",Times,serif}.smart-editor-input li[value=impact] a{font-family:Impact,Haettenschweiler,"Arial Narrow Bold",sans-serif}.smart-editor-input li[value=tahoma] a{font-family:Tahoma,Geneva,Verdana,sans-serif}.smart-editor-input li[value=timesnewRoman] a{font-family:"Times New Roman",Times,serif}.smart-editor-input li[value=verdana] a{font-family:Verdana,Geneva,Tahoma,sans-serif}.smart-editor-window{--smart-window-default-width:auto;--smart-window-default-height:auto;--smart-window-header-height:var(--smart-editor-window-header-height);--smart-window-footer-height:var(--smart-editor-window-footer-height);--smart-window-header-footer-padding:10px;--smart-window-header-background:transparent;--smart-window-footer-padding:10px;--smart-window-content-padding:20px;max-width:95vw;max-height:95vh}.smart-editor-window.smart-window .smart-content-container>.smart-content{padding:initial;align-items:flex-start}.smart-editor-window .smart-editor-window-button{width:100%;height:100%;--smart-button-padding:0.2rem 16px}.smart-editor-window .smart-editor-window-button:not(:last-of-type){margin-right:2.5%}.smart-editor-window .smart-editor-window-content-wrapper{grid-template-rows:auto minmax(auto,1fr);padding:var(--smart-window-content-padding);width:100%}.smart-editor-window .smart-editor-window-content-wrapper>div{display:grid;width:var(--smart-box-width);grid-row-gap:10px;justify-content:center;grid-template-columns:100%}.smart-editor-window .smart-editor-window-editor{display:grid;grid-row-gap:5px;grid-column-gap:10px}.smart-editor-window .smart-editor-window-editor>.smart-input,.smart-editor-window .smart-editor-window-editor>.smart-list-box{width:100%}.smart-editor-window .smart-editor-window-editor>.smart-check-box{width:max-content}.smart-editor-window .smart-editor-window-editor[multiple] .smart-editor-window-editor{grid-template-columns:repeat(2,minmax(0,1fr))}.smart-editor-window .smart-editor-window-editor[type=results] label{display:flex;justify-content:space-between}.smart-editor-window .smart-editor-window-editor[type=results] label[matches]::after{content:attr(selected) " of " attr(matches)}.smart-editor-window .smart-editor-window-editor[type=file] .smart-drop-zone{width:100%;height:100px;border:calc(2 * var(--smart-border-width)) dashed var(--smart-border);border-radius:var(--smart-border-radius)}.smart-editor-window .smart-editor-window-editor[type=file] .smart-file-upload{--smart-file-upload-drop-zone-height:100px;width:100%;order:1;min-height:initial}.smart-editor-window .smart-editor-window-editor[type=file] .smart-file-upload .smart-browse-button{margin:initial}.smart-editor-window .smart-editor-window-editor[type=file] .smart-file-upload .smart-item-upload-button{display:none}.smart-editor-window .smart-editor-window-editor[type=file] .smart-file-upload .smart-file-upload-header{margin-bottom:5px;padding:initial}.smart-editor-window .smart-editor-window-editor[type=file] .smart-file-upload .smart-file-upload-container,.smart-editor-window .smart-editor-window-editor[type=file] .smart-file-upload .smart-selected-files{padding:initial}.smart-editor-window .smart-editor-window-editor[type=file] .smart-file-upload .smart-selected-files .smart-file{display:flex;margin:initial;border:var(--smart-border-width) solid var(--smart-border);border-radius:var(--smart-border-radius)}.smart-editor-window .smart-editor-window-editor[type=file] .smart-file-upload .smart-selected-files .smart-item-cancel-button:after,.smart-editor-window .smart-editor-window-editor[type=file] .smart-file-upload .smart-selected-files .smart-item-pause-button:after,.smart-editor-window .smart-editor-window-editor[type=file] .smart-file-upload .smart-selected-files .smart-item-upload-button:after{position:initial;left:initial;top:initial;display:flex;align-items:center;justify-content:center}.smart-editor-window .smart-editor-window-editor[type=file] .smart-file-upload .smart-selected-files .smart-item-name{width:100%}.smart-tooltip .smart-tooltip-content{display:flex;background-color:var(--smart-background);color:var(--smart-background-color);border-color:var(--smart-background);opacity:initial}.smart-tooltip.smart-editor-context-menu:not([animation=none]){transition:opacity .2s ease-in,visibility .2s ease-in,transform .2s ease-in}.smart-tooltip.smart-editor-toolbar{--smart-tooltip-padding:5px;--smart-tooltip-arrow-color:var(--smart-surface)}.smart-tooltip.smart-editor-toolbar .smart-tooltip-content{background-color:var(--smart-surface);color:var(--smart-surface-color);border-color:var(--smart-surface)}.smart-tooltip.smart-editor-toolbar.smart-editor-inline-toolbar .smart-tooltip-content{max-width:var(--smart-editor-inline-toolbar-max-width);flex-wrap:wrap}.smart-tooltip.smart-editor-toolbar:not([animation=none]) .smart-editor-toolbar-item{transition:background-color 0s linear,border-color 0s ease-in-out,color 0s linear,box-shadow .2s ease-in-out}.smart-tooltip.smart-editor-toolbar:not(.smart-editor-drop-down-toolbar) .smart-editor-toolbar-item:not(:first-of-type){margin-left:var(--smart-editor-toolbar-item-margin)}.smart-tooltip.smart-editor-context-menu{opacity:.2;transform:scale(0);transform-origin:0 0}.smart-tooltip.smart-editor-context-menu[visible]{opacity:1;transform:scale(1)}.smart-tooltip .smart-editor-context-menu-item-container{width:100%;height:100%;display:grid;align-items:center;justify-content:flex-start}.smart-tooltip .smart-editor-context-menu-item-container .smart-editor-context-menu-item{-webkit-user-select:none;user-select:none;height:var(--smart-list-item-height);padding:var(--smart-list-item-padding);border-top-left-radius:var(--smart-item-border-top-left-radius);border-top-right-radius:var(--smart-item-border-top-right-radius);border-bottom-left-radius:var(--smart-item-border-bottom-left-radius);border-bottom-right-radius:var(--smart-item-border-bottom-right-radius);white-space:nowrap;text-overflow:ellipsis;background:var(--smart-background);color:var(--smart-background-color);display:flex;align-items:center;position:relative;padding-left:var(--smart-column-icon-size)}.smart-tooltip .smart-editor-context-menu-item-container .smart-editor-context-menu-item::before{font-size:var(--smart-font-size);font-family:var(--smart-font-family-icon);display:flex;align-items:center;justify-content:center;position:absolute;left:0;width:var(--smart-column-icon-size);line-height:1rem}.smart-tooltip .smart-editor-context-menu-item-container .smart-editor-context-menu-item[value=insertRowBefore]::before{content:var(--smart-icon-row-before)}.smart-tooltip .smart-editor-context-menu-item-container .smart-editor-context-menu-item[value=insertRowAfter]::before{content:var(--smart-icon-row-after);transform:rotate(180deg)}.smart-tooltip .smart-editor-context-menu-item-container .smart-editor-context-menu-item[value=deleteRow]::before{content:var(--smart-icon-row-delete)}.smart-tooltip .smart-editor-context-menu-item-container .smart-editor-context-menu-item[value=insertColumnLeft]::before{content:var(--smart-icon-column-left);transform:rotate(-90deg)}.smart-tooltip .smart-editor-context-menu-item-container .smart-editor-context-menu-item[value=insertColumnRight]::before{content:var(--smart-icon-column-right);transform:rotate(90deg)}.smart-tooltip .smart-editor-context-menu-item-container .smart-editor-context-menu-item[value=deleteColumn]::before{content:var(--smart-icon-column-delete)}.smart-tooltip .smart-editor-context-menu-item-container .smart-editor-context-menu-item[value=tableProperties]::before{content:var(--smart-icon-table)}.smart-tooltip .smart-editor-context-menu-item-container .smart-editor-context-menu-item[value=imageProperties]::before{content:var(--smart-icon-image)}.smart-tooltip .smart-editor-context-menu-item-container .smart-editor-context-menu-item[value=linkProperties]::before,.smart-tooltip .smart-editor-context-menu-item-container .smart-editor-context-menu-item[value=videoProperties]::before{content:var(--smart-icon-link)}.smart-tooltip .smart-editor-context-menu-item-container .smart-editor-context-menu-item[value=deleteTable]::before{content:var(--smart-icon-delete)}.smart-tooltip .smart-editor-context-menu-item-container .smart-editor-context-menu-item[value=copyImage]::before,.smart-tooltip .smart-editor-context-menu-item-container .smart-editor-context-menu-item[value=copyVideo]::before{content:var(--smart-icon-copy-record)}.smart-tooltip .smart-editor-context-menu-item-container .smart-editor-context-menu-item[value=cutImage]::before,.smart-tooltip .smart-editor-context-menu-item-container .smart-editor-context-menu-item[value=cutVideo]::before{content:var(--smart-icon-cut);transform:rotate(-90deg)}.smart-tooltip .smart-editor-context-menu-item-container .smart-editor-context-menu-item[value=deleteImage]::before,.smart-tooltip .smart-editor-context-menu-item-container .smart-editor-context-menu-item[value=deleteLink]::before,.smart-tooltip .smart-editor-context-menu-item-container .smart-editor-context-menu-item[value=deleteVideo]::before{content:var(--smart-icon-delete)}.smart-tooltip .smart-editor-context-menu-item-container .smart-editor-context-menu-item[value=createLink]::before{content:var(--smart-icon-link)}.smart-tooltip .smart-editor-context-menu-item-container .smart-editor-context-menu-item[value=deleteLink]::before{content:var(--smart-icon-unlink)}.smart-tooltip .smart-editor-context-menu-item-container .smart-editor-context-menu-item[value=caption]::before{content:var(--smart-icon-format-clear)}.smart-tooltip .smart-editor-context-menu-item-container .smart-editor-context-menu-item[value=selectAll]::before{content:var(--smart-icon-group)}.smart-tooltip .smart-editor-context-menu-item-container .smart-editor-context-menu-item[value=cut]::before{content:var(--smart-icon-cut);transform:rotate(-90deg)}.smart-tooltip .smart-editor-context-menu-item-container .smart-editor-context-menu-item[value=copy]::before{content:var(--smart-icon-copy-record)}.smart-tooltip .smart-editor-context-menu-item-container .smart-editor-context-menu-item[value=paste]::before{content:var(--smart-icon-paste)}.smart-tooltip .smart-editor-context-menu-item-container .smart-editor-context-menu-item:hover{background:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover)}.smart-tooltip .smart-editor-context-menu-item-container .smart-editor-context-menu-item[selected]{background-color:var(--smart-ui-state-selected);border-color:var(--smart-ui-state-border-selected);color:var(--smart-ui-state-color-selected)}.smart-tooltip .smart-editor-context-menu-item-container .smart-editor-context-menu-item[disabled]{opacity:.55;cursor:default;pointer-events:none}.smart-editor-drop-down-toolbar:not([animation=none]){animation:smart-drop-down-list-smart-animate-closing .2s ease-in;transition:animation .2s ease-in,opacity .2s ease-in,visibility .2s ease-in}.smart-editor-drop-down-toolbar:not([animation=none])[visible]{animation:smart-drop-down-list-smart-animate-opening .2s ease-out;transition:animation .2s ease-out,opacity .2s ease-out,visibility .2s ease-out}.smart-editor-drop-down-toolbar:not([arrow-direction]),.smart-editor-drop-down-toolbar[arrow-direction=bottom]{transform-origin:bottom}.smart-editor-drop-down-toolbar:not([arrow]),.smart-editor-drop-down-toolbar[arrow-direction=top]{transform-origin:top}.smart-editor-drop-down-toolbar .smart-table-picker{overflow:hidden;display:block;background:0 0}.smart-editor-drop-down-toolbar .smart-table-picker .smart-table-picker-grid{width:100%;display:flex;flex-direction:column;align-items:center}.smart-editor-drop-down-toolbar .smart-table-picker .smart-table-picker-grid::before{content:attr(value);display:flex;width:100%;justify-content:center;align-items:center;padding:.2rem 16px;box-sizing:border-box}.smart-editor-drop-down-toolbar .smart-table-picker .smart-table-picker-grid>div{display:flex}.smart-editor-drop-down-toolbar .smart-table-picker .smart-table-picker-cell{width:15px;height:15px;border:var(--smart-border-width) solid var(--smart-border);margin:2px;cursor:pointer}.smart-editor-drop-down-toolbar .smart-table-picker .smart-table-picker-cell[selected]{border-color:var(--smart-primary);background:var(--smart-primary)}.smart-editor-drop-down-toolbar .smart-table-picker .smart-table-picker-separator{width:100%;height:var(--smart-border-width);background:var(--smart-border);margin:10px 0}.smart-editor-drop-down-toolbar .smart-table-picker .smart-table-picker-button{width:100%;background:0 0;border:initial}.smart-editor-drop-down-toolbar .smart-table-picker .smart-table-picker-button button::before{font-size:var(--smart-font-size);font-family:var(--smart-font-family-icon);content:var(--smart-icon-table);margin-right:10px;box-sizing:border-box}.smart-editor[right-to-left] .smart-editor-toolbar:not(.smart-tooltip) .smart-editor-toolbar-item,.smart-tooltip.smart-editor-toolbar[right-to-left]:not(.smart-editor-drop-down-toolbar) .smart-editor-toolbar-item:not(:first-of-type){margin-left:initial;margin-right:var(--smart-editor-toolbar-item-margin)}.smart-editor[right-to-left] .smart-editor-toolbar:not(.smart-tooltip){grid-template-areas:"toggleButton primary" "secondary secondary";grid-template-columns:auto minmax(0,1fr)}.smart-editor[right-to-left] .smart-editor-content-container,.smart-editor[right-to-left] .smart-editor-toolbar-item[item-type=color-input],.smart-editor[right-to-left] .smart-editor-toolbar-item[item-type=drop-down],.smart-editor[right-to-left] .smart-editor-toolbar-items-primary,.smart-editor[right-to-left] .smart-editor-toolbar-items-secondary{direction:rtl}.smart-editor[right-to-left] .smart-editor-resize-frame span{transform:translate(50%,-50%)}.smart-editor[right-to-left] .smart-editor-resize-frame span[position=bottom-right],.smart-editor[right-to-left] .smart-editor-resize-frame span[position=top-left]{cursor:sw-resize}.smart-editor[right-to-left] .smart-editor-resize-frame span[position=bottom-left],.smart-editor[right-to-left] .smart-editor-resize-frame span[position=top-right]{cursor:se-resize}.smart-editor-input[right-to-left] li .editor-icon::before{right:0;left:initial}.smart-editor-drop-down-toolbar .smart-table-picker[right-to-left] .smart-table-picker-grid{direction:rtl}.smart-editor-drop-down-toolbar .smart-table-picker[right-to-left] .smart-table-picker-button>button.smart-button{display:flex;align-items:center;justify-content:center}.smart-editor-drop-down-toolbar .smart-table-picker[right-to-left] .smart-table-picker-button>button.smart-button::before{margin-right:initial;margin-left:10px}
smart-file-upload{display:inline-block;width:var(--smart-file-upload-default-width);font-size:var(--smart-file-upload-font-size);font-family:var(--smart-file-upload-font-family);color:var(--smart-file-upload-color);overflow:hidden;box-sizing:border-box;border:var(--smart-file-upload-border-width) dashed var(--smart-file-upload-border);background-color:var(--smart-file-upload-background);min-width:200px;min-height:100px}smart-file-upload .smart-selected-files .smart-file.smart-hidden,smart-file-upload .smart-total-files.smart-hidden,smart-file-upload[show-progress] .smart-file smart-progress-bar{display:none}smart-file-upload[disabled]{opacity:.55;cursor:default}smart-file-upload[show-progress] .smart-file smart-progress-bar[value]{display:block}.smart-file.smart-uploading-start:before{width:100%;height:100%;position:absolute;left:0;top:0;font-family:arial;content:var(--smart-file-upload-text-content-uploading-start);background-color:rgba(193,193,193,.4117647059);opacity:1;display:flex;justify-content:flex-end;flex-direction:column;box-sizing:border-box;font-size:11px;color:#737373;padding:0 0 2px 5px;pointer-events:none;z-index:1;animation:connecting 1s linear infinite}.smart-file.smart-error:before,.smart-file.smart-pause:before,.smart-file.smart-uploading:before{height:100%;justify-content:flex-end;font-size:11px;z-index:1;position:absolute;font-family:arial;padding:0 0 2px 5px;width:100%;pointer-events:none;box-sizing:border-box;top:0;left:0}.smart-file.smart-uploading:before{content:var(--smart-file-upload-text-content-uploading);background-color:rgba(193,193,193,.4117647059);opacity:1;display:flex;flex-direction:column;color:var(--smart-ui-state)}.smart-file.smart-uploading .smart-item-upload-button{pointer-events:none}.smart-file.smart-uploading .smart-item-name{opacity:.2;-webkit-user-select:none;user-select:none}.smart-file.smart-pause:before{content:var(--smart-file-upload-text-content-pause);background-color:rgba(255,0,0,.1882352941);border-radius:3px;opacity:.8;display:flex;flex-direction:column;color:#8a0000}.smart-file.smart-error:before{content:var(--smart-file-upload-text-content-error);background-color:var(--smart-error);border-radius:var(--smart-error-border-radius);opacity:0;display:flex;flex-direction:column;color:var(--smart-on-error);animation:error 6s linear 1}.smart-file.smart-error smart-progress-bar,.smart-selected-files .smart-uploading .smart-item-upload-button{opacity:.3}.smart-file smart-progress-bar{display:none;width:100%;height:4px;position:absolute;bottom:0;left:0}.smart-file smart-progress-bar .smart-container{border-style:none}.smart-file smart-progress-bar .smart-value{background-color:orange}.smart-file-upload .smart-file-upload-container,.smart-file-upload .smart-file-upload-footer,.smart-file-upload .smart-file-upload-header{padding:5px;width:100%;box-sizing:border-box}.smart-file-upload .smart-browse-button{display:block;margin:4px;width:var(--smart-file-upload-browse-button-width);height:var(--smart-file-upload-browse-button-height)}.smart-file-upload .smart-cancel-all-button,.smart-file-upload .smart-pause-all-button,.smart-file-upload .smart-upload-all-button{width:var(--smart-file-upload-footer-button-width);height:var(--smart-file-upload-footer-button-height);margin:4px}.smart-file-upload .smart-browse-input{display:none}.smart-file-upload .smart-drop-zone{display:none;width:100%;height:100px}.smart-file-upload .smart-total-files{font-family:arial;font-size:12px;color:gray;display:block;box-sizing:border-box;padding:0 0 2px 5px}.smart-file-upload .smart-total-files:empty,.smart-file-upload[hide-footer] .smart-file-upload-footer{display:none}.smart-file-upload[disabled] .smart-file-upload-container{pointer-events:none;-webkit-user-select:none;user-select:none}.smart-file-upload[drop-zone] .smart-drop-zone{display:block}.smart-file-upload[drop-zone] .smart-overflow .smart-drop-zone{display:none}.smart-drop-zone{width:100%;height:100%;background-color:var(--smart-background);position:relative;box-sizing:border-box;border:1px dotted #d3d3d3}.smart-drop-zone:after{font-family:var(--smart-font-family-icon);overflow:hidden;text-overflow:ellipsis;display:flex;justify-content:center;flex-direction:column;height:100%;width:100%;text-align:center;content:var(--smart-file-upload-text-content-drop-zone);color:var(--smart-ui-state);box-sizing:border-box;border:5px dashed transparent;transition:border .5s ease-out}.smart-drop-zone.smart-drag-over:after,[data-theme=modern] .smart-drop-zone.smart-drag-over:after{content:var(--smart-file-upload-text-content-drop-zone-over);transition:border .5s ease-out;animation:drop-zone 1s ease-in infinite}.smart-drop-zone.smart-drag-over:after{font-size:50px;border:3px dashed var(--smart-background-border)}[data-theme=modern]{--smart-file-upload-text-content-drop-zone-over:"Drop here"}[data-theme=modern] .smart-drop-zone{border:2px dashed var(--smart-surface);width:100%;background-size:contain;background-repeat:no-repeat;background-position:bottom center;padding:10px;display:flex;justify-content:center;align-items:center}[data-theme=modern] .smart-drop-zone:after{font-family:Verdana;font-size:.875rem;font-weight:400;line-height:1.5}[data-theme=modern] .smart-drop-zone:hover{border-color:var(--smart-primary);background-color:rgba(var(--smart-primary-rgb),.1)}[data-theme=modern] .smart-drop-zone.smart-drag-over:after{border-color:transparent;font-size:2.5rem}.smart-selected-files{width:100%;height:100%;display:block;box-sizing:border-box;padding:2px}.smart-selected-files .smart-file{height:auto;position:relative;display:block;box-sizing:border-box;border:1px solid #d3d3d3;padding:10px;border-radius:3px;margin-bottom:1px;background-color:#fafafa;transition:border-color .5s ease}.smart-selected-files .smart-file:hover{transition:border-color .5s ease;border-color:gray}.smart-selected-files .smart-item-pause-button{pointer-events:none;box-sizing:border-box;height:16px;position:relative;width:16px;color:#999;transition:color .5s ease;display:none}.smart-selected-files .smart-item-pause-button:after{font-family:var(--smart-font-family-icon);position:absolute;left:0;top:0;font-size:16px;text-shadow:2px 2px 2px #d3d3d3;content:var(--smart-icon-close)}.smart-selected-files .smart-item-cancel-button{display:inline-block;box-sizing:border-box;height:16px;position:relative;width:16px;color:#999;transition:color .5s ease}.smart-selected-files .smart-item-cancel-button:after{font-family:var(--smart-font-family-icon);position:absolute;left:0;top:0;font-size:16px;text-shadow:2px 2px 2px #d3d3d3;content:var(--smart-icon-close)}.smart-selected-files .smart-item-cancel-button:hover{cursor:pointer;transition:color .5s ease;color:orange}.smart-selected-files .smart-item-upload-button{display:inline-block;box-sizing:border-box;height:16px;position:relative;width:16px;color:#999;transition:color .5s ease}.smart-selected-files .smart-item-upload-button:after{font-family:var(--smart-font-family-icon);content:var(--smart-icon-up);position:absolute;left:0;top:0;font-size:16px;text-shadow:2px 2px 2px #d3d3d3}.smart-selected-files .smart-item-upload-button:hover{cursor:pointer;color:var(--smart-success);transition:color .5s ease}.smart-selected-files .smart-item-name{display:inline-block;box-sizing:border-box;position:relative;width:calc(100% - 40px);overflow:hidden;text-overflow:ellipsis;height:auto}.smart-selected-files .smart-uploading .smart-item-name{width:calc(100% - 60px);overflow:hidden;text-overflow:ellipsis;height:auto}.smart-selected-files .smart-uploading .smart-item-pause-button{display:inline-block;cursor:pointer;pointer-events:all;transition:color .5s,opacity .5s ease;color:#dc1919;opacity:.5}.smart-selected-files .smart-uploading .smart-item-pause-button:hover{transition:color .5s,opacity .5s ease;color:red;opacity:1}.smart-selected-files .smart-uploading .smart-item-cancel-button{display:inline-block;cursor:pointer;pointer-events:all;transition:color .5s,opacity .5s ease;opacity:.5;color:#ff8c00}.smart-selected-files .smart-uploading .smart-item-cancel-button:hover{transition:color .5s,opacity .5s ease;color:orange;opacity:1}.smart-drop-zone-square{position:relative}.smart-drop-zone-square:before{content:"";display:block;padding-bottom:100%}.smart-drop-zone-square .smart-drop-zone{position:absolute;top:0;bottom:0;left:0;right:0}.smart-drop-zone-square.smart-drop-zone-small{min-width:115px}.smart-drop-zone-small{position:relative;width:auto;display:inline-block}.smart-drop-zone-small .smart-drop-zone.smart-drag-over:after{font-size:1.25rem}.smart-drop-zone-images-only .smart-drop-zone{display:flex;align-items:center;flex-flow:column;justify-content:space-evenly}.smart-drop-zone-images-only .smart-drop-zone:after{height:auto}.smart-drop-zone-images-only .smart-drop-zone:before{display:block;content:"";background-image:url('dropable_zone_image.e2edea55ddfd43b9.svg');width:70px;height:55px;background-size:contain;background-position:center center}.smart-drop-zone[right-to-left],.smart-file[right-to-left],smart-file-upload[right-to-left]>.smart-container{direction:rtl}
.smart-filter-builder.smart-container,smart-filter-builder,smart-filter-builder>.smart-container{overflow:visible;position:relative}smart-filter-builder{display:inline-block;width:var(--smart-filter-builder-default-width);height:var(--smart-filter-builder-default-height);font-size:var(--smart-filter-builder-font-size);font-family:var(--smart-filter-builder-font-family);box-sizing:border-box;background-color:transparent}smart-filter-builder[disabled]{opacity:.55;cursor:default;pointer-events:none;-webkit-user-select:none;user-select:none}.smart-filter-builder.smart-container>.smart-inner-container,smart-filter-builder>.smart-container>.smart-inner-container{overflow:hidden;width:100%;height:100%;position:relative}.smart-filter-builder smart-menu[mode=dropDown]{width:auto;height:auto}.smart-filter-builder smart-scroll-viewer{width:100%;height:100%;position:relative}.smart-filter-builder .filter-builder-item{min-height:var(--smart-filter-builder-row-height);vertical-align:middle;margin-right:5px;border:none;border-radius:3px;background-color:#add8e6;display:inline-flex;align-content:center;justify-content:center;align-items:center;padding:5px;cursor:pointer}.smart-filter-builder .smart-filter-builder-icon{width:40px;height:100%;display:inline-block;font-weight:700;border-right:1px solid gray;margin-right:5px;padding:0 2px;text-align:center}.smart-filter-builder .smart-filter-builder-menu-item{height:100%;display:inline-block}.smart-filter-builder .smart-filter-add-btn,.smart-filter-builder .smart-filter-delete-btn{min-width:var(--smart-filter-builder-row-height);min-height:var(--smart-filter-builder-row-height);box-sizing:border-box;vertical-align:middle;display:inline-block;padding:5px 0;opacity:.3;font-size:16px}.smart-filter-builder .smart-filter-add-btn:after,.smart-filter-builder .smart-filter-delete-btn:after{content:"+";font-family:var(--smart-font-family-icon);display:inline-block;text-align:center;width:100%;vertical-align:middle;cursor:pointer;font-size:25px}.smart-filter-builder .smart-filter-add-btn:hover,.smart-filter-builder .smart-filter-delete-btn:hover{opacity:.6}.smart-filter-builder .smart-filter-add-btn:active,.smart-filter-builder .smart-filter-delete-btn:active{opacity:1}.smart-filter-builder .smart-filter-add-btn{color:var(--smart-background-color)}.smart-filter-builder .smart-filter-add-btn:after{font-weight:700}.smart-filter-builder .smart-filter-delete-btn:after{content:"\e81F";font-size:10px}.smart-filter-builder .smart-filter-value{min-width:100px;padding:0}.smart-filter-builder .smart-filter-value .smart-value-container{color:gray;width:100%;height:100%;display:inline-flex;align-content:center;justify-content:center;padding:5px;margin:0}.smart-filter-builder .smart-filter-value[edited]{padding:0;background-color:transparent}.smart-filter-builder .smart-filter-value[edited] .smart-value-container{display:none}.smart-filter-builder .smart-filter-group,.smart-filter-builder .smart-filter-group-condition,.smart-filter-builder .smart-filter-group-condition-container,.smart-filter-builder .smart-filter-group-operator{display:block;width:100%;box-sizing:border-box;white-space:nowrap}.smart-filter-builder .smart-filter-group-condition{margin-bottom:5px}.smart-filter-builder .smart-filter-group-condition-container{padding-left:30px}.smart-filter-builder .smart-filter-group-operation{min-width:50px}.smart-filter-builder .smart-content-container>.smart-filter-group>.smart-filter-group-operator{margin-left:30px}.smart-filter-builder .smart-content-container>.smart-filter-group>.smart-filter-group-operator .smart-filter-delete-btn{display:none}.smart-filter-builder .smart-editors-container{position:relative;pointer-events:none;height:20px}.smart-filter-builder .smart-editors-container[open]{min-width:100px;width:var(--smart-filter-builder-item-width);min-height:var(--smart-filter-builder-row-height)}.smart-filter-builder .smart-editors-container[open] .smart-check-box-editor{margin-left:auto;margin-right:auto;display:flex;align-self:center;justify-self:center;width:30px;height:30px}.smart-filter-builder .smart-editors-container[open] .smart-check-box-editor.smart-hidden,.smart-filter-builder .smart-hidden{display:none}.smart-filter-builder .smart-editors-container .smart-check-box-editor,.smart-filter-builder .smart-editors-container .smart-combo-box-editor,.smart-filter-builder .smart-editors-container .smart-custom-editor>*,.smart-filter-builder .smart-editors-container .smart-date-time-picker-editor,.smart-filter-builder .smart-editors-container .smart-drop-down-list-editor,.smart-filter-builder .smart-editors-container .smart-numeric-text-box-editor,.smart-filter-builder .smart-editors-container .smart-text-box-editor{pointer-events:all;width:100%}.smart-filter-builder .smart-filter-field-name,.smart-filter-builder .smart-filter-operation{min-width:100px}.smart-filter-builder .smart-selected-menu-item{background-color:#d3d3d3}.smart-filter-builder .smart-scrollable-outer-container{width:100%;height:100%}.smart-filter-builder .smart-filter-value:hover>*{color:initial;border-color:initial;background-color:initial}
smart-filter-panel{width:var(--smart-filter-panel-default-width);height:var(--smart-filter-panel-default-height)}smart-filter-panel.smart-element{padding:var(--smart-filter-panel-padding);border:none}.smart-filter-panel .smart-filter-panel-input:active,.smart-filter-panel .smart-filter-panel-input:focus{border-color:var(--smart-primary)}.smart-filter-panel smart-numeric-text-box.smart-filter-panel-input input{text-align:right}.smart-filter-panel smart-tree{width:100%;height:var(--smart-filter-panel-main-element-height);margin-bottom:var(--smart-filter-panel-vertical-offset)}.smart-filter-panel smart-tree.date-excel smart-tree-items-group[level="1"]>.smart-tree-item-label-container>.smart-tree-items-group-arrow,.smart-filter-panel smart-tree.standard-excel .smart-tree-items-group-arrow{visibility:hidden}.smart-filter-panel smart-tree.standard-excel smart-tree-item:not([level="1"])>.smart-tree-item-label-container{margin-left:-30px}.smart-filter-panel smart-menu-item[value=notand],.smart-filter-panel smart-menu-item[value=notor]{display:none}.smart-filter-panel .smart-filter-panel-label{margin-bottom:var(--smart-filter-panel-vertical-offset)}.smart-filter-panel .smart-filter-panel-list{width:100%;margin-bottom:var(--smart-filter-panel-vertical-offset)}.smart-filter-panel .smart-filter-panel-operator-list{width:80px;margin-bottom:var(--smart-filter-panel-vertical-offset)}.smart-filter-panel .smart-filter-panel-button-container{width:100%;min-height:33px;height:var(--smart-editor-height);display:flex;justify-content:space-around}.smart-filter-panel .smart-filter-panel-button-container>smart-button{width:80px}.smart-filter-panel .smart-filter-panel-button-container>smart-button button{padding:8px}.smart-filter-panel .smart-filter-panel-input{height:var(--smart-editor-height);width:100%;display:block;margin-bottom:var(--smart-filter-panel-vertical-offset)}.smart-filter-panel .smart-filter-panel-input.case-sensitive{width:calc(100% - 32px);display:inline-block}.smart-filter-panel[filter-type=string] .case-sensitive{display:block;margin-top:5px;margin-bottom:calc(var(--smart-filter-panel-vertical-offset) - 5px)}.smart-filter-panel span.case-sensitive.smart-icon{font-family:var(--smart-font-family-icon);font-size:16px;position:relative;margin-left:5px;padding:5px;border:1px solid transparent;border-radius:var(--smart-border-radius)}.smart-filter-panel span.case-sensitive.smart-icon.smart-icon-font-size:after{content:var(--smart-icon-fontsize)}.smart-filter-panel span.case-sensitive.smart-icon:hover{background:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover);border:1px solid var(--smart-ui-state-border-hover)}.smart-filter-panel span.case-sensitive.smart-icon.active,.smart-filter-panel span.case-sensitive.smart-icon:active{background:var(--smart-ui-state-active);color:var(--smart-ui-state-color-active);border:1px solid var(--smart-ui-state-border-active)}.smart-filter-panel-list-drop-down-menu.smart-input-drop-down-menu ul li span.smart-icon{font-family:var(--smart-font-family-icon);margin-right:5px;font-size:16px;position:relative;left:-3px}.smart-filter-panel-list-drop-down-menu.smart-input-drop-down-menu ul li span.smart-icon.smart-icon-contains:after{content:var(--smart-icon-contains)}.smart-filter-panel-list-drop-down-menu.smart-input-drop-down-menu ul li span.smart-icon.smart-icon-starts-with:after{content:var(--smart-icon-starts_with)}.smart-filter-panel-list-drop-down-menu.smart-input-drop-down-menu ul li span.smart-icon.smart-icon-ends-with:after{content:var(--smart-icon-ends_with)}.smart-filter-panel-list-drop-down-menu.smart-input-drop-down-menu ul li span.smart-icon.smart-icon-does-not-contain:after{content:var(--smart-icon-does_not_contain)}.smart-filter-panel-list-drop-down-menu.smart-input-drop-down-menu ul li span.smart-icon.smart-icon-equal:after{content:var(--smart-icon-equals)}.smart-filter-panel-list-drop-down-menu.smart-input-drop-down-menu ul li span.smart-icon.smart-icon-greater-than:after{content:var(--smart-icon-greater-than)}.smart-filter-panel-list-drop-down-menu.smart-input-drop-down-menu ul li span.smart-icon.smart-icon-greater-than-equal:after{content:var(--smart-icon-greater-than-equal)}.smart-filter-panel-list-drop-down-menu.smart-input-drop-down-menu ul li span.smart-icon.smart-icon-less-than:after{content:var(--smart-icon-less-than)}.smart-filter-panel-list-drop-down-menu.smart-input-drop-down-menu ul li span.smart-icon.smart-icon-less-than-equal:after{content:var(--smart-icon-less-than-equal)}.smart-filter-panel-list-drop-down-menu.smart-input-drop-down-menu ul li span.smart-icon.smart-icon-not-equal:after{content:var(--smart-icon-not-equal)}.smart-filter-panel-list-drop-down-menu.smart-input-drop-down-menu ul li span.smart-icon.smart-icon-between:after{content:var(--smart-icon-between)}.smart-filter-panel-list-drop-down-menu.smart-input-drop-down-menu ul li span.smart-icon.smart-icon-empty:after,.smart-filter-panel-list-drop-down-menu.smart-input-drop-down-menu ul li span.smart-icon.smart-icon-not-empty:after{content:var(--smart-icon-check-empty);position:relative;top:1px}.smart-filter-panel-list-drop-down-menu.smart-input-drop-down-menu ul li span.smart-icon.smart-icon-not-empty:before{content:var(--smart-icon-close);font-size:10px;left:calc(50% - 4px);top:calc(50% - 5px);position:absolute}.smart-filter-panel-list-drop-down-menu.smart-input-drop-down-menu ul li span.smart-icon.smart-icon-null:after{content:var(--smart-icon-circle-empty)}.smart-filter-panel-list-drop-down-menu.smart-input-drop-down-menu ul li span.smart-icon.smart-icon-not-null:after{content:var(--smart-icon-circle)}.smart-filter-panel[right-to-left]{direction:rtl}.smart-filter-panel[right-to-left] smart-tree.standard-excel smart-tree-item:not([level="1"])>.smart-tree-item-label-container{margin-right:-30px;margin-left:unset}
smart-gantt-chart{display:block;width:var(--smart-gantt-chart-default-width);height:var(--smart-gantt-chart-default-height);contain:content}.smart-gantt-chart .smart-splitter,smart-gantt-chart .smart-splitter{width:100%;height:100%;border:none;border-radius:initial}.smart-gantt-chart smart-table,smart-gantt-chart smart-table{width:100%;height:100%;--smart-table-row-height:var(--smart-gantt-chart-task-default-height);--smart-table-header-footer-height:var(--smart-gantt-chart-filter-row-height)}.smart-gantt-chart.smart-container,smart-gantt-chart>.smart-container{overflow:hidden;--smart-scroll-bar-default-height:100%;--smart-scroll-bar-default-width:100%;--smart-gantt-chart-task-timeline-content-height:calc(2 * var(--smart-gantt-chart-task-default-height));--smart-gantt-chart-task-splitter-bar-fit-size:var(--smart-gantt-chart-task-timeline-content-height);--smart-gantt-chart-resource-splitter-bar-fit-size:calc(var(--smart-gantt-chart-resource-timeline-content-height) + var(--smart-gantt-chart-task-default-height));--smart-gantt-chart-baseline-size:calc(var(--smart-gantt-chart-task-default-height) / var(--smart-gantt-chart-baseline-proportion))}.smart-gantt-chart.smart-container:not(.hscroll),smart-gantt-chart>.smart-container:not(.hscroll){margin-bottom:-1px}.smart-gantt-chart.smart-container:not(.hscroll)[show-resource-panel],smart-gantt-chart>.smart-container:not(.hscroll)[show-resource-panel]{margin-bottom:-4px}.smart-gantt-chart .smart-task-splitter>.smart-resize-trigger-container,.smart-gantt-chart.smart-container .smart-splitter>.smart-resize-trigger-container,smart-gantt-chart>.smart-container .smart-splitter>.smart-resize-trigger-container{margin-bottom:-2px}.smart-gantt-chart smart-splitter{--smart-splitter-bar-size:5px}.smart-gantt-chart .smart-task-splitter smart-splitter-item>.smart-container,.smart-gantt-chart .smart-task-splitter smart-splitter-item>.smart-container>.smart-content{overflow:hidden}.smart-gantt-chart smart-splitter-bar .smart-splitter-resize-button{display:none}.smart-gantt-chart smart-scroll-viewer{width:100%;height:100%;border:none;padding:initial}.smart-gantt-chart .smart-table{--smart-table-cell-padding:var(--smart-gantt-chart-task-bar-fill-padding)}.smart-gantt-chart .smart-table.smart-task-table{--smart-table-column-header-height:calc(2 * var(--smart-gantt-chart-task-default-height) - calc(var(--smart-border-width) / 2))}.smart-gantt-chart .smart-table.smart-resource-table{--smart-table-column-header-height:calc(var(--smart-gantt-chart-task-default-height) - calc(var(--smart-border-width) / 2))}.smart-gantt-chart .smart-table>.smart-container{border:initial}.smart-gantt-chart .smart-table[hide-selection-column] tr td{background:inherit}.smart-gantt-chart .smart-table[hide-selection-column] tr[aria-selected=true] td{background:initial}.smart-gantt-chart .smart-table thead tr th,.smart-gantt-chart .smart-table thead tr th.smart-table-select-all.freeze-near,.smart-gantt-chart .smart-timeline-view-cells:empty,.smart-gantt-chart .smart-timeline-view-details:empty{background-color:var(--smart-surface);color:var(--smart-surface-color)}.smart-gantt-chart .smart-table .smart-table-virtualization-container .smart-scroll-viewer-content-container{display:block}.smart-gantt-chart .smart-table td.tree-cell>div .hierarchy-arrow::after{display:initial}.smart-gantt-chart .smart-table td div,.smart-gantt-chart .smart-table td span{line-height:inherit}.smart-gantt-chart .smart-table td.tree-cell>div div:nth-child(2){line-height:1rem}.smart-gantt-chart .smart-table thead tr th{border-bottom:var(--smart-border-width) solid var(--smart-border);font-size:var(--smart-font-size)}.smart-gantt-chart .smart-table tbody tr{cursor:pointer;white-space:nowrap;text-overflow:ellipsis;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.smart-gantt-chart .smart-table tbody tr td{line-height:100%}.smart-gantt-chart .smart-table tbody tr[unused] td{border:initial}.smart-gantt-chart .smart-table tbody tr[focus]{border-color:var(--smart-ui-state-border-focus);background-color:var(--smart-ui-state-focus);color:var(--smart-ui-state-color-focus)}.smart-gantt-chart .smart-table tbody tr[hover]{border-color:var(--smart-ui-state-border-hover);background-color:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover)}.smart-gantt-chart .smart-table tbody tr[aria-selected=true]{border-color:var(--smart-ui-state-border-selected);background-color:var(--smart-ui-state-selected);color:var(--smart-ui-state-color-selected)}.smart-gantt-chart .smart-table td{border-bottom:var(--smart-border-width) solid var(--smart-border);border-top:none}.smart-gantt-chart .smart-table td[data-field=overdue]::after{font-family:var(--smart-font-family-icon);font-size:1.25em;color:var(--smart-gantt-chart-deadline-color);position:absolute;left:0;top:0;height:100%;display:flex;align-items:center;pointer-events:none;padding-left:var(--smart-table-cell-padding);padding-right:var(--smart-table-cell-padding)}.smart-gantt-chart .smart-table td[data-field=overdue][overdue]::after{content:var(--smart-gantt-chart-deadline-icon)}.smart-gantt-chart .smart-table[freeze-footer] .smart-table-container:focus td[focus]:after{height:100%}@-moz-document url-prefix(){.smart-gantt-chart .smart-table.smart-task-table{--smart-table-column-header-height:calc(2 * var(--smart-gantt-chart-task-default-height))}.smart-gantt-chart .smart-table.smart-resource-table{--smart-table-column-header-height:var(--smart-gantt-chart-task-default-height)}.smart-gantt-chart .smart-table[freeze-footer] .smart-table-container:focus td[focus]:after{top:0}}.smart-gantt-chart[group-by-resources] .smart-table tbody tr[role=group]{background:var(--smart-background);color:var(--smart-background-color);cursor:initial}.smart-gantt-chart[group-by-resources] .smart-table tbody tr[role=group] .selection-checkbox{background:var(--smart-background);color:var(--smart-background-color);cursor:initial;border-color:var(--smart-border)}.smart-gantt-chart[group-by-resources] .smart-table tbody tr[role=group] .selection-checkbox::after,.smart-gantt-chart[group-by-resources] .smart-table tbody tr[role=group] .selection-checkbox::before{content:initial}.smart-gantt-chart[resource-filtering] .smart-resource-splitter .smart-timeline-header::before,.smart-gantt-chart[task-filtering] .smart-task-splitter .smart-timeline-header::before,.smart-gantt-chart[task-filtering][filter-row] .smart-task-splitter .smart-timeline-header::after{content:""}.smart-gantt-chart.smart-container,.smart-gantt-chart>.smart-container{position:relative}.smart-gantt-chart.smart-container.hscroll>smart-splitter,.smart-gantt-chart>.smart-container.hscroll>smart-splitter{height:calc(100% - var(--smart-scroll-bar-size))}.smart-gantt-chart.smart-container>.smart-popup-window-modal,.smart-gantt-chart>.smart-container>.smart-popup-window-modal{position:absolute;opacity:.5;background-color:var(--smart-disabled);top:0;left:0;width:100%;min-height:100%;z-index:calc(var(--smart-editor-drop-down-z-index) - 1)}.smart-gantt-chart .smart-splitter>.smart-container>smart-splitter-bar>.smart-container{transform:scaleX(5);transform-origin:left}.smart-gantt-chart .smart-splitter:not([dragged]) smart-splitter-bar.smart-element{background-color:var(--smart-border)}.smart-gantt-chart .smart-splitter[orientation=horizontal]>.smart-container>smart-splitter-bar>.smart-container{transform:scaleY(2.5);transform-origin:center}.smart-gantt-chart .smart-timeline{user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;text-align:center;overflow:hidden;height:100%}.smart-gantt-chart .smart-timeline[task-bar-hovered],.smart-gantt-chart .smart-timeline[task-bar-hovered] .smart-timeline-task.project .smart-timeline-task-fill,.smart-gantt-chart .smart-timeline[task-bar-hovered] .smart-timeline-task.task .smart-timeline-task-fill{cursor:e-resize}.smart-gantt-chart[task-filtering][hide-timeline-header-details] .smart-task-splitter .smart-timeline-view-cells .smart-timeline-view-cell{border-top:initial}.smart-gantt-chart[task-filtering][hide-timeline-header-details] .smart-task-splitter .smart-timeline-content-container{height:calc(100% - var(--smart-gantt-chart-task-default-height) - var(--smart-gantt-chart-filter-row-height))}.smart-gantt-chart[task-filtering] .smart-task-splitter .smart-timeline-content-container{height:calc(100% - 2 * var(--smart-gantt-chart-task-default-height) - var(--smart-gantt-chart-filter-row-height))}.smart-gantt-chart[resource-filtering] .smart-resource-splitter{--smart-splitter-bar-fit-size:calc(var(--smart-gantt-chart-resource-splitter-bar-fit-size) + var(--smart-gantt-chart-filter-row-height))}.smart-gantt-chart[task-filtering][filter-row] .smart-task-splitter .smart-timeline-header::before{content:none}.smart-gantt-chart .smart-timeline-header{position:relative;overflow:hidden;width:100%}.smart-gantt-chart .smart-timeline-header::after,.smart-gantt-chart .smart-timeline-header::before{width:100%;height:var(--smart-gantt-chart-filter-row-height);display:block;background:var(--smart-surface);border-bottom:var(--smart-border) solid var(--smart-border-width);box-sizing:border-box;position:sticky;left:0}.smart-gantt-chart .smart-timeline-header .smart-timeline-header-content{width:100%}.smart-gantt-chart .smart-timeline-content-container{width:100%;height:calc(100% - 2 * var(--smart-gantt-chart-task-default-height));position:relative;overflow:hidden}.smart-gantt-chart .smart-timeline-content{width:100%;height:100%;position:relative}.smart-gantt-chart .smart-timeline-content:empty:after{content:"No Items";height:var(--smart-gantt-chart-task-default-height);display:flex;align-items:center;justify-content:center;pointer-events:none;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.smart-gantt-chart .smart-timeline-content .smart-timeline-task:not(.milestone)[disable-resize] .smart-task-container:after,.smart-gantt-chart .smart-timeline-content .smart-timeline-task:not(.milestone)[disable-resize]:after{content:none}.smart-gantt-chart .smart-timeline-container{display:inline-block;position:relative;width:100%;height:100%}.smart-gantt-chart .smart-timeline-scroll-bar{overflow:visible;position:relative;height:calc(var(--smart-scroll-bar-size));width:100%}.smart-gantt-chart .smart-timeline-scroll-bar:after{position:absolute;content:"";width:100%;height:var(--smart-scroll-bar-size);background:var(--smart-scroll-bar-background);left:100%;top:0}.smart-gantt-chart .smart-timeline-scroll-bar.bottom-corner{width:calc(100% - var(--smart-scroll-bar-size))}.smart-gantt-chart .smart-timeline-scroll-bar.smart-resource-scroll-bar[orientation=vertical]{height:calc(100% - var(--smart-gantt-chart-task-default-height));top:var(--smart-gantt-chart-task-default-height);z-index:1}.smart-gantt-chart .smart-timeline-scroll-bar.smart-resource-scroll-bar[orientation=vertical]:before{top:calc(-1 * var(--smart-gantt-chart-task-default-height));height:var(--smart-gantt-chart-task-default-height)}.smart-gantt-chart .smart-timeline-scroll-bar[orientation=vertical]{position:absolute;right:0;top:calc(2 * var(--smart-gantt-chart-task-default-height));height:calc(100% - 2 * var(--smart-gantt-chart-task-default-height));width:calc(var(--smart-scroll-bar-size))}.smart-gantt-chart .smart-timeline-scroll-bar[orientation=vertical]:before{position:absolute;width:100%;background:var(--smart-scroll-bar-background);content:"";left:0;top:calc(-2 * var(--smart-gantt-chart-task-default-height));height:calc(2 * var(--smart-gantt-chart-task-default-height));border:1px solid var(--smart-border);border-top:none;box-sizing:border-box}.smart-gantt-chart[show-baseline] .smart-timeline-task.milestone .smart-task-container::after,.smart-gantt-chart[show-baseline] .smart-timeline-task.milestone .smart-task-container::before{border-top:calc((var(--smart-gantt-chart-task-default-height) - var(--smart-gantt-chart-baseline-size))/ 2) solid transparent;border-bottom:calc((var(--smart-gantt-chart-task-default-height) - var(--smart-gantt-chart-baseline-size))/ 2) solid transparent}.smart-gantt-chart .smart-timeline-scroll-bar[orientation=vertical][disabled]:after{left:0;height:100%}.smart-gantt-chart[show-baseline] .smart-timeline-task{height:calc(var(--smart-gantt-chart-task-default-height) - var(--smart-gantt-chart-baseline-size))}.smart-gantt-chart[show-baseline] .smart-timeline-task .smart-task-container{padding-bottom:calc(var(--smart-gantt-chart-task-bar-fill-padding)/ 2)}.smart-gantt-chart[show-baseline] .smart-timeline-task.milestone .smart-task-container::after{border-left:calc((var(--smart-gantt-chart-task-default-height) - var(--smart-gantt-chart-baseline-size))/ 2) solid var(--smart-gantt-chart-milestone-color)}.smart-gantt-chart[show-baseline] .smart-timeline-task.milestone .smart-task-container::before{left:calc(-1 * (var(--smart-gantt-chart-task-default-height) - var(--smart-gantt-chart-baseline-size))/ 2);border-right:calc((var(--smart-gantt-chart-task-default-height) - var(--smart-gantt-chart-baseline-size))/ 2) solid var(--smart-gantt-chart-milestone-color)}.smart-gantt-chart[show-baseline] .smart-task-connection-point{top:calc((var(--smart-gantt-chart-task-default-height) - var(--smart-gantt-chart-baseline-size))/ 2)}.smart-gantt-chart[show-baseline] .smart-task-connection-point.end,.smart-gantt-chart[show-baseline] .smart-task-connection-point.start{width:calc(var(--smart-gantt-chart-task-default-height)/ 3);height:calc(var(--smart-gantt-chart-task-default-height)/ 3)}.smart-gantt-chart[show-baseline] .smart-task-connection-point.end{right:calc(-1 * var(--smart-gantt-chart-task-default-height)/ 2)}.smart-gantt-chart[show-baseline] .smart-task-connection-point.start{left:calc(-1 * var(--smart-gantt-chart-task-default-height)/ 2)}.smart-gantt-chart .smart-timeline-task{position:absolute;height:var(--smart-gantt-chart-task-default-height)}.smart-gantt-chart .smart-timeline-task:empty{height:0}.smart-gantt-chart .smart-timeline-task .smart-timeline-task-progress-thumb:after{content:"";border-right:var(--smart-gantt-chart-timeline-task-progress-thumb-size) solid transparent;border-left:var(--smart-gantt-chart-timeline-task-progress-thumb-size) solid transparent;border-bottom:var(--smart-gantt-chart-timeline-task-progress-thumb-size) solid var(--smart-gantt-chart-task-thumb-color);box-shadow:0 1px 0 0 var(--smart-gantt-chart-task-thumb-color);position:absolute;bottom:calc(-1 * var(--smart-gantt-chart-task-bar-fill-padding)/ 2);left:calc(-1 * var(--smart-gantt-chart-timeline-task-progress-thumb-size));z-index:1}.smart-gantt-chart .smart-timeline-view-cells .smart-timeline-view-cell:not(:first-of-type),.smart-gantt-chart .smart-timeline-view-details .smart-timeline-view-cell:not(:first-of-type){border-left-color:transparent}.smart-gantt-chart .smart-timeline-task:not(.milestone) .smart-task-container:after,.smart-gantt-chart .smart-timeline-task:not(.milestone):after{width:var(--smart-gantt-chart-timeline-task-resize-indicator-width);height:var(--smart-gantt-chart-timeline-task-resize-indicator-width);position:absolute;top:calc(50% - var(--smart-gantt-chart-timeline-task-resize-indicator-width)/ 2);background-color:var(--smart-gantt-chart-timeline-task-resize-indicator-color);box-shadow:0 0 0 1px var(--smart-gantt-chart-timeline-task-resize-indicator-border-color);transform:scale(0);pointer-events:none}.smart-gantt-chart .smart-timeline-task.task .smart-timeline-task-label{color:var(--smart-gantt-chart-task-label-color)}.smart-gantt-chart .smart-timeline-task.task[selected] .smart-timeline-task-label{color:var(--smart-gantt-chart-task-label-color-selected)}.smart-gantt-chart .smart-timeline-task.project .smart-timeline-task-label{color:var(--smart-gantt-chart-project-label-color)}.smart-gantt-chart .smart-timeline-task.project[selected] .smart-timeline-task-label{color:var(--smart-gantt-chart-project-label-color-selected)}.smart-gantt-chart .smart-timeline-task.project .smart-task-segments::before{content:initial}.smart-gantt-chart .smart-timeline-task:not(.milestone){min-width:var(--smart-gantt-chart-timeline-task-min-width)}.smart-gantt-chart .smart-timeline-task:not(.milestone):after{content:"";left:calc(100% - var(--smart-gantt-chart-timeline-task-resize-indicator-width)/ 2)}.smart-gantt-chart .smart-timeline-task:not(.milestone) .smart-task-container:after{content:"";left:calc(-1 * var(--smart-gantt-chart-timeline-task-resize-indicator-width)/ 2)}.smart-gantt-chart .smart-timeline-task[selected]:not([disable-resize]) .smart-task-container::after,.smart-gantt-chart .smart-timeline-task[selected]:not([disable-resize]):after,.smart-gantt-chart .smart-timeline-task[selected]:not([resource-group]) .smart-timeline-task-progress-thumb{transform:scale(1)}.smart-gantt-chart .smart-timeline-task[selected]:not(.milestone) .smart-timeline-task-fill{box-shadow:var(--smart-elevation-2)}.smart-gantt-chart .smart-timeline-task[connection-point=end] .smart-task-connection-feedback{left:100%}.smart-gantt-chart .smart-timeline-task[disable-drag]{cursor:pointer}.smart-gantt-chart .smart-timeline-task[resource-group]{cursor:initial}.smart-gantt-chart .smart-timeline-task .smart-task-segment,.smart-gantt-chart .smart-timeline-task .smart-task-segments{width:100%;height:100%}.smart-gantt-chart .smart-timeline-task .smart-task-segments{position:relative}.smart-gantt-chart .smart-timeline-task .smart-task-segments::before{pointer-events:none;content:"";width:100%;border-bottom:var(--smart-gantt-chart-segment-link-size) dashed var(--smart-gantt-chart-segment-link-color);box-sizing:border-box;position:absolute;top:calc(50% - var(--smart-gantt-chart-segment-link-size)/ 2);left:0}.smart-gantt-chart .smart-timeline-task .smart-task-segment{position:absolute;min-width:var(--smart-gantt-chart-timeline-task-min-width)}.smart-gantt-chart .smart-timeline-task .smart-task-segment[deadline]::after{content:attr(deadline);position:absolute;height:100%;top:0;left:100%;white-space:nowrap;display:flex;align-items:center;margin-inline-start:10px;font-size:.8em;font-weight:600;pointer-events:none}.smart-gantt-chart .smart-timeline-view-cells:empty:after,.smart-gantt-chart .smart-timeline-view-details:empty:after{content:var(--smart-gantt-chart-header-placeholder)}.smart-gantt-chart .smart-timeline-task-progress{width:100%;height:100%;transform-origin:left;position:relative;pointer-events:none}.smart-gantt-chart .smart-timeline-task-progress-thumb{position:absolute;right:0;cursor:e-resize;transform:scale(0);transform-origin:left bottom}.smart-gantt-chart .smart-timeline-task-fill{width:100%;height:100%;border-radius:var(--smart-gantt-chart-task-fill-border-radius);overflow:hidden}.smart-gantt-chart .smart-timeline-task-label{position:absolute;width:100%;height:100%;left:0;top:0;display:flex;align-items:center;justify-content:center;padding:var(--smart-gantt-chart-task-label-padding);font-size:inherit;font-family:inherit;pointer-events:none;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.smart-gantt-chart .smart-timeline-task-label>div{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.smart-gantt-chart .smart-timeline-task-cells{position:relative}.smart-gantt-chart .smart-timeline-view-details{display:flex;width:100%;height:var(--smart-gantt-chart-task-default-height)}.smart-gantt-chart .smart-timeline-view-details:empty{user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;border-bottom:var(--smart-border-width) solid var(--smart-border);display:flex;justify-content:center;align-items:center}.smart-gantt-chart .smart-timeline-view-details .smart-timeline-view-cell{min-width:initial;border-top:none}.smart-gantt-chart .smart-timeline-view-details .smart-timeline-view-cell.middle{border-top:1px solid var(--smart-border);border-bottom-color:var(--smart-border)}.smart-gantt-chart .smart-timeline-view-cells{display:flex;width:100%;height:var(--smart-gantt-chart-task-default-height)}.smart-gantt-chart .smart-timeline-view-cells:empty{user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;border-bottom:var(--smart-border-width) solid var(--smart-border);display:flex;justify-content:center;align-items:center}.smart-gantt-chart .smart-timeline-view-cells .smart-timeline-view-cell:last-of-type:after{border-right-color:transparent}.smart-gantt-chart .smart-timeline-view-cells .smart-timeline-view-cell[weekend]{background:var(--smart-gantt-chart-timeline-weekend-color)}.smart-gantt-chart .smart-timeline-view-cells .smart-timeline-view-cell[nonworking]{background:var(--smart-gantt-chart-timeline-nonworking-color)}.smart-gantt-chart .smart-timeline-view-cells div{border-bottom-color:var(--smart-border)}.smart-gantt-chart .smart-timeline-view-cell{position:absolute;display:flex;justify-content:center;align-items:center;background-color:var(--smart-surface);color:var(--smart-surface-color);border-top:var(--smart-border-width) solid var(--smart-border);border-bottom:var(--smart-border-width) solid var(--smart-border);border-left:var(--smart-border-width) solid var(--smart-border);border-right:var(--smart-border-width) solid var(--smart-border);text-overflow:ellipsis;white-space:nowrap;padding:var(--smart-gantt-chart-task-bar-fill-padding);border-bottom-color:transparent;height:var(--smart-gantt-chart-task-default-height);min-width:var(--smart-gantt-chart-timeline-cell-min-size);width:var(--smart-gantt-chart-timeline-cell-size)}.smart-gantt-chart .smart-timeline-view-cell:first-of-type{border-left:none}.smart-gantt-chart .smart-timeline-view-cell:last-of-type{border-right:none}.smart-gantt-chart .smart-timeline-view-cell>div{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;pointer-events:none}.smart-gantt-chart .smart-timeline-cells-container{width:100%}.smart-gantt-chart .smart-timeline-deadlines-container:empty,.smart-gantt-chart .smart-timeline-indicators-container:empty,.smart-gantt-chart .smart-timeline-markers-container:empty{display:none}.smart-gantt-chart .smart-gantt-chart-date-marker{height:100%;top:0;position:absolute;border-left:var(--smart-gantt-chart-date-marker-width) dashed var(--smart-gantt-chart-date-marker-color);width:0;pointer-events:none;background:var(--smart-gantt-chart-date-marker-background);color:var(--smart-gantt-chart-date-marker-color)}.smart-gantt-chart .smart-gantt-chart-date-marker .smart-gantt-chart-marker-label{position:sticky;top:var(--smart-gantt-chart-date-marker-v-offset);height:var(--smart-gantt-chart-date-marker-height);background:inherit;color:inherit;box-sizing:border-box;white-space:nowrap;display:inline-flex;align-items:center;border-radius:var(--smart-gantt-chart-task-fill-border-radius);padding:5px;margin-inline-start:var(--smart-gantt-chart-date-marker-h-offset)}.smart-gantt-chart .smart-gantt-chart-date-marker .smart-gantt-chart-marker-label::before{content:"";position:absolute;border-top:calc(var(--smart-gantt-chart-date-marker-height)/ 2) solid transparent;border-bottom:calc(var(--smart-gantt-chart-date-marker-height)/ 2) solid transparent;border-right:calc(var(--smart-gantt-chart-date-marker-height)/ 2) solid var(--smart-gantt-chart-date-marker-background);box-sizing:inherit;right:100%}.smart-gantt-chart .smart-gantt-chart-task-indicator{position:absolute;height:var(--smart-gantt-chart-task-default-height);display:flex;align-items:center;white-space:nowrap}.smart-gantt-chart .smart-gantt-chart-task-indicator.icon::before{content:var(--smart-gantt-chart-indicator-icon);font-family:var(--smart-font-family-icon);font-size:var(--smart-font-size);margin-inline-end:2.5px}.smart-gantt-chart .smart-gantt-chart-task-deadline{position:absolute;height:var(--smart-gantt-chart-task-default-height);display:inline-flex;align-items:center;justify-content:center;width:1px}.smart-gantt-chart .smart-gantt-chart-task-deadline::before{content:var(--smart-gantt-chart-deadline-icon);font-family:var(--smart-font-family-icon);font-size:1.25em;color:var(--smart-gantt-chart-deadline-color)}.smart-gantt-chart .smart-gantt-chart-task-baseline{position:absolute;background:var(--smart-gantt-chart-baseline-background);background-clip:content-box;border-top:calc(var(--smart-gantt-chart-task-bar-fill-padding)/ 2) solid transparent;border-bottom:var(--smart-gantt-chart-task-bar-fill-padding) solid transparent;height:var(--smart-gantt-chart-baseline-size);max-height:var(--smart-gantt-chart-task-default-height);transform:translateY(calc(var(--smart-gantt-chart-task-default-height) - var(--smart-gantt-chart-baseline-size)));pointer-events:none}.smart-gantt-chart .smart-gantt-chart-time-indicators-container{pointer-events:none}.smart-gantt-chart .smart-gantt-chart-time-indicators-container .smart-gantt-chart-current-time-indicator{position:absolute;height:100%;width:var(--smart-gantt-chart-current-time-indicator-size);background:var(--smart-gantt-chart-current-time-indicator-background)}.smart-gantt-chart .smart-gantt-chart-time-indicators-container .smart-gantt-chart-current-time-indicator:before{position:absolute;left:calc(-1 * var(--smart-gantt-chart-current-time-indicator-arrow-size) + var(--smart-gantt-chart-current-time-indicator-size)/ 2);border-right:var(--smart-gantt-chart-current-time-indicator-arrow-size) solid transparent;border-left:var(--smart-gantt-chart-current-time-indicator-arrow-size) solid transparent;border-top:var(--smart-gantt-chart-current-time-indicator-arrow-size) solid var(--smart-gantt-chart-current-time-indicator-background)}.smart-gantt-chart .smart-gantt-chart-time-indicators-container .smart-gantt-chart-current-time-shader{position:absolute;height:100%;background:var(--smart-gantt-chart-shader-background)}.smart-gantt-chart[current-time-indicator] .smart-gantt-chart-current-time-indicator::before{content:""}.smart-gantt-chart[current-time-indicator] .smart-timeline-view-cell[current]{border-bottom:var(--smart-gantt-chart-current-time-indicator-header-size) solid var(--smart-gantt-chart-current-time-indicator-background)}.smart-gantt-chart .smart-timeline-row{display:flex;border-width:var(--smart-border-width);border-style:solid;border-top:initial;border-bottom-color:var(--smart-border);background:var(--smart-gantt-chart-timeline-task-background-color);border-left:none;border-right:none;position:absolute;left:0;width:inherit;height:var(--smart-gantt-chart-task-default-height)}.smart-gantt-chart .smart-timeline-row:first-of-type{border-left-color:var(--smart-border)}.smart-gantt-chart .smart-timeline-row:last-of-type{border-right-color:var(--smart-border)}.smart-gantt-chart .smart-timeline-row[hover]{background:var(--smart-ui-state-hover)}.smart-gantt-chart .smart-timeline-row[selected]{background:var(--smart-ui-state-selected)}.smart-gantt-chart .smart-timeline-row .smart-timeline-cell{position:absolute;padding:var(--smart-gantt-chart-task-bar-fill-padding);height:100%;min-width:var(--smart-gantt-chart-timeline-cell-min-size);width:var(--smart-gantt-chart-timeline-cell-size)}.smart-gantt-chart .smart-timeline-row .smart-timeline-cell:not(:last-of-type){border-right:var(--smart-border-width) solid var(--smart-border)}.smart-gantt-chart .smart-timeline-row:not([hover]):not([selected]) .smart-timeline-cell[weekend]{background:var(--smart-gantt-chart-timeline-weekend-color)}.smart-gantt-chart .smart-timeline-row:not([hover]):not([selected]) .smart-timeline-cell[nonworking]{background:var(--smart-gantt-chart-timeline-nonworking-color)}.smart-gantt-chart .smart-resource-splitter{--smart-splitter-bar-fit-size:var(--smart-gantt-chart-resource-splitter-bar-fit-size)}.smart-gantt-chart .smart-resource-splitter .smart-timeline-content{overflow:hidden;position:relative;height:calc(100% - var(--smart-gantt-chart-task-default-height))}.smart-gantt-chart .smart-resource-splitter .smart-timeline-view-cells .smart-timeline-view-cell{border-top:none}.smart-gantt-chart .smart-resource-splitter .smart-timeline-row .smart-timeline-cell{padding:initial}.smart-gantt-chart .smart-resource-splitter-item>.smart-container>.smart-content{overflow:hidden}.smart-gantt-chart .smart-resource-splitter-item .smart-timeline-view-cells .smart-timeline-view-cell:after{height:var(--smart-gantt-chart-resource-timeline-content-height)}.smart-gantt-chart .smart-resource-splitter-item[show-header] .smart-resource-splitter{height:calc(100% - var(--smart-gantt-chart-header-height))}.smart-gantt-chart .smart-resource-splitter-item .smart-timeline-cell:first-of-type .smart-resource-timeline-view-cell{width:100%;left:0}.smart-gantt-chart .smart-resource-panel-header{width:100%;justify-content:center;align-items:center;height:var(--smart-gantt-chart-header-height);background:var(--smart-surface);border-bottom:var(--smart-border) solid var(--smart-border-width)}.smart-gantt-chart .smart-resource-panel-header:empty{display:none}.smart-gantt-chart .smart-resource-timeline-view-cell{position:absolute;background:var(--smart-gantt-chart-timeline-task-background-color);bottom:0;border:none;width:calc(100% + var(--smart-border-width));left:calc(-1 * var(--smart-border-width));height:100%;display:flex;justify-content:center;align-items:center}.smart-gantt-chart .smart-resource-timeline-view-cell:after{content:"";display:flex;justify-content:center;align-items:center;overflow:hidden;font-size:var(--smart-font-size);font-family:var(--smart-font-family-icon);box-sizing:border-box}.smart-gantt-chart .smart-task-panel-header:empty,.smart-gantt-chart[hide-timeline-header-details] .smart-timeline-view-details{display:none}.smart-gantt-chart .smart-resource-timeline-view-cell[load]:after{content:attr(load);transform:scale(1) rotate(0)}.smart-gantt-chart .smart-resource-timeline-view-cell.warning[load]:after{background:var(--smart-error);color:var(--smart-error-color);border-radius:5px}.smart-gantt-chart .smart-task-container{position:relative;width:100%;height:100%;box-sizing:border-box;padding-top:var(--smart-gantt-chart-task-bar-fill-padding);padding-bottom:var(--smart-gantt-chart-task-bar-fill-padding)}.smart-gantt-chart .smart-task-panel-header{width:100%;justify-content:center;align-items:center;height:var(--smart-gantt-chart-header-height);background:var(--smart-surface)}.smart-gantt-chart .smart-task-splitter{--smart-splitter-bar-fit-size:var(--smart-gantt-chart-task-splitter-bar-fit-size)}.smart-gantt-chart .smart-task-splitter-item>.smart-container>.smart-content{overflow:hidden}.smart-gantt-chart .smart-task-splitter-item[show-header] .smart-task-panel-header{border-bottom:var(--smart-border-width) solid var(--smart-border)}.smart-gantt-chart .smart-task-splitter-item[show-header] .smart-task-splitter{height:calc(100% - var(--smart-gantt-chart-header-height))}.smart-gantt-chart .smart-task-splitter-item[show-header] .smart-timeline-view-details .smart-timeline-view-cell{border-top:initial}.smart-gantt-chart .smart-task-connection{cursor:pointer;position:absolute;border:var(--smart-gantt-chart-timeline-task-connection-width) var(--smart-gantt-chart-timeline-task-connection-style) var(--smart-gantt-chart-timeline-task-connection-color);top:50%}.smart-gantt-chart .smart-task-connection:after{content:"";width:100%;height:100%;border:inherit inherit transparent;position:absolute;border-width:10px;top:50%;left:50%;transform:translate(-50%,-50%)}.smart-gantt-chart .smart-task-connection[arrow-direction]:before{content:"";position:absolute;left:calc(100% - var(--smart-gantt-chart-timeline-task-connection-arrow-width) + 1px);top:calc(-1 * var(--smart-gantt-chart-timeline-task-connection-arrow-width));border-top:var(--smart-gantt-chart-timeline-task-connection-arrow-width) var(--smart-gantt-chart-timeline-task-connection-arrow-type) transparent;border-bottom:var(--smart-gantt-chart-timeline-task-connection-arrow-width) var(--smart-gantt-chart-timeline-task-connection-arrow-type) transparent;border-left:var(--smart-gantt-chart-timeline-task-connection-arrow-width) var(--smart-gantt-chart-timeline-task-connection-arrow-type) var(--smart-gantt-chart-timeline-task-connection-feedback-color)}.smart-gantt-chart .smart-task-connection[arrow-direction=left]:before{left:calc(-1 * var(--smart-gantt-chart-timeline-task-connection-arrow-width)/ 2 + 1px);border-right:var(--smart-gantt-chart-timeline-task-connection-arrow-width) var(--smart-gantt-chart-timeline-task-connection-arrow-type) var(--smart-gantt-chart-timeline-task-connection-feedback-color);border-left:none}.smart-gantt-chart .smart-task-connection[hover]{border-color:var(--smart-gantt-chart-timeline-task-connection-color-hover);box-shadow:0 0 2.5px 0 var(--smart-gantt-chart-timeline-task-connection-color)}.smart-gantt-chart .smart-task-connection[hover]:before{border-left-color:var(--smart-gantt-chart-timeline-task-connection-color-hover);border-right-color:var(--smart-gantt-chart-timeline-task-connection-color-hover)}.smart-gantt-chart .smart-task-connection-point{cursor:pointer;position:absolute;border:1px solid #A9A9A9;border-radius:50%;width:calc(var(--smart-gantt-chart-task-default-height)/ 2);height:calc(var(--smart-gantt-chart-task-default-height)/ 2);top:calc(var(--smart-gantt-chart-task-default-height)/ 2);transform:scale(0);background-color:#DEDEDE}.smart-gantt-chart .smart-task-connection-point.start{left:calc(-1 * var(--smart-gantt-chart-task-default-height)/ 1.5)}.smart-gantt-chart .smart-task-connection-point.end{right:calc(-1 * var(--smart-gantt-chart-task-default-height)/ 1.5)}.smart-gantt-chart .smart-task-connection-feedback{position:absolute;top:50%;transform-origin:left;border:var(--smart-gantt-chart-timeline-task-connection-feedback-width) var(--smart-gantt-chart-timeline-task-connection-feedback-style) var(--smart-gantt-chart-timeline-task-connection-feedback-color);z-index:1;pointer-events:none}.smart-gantt-chart .smart-task-connection-feedback:before{content:"";position:absolute;left:calc(100% - var(--smart-gantt-chart-timeline-task-connection-arrow-width) + 1px);top:calc(-1 * var(--smart-gantt-chart-timeline-task-connection-arrow-width));border-top:var(--smart-gantt-chart-timeline-task-connection-arrow-width) var(--smart-gantt-chart-timeline-task-connection-arrow-type) transparent;border-bottom:var(--smart-gantt-chart-timeline-task-connection-arrow-width) var(--smart-gantt-chart-timeline-task-connection-arrow-type) transparent;border-left:var(--smart-gantt-chart-timeline-task-connection-arrow-width) var(--smart-gantt-chart-timeline-task-connection-arrow-type) var(--smart-gantt-chart-timeline-task-connection-feedback-color)}.smart-gantt-chart .milestone .smart-task-connection-feedback,.smart-gantt-chart .milestone .smart-task-container:before{left:calc(-1 * var(--smart-gantt-chart-task-default-height)/ 2)}.smart-gantt-chart .smart-task-bar-limiter{position:absolute;top:0;height:100%;width:1px}.smart-gantt-chart .smart-task-bar-limiter.min{border:var(--smart-border-width) dashed #90ee90}.smart-gantt-chart .smart-task-bar-limiter.max{border:var(--smart-border-width) dashed red}.smart-gantt-chart .smart-task-bar-limiter.max-date,.smart-gantt-chart .smart-task-bar-limiter.min-date{background-image:linear-gradient(135deg,rgba(255,0,0,.2) 25%,transparent 25%,transparent 50%,rgba(255,0,0,.2) 50%,rgba(255,0,0,.2) 75%,transparent 75%,transparent);background-size:1rem 1rem;border:1px solid #fff}.smart-gantt-chart .milestone .smart-task-container:after,.smart-gantt-chart .milestone .smart-task-container:before{border-top:calc(var(--smart-gantt-chart-task-default-height)/ 2) solid transparent;border-bottom:calc(var(--smart-gantt-chart-task-default-height)/ 2) solid transparent}.smart-gantt-chart .smart-task-bar-limiter.max-date{right:0}.smart-gantt-chart .milestone{height:var(--smart-gantt-chart-task-default-height);padding:initial}.smart-gantt-chart .milestone .smart-task-container{padding:0}.smart-gantt-chart .milestone .smart-task-container:after,.smart-gantt-chart .milestone .smart-task-container:before{content:"";position:absolute;box-sizing:border-box;top:0}.smart-gantt-chart .milestone .smart-task-container:before{border-right:calc(var(--smart-gantt-chart-task-default-height)/ 2) solid var(--smart-gantt-chart-milestone-color)}.smart-gantt-chart .milestone .smart-task-container:after{border-left:calc(var(--smart-gantt-chart-task-default-height)/ 2) solid var(--smart-gantt-chart-milestone-color)}.smart-gantt-chart .milestone .smart-task-connection-point.start{transform:translateX(calc(-1 * var(--smart-gantt-chart-task-default-height)/ 2)) scale(0)}.smart-gantt-chart .milestone .smart-task-connection-point.end{transform:translateX(calc(var(--smart-gantt-chart-task-default-height)/ 2)) scale(0)}.smart-gantt-chart .milestone[connection-point=end] .smart-task-connection-feedback{left:calc(100% + var(--smart-gantt-chart-task-default-height)/ 2)}.smart-gantt-chart .milestone .smart-task-segment{min-width:initial}.smart-gantt-chart .project .smart-timeline-task-fill{background:var(--smart-gantt-chart-project-color)}.smart-gantt-chart .project .smart-timeline-task-progress{background:var(--smart-gantt-chart-project-progress-color)}.smart-gantt-chart .task .smart-timeline-task-fill{background:var(--smart-gantt-chart-task-color)}.smart-gantt-chart .task .smart-timeline-task-progress{background:var(--smart-gantt-chart-task-progress-color)}.smart-gantt-chart:not([disable-task-drag]) .smart-timeline-task.milestone .smart-task-container::after,.smart-gantt-chart:not([disable-task-drag]) .smart-timeline-task.milestone .smart-task-container::before,.smart-gantt-chart:not([disable-task-drag]) .smart-timeline-task:not([disable-drag]) .smart-task-segment:not([disable-drag]){cursor:move}.smart-gantt-chart:not([dragged]):not([resized]) .smart-timeline-task[hover]:not([resource-group]) .smart-task-connection-point,.smart-gantt-chart:not([dragged]):not([resized]) .smart-timeline-task[selected]:not([resource-group]) .smart-task-connection-point{transform:translateY(-50%) scale(1)}.smart-gantt-chart:not([dragged]):not([resized]):not([right-to-left])[show-baseline] .smart-timeline-task.milestone[hover] .smart-task-connection-point.start,.smart-gantt-chart:not([dragged]):not([resized]):not([right-to-left])[show-baseline] .smart-timeline-task.milestone[selected] .smart-task-connection-point.start{transform:translate(calc(-1 * var(--smart-gantt-chart-task-default-height)/ 4),-50%) scale(1)}.smart-gantt-chart:not([dragged]):not([resized]):not([right-to-left])[show-baseline] .smart-timeline-task.milestone[hover] .smart-task-connection-point.end,.smart-gantt-chart:not([dragged]):not([resized]):not([right-to-left])[show-baseline] .smart-timeline-task.milestone[selected] .smart-task-connection-point.end{transform:translate(calc(1 * var(--smart-gantt-chart-task-default-height)/ 4),-50%) scale(1)}.smart-gantt-chart:not([dragged]):not([resized]):not([right-to-left]) .smart-timeline-task.milestone[hover] .smart-task-connection-point.start,.smart-gantt-chart:not([dragged]):not([resized]):not([right-to-left]) .smart-timeline-task.milestone[selected] .smart-task-connection-point.start{transform:translate(calc(-1 * var(--smart-gantt-chart-task-default-height)/ 2),-50%) scale(1)}.smart-gantt-chart:not([dragged]):not([resized]):not([right-to-left]) .smart-timeline-task.milestone[hover] .smart-task-connection-point.end,.smart-gantt-chart:not([dragged]):not([resized]):not([right-to-left]) .smart-timeline-task.milestone[selected] .smart-task-connection-point.end{transform:translate(calc(1 * var(--smart-gantt-chart-task-default-height)/ 2),-50%) scale(1)}.smart-gantt-chart:not([disable-task-progress-change]) .smart-timeline-task .smart-timeline-task-progress-thumb:after{cursor:pointer}.smart-gantt-chart:not([inverted]) .smart-timeline-scroll-bar[orientation=vertical]::before{border-right:none}.smart-gantt-chart:not([resource-timeline-mode=histogram]) .smart-resource-timeline-view-cell:not([load])::after{transform:scale(0) rotate(360deg)}.smart-gantt-chart:not([resource-timeline-mode=histogram]) .smart-resource-timeline-view-cell::after{height:calc(var(--smart-gantt-chart-task-default-height) - var(--smart-gantt-chart-task-bar-fill-padding));width:calc(var(--smart-gantt-chart-task-default-height) - var(--smart-gantt-chart-task-bar-fill-padding));border-radius:50%;background:var(--smart-success);color:var(--smart-success-color);line-height:100%}.smart-gantt-chart:not([resource-timeline-mode=histogram]) .smart-timeline-row:first-of-type .smart-resource-timeline-view-cell{border-top:none}.smart-gantt-chart[resource-timeline-mode=histogram] .smart-resource-timeline-view-cell{border:var(--smart-border-width) solid var(--smart-primary);border-bottom:none;height:0;padding:0;background:rgba(var(--smart-primary-rgb),.15)}.smart-gantt-chart[resource-timeline-mode=histogram] .smart-resource-timeline-view-cell:after{width:100%;height:calc(var(--smart-gantt-chart-task-default-height) - 2px);bottom:0}.smart-gantt-chart[resource-timeline-mode=histogram] .smart-resource-timeline-view-cell:not([load]):after{content:"-"}.smart-gantt-chart[resource-timeline-mode=histogram] .smart-resource-timeline-view-cell.hide-left-border:before,.smart-gantt-chart[resource-timeline-mode=histogram] .smart-resource-timeline-view-cell.hide-right-border:before{width:100%;content:"";position:absolute;height:100%;bottom:0;z-index:1}.smart-gantt-chart[resource-timeline-mode=histogram] .smart-resource-timeline-view-cell.hide-left-border.warning:before,.smart-gantt-chart[resource-timeline-mode=histogram] .smart-resource-timeline-view-cell.hide-right-border.warning:before{z-index:initial;left:initial}.smart-gantt-chart[resource-timeline-mode=histogram] .smart-resource-timeline-view-cell.hide-right-border{border-right:none}.smart-gantt-chart[resource-timeline-mode=histogram] .smart-resource-timeline-view-cell.hide-right-border:before{border-right:1px solid var(--smart-border);left:0}.smart-gantt-chart[resource-timeline-mode=histogram] .smart-resource-timeline-view-cell.hide-left-border{border-left:none}.smart-gantt-chart[resource-timeline-mode=histogram] .smart-resource-timeline-view-cell.hide-left-border:before{border-left:1px solid var(--smart-border);left:-1px}.smart-gantt-chart[resource-timeline-mode=histogram] .smart-resource-timeline-view-cell[load]{border-bottom:none;border-top:var(--smart-border-width) solid var(--smart-primary)}.smart-gantt-chart[resource-timeline-mode=histogram] .smart-resource-timeline-view-cell.warning[load]::after{border-radius:initial}.smart-gantt-chart:not([animation=none]) .smart-resource-timeline-view-cell[load]:after{transition:transform .2s cubic-bezier(.4,0,.6,1),border-radius .2s cubic-bezier(.4,0,.6,1)}.smart-gantt-chart:not([animation=none])[resource-timeline-mode=histogram] .smart-resource-timeline-view-cell{transition:height .2s cubic-bezier(.4,0,.6,1)}.smart-gantt-chart:not([animation=none])[show-progress-label] .smart-timeline-task-progress::after{transition:color .2s ease-in-out}.smart-gantt-chart.smart-container.vscroll .smart-timeline,.smart-gantt-chart>.smart-container.vscroll .smart-timeline{width:calc(100% - var(--smart-scroll-bar-size))}.smart-gantt-chart[inverted] .smart-timeline-scroll-bar[orientation=vertical]{right:initial}.smart-gantt-chart[inverted] .smart-timeline-scroll-bar[orientation=vertical]:before{border-left:none}.smart-gantt-chart[inverted].smart-container.vscroll .smart-timeline,.smart-gantt-chart[inverted]>.smart-container.vscroll .smart-timeline{margin-left:var(--smart-scroll-bar-size)}.smart-gantt-chart[inverted].smart-container.vscroll .smart-timeline-scroll-bar:not([orientation=vertical]),.smart-gantt-chart[inverted]>.smart-container.vscroll .smart-timeline-scroll-bar:not([orientation=vertical]){left:calc(var(--smart-scroll-bar-size))}.smart-gantt-chart[inverted] .smart-timeline-scroll-bar:after{width:calc(var(--smart-scroll-bar-size));left:calc(-1 * var(--smart-scroll-bar-size))}.smart-gantt-chart[hide-timeline-header-details].smart-container,.smart-gantt-chart[hide-timeline-header-details]>.smart-container{--smart-gantt-chart-task-timeline-content-height:var(--smart-gantt-chart-task-default-height)}.smart-gantt-chart[hide-timeline-header-details] .smart-task-splitter-item[show-header] .smart-timeline-view-cell{border-top:none}.smart-gantt-chart[hide-timeline-header-details] .smart-timeline-view-cells{height:var(--smart-gantt-chart-task-default-height)}.smart-gantt-chart[hide-timeline-header-details] .smart-timeline-view-cells .smart-timeline-view-cell{border-top:initial}.smart-gantt-chart[hide-timeline-header-details] .smart-table{--smart-table-column-header-height:calc(var(--smart-gantt-chart-task-default-height) - var(--smart-border-width))}.smart-gantt-chart[hide-timeline-header-details] .smart-timeline-content-container{height:calc(100% - var(--smart-gantt-chart-task-default-height))}.smart-gantt-chart[hide-timeline-header-details] .smart-timeline-scroll-bar[orientation=vertical]{top:var(--smart-gantt-chart-task-default-height);height:calc(100% - var(--smart-gantt-chart-task-default-height))}.smart-gantt-chart[hide-timeline-header-details] .smart-timeline-scroll-bar[orientation=vertical]:before{top:calc(-1 * var(--smart-gantt-chart-task-default-height));height:var(--smart-gantt-chart-task-default-height)}.smart-gantt-chart[show-progress-label] .smart-timeline-task-progress[value]:after{display:flex;height:100%;content:attr(value);align-items:center;padding:var(--smart-gantt-chart-progress-label-padding);color:var(--smart-gantt-chart-task-label-color);font-weight:var(--smart-font-weight);font-size:var(--smart-font-size)}.smart-gantt-chart[show-progress-label] .project .smart-task-segment[show-progress-label] .smart-timeline-task-label,.smart-gantt-chart[show-progress-label] .task .smart-task-segment[show-progress-label] .smart-timeline-task-label{padding-left:var(--smart-gantt-chart-progress-label-width)}.smart-gantt-chart[show-progress-label] [selected] .smart-timeline-task-progress::after{color:var(--smart-gantt-chart-task-label-color-selected)}.smart-gantt-chart[show-progress-label] .project .smart-timeline-task-progress::after{color:var(--smart-gantt-chart-project-label-color)}.smart-gantt-chart[show-progress-label] .project[selected] .smart-timeline-task-progress::after{color:var(--smart-gantt-chart-project-label-color-selected)}.smart-gantt-chart[connecting-task] .smart-task-connection{pointer-events:none}.smart-gantt-chart[auto-schedule][auto-schedule-strict-mode] .smart-timeline-task.milestone[connected] .smart-task-container::after,.smart-gantt-chart[auto-schedule][auto-schedule-strict-mode] .smart-timeline-task.milestone[connected] .smart-task-container::before,.smart-gantt-chart[auto-schedule][auto-schedule-strict-mode] .smart-timeline:not([task-bar-hovered]) .smart-timeline-task[connected] .smart-timeline-task-fill{cursor:initial}.smart-gantt-chart[dragged],.smart-gantt-chart[resized]{touch-action:none;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.smart-gantt-chart[modal]{pointer-events:none}.smart-window.smart-gantt-chart-popup-window{--smart-window-header-height:var(--smart-gantt-chart-popup-window-header-height);--smart-window-footer-height:var(--smart-gantt-chart-popup-window-footer-height);--smart-window-header-footer-padding:10px;--smart-window-default-height:auto;--smart-window-header-background:transparent;--smart-window-content-padding:10px;min-height:50px;max-width:97vw;max-height:97vh}.smart-window.smart-gantt-chart-popup-window .smart-content-container>.smart-content{align-items:initial}.smart-window.smart-gantt-chart-popup-window .smart-content-container>.smart-footer smart-button{width:100%;height:100%;--smart-button-padding:0.2rem}.smart-window.smart-gantt-chart-popup-window .smart-popup-window-button.ok{grid-area:buttonOk}.smart-window.smart-gantt-chart-popup-window .smart-popup-window-button.cancel{grid-area:buttonCancel}.smart-window.smart-gantt-chart-popup-window .smart-popup-window-button.cancel .smart-icon::after{content:var(--smart-icon-cancel)}.smart-window.smart-gantt-chart-popup-window .smart-popup-window-button.delete{grid-area:buttonDelete}.smart-window.smart-gantt-chart-popup-window .smart-popup-window-button.delete .smart-icon::after{content:var(--smart-icon-delete)}.smart-window.smart-gantt-chart-popup-window .smart-tabs{min-height:initial;height:100%;width:100%}.smart-window.smart-gantt-chart-popup-window .smart-tabs .smart-tabs-content-section,.smart-window.smart-gantt-chart-popup-window .smart-tabs .smart-tabs-header-section{border:initial}.smart-window.smart-gantt-chart-popup-window .smart-tabs .smart-tabs-header-section{background:inherit}.smart-window.smart-gantt-chart-popup-window .smart-tabs .smart-tab-item>.smart-container{padding:10px}.smart-window.smart-gantt-chart-popup-window .smart-gantt-chart-popup-window-editor{display:grid;grid-column-gap:10px;grid-row-gap:10px;flex:calc(50% - 10px)}.smart-window.smart-gantt-chart-popup-window .smart-gantt-chart-popup-window-editor .smart-gantt-chart-label-container{display:flex;justify-content:space-between;align-items:center}.smart-window.smart-gantt-chart-popup-window .smart-gantt-chart-popup-window-editor .smart-popup-window-editor-toggle{text-align:center;display:inline-flex;vertical-align:middle;cursor:pointer;letter-spacing:.08929em;overflow:hidden;border-color:var(--smart-border);border-top-left-radius:var(--smart-border-top-left-radius);border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);border-width:var(--smart-border-width);border-style:solid;font-weight:500;padding:5px 20px;-webkit-font-smoothing:antialiased;opacity:var(--smart-button-opacity);white-space:nowrap;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.smart-window.smart-gantt-chart-popup-window .smart-gantt-chart-popup-window-editor .smart-popup-window-editor-toggle:hover{color:var(--smart-ui-state-color-hover);border-color:var(--smart-ui-state-border-hover);background-color:var(--smart-ui-state-hover)}.smart-window.smart-gantt-chart-popup-window .smart-gantt-chart-popup-window-editor .smart-popup-window-editor-toggle:active{color:var(--smart-ui-state-color-active);border-color:var(--smart-ui-state-border-active);background-color:var(--smart-ui-state-active)}.smart-window.smart-gantt-chart-popup-window .smart-gantt-chart-popup-window-editor .smart-date-time-picker,.smart-window.smart-gantt-chart-popup-window .smart-gantt-chart-popup-window-editor .smart-drop-down-list{width:100%}.smart-window.smart-gantt-chart-popup-window .smart-gantt-chart-popup-window-editor>b{text-align:center}.smart-window.smart-gantt-chart-popup-window .smart-gantt-chart-popup-window-editor input{height:var(--smart-editor-height)}.smart-window.smart-task-popup-window{--smart-window-default-width:var(--smart-gantt-chart-task-popup-window-default-width)}.smart-window.smart-task-popup-window .smart-content-container>.smart-footer{display:grid;grid-template-columns:23% 23% 23% 23%;grid-column-gap:2%;grid-template-areas:"buttonOk buttonCancel . buttonDelete"}.smart-window.smart-task-popup-window .smart-content-container>.smart-footer .smart-icon{position:relative;height:100%;font-family:var(--smart-font-family-icon);font-size:18px;margin-right:2.5px}.smart-window.smart-task-popup-window .smart-popup-window-button.ok .smart-icon::after{content:var(--smart-icon-check)}.smart-window.smart-task-popup-window .smart-tab-item[value=general]>.smart-container{display:flex;grid-row-gap:10px;grid-column-gap:10px;flex-wrap:wrap}.smart-window.smart-task-popup-window .smart-tab-item .smart-table{--smart-table-column-header-height:40px;--smart-table-row-height:35px;width:100%;height:100%}.smart-window.smart-task-popup-window .smart-tab-item .smart-table th{font-weight:600}.smart-window.smart-task-popup-window .smart-tab-item .smart-gantt-window-table-buttons{display:grid;justify-content:flex-end;grid-template-columns:repeat(2,auto);grid-column-gap:5px;margin-bottom:5px}.smart-window.smart-task-popup-window .smart-tab-item .smart-gantt-window-table-buttons smart-button{--smart-button-padding:8px 16px 8px 8px;border:initial}.smart-window.smart-task-popup-window .smart-tab-item .smart-gantt-window-table-buttons smart-button button::before{display:inline-flex;justify-content:center;align-items:center;box-sizing:border-box;font-family:var(--smart-font-family-icon);font-size:var(--smart-font-size);padding-right:5px}.smart-window.smart-task-popup-window .smart-tab-item .smart-gantt-window-table-buttons smart-button[action=add] button::before{content:var(--smart-icon-plus)}.smart-window.smart-task-popup-window .smart-tab-item .smart-gantt-window-table-buttons smart-button[action=delete] button::before{content:var(--smart-icon-delete)}.smart-window.smart-task-popup-window .smart-tab-item .smart-gantt-window-validation-message{color:var(--smart-error);font-style:italic;margin-top:5px;display:inline-flex;white-space:pre-wrap}.smart-window.smart-task-popup-window .smart-tab-item .smart-gantt-window-validation-message:empty{display:none}.smart-confirm-popup-window{--smart-window-default-width:var(--smart-gantt-chart-confirm-popup-window-default-width)}.smart-connection-popup-window{--smart-window-default-width:var(--smart-gantt-chart-connection-popup-window-default-width)}.smart-confirm-popup-window .smart-content-container>.smart-content,.smart-connection-popup-window .smart-content-container>.smart-content{justify-content:center}.smart-confirm-popup-window .smart-content-container>.smart-footer,.smart-connection-popup-window .smart-content-container>.smart-footer{display:grid;grid-template-columns:49% 49%;grid-column-gap:2%;grid-template-areas:"buttonOk buttonCancel"}@media not all and (min-resolution:0.001dpcm){.smart-confirm-popup-window .smart-content-container>.smart-footer,.smart-connection-popup-window .smart-content-container>.smart-footer{align-content:start}}.smart-confirm-popup-window .smart-gantt-chart-popup-window-editor,.smart-connection-popup-window .smart-gantt-chart-popup-window-editor{justify-items:center}.smart-gantt-chart-popup-window-editor .smart-input[disabled]{opacity:.55;cursor:default;pointer-events:none;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.smart-gantt-chart-tooltip{--smart-tooltip-padding:10px}.smart-gantt-chart-tooltip[visible]{pointer-events:none}.smart-gantt-chart-tooltip .smart-tooltip-content{flex-direction:column;text-align:left;white-space:nowrap}.smart-gantt-chart-tooltip .smart-tooltip-content label:not(:first-of-type){margin-top:5px}.smart-gantt-chart[right-to-left] .smart-timeline-task-label{direction:rtl}.smart-gantt-chart[right-to-left] .milestone .smart-task-container{direction:initial}.smart-gantt-chart[right-to-left]>.smart-container.vscroll .smart-timeline-scroll-bar:not([orientation=vertical]){left:calc(var(--smart-scroll-bar-size))}.smart-gantt-chart[right-to-left]>.smart-container.vscroll .smart-timeline{margin-left:var(--smart-scroll-bar-size)}.smart-gantt-chart[right-to-left] .smart-timeline-view-cell{direction:rtl}.smart-gantt-chart[right-to-left] .smart-timeline-view-cell:last-of-type{border-right:var(--smart-border-width) solid var(--smart-border)}.smart-gantt-chart[right-to-left] .smart-timeline-view-cell:first-of-type{border-right:none;border-left:var(--smart-border-width) solid transparent}.smart-gantt-chart[right-to-left] .smart-timeline-row{left:initial;right:0}.smart-gantt-chart[right-to-left] .smart-timeline-scroll-bar:after,.smart-gantt-chart[right-to-left] .smart-timeline-task[connection-point=end] .smart-task-connection-feedback{right:100%;left:initial}.smart-gantt-chart[right-to-left] .smart-timeline-row .smart-timeline-cell:first-of-type{border-right:initial}.smart-gantt-chart[right-to-left] .smart-timeline-row .smart-timeline-cell:not(:first-of-type){border-right:var(--smart-border-width) solid var(--smart-border)}.smart-gantt-chart[right-to-left] .smart-timeline-scroll-bar[orientation=vertical]:after{left:calc(-1 * var(--smart-scroll-bar-size))}.smart-gantt-chart[right-to-left] .smart-task-connection-point.end{left:calc(-1 * var(--smart-gantt-chart-task-default-height)/ 1.5);right:initial}.smart-gantt-chart[right-to-left] .smart-task-connection-point.start{right:calc(-1 * var(--smart-gantt-chart-task-default-height)/ 1.5);left:initial}.smart-gantt-chart[right-to-left] .smart-task-connection-feedback{transform-origin:right}.smart-gantt-chart[right-to-left] .smart-task-connection-feedback:before{left:initial;right:calc(100% - var(--smart-gantt-chart-timeline-task-connection-arrow-width) + 1px);border-right:var(--smart-gantt-chart-timeline-task-connection-arrow-width) var(--smart-gantt-chart-timeline-task-connection-arrow-type) var(--smart-gantt-chart-timeline-task-connection-feedback-color);border-left:initial}.smart-gantt-chart[right-to-left] .smart-task-bar-limiter.max-date,.smart-gantt-chart[right-to-left] .smart-task-bar-limiter.min-date{right:var(--smart-gantt-chart-timeline-column-border-width);left:initial}.smart-gantt-chart[right-to-left] .smart-task-bar-limiter.max-date{left:0}.smart-gantt-chart[right-to-left] .milestone .smart-task-connection-point.end{left:calc(-1 * var(--smart-gantt-chart-task-default-height) * 1.15);right:initial}.smart-gantt-chart[right-to-left] .milestone .smart-task-connection-point.start{right:calc(-1 * var(--smart-gantt-chart-task-default-height) * 1.15);left:initial}.smart-gantt-chart[right-to-left] .milestone .smart-task-connection-feedback{right:calc(-1 * var(--smart-gantt-chart-task-default-height)/ 2);left:initial}.smart-gantt-chart[right-to-left] .milestone[connection-point=end] .smart-task-connection-feedback{right:calc(100% + var(--smart-gantt-chart-task-default-height)/ 2)}.smart-gantt-chart[right-to-left][show-baseline] .smart-task-connection-point.end{left:calc(-1 * var(--smart-gantt-chart-task-default-height)/ 2)}.smart-gantt-chart[right-to-left][show-baseline] .smart-task-connection-point.start{right:calc(-1 * var(--smart-gantt-chart-task-default-height)/ 2)}.smart-gantt-chart[right-to-left][show-baseline] .milestone .smart-task-connection-point.end{left:calc(-1 * var(--smart-gantt-chart-task-default-height) * .75)}.smart-gantt-chart[right-to-left][show-baseline] .milestone .smart-task-connection-point.start{right:calc(-1 * var(--smart-gantt-chart-task-default-height) * .75)}.smart-gantt-chart[right-to-left]:not([inverted]) .smart-timeline-scroll-bar[orientation=vertical]{right:initial;left:0}.smart-gantt-chart[right-to-left]:not([inverted]) .smart-timeline-scroll-bar[orientation=vertical]:before{border-left:none;border-right:1px solid var(--smart-border)}.smart-gantt-chart[right-to-left][inverted]>.smart-container.vscroll .smart-timeline{margin-right:var(--smart-scroll-bar-size)}.smart-gantt-chart[right-to-left][inverted]>.smart-container.vscroll .smart-timeline-scroll-bar:not([orientation=vertical]){left:initial}.smart-gantt-chart[right-to-left][inverted] .smart-timeline-scroll-bar:after{right:calc(-1 * var(--smart-scroll-bar-size))}.smart-gantt-chart[right-to-left][inverted] .smart-timeline-scroll-bar[orientation=vertical]{right:0}.smart-gantt-chart[right-to-left][inverted] .smart-timeline-scroll-bar[orientation=vertical]:before{border-right:none;border-left:1px solid var(--smart-border)}.smart-window.smart-task-popup-window .smart-tab-item[right-to-left]>.smart-container>.smart-footer .smart-icon{margin-left:2.5px}
smart-gauge{display:block;width:var(--smart-gauge-default-width);height:var(--smart-gauge-default-height);min-width:125px;min-height:125px;fill:var(--smart-background-color)}smart-gauge:focus{outline:0}smart-gauge.smart-element{border:none}smart-gauge[disabled]{-webkit-user-select:none;user-select:none}smart-gauge[size-mode=auto]{min-height:initial}.smart-gauge:focus .smart-needle,.smart-gauge:focus .smart-needle-central-circle{fill:var(--smart-primary)}.smart-gauge .smart-container,.smart-gauge.smart-container{position:relative;border-radius:50%}.smart-gauge .drawContainer>svg{fill:var(--smart-gauge-label-fill-state);stroke:var(--smart-gauge-label-stroke)}.smart-gauge .smart-needle,.smart-gauge .smart-needle-central-circle{fill:var(--smart-background-color)}.smart-gauge .smart-svg-container{width:100%;height:100%;touch-action:none}.smart-gauge .smart-tick{stroke:var(--smart-border);stroke-width:1px;width:15px;pointer-events:none}.smart-gauge .smart-tick-minor{width:5px}.smart-gauge .smart-needle{width:20px;height:110px}.smart-gauge .smart-track{width:15px;stroke:var(--smart-border);stroke-width:2px;fill:var(--smart-background)}.smart-gauge .smart-value{stroke:var(--smart-ui-state-border-active);stroke-width:2px;fill:var(--smart-ui-state-active)}.smart-gauge .smart-line{stroke:var(--smart-background-color);stroke-width:5px}.smart-gauge .smart-range{width:75px;fill:#D8D8D8}.smart-gauge .smart-digital-display-container{width:100%;height:100%;position:absolute;left:0;top:0;pointer-events:none}.smart-gauge .smart-digital-display{--smart-numeric-text-box-background:transparent;--smart-numeric-text-box-text-align:center;position:absolute;display:none;width:80px;height:auto;top:75%;left:50%;transform:translate(-50%,-50%);color:#000;font-size:inherit;pointer-events:initial}.smart-gauge[dragged],.smart-gauge[dragged] .smart-label{cursor:pointer}.smart-gauge[analog-display-type=fill][ticks-position=track] .smart-tick,.smart-gauge[analog-display-type=line][ticks-position=track] .smart-tick{stroke:#F2F2F2}.smart-gauge[labels-visibility=endPoints] .smart-label-middle,.smart-gauge[ticks-visibility=major] .smart-tick-minor{visibility:hidden}.smart-gauge[show-ranges][ranges] .smart-track{opacity:0}.smart-gauge[show-unit] .smart-digital-display{--smart-numeric-text-box-text-align:right}.smart-gauge[show-unit] .smart-digital-display input.smart-input{border-right:none}.smart-gauge[digital-display] .smart-digital-display{display:inline-block}.smart-gauge[digital-display-position=top] .smart-digital-display{top:25%;transform:translate(-50%,-50%)}.smart-gauge[digital-display-position=right] .smart-digital-display{top:50%;left:70%;transform:translate(-50%,-50%)}.smart-gauge[digital-display-position=left] .smart-digital-display{top:50%;left:30%;transform:translate(-50%,-50%)}.smart-gauge[digital-display-position=center] .smart-digital-display{top:50%;transform:translate(-50%,-50%)}smart-gauge[right-to-left] .smart-label,smart-gauge[right-to-left] .smart-label-middle{direction:rtl;text-anchor:end}
input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.smart-grid-footer{background:var(--smart-surface);color:var(--smart-surface-color);border-color:var(--smart-border);height:var(--smart-grid-footer-height);border-top-width:1px;border-top-style:solid}.smart-grid-group-header{min-height:var(--smart-grid-group-header-height);height:var(--smart-grid-group-header-height);overflow:hidden;position:relative;z-index:99;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:var(--smart-border);background:var(--smart-surface);display:flex;align-items:center}.smart-grid-group-header .smart-breadcrumb{background:0 0;border:none;width:100%;--smart-breadcrumb-item-height:35px;margin-top:1px;padding:0 0 0 5px}.smart-grid-group-header .smart-breadcrumb .smart-template-container .smart-breadcrumb-items .smart-breadcrumb-item{border-radius:var(--smart-border-radius);margin-top:0}.smart-grid-group-header .smart-breadcrumb-item-label{display:flex;justify-content:center;align-content:center}.smart-grid-group-header .smart-breadcrumb-item-label .smart-grid-icon{font-weight:700;font-size:16px;margin-right:-10px}.smart-grid-column-group,smart-grid-column{font-size:var(--smart-grid-column-font-size,inherit);text-overflow:ellipsis}.smart-grid-column-header.smart-columns-sticky{border-top:1px solid var(--smart-border);border-bottom:1px solid var(--smart-border);margin-top:-2px}.smart-grid-column-header .smart-arrow-down.smart-animate{transform:rotate(90deg);transition:transform .2s ease-out}.smart-grid-column-header .smart-arrow-down.smart-animate:after{content:var(--smart-icon-arrow-down)}.smart-grid-column-header .top-right-corner{overflow:hidden;right:0;top:0;width:calc(1px + var(--smart-scroll-bar-size));position:absolute;border-left:1px solid inherit;z-index:1}.smart-grid-column-header .top-right-corner:first-child{left:-1px;z-index:2}.smart-grid-column-header-cell-container{position:relative;z-index:1;height:100%}.smart-grid-column-header-cell-container:hover smart-grid-column[freeze][checkbox][auto-show] .smart-input{opacity:1;border-color:var(--smart-border)}.smart-grid-cell-container.far,.smart-grid-column-header-cell-container.far{border-left:var(--smart-grid-freeze-splitter-size) solid var(--smart-border)}.smart-grid-column-header-cell-container.far,.smart-grid-column-header-cell-container.near{position:absolute;z-index:6;box-sizing:content-box}.smart-grid-column-header-cell-container.near{border-right:var(--smart-grid-freeze-splitter-size) solid var(--smart-border)}.smart-grid-column-header-cell-container.far{right:0;top:0}.smart-grid-column-header-cell-container.far.vscroll{right:var(--smart-scroll-bar-size)}.smart-grid-column-header-cell-container.border-collapse.near{box-sizing:border-box;border-right:none}.smart-grid-column-header-cell-container.border-collapse.far{box-sizing:border-box;border-left:none}.smart-grid-column-group{color:var(--smart-surface-color);background:var(--smart-surface);white-space:nowrap;border-width:0;border-style:solid;overflow:hidden;height:100%;position:absolute;font-weight:var(--smart-grid-column-font-weight,inherit)}.smart-grid-column-group.smart-grid-column-border{border-width:var(--smart-border-width);border-top-color:var(--smart-border);border-top-width:0;border-bottom-color:var(--smart-border);border-left-color:var(--smart-border);border-right-color:var(--smart-border)}.smart-grid-column-group:not(.smart-grid-column-border):after{height:var(--smart-border-width);width:100%;content:"";position:absolute;bottom:0;background:var(--smart-grid-column-horizontal-border,var(--smart-border))}.smart-grid-column-group:not(.smart-grid-column-border):after:not(.smart-grid-column-border-collapse):before{width:var(--smart-border-width);height:100%;content:"";position:absolute;top:0;left:0;background:var(--smart-grid-column-vertical-border,var(--smart-border))}.smart-grid-column-menu{position:absolute;background:var(--smart-surface);width:var(--smart-grid-column-menu-width);height:var(--smart-grid-column-menu-height);z-index:9999;box-shadow:var(--smart-elevation-8);min-height:60px;overflow:hidden}.smart-grid-column-menu smart-menu{border:none}.smart-grid-column-menu.smart-animate{transition:opacity .2s,transform .2s ease-out;transform:scale(0);opacity:0;transform-origin:top left}.smart-grid-column-menu.smart-animate.smart-open-right,.smart-grid-column-menu[right-to-left].smart-animate{transform-origin:top right}.smart-grid-column-menu.smart-animate.smart-grid-download-menu{width:auto;transform:scaleY(0)}.smart-grid-column-menu smart-menu[mode=vertical]{height:100%}.smart-grid-column-menu.open.smart-animate{transform:scale(1);opacity:1}.smart-grid-column-menu .smart-grid-icon{display:inline-block}.smart-grid-column-menu .smart-filter-container{width:100%;height:auto;background:var(--smart-background)}.smart-grid-column-menu .smart-filter-container smart-filter-panel{width:100%;border:none;background:0 0}.smart-grid-column-menu .smart-filter-container .smart-filter-panel smart-tree,.smart-grid-column-menu .smart-filter-panel smart-filter-builder{height:250px}.smart-grid-filter-footer{height:var(--smart-grid-filter-footer-height)}.smart-grid-icon{height:100%;font-family:var(--smart-font-family-icon);font-style:normal;font-weight:400;color:inherit;font-size:14px;text-decoration:inherit;font-variant:normal;text-transform:none;flex-wrap:wrap;align-items:center;justify-content:center;cursor:pointer;width:var(--smart-grid-column-buttons-width);min-width:0;display:none}.smart-grid-icon.visible{display:inline-block!important;width:20px}.smart-grid-icon.show{display:flex!important}.smart-grid-icon.smart-icon-link:before{content:var(--smart-icon-link)}.smart-grid-icon.smart-icon-cloud:before{content:var(--smart-icon-cloud)}.smart-grid-icon.smart-icon-mail:before{content:var(--smart-icon-mail)}.smart-grid-icon.smart-icon-user:before{content:var(--smart-icon-user)}.smart-grid-icon.smart-icon-list-ordered:before{content:var(--smart-icon-list-ordered)}.smart-grid-icon.smart-icon-list-unordered:before{content:var(--smart-icon-list-unordered)}.smart-grid-icon.smart-icon-plus:before{content:var(--smart-icon-plus)}.smart-grid-icon.smart-icon-image:before{content:var(--smart-icon-image)}.smart-grid-icon.smart-icon-plus-circled:before{content:var(--smart-icon-plus-circled)}.smart-grid-icon.smart-icon-docs:before{content:var(--smart-icon-docs)}.smart-grid-icon.smart-icon-pdf:before{content:var(--smart-icon-pdf);color:#E50012}.smart-grid-icon.smart-icon-word::before{content:var(--smart-icon-word);color:#185ABD}.smart-grid-icon.smart-icon-excel:before{content:var(--smart-icon-excel);color:#107C41}.smart-grid-icon.smart-icon-archive:before{content:var(--smart-icon-archive);color:#EDC949}.smart-grid-icon.smart-icon-file:before{content:var(--smart-icon-file);color:var(--smart-primary)}.smart-grid-icon.smart-icon-powerpoint:before{content:var(--smart-icon-powerpoint);color:#C43E1C}.smart-grid-icon.smart-icon-text:before{content:var(--smart-icon-text)}.smart-grid-icon.smart-icon-minus:before{content:var(--smart-icon-minus)}.smart-grid-icon.smart-icon-resize-full:before{content:var(--smart-icon-resize-full)}.smart-grid-icon.smart-icon-align-left:before{content:var(--smart-icon-align-left)}.smart-grid-icon.smart-icon-align-right:before{content:var(--smart-icon-align-right)}.smart-grid-icon.smart-icon-align-center:before{content:var(--smart-icon-align-center)}.smart-grid-icon.smart-icon-cancel:before{content:var(--smart-icon-cancel)}.smart-grid-icon.smart-icon-cancel-circled:before{content:var(--smart-icon-cancel-circled)}.smart-grid-icon.smart-icon-edit:before{content:var(--smart-icon-edit)}.smart-grid-icon.smart-icon-mode-edit:before{content:var(--smart-icon-mode-edit)}.smart-grid-icon.smart-icon-sort:before{content:var(--smart-icon-sort)}.smart-grid-icon.smart-icon-delete:before{content:var(--smart-icon-delete)}.smart-grid-icon.smart-icon-close:before{content:var(--smart-icon-close)}.smart-grid-icon.smart-icon-search:before{content:var(--smart-icon-search)}.smart-grid-icon.smart-icon-settings:before{content:var(--smart-icon-settings)}.smart-grid-icon.smart-icon-visibility-off:before{content:var(--smart-icon-visibility-off)}.smart-grid-icon.smart-icon-visibility-on:before{content:var(--smart-icon-visibility)}.smart-grid-icon.smart-icon-add-filter:before{content:var(--smart-icon-add-filter)}.smart-grid-icon.smart-icon-duplicate:before{content:var(--smart-icon-duplicate)}.smart-grid-icon.smart-icon-check-empty:before{content:var(--smart-icon-check-empty)}.smart-grid-icon.smart-icon-check-squared:before{content:var(--smart-icon-check-squared)}.smart-grid-icon.smart-icon-check:before{content:var(--smart-icon-check)}.smart-grid-icon.smart-icon-number:before{content:"#";font-weight:700;font-style:normal;font-variant:normal;text-rendering:auto;font-family:var(--smart-font-family);-webkit-font-smoothing:antialiased;padding-left:2px}.smart-grid-icon.smart-icon-filter:before{content:var(--smart-icon-filter)}.smart-grid-icon.smart-icon-phone:before{content:var(--smart-icon-phone)}.smart-grid-icon.smart-icon-lock:before{content:var(--smart-icon-lock)}.smart-grid-icon.smart-icon-tasks:before{content:var(--smart-icon-tasks)}.smart-grid-icon.smart-icon-table-alt:before{content:var(--smart-icon-table-alt)}.smart-grid-icon.smart-icon-kanban:before{content:var(--smart-icon-kanban)}.smart-grid-icon.smart-icon-card:before{content:var(--smart-icon-card)}.smart-grid-icon.smart-icon-clock:before{content:var(--smart-icon-clock)}.smart-grid-icon.smart-icon-font:before{content:var(--smart-icon-font)}.smart-grid-icon.smart-icon-fontsize:before{content:var(--smart-icon-fontsize)}.smart-grid-icon.smart-icon-menu:before{content:var(--smart-icon-menu)}.smart-grid-icon.smart-icon-sort-down:before{content:var(--smart-icon-arrow-down)}.smart-grid-icon.smart-icon-sort-up:before{content:var(--smart-icon-arrow-up)}.smart-grid-icon.smart-icon-ellipsis:before{content:var(--smart-icon-ellipsis)}.smart-grid-icon.smart-icon-ellipsis-vert:before{content:var(--smart-icon-ellipsis);transform:rotate(90deg)}.smart-grid-icon.smart-icon-minus-squared:before{content:var(--smart-icon-minus-squared)}.smart-grid-icon.smart-icon-ok-squared:before{content:var(--smart-icon-ok-squared)}.smart-grid-icon.smart-icon-sort-name-up:before{content:var(--smart-icon-sort-name-up)}.smart-grid-icon.smart-icon-sort-name-down:before{content:var(--smart-icon-sort-name-down)}.smart-grid-icon.smart-icon-sort-alt-up:before{content:var(--smart-icon-sort-alt-up)}.smart-grid-icon.smart-icon-sort-alt-down:before{content:var(--smart-icon-sort-alt-down)}.smart-grid-icon.smart-icon-sort-number-up:before{content:var(--smart-icon-sort-number-up)}.smart-grid-icon.smart-icon-sort-number-down:before{content:var(--smart-icon-sort-number-down)}.smart-grid-icon.smart-icon-group:before{content:var(--smart-icon-group)}.smart-grid-icon.smart-icon-ungroup:before{content:var(--smart-icon-ungroup)}.smart-grid-icon.smart-icon-reload:before{content:var(--smart-icon-reload)}.smart-grid-icon.smart-icon-contains:before{content:var(--smart-icon-contains)}.smart-grid-icon.smart-icon-starts-with:before{content:var(--smart-icon-starts_with)}.smart-grid-icon.smart-icon-ends-with:before{content:var(--smart-icon-ends_with)}.smart-grid-icon.smart-icon-does-not-contain:before{content:var(--smart-icon-does_not_contain)}.smart-grid-icon.smart-icon-equals:before{content:var(--smart-icon-equals)}.smart-grid-icon.smart-icon-greater-than:before{content:var(--smart-icon-greater-than)}.smart-grid-icon.smart-icon-greater-than-equal:before{content:var(--smart-icon-greater-than-equal)}.smart-grid-icon.smart-icon-less-than:before{content:var(--smart-icon-less-than)}.smart-grid-icon.smart-icon-less-than-equal:before{content:var(--smart-icon-less-than-equal)}.smart-grid-icon.smart-icon-not-equal:before{content:var(--smart-icon-not-equal)}.smart-grid-icon.smart-icon-percentage:before{content:var(--smart-icon-percentage)}.smart-grid-icon.smart-icon-grip-vertical:before{content:var(--smart-icon-grip-vertical)}.smart-grid-icon.smart-icon-between:before{content:var(--smart-icon-between)}.smart-grid-icon.smart-icon-bold:before{content:var(--smart-icon-bold)}.smart-grid-icon.smart-icon-italic:before{content:var(--smart-icon-italic)}.smart-grid-icon.smart-icon-underline:before{content:var(--smart-icon-underline)}.smart-grid-icon.smart-icon-color-background:before{content:var(--smart-icon-color-background)}.smart-grid-icon.smart-icon-calendar:before{content:var(--smart-icon-calendar)}.smart-grid-icon.smart-icon-comment:before{content:var(--smart-icon-comment)}.smart-grid-icon.smart-icon-attention:before{content:var(--smart-icon-attention)}.smart-grid-icon.smart-icon-help-circled:before{content:var(--smart-icon-help-circled)}.smart-grid-icon.smart-icon-star:before{content:var(--smart-icon-star)}.smart-grid-icon.smart-icon-attention-circled:before{content:var(--smart-icon-attention-circled)}.smart-grid-pager smart-pager{width:calc(100% - 10px);height:calc(100% - 10px);margin-left:2px;margin-top:5px;border:none}.smart-grid-aggregate-footer{position:absolute;bottom:0;z-index:99;height:var(--smart-grid-aggregate-footer-height);width:100%;border-top-style:solid;border-top-color:inherit;border-top-width:1px}.smart-grid-loader{margin:inherit;display:block;position:absolute;top:50%;left:50%;z-index:99;transform:translate(-50%,-50%);opacity:.85;text-align:left;border:6px solid rgba(43,51,63,.1);box-sizing:border-box;background-clip:padding-box;-webkit-background-clip:padding-box;border-radius:50%;width:calc(var(--smart-loader-size) + 10px);height:calc(var(--smart-loader-size) + 10px)}.smart-grid-loader:after,.smart-grid-loader:before{content:"";position:absolute;margin:-6px;box-sizing:inherit;width:inherit;height:inherit;border-radius:inherit;opacity:1;border-style:inherit;border-color:inherit;border-top-color:inherit;border-width:6px;animation:smart-loader-spin 1.1s cubic-bezier(.6,.2,0,.8) infinite,smart-loader-spin-fade 1.1s linear infinite}.smart-grid-loader[loading-indicator-position=top]{width:var(--smart-loader-size);height:var(--smart-loader-size)}.smart-grid-loader[loading-indicator-position=top] .smart-loader-container{top:0}.smart-grid-loader[loading-indicator-position=bottom] .smart-loader-container{top:-10%}.smart-grid-loader[loading-indicator-position=bottom] .smart-loader-container,.smart-grid-loader[loading-indicator-position=top] .smart-loader-container{display:block;position:relative;width:100%;height:10%;background-color:var(--smart-background);overflow:hidden;animation:smart-loader-container-pop-up-down .3s linear;left:20%}.smart-grid-loader[loading-indicator-position=bottom] .smart-loader-label,.smart-grid-loader[loading-indicator-position=top] .smart-loader-label{position:absolute;display:block;top:50%;transform:translate(-50%,-50%);left:60%;font-family:inherit;font-size:inherit;vertical-align:middle;white-space:nowrap}.smart-grid-placeholder{-webkit-user-select:none;user-select:none;text-align:center;display:flex;height:100%;min-height:50px;justify-content:center;align-items:center;background:var(--smart-background)}.smart-grid-content.auto-height .smart-grid-placeholder{height:initial}.smart-grid-content.auto-height smart-grid-cell[addNewRow]{border-right:none}.smart-grid-special-cells-container{overflow:hidden;position:absolute;width:100%;height:100%;left:0;top:0}.smart-grid-sort-animation{transition-timing-function:ease-in-out;transition-delay:0}.smart-grid-cell-container{height:100%;position:relative}.smart-grid-cell-container.far,.smart-grid-cell-container.near{position:absolute;z-index:6;box-sizing:content-box}.smart-grid-cell-container.far{right:0;top:0}.smart-grid-cell-container.far.vscroll{right:var(--smart-scroll-bar-size)}.smart-grid-cell-container.border-collapse.near{box-sizing:border-box;border-right:none}.smart-grid-cell-container.border-collapse.far{box-sizing:border-box;border-left:none}.smart-grid-cell-editor>*{display:block;width:100%;height:100%;border:none;overflow:hidden;margin:0;outline:0;background:inherit;color:inherit;border-radius:0;--smart-border-top-left-radius:0px;--smart-border-top-right-radius:0px;--smart-border-bottom-left-radius:0px;--smart-border-bottom-right-radius:0px}.smart-grid-cell-editor.smart-grid-date-time-picker-cell-editor,.smart-grid-cell-editor.smart-grid-passowrd-input-cell-editor,.smart-grid-cell-editor.smart-grid-phone-input-cell-editor{border-radius:0;border:none;font-size:inherit;font-weight:inherit;background:inherit;color:inherit}.smart-grid-cell-editor.smart-grid-number-input-cell-editor{width:100%;height:100%;margin:0;border-radius:0;border:none;font-size:inherit;font-weight:inherit;background:inherit;color:inherit;display:flex}.smart-grid-cell-editor.smart-grid-number-input-cell-editor .nav{padding:0;display:flex;width:var(--smart-editor-addon-width);height:100%;flex-direction:column;color:var(--smart-surface-color);border-left:1px solid var(--smart-border);background:var(--smart-surface)}.smart-grid-cell-editor.smart-grid-number-input-cell-editor .nav .down,.smart-grid-cell-editor.smart-grid-number-input-cell-editor .nav .up{display:flex;height:50%;overflow:hidden;cursor:pointer;font-family:var(--smart-font-family-icon);justify-content:center;align-items:center;outline:0}.smart-grid-cell-editor.smart-grid-number-input-cell-editor .nav .down:hover,.smart-grid-cell-editor.smart-grid-number-input-cell-editor .nav .up:hover{background:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover)}.smart-grid-cell-editor.smart-grid-number-input-cell-editor .nav .down:active,.smart-grid-cell-editor.smart-grid-number-input-cell-editor .nav .down[active],.smart-grid-cell-editor.smart-grid-number-input-cell-editor .nav .up:active,.smart-grid-cell-editor.smart-grid-number-input-cell-editor .nav .up[active]{background:var(--smart-ui-state-active);color:var(--smart-ui-state-color-active)}.smart-grid-cell-editor.smart-grid-auto-complete-cell-editor,.smart-grid-cell-editor.smart-grid-input-cell-editor,.smart-grid-cell-editor.smart-grid-text-area-cell-editor{background:inherit;color:inherit;width:100%;margin:0;font-size:inherit;font-weight:inherit}.smart-grid-cell-editor.smart-grid-number-input-cell-editor .nav .up{border-bottom:1px solid var(--smart-border)}.smart-grid-cell-editor.smart-grid-number-input-cell-editor .nav .up:after{content:var(--smart-icon-arrow-up)}.smart-grid-cell-editor.smart-grid-number-input-cell-editor .nav .down:after{content:var(--smart-icon-arrow-down)}.smart-grid-cell-editor.smart-grid-text-area-cell-editor{display:flex;height:100%;border-radius:0;border:none;font-family:inherit}.smart-grid-cell-editor.smart-grid-input-cell-editor{height:100%;border-radius:0;border:none}.smart-grid-cell-editor.smart-grid-auto-complete-cell-editor{height:100%!important;border-radius:0;border:none}.smart-grid-cell-editor.smart-grid-auto-complete-cell-editor div,.smart-grid-cell-editor.smart-grid-auto-complete-cell-editor input{border-radius:0}.smart-grid-cell-editor>input[type=checkbox]{border:none;min-width:16px;height:16px;top:6px;position:relative}.smart-grid-cell-content-popup{background:var(--smart-primary)!important;color:var(--smart-primary-color)!important;border:1px solid var(--smart-primary)!important;z-index:19!important}.smart-grid-cell-content-popup-content{box-shadow:none!important;padding:6px 2px 6px 6px}.smart-grid-row-container{position:relative}.smart-grid-row-container.far,.smart-grid-row-container.near{z-index:7;position:absolute;width:100%}.smart-grid-row-container.near{border-bottom:var(--smart-grid-freeze-splitter-size) solid var(--smart-border);box-sizing:content-box}.smart-grid-row-container.far{border-top:var(--smart-grid-freeze-splitter-size) solid var(--smart-border);box-sizing:content-box;z-index:11}.smart-grid-row-drag-feedback{height:auto!important;flex-direction:column}.smart-grid-row-drag-feedback div{padding-top:3px}.smart-grid-row-drag-feedback>div{display:flex;align-items:flex-start;padding:3px;white-space:nowrap;font-family:var(--smart-font-family);font-size:8px;background-color:var(--smart-background);color:var(--smart-background-color);flex-direction:column;max-height:200px;overflow:hidden}.smart-grid-scroll-view{width:100%;height:100%;position:relative;overflow:hidden}.smart-grid-scroll-view .smart-grid-row-container.far{bottom:-2px}.smart-grid-scroll-view.has-vscroll smart-grid-row[data-id="9999999"]{box-shadow:none!important;--smart-grid-cell-header-horizontal-border:transparent;--smart-grid-cell-horizontal-border:transparent}.smart-grid-scroll-view.vscroll,.smart-grid-scroll-view.vscroll .smart-grid-row-container.far,.smart-grid-scroll-view.vscroll .smart-grid-row-container.near{width:calc(100% - var(--smart-scroll-bar-size))}.smart-grid-scroll-view.hscroll .smart-grid-row-container.far{bottom:calc(-2px + var(--smart-scroll-bar-size))}.smart-grid-summary-row-cell{background:var(--smart-surface)!important;color:var(--smart-surface-color)!important;border-color:var(--smart-border)!important;opacity:1!important}.smart-grid-summary-row-cell button{display:none}.smart-grid-summary-row-cell .summary-value{font-size:11px;opacity:.75;height:calc(100% - 2px);display:flex;justify-content:flex-end;align-items:center;width:100%}.smart-grid-summary-row-cell .summary-value .summary-value-part{transition:transform ease-in-out .2s}.smart-grid-summary-row-cell .summary-value .summary-value-part:hover{transform:scale(1.2)}.smart-grid-summary-row-cell .summary-value .smart-arrow-down,.smart-grid-summary-row-cell .summary-value .smart-summary-placeholder{opacity:0;transition:opacity .2s ease-in-out}.smart-grid-summary-row-cell .summary-value[has-summary] .smart-arrow-down,.smart-grid-summary-row-cell .summary-value[has-summary] .smart-summary-placeholder{display:inherit;opacity:.7}.smart-grid-summary-row-cell .summary-value.summary-chooser .smart-arrow-down,.smart-grid-summary-row-cell .summary-value.summary-chooser .smart-summary-placeholder,.smart-grid-summary-row-cell .summary-value:hover .smart-arrow-down,.smart-grid-summary-row-cell .summary-value:hover .smart-summary-placeholder{opacity:1}.smart-grid-summary-row-cell .summary-value .label{margin-top:-3px}.smart-grid-summary-row-cell::before{display:none}.smart-grid-resize-mode{overflow:visible}.smart-grid-dialog-editor.add-column{display:flex;height:30px;align-items:center;margin-bottom:10px}.smart-grid-dialog-editor.radio-group{height:auto}.smart-grid-dialog-add-column .smart-grid-dialog-radio-field{width:100%}.smart-grid-dialog-add-column .smart-grid-dialog-radio-field .smart-input{border-radius:50%!important;margin-right:10px}.smart-grid-dialog-add-column .smart-grid-dialog-radio-field .smart-input:after{content:""!important}.smart-grid-dialog-add-column .smart-grid-dialog-radio-field .smart-input[checked]:after{content:var(--smart-icon-radio)!important}.smart-grid-dialog-add-column .smart-grid-dialog-boolean-field{display:flex;align-items:center;margin-bottom:5px}.smart-grid-dialog-add-column .smart-grid-dialog-boolean-field .smart-grid-dialog-editor{margin-bottom:initial;margin-right:10px}.smart-grid-dialog-editor[template=colorInput]{border:none!important}.smart-grid-dialog-editor[template=colorInput] smart-color-input{border:1px solid var(--smart-border)}.smart-grid-dialog-editor[template=rating]{border:none!important}.smart-grid-dialog-editor[template=rating] .rating{display:flex}.smart-grid-dialog-editor[template=rating] .rating div{color:#DFDFDF}.smart-grid-dialog-editor[template=rating] .rating div.hover,.smart-grid-dialog-editor[template=rating] .rating div:hover{color:#FFBA05;opacity:.5}.smart-grid-dialog-editor[template=rating] .rating div.value{visibility:inherit;color:#FFBA05!important;opacity:1!important}.smart-grid-dialog-editor[template=rating] .rating:hover div{visibility:inherit}.smart-grid-dialog-editor .attachments,.smart-grid-dialog-editor .images{display:grid;grid-template-columns:1fr auto auto;height:100%}.smart-grid-dialog-editor .attachments .container,.smart-grid-dialog-editor .images .container{display:flex;height:calc(100% - 3px);align-items:center;padding-left:5px}.smart-grid-dialog-editor .attachments .smart-drop-image,.smart-grid-dialog-editor .images .smart-drop-image{margin-left:-5px}.smart-grid-dialog-editor .attachments .smart-drop-image::after,.smart-grid-dialog-editor .images .smart-drop-image::after{font-family:var(--smart-font-family-icon);content:var(--smart-icon-download-alt);margin-left:5px}.smart-grid-dialog-editor .attachments .arrowbtn,.smart-grid-dialog-editor .images .arrowbtn{width:15px;background:var(--smart-surface)}.smart-grid-dialog-editor .attachments .arrowbtn:hover,.smart-grid-dialog-editor .images .arrowbtn:hover{cursor:pointer;background:var(--smart-primary);color:var(--smart-primary-color)}.smart-grid-dialog-editor .attachments .attachment,.smart-grid-dialog-editor .attachments img,.smart-grid-dialog-editor .images .attachment,.smart-grid-dialog-editor .images img{height:23px;width:23px;border:1px solid var(--smart-border);margin-right:3px;border-radius:var(--smart-border-radius)}.smart-grid-dialog-editor .attachments .attachment:hover,.smart-grid-dialog-editor .attachments img:hover,.smart-grid-dialog-editor .images .attachment:hover,.smart-grid-dialog-editor .images img:hover{cursor:pointer;border-color:var(--smart-primary)}.smart-grid-image-dialog{width:500px!important;min-height:400px!important;background:var(--smart-background)}.smart-grid-image-dialog .smart-header{display:flex;justify-content:center;align-items:center}.smart-grid-image-dialog .tabs{width:100%;height:30px;overflow:hidden;transition:all .2s ease-in-out;display:flex;margin-bottom:5px}.smart-grid-image-dialog .tabs .tab{width:50%;display:flex;align-items:center;justify-content:center;text-transform:uppercase;color:var(--smart-background-color);cursor:pointer}.smart-grid-image-dialog .tabs .tab label{cursor:pointer}.smart-grid-image-dialog .tabs .tab.active{color:var(--smart-primary);border-bottom:2px solid var(--smart-primary);font-weight:700}.smart-grid-image-dialog .preview{margin-top:10px}.smart-grid-image-dialog .preview p{font-size:10px;text-align:center}.smart-grid-image-dialog .preview .smart-icon-delete{margin:5px}.smart-grid-image-dialog .preview .smart-icon-delete:hover{color:var(--smart-primary)}.smart-grid-image-dialog .preview .list{max-height:100px;max-width:500px;overflow:auto;display:flex;flex-direction:row}.smart-grid-image-dialog .preview .list .item{display:flex;align-items:center;flex-direction:column;font-size:10px;color:var(--smart-background-color);max-width:100px;margin-right:10px;overflow:hidden;min-width:60px}.smart-grid-image-dialog .preview .list .item:after{font-family:var(--smart-font-family-icon);width:16px;height:16px;content:var(--smart-icon-close);cursor:pointer}.smart-grid-image-dialog .preview .list .item .attachment,.smart-grid-image-dialog .preview .list .item img{width:50px;height:50px;min-height:50px;border:2px solid transparent}.smart-grid-image-dialog .preview .list .item .attachment:hover,.smart-grid-image-dialog .preview .list .item img:hover{border:2px solid var(--smart-primary);border-radius:var(--smart-border-radius);cursor:pointer}.smart-grid-image-dialog .preview .list .item div{text-overflow:ellipsis;text-align:center}.smart-grid-image-dialog .url-zone{display:flex;justify-content:center;align-items:center;flex-direction:column;height:220px}.smart-grid-image-dialog .url-zone .upload{display:flex;flex-direction:column}.smart-grid-image-dialog .url-zone .url-title{margin-top:10px;font-size:10px;color:var(--smart-background-color)}.smart-grid-image-dialog .url-zone .smart-input{text-align:center}.smart-grid-image-dialog .smart-grid-drop-zone,.smart-grid-image-dialog .smart-grid-file-zone{border:2px dashed rgba(0,0,0,.1);border-radius:6px;height:220px;background:var(--smart-background);display:flex;align-items:center;justify-content:center;text-align:center;transition:all .2s ease-out;flex-direction:column;outline:0}.smart-grid-image-dialog .smart-grid-drop-zone .title,.smart-grid-image-dialog .smart-grid-file-zone .title{cursor:pointer;font-size:20px;font-weight:500;height:50px;display:flex;align-items:center;flex-direction:column;margin-top:20px}.smart-grid-image-dialog .smart-grid-drop-zone .title .smart-grid-icon,.smart-grid-image-dialog .smart-grid-file-zone .title .smart-grid-icon{font-size:24px;margin-bottom:5px;color:var(--smart-primary)}.smart-grid-image-dialog .smart-grid-drop-zone .subtitle,.smart-grid-image-dialog .smart-grid-file-zone .subtitle{margin-top:20px;margin-bottom:20px;display:flex;align-items:center;color:var(--smart-background-color)}.smart-grid-image-dialog .smart-grid-drop-zone.smart-grid-file-zone,.smart-grid-image-dialog .smart-grid-file-zone.smart-grid-file-zone{justify-content:space-between}.smart-grid-image-dialog .smart-grid-drop-zone .files,.smart-grid-image-dialog .smart-grid-file-zone .files{overflow:auto;display:grid;grid-template-columns:1fr 1fr 1fr 1fr;width:100%;padding:10px;font-family:var(--smart-font-family);font-size:var(--smart-font-size)}.smart-grid-image-dialog .smart-grid-drop-zone .files .item,.smart-grid-image-dialog .smart-grid-file-zone .files .item{display:flex;flex-direction:column;align-items:center;cursor:pointer;padding:2px}.smart-grid-image-dialog .smart-grid-drop-zone .files .item img,.smart-grid-image-dialog .smart-grid-file-zone .files .item img{width:24px;height:24px}.smart-grid-dialog-overlay,.smart-grid-overlay{z-index:100;opacity:.1;height:100%;left:0;top:0;width:100%;position:absolute}.smart-grid-image-dialog .smart-grid-drop-zone .files .item.active,.smart-grid-image-dialog .smart-grid-file-zone .files .item.active{background:var(--smart-ui-state-selected);border:1px solid var(--smart-ui-state-border-selected)}.smart-grid-dialog-overlay{background:#333}.smart-grid-overlay{background:0 0}.smart-grid-slider-dialog,.smart-grid-text-area-dialog{z-index:99999;position:absolute;min-width:160px;min-height:140px;font-size:var(--smart-font-size);font-family:var(--smart-font-family);background:var(--smart-background);border:none;box-shadow:0 0 0 3px var(--smart-primary)!important;border-radius:1px;color:var(--smart-background-color);box-sizing:border-box;overflow:visible}.smart-grid-slider-dialog.smart-grid-slider-dialog,.smart-grid-text-area-dialog.smart-grid-slider-dialog{min-height:60px;max-width:200px;transform:rotate(-90deg)}.smart-grid-slider-dialog .smart-grid-text-area-resizer,.smart-grid-text-area-dialog .smart-grid-text-area-resizer{position:absolute;background:var(--smart-primary);color:var(--smart-primary-color);height:16px;font-size:10px;right:-3px;top:-16px;border-top-left-radius:4px;border-top-right-radius:4px}.smart-grid-slider-dialog .smart-grid-slider-container,.smart-grid-slider-dialog .smart-grid-text-area-container,.smart-grid-text-area-dialog .smart-grid-slider-container,.smart-grid-text-area-dialog .smart-grid-text-area-container{width:100%;height:100%;overflow:hidden}.smart-grid-slider-dialog .smart-grid-slider-container,.smart-grid-text-area-dialog .smart-grid-slider-container{height:100%;position:absolute;display:flex;padding:6px;box-sizing:border-box}.smart-grid-slider-dialog smart-scroll-bar[orientation=vertical],.smart-grid-text-area-dialog smart-scroll-bar[orientation=vertical]{height:100%;right:0;top:0;position:absolute;width:var(--smart-scroll-bar-size)}.smart-grid-slider-dialog smart-text-area,.smart-grid-slider-dialog textarea,.smart-grid-text-area-dialog smart-text-area,.smart-grid-text-area-dialog textarea{padding:3px 20px 3px 3px;min-height:120px;width:calc(100% + var(--smart-scroll-bar-size));overflow-x:hidden;height:120px;box-sizing:border-box;border:none;background:inherit;outline:0;resize:none;color:inherit}.smart-grid-validation-error{position:absolute;background:var(--smart-error);color:var(--smart-error-color);border-radius:var(--smart-border-radius);padding:7px;width:auto;height:auto;z-index:99}.smart-selection-overlay{position:absolute;border:2px solid var(--smart-primary);z-index:10}.smart-selection-overlay-content{background:var(--smart-ui-state-selected);opacity:.2;width:100%;height:100%}.smart-selection-overlay-content:after{cursor:move;content:"";height:4px;width:calc(100% - 10px);position:absolute;bottom:0}.smart-selection-overlay-border-content{border:0 solid var(--smart-background);width:100%;height:100%}.smart-selection-overlay-border-content.handle:after{border:1px solid var(--smart-background);content:"";background:var(--smart-primary);width:4px;height:4px;position:absolute;right:-4px;bottom:-4px;cursor:crosshair}.smart-input-overlay{background:var(--smart-ui-state-active);position:absolute;border-radius:100%;opacity:0;transform:scale(0);z-index:9;cursor:pointer}.smart-input-overlay.smart-animate{transition:transform .25s ease-in-out,opacity .25s ease-in-out}.smart-input-overlay-on{opacity:.3;transform:scale(1)}.smart-window.smart-grid-dialog{transition:opacity .2s,transform .2s ease-out;transform:scale(0);opacity:0;font-family:var(--smart-font-family);font-size:var(--smart-font-size)}.smart-window.smart-grid-dialog[mobile]{left:0!important;top:0!important;width:100%!important;height:100%!important}.smart-window.smart-grid-dialog.smart-grid-dialog-add-column,.smart-window.smart-grid-dialog.smart-grid-dialog-description{transform:scaleY(0)!important;transform-origin:top!important}.smart-window.smart-grid-dialog.smart-grid-dialog-add-column.view,.smart-window.smart-grid-dialog.smart-grid-dialog-description.view{transform-origin:unset!important;transform:scale(0)!important}.smart-window.smart-grid-dialog.smart-grid-dialog-add-column .smart-header-notes,.smart-window.smart-grid-dialog.smart-grid-dialog-description .smart-header-notes{margin-bottom:10px;display:block}.smart-window.smart-grid-dialog.smart-grid-dialog-add-column.center,.smart-window.smart-grid-dialog.smart-grid-dialog-description.center{transform:scale(0);transform-origin:unset}.smart-window.smart-grid-dialog.smart-grid-dialog-summary{transform:scaleY(0);transform-origin:bottom;--smart-window-content-padding:0px;box-shadow:none;border-radius:0}.smart-window.smart-grid-dialog.smart-grid-dialog.disable-animation{transition:none}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row{width:750px!important}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row[mobile]{width:100%!important}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-column-info{display:grid;grid-template-columns:25px 1fr 25px;padding:5px 0;line-height:normal}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-column-info.format{grid-template-columns:25px 1fr;padding:0}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-column-info.header{display:flex;flex-direction:row;justify-content:space-between;font-weight:700;font-size:calc(var(--smart-font-size) + 1px)}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .tabs{width:100%;height:35px;overflow:hidden;background:var(--smart-background);transition:all .2s ease-in-out;display:flex;margin-bottom:10px;border-bottom:1px solid var(--smart-border)}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .tabs .tab{padding:8px 22px;display:flex;align-items:center;justify-content:center;text-transform:uppercase;color:var(--smart-background-color);cursor:pointer;white-space:nowrap}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .tabs .tab.active{color:var(--smart-primary);border-bottom:2px solid var(--smart-primary)}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-content-container{width:100%}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-next-button:after,.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-prev-button:after{font-size:calc(100% - 2px)}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-prev-button:after{content:var(--smart-icon-arrow-up)}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-next-button:after{content:var(--smart-icon-arrow-down)}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row [editor]:not([template=checkBox]){width:auto;max-width:initial}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row.disable-edit .smart-grid-edit-dialog-layout{display:block}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row.disable-edit .smart-grid-edit-dialog-layout .smart-drop-down-button,.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row.disable-edit .smart-grid-edit-dialog-layout .smart-grid-edit-dialog-activity-container{display:none!important}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row.disable-edit .smart-grid-edit-dialog-layout .smart-grid-dialog-editor{background:var(--smart-surface);pointer-events:none}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row.disable-edit .smart-grid-edit-dialog-layout .smart-grid-dialog-editor[template=image]{pointer-events:initial;height:100px;border:none;background:initial}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row.disable-edit .smart-grid-edit-dialog-layout .smart-grid-dialog-editor[template=image] .smart-grid-cell-editor>div{display:block!important}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row.disable-edit .smart-grid-edit-dialog-layout .smart-grid-dialog-editor[template=image] .attachment,.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row.disable-edit .smart-grid-edit-dialog-layout .smart-grid-dialog-editor[template=image] img{width:95px;height:95px}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row.disable-edit .smart-grid-edit-dialog-layout .smart-grid-dialog-editor[template=image] .smart-drop-image,.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row.disable-edit .smart-grid-edit-dialog-layout .smart-grid-dialog-editor[template=image] .smart-grid-icon.smart-icon-plus{display:none!important}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-layout{display:grid;grid-template-columns:1fr 350px;column-gap:20px}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-layout[mobile]{display:flex;flex-direction:column}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-layout.hide-activity{grid-template-columns:1fr}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-layout.hide-activity .smart-grid-edit-dialog-activity-container{display:none}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-layout .smart-grid-edit-dialog-editors-container.many{display:grid;grid-template-columns:1fr 1fr;grid-column-gap:1rem}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-layout .smart-grid-edit-dialog-activity-container{background:var(--smart-surface);border:1px solid var(--smart-border);border-radius:var(--smart-border-radius);overflow:hidden}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-layout .smart-grid-edit-dialog-activity-container>div{height:100%}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-layout .smart-grid-edit-dialog-activity-container .smart-grid-edit-dialog-row{height:100%;display:grid;grid-template-rows:40px 40px 40px 40px 40px 1fr}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-layout .smart-grid-edit-dialog-activity-container .history-row{padding:5px}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-layout .smart-grid-edit-dialog-activity-container .history-layout{max-height:500px;overflow:auto}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-layout .smart-grid-edit-dialog-activity-container .history-user{display:grid;grid-template-columns:35px 1fr 1fr;align-items:center}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-layout .smart-grid-edit-dialog-activity-container .history-action{display:grid;padding-left:35px;grid-template-columns:50% 50%;align-items:center;opacity:.8}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-layout .smart-grid-edit-dialog-activity-container .history-action .detail{white-space:initial}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-layout .smart-grid-edit-dialog-activity-container .smart-user{position:relative;top:10px;left:-3px}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-layout .smart-grid-edit-dialog-activity-container .user-icon{height:30px;width:30px;border-radius:50%;background-size:cover;background-position:center}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-layout .smart-grid-edit-dialog-activity-container .user-icon.image:after{content:""}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-layout .smart-grid-edit-dialog-activity-container .user-icon:after{content:var(--smart-icon-user);font-family:var(--smart-font-family-icon);width:100%;height:100%;display:flex;justify-content:center;align-items:center;font-size:24px}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-layout .smart-grid-edit-dialog-activity-container .user-name{font-weight:700}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-layout .smart-grid-edit-dialog-activity-container .time{opacity:.8}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-layout .smart-grid-edit-dialog-activity-container .comments-header{white-space:nowrap}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-layout .smart-grid-edit-dialog-activity-container .comments-tab{height:calc(100% - 35px)}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-layout .smart-grid-edit-dialog-activity-container .comments-layout{display:grid;grid-template-rows:1fr auto;flex-direction:column;padding:3px;height:calc(100% - 55px)}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-layout .smart-grid-edit-dialog-activity-container .comments-layout .comment{display:grid;grid-template-columns:30px 1fr;grid-column-gap:var(--smart-data-view-padding);margin:var(--smart-data-view-padding)}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-layout .smart-grid-edit-dialog-activity-container .comments-layout .comment .comment-header{display:grid;grid-template-columns:1fr auto auto;grid-column-gap:calc(var(--smart-data-view-padding)/ 2);margin-bottom:var(--smart-data-view-padding)}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-layout .smart-grid-edit-dialog-activity-container .comments-layout .comment .remove-button{transform:rotate(90deg);width:16px;cursor:pointer}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-layout .smart-grid-edit-dialog-activity-container .comments-layout .comment .remove-button:after{content:var(--smart-icon-close);display:flex;align-items:center;justify-content:center;height:100%;font-family:var(--smart-font-family-icon);cursor:pointer}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-layout .smart-grid-edit-dialog-activity-container .comments-layout .comment .remove-button.enabled{visibility:visible}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-layout .smart-grid-edit-dialog-activity-container .comments-layout .comments{overflow:auto;min-height:180px;max-height:350px}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-layout .smart-grid-edit-dialog-activity-container .comments-layout .footer{height:45px;display:flex;padding:5px;box-sizing:border-box;transition:height ease-in-out .2s}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-layout .smart-grid-edit-dialog-activity-container .comments-layout .footer.focus{height:70px}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-layout .smart-grid-edit-dialog-activity-container .comments-layout .footer smart-text-area{width:100%;height:100%;border-radius:0}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-layout .smart-grid-edit-dialog-activity-container .comments-layout .footer smart-button{border-top-left-radius:0;border-bottom-left-radius:0;width:100px;border-left-color:transparent}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-layout .smart-grid-edit-dialog-activity-container .format-layout{display:grid;grid-template-columns:1fr 1fr 1fr;padding:5px;width:300px}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-layout .smart-grid-edit-dialog-activity-container .format-layout.font-group{grid-column-gap:10px}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-layout .smart-grid-edit-dialog-activity-container .format-layout.font-group .format:first-child{grid-column:1/2 span}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-layout .smart-grid-edit-dialog-activity-container .format-layout.font-group .format:last-child{width:100px}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-layout .smart-grid-edit-dialog-activity-container .format-layout.button-group{background:var(--smart-background);border:1px solid var(--smart-border);border-radius:var(--smart-border-radius);height:var(--smart-editor-height);width:100px;padding:0;display:flex;justify-content:space-between}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-layout .smart-grid-edit-dialog-activity-container .format-layout.button-group .bold,.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-layout .smart-grid-edit-dialog-activity-container .format-layout.button-group .italic,.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-layout .smart-grid-edit-dialog-activity-container .format-layout.button-group .underline{font-weight:400;display:block;height:100%;padding:5px;width:100%;border-bottom:2px solid transparent;transition:border ease-in-out .2s}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-layout .smart-grid-edit-dialog-activity-container .format-layout.button-group .bold:hover,.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-layout .smart-grid-edit-dialog-activity-container .format-layout.button-group .italic:hover,.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-layout .smart-grid-edit-dialog-activity-container .format-layout.button-group .underline:hover{border-bottom:2px solid var(--smart-primary)}.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-layout .smart-grid-edit-dialog-activity-container .format-layout.button-group .bold.checked,.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-layout .smart-grid-edit-dialog-activity-container .format-layout.button-group .italic.checked,.smart-window.smart-grid-dialog.smart-grid-dialog-expand-row .smart-grid-edit-dialog-layout .smart-grid-edit-dialog-activity-container .format-layout.button-group .underline.checked{background:var(--smart-primary);color:var(--smart-primary-color)}.smart-window.smart-grid-dialog .col-sm-6{padding:0}.smart-window.smart-grid-dialog.open,.smart-window.smart-grid-dialog.view.open{transform:scale(1)!important;opacity:1}.smart-window.smart-grid-dialog .smart-field-editor-error-label{font-size:10px;color:var(--smart-error)}.smart-window.smart-grid-dialog [editor]:not([template=checkBox]){max-width:150px;height:30px;overflow:hidden;border:1px solid var(--smart-border);border-radius:var(--smart-border-radius)}.smart-window.smart-grid-dialog [editor]:not([template=checkBox])[template=textarea]{height:120px;min-height:80px;resize:vertical}.smart-window.smart-grid-dialog [editor]:not([template=checkBox])[template=textarea] smart-text-area{width:100%!important;height:100%}.smart-window.smart-grid-dialog [editor][focus],.smart-window.smart-grid-dialog [editor][focus] .smart-grid-cell-editor{border-color:var(--smart-primary)}.smart-window.smart-grid-dialog [editor][template=checkBox]{height:30px;display:flex;align-items:center}.smart-window.smart-grid-dialog [editor]:not([template=checkBox]) .smart-grid-cell-editor{width:100%;height:100%}.smart-window.smart-grid-dialog>.smart-container>.smart-footer{height:auto}.smart-window.smart-grid-dialog .column{display:flex;justify-content:space-between;padding:5px;flex-direction:column}.smart-window.smart-grid-dialog .column label{justify-content:flex-end;padding:5px 0}.smart-window.smart-grid-dialog .smart-footer .smart-stack-layout{padding:0 10px}smart-grid{width:var(--smart-grid-default-width);height:var(--smart-grid-default-height);grid-template-columns:var(--smart-grid-template-columns);grid-column-gap:var(--smart-grid-column-gap);grid-row-gap:var(--smart-grid-row-gap);contain:content;visibility:hidden}smart-grid .smart-grid-cell-loading{height:10px;position:absolute;top:calc(50% - 5px);background:var(--smart-surface);width:80%;left:10%;border:1px solid var(--smart-surface);border-radius:var(--smart-border-radius)}smart-grid .smart-grid-add-column-button,smart-grid .smart-grid-add-row-button{position:absolute;bottom:0;left:0;z-index:12;width:30px;background:var(--smart-surface);transform:scale(0);opacity:0;transition:all .2s ease-in-out;height:28px}smart-grid .smart-grid-add-column-button.float,smart-grid .smart-grid-add-row-button.float{height:30px;border-radius:50%;border:1px solid var(--smart-primary);left:5px;bottom:5px;background:var(--smart-primary);color:var(--smart-primary-color);box-shadow:var(--smart-elevation-4)}smart-grid .smart-grid-add-column-button.smart-grid-add-column-button,smart-grid .smart-grid-add-row-button.smart-grid-add-column-button{right:5px;left:initial;top:55px}smart-grid .smart-grid-add-column-button.show,smart-grid .smart-grid-add-row-button.show{transform:scale(1);opacity:1}smart-grid .smart-grid-add-column-button.show:active,smart-grid .smart-grid-add-column-button.show:hover,smart-grid .smart-grid-add-row-button.show:active,smart-grid .smart-grid-add-row-button.show:hover{color:var(--smart-primary-color);background:var(--smart-primary)}smart-grid .smart-grid-add-column-button.show:active.float,smart-grid .smart-grid-add-column-button.show:hover.float,smart-grid .smart-grid-add-row-button.show:active.float,smart-grid .smart-grid-add-row-button.show:hover.float{transform:scale(1.2);box-shadow:var(--smart-elevation-6)}smart-grid.smart-kanban-view{background:#fafafa}smart-grid.smart-kanban-view .smart-grid-add-row-button{display:none!important}smart-grid[appearance_hide-column-group-lines] smart-grid-column:not([column-group-first-child])[column-group]:before{background:0 0!important}smart-grid[appearance_allow-hover] smart-grid-cell:not([focus]):hover:not(.smart-add-new-column){background:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover)}smart-grid[appearance_allow-hover] smart-grid-cell:not([focus]):hover:not(.smart-add-new-column) .smart-label{background:var(--smart-ui-state-hover)!important;color:var(--smart-ui-state-color-hover)!important}smart-grid[appearance_allow-hover]:not([selection_allow-cell-selection]) smart-grid-row:hover smart-grid-cell:not([focus]){background:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover)}smart-grid[appearance_allow-hover]:not([selection_allow-cell-selection]) smart-grid-row:hover smart-grid-cell:not([focus]) .smart-label{background:var(--smart-ui-state-hover)!important;color:var(--smart-ui-state-color-hover)!important}smart-grid[tree] smart-grid-cell[has-toggle-button]:not([detail]) button[toggle-button]{padding-right:14px;margin-left:7px}smart-grid.smart-element{visibility:inherit}smart-grid:not([selection_allow-cell-selection])[focus] smart-grid-row[focus] smart-grid-cell:not([editor]):not([header]),smart-grid:not([selection_allow-cell-selection])[focus] smart-grid-row[focus] smart-grid-cell:not([editor]):not([header]) .smart-label:not([style]),smart-grid:not([selection_allow-cell-selection])[focus][appearance_show-selection-on-top] smart-grid-row[focus] smart-grid-cell:not([editor]):not([header]),smart-grid:not([selection_allow-cell-selection])[focus][appearance_show-selection-on-top] smart-grid-row[focus] smart-grid-cell:not([editor]):not([header]) .smart-label{background:rgba(var(--smart-primary-rgb),.7)!important;color:var(--smart-primary-color)!important;border-color:var(--smart-primary)!important}smart-grid:not([selection_allow-cell-selection])[focus] smart-grid-row[focus] smart-grid-cell:not([editor]):not([header]):before{background:var(--smart-primary)}smart-grid[selection_allow-cell-selection] smart-grid-row[focus] smart-grid-cell[focus]:not([editor]):not([header]){background:var(--smart-primary);color:var(--smart-primary-color);border-color:var(--smart-primary)}.smart-grid.smart-container{grid-template-columns:var(--smart-grid-template-columns);grid-column-gap:var(--smart-grid-column-gap);grid-row-gap:var(--smart-grid-row-gap);contain:content;visibility:hidden}.smart-grid.smart-container .smart-grid-header,.smart-grid>.smart-container .smart-grid-header{background:var(--smart-surface);color:var(--smart-surface-color);border-color:var(--smart-border);height:var(--smart-grid-header-height);border-bottom-width:1px;border-bottom-style:solid;width:100%}.smart-grid.smart-container .smart-grid-column-header,.smart-grid>.smart-container .smart-grid-column-header{height:var(--smart-grid-column-header-height);min-height:30px;color:var(--smart-surface-color);overflow:hidden;position:relative;z-index:99}.smart-grid.smart-container .smart-grid-pager,.smart-grid>.smart-container .smart-grid-pager{height:var(--smart-pager-default-height);overflow:hidden;z-index:99;border-top-width:1px;border-top-style:solid;border-top-color:var(--smart-border);width:100%;background:var(--smart-surface);color:var(--smart-surface-color)}.smart-grid.smart-container .smart-grid-pager[top],.smart-grid>.smart-container .smart-grid-pager[top]{border-top-color:transparent;border-bottom:1px solid var(--smart-border)}.smart-grid.smart-container .smart-grid-content,.smart-grid>.smart-container .smart-grid-content{width:100%;height:100%;padding:0;overflow:hidden;border:none;background:var(--smart-surface)}.smart-grid.smart-container.smart-grid-resize-mode,.smart-grid>.smart-container.smart-grid-resize-mode{overflow:visible}.smart-grid.smart-element{visibility:inherit}.smart-grid[sorting_mode=many] smart-grid-column[sort-index] .smart-label.align-right{margin-left:-10px}.smart-grid[sorting_mode=many] smart-grid-column[sort-index] .smart-sort-button[order]{width:40px}.smart-grid[sorting_mode=many] smart-grid-column[sort-index] .smart-sort-button:after{content:attr(order);font-family:var(--smart-font-family);font-size:11px;display:flex;justify-content:center;align-items:center;border-radius:50%;background:var(--smart-primary);color:var(--smart-primary-color);padding:5px;margin-left:5px;height:8px;box-sizing:content-box}.smart-grid smart-grid-row[data-id="9999999"]{box-shadow:rgba(140,149,159,.15) 0 3px 6px 0}.smart-grid smart-grid-row .smart-grid-row-detail{overflow:hidden;width:100%;z-index:3;position:absolute;background:var(--smart-background);color:var(--smart-background-color);border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:var(--smart-border);transform-origin:top;transform:scaleY(0);display:flex;justify-content:flex-start}.smart-grid smart-grid-row .smart-grid-row-detail>div{width:100%;height:100%;line-height:initial;overflow:hidden;position:relative}.smart-grid smart-grid-column:not(.smart-grid-column-border).smart-grid-vertical-border-collapse:before,.smart-grid smart-grid-row smart-grid-cell:not(.smart-grid-column-border).smart-grid-vertical-border-collapse:before{width:0}.smart-grid smart-grid-column:not(.smart-grid-column-border).smart-grid-horizontal-border-collapse:after,.smart-grid smart-grid-row smart-grid-cell:not(.smart-grid-column-border).smart-grid-horizontal-border-collapse:after{height:0}.smart-grid smart-grid-row[has-detail]{transition:height .25s ease-in-out}.smart-grid smart-grid-row[has-detail] .smart-grid-row-detail.smart-animate{transition:transform .25s ease-in-out,height .25s ease-in-out}.smart-grid smart-grid-row[show-detail] .smart-grid-row-detail{transform:scaleY(1)}.smart-grid smart-grid-row[unbound] smart-grid-cell{background:var(--smart-grid-cell-background-unbound);color:var(--smart-grid-cell-color-unbound)}.smart-grid smart-grid-cell.dragged,.smart-grid smart-grid-column.dragged{background-image:linear-gradient(45deg,rgba(0,0,0,.1) 25%,transparent 25%,transparent 50%,rgba(0,0,0,.1) 50%,rgba(0,0,0,.1) 75%,transparent 75%,transparent);background-size:3em 3em}.smart-grid smart-grid-column .smart-grid-command-item{padding:0;align-items:center;justify-content:center;border-radius:0}.smart-grid smart-grid-column .smart-add-new-column{border-right:1px solid var(--smart-border)}.smart-grid smart-grid-column.afterTarget:last-child:after{right:0}.smart-grid smart-grid-cell .smart-grid-command-item{padding:0 3px;overflow:hidden}.smart-grid smart-scroll-bar{overflow:visible;position:absolute;bottom:0;height:calc(var(--smart-scroll-bar-size));width:100%;z-index:11;touch-action:none}.smart-grid smart-scroll-bar:after,.smart-grid smart-scroll-bar:before{height:var(--smart-scroll-bar-size);top:0;background:var(--smart-scroll-bar-background);content:"";position:absolute}.smart-grid smart-scroll-bar:after{width:var(--smart-scroll-bar-size);min-width:var(--smart-scroll-bar-far-size);left:100%}.smart-grid smart-scroll-bar:before{width:var(--smart-scroll-bar-near-size);left:calc(0px - var(--smart-scroll-bar-near-size))}.smart-grid smart-scroll-bar.smart-element{border:none;border-radius:0}.smart-grid smart-scroll-bar.bottom-corner-visible{width:calc(100% - var(--smart-scroll-bar-size))}.smart-grid smart-scroll-bar[orientation=vertical]{right:0;top:0;height:100%;width:calc(var(--smart-scroll-bar-size));border-left:1px solid var(--smart-border)}.smart-grid smart-scroll-bar[orientation=vertical]:before{position:absolute;content:"";height:var(--smart-scroll-bar-near-size);width:var(--smart-scroll-bar-size);background:var(--smart-scroll-bar-background);left:-1px;top:calc(0px - var(--smart-scroll-bar-near-size));border-left:1px solid var(--smart-border)}.smart-grid smart-scroll-bar[orientation=vertical]:after{position:absolute;content:"";width:var(--smart-scroll-bar-size);height:var(--smart-scroll-bar-size);min-height:var(--smart-scroll-bar-far-size);background:var(--smart-scroll-bar-background);left:0;bottom:calc(0px - var(--smart-scroll-bar-far-size));top:auto;min-width:0;z-index:-1}.smart-grid smart-scroll-bar[orientation=vertical].bottom-corner-visible{height:calc(100% - var(--smart-scroll-bar-size))}.smart-grid .smart-data-view-header-drop-down{transition:transform ease-in-out .2s;transform:scaleY(0)}.smart-grid .smart-data-view-header-drop-down.open{transform:scaleY(1)}.smart-grid .smart-breadcrumb-items>.afterTarget:last-child:after,.smart-grid .smart-breadcrumb-items>.target:before{content:"";display:none}.smart-grid .smart-grid-command-item{display:flex;padding:5px 8px;-webkit-user-select:none;user-select:none;min-width:25px;border:1px solid transparent;cursor:pointer;border-top-left-radius:var(--smart-item-border-top-left-radius);border-top-right-radius:var(--smart-item-border-top-right-radius);border-bottom-right-radius:var(--smart-item-border-bottom-right-radius);border-bottom-left-radius:var(--smart-item-border-bottom-left-radius)}.smart-grid .smart-grid-command-item:hover{background:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover);border:1px solid var(--smart-ui-state-border-hover)}.smart-grid .smart-grid-command-item:active{background:var(--smart-ui-state-active);color:var(--smart-ui-state-color-active);border:1px solid var(--smart-ui-state-border-active)}.smart-grid .smart-grid-command-item .smart-grid-icon{display:flex;min-width:16px;width:auto}.smart-grid .smart-grid-command-item span:last-child:not(:first-child){margin-left:4px}.smart-grid .smart-grid-command-bar{display:flex;align-items:center;padding:5px}.smart-grid .smart-grid-command-bar .smart-grid-icon{display:flex}.smart-grid .smart-grid-row:not([leaf]) smart-grid-cell[group]:not([header]) div:not([content]){visibility:hidden}.smart-grid .smart-grid-resize-line{position:absolute;z-index:99;opacity:.8;width:var(--smart-grid-resize-line-size);background:var(--smart-primary)}.smart-grid .smart-grid-resize-line.row{height:var(--smart-grid-resize-line-size)}.smart-grid .smart-grid-resize-tooltip{position:absolute;bottom:0;z-index:99;background:var(--smart-primary);color:var(--smart-primary-color);padding:5px;transition:width .2s ease-out}.smart-grid .smart-grid-drag-line{position:absolute;z-index:199;opacity:1;width:calc(2 * var(--smart-grid-resize-line-size));background:var(--smart-primary);font-family:var(--smart-font-family-icon);transition:opacity cubic-bezier(.6,.2,0,.8) .25s}.smart-grid .smart-grid-drag-line:after{content:var(--smart-icon-arrow-up);color:var(--smart-primary);font-size:16px;position:absolute;left:0;bottom:0;margin-left:-7px;font-weight:700;margin-bottom:-11px}.smart-grid .smart-grid-drag-line:before{content:var(--smart-icon-arrow-down);color:var(--smart-primary);font-size:16px;position:absolute;left:0;top:0;margin-left:-7px;font-weight:700;margin-top:-7px}.smart-grid .smart-grid-drag-line.row{height:calc(2 * var(--smart-grid-resize-line-size))}.smart-grid .smart-grid-drag-line.row:after{content:var(--smart-icon-arrow-left);right:0;left:initial;bottom:0;margin-right:-7px;font-weight:700;margin-bottom:-7px}.smart-grid[grouped] smart-grid-row[level]>.smart-grid-cell-container>smart-grid-cell div[content]>div[checkbox]:not(.smart-hidden),.smart-grid[tree] smart-grid-row[level]>.smart-grid-cell-container>smart-grid-cell div[content]>div[checkbox]:not(.smart-hidden){margin-right:7px}.smart-grid .smart-grid-drag-line.row:before{content:var(--smart-icon-arrow-right);left:0}.smart-grid[tree] smart-grid-row[level]>.smart-grid-cell-container>smart-grid-cell div[content]{line-height:initial;width:100%;height:100%;display:flex;align-items:center}.smart-grid[grouped] smart-grid-row[level]>.smart-grid-cell-container>smart-grid-cell div[content]{line-height:initial;width:100%;height:100%;display:flex;align-items:center}.smart-grid[grouped] smart-grid-row[level] smart-grid-cell[group]{border-right:1px solid var(--smart-border);padding-right:1px}.smart-grid[grouped] smart-grid-row[level] smart-grid-cell[group] div[group-advanced]{font-size:12px;grid-template-columns:auto auto auto;display:grid;grid-column-gap:5px;align-items:center}.smart-grid[grouped] smart-grid-row[level] smart-grid-cell[group] div[group-advanced]:hover span[group] span{transform:scale(1.1);opacity:1;color:var(--smart-primary)}.smart-grid[grouped] smart-grid-row[level] smart-grid-cell[group] div[group-advanced] span[group]{display:flex;font-weight:700}.smart-grid[grouped] smart-grid-row[level] smart-grid-cell[group] div[group-advanced] span[group] span{opacity:.7;font-weight:400;margin-left:-8px;transform:scale(.9)}.smart-grid[grouped] smart-grid-row[level] smart-grid-cell[group] div[group-advanced] span[value]{font-size:var(--smart-font-size);position:relative;white-space:nowrap;text-overflow:ellipsis;-webkit-user-select:none;user-select:none;display:flex;align-items:center;padding:2px 6px;font-weight:400;border-radius:20px;background-color:var(--smart-primary);color:var(--smart-primary-color);border:1px solid var(--smart-primary)}.smart-grid[grouped] smart-grid-row[level] smart-grid-cell[group] div[group-advanced] span[summary]{font-weight:400;font-size:10px;opacity:.7}.smart-grid[grouped] smart-grid-row[level] smart-grid-cell[group] div[group-advanced]:hover span[summary]{opacity:1}.smart-grid[appearance_allow-header-hover] smart-grid-cell[header]:hover,.smart-grid[appearance_allow-header-hover] smart-grid-column:not(.top-far-corner):not(.top-near-corner)[header]:hover,.smart-grid[appearance_allow-hover]:not([selection_allow-cell-selection]) smart-grid-row:hover smart-grid-cell:not(.smart-add-new-column){background:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover);cursor:default}.smart-grid[appearance_show-column-header-drag-icon][behavior_allow-column-reorder] smart-grid-column:not([auto-generated]) .smart-drag-handle{transition:opacity ease-in-out .2s;overflow:hidden;opacity:0;width:5px;height:100%;position:absolute;left:1px;z-index:9;font-family:var(--smart-font-family-icon);cursor:move}.smart-grid[appearance_show-column-header-drag-icon][behavior_allow-column-reorder] smart-grid-column:not([auto-generated]) .smart-drag-handle:before{position:relative;font-family:var(--smart-font-family-icon);content:var(--smart-icon-ellipsis);transform:rotate(90deg);display:flex;justify-content:center}.smart-grid[appearance_show-column-header-drag-icon][behavior_allow-column-reorder] smart-grid-column:not([auto-generated]) .smart-drag-handle:hover{opacity:1}.smart-grid[appearance_show-row-header-drag-icon] smart-grid-row smart-grid-cell[header]:not([detail])>.smart-label{height:100%;font-family:var(--smart-font-family-icon);font-style:normal;font-weight:400;color:inherit;font-size:14px;text-decoration:inherit;font-variant:normal;text-transform:none;flex-wrap:wrap;align-items:center;justify-content:center;cursor:pointer;width:100%;position:absolute;left:0;top:0;min-width:0}.smart-grid[appearance_show-row-header-drag-icon] smart-grid-row smart-grid-cell[header]:not([detail])>.smart-label:before{background:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover);position:absolute;left:0;width:100%;content:var(--smart-icon-ellipsis);cursor:move;transform:rotate(90deg);display:flex;align-items:flex-end;justify-content:center;opacity:.25}.smart-grid[appearance_show-row-header-edit-icon] smart-grid-row[edit] smart-grid-cell[header]:not([detail])>.smart-label,.smart-grid[appearance_show-row-header-edit-icon] smart-grid-row[edit][focus] smart-grid-cell[header]:not([detail])>.smart-label{height:100%;font-family:var(--smart-font-family-icon);font-style:normal;font-weight:400;color:inherit;font-size:14px;text-decoration:inherit;font-variant:normal;text-transform:none;flex-wrap:wrap;align-items:center;justify-content:center;cursor:pointer;width:100%;position:absolute;left:0;top:0;min-width:0}.smart-grid[appearance_show-row-header-edit-icon] smart-grid-row[edit] smart-grid-cell[header]:not([detail])>.smart-label:before,.smart-grid[appearance_show-row-header-edit-icon] smart-grid-row[edit][focus] smart-grid-cell[header]:not([detail])>.smart-label:before{content:var(--smart-icon-mode-edit);background:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover);position:absolute;left:0;width:100%}.smart-grid[appearance_show-row-header-edit-icon] smart-grid-row[edit] smart-grid-cell[header]:not([detail]):last-child>.smart-label,.smart-grid[appearance_show-row-header-edit-icon] smart-grid-row[edit][focus] smart-grid-cell[header]:not([detail]):last-child>.smart-label{height:100%;font-family:var(--smart-font-family-icon);font-style:normal;font-weight:400;color:inherit;font-size:14px;text-decoration:inherit;font-variant:normal;text-transform:none;flex-wrap:wrap;align-items:center;justify-content:center;cursor:pointer;width:100%;position:absolute;left:0;top:0;min-width:0}.smart-grid[appearance_show-row-header-focus-icon] smart-grid-row[focus]:not([edit]) smart-grid-cell[header]:not([detail]):not(:hover)>.smart-label:before{content:var(--smart-icon-arrow-right)}.smart-grid[appearance_show-row-header-focus-icon] smart-grid-row[focus]:not([edit]) smart-grid-cell[header]:not([detail]):last-child>.smart-label,.smart-grid[appearance_show-row-header-focus-icon] smart-grid-row[focus]:not([edit]) smart-grid-cell[header]:not([detail])>.smart-label{height:100%;font-family:var(--smart-font-family-icon);font-style:normal;font-weight:400;color:inherit;font-size:14px;text-decoration:inherit;font-variant:normal;text-transform:none;flex-wrap:wrap;align-items:center;justify-content:center;cursor:pointer;width:100%;position:absolute;left:0;top:0;min-width:0}.smart-grid[appearance_show-row-header-focus-icon] smart-grid-row[focus]:not([edit]) smart-grid-cell[header]:not([detail])>.smart-label:before{content:var(--smart-icon-check-empty);background:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover);position:absolute;left:0;width:100%}.smart-grid[appearance_show-row-header-select-icon][selection_enabled][selection_allow-row-header-selection] smart-grid-row smart-grid-cell[header]:not([group]):not([detail]):hover>.smart-label,.smart-grid[appearance_show-row-header-select-icon][selection_enabled][selection_allow-row-header-selection] smart-grid-row smart-grid-cell[header]:not([group]):not([detail])[selected]>.smart-label{height:100%;font-family:var(--smart-font-family-icon);font-style:normal;font-weight:400;color:inherit;font-size:14px;text-decoration:inherit;font-variant:normal;text-transform:none;flex-wrap:wrap;align-items:center;justify-content:center;cursor:pointer;width:100%;position:absolute;left:0;top:0;min-width:0}.smart-grid[appearance_show-row-header-select-icon][selection_enabled][selection_allow-row-header-selection] smart-grid-row smart-grid-cell[header]:not([group]):not([detail]):hover>.smart-label:before,.smart-grid[appearance_show-row-header-select-icon][selection_enabled][selection_allow-row-header-selection] smart-grid-row smart-grid-cell[header]:not([group]):not([detail])[selected]>.smart-label:before{content:var(--smart-icon-check-empty);background:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover);position:absolute;left:0;width:100%}.smart-grid[appearance_show-row-header-select-icon][selection_enabled][selection_allow-row-header-selection] smart-grid-row smart-grid-cell[header]:not([group]):not([detail]):hover:last-child>.smart-label,.smart-grid[appearance_show-row-header-select-icon][selection_enabled][selection_allow-row-header-selection] smart-grid-row smart-grid-cell[header]:not([group]):not([detail])[selected]:last-child>.smart-label{height:100%;font-family:var(--smart-font-family-icon);font-style:normal;font-weight:400;color:inherit;font-size:14px;text-decoration:inherit;font-variant:normal;text-transform:none;flex-wrap:wrap;align-items:center;justify-content:center;cursor:pointer;width:100%;position:absolute;left:0;top:0;min-width:0}.smart-grid[appearance_show-row-header-select-icon][selection_enabled][selection_allow-row-header-selection] smart-grid-row smart-grid-cell[header]:not([group]):not([detail]):hover[selected]>.smart-label:before,.smart-grid[appearance_show-row-header-select-icon][selection_enabled][selection_allow-row-header-selection] smart-grid-row smart-grid-cell[header]:not([group]):not([detail])[selected][selected]>.smart-label:before{content:var(--smart-icon-check-squared);transform:rotate(0)}.smart-grid[appearance_show-row-header-select-icon][selection_enabled][selection_allow-row-header-selection] smart-grid-row smart-grid-cell[header]:not([group]):not([detail])[selected]>.smart-label:before{font-family:var(--smart-font-family-icon);font-style:normal;font-weight:400;content:var(--smart-icon-check-squared);transform:rotate(0)}.smart-grid.smart-container,smart-grid>.smart-container{height:100%;width:100%;margin-bottom:-3px;border-style:solid;border-width:0;border-color:transparent;position:relative;overflow:hidden;max-height:inherit;padding:0}smart-grid-row{display:block;overflow:visible;position:relative;padding:0;height:var(--smart-grid-row-height);cursor:default}smart-grid-row:hover smart-grid-cell[checkbox][header][auto-show] .smart-input{opacity:1;border-color:var(--smart-border)}smart-grid-row smart-grid-cell[header][freeze]{background:var(--smart-surface);color:var(--smart-surface-color)}smart-grid-row smart-grid-cell[header] .smart-grid-cell-editor.smart-grid-input-cell-editor{background:var(--smart-background);color:var(--smart-background-color);position:absolute;z-index:10;left:1px;top:0;padding-top:0;padding-bottom:0;height:calc(100% - 1px);box-sizing:border-box}smart-grid-row .smart-grid-row-sub-container{overflow:visible;width:100%;z-index:3;position:relative;transform-origin:top}smart-grid-row .smart-grid-row-sub-container.smart-animate{transition:transform .25s ease-in-out,height .25s ease-in-out}smart-grid-row .smart-grid-command-bar{z-index:7;height:calc(100% - 1px);position:absolute;right:0;top:0;box-sizing:border-box;overflow:hidden;transform:scaleX(0);transform-origin:right;transition:transform .25s ease;background:var(--smart-surface);color:var(--smart-surface-color);border-left:1px solid var(--smart-border)}smart-grid-row .smart-grid-command-bar.show{transform:scaleX(1)}smart-grid-row[edit]{z-index:7}smart-grid-row[edit][error]{z-index:101}smart-grid-row[edit][error] smart-grid-cell[editor]{border-color:var(--smart-error)}smart-grid-row[filter=indeterminate]{opacity:.75}smart-grid-row.smart-animate{transition:margin-bottom .25s ease-in-out,height .25s ease-in-out}smart-grid-row:not([selected]) smart-grid-cell[selected]:not([selected=indeterminate]):not([header]):not(.smart-grid-column-border):after{background:var(--smart-ui-state-color-selected);opacity:var(--smart-grid-cell-horizontal-border-opacity-selected,.3)}smart-grid-row[selected] smart-grid-cell[selected]:not([selected=indeterminate]):not([header]):not(.smart-grid-column-border):not(.smart-grid-column-border-collapse):before{background:var(--smart-ui-state-color-selected);opacity:var(--smart-grid-cell-vertical-border-opacity-selected,.3)}smart-grid-row[selected] smart-grid-cell[selected]:not([selected=indeterminate]):not([header]):not(.smart-grid-column-border):after{background:var(--smart-ui-state-color-selected);opacity:var(--smart-grid-cell-horizontal-border-opacity-selected,.3)}smart-grid-row[selected] smart-grid-cell[header]{background:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover)}smart-grid-row[selected] smart-grid-cell[checkbox][header][auto-show] .smart-input{opacity:1;border-color:var(--smart-border)}smart-grid-row[selected]:not([selected=indeterminate]):not([selected]+smart-grid-row[selected]:not([selected=indeterminate]):not([selected=none])) smart-grid-cell[selected]:not([editor]):not([header]):not(.smart-add-new-column){background:var(--smart-ui-state-selected);color:var(--smart-ui-state-color-selected)}smart-grid-row[selected]:not([selected=indeterminate]):not([selected]+smart-grid-row[selected]:not([selected=indeterminate]):not([selected=none])) smart-grid-cell[selected]:not([editor]):not([header]):not(.smart-add-new-column) .smart-label:not([data-field=_addNewColumn]):not([data-field=_rowDetailColumn]){border-top:1px solid var(--smart-ui-state-selected)}smart-grid-row[selected]:not([selected=indeterminate]) smart-grid-cell[selected]:not([selected=indeterminate]):not([header]):not(.smart-grid-column-border):before{background:var(--smart-ui-state-color-selected);opacity:var(--smart-grid-cell-vertical-border-opacity-selected,.3)}smart-grid-row[selected=none] smart-grid-cell{color:var(--smart-disabled)}smart-grid-row[selected=indeterminate] smart-grid-cell[selected]:not([editor]){background:var(--smart-ui-state-selected);color:var(--smart-ui-state-color-selected)}smart-grid-row[selected=indeterminate] smart-grid-cell[selected][focus]:not([editor]):not([rowspan]):not([colspan]){background:var(--smart-ui-state-active);color:var(--smart-ui-state-color-active);opacity:1}smart-grid-row[alternation-index="0"] smart-grid-cell[editor]:not([selected]):not([header]):not([highlight]):not([freeze])>.smart-label,smart-grid-row[alternation-index="1"] smart-grid-cell[editor]:not([selected]):not([header]):not([highlight]):not([freeze])>.smart-label,smart-grid-row[alternation-index="3"] smart-grid-cell[editor]:not([selected]):not([header]):not([highlight]):not([freeze])>.smart-label,smart-grid-row[alternation-index="4"] smart-grid-cell[editor]:not([selected]):not([header]):not([highlight]):not([freeze])>.smart-label{padding:0;margin:0;border:1px solid var(--smart-primary);background:var(--smart-background);box-sizing:border-box;outline:0;width:calc(100% - 1px);height:calc(100% - 1px);position:relative;left:1px;-webkit-user-select:none;user-select:none}smart-grid-row[alternation-index="0"] smart-grid-cell:not([selected]):not([header]):not([update]):not([delete]):not([add]):not([freeze]):not([focus]):not([sort]):not([filter]) .smart-label{background-color:var(--smart-background);color:var(--smart-background-color);border-color:var(--smart-border)}smart-grid-row[alternation-index="1"] smart-grid-cell:not([selected]):not([header]):not([update]):not([delete]):not([add]):not([freeze]):not([focus]):not([sort]):not([filter]) .smart-label{background-color:var(--smart-alternation-index0-background);color:var(--smart-alternation-index0-color);border-color:var(--smart-alternation-index0-border)}smart-grid-row[alternation-index="2"] smart-grid-cell:not([selected]):not([header]):not([update]):not([delete]):not([add]):not([freeze]):not([focus]):not([sort]):not([filter]) .smart-label{background-color:var(--smart-alternation-index1-background);color:var(--smart-alternation-index1-color);border-color:var(--smart-alternation-index1-border)}smart-grid-row[alternation-index="3"] smart-grid-cell:not([selected]):not([header]):not([update]):not([delete]):not([add]):not([freeze]):not([focus]):not([sort]):not([filter]) .smart-label{background-color:var(--smart-alternation-index2-background);color:var(--smart-alternation-index2-color);border-color:var(--smart-alternation-index2-border)}smart-grid-row[alternation-index="4"] smart-grid-cell:not([selected]):not([header]):not([update]):not([delete]):not([add]):not([freeze]):not([focus]):not([sort]):not([filter]) .smart-label{background-color:var(--smart-alternation-index3-background);color:var(--smart-alternation-index3-color);border-color:var(--smart-alternation-index3-border)}smart-grid-column{color:var(--smart-surface-color);background:var(--smart-surface);white-space:nowrap;border-width:0;border-style:solid;overflow:hidden;height:100%;position:absolute;font-weight:var(--smart-grid-column-font-weight,inherit);display:flex;cursor:default;min-height:30px}smart-grid-column[aria-controls],smart-grid-column[focus],smart-grid-column[selected]{background:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover)}smart-grid-column[highlight],smart-grid-column[highlight][freeze]{background:var(--smart-primary);color:var(--smart-primary-color)}smart-grid-column:hover .smart-action-button{border-color:var(--smart-ui-state-border-hover);background:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover);cursor:pointer}smart-grid-column:hover .smart-action-button div:after,smart-grid-column:hover .smart-action-button div:before{background:var(--smart-ui-state-color-hover)}smart-grid-column .smart-icon{display:none}smart-grid-column .smart-icon.show{display:flex!important;width:var(--smart-grid-column-buttons-width);height:100%;left:4px;position:relative}smart-grid-column .smart-icon.show.smart-add-new-column{left:0;width:100%;justify-content:center}smart-grid-column .smart-icon .smart-grid-icon{display:flex}smart-grid-column .smart-label:not(.smart-input){position:relative;left:0}smart-grid-column .smart-label:not(.smart-input).smart-animate{transition:width .25s ease}smart-grid-column .smart-label:not(.smart-input).one{width:calc(100% - var(--smart-grid-column-buttons-width));min-width:30px}smart-grid-column .smart-label:not(.smart-input).two{width:calc(100% - 2 * var(--smart-grid-column-buttons-width));min-width:30px}smart-grid-column .smart-label:not(.smart-input).three{width:calc(100% - 3 * var(--smart-grid-column-buttons-width));min-width:30px}smart-grid-column .smart-label:not(.smart-input).four{width:calc(100% - 4 * var(--smart-grid-column-buttons-width));min-width:30px}smart-grid-column .smart-label:not(.smart-input).five{width:calc(100% - 5 * var(--smart-grid-column-buttons-width));min-width:30px}smart-grid-column .smart-label:not(.smart-input).six{width:calc(100% - 6 * var(--smart-grid-column-buttons-width));min-width:30px}smart-grid-column .smart-buttons-group{height:100%;right:0;top:0;display:flex;position:absolute;transform:translateX(var(--smart-grid-column-buttons-width))}smart-grid-column .smart-buttons-group.smart-animate{transition:transform .25s ease}smart-grid-column .smart-buttons-group.action{transform:translateX(0)}smart-grid-column .smart-sort-button.asc,smart-grid-column .smart-sort-button.desc{display:flex}smart-grid-column .smart-sort-button.asc:before,smart-grid-column .smart-sort-button.desc:before{content:var(--smart-icon-arrow-down);position:relative}smart-grid-column .smart-sort-button.asc:before{transform:rotate(180deg)}smart-grid-column .smart-sort-button.desc:before{transform:rotate(0)}smart-grid-column .smart-filter-button.smart-animate:before,smart-grid-column .smart-sort-button.smart-animate:before{transition:transform .2s ease-out,opacity .3s ease-out}smart-grid-column .smart-description-button{margin-right:3px}smart-grid-column .smart-action-button{display:flex;border-left:1px solid var(--smart-border);background:var(--smart-surface);color:var(--smart-surface-color)}smart-grid-column .smart-action-button div{width:14px;position:relative;display:flex!important;background:0 0;border-top:2px solid;border-bottom:2px solid;color:inherit;font-size:0;transition:all .25s ease-in-out;height:12px}smart-grid-column .smart-action-button div:after,smart-grid-column .smart-action-button div:before{content:"";display:block;width:100%;height:2px;position:absolute;top:50%;left:50%;background:var(--smart-surface-color);transform:translate(-50%,-50%);transition:transform .25s ease-in-out}smart-grid-column .smart-action-button.smart-animate{transition:width .25s ease}smart-grid-column .smart-action-button.active:before{transform:translate(-50%,-50%) rotate(45deg)}smart-grid-column .smart-action-button.active:after{transform:translate(-50%,-50%) rotate(-45deg)}smart-grid-column .smart-grid-cell-editor.smart-grid-input-cell-editor{background:var(--smart-background);color:var(--smart-background-color);position:absolute;z-index:10;left:1px;top:0;padding-top:0;padding-bottom:0;height:calc(100% - 1px);box-sizing:border-box}smart-grid-column[freeze]{background:var(--smart-surface);color:var(--smart-surface-color)}smart-grid-column[aria-controls] .smart-action-button{border-color:var(--smart-ui-state-border-focus);background:var(--smart-ui-state-focus);color:var(--smart-ui-state-color-focus)}smart-grid-column[aria-controls] .smart-action-button div:after,smart-grid-column[aria-controls] .smart-action-button div:before{background:var(--smart-ui-state-color-focus)}smart-grid-column.smart-grid-column-border{border-width:var(--smart-border-width)}smart-grid-column.top-far-corner{width:var(--smart-scroll-bar-size);position:absolute;right:0;top:0;z-index:1}smart-grid-column:not(.smart-grid-column-border):after{background:var(--smart-grid-column-horizontal-border,var(--smart-border))}smart-grid-column:not(.smart-grid-column-border):not(.smart-grid-column-border-collapse):before{background:var(--smart-border)}smart-grid-column:not(.smart-grid-column-border-collapse):before{background:var(--smart-grid-column-vertical-border,var(--smart-border))}smart-grid-row[error] smart-grid-cell.smart-add-new-column.smart-add-new-column .smart-label{background:#E2E2E2!important}smart-grid-cell{display:block;color:var(--smart-background-color);background:var(--smart-background);white-space:nowrap;border-width:0;border-style:solid;overflow:hidden;height:100%;position:absolute;text-overflow:ellipsis;font-size:var(--smart-grid-cell-font-size,inherit);font-weight:var(--smart-grid-cell-font-weight,inherit)}smart-grid-cell button[toggle-button]:after{justify-content:flex-start}smart-grid-cell .wrap{white-space:normal;display:flex;flex-direction:column;justify-content:center;line-height:1.5}smart-grid-cell .nowrap{white-space:nowrap;display:flex;flex-direction:column;justify-content:center;line-height:1.5}smart-grid-cell.smart-add-new-row{background-color:var(--smart-surface);font-style:italic}smart-grid-cell.smart-add-new-row>div{display:block!important;background-color:var(--smart-surface)}smart-grid-cell.smart-add-new-row[selected]{background:var(--smart-background)!important;color:var(--smart-background-color)!important}smart-grid-cell.smart-add-new-row[selected]::after,smart-grid-cell.smart-add-new-row[selected]::before{color:var(--smart-background-color)!important;background:var(--smart-border)!important}smart-grid-cell.smart-add-new-row:not([header]){z-index:7;background:var(--smart-surface)!important}smart-grid-cell.smart-add-new-row:not([header]) .smart-label{background:var(--smart-surface)!important}smart-grid-cell.smart-add-new-row:not([header]):before{opacity:0}smart-grid-cell.smart-add-new-row[has-toggle-button] .row-status,smart-grid-cell.smart-add-new-row[has-toggle-button] button{display:none!important}smart-grid-cell.smart-add-new-row code{border:1px solid var(--smart-border);background-color:var(--smart-background);padding:1px 6px;border-radius:6px;font-size:12px;font-family:var(--smart-font-family)}smart-grid-cell .dropdownlist,smart-grid-cell .list,smart-grid-cell .tokens{padding-left:6px;align-items:center;height:100%}smart-grid-cell .dropdownlist .smart-multi-combo-input,smart-grid-cell .list .smart-multi-combo-input,smart-grid-cell .tokens .smart-multi-combo-input{width:calc(100% - var(--smart-editor-addon-width))}smart-grid-cell .dropdownlist .smart-multi-combo-input .smart-flex,smart-grid-cell .list .smart-multi-combo-input .smart-flex,smart-grid-cell .tokens .smart-multi-combo-input .smart-flex{align-items:center;row-gap:5px;column-gap:5px}smart-grid-cell .dropdownlist .smart-flex-wrap,smart-grid-cell .list .smart-flex-wrap,smart-grid-cell .tokens .smart-flex-wrap{flex-wrap:wrap;padding-right:5px}smart-grid-cell .dropdownlist .smart-flex-auto,smart-grid-cell .list .smart-flex-auto,smart-grid-cell .tokens .smart-flex-auto{height:auto;display:flex}smart-grid-cell .dropdownlist .smart-token,smart-grid-cell .list .smart-token,smart-grid-cell .tokens .smart-token{line-height:1.5;display:inline-flex}smart-grid-cell .dropdownlist .smart-arrow-down,smart-grid-cell .list .smart-arrow-down,smart-grid-cell .tokens .smart-arrow-down{width:0;opacity:0;cursor:pointer}smart-grid-cell .dropdownlist.dropdownlist .smart-arrow-down,smart-grid-cell .list.dropdownlist .smart-arrow-down,smart-grid-cell .tokens.dropdownlist .smart-arrow-down{background:inherit}smart-grid-cell .dropdownlist.dropdownlist .smart-arrow-down,smart-grid-cell .dropdownlist:hover .smart-arrow-down,smart-grid-cell .list.dropdownlist .smart-arrow-down,smart-grid-cell .list:hover .smart-arrow-down,smart-grid-cell .tokens.dropdownlist .smart-arrow-down,smart-grid-cell .tokens:hover .smart-arrow-down,smart-grid-cell[focus] .list .smart-arrow-down,smart-grid-cell[focus] .tokens .smart-arrow-down{width:var(--smart-editor-addon-width);min-width:var(--smart-editor-addon-width);opacity:1}smart-grid-cell .attachments,smart-grid-cell .images{display:grid;grid-template-columns:1fr auto auto;height:100%}smart-grid-cell .attachments .container,smart-grid-cell .images .container{display:flex;height:calc(100% - 3px);align-items:center;overflow:hidden;padding-left:5px}smart-grid-cell .attachments .smart-drop-image,smart-grid-cell .images .smart-drop-image{margin-left:-5px}smart-grid-cell .attachments .smart-drop-image::after,smart-grid-cell .images .smart-drop-image::after{font-family:var(--smart-font-family-icon);content:var(--smart-icon-download-alt);margin-left:5px}smart-grid-cell .attachments .arrowbtn,smart-grid-cell .images .arrowbtn{width:15px;background:var(--smart-surface)}smart-grid-cell .attachments .arrowbtn:hover,smart-grid-cell .images .arrowbtn:hover{cursor:pointer;background:var(--smart-primary);color:var(--smart-primary-color)}smart-grid-cell .attachments .attachment,smart-grid-cell .attachments img,smart-grid-cell .images .attachment,smart-grid-cell .images img{height:23px;width:23px;border:1px solid var(--smart-border);margin-right:3px;border-radius:var(--smart-border-radius);align-content:center}smart-grid-cell .attachments .attachment:hover,smart-grid-cell .attachments img:hover,smart-grid-cell .images .attachment:hover,smart-grid-cell .images img:hover{cursor:pointer;border-color:var(--smart-primary)}smart-grid-cell .smart-grid-cell-editor{width:100%;height:100%;margin:0;border-radius:0;border:none;font-size:inherit;font-weight:inherit;background:inherit;color:inherit}smart-grid-cell.smart-grid-row-border{border-top-width:var(--smart-border-width)}smart-grid-cell.smart-grid-column-border{border-bottom-width:var(--smart-border-width);border-left-width:var(--smart-border-width);border-right-width:var(--smart-border-width)}smart-grid-cell.smart-add-new-column{background:var(--smart-surface);border-left:1px solid var(--smart-border)}smart-grid-cell.smart-add-new-column.smart-add-new-column .smart-label{background:var(--smart-surface)!important}smart-grid-cell.smart-add-new-column:after,smart-grid-cell.smart-add-new-column:before{display:none}smart-grid-cell.smart-grid-filter-row-cell{background:var(--smart-surface);color:var(--smart-surface-color);border-color:var(--smart-surface);--smart-grid-cell-horizontal-border:transparent}smart-grid-cell.smart-grid-filter-row-cell .smart-filter-input-type{outline:0;background:inherit;border:none;border-radius:0;width:var(--smart-editor-addon-width);font-family:var(--smart-font-family-icon);font-style:normal;font-weight:400;color:inherit;font-size:14px;text-decoration:inherit;font-variant:normal;text-transform:none;flex-wrap:wrap;align-items:center;justify-content:center;cursor:pointer}smart-grid-cell.smart-grid-filter-row-cell .smart-filter-input-value{width:calc(100% - var(--smart-editor-addon-width));border:none;resize:none;border-radius:0;background:inherit;color:inherit;outline:0;overflow:hidden}smart-grid-cell.smart-grid-filter-row-cell .smart-filter-input-value.smart-grid-number-input-cell-editor .nav{border:1px solid var(--smart-border)}smart-grid-cell.smart-grid-filter-row-cell .smart-filter-input-container{display:flex;margin-left:1px;width:calc(100% - 1px)!important;height:100%;border:1px solid transparent}smart-grid-cell.smart-grid-filter-row-cell .smart-filter-input-container[focus]{border-color:var(--smart-ui-state-border-active);border-style:solid;border-width:1px;background:var(--smart-background)}smart-grid-cell.smart-grid-filter-row-cell .smart-filter-input-container[focus] .smart-filter-input-value.smart-grid-number-input-cell-editor .nav{background:var(--smart-background)}smart-grid-cell.smart-grid-filter-row-cell[template=checkBox] .smart-filter-input-value.smart-grid-check-box-cell-editor{width:14px;height:14px}smart-grid-cell:not(.smart-grid-column-border):after{background:var(--smart-grid-cell-horizontal-border,var(--smart-border))}smart-grid-cell:not(.smart-grid-column-border):not(.smart-grid-column-border-collapse):before{background:var(--smart-grid-cell-vertical-border,var(--smart-border))}smart-grid-cell[has-toggle-button] .smart-label{padding:0;flex-direction:unset}smart-grid-cell[has-toggle-button] .row-status{font-size:16px;font-family:var(--smart-font-family-icon);width:20px;min-width:20px}smart-grid-cell[has-toggle-button] .row-status:before{color:var(--smart-surface-color);content:var(--smart-icon-star-empty);transition:opacity .2s ease-in-out;opacity:.3}smart-grid-cell[has-toggle-button] .row-status:hover::before{color:var(--smart-primary);opacity:1}smart-grid-cell[has-toggle-button] .row-status.starred::before{color:var(--smart-primary);content:var(--smart-icon-star);opacity:1}smart-grid-cell[has-toggle-button] .row-status.custom.starred::before,smart-grid-cell[has-toggle-button] .row-status.custom:hover,smart-grid-cell[has-toggle-button] .row-status.custom:hover::before{color:inherit}smart-grid-cell[has-toggle-button] .row-status.comments::after{content:"";width:10px;height:10px;background:var(--smart-error);position:absolute;transform:rotate(45deg);top:-5px;right:-5px}smart-grid-cell[has-toggle-button] button[toggle-button]{font-family:var(--smart-font-family-icon);font-style:normal;font-weight:400;color:inherit;text-decoration:inherit;font-variant:normal;text-transform:none;display:flex;flex-wrap:wrap;align-items:center;justify-content:center;width:20px;padding:0;min-width:20px;cursor:pointer;background:0 0;border:none;outline:0;font-size:16px;flex-direction:column}smart-grid-cell[has-toggle-button] button[toggle-button]:after{content:var(--smart-icon-arrow-down)}smart-grid-cell[has-toggle-button] button[toggle-button][load]::after{background-image:url('load.55679d76435c7055.gif')!important;background-repeat:no-repeat!important;content:"";width:16px;height:16px}smart-grid-cell[has-toggle-button] button[toggle-button].row-detail.row-comments>div{font-size:11px;font-family:var(--smart-font-family);display:flex;justify-content:center;font-weight:700;color:var(--smart-primary)}smart-grid-cell[has-toggle-button] button[toggle-button].row-detail.row-comments:before{content:"";width:10px;height:10px;background:var(--smart-error);position:absolute;transform:rotate(45deg);top:-5px;right:-5px}smart-grid-cell[has-toggle-button] button[toggle-button].row-detail:after{content:var(--smart-icon-resize-full);font-size:13px;color:var(--smart-primary)}smart-grid-cell[has-toggle-button] button[toggle-button].row-detail:hover:after{color:var(--smart-surface-color);padding:3px}smart-grid-cell[has-toggle-button] button[toggle-button][toggled]:after{transform:rotate(180deg)}smart-grid-cell[has-toggle-button] button[toggle-button].smart-animate:after{transition:transform .25s ease-out}smart-grid-cell[has-toggle-button] .smart-indent{width:14px;left:7px;height:100%;position:relative}smart-grid-cell[has-toggle-button] .smart-indent:after{height:50%;content:"-";color:var(--smart-background-color);visibility:hidden}smart-grid-cell[editor]>.smart-label:not(.smart-input),smart-grid-cell[error]:not([row-editor])>.smart-label{width:calc(100% - 1px);height:calc(100% - 1px);position:relative;-webkit-user-select:none;user-select:none;box-sizing:border-box;outline:0}smart-grid-cell[has-toggle-button] .smart-indent:first-child{visibility:hidden;border-left:1px solid var(--smart-border)}smart-grid-cell[has-toggle-button] .smart-label,smart-grid-cell[has-toggle-button] div[indent]{display:flex}smart-grid-cell[command] .smart-label{display:flex;flex-direction:row;cursor:pointer;justify-content:center}smart-grid-cell[command] .align-center{padding:0}smart-grid-cell[header],smart-grid-cell[header]:last-child{background:var(--smart-surface);color:var(--smart-surface-color);border-color:var(--smart-border)}smart-grid-cell[header]:not(.smart-grid-column-border):after{background:var(--smart-grid-cell-header-horizontal-border,var(--smart-grid-cell-horizontal-border,var(--smart-border)))}smart-grid-cell[header]:not(.smart-grid-column-border):not(.smart-grid-column-border-collapse):before{background:var(--smart-grid-cell-header-vertical-border,var(--smart-grid-cell-vertical-border,var(--smart-border)))}smart-grid-cell[editor]>.smart-label:not(.smart-input){padding:0;margin:0 0 0 1px;border:1px solid var(--smart-primary);background:var(--smart-background)}smart-grid-cell[editor][row-editor]{border:0 solid var(--smart-primary);border-top:1px solid var(--smart-primary);border-bottom:1px solid var(--smart-primary);border-left:1px solid var(--smart-primary)}smart-grid-cell[editor][row-editor] .smart-label:not(.smart-input){border:0 solid var(--smart-primary)!important}smart-grid-cell[editor][row-editor]:first-child{border-left:1px solid var(--smart-primary)!important}smart-grid-cell[editor][row-editor]:last-child{border-right:1px solid var(--smart-primary)}smart-grid-cell[editor][row-editor]~smart-grid-cell[editor][row-editor]{border-left:0 solid var(--smart-primary)}smart-grid-cell[editor=dateTimePicker]{--smart-border-radius:0px;--smart-border-top-left-radius:0px;--smart-border-top-right-radius:0px;--smart-border-bottom-left-radius:0px;--smart-border-bottom-right-radius:0px}smart-grid-cell[editor=checkBox] .smart-label{padding-bottom:0;justify-content:center;align-items:center;cursor:pointer}smart-grid-cell[template] .smart-label{padding-left:0;padding-right:0}smart-grid-cell[template][template=email] a,smart-grid-cell[template][template=url] a{color:var(--smart-primary);font-size:var(--smart-font-size)}smart-grid-cell[template][template=email][selected] a,smart-grid-cell[template][template=url][selected] a{color:var(--smart-primary-color)}smart-grid-cell[template][template=rating][selected] .rating div{visibility:inherit}smart-grid-cell[template][template=rating] .rating{display:flex}smart-grid-cell[template][template=rating] .rating div{color:#DFDFDF}smart-grid-cell[template][template=rating] .rating div.hover{color:#FFBA05;opacity:.5}smart-grid-cell[template][template=rating] .rating div.value{visibility:inherit;color:#FFBA05;opacity:1}smart-grid-cell[selected]:not([editor]),smart-grid-cell[selected]:not([editor])[focus]:not([rowspan]):not([colspan]){background:var(--smart-ui-state-selected);color:var(--smart-ui-state-color-selected)}smart-grid-cell[template][template=rating] .rating div.down{animation:starJump 1s ease-in-out}smart-grid-cell[template][template=rating] .rating:hover div{visibility:inherit}.smart-grid-view-bar .smart-grid-view-chooser-container .smart-grid-view-storage smart-menu .smart-menu-item-label-element .smart-icon-delete,.smart-grid-view-bar .smart-grid-view-chooser-container .smart-grid-view-storage smart-menu .smart-menu-item-label-element .smart-icon-mode-edit,smart-grid-cell[addNewRow]:after{visibility:hidden}@keyframes starJump{from{transform:translateY(0) scale(.67,.67)}20%{transform:translateY(0) scale(.75,.5)}40%{transform:translateY(0) scale(1.15,1.15)}60%{transform:translateY(0) scale(1.1,.6)}80%{transform:translateY(0) scale(.95,1.1)}to{transform:translateY(0) scale(1,1)}}smart-grid-cell[template][template=autoNumber] .smart-label,smart-grid-cell[template][template=createdTime] .smart-label,smart-grid-cell[template][template=email] .smart-label,smart-grid-cell[template][template=modifiedTime] .smart-label,smart-grid-cell[template][template=password] .smart-label,smart-grid-cell[template][template=phone] .smart-label,smart-grid-cell[template][template=url] .smart-label{padding-left:4px;padding-right:2px}smart-grid-cell[template=checkBox] .smart-label{padding-bottom:0;justify-content:center;align-items:center;cursor:pointer}smart-grid-cell[template=checkBox][readonly] .smart-label,smart-grid-cell[template=checkBox][readonly] .smart-label .smart-input:after,smart-grid-cell[template=checkBox][readonly] .smart-label:after{cursor:default!important}smart-grid-cell[template=checkBox][readonly] .smart-label:hover .smart-input{--smart-ui-state-hover:var(--smart-background)}smart-grid-cell[selected]:not([editor])[focus]:not([rowspan]):not([colspan]){opacity:.8}smart-grid-cell[selected]:not([editor])[freeze]:not([rowspan]):not([colspan]){opacity:1}smart-grid-cell[selected]:not([editor])[freeze]:not([rowspan]):not([colspan])[header]{background:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover)}smart-grid-cell[addNewRow]{border-right:1px solid var(--smart-border)}smart-grid-cell[colspan],smart-grid-cell[rowspan]{background:var(--smart-background);color:var(--smart-background-color);z-index:5;padding:0}smart-grid-cell[colspan][selected]:not([editor]),smart-grid-cell[rowspan][selected]:not([editor]){background:var(--smart-primary)!important;color:var(--smart-primary-color)!important}smart-grid-cell[error]{overflow:visible;z-index:9999}smart-grid-cell[error]:not([row-editor])>.smart-label{padding:0;margin:0;border:1px solid var(--smart-error)!important;left:1px}smart-grid-cell[sort],smart-grid-cell[sort]:not([selected]) .smart-label{background:var(--smart-grid-cell-background-sort);color:var(--smart-grid-cell-color-sort)}smart-grid-cell[filter],smart-grid-cell[filter]:not([selected]) .smart-label{background:var(--smart-grid-cell-background-filter);color:var(--smart-grid-cell-color-filter)}smart-grid-cell[update]{background:var(--smart-grid-cell-background-update);color:var(--smart-grid-cell-color-update)}smart-grid-cell[add]{background:var(--smart-grid-cell-background-add);color:var(--smart-grid-cell-color-add)}smart-grid-cell[delete]{background:var(--smart-grid-cell-background-delete);color:var(--smart-grid-cell-color-delete)}smart-grid-cell[editor]{background:var(--smart-background);color:var(--smart-background-color)}smart-grid-cell[freeze]{background:var(--smart-grid-cell-background-freeze);color:var(--smart-grid-cell-color-freeze)}smart-grid-cell[highlight] .smart-label{background:#FFF1C8!important;color:#333!important}smart-grid-cell[highlight][highlight-data-field]{border-left:1px solid var(--smart-primary);border-right:1px solid var(--smart-primary)}smart-grid-cell[highlight][highlight-data-field]:first-child{border-left:2px solid var(--smart-primary)}smart-grid-cell[group]{font-size:var(--smart-font-size)}smart-grid-cell[group] span[summary],smart-grid-cell[group] span[value]{font-weight:600}smart-grid-cell>.smart-label:not(.smart-input),smart-grid-column>.smart-label:not(.smart-input){width:100%;height:100%}smart-grid-cell.rotate,smart-grid-column.rotate{line-height:initial;display:inline-block;left:0;top:0;position:absolute;transform-origin:50% 50% 0;transform:rotate(0)}smart-grid-cell .align-left,smart-grid-column .align-left{overflow:hidden;text-overflow:ellipsis;text-align:left;padding-left:7px;padding-right:2px}smart-grid-cell .align-top,smart-grid-column .align-top{align-items:flex-start;display:flex;line-height:initial}smart-grid-cell .align-bottom,smart-grid-column .align-bottom{align-items:flex-end;display:flex;line-height:initial}smart-grid-cell .align-right,smart-grid-column .align-right{overflow:hidden;text-overflow:ellipsis;text-align:right;padding-right:7px;padding-left:2px}smart-grid-cell .align-right.align-bottom,smart-grid-column .align-right.align-bottom{flex-direction:column-reverse}smart-grid-cell .align-right.align-top,smart-grid-column .align-right.align-top{flex-direction:column;align-items:flex-end}smart-grid-cell .align-center,smart-grid-column .align-center{text-overflow:ellipsis;overflow:hidden;text-align:center;padding-right:7px;padding-left:7px}smart-grid-cell .align-center.align-bottom,smart-grid-cell .align-center.align-top,smart-grid-column .align-center.align-bottom,smart-grid-column .align-center.align-top{margin-left:50%;margin-right:50%;padding-left:0;padding-right:0}smart-grid-cell .align-middle,smart-grid-column .align-middle{display:flex;align-items:center}smart-grid-cell .align-center.align-middle,smart-grid-column .align-center.align-middle{justify-content:center}smart-grid-cell.smart-grid-column-border,smart-grid-column.smart-grid-column-border{border-top-color:var(--smart-border);border-bottom-color:var(--smart-border);border-left-color:var(--smart-border);border-right-color:var(--smart-border);border-top-width:0}smart-grid-cell:not(.smart-grid-column-border):after,smart-grid-column:not(.smart-grid-column-border):after{height:var(--smart-border-width);width:100%;content:"";position:absolute;bottom:0;left:0}smart-grid-cell:not(.smart-grid-column-border):not(.smart-grid-column-border-collapse):before,smart-grid-column:not(.smart-grid-column-border):not(.smart-grid-column-border-collapse):before{width:var(--smart-border-width);height:100%;content:"";position:absolute;top:0;left:0}.smart-grid-add-column-dialog-color-panel{width:100%}.smart-grid-add-column-dialog-color-panel .smart-sortable{width:100%;max-height:200px;margin-bottom:10px;overflow:auto}.smart-grid-add-column-dialog-color-panel .smart-sortable .smart-sortable-container,.smart-grid-view-bar .smart-grid-view-chooser-container .smart-grid-view-storage{overflow:hidden}.smart-grid-add-column-dialog-color-panel .smart-sortable .smart-grid-add-column-dialog-color-item{display:flex;align-items:center;width:calc(100% - 25px);margin-left:5%;margin-top:5px;margin-bottom:2px}.smart-grid-add-column-dialog-color-panel .smart-sortable .smart-grid-add-column-dialog-color-item smart-color-input .smart-color-box{border-radius:50%}.smart-grid-view-bar{left:0;top:0;position:absolute;background:var(--smart-grid-view-bar-background);--smart-background:var(--smart-grid-view-bar-background);border-right:1px solid var(--smart-border)}.smart-grid-view-bar smart-menu-item[checked]{background:var(--smart-ui-state-selected);color:var(--smart-ui-state-color-selected)}.smart-grid-view-bar .header{padding:10px;display:block;font-weight:500;background:var(--smart-surface);color:var(--smart-surface-color);border-bottom:1px solid var(--smart-border)}.smart-grid-view-bar .smart-grid-view-chooser-container{display:grid;grid-template-rows:1fr auto;height:100%;padding:5px}.smart-grid-view-bar .smart-grid-view-chooser-container .view-label{display:flex;margin-bottom:15px;width:100%;font-size:calc(var(--smart-font-size) - 2px);font-weight:600;opacity:.8}.smart-grid-view-bar .smart-grid-view-chooser-container .view-button{margin-top:20px;color:var(--smart-primary);display:flex;cursor:pointer}.smart-grid-view-bar .smart-grid-view-chooser-container .view-button.disabled{cursor:default;color:var(--smart-disabled);pointer-events:none}.smart-grid-view-bar .smart-grid-view-chooser-container .view-button.disabled a{cursor:default}.smart-grid-view-bar .smart-grid-view-chooser-container .view-button.disabled a:hover{color:var(--smart-disabled)}.smart-grid-view-bar .smart-grid-view-chooser-container .view-button a{color:inherit}.smart-grid-view-bar .smart-grid-view-chooser-container .view-button a:hover,.smart-grid-view-bar .smart-grid-view-chooser-container .view-button:hover{color:var(--smart-secondary)}.smart-grid-view-bar .smart-grid-view-chooser-container label{display:flex;justify-content:center;height:100%;align-items:center;padding-left:10px;padding-right:10px;padding-top:15px;font-size:calc(var(--smart-font-size) - 2px);font-weight:600;opacity:.8}.smart-grid-view-bar .smart-grid-view-chooser-container .smart-grid-view-storage smart-menu{height:calc(100% - 50px)!important}.smart-grid-view-bar .smart-grid-view-chooser-container .smart-grid-view-storage smart-menu .smart-menu-item-label-element{width:100%}.smart-grid-view-bar .smart-grid-view-chooser-container .smart-grid-view-storage smart-menu .smart-menu-item-label-element:hover .smart-icon-delete,.smart-grid-view-bar .smart-grid-view-chooser-container .smart-grid-view-storage smart-menu .smart-menu-item-label-element:hover .smart-icon-mode-edit{visibility:inherit}.smart-grid-view-bar .smart-grid-view-chooser-container .smart-grid-view-storage smart-menu .smart-menu-item-label-element>span{display:grid;align-items:baseline;grid-template-columns:20px 1fr auto auto;width:100%}.smart-grid-view-bar .smart-grid-view-chooser-container smart-input{width:100%;margin-bottom:10px;background:inherit}.smart-grid-view-bar .smart-grid-view-chooser-container .new-view{display:flex;flex-direction:column;align-items:center;padding:10px;margin-bottom:0;border-top:1px solid var(--smart-border)}.smart-grid-view-bar .smart-grid-view-chooser-container .new-view .footer{display:flex;height:60px;width:100%;flex-direction:row}.smart-grid-view-bar .smart-grid-view-chooser-container .new-view smart-button{background:0 0}.smart-grid-view-bar .smart-grid-view-chooser-container .new-view smart-button.view{margin-right:4px;text-transform:none;width:50%;border:none}.smart-grid-view-bar .smart-grid-view-chooser-container .new-view smart-button.view.selected{background:var(--smart-primary);color:var(--smart-primary-color)}.smart-grid-view-bar .smart-grid-view-chooser-container .new-view smart-button.view button{align-items:center;display:flex;flex-direction:column}.smart-grid-view-bar .smart-grid-view-chooser-container .new-view smart-button.view button .smart-grid-icon{font-size:20px}.smart-grid-view-bar .smart-grid-view-chooser-container .new-view smart-button.view:hover button{background:var(--smart-secondary);color:#fff}.smart-grid-view-chooser{background:var(--smart-background);font-size:var(--smart-font-size);font-family:var(--smart-font-family)}.smart-grid-view-chooser .label{padding-left:10px;padding-right:10px;padding-top:15px;font-size:calc(var(--smart-font-size) - 2px);font-weight:600;opacity:.8}.smart-grid-view-chooser .smart-menu{padding:5px}.smart-grid-view-chooser .smart-menu smart-menu-item{border-radius:var(--smart-border-radius)}.smart-grid-view-chooser .smart-menu smart-menu-item .smart-grid-icon{font-size:20px;margin-right:6px}.smart-grid-view-chooser .smart-menu smart-menu-item[checked]{background:var(--smart-ui-state-selected);color:var(--smart-ui-state-color-selected)}smart-menu.smart-grid-views-menu{height:100%!important;border:none}smart-menu.smart-grid-column-chooser-menu[checkboxes][checkable][disable-auto-check] .smart-menu-item-label-container:after,smart-menu.smart-grid-views-menu[checkboxes][checkable][disable-auto-check] .smart-menu-item-label-container:after{display:none}smart-menu.smart-grid-column-chooser-menu[checkboxes][checkable] smart-menu-item[level="1"],smart-menu.smart-grid-views-menu[checkboxes][checkable] smart-menu-item[level="1"]{flex-direction:row-reverse}smart-menu.smart-grid-column-chooser-menu[checkboxes][checkable] smart-menu-item[level="1"] .smart-menu-item-label-container,smart-menu.smart-grid-views-menu[checkboxes][checkable] smart-menu-item[level="1"] .smart-menu-item-label-container{padding-left:10px}smart-menu.smart-grid-column-chooser-menu[checkboxes][checkable] smart-menu-item[level="1"][checked] .smart-menu-item-label-container:after,smart-menu.smart-grid-views-menu[checkboxes][checkable] smart-menu-item[level="1"][checked] .smart-menu-item-label-container:after{left:initial;right:10px}@keyframes fadeAnimation{0%,100%{background-color:inherit}20%,50%{background-color:#9F9}}.smart-flash-cell .smart-label{background-image:none!important;animation:fadeAnimation 2s ease-in-out}[check-boxes_visible] [has-toggle-button] .smart-label,[check-boxes_visible] [has-toggle-button] .smart-label [checkbox],[checkbox] .smart-label,[checkbox] .smart-label [checkbox],[editor=checkBox] .smart-label,[editor=checkBox] .smart-label [checkbox],[template=checkBox] .smart-label,[template=checkBox] .smart-label [checkbox]{display:flex;padding-bottom:0;justify-content:center;align-items:center;cursor:pointer}[check-boxes_visible] [has-toggle-button] .smart-input:not(.smart-grid-cell-editor),[checkbox] .smart-input:not(.smart-grid-cell-editor),[editor=checkBox] .smart-input:not(.smart-grid-cell-editor),[template=checkBox] .smart-input:not(.smart-grid-cell-editor){width:calc(-2px + var(--smart-check-box-default-size));height:calc(-2px + var(--smart-check-box-default-size));line-height:var(--smart-check-box-default-size);box-sizing:initial;position:relative;border-style:solid;padding:2px;border-width:var(--smart-border-width);border-radius:var(--smart-border-radius);font-family:inherit;font-size:12px;background-repeat:no-repeat;border-color:var(--smart-border);background-color:transparent;color:var(--smart-background-color);display:block;outline:0}[check-boxes_visible] [has-toggle-button] .smart-input:not(.smart-grid-cell-editor):after,[checkbox] .smart-input:not(.smart-grid-cell-editor):after,[editor=checkBox] .smart-input:not(.smart-grid-cell-editor):after,[template=checkBox] .smart-input:not(.smart-grid-cell-editor):after{cursor:pointer;content:inherit;text-align:center;width:100%;height:100%;font-family:var(--smart-font-family-icon);font-weight:400;text-decoration:inherit;font-variant:normal;text-transform:none;display:inline-block;position:absolute;left:0;top:2px;outline:0}[check-boxes_visible] [has-toggle-button] .smart-input:not(.smart-grid-cell-editor):hover,[checkbox] .smart-input:not(.smart-grid-cell-editor):hover,[editor=checkBox] .smart-input:not(.smart-grid-cell-editor):hover,[template=checkBox] .smart-input:not(.smart-grid-cell-editor):hover{border-color:var(--smart-ui-state-border-hover);background-color:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover)}[check-boxes_visible] [has-toggle-button] .smart-input:not(.smart-grid-cell-editor)[checked],[checkbox] .smart-input:not(.smart-grid-cell-editor)[checked],[editor=checkBox] .smart-input:not(.smart-grid-cell-editor)[checked],[template=checkBox] .smart-input:not(.smart-grid-cell-editor)[checked]{border-color:var(--smart-ui-state-border-active);background-color:var(--smart-ui-state-active);color:var(--smart-ui-state-color-active)}[check-boxes_visible] [has-toggle-button] .smart-input:not(.smart-grid-cell-editor)[checked]:after,[checkbox] .smart-input:not(.smart-grid-cell-editor)[checked]:after,[editor=checkBox] .smart-input:not(.smart-grid-cell-editor)[checked]:after,[template=checkBox] .smart-input:not(.smart-grid-cell-editor)[checked]:after{content:var(--smart-icon-check)}[check-boxes_visible] [has-toggle-button] .smart-input.smart-grid-check-box-cell-editor,[checkbox] .smart-input.smart-grid-check-box-cell-editor,[editor=checkBox] .smart-input.smart-grid-check-box-cell-editor,[template=checkBox] .smart-input.smart-grid-check-box-cell-editor{width:calc(-2px + var(--smart-check-box-default-size));height:calc(-2px + var(--smart-check-box-default-size));line-height:var(--smart-check-box-default-size);box-sizing:initial;position:relative;border-style:solid;padding:2px;border-width:var(--smart-border-width);border-radius:var(--smart-border-radius);font-family:inherit;font-size:12px;background-repeat:no-repeat;border-color:var(--smart-border);background-color:transparent;color:var(--smart-background-color);display:block;outline:0}[check-boxes_visible] [has-toggle-button] .smart-input.smart-grid-check-box-cell-editor:after,[checkbox] .smart-input.smart-grid-check-box-cell-editor:after,[editor=checkBox] .smart-input.smart-grid-check-box-cell-editor:after,[template=checkBox] .smart-input.smart-grid-check-box-cell-editor:after{cursor:pointer;content:inherit;text-align:center;width:100%;height:100%;font-family:var(--smart-font-family-icon);font-weight:400;text-decoration:inherit;font-variant:normal;text-transform:none;display:inline-block;position:absolute;left:0;top:2px;outline:0}[check-boxes_visible] [has-toggle-button] .smart-input.smart-grid-check-box-cell-editor:hover,[checkbox] .smart-input.smart-grid-check-box-cell-editor:hover,[editor=checkBox] .smart-input.smart-grid-check-box-cell-editor:hover,[template=checkBox] .smart-input.smart-grid-check-box-cell-editor:hover{border-color:var(--smart-ui-state-border-hover);background-color:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover)}[check-boxes_visible] [has-toggle-button] .smart-input.smart-grid-check-box-cell-editor[checked],[checkbox] .smart-input.smart-grid-check-box-cell-editor[checked],[editor=checkBox] .smart-input.smart-grid-check-box-cell-editor[checked],[template=checkBox] .smart-input.smart-grid-check-box-cell-editor[checked],smart-grid-cell[checkbox][selected] .smart-input:not(.smart-grid-cell-editor),smart-grid-column[checkbox][selected] .smart-input:not(.smart-grid-cell-editor){border-color:var(--smart-ui-state-border-active);background-color:var(--smart-ui-state-active);color:var(--smart-ui-state-color-active)}[check-boxes_visible] [has-toggle-button] .smart-input.smart-grid-check-box-cell-editor[checked]:after,[checkbox] .smart-input.smart-grid-check-box-cell-editor[checked]:after,[editor=checkBox] .smart-input.smart-grid-check-box-cell-editor[checked]:after,[template=checkBox] .smart-input.smart-grid-check-box-cell-editor[checked]:after{content:var(--smart-icon-check)}smart-grid-cell[checkbox],smart-grid-column[checkbox]{display:flex;padding-bottom:0;justify-content:center;align-items:center;cursor:pointer}.smart-grid-column-menu[right-to-left] .smart-filter-panel .smart-filter-panel-button-container,.smart-grid[grouped][right-to-left] smart-grid-row[group]>.smart-grid-cell-container>smart-grid-cell div[content],.smart-grid[tree][right-to-left] smart-grid-row[level]>.smart-grid-cell-container>smart-grid-cell div[content]{flex-direction:row-reverse}smart-grid-cell[checkbox][selected] .smart-input:not(.smart-grid-cell-editor):after,smart-grid-column[checkbox][selected] .smart-input:not(.smart-grid-cell-editor):after{content:var(--smart-icon-check)}smart-grid-cell[checkbox][checked=indeterminate]:after,smart-grid-cell[checkbox][selected=indeterminate] .smart-input:not(.smart-grid-cell-editor):after,smart-grid-column[checkbox][checked=indeterminate]:after,smart-grid-column[checkbox][selected=indeterminate] .smart-input:not(.smart-grid-cell-editor):after{top:0;background-color:var(--smart-ui-state-color-active)}[has-toggle-button][selected] [checkbox] .smart-input[checked]{border-color:var(--smart-ui-state-border-hover);background-color:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover)}[freeze][checkbox][auto-show] .smart-input{opacity:0;transition:opacity ease-in-out .2s}[freeze][checkbox][auto-show][selected] .smart-input{opacity:1;border-color:var(--smart-border)}[radioButton][selected] .smart-input:after{content:var(--smart-icon-radio)}[editor=checkBox] .smart-input{left:-1px}[editor=checkBox] .smart-input:focus{border-color:var(--smart-ui-state-border-active)}[editor=checkBox]:not([readonly]) .smart-input:focus,[editor=checkBox]:not([readonly]) .smart-input:hover{border-color:var(--smart-ui-state-border-hover);background-color:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover)}smart-grid-row:not([selected]):not(:hover) [header][checkbox][auto-show]:not(:hover) .smart-input{opacity:0;transition:opacity ease-in-out .2s}.smart-grid-check-box-cell-editor.smart-filter-input-value[checked=indeterminate]:after,.smart-grid-dialog-editor[checkbox][checked=indeterminate] .smart-input:after,.smart-grid-dialog-editor[checkbox][selected=indeterminate] .smart-input:after,smart-grid-cell[checkbox][checked=indeterminate] .smart-input:after,smart-grid-cell[checkbox][selected=indeterminate] .smart-input:after,smart-grid-column[checkbox][checked=indeterminate] .smart-input:after,smart-grid-column[checkbox][selected=indeterminate] .smart-input:after{margin:14%;width:70%;height:70%;content:"";background-color:var(--smart-ui-state-color-active);box-sizing:border-box;top:0;border-radius:0}.smart-grid-dialog-editor div[checkbox] .smart-input[checked=indeterminate]:after,smart-grid-cell div[checkbox] .smart-input[checked=indeterminate]:after,smart-grid-column div[checkbox] .smart-input[checked=indeterminate]:after{margin:14%;width:70%!important;height:70%!important;content:"";background-color:var(--smart-ui-state-color-active);box-sizing:border-box;top:0!important;border-radius:0}.smart-grid-cell-editor.smart-grid-number-input-cell-editor .smart-input,.smart-grid-cell-editor.smart-grid-text-area-cell-editor .smart-input{width:calc(100% - var(--smart-editor-addon-width));border:none;padding:var(--smart-editor-label-padding);resize:none;border-radius:0;background:inherit;color:inherit}.smart-grid-cell-editor.smart-grid-number-input-cell-editor .smart-input{text-align:right;height:100%}.smart-grid-cell-editor.smart-grid-number-input-cell-editor .smart-input[type=number]{-moz-appearance:textfield;-webkit-appearance:textfield}.smart-grid-cell-editor.smart-grid-number-input-cell-editor .smart-input[type=number]::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}.smart-slider-editor input[type=range]{-webkit-appearance:none;width:100%;outline:0;background:0 0}.smart-slider-editor input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;width:32px;height:32px;border:0;border-radius:32px;margin-top:-12px;background:var(--smart-primary);background-size:18px 12px;box-shadow:0 0 1px rgba(0,0,0,.06),0 2px 2px rgba(0,0,20,.1);-webkit-transition:box-shadow .2s;transition:box-shadow .2s}.smart-slider-editor input[type=range]:focus::-webkit-slider-thumb{box-shadow:0 0 1px rgba(0,0,0,.06),0 4px 2px rgba(0,0,20,.06),0 4px 12px rgba(0,0,20,.25)}.smart-slider-editor input[type=range]::-moz-range-thumb{width:32px;height:32px;border:0;border-radius:32px;background:var(--smart-primary);background-size:18px 12px;box-shadow:0 0 1px rgba(0,0,0,.06),0 2px 2px rgba(0,0,20,.1);-moz-transition:box-shadow .2s;transition:box-shadow .2s}.smart-slider-editor input[type=range]:focus::-moz-range-thumb{box-shadow:0 0 1px rgba(0,0,0,.06),0 4px 2px rgba(0,0,20,.06),0 4px 12px rgba(0,0,20,.25)}.smart-slider-editor input[type=range]::-webkit-slider-runnable-track{width:100%;height:8px;border:0;border-radius:8px;background:#fff;box-shadow:0 0 0 1px rgba(204,204,204,.25)}.smart-slider-editor input[type=range]:focus::-webkit-slider-runnable-track{box-shadow:0 0 0 1px rgba(204,204,204,.75)}.smart-slider-editor input[type=range]::-moz-range-track{width:100%;height:8px;border:0;border-radius:8px;background:#fff;box-shadow:0 0 0 1px rgba(204,204,204,.25)}.smart-slider-editor input[type=range]:focus::-moz-range-track{box-shadow:0 0 0 1px rgba(204,204,204,.75)}.smart-grid-column-menu[right-to-left] .smart-filter-panel .smart-filter-panel-operator-list{position:relative}.smart-grid[tree][right-to-left] smart-grid-row[level]>.smart-grid-cell-container>smart-grid-cell div[content]>div[checkbox]:not(.smart-hidden){margin-left:5px;margin-right:initial}.smart-grid[right-to-left] .smart-grid-toolbar .smart-data-view-header{display:flex;flex-direction:row-reverse}.smart-grid[right-to-left] .smart-grid-toolbar .smart-data-view-header .smart-data-view-search-button{left:6px;width:24px;right:initial}.smart-grid[right-to-left] smart-grid-column .smart-add-new-column{border-left:1px solid var(--smart-border);border-right:none}.smart-grid[right-to-left] smart-grid-cell.smart-add-new-column{border-left:1px solid transparent!important;border-right:1px solid var(--smart-border)}.smart-grid[right-to-left] smart-scroll-bar:after{left:initial;right:100%}.smart-grid[right-to-left] smart-scroll-bar:before{left:0}.smart-grid[right-to-left] smart-scroll-bar[orientation=vertical]{right:initial;left:0;border-right:1px solid var(--smart-border);border-left:initial}.smart-grid[right-to-left] smart-grid-cell.smart-add-new-row:not([header]){z-index:5}.smart-grid[right-to-left] smart-grid-column{direction:ltr}.smart-grid[right-to-left] smart-grid-column .smart-label.smart-animate{transition:left .25s ease,width .25s ease}.smart-grid[right-to-left] smart-grid-column .smart-label.one{left:var(--smart-grid-column-buttons-width)}.smart-grid[right-to-left] smart-grid-column .smart-label.two{left:calc(2 * var(--smart-grid-column-buttons-width))}.smart-grid[right-to-left] smart-grid-column .smart-label.three{left:calc(3 * var(--smart-grid-column-buttons-width))}.smart-grid[right-to-left] smart-grid-column .smart-label.four{left:calc(4 * var(--smart-grid-column-buttons-width))}.smart-grid[right-to-left] smart-grid-column .smart-label.five{left:calc(5 * var(--smart-grid-column-buttons-width))}.smart-grid[right-to-left] smart-grid-column .smart-label.six{left:calc(6 * var(--smart-grid-column-buttons-width))}.smart-grid[right-to-left] smart-grid-column[has-icon] .smart-label.one{width:calc(100% - 2 * var(--smart-grid-column-buttons-width));left:calc(1 * var(--smart-grid-column-buttons-width))}.smart-grid[right-to-left] smart-grid-column[has-icon] .smart-label.two{width:calc(100% - 3 * var(--smart-grid-column-buttons-width));left:calc(2 * var(--smart-grid-column-buttons-width))}.smart-grid[right-to-left] smart-grid-column[has-icon] .smart-label.three{width:calc(100% - 4 * var(--smart-grid-column-buttons-width));left:calc(3 * var(--smart-grid-column-buttons-width))}.smart-grid[right-to-left] smart-grid-column[has-icon] .smart-label.four{width:calc(100% - 5 * var(--smart-grid-column-buttons-width));left:calc(4 * var(--smart-grid-column-buttons-width))}.smart-grid[right-to-left] smart-grid-column[has-icon] .smart-label.five{width:calc(100% - 6 * var(--smart-grid-column-buttons-width));left:calc(5 * var(--smart-grid-column-buttons-width))}.smart-grid[right-to-left] smart-grid-column[has-icon] .smart-label.six{width:calc(100% - 7 * var(--smart-grid-column-buttons-width));left:calc(6 * var(--smart-grid-column-buttons-width))}.smart-grid[right-to-left] smart-grid-column[has-icon] .smart-grid-icon.column-icon.show{right:0;position:absolute}.smart-grid[right-to-left] smart-grid-column .smart-buttons-group{right:initial;left:0;flex-direction:row-reverse;transform:translateX(calc(.1px - var(--smart-grid-column-buttons-width)))}.smart-grid[right-to-left] smart-grid-column .smart-buttons-group.action{transform:translateX(0)}.smart-grid[right-to-left] smart-grid-column .smart-action-button{border-right:1px solid var(--smart-border);border-left:initial}.smart-grid[right-to-left] smart-grid-column.top-far-corner{left:0;right:initial}.smart-grid[right-to-left] smart-grid-cell[has-toggle-button] .smart-label,.smart-grid[right-to-left] smart-grid-cell[has-toggle-button] div[indent]{flex-direction:row-reverse}.smart-grid[right-to-left] .smart-grid-column-group:not(.smart-grid-column-border):not(.smart-grid-column-border-collapse):before,.smart-grid[right-to-left] smart-grid-cell:not(.smart-grid-column-border):not(.smart-grid-column-border-collapse):before,.smart-grid[right-to-left] smart-grid-column:not(.smart-grid-column-border):not(.smart-grid-column-border-collapse):before{right:0;left:initial}.smart-color-input-drop-down-menu.smart-grid-color-input .grid-samples-container{grid-template-columns:repeat(2,minmax(0,1fr))}.smart-color-input-drop-down-menu.smart-grid-color-input:not([animation=none]) .default-samples-container div{transition:transform .2s ease-in-out}.smart-color-input-drop-down-menu.smart-grid-color-input .default-samples-container div{position:relative;border-radius:50%;border:initial;transform:scale(.95)}.smart-color-input-drop-down-menu.smart-grid-color-input .default-samples-container div.selected{transform:scale(1)}.smart-color-input-drop-down-menu.smart-grid-color-input .default-samples-container div.selected:not(.no-color):after{content:var(--smart-icon-check);width:100%;height:100%;position:absolute;top:0;left:0;display:flex;justify-content:center;align-items:center;font-family:var(--smart-font-family-icon);color:var(--smart-secondary-color);border-radius:inherit}.smart-grid-color-input{--smart-input-drop-down-menu-width:auto}
smart-column-panel,smart-formatting-panel,smart-group-panel,smart-multi-column-filter-panel,smart-sort-panel{display:block;min-width:375px;padding:var(--smart-grid-panel-padding);background:var(--smart-background);color:var(--smart-background-color);width:var(--smart-grid-panel-default-width);overflow:auto;font-size:var(--smart-font-size)}.smart-column-panel[right-to-left] .toggle-visibility,.smart-group-panel[close-button-position=right] .smart-grid-panel-item-close-button,.smart-multi-column-filter-panel[close-button-position=right] .smart-grid-panel-item-close-button,.smart-sort-panel[close-button-position=right] .smart-grid-panel-item-close-button{order:1}smart-column-panel,smart-formatting-panel,smart-group-panel,smart-multi-column-filter-panel,smart-sort-panel{height:var(--smart-grid-panel-default-height);font-family:var(--smart-font-family)}.smart-group-panel .smart-grid-panel-item.dragged,.smart-sort-panel .smart-grid-panel-item.dragged{opacity:.7}.smart-group-panel .smart-grid-panel-label-by,.smart-sort-panel .smart-grid-panel-label-by{padding:5px;width:60px;flex-grow:1;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.smart-group-panel .smart-grid-panel-field-container,.smart-sort-panel .smart-grid-panel-field-container{height:100%;width:100px;flex-grow:3}.smart-group-panel .smart-grid-panel-field-selection,.smart-sort-panel .smart-grid-panel-field-selection{height:100%;width:100%}.smart-group-panel .smart-grid-panel-from,.smart-sort-panel .smart-grid-panel-from{display:flex;justify-content:center;padding:5px;width:40px;flex-grow:1;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.smart-group-panel .smart-grid-panel-direction,.smart-sort-panel .smart-grid-panel-direction{display:flex;width:115px;flex-grow:2;height:100%;background-color:var(--smart-surface);border-top-right-radius:var(--smart-border-top-right-radius);border-top-left-radius:var(--smart-border-top-left-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius)}.smart-group-panel .smart-grid-panel-direction:focus,.smart-sort-panel .smart-grid-panel-direction:focus{outline:0;box-shadow:0 0 0 1px var(--smart-primary)}.smart-group-panel .smart-grid-panel-direction>div,.smart-sort-panel .smart-grid-panel-direction>div{display:flex;align-items:center;justify-content:center;margin:3px;width:calc(50% - 6px);height:calc(100% - 6px);border-top-right-radius:var(--smart-border-top-right-radius);border-top-left-radius:var(--smart-border-top-left-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius)}.smart-group-panel .smart-grid-panel-buttons-container .smart-grid-panel-apply-button,.smart-multi-column-filter-panel .smart-grid-panel-buttons-container .smart-grid-panel-apply-button,.smart-sort-panel .smart-grid-panel-buttons-container .smart-grid-panel-apply-button{margin-left:5px}.smart-group-panel .smart-grid-panel-direction>div.selected,.smart-sort-panel .smart-grid-panel-direction>div.selected{background-color:var(--smart-primary);color:var(--smart-primary-color)}.smart-sort-panel .smart-grid-panel-maintain-sort{justify-content:flex-end;margin-top:5px}.smart-sort-panel .smart-grid-panel-buttons-container{align-items:flex-start!important}.smart-sort-panel .smart-grid-panel-maintain-sort-button{font-family:var(--smart-font-family);font-size:var(--smart-font-size)}.smart-sort-panel .smart-grid-panel-maintain-sort-button::before{font-family:var(--smart-font-family-icon);content:var(--smart-icon-check-empty);margin-right:5px}.smart-sort-panel .smart-grid-panel-maintain-sort-button[active]{color:var(--smart-primary)}.smart-sort-panel .smart-grid-panel-maintain-sort-button[active]::before{font-family:var(--smart-font-family-icon);content:var(--smart-icon-check-squared)}.smart-group-panel .smart-grid-panel-item-close-button,.smart-multi-column-filter-panel .smart-grid-panel-item-close-button,.smart-sort-panel .smart-grid-panel-item-close-button{justify-content:center;width:20px}.smart-group-panel .smart-grid-panel-item-close-button:after,.smart-multi-column-filter-panel .smart-grid-panel-item-close-button:after,.smart-sort-panel .smart-grid-panel-item-close-button:after{content:var(--smart-icon-close);font-family:var(--smart-font-family-icon)}@media (pointer:coarse){.smart-group-panel .smart-grid-panel-item-close-button:after,.smart-multi-column-filter-panel .smart-grid-panel-item-close-button:after,.smart-sort-panel .smart-grid-panel-item-close-button:after{font-size:16px}}.smart-group-panel .smart-grid-panel-item-close-button:hover,.smart-multi-column-filter-panel .smart-grid-panel-item-close-button:hover,.smart-sort-panel .smart-grid-panel-item-close-button:hover{color:var(--smart-ui-state-color-selected);background:var(--smart-ui-state-selected);border-color:var(--smart-ui-state-selected);cursor:pointer}.smart-group-panel .smart-grid-panel-item-close-button:active,.smart-group-panel .smart-grid-panel-item-close-button:focus,.smart-multi-column-filter-panel .smart-grid-panel-item-close-button:active,.smart-multi-column-filter-panel .smart-grid-panel-item-close-button:focus,.smart-sort-panel .smart-grid-panel-item-close-button:active,.smart-sort-panel .smart-grid-panel-item-close-button:focus{color:var(--smart-primary)}.smart-group-panel .smart-grid-panel-item-close-button:focus,.smart-multi-column-filter-panel .smart-grid-panel-item-close-button:focus,.smart-sort-panel .smart-grid-panel-item-close-button:focus{outline:0}.smart-group-panel .smart-grid-panel-item,.smart-multi-column-filter-panel .smart-grid-panel-item,.smart-sort-panel .smart-grid-panel-item{display:flex;align-items:center;margin-top:calc(var(--smart-grid-panel-vertical-offset)/ 2);margin-bottom:calc(var(--smart-grid-panel-vertical-offset)/ 2);width:calc(100% - var(--smart-sortable-handle-size));height:var(--smart-grid-panel-item-height);min-height:var(--smart-grid-panel-item-height);background-color:var(--smart-background)}.smart-group-panel[close-button-position=right] .smart-sortable-container,.smart-multi-column-filter-panel[close-button-position=right] .smart-sortable-container,.smart-sort-panel[close-button-position=right] .smart-sortable-container{align-items:flex-end}.smart-column-panel .smart-grid-panel-container-footer,.smart-group-panel .smart-grid-panel-container-footer,.smart-multi-column-filter-panel .smart-grid-panel-container-footer,.smart-sort-panel .smart-grid-panel-container-footer{display:flex;flex-direction:row;justify-content:space-between}.smart-column-panel .smart-grid-panel-buttons-container,.smart-group-panel .smart-grid-panel-buttons-container,.smart-multi-column-filter-panel .smart-grid-panel-buttons-container,.smart-sort-panel .smart-grid-panel-buttons-container{width:auto;display:flex;flex-direction:row;align-items:center;justify-content:space-between}.smart-column-panel .smart-grid-panel-buttons-container span,.smart-group-panel .smart-grid-panel-buttons-container span,.smart-multi-column-filter-panel .smart-grid-panel-buttons-container span,.smart-sort-panel .smart-grid-panel-buttons-container span{display:flex;align-items:center;padding:5px}.smart-column-panel .smart-grid-panel-buttons-container span:hover,.smart-group-panel .smart-grid-panel-buttons-container span:hover,.smart-multi-column-filter-panel .smart-grid-panel-buttons-container span:hover,.smart-sort-panel .smart-grid-panel-buttons-container span:hover{color:var(--smart-ui-state-color-selected);background:var(--smart-ui-state-selected);border-color:var(--smart-ui-state-selected);cursor:pointer}.smart-column-panel .smart-grid-panel-buttons-container span:focus,.smart-group-panel .smart-grid-panel-buttons-container span:focus,.smart-multi-column-filter-panel .smart-grid-panel-buttons-container span:focus,.smart-sort-panel .smart-grid-panel-buttons-container span:focus{outline:0}.smart-sort-panel .smart-sortable-container{margin-bottom:var(--smart-grid-panel-padding)}.smart-sort-panel .smart-sortable-container:empty:after{content:attr(no-sorting);margin-top:calc(var(--smart-grid-panel-vertical-offset)/ 2);margin-bottom:calc(var(--smart-grid-panel-vertical-offset)/ 2);opacity:.7}.smart-sort-panel .smart-grid-panel-container-footer>smart-input{min-width:215px;width:40%}.smart-sort-panel .smart-grid-panel-item-close-button{display:flex;align-items:center;padding:5px}.smart-multi-column-filter-panel>.smart-container{display:grid;grid-auto-rows:1fr max-content;grid-row-gap:var(--smart-grid-panel-padding)}.smart-multi-column-filter-panel .smart-filter-panel-items-container{overflow:auto;padding-top:10px}.smart-multi-column-filter-panel .smart-filter-panel-items-container:empty:after{margin-top:calc(var(--smart-grid-panel-vertical-offset)/ 2);margin-bottom:calc(var(--smart-grid-panel-vertical-offset)/ 2);opacity:.7;content:attr(no-filters)}.smart-multi-column-filter-panel .smart-filter-panel-add-filter-button{display:flex;align-items:center;padding:5px}.smart-multi-column-filter-panel .smart-filter-panel-add-filter-button:hover{color:var(--smart-ui-state-color-selected);background:var(--smart-ui-state-selected);border-color:var(--smart-ui-state-selected);cursor:pointer}.smart-multi-column-filter-panel .smart-filter-panel-add-filter-button:focus{outline:0}.smart-multi-column-filter-panel .smart-grid-panel-item{width:100%;display:grid;columns:5;grid-template-columns:var(--smart-multi-column-filter-panel-template-columns);grid-gap:var(--smart-grid-panel-padding)}.smart-multi-column-filter-panel .smart-grid-panel-item>*{width:100%}.smart-multi-column-filter-panel .smart-grid-panel-item-close-button{display:flex;align-items:center;padding:5px}.smart-multi-column-filter-panel[close-button-position=right]{--smart-multi-column-filter-panel-template-columns:60px 2fr 3fr 3fr 15px}.smart-kanban-column-panel .smart-grid-panel-item::after,.smart-kanban-column-panel .smart-grid-panel-item::before{display:none!important}.smart-group-panel .smart-sortable-container smart-column-panel smart-sortable{margin-bottom:var(--smart-grid-panel-padding)}.smart-group-panel .smart-sortable-container:empty:after{margin-top:calc(var(--smart-grid-panel-vertical-offset)/ 2);margin-bottom:calc(var(--smart-grid-panel-vertical-offset)/ 2);opacity:.7;content:attr(no-grouping)}.smart-group-panel .smart-grid-panel-container-footer>smart-input{min-width:215px;width:40%}.smart-group-panel .smart-grid-panel-item-close-button{display:flex;align-items:center;padding:5px}.smart-group-panel .smart-grid-panel-direction,.smart-group-panel .smart-grid-panel-from{display:none}.smart-group-panel .smart-grid-panel-expand-collapse{justify-content:flex-end;margin-top:10px;margin-bottom:10px}.smart-group-panel .smart-group-panel-expand-button{margin-left:15px}.smart-group-panel .smart-group-panel-collapse-button[active],.smart-group-panel .smart-group-panel-expand-button[active]{color:var(--smart-primary)}.smart-format-panel .smart-grid-panel-buttons-container{width:auto;display:flex;flex-direction:row;align-items:center;justify-content:space-between}.smart-format-panel .smart-grid-panel-buttons-container span{display:flex;align-items:center;padding:5px}.smart-format-panel .smart-grid-panel-buttons-container span:hover{color:var(--smart-ui-state-color-selected);background:var(--smart-ui-state-selected);border-color:var(--smart-ui-state-selected);cursor:pointer}.smart-format-panel .smart-grid-panel-buttons-container .smart-grid-panel-apply-button{margin-left:5px}.smart-format-panel.smart-grid-panel-container-footer{display:flex;flex-direction:row;height:50px;justify-content:center;padding:15px}.smart-column-panel{--smart-grid-panel-item-height:20px;min-width:100px}.smart-column-panel.smart-container,.smart-column-panel>.smart-container{display:flex;flex-direction:column}.smart-column-panel smart-sortable{flex:5;min-height:50px;overflow:auto;max-height:var(--smart-column-panel-drop-down-height)}.smart-column-panel .smart-column-panel-find-container{display:flex;align-items:center;border-bottom:2px solid var(--smart-border);height:var(--smart-editor-height);position:relative}.smart-column-panel .smart-column-panel-find-container input{outline:0;border:none;width:calc(100% - 16px);height:100%;font-family:var(--smart-font-family);font-size:var(--smart-font-size);background:var(--smart-grid-panel-background);color:var(--smart-grid-panel-color)}.smart-column-panel .smart-column-panel-find-container .clear-button{width:16px;cursor:pointer}.smart-column-panel .smart-column-panel-find-container .clear-button:after{content:var(--smart-icon-cancel);font-family:var(--smart-font-family-icon);display:flex;align-items:center;justify-content:center}.smart-column-panel .smart-column-panel-find-container.no-results:after{content:attr(no-results);position:absolute;top:calc(100% + 10px)}.smart-column-panel .smart-column-panel-label{margin-left:5px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.smart-column-panel .smart-column-panel-label.icon{position:relative;padding-left:var(--smart-column-icon-size)}.smart-column-panel .smart-column-panel-label.icon:after{content:"";position:absolute;left:0;top:0;width:var(--smart-column-icon-size);height:100%;background-repeat:no-repeat;background-position:center}.smart-column-panel .smart-grid-panel-buttons-container{width:100%;justify-content:center;margin-top:3px}.smart-column-panel .smart-grid-panel-buttons-container .smart-grid-panel-apply-button{margin-left:5px}.smart-column-panel .smart-grid-panel-container-footer{display:grid;grid-template-columns:auto auto}.smart-column-panel .toggle-visibility{width:16px;height:16px;font-family:var(--smart-font-family-icon);cursor:pointer;display:flex;align-items:center;justify-content:center}.smart-column-panel .toggle-visibility:after{content:var(--smart-icon-visibility)}.smart-column-panel .toggle-visibility:focus{outline:0;color:var(--smart-primary)}.smart-column-panel .toggle-visibility.disable-toggle{pointer-events:none;opacity:.5}.smart-column-panel .toggle-visibility.hidden:after{content:var(--smart-icon-visibility-off)}.smart-column-panel .clear-button:focus{outline:0;color:var(--smart-primary)}.smart-column-panel .smart-grid-panel-item{display:flex;align-items:center;margin-top:calc(var(--smart-grid-panel-vertical-offset)/ 2);margin-bottom:calc(var(--smart-grid-panel-vertical-offset)/ 2);width:calc(100% - var(--smart-sortable-handle-size));height:var(--smart-grid-panel-item-height);min-height:var(--smart-grid-panel-item-height);background-color:var(--smart-background)}.smart-column-panel .smart-grid-panel-item.group:after,.smart-column-panel .smart-grid-panel-item.group:before{opacity:0!important;pointer-events:none}.smart-column-panel .smart-grid-panel-item.indent{padding-left:12px}.smart-grid-panel-apply-button,.smart-grid-panel-cancel-button{padding:5px 8px;min-width:80px;display:flex;text-transform:uppercase}.smart-grid-panel-reset-button{text-decoration:underline;display:flex;align-items:center;cursor:pointer;text-transform:uppercase}.smart-grid-panel-cancel-button{background:var(--smart-surface);color:var(--smart-surface-color);border:1px solid var(--smart-border);border-radius:var(--smart-border-radius);justify-content:center}.smart-grid-panel-apply-button{border-radius:var(--smart-border-radius);justify-content:center;background:var(--smart-primary);color:var(--smart-primary-color);border:1px solid var(--smart-primary)}.smart-data-view-header{padding:3px;position:relative;display:grid;grid-template-areas:"states views customize filter sort format details delete . search";grid-template-columns:minmax(0,max-content) minmax(0,max-content) minmax(50px,max-content) minmax(50px,max-content) minmax(50px,max-content) minmax(50px,max-content) minmax(50px,max-content) 1fr 24px;grid-gap:10px;grid-template-rows:100%;background:var(--smart-surface);color:var(--smart-surface-color)}.smart-data-view-header-button{display:flex;align-items:center;justify-content:center;padding:5px 5px 5px 25px;height:30px;margin-top:5px;position:relative;cursor:pointer;border-top-right-radius:var(--smart-border-top-right-radius);border-top-left-radius:var(--smart-border-top-left-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius)}.smart-data-view-header-button:after{position:absolute;font-family:var(--smart-font-family-icon);left:8px}.smart-data-view-header-button:active{color:var(--smart-ui-state-color-active);background-color:var(--smart-ui-state-active)}.smart-data-view-header-button:focus{outline:var(--smart-primary) solid 1px}.smart-data-view-header-button:hover{color:var(--smart-ui-state-color-hover);background-color:var(--smart-ui-state-hover)}.smart-data-view-header-button[aria-expanded=true]{color:var(--smart-ui-state-color-selected);background-color:var(--smart-ui-state-selected);border-color:var(--smart-ui-state-border-selected)}.smart-data-view-header-button.smart-data-view-search-button:active{color:var(--smart-ui-state-active)}.smart-data-view-header-button>div{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.smart-data-view-header-drop-down{position:absolute;background-color:var(--smart-background);box-shadow:var(--smart-elevation-8);z-index:1000;height:auto;transform:scaleY(1);transform-origin:top;opacity:1}.smart-data-view-header-drop-down smart-column-panel,.smart-data-view-header-drop-down smart-multi-column-filter-panel,.smart-data-view-header-drop-down smart-sort-panel{width:100%;border:none}.smart-data-view-header-drop-down.smart-visibility-hidden{transform:scaleY(0);opacity:0}.smart-data-view-header-drop-down.customize-panel{width:var(--smart-data-view-customize-panel-width)}.smart-data-view-header-drop-down.filter-panel{width:var(--smart-data-view-filter-panel-width)}.smart-data-view-header-drop-down.format-panel{max-height:320px;overflow:auto}.smart-data-view-header-drop-down.sort-panel{width:var(--smart-data-view-sort-panel-width)}.smart-data-view-header-drop-down.search-panel{width:var(--smart-data-view-search-panel-width);padding:var(--smart-data-view-padding)}.smart-data-view-header-drop-down.search-panel .smart-data-view-search-box{display:grid;grid-template-columns:1fr 16px;grid-template-rows:100%;grid-gap:2px;align-items:center}.smart-data-view-header-drop-down.search-panel .smart-data-view-search-box.matches{grid-template-columns:1fr max-content 16px 16px 16px}.smart-data-view-header-drop-down.search-panel .smart-data-view-search-box.matches .smart-data-view-search-next,.smart-data-view-header-drop-down.search-panel .smart-data-view-search-box.matches .smart-data-view-search-prev{display:flex}.smart-data-view-header-drop-down.search-panel .smart-data-view-search-box.matches .smart-data-view-search-label{display:block}.smart-data-view-header-drop-down.search-panel .smart-data-view-search-box.no-matches{grid-template-columns:1fr max-content 16px}.smart-data-view-header-drop-down.search-panel .smart-data-view-search-box.no-matches .smart-data-view-search-label{display:block}.smart-data-view-header-drop-down.search-panel input{outline:0;border:none;min-width:0;padding:0;font-family:var(--smart-font-family);font-size:var(--smart-font-size);background:var(--smart-background);color:var(--smart-background-color)}.smart-data-view-search-box div:focus{outline:var(--smart-primary) solid 1px}.smart-data-view-search-button{grid-area:search;margin-right:0;padding:0}.smart-data-view-search-button:after{content:var(--smart-icon-search)}.smart-data-view-customize-button{grid-area:customize}.smart-data-view-customize-button:after{content:var(--smart-icon-visibility-off)}.smart-data-view-customize-button.hidden{background-color:var(--smart-info);color:var(--smart-info-color)}.smart-data-view-delete-button{grid-area:delete}.smart-data-view-delete-button:after{content:var(--smart-icon-delete)}.smart-data-view-details-button{grid-area:details}.smart-data-view-details-button:after{content:var(--smart-icon-resize-full)}.smart-data-view-filter-button{grid-area:filter}.smart-data-view-filter-button:after{content:var(--smart-icon-add-filter)}.smart-data-view-filter-button.filtered{background-color:var(--smart-success);color:var(--smart-success-color)}.smart-data-view-sort-button{grid-area:sort}.smart-data-view-sort-button:after{content:var(--smart-icon-sort)}.smart-data-view-sort-button.sorted{background-color:#FDE1A8;color:var(--smart-surface-color)}.smart-data-view-group-button{grid-area:group}.smart-data-view-group-button:after{content:var(--smart-icon-group)}.smart-data-view-group-button.grouped{background-color:var(--smart-secondary);color:var(--smart-secondary-color)}.smart-data-view-download-button.formatted,.smart-data-view-format-button.formatted,.smart-data-view-states-button.formatted,.smart-data-view-views-button.formatted{background-color:var(--smart-primary);color:var(--smart-primary-color)}.smart-data-view-format-button{grid-area:format}.smart-data-view-format-button:after{content:var(--smart-icon-table)}.smart-data-view-download-button{grid-area:download}.smart-data-view-download-button:after{content:var(--smart-icon-arrow-down);position:initial;margin-left:8px}.smart-data-view-download-button:before{font-family:var(--smart-font-family-icon);left:8px;content:var(--smart-icon-download-alt);position:absolute}.smart-data-view-views-button{grid-area:views}.smart-data-view-views-button:after{content:var(--smart-icon-arrow-down);position:initial;margin-left:8px}.smart-data-view-views-button:before{font-family:var(--smart-font-family-icon);left:8px;content:var(--smart-icon-table-alt);position:absolute}.smart-data-view-views-button.kanban:before{content:var(--smart-icon-kanban)}.smart-data-view-states-button{grid-area:states;border-right:1px solid var(--smart-border);padding-right:5px}.smart-data-view-states-button:before{font-family:var(--smart-font-family-icon);left:8px;content:var(--smart-icon-menu);position:absolute}.smart-grid-toolbar .smart-data-view-header{height:100%;display:flex}.smart-grid-toolbar .smart-data-view-header-button{margin-right:0}.smart-grid-toolbar .smart-data-view-header-button.smart-disabled{pointer-events:none;opacity:.5}.smart-grid-toolbar .smart-data-view-search-button{position:absolute;right:30px;top:0}.smart-card-view .smart-data-view-header-button,.smart-kanban .smart-data-view-header-button{margin-top:0;height:100%}.smart-card-view .smart-data-view-header-button.smart-data-view-search-button,.smart-kanban .smart-data-view-header-button.smart-data-view-search-button{min-width:30px}.smart-card-view:not([animation=none]) .smart-data-view-header-drop-down,.smart-data-view-header-drop-down[owner],.smart-kanban:not([animation=none]) .smart-data-view-header-drop-down{transition:height .2s ease-in,transform .2s ease-in,visibility .2s ease-in,opacity .2s ease-in}.smart-data-view-search-label{display:none;font-size:calc(var(--smart-font-size) - 3px);opacity:.7}.smart-data-view-search-next,.smart-data-view-search-prev{align-items:center;justify-content:center;cursor:pointer;font-family:var(--smart-font-family-icon);font-size:10px;display:none;background-color:var(--smart-surface);color:var(--smart-surface-color);height:100%}.smart-data-view-search-next:hover,.smart-data-view-search-prev:hover{color:var(--smart-ui-state-color-hover);background-color:var(--smart-ui-state-hover)}.smart-data-view-search-next:active,.smart-data-view-search-prev:active{color:var(--smart-ui-state-color-active);background-color:var(--smart-ui-state-active)}.smart-data-view-search-prev:after{content:var(--smart-icon-arrow-up)}.smart-data-view-search-next:after{content:var(--smart-icon-arrow-down)}.smart-data-view-search-close{display:flex;align-items:center;justify-content:center;cursor:pointer;font-family:var(--smart-font-family-icon);font-size:10px;color:var(--smart-background-color)}.smart-data-view-search-close:after{content:var(--smart-icon-close)}.smart-data-view-search-close:hover{color:var(--smart-ui-state-color-hover);background-color:var(--smart-ui-state-hover)}.smart-data-view-search-close:active{color:var(--smart-ui-state-color-active);background-color:var(--smart-ui-state-active)}.smart-data-view-found{outline:var(--smart-outline) solid 4px;outline-offset:-4px}.smart-data-view-highlighted{box-shadow:0 0 23px 1px var(--smart-primary);outline:var(--smart-primary) solid 4px;outline-offset:-4px}[header-position=bottom] .smart-data-view-header-drop-down{transform-origin:bottom}.smart-formatting-panel{width:var(--smart-formatting-panel-default-width);min-height:150px;padding:0;overflow:visible}.smart-formatting-panel>.smart-container{position:relative;min-height:inherit}.smart-formatting-panel .smart-formatting-panel-items-container{width:100%;height:100%;padding:0 calc(2 * var(--smart-grid-panel-padding));overflow:auto}.smart-formatting-panel .smart-formatting-panel-item>.format-label{grid-area:format-label;justify-self:end}.smart-formatting-panel .smart-formatting-panel-item>.font-family-input{grid-area:font-family-input}.smart-formatting-panel .smart-formatting-panel-item>.font-size-input{grid-area:font-size-input}.smart-formatting-panel .smart-formatting-panel-item>.popup-button{display:flex;align-items:center;border:var(--smart-border-width) solid var(--smart-border);width:100%;height:100%;grid-area:popup-button;justify-content:center;cursor:pointer;font-size:20px;font-weight:700}.smart-formatting-panel .smart-formatting-panel-item>.preview{display:flex;align-items:center;border:var(--smart-border-width) solid var(--smart-border);width:100%;height:100%;grid-area:preview;padding:0 var(--smart-grid-panel-padding)}.smart-formatting-panel .smart-add-new-button{display:block;position:absolute;bottom:calc(var(--smart-grid-panel-padding) - 5px);right:calc(var(--smart-grid-panel-padding) - 5px);width:var(--smart-formatting-panel-add-new-button-size);height:var(--smart-formatting-panel-add-new-button-size);border-radius:50%;background-color:var(--smart-primary);color:var(--smart-primary-color);cursor:pointer;opacity:.3}.smart-formatting-panel .smart-add-new-button:after{content:"+";display:flex;align-items:center;justify-content:center;width:100%;height:100%;font-size:35px}.smart-formatting-panel .smart-add-new-button:focus,.smart-formatting-panel .smart-add-new-button:hover{opacity:1;transform:scale(1.2,1.2)}.smart-formatting-panel .smart-add-new-button:focus{outline:0}.smart-formatting-panel .close-button:focus,.smart-formatting-panel .popup-button:focus,.smart-formatting-panel-popup .colors-container:focus,.smart-formatting-panel-popup .header>div:focus,.smart-formatting-panel-popup input:focus{outline:var(--smart-ui-state-border-active) solid var(--smart-border-width)}.smart-formatting-panel.scroll .smart-add-new-button{right:calc(12px + var(--smart-grid-panel-padding));border-radius:50%}.smart-formatting-panel:not([animation=none]) .smart-add-new-button{transition:transform cubic-bezier(.81,.27,0,.93) .5s,opacity .2s ease-in}.smart-formatting-panel-item{display:grid;grid-template-columns:auto 3fr 2fr var(--smart-formatting-panel-row-height) 1fr .5fr 1fr 1fr;grid-template-rows:var(--smart-formatting-panel-row-height) var(--smart-formatting-panel-row-height);grid-template-areas:"value-label columns-input condition-input condition-input first-value first-value first-value close-button" "format-label font-family-input font-size-input popup-button preview preview preview close-button";gap:var(--smart-grid-panel-padding);border-bottom:var(--smart-border-width) solid var(--smart-border);width:100%;padding:calc(2 * var(--smart-grid-panel-padding)) 0}.smart-formatting-panel-item:last-child{border-bottom:none}.smart-formatting-panel-item>*{min-width:0;max-width:none;min-height:0;max-height:none;width:auto;align-self:center;justify-self:center}.smart-formatting-panel-item>.value-label{grid-area:value-label;justify-self:end}.smart-formatting-panel-item>.columns-input{grid-area:columns-input}.smart-formatting-panel-item>.condition-input{grid-area:condition-input}.smart-formatting-panel-item>.first-value{grid-area:first-value}.smart-formatting-panel-item>.ampersand{grid-area:ampersand;display:none}.smart-formatting-panel-item>.second-value{grid-area:second-value;display:none}.smart-formatting-panel-item>.close-button{grid-area:close-button;position:relative;width:16px;height:16px}.smart-formatting-panel-item>.close-button:after{content:var(--smart-icon-close);display:flex;align-items:center;justify-content:center;position:absolute;width:100%;height:100%;font-size:20px;font-family:smart-icons;opacity:.5;cursor:pointer}.smart-formatting-panel-item.between{grid-template-areas:"value-label columns-input condition-input condition-input first-value ampersand second-value close-button" "format-label font-family-input font-size-input popup-button preview preview preview close-button"}.smart-formatting-panel-item.between>.ampersand,.smart-formatting-panel-item.between>.second-value{display:block}.smart-formatting-panel-popup{display:grid;grid-template-columns:1fr 1fr;grid-template-rows:var(--smart-formatting-panel-row-height) var(--smart-formatting-panel-row-height) auto var(--smart-formatting-panel-row-height);grid-template-areas:"header header" "code input" "colors colors" "apply cancel";gap:var(--smart-grid-panel-padding);position:absolute;border:var(--smart-border-width) solid var(--smart-border);border-top-right-radius:var(--smart-border-top-right-radius);border-top-left-radius:var(--smart-border-top-left-radius);border-bottom-left-radius:var(--border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);width:var(--smart-formatting-panel-popup-width);padding:var(--smart-grid-panel-padding);background-color:var(--smart-background);box-shadow:var(--smart-elevation-8);z-index:1003;opacity:1;transform:scale(1);transform-origin:top;font-family:var(--smart-font-family);font-size:var(--smart-font-size)}.smart-formatting-panel-popup .header,.smart-formatting-panel-popup input,.smart-formatting-panel-popup>.color-code{border:var(--smart-border-width) solid var(--smart-border)}.smart-formatting-panel-popup>.color-code{width:100%;height:100%;grid-area:code;display:flex;align-items:center;box-sizing:border-box;padding:var(--smart-grid-panel-padding);color:var(--smart-background-color)}.smart-formatting-panel-popup .header{grid-area:header;display:flex}.smart-formatting-panel-popup .header>div{display:flex;flex-direction:row;align-items:center;justify-content:center;width:50%;height:100%;text-transform:uppercase;font-weight:700;cursor:pointer;color:var(--smart-background-color)}.smart-formatting-panel-popup .header>div:first-child{border-right:var(--smart-border-width) solid var(--smart-border)}.smart-formatting-panel-popup .header>.selected{background-color:var(--smart-ui-state-selected);color:var(--smart-ui-state-color-selected)}.smart-formatting-panel-popup input{width:100%;height:100%;grid-area:input;background-color:var(--smart-background);cursor:pointer}.smart-formatting-panel-popup input:focus{border-color:var(--smart-ui-state-border-focus)}.smart-formatting-panel-popup .colors-container{grid-area:colors;display:grid;grid-template-columns:repeat(8,1fr);grid-auto-rows:var(--smart-formatting-panel-color-box-height);gap:3px;width:100%}.smart-formatting-panel-popup .colors-container>div{border:var(--smart-border-width) solid var(--smart-border);cursor:pointer}.smart-formatting-panel-popup .colors-container>div.selected{position:relative;display:flex;align-items:center;justify-content:center}.smart-formatting-panel-popup .colors-container>div.selected:after{display:flex;align-items:center;justify-content:center;position:absolute;height:100%;font-size:20px;font-family:smart-icons;cursor:pointer;border-radius:50%;content:var(--smart-icon-check);background-color:var(--smart-background-color);color:var(--smart-background);width:var(--smart-formatting-panel-color-box-height);opacity:1}.smart-formatting-panel-popup>smart-button{--smart-button-padding:0}.smart-formatting-panel-popup>.apply{grid-area:apply}.smart-formatting-panel-popup>.cancel{grid-area:cancel}.smart-formatting-panel-popup:not([animation=none]){transition:transform .2s ease-in-out,opacity .2s ease-in-out,visibility .2s ease-in-out}.smart-formatting-panel-popup.smart-visibility-hidden{transform:scale(0);opacity:0}.smart-column-panel[right-to-left] .smart-column-panel-find-container{direction:rtl}.smart-column-panel[right-to-left] .smart-grid-panel-buttons-container{flex-direction:row-reverse}.smart-column-panel[right-to-left] .smart-grid-panel-item{right:var(--smart-sortable-handle-size);justify-content:space-between}.smart-group-panel[right-to-left] .smart-grid-panel-buttons-container,.smart-group-panel[right-to-left] .smart-grid-panel-direction,.smart-sort-panel[right-to-left] .smart-grid-panel-buttons-container,.smart-sort-panel[right-to-left] .smart-grid-panel-direction{flex-direction:row-reverse}.smart-group-panel[right-to-left] .smart-grid-panel-from,.smart-group-panel[right-to-left] .smart-grid-panel-label-by,.smart-group-panel[right-to-left] .smart-group-panel-apply-button,.smart-group-panel[right-to-left] .smart-group-panel-cancel-button,.smart-group-panel[right-to-left] .smart-group-panel-collapse-button,.smart-group-panel[right-to-left] .smart-group-panel-expand-button{direction:rtl}.smart-group-panel[right-to-left] .smart-group-panel-expand-button{margin-left:initial;margin-right:5px}.smart-group-panel[right-to-left] .smart-grid-panel-label-by{order:3}.smart-group-panel[right-to-left] .smart-grid-panel-field-container{order:2}.smart-group-panel[right-to-left] .smart-grid-panel-from{order:1}.smart-group-panel[right-to-left] .smart-sortable .smart-sortable-items-parent{direction:unset}.smart-group-panel[right-to-left][close-button-position=right] .smart-grid-panel-item-close-button{order:4}.smart-sort-panel[right-to-left] .smart-grid-panel-apply-button,.smart-sort-panel[right-to-left] .smart-grid-panel-cancel-button{direction:rtl}.smart-sort-panel[right-to-left] .smart-grid-panel-label-by{order:3}.smart-sort-panel[right-to-left] .smart-grid-panel-field-container{order:2}.smart-sort-panel[right-to-left] .smart-grid-panel-from{order:1}.smart-sort-panel[right-to-left] .smart-sortable .smart-sortable-items-parent{direction:unset}.smart-sort-panel[right-to-left][close-button-position=right] .smart-grid-panel-item-close-button{order:4}.smart-multi-column-filter-panel[right-to-left] .smart-filter-panel-add-filter-button,.smart-multi-column-filter-panel[right-to-left] .smart-filter-panel-items-container:empty,.smart-multi-column-filter-panel[right-to-left] .smart-grid-panel-apply-button,.smart-multi-column-filter-panel[right-to-left] .smart-grid-panel-cancel-button,.smart-multi-column-filter-panel[right-to-left] .smart-grid-panel-item-close-button+div{direction:rtl}.smart-multi-column-filter-panel[right-to-left] .smart-grid-panel-item>.smart-grid-panel-item-close-button+div{order:3}.smart-multi-column-filter-panel[right-to-left] .smart-grid-panel-item>.smart-input:nth-of-type(1){order:2}.smart-multi-column-filter-panel[right-to-left] .smart-grid-panel-item>.smart-input:nth-of-type(2){order:1}.smart-multi-column-filter-panel[right-to-left] .smart-grid-panel-buttons-container{flex-direction:row-reverse}.smart-multi-column-filter-panel[right-to-left][close-button-position=right] .smart-grid-panel-item-close-button{order:4}[right-to-left] .smart-data-view-header-drop-down.search-panel .smart-data-view-search-box{direction:rtl}[right-to-left] .smart-data-view-header{grid-template-areas:"search . sort filter customize";grid-template-columns:24px 1fr minmax(50px,max-content) minmax(50px,max-content) minmax(50px,max-content)}[right-to-left] .smart-data-view-header-button:not(.smart-data-view-search-button){direction:rtl;padding-left:5px;padding-right:25px}[right-to-left] .smart-data-view-header-button:after{right:5px;left:initial}.smart-formatting-panel[right-to-left]{direction:rtl}.smart-formatting-panel[right-to-left] .smart-add-new-button{left:calc(var(--smart-grid-panel-padding) - 5px);right:unset}.smart-formatting-panel[right-to-left].scroll .smart-add-new-button{left:calc(12px + var(--smart-grid-panel-padding))}
.smart-input-group>.custom-select:not(:first-child),.smart-input-group>.form-control:not(:first-child),.smart-input-group>.smart-input-group-append>.smart-input-group-text,.smart-input-group>.smart-input-group-append>smart-button,.smart-input-group>.smart-input-group-prepend:first-child>.smart-input-group-text:not(:first-child),.smart-input-group>.smart-input-group-prepend:first-child>smart-button:not(:first-child),.smart-input-group>.smart-input-group-prepend:not(:first-child)>.smart-input-group-text,.smart-input-group>.smart-input-group-prepend:not(:first-child)>smart-button{border-top-left-radius:0;border-bottom-left-radius:0}.smart-input-group>.custom-select:not(:last-child),.smart-input-group>.form-control:not(:last-child),.smart-input-group>.smart-input-group-append:last-child>.smart-input-group-text:not(:last-child),.smart-input-group>.smart-input-group-append:last-child>smart-button:not(:last-child):not(.dropdown-toggle),.smart-input-group>.smart-input-group-append:not(:last-child)>.smart-input-group-text,.smart-input-group>.smart-input-group-append:not(:last-child)>smart-button,.smart-input-group>.smart-input-group-prepend>.smart-input-group-text,.smart-input-group>.smart-input-group-prepend>smart-button{border-top-right-radius:0;border-bottom-right-radius:0}.smart-input-group smart-button[focus],.smart-input-group>.custom-file:focus,.smart-input-group>.custom-select:focus,.smart-input-group>.form-control:focus,.smart-input-group>.form-control[focus]{z-index:3}.smart-input-group-append,.smart-input-group-append .smart-input-group-text+.smart-input-group-text,.smart-input-group-append .smart-input-group-text+smart-button,.smart-input-group-append smart-button+.smart-input-group-text,.smart-input-group-append smart-button+smart-button,.smart-input-group-prepend .smart-input-group-text+.smart-input-group-text,.smart-input-group-prepend .smart-input-group-text+smart-button,.smart-input-group-prepend smart-button+.smart-input-group-text,.smart-input-group-prepend smart-button+smart-button,.smart-input-group>.custom-file+.custom-file,.smart-input-group>.custom-file+.custom-select,.smart-input-group>.custom-file+.form-control,.smart-input-group>.custom-select+.custom-file,.smart-input-group>.custom-select+.custom-select,.smart-input-group>.custom-select+.form-control,.smart-input-group>.form-control+.custom-file,.smart-input-group>.form-control+.custom-select,.smart-input-group>.form-control+.form-control{margin-left:-1px}.form-control,.smart-input-group-text{padding:.375rem .75rem;line-height:1.5}.smart-input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;box-sizing:border-box;font-family:var(--smart-font-family)}.smart-input-group smart-input .smart-drop-down-button{border-left:none}.smart-input-group>.custom-file,.smart-input-group>.custom-select,.smart-input-group>.form-control{position:relative;flex:1 1 auto;width:1%;margin-bottom:0}.smart-input-group-append,.smart-input-group-prepend{display:flex;box-sizing:border-box;height:auto}.smart-input-group-append>smart-button,.smart-input-group-prepend>smart-button{height:100%}.smart-input-group-prepend{margin-right:-1px}.smart-input-group-text{border-radius:var(--smart-border-radius);display:flex;align-items:center;margin-bottom:0;font-size:1rem;font-weight:400;color:var(--smart-surface-color);text-align:center;white-space:nowrap;background-color:var(--smart-surface);border:1px solid var(--smart-border)}.form-control,.smart-form{font-size:var(--smart-font-size);display:block}.form-control{border-radius:var(--smart-border-radius);height:auto;width:100%;color:#495057;background-color:var(--smart-background);background-clip:padding-box;-webkit-background-clip:padding-box;border:1px solid var(--smart-border);transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}.form-control:focus,.form-control[focus]{color:var(--smart-color);background-color:var(--smart-background);border-color:var(--smart-primary);outline:0}.smart-form{background:var(--smart-background);color:var(--smart-background-color);border:0 solid var(--smart-border);border-radius:var(--smart-border-radius);box-sizing:border-box;overflow:visible;width:600px;font-family:var(--smart-font-family)}@media only screen and (max-width:600px){.smart-form{width:350px}}.smart-form-editor,.smart-form-tab-strip[vertical] .smart-form-tab .smart-form-tab-label{width:100%}.smart-form-row{padding:5px 0;box-sizing:border-box}.smart-form-row .smart-form-control-label{display:flex;align-items:center;white-space:nowrap;text-overflow:ellipsis;font-family:var(--smart-font-family);font-size:calc(.9 * var(--smart-font-size))}.smart-form-row .smart-form-control+.smart-form-label[required]:before,.smart-form-row .smart-form-control-label[required]:after{content:"*";color:#a94442;font-size:14px;margin-left:2px;margin-right:2px}.smart-form-row .smart-form-control{display:flex;box-sizing:border-box}.smart-form-row .smart-form-control+.smart-form-control-label[required]:after{content:""}.smart-form-row-flex{display:flex}.smart-form-control .smart-form-control-addon{display:flex;align-items:center}.smart-form-control.left{justify-content:flex-start}.smart-form-control.center{justify-content:center}.smart-form-control.right{justify-content:flex-end}.smart-form-control[readonly] .smart-form-editor{pointer-events:none}.smart-form-control[readonly] .smart-form-editor .smart-calendar-button,.smart-form-control[readonly] .smart-form-editor .smart-drop-down-button{visibility:hidden}.smart-form-control[readonly] .smart-form-editor div,.smart-form-control[readonly] .smart-form-editor input,.smart-form-control[readonly] .smart-form-editor span,.smart-form-control[readonly] .smart-form-editor textarea{border:none!important}.smart-form-control[readonly] .smart-form-editor+.smart-form-control-addon,.smart-form-control[readonly] .smart-form-editor+.smart-form-control-icon,.smart-form-control[readonly] .smart-form-editor+div{visibility:hidden}.smart-form-control-icon:after{content:attr(tooltip);visibility:hidden;white-space:nowrap;margin-top:25px;position:absolute;border-top-left-radius:var(--smart-border-top-left-radius);border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);padding:7px;background-color:var(--smart-secondary);color:var(--smart-secondary-color);font-size:calc(var(--smart-font-size) - 2px);opacity:0;transform:scale(0);transition:opacity .2s ease-out,transform .1s ease-out;z-index:9}.smart-form-control-icon:hover:after{visibility:visible;opacity:.9;transform:scale(1);color:var(--smart-secondary-color);background:var(--smart-secondary)}.smart-form-control-label[readonly]:after{visibility:hidden}.smart-form-group .smart-form-group-content{display:grid;grid-template-columns:none}.smart-form-group[columns="2"]>.smart-form-group-content{grid-template-columns:50% 50%}.smart-form-group[columns="3"]>.smart-form-group-content{grid-template-columns:33% 33% 33%}.smart-form-group[columns="4"]>.smart-form-group-content{grid-template-columns:25% 25% 25% 25%}.smart-form-group[columns="5"]>.smart-form-group-content{grid-template-columns:20% 20% 20% 20% 20%}.smart-form-group[columns="6"]>.smart-form-group-content{grid-template-columns:16.66% 16.66% 16.66% 16.66% 16.66% 16.66%}.smart-form-group-label{font-size:20px;font-family:var(--smart-font-family);padding-top:10px;padding-bottom:10px;margin-bottom:20px;border-bottom:1px solid var(--smart-border)}.smart-form-group-label.center{display:flex;justify-content:center}.smart-form-group-label.right{display:flex;justify-content:flex-end}.smart-form-group-buttons{display:flex;justify-content:flex-end;padding-right:30px}.smart-form-editor.smart-validation-success:not(smart-check-box):not([focus])>div.smart-container::after,input.smart-form-editor.smart-valid:not(:focus)+.smart-success-label-like-after-element{display:none}.smart-form-group-buttons smart-button{margin-left:20px}.smart-form-editor.smart-validation-error:not(smart-check-box)>div.smart-container::after,.smart-form-editor.smart-validation-success:not(smart-check-box)[focus]>div.smart-container::after{left:initial;right:0;z-index:9}.smart-form-editor.smart-number-input[focus]:not([drop-down-button-position=none]).smart-validation-error[focus] input,.smart-form-editor.smart-number-input[focus]:not([drop-down-button-position=none]).smart-validation-success[focus] input,.smart-form-editor.smart-numeric-text-box.smart-validation-error:not(smart-check-box)>div.smart-container input,.smart-form-editor.smart-numeric-text-box.smart-validation-success:not(smart-check-box)[focus]>div.smart-container input,.smart-form-editor.smart-numeric-text-box[focus][spin-buttons].smart-validation-error[focus] input,.smart-form-editor.smart-numeric-text-box[focus][spin-buttons].smart-validation-success[focus] input{padding-right:30px}.smart-form-editor.smart-combo-box.smart-validation-error:not(smart-check-box)>div.smart-container::after,.smart-form-editor.smart-combo-box.smart-validation-success:not(smart-check-box)[focus]>div.smart-container::after,.smart-form-editor.smart-date-time-picker.smart-validation-error:not(smart-check-box)>div.smart-container::after,.smart-form-editor.smart-date-time-picker.smart-validation-success:not(smart-check-box)[focus]>div.smart-container::after,.smart-form-editor.smart-drop-down-list.smart-validation-error:not(smart-check-box)>div.smart-container::after,.smart-form-editor.smart-drop-down-list.smart-validation-success:not(smart-check-box)[focus]>div.smart-container::after,.smart-form-editor.smart-number-input.smart-validation-error:not(smart-check-box)>div.smart-container::after,.smart-form-editor.smart-number-input.smart-validation-success:not(smart-check-box)[focus]>div.smart-container::after,.smart-form-editor.smart-numeric-text-box.smart-validation-error:not(smart-check-box)>div.smart-container::after,.smart-form-editor.smart-numeric-text-box.smart-validation-success:not(smart-check-box)[focus]>div.smart-container::after{right:20px}.smart-form-editor.smart-invalid+.smart-error-label-like-after-element,.smart-form-editor.smart-valid+.smart-success-label-like-after-element{left:initial;right:0;z-index:9}input.smart-form-editor.smart-invalid+.smart-error-label-like-after-element,input.smart-form-editor.smart-valid+.smart-success-label-like-after-element{right:35px}.smart-form-tab{grid-row:1;display:flex;align-items:center;justify-content:center;min-width:0;cursor:pointer;font-family:var(--smart-font-family);box-sizing:border-box;transition:background-color .2s ease-in-out}.smart-form-tab.selected{border-bottom:2px solid var(--smart-primary);color:var(--smart-primary)}.smart-form-tab.smart-invalid{border-bottom:2px solid var(--smart-error);color:var(--smart-error)}.smart-form-tab-strip{display:grid;grid-auto-columns:1fr;overflow:hidden;border-bottom:var(--smart-border-width) solid var(--smart-border);height:30px;margin-bottom:10px}.smart-form-tab-strip .smart-form-tab .smart-form-tab-label{font-size:calc(var(--smart-font-size) + 1px);min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding:5px}.smart-form-tab-strip .smart-form-tab:hover{background:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover)}.smart-form-tab-strip[vertical]{display:flex;height:auto;flex-direction:column;background:var(--smart-background);border:none;border-radius:initial;padding-bottom:1px}.smart-form-tab-strip[vertical] .smart-form-tab{background-color:var(--smart-surface);color:var(--smart-surface-color);overflow:hidden;border:var(--smart-border-width) solid var(--smart-border);border-radius:0;padding:10px;margin-bottom:-1px;justify-content:left}.smart-form-tab-strip[vertical] .smart-form-tab .smart-form-tab-button{float:right;transition:transform .3s ease-in-out;transform:rotate(-180deg);font-size:17px}.smart-form-tab-strip[vertical] .smart-form-tab.selected{background:var(--smart-ui-state-focus)}.smart-form-tab-strip[vertical] .smart-form-tab.selected .smart-form-tab-button{transform:rotate(0)}.smart-form-tab-strip[vertical] .smart-form-tab.smart-invalid{color:var(--smart-error);background-color:var(--smart-surface)}.smart-form-tab-strip[breadcrumb]{border:none}.smart-form-tab-strip[breadcrumb] .smart-form-tab{border-bottom:none}.smart-form-tab-strip[breadcrumb] .smart-form-tab .smart-form-tab-label{display:flex;align-items:center}.smart-form-tab-strip[breadcrumb] .smart-form-tab .smart-form-tab-label .circle{border-radius:100%;font-family:var(--smart-font-family);width:12px;height:12px;padding:5px;margin-right:10px;background:var(--smart-secondary);color:var(--smart-secondary-color);align-items:center;justify-content:center;display:flex}.smart-form-tab-strip[breadcrumb] .smart-form-tab.smart-invalid{color:var(--smart-color)}.smart-form-tab-strip[breadcrumb] .smart-form-tab.selected .smart-form-tab-label .circle{background:var(--smart-primary);color:var(--smart-primary-color)}.smart-form-tab-control{padding:0;display:none!important}.smart-form-tab-control.selected{margin-bottom:-1px;display:grid!important}.smart-form-tab-control.selected[vertical]{padding:10px;border:1px solid var(--smart-border)}.smart-form-options-horizontal{display:flex}
smart-led{padding:0;width:var(--smart-led-default-width);height:var(--smart-led-default-height);display:inline-block;border-radius:50%}smart-led .smart-container{cursor:pointer;height:100%;position:relative;display:flex;overflow:hidden}smart-led .smart-ripple{background:var(--smart-primary)}smart-led[focus]{outline:0}smart-led[disabled] .smart-container{cursor:initial}smart-led[shape=square]{border-radius:0}.smart-led.smart-container{cursor:pointer;height:100%;position:relative;display:flex;overflow:hidden}.smart-led .smart-input{width:100%;height:100%;border-radius:100%;text-align:center;display:flex;align-items:center;justify-content:center;min-width:20px;min-height:20px;padding:4%;background-clip:content-box;border-style:solid;box-sizing:border-box;border-width:var(--smart-border-width);border-color:var(--smart-border);font-family:inherit;font-size:inherit;outline:0}.smart-led .smart-false-content-container,.smart-led .smart-indeterminate-content-container,.smart-led .smart-true-content-container{border-radius:50%;width:100%;height:100%;align-items:center;justify-content:center;overflow:hidden;text-overflow:ellipsis}.smart-led .smart-false-content-container{display:flex;background-color:transparent}.smart-led .smart-true-content-container{display:none;background-color:var(--smart-primary)}.smart-led .smart-indeterminate-content-container{display:none;background-color:#d3d3d3}.smart-led .smart-false-content,.smart-led[checked] .smart-true-content{display:flex;align-items:center;overflow:hidden;text-overflow:ellipsis;width:100%;height:100%}.smart-led .smart-false-content{justify-content:center}.smart-led[focus] .smart-input{border:var(--smart-border-width) solid var(--smart-ui-state-border-focus);background:var(--smart-ui-state-focus);color:var(--smart-ui-state-color-focus)}.smart-led:hover .smart-input{border:var(--smart-border-width) solid var(--smart-ui-state-border-hover);background:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover);transition:background-color .1s linear}.smart-led.active .smart-input{border:var(--smart-border-width) solid var(--smart-ui-state-border-active);background:var(--smart-ui-state-active);color:var(--smart-ui-state-color-active)}.smart-led[checked] .smart-true-content{justify-content:center}.smart-led[checked] .smart-false-content-container{display:none}.smart-led[checked] .smart-true-content-container{display:flex}.smart-led[checked=null] .smart-indeterminate-content{display:flex;align-items:center;justify-content:center;overflow:hidden;text-overflow:ellipsis;width:100%;height:100%}.smart-led[checked=null] .smart-indeterminate-content-container{display:flex}.smart-led[checked=null] .smart-true-content-container{display:none}.smart-led[shape=square] .smart-false-content-container,.smart-led[shape=square] .smart-indeterminate-content-container,.smart-led[shape=square] .smart-input,.smart-led[shape=square] .smart-true-content-container{border-radius:0}.smart-led[right-to-left] .smart-false-content-container,.smart-led[right-to-left] .smart-indeterminate-content-container,.smart-led[right-to-left] .smart-true-content-container{direction:rtl}
smart-list-box,smart-list-item,smart-list-items-group{visibility:hidden}smart-list-item.smart-element,smart-list-items-group.smart-element{border:none;visibility:inherit}smart-list-item .smart-input,smart-list-items-group .smart-input{margin-left:4px;width:calc(-4px + var(--smart-check-box-default-size));height:calc(-4px + var(--smart-check-box-default-size));line-height:var(--smart-check-box-default-size);box-sizing:initial;position:absolute;top:var(--smart-list-item-vertical-offset);margin-top:calc(var(--smart-list-item-height)/ 2 - 10px);border-style:solid;padding:3px;border-width:var(--smart-border-width);border-radius:var(--smart-list-item-check-box-radius);font-family:inherit;background-repeat:no-repeat;border-color:var(--smart-border);background-color:var(--smart-background);color:var(--smart-background-color);display:block}smart-list-item .smart-content,smart-list-item .smart-overlay{transition:opacity 280ms ease-in-out;top:var(--smart-list-item-vertical-offset);border-top-left-radius:var(--smart-item-border-top-left-radius);border-bottom-right-radius:var(--smart-item-border-bottom-right-radius);width:100%}smart-list-item .smart-input:after,smart-list-items-group .smart-input:after{content:"";font-family:var(--smart-font-family-icon);display:flex;justify-content:center;align-content:center;margin-top:-2px}smart-list-item .smart-input.smart-hidden,smart-list-items-group .smart-input.smart-hidden{display:none}smart-list-item[selected] .smart-input,smart-list-items-group[selected] .smart-input{border-color:var(--smart-primary);background-color:var(--smart-primary);color:var(--smart-primary-color)}smart-list-item[hover] .smart-input:hover,smart-list-items-group[hover] .smart-input:hover{border-color:var(--smart-ui-state-border-hover);background-color:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover)}smart-list-item[display-mode=checkBox][selected] .smart-input:after,smart-list-items-group[display-mode=checkBox][selected] .smart-input:after{content:var(--smart-icon-check)}smart-list-item{background-color:inherit;-webkit-font-smoothing:antialiased;letter-spacing:.00937em;width:100%;outline:0;display:flex;align-items:center;padding:0 5px;height:calc(var(--smart-list-item-height) + var(--smart-list-item-vertical-offset));position:relative;-webkit-user-select:none;user-select:none}.smart-list-box .smart-list-items-container,smart-list-item .smart-content,smart-list-item .smart-overlay{height:calc(100% - var(--smart-list-item-vertical-offset))}smart-list-item .smart-container{display:flex;align-items:center}smart-list-item .smart-overlay{display:inline-block;position:absolute;overflow:hidden;left:0;background:var(--smart-background);border-top-right-radius:var(--smart-item-border-top-right-radius);border-bottom-left-radius:var(--smart-item-border-bottom-left-radius)}smart-list-item .smart-content{position:absolute;overflow:hidden;white-space:nowrap;display:flex;align-items:flex-start;flex-direction:column;justify-content:center;padding:var(--smart-list-item-padding);left:0;color:var(--smart-background-color);border-width:var(--smart-item-border-width);border-style:solid;border-color:transparent;border-top-right-radius:var(--smart-item-border-top-right-radius);border-bottom-left-radius:var(--smart-item-border-bottom-left-radius)}smart-list-item .smart-content-details{opacity:.5;margin-top:2px;font-size:10px}smart-list-item .smart-input:before{content:"";width:100%;height:100%;display:inline-block;position:absolute;left:0;top:2px;text-align:center;background:var(--smart-primary)!important;transition:opacity .2s ease-in-out;opacity:0;border-radius:100%;transform:scale(1)}smart-list-item .smart-ripple{background:var(--smart-list-item-color-active)}smart-list-item.smart-list-item-line-feedback{border-top-color:var(--smart-secondary);border-top-width:1px;border-top-style:dashed}smart-list-item.smart-list-item-bottom-line-feedback{border-bottom-color:var(--smart-secondary);border-bottom-width:1px;border-bottom-style:dashed}smart-list-item.smart-header-item,smart-list-item[grouped]{color:var(--smart-surface-color);text-transform:var(--smart-list-item-group-header-text-transform);top:var(--smart-list-item-vertical-offset);margin-bottom:var(--smart-list-item-vertical-offset);background:var(--smart-surface);border-width:1px;border-style:solid;border-color:var(--smart-surface);display:flex;align-items:center}smart-list-item:focus,smart-list-item:focus .smart-input{outline:0}smart-list-item[hover] .smart-overlay{background-color:var(--smart-ui-state-hover)}smart-list-item[hover] .smart-content{color:var(--smart-ui-state-color-hover);border-color:var(--smart-ui-state-border-hover)}smart-list-item[selected] .smart-overlay{background-color:var(--smart-ui-state-selected)}smart-list-item[selected] .smart-content{color:var(--smart-ui-state-color-selected);border-color:var(--smart-ui-state-border-selected)}smart-list-item[selected].smart-list-item-line-feedback{border-top-color:var(--smart-secondary);border-top-width:1px;border-top-style:dashed}smart-list-item[selected].smart-list-item-bottom-line-feedback{border-bottom-color:var(--smart-secondary);border-bottom-width:1px;border-bottom-style:dashed}smart-list-item[display-mode=checkBox] .smart-content,smart-list-item[display-mode=checkBox] .smart-overlay,smart-list-item[display-mode=radioButton] .smart-content,smart-list-item[display-mode=radioButton] .smart-overlay{padding:5px;left:calc(16px + var(--smart-check-box-default-size));width:calc(100% - 16px - var(--smart-check-box-default-size))}smart-list-item[display-mode=checkBox][selected][alternation-index="0"] .smart-overlay,smart-list-item[display-mode=radioButton][selected][alternation-index="0"] .smart-overlay{background-color:var(--smart-alternation-index0-background);color:var(--smart-alternation-index0-color);border-color:var(--smart-alternation-index0-border)}smart-list-item[display-mode=checkBox][selected][alternation-index="1"] .smart-overlay,smart-list-item[display-mode=radioButton][selected][alternation-index="1"] .smart-overlay{background-color:var(--smart-alternation-index1-background);color:var(--smart-alternation-index1-color);border-color:var(--smart-alternation-index1-border)}smart-list-item[display-mode=checkBox][selected][alternation-index="2"] .smart-overlay,smart-list-item[display-mode=radioButton][selected][alternation-index="2"] .smart-overlay{background-color:var(--smart-alternation-index2-background);color:var(--smart-alternation-index2-color);border-color:var(--smart-alternation-index2-border)}smart-list-item[display-mode=radioButton] .smart-input{border-radius:100%}smart-list-item[display-mode=radioButton][selected] .smart-input:after{content:var(--smart-icon-radio)}smart-list-items-group>.smart-container{height:auto}smart-list-items-group .smart-list-items-group-label{background-color:inherit;-webkit-font-smoothing:antialiased;letter-spacing:.00937em;width:100%;outline:0;padding:0 5px;height:calc(var(--smart-list-item-height) + var(--smart-list-item-vertical-offset));position:relative;-webkit-user-select:none;user-select:none;color:var(--smart-surface-color);top:var(--smart-list-item-vertical-offset);margin-bottom:var(--smart-list-item-vertical-offset);background:var(--smart-surface);border-width:1px;border-style:solid;border-color:var(--smart-surface);display:flex;align-items:center;text-transform:capitalize;border-radius:initial}smart-list-items-group .smart-list-items-group-label .smart-container{display:flex;align-items:center}smart-list-items-group:focus .smart-input{outline:0}smart-list-box{display:block;width:var(--smart-list-box-default-width);height:var(--smart-list-box-default-height)}smart-list-box.smart-element{visibility:inherit}smart-list-box:focus{outline:0;border-color:var(--smart-outline)}smart-list-box:focus smart-list-item[focus] .smart-overlay{background-color:var(--smart-ui-state-focus)}smart-list-box:focus smart-list-item[focus] .smart-content{color:var(--smart-ui-state-color-focus);border-color:var(--smart-ui-state-border-focus)}smart-list-box:focus smart-list-item[focus][selected] .smart-overlay{background-color:var(--smart-ui-state-selected)}smart-list-box:focus smart-list-item[focus][selected] .smart-content{color:var(--smart-ui-state-color-selected);border-color:var(--smart-ui-state-border-selected)}.smart-list-box smart-list-item.smart-header-item[hover],.smart-list-box[disabled] smart-list-item{color:inherit}smart-list-box smart-scroll-bar[orientation=vertical].bottom-corner{height:calc(100% - var(--smart-scroll-bar-size))}.smart-list-box.smart-container,.smart-list-box>.smart-container{height:100%;width:100%;border-style:solid;border-width:0;border-color:gray;position:relative;overflow:hidden}.smart-list-box smart-list-item[alternation-index="0"] .smart-overlay{background-color:var(--smart-alternation-index0-background);color:var(--smart-alternation-index0-color);border-color:var(--smart-alternation-index0-border)}.smart-list-box smart-list-item[alternation-index="1"] .smart-overlay{background-color:var(--smart-alternation-index1-background);color:var(--smart-alternation-index1-color);border-color:var(--smart-alternation-index1-border)}.smart-list-box smart-list-item[alternation-index="2"] .smart-overlay{background-color:var(--smart-alternation-index2-background);color:var(--smart-alternation-index2-color);border-color:var(--smart-alternation-index2-border)}.smart-list-box smart-scroll-bar{overflow:visible;position:absolute;bottom:0;height:calc(var(--smart-scroll-bar-size));width:100%}.smart-list-box smart-scroll-bar:after{position:absolute;content:"";width:100%;height:var(--smart-scroll-bar-size);background:var(--smart-scroll-bar-background);left:100%;top:0}.smart-list-box smart-scroll-bar.bottom-corner{width:calc(100% - var(--smart-scroll-bar-size))}.smart-list-box smart-scroll-bar[orientation=vertical]{right:0;top:0;height:100%;width:calc(var(--smart-scroll-bar-size))}.smart-list-box input{border:var(--smart-border-width) solid var(--smart-border);width:100%;height:100%;padding:var(--smart-editor-label-padding);outline:initial;padding-right:25px}.smart-list-box input:focus{border-color:var(--smart-outline)}.smart-list-box .smart-list-box-filter-input-container{position:relative;width:calc(100% - 10px);height:var(--smart-editor-height);margin-left:5px;margin-top:5px}.smart-list-box .smart-list-box-filter-input-container:after{content:var(--smart-icon-search);font-family:var(--smart-font-family-icon);height:var(--smart-text-box-default-height);position:absolute;top:0;width:25px;display:flex;align-items:center;justify-content:center;left:calc(100% - 25px)}.smart-list-box .smart-list-box-filter-input-container.vscroll{width:calc(100% - 10px - var(--smart-scroll-bar-size))}.smart-list-box .smart-list-items-container{width:100%;overflow:hidden;position:relative;background-color:transparent}.smart-list-box .smart-list-items-container input{position:absolute;background:initial;background-color:var(--smart-background);background-size:initial;border:1px solid var(--smart-border);padding:9px 12px;margin:0;left:5px;width:calc(100% - 5px);font-family:inherit;font-size:inherit;border-top-left-radius:var(--smart-item-border-top-left-radius);border-top-right-radius:var(--smart-item-border-top-right-radius);border-bottom-left-radius:var(--smart-item-border-bottom-left-radius);border-bottom-right-radius:var(--smart-item-border-bottom-right-radius)}.smart-list-box .smart-list-items-container.hscroll{height:calc(100% - var(--smart-scroll-bar-size) - var(--smart-list-item-vertical-offset))}.smart-list-box .smart-list-items-container.filter{height:calc(100% - var(--smart-text-box-default-height) - 10px)}.smart-list-box .smart-list-items-container.hscroll.filter{height:calc(100% - var(--smart-text-box-default-height) - var(--smart-scroll-bar-size) - 10px - var(--smart-list-item-vertical-offset))}.smart-list-box .smart-list-items-inner-container{width:calc(100% - 2 * var(--smart-list-item-horizontal-offset));height:100%;display:block;position:relative;background-color:transparent}.smart-list-box .smart-placeholder{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);-webkit-user-select:none;user-select:none;text-align:center}.smart-list-box .smart-content-label{padding:var(--smart-list-item-label-padding);border-radius:var(--smart-list-item-label-border-radius)}.smart-list-box[horizontal-scroll-bar-visibility=hidden] smart-list-item .smart-content{white-space:initial}.smart-list-box[selection-mode=checkBox]:focus smart-list-item[focus][selected] .smart-input:before,.smart-list-box[selection-mode=checkBox][focus] smart-list-item[focus][selected] .smart-input:before,.smart-list-box[selection-mode=radioButton]:focus smart-list-item[focus][selected] .smart-input:before,.smart-list-box[selection-mode=radioButton][focus] smart-list-item[focus][selected] .smart-input:before{position:absolute;content:"";border-radius:50%;width:calc(var(--smart-check-box-default-size) + 14px);height:calc(var(--smart-check-box-default-size) + 14px);background:var(--smart-primary);opacity:.3;z-index:1;top:50%;left:50%;transform:translate(-50%,-50%)}.smart-list-box:not([right-to-left]) .smart-list-items-inner-container{margin-left:var(--smart-list-item-horizontal-offset)}[type=list][opened][focus] smart-list-item[focus] .smart-overlay{background-color:var(--smart-ui-state-selected)}[type=list][opened][focus] smart-list-item[focus] .smart-content{color:var(--smart-ui-state-color-selected);border-color:var(--smart-ui-state-border-selected)}[type=list][opened][focus] smart-list-item[focus]:not([selected]) .smart-overlay{background-color:var(--smart-ui-state-focus)}[type=list][opened][focus] smart-list-item[focus]:not([selected]) .smart-content{color:var(--smart-ui-state-color-focus);border-color:var(--smart-ui-state-border-focus)}[type=list][opened][focus] smart-list-item[focus][selected] .smart-overlay{background-color:var(--smart-ui-state-selected)}[type=list][opened][focus] smart-list-item[focus][selected] .smart-content{color:var(--smart-ui-state-color-selected);border-color:var(--smart-ui-state-border-selected)}.smart-list-item-feedback{background-color:var(--smart-surface);color:var(--smart-surface-color);border-color:var(--smart-border);border-width:1px;border-style:solid;box-shadow:var(--smart-elevation-8);cursor:move;padding:0;z-index:var(--smart-drop-down-z-index);width:200px}.smart-list-item-feedback smart-list-item{padding:0;border:none}.smart-list-item-feedback smart-list-item .smart-overlay{background-color:inherit;border:none}.smart-list-item-feedback smart-list-item .smart-content{border-color:transparent;color:inherit}.smart-drop-down smart-list-box smart-scroll-bar[orientation=vertical]{right:0;top:0;height:100%;width:calc(var(--smart-scroll-bar-size))}.smart-list-box[right-to-left]{direction:initial}.smart-list-box[right-to-left] smart-scroll-bar{left:initial;right:0}.smart-list-box[right-to-left] smart-scroll-bar:after{left:-100%}.smart-list-box[right-to-left] smart-scroll-bar[orientation=vertical]{left:0;right:initial}.smart-list-box[right-to-left] smart-scroll-bar[orientation=vertical]:after{content:none}.smart-list-box[right-to-left] smart-list-item .smart-list-item-container{direction:rtl;left:0}.smart-list-box[right-to-left] smart-list-item[display-mode=checkBox] .smart-overlay,.smart-list-box[right-to-left] smart-list-item[display-mode=radioButton] .smart-overlay{left:0}.smart-list-box[right-to-left] smart-list-items-group .smart-list-items-group-label{direction:rtl}.smart-list-box[right-to-left] .smart-list-items-inner-container{margin-right:var(--smart-list-item-horizontal-offset)}.smart-list-box[right-to-left] .smart-list-box-filter-input-container.vscroll{left:initial;right:0}.smart-list-box[right-to-left] .smart-list-items-container,.smart-list-box[right-to-left] .smart-list-items-container input{direction:rtl}.smart-list-box[right-to-left] .smart-list-items-container.vscroll{left:var(--smart-scroll-bar-size);right:initial}.smart-list-box[right-to-left] .smart-list-items-container.vscroll .smart-list-items-inner-container{margin-right:var(--smart-list-item-horizontal-offset)}.smart-popup.smart-list-item.smart-list-item-feedback[right-to-left] smart-list-item .smart-list-item-container{direction:rtl;left:0}
.smart-list-menu .smart-filter-input:focus,.smart-list-menu-view.smart-drop-down-repositioned .smart-filter-input:focus,smart-list-menu,smart-tree .smart-filter-input:focus{outline:0}smart-list-menu{width:var(--smart-list-menu-default-width);height:var(--smart-list-menu-default-height);display:block;background:var(--smart-background);border:var(--smart-border-width) solid var(--smart-border);border-top-left-radius:var(--smart-border-top-left-radius);border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);color:var(--smart-background-color);visibility:hidden}smart-list-menu:focus{border-color:var(--smart-outline)}smart-list-menu>.smart-container{position:relative;display:flex}smart-list-menu.smart-element{visibility:inherit}smart-list-menu .smart-ripple{background:var(--smart-ui-state-focus)}smart-list-menu[minimized]{height:auto;overflow:visible;border:var(--smart-border-width) solid var(--smart-border);background:var(--smart-surface)}smart-list-menu[drop-down-position|=top] .smart-list-menu-view-minimized{top:calc(-1 * var(--smart-border-width));transform:translateY(-100%);box-shadow:var(--smart-elevation-8)}smart-list-menu[drop-down-position$=left] .smart-list-menu-view-minimized{left:initial;right:calc(-1 * var(--smart-border-width))}smart-list-menu:not([animation=none]) .smart-hamburger-icon-line{transition:visibility 20ms ease-in,transform .2s ease-in,width .2s ease-in}.smart-list-menu.smart-container{position:relative;display:flex}.smart-list-menu smart-menu-item[hover],.smart-list-menu smart-menu-items-group[hover]{background:var(--smart-ui-state-hover);border-color:var(--smart-ui-state-border-hover);color:var(--smart-ui-state-color-hover)}.smart-list-menu .smart-hamburger-icon{width:40px;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;float:none;cursor:pointer;margin-top:2px}.smart-list-menu .smart-hamburger-icon .smart-hamburger-icon-custom-container{height:100%;display:flex;align-items:center}.smart-list-menu .smart-hamburger-icon.smart-close-button>.smart-hamburger-icon-line-top{width:29px;transform:translateX(4px) rotate(45deg)}.smart-list-menu .smart-hamburger-icon.smart-close-button>.smart-hamburger-icon-line-center{visibility:hidden}.smart-list-menu .smart-hamburger-icon.smart-close-button>.smart-hamburger-icon-line-bottom{width:29px;transform:translateX(4px) rotate(-45deg)}.smart-list-menu .smart-hamburger-icon-line{margin-bottom:5px;border-radius:10px;width:30px;height:5px;background-color:var(--smart-surface-color);transform-origin:left}.smart-list-menu .smart-hamburger-icon-line-bottom{margin-bottom:0}.smart-list-menu .smart-list-menu-view-minimized{left:calc(-1 * var(--smart-border-width));top:calc(100% + var(--smart-border-width))}.smart-list-menu .smart-list-menu-view-minimized.smart-visibility-hidden.not-in-view{left:-9999px;top:-9999px;transition:none}.smart-list-menu[minimized] .smart-minimized-header{background:var(--smart-surface);justify-content:flex-end}.smart-list-menu[disabled] .smart-hamburger-icon,.smart-list-menu[disabled] smart-menu-item,.smart-list-menu[disabled] smart-menu-items-group{cursor:default}.smart-list-menu[minimize-icon-template] .smart-hamburger-icon{width:auto;float:left}.smart-list-menu:not([animation=none]) .smart-hamburger-icon-line{transition:visibility 20ms ease-in,transform .2s ease-in,width .2s ease-in}.smart-list-menu:not([animation=none]) .smart-list-menu-view-minimized{opacity:1;transform:scaleY(1);margin:8px 0;transform-origin:top;transition:opacity .2s ease-in,visibility .2s ease-in,transform .2s ease-in}.smart-list-menu:not([animation=none]) .smart-list-menu-view-minimized.smart-visibility-hidden{opacity:.2;transform:scaleY(0)}.smart-list-menu[minimize-icon-template=null] .smart-hamburger-icon{width:40px;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;float:none;cursor:pointer;margin-top:2px}.smart-list-menu-view-minimized.smart-menu-drop-down.smart-drop-down-repositioned[drop-down-position*=top],.smart-list-menu[drop-down-position*=top] .smart-list-menu-view-minimized{margin:-8px 0}.smart-list-menu[drop-down-position|=top]:not([animation=none]) .smart-list-menu-view-minimized{transform:translateY(-100%) scaleY(1);transform-origin:bottom}.smart-list-menu[drop-down-position|=top]:not([animation=none]) .smart-list-menu-view-minimized.smart-visibility-hidden{transform:translateY(-100%) scaleY(0)}.smart-list-menu smart-menu-item,.smart-list-menu smart-menu-items-group,.smart-list-menu-view.smart-drop-down-repositioned smart-menu-item,.smart-list-menu-view.smart-drop-down-repositioned smart-menu-items-group{padding:10px 0}.smart-list-menu smart-menu-item.smart-element,.smart-list-menu smart-menu-items-group.smart-element,.smart-list-menu-view.smart-drop-down-repositioned smart-menu-item.smart-element,.smart-list-menu-view.smart-drop-down-repositioned smart-menu-items-group.smart-element{display:block;width:100%;height:auto;overflow:hidden}.smart-list-menu smart-menu-item[separator]:last-child,.smart-list-menu smart-menu-items-group.smart-menu-items-group-opened[separator],.smart-list-menu smart-menu-items-group[separator]:last-child,.smart-list-menu-view.smart-drop-down-repositioned smart-menu-item[separator]:last-child,.smart-list-menu-view.smart-drop-down-repositioned smart-menu-items-group.smart-menu-items-group-opened[separator],.smart-list-menu-view.smart-drop-down-repositioned smart-menu-items-group[separator]:last-child{border-bottom:none}.smart-list-menu .smart-header,.smart-list-menu-view.smart-drop-down-repositioned .smart-header{background:var(--smart-primary);color:var(--smart-primary-color);border-color:var(--smart-primary);box-shadow:var(--smart-elevation-4);z-index:3;padding:0 16px;display:flex;align-items:center;justify-content:center;position:relative;width:100%;height:var(--smart-bar-height);border-bottom:var(--smart-border-width) solid var(--smart-primary);overflow:hidden}.smart-list-menu .smart-header>smart-button,.smart-list-menu-view.smart-drop-down-repositioned .smart-header>smart-button{position:absolute;width:50px;height:100%;left:0;top:0;background:inherit;border:inherit;color:inherit}.smart-list-menu .smart-header>smart-button>.smart-button,.smart-list-menu-view.smart-drop-down-repositioned .smart-header>smart-button>.smart-button{border:none}.smart-list-menu .smart-header>smart-button .smart-arrow:after,.smart-list-menu-view.smart-drop-down-repositioned .smart-header>smart-button .smart-arrow:after{font-size:calc(var(--smart-font-size) - 3px);color:inherit}.smart-list-menu .smart-menu-scroll-button,.smart-list-menu-view.smart-drop-down-repositioned .smart-menu-scroll-button{display:block;background-color:var(--smart-scroll-bar-background);color:var(--smart-scroll-bar-color);border-radius:0;border-left:none;border-right:none;width:100%;height:var(--smart-menu-scroll-button-size)}.smart-list-menu .smart-menu-scroll-button>button,.smart-list-menu-view.smart-drop-down-repositioned .smart-menu-scroll-button>button{border:none;min-height:0}.smart-list-menu .smart-menu-scroll-button:last-of-type,.smart-list-menu-view.smart-drop-down-repositioned .smart-menu-scroll-button:last-of-type{border-bottom:none}.smart-list-menu .smart-hidden,.smart-list-menu-view.smart-drop-down-repositioned .smart-hidden{display:none!important}.smart-list-menu .smart-title,.smart-list-menu-view.smart-drop-down-repositioned .smart-title{display:flex;align-items:center;font-size:calc(var(--smart-font-size) + 2px)}.smart-list-menu .smart-menu-item-label-container,.smart-list-menu-view.smart-drop-down-repositioned .smart-menu-item-label-container{display:flex;position:relative;justify-content:space-between;padding:10px;width:100%}.smart-list-menu .smart-menu-item-label-element,.smart-list-menu .smart-menu-items-group-arrow,.smart-list-menu-view.smart-drop-down-repositioned .smart-menu-item-label-element,.smart-list-menu-view.smart-drop-down-repositioned .smart-menu-items-group-arrow{align-items:center;display:flex}.smart-list-menu .smart-menu-main-container,.smart-list-menu-view.smart-drop-down-repositioned .smart-menu-main-container{width:100%;height:100%;overflow:hidden;position:relative}.smart-list-menu .smart-menu-main-container .smart-scroll-viewer-content-container,.smart-list-menu-view.smart-drop-down-repositioned .smart-menu-main-container .smart-scroll-viewer-content-container{width:100%}.smart-list-menu .smart-menu-main-container.header-shown,.smart-list-menu-view.smart-drop-down-repositioned .smart-menu-main-container.header-shown{height:calc(100% - var(--smart-bar-height))}.smart-list-menu .smart-menu-main-container.header-shown.scroll-buttons-shown,.smart-list-menu-view.smart-drop-down-repositioned .smart-menu-main-container.header-shown.scroll-buttons-shown{height:calc(100% - var(--smart-bar-height) - 2 * var(--smart-menu-scroll-button-size))}.smart-list-menu .smart-menu-main-container.header-shown.scroll-buttons-shown.one-button-shown,.smart-list-menu-view.smart-drop-down-repositioned .smart-menu-main-container.header-shown.scroll-buttons-shown.one-button-shown{height:calc(100% - var(--smart-bar-height) - var(--smart-menu-scroll-button-size))}.smart-list-menu .smart-menu-main-container.header-shown.scroll-buttons-shown.one-button-shown.filter-input-shown,.smart-list-menu-view.smart-drop-down-repositioned .smart-menu-main-container.header-shown.scroll-buttons-shown.one-button-shown.filter-input-shown{height:calc(100% - var(--smart-bar-height) - var(--smart-menu-scroll-button-size) - var(--smart-text-box-default-height) - 2 * var(--smart-list-menu-filter-input-vertical-offset))}.smart-list-menu .smart-menu-main-container.header-shown.scroll-buttons-shown.filter-input-shown,.smart-list-menu-view.smart-drop-down-repositioned .smart-menu-main-container.header-shown.scroll-buttons-shown.filter-input-shown{height:calc(100% - var(--smart-bar-height) - 2 * var(--smart-menu-scroll-button-size) - var(--smart-text-box-default-height) - 2 * var(--smart-list-menu-filter-input-vertical-offset))}.smart-list-menu .smart-menu-main-container.header-shown.filter-input-shown,.smart-list-menu-view.smart-drop-down-repositioned .smart-menu-main-container.header-shown.filter-input-shown{height:calc(100% - var(--smart-bar-height) - var(--smart-text-box-default-height) - 2 * var(--smart-list-menu-filter-input-vertical-offset))}.smart-list-menu .smart-menu-main-container.scroll-buttons-shown,.smart-list-menu-view.smart-drop-down-repositioned .smart-menu-main-container.scroll-buttons-shown{height:calc(100% - 2 * var(--smart-menu-scroll-button-size))}.smart-list-menu .smart-menu-main-container.scroll-buttons-shown.one-button-shown,.smart-list-menu-view.smart-drop-down-repositioned .smart-menu-main-container.scroll-buttons-shown.one-button-shown{height:calc(100% - var(--smart-menu-scroll-button-size))}.smart-list-menu .smart-menu-main-container.scroll-buttons-shown.one-button-shown.filter-input-shown,.smart-list-menu-view.smart-drop-down-repositioned .smart-menu-main-container.scroll-buttons-shown.one-button-shown.filter-input-shown{height:calc(100% - var(--smart-menu-scroll-button-size) - var(--smart-text-box-default-height) - 2 * var(--smart-list-menu-filter-input-vertical-offset))}.smart-list-menu .smart-menu-main-container.scroll-buttons-shown.filter-input-shown,.smart-list-menu-view.smart-drop-down-repositioned .smart-menu-main-container.scroll-buttons-shown.filter-input-shown{height:calc(100% - 2 * var(--smart-menu-scroll-button-size) - var(--smart-text-box-default-height) - 2 * var(--smart-list-menu-filter-input-vertical-offset))}.smart-list-menu .smart-menu-main-container.filter-input-shown,.smart-list-menu-view.smart-drop-down-repositioned .smart-menu-main-container.filter-input-shown{height:calc(100% - var(--smart-text-box-default-height))}.smart-list-menu .smart-menu-main-container.bounce-top,.smart-list-menu-view.smart-drop-down-repositioned .smart-menu-main-container.bounce-top{padding-top:50px}.smart-list-menu .smart-menu-main-container.bounce-bottom,.smart-list-menu-view.smart-drop-down-repositioned .smart-menu-main-container.bounce-bottom{padding-bottom:50px}.smart-list-menu .smart-menu-item-shortcut,.smart-list-menu-view.smart-drop-down-repositioned .smart-menu-item-shortcut{margin-left:0}.smart-list-menu .smart-menu-drop-down,.smart-list-menu-view.smart-drop-down-repositioned .smart-menu-drop-down{width:100%}.smart-list-menu .smart-menu-drop-down[level="2"]:not(.smart-menu-minimized-items-container),.smart-list-menu-view.smart-drop-down-repositioned .smart-menu-drop-down[level="2"]:not(.smart-menu-minimized-items-container){margin:0}.smart-list-menu .smart-tree-main-container,.smart-list-menu-view.smart-drop-down-repositioned .smart-tree-main-container{position:relative;width:100%;height:100%;padding:var(--smart-tree-item-horizontal-offset);overflow:hidden}.smart-list-menu-view-minimized:not([animation=none]) .smart-menu-items-group-opened,.smart-list-menu-view-minimized:not([animation=none]) smart-menu-items-group.smart-element.smart-menu-items-group-opened,.smart-list-menu:not([animation=none]) .smart-menu-items-group-opened{overflow:visible}.smart-list-menu .smart-list-menu-filter-input-container,.smart-list-menu-view.smart-drop-down-repositioned .smart-list-menu-filter-input-container{position:relative;width:calc(100% - 10px);height:calc(var(--smart-text-box-default-height));margin:5px;font-size:inherit}.smart-list-menu .smart-list-menu-filter-input-container:after,.smart-list-menu-view.smart-drop-down-repositioned .smart-list-menu-filter-input-container:after{content:var(--smart-icon-filter);font-family:var(--smart-font-family-icon);height:var(--smart-text-box-default-height);position:absolute;top:0;width:25px;display:flex;align-items:center;justify-content:center;left:calc(100% - 25px)}.smart-list-menu .smart-filter-input,.smart-list-menu-view.smart-drop-down-repositioned .smart-filter-input{border:1px solid var(--smart-border);width:100%;height:100%;padding-left:var(--smart-editor-label-padding);padding-right:calc(var(--smart-editor-label-padding) + 25px);font-size:inherit}.smart-list-menu .smart-filter-input::selection,.smart-list-menu-view.smart-drop-down-repositioned .smart-filter-input::selection{background:var(--smart-editor-selection);color:var(--smart-editor-selection-color)}.smart-list-menu .smart-list-menu-group-label,.smart-list-menu-view.smart-drop-down-repositioned .smart-list-menu-group-label{margin-bottom:1px;padding:10px;background-color:var(--smart-disabled);color:var(--smart-disabled-color);font-size:calc(var(--smart-font-size) + 1px);font-weight:700;cursor:default;-webkit-user-select:none;user-select:none}.smart-list-menu .smart-scroll-viewer,.smart-list-menu-view.smart-drop-down-repositioned .smart-scroll-viewer{border:none}.smart-list-menu-view.smart-drop-down-repositioned[checkboxes] .smart-menu-item-container[checkable]>smart-menu-item>.smart-menu-item-label-container,.smart-list-menu-view.smart-drop-down-repositioned[checkboxes] .smart-menu-item-container[checkable]>smart-menu-items-group>.smart-menu-item-label-container,.smart-list-menu-view.smart-drop-down-repositioned[checkboxes][checkable] smart-menu-item[level="1"]>.smart-menu-item-label-container,.smart-list-menu-view.smart-drop-down-repositioned[checkboxes][checkable] smart-menu-items-group[level="1"]>.smart-menu-item-label-container,.smart-list-menu[checkboxes] .smart-menu-item-container[checkable]>smart-menu-item>.smart-menu-item-label-container,.smart-list-menu[checkboxes] .smart-menu-item-container[checkable]>smart-menu-items-group>.smart-menu-item-label-container,.smart-list-menu[checkboxes][checkable] smart-menu-item[level="1"]>.smart-menu-item-label-container,.smart-list-menu[checkboxes][checkable] smart-menu-items-group[level="1"]>.smart-menu-item-label-container{padding-left:35px}.smart-list-menu-view.smart-drop-down-repositioned[checkboxes] .smart-menu-item-container[checkable]>smart-menu-item[checked]>.smart-menu-item-label-container:after,.smart-list-menu-view.smart-drop-down-repositioned[checkboxes] .smart-menu-item-container[checkable]>smart-menu-items-group[checked]>.smart-menu-item-label-container:after,.smart-list-menu-view.smart-drop-down-repositioned[checkboxes][checkable] smart-menu-item[level="1"][checked]>.smart-menu-item-label-container:after,.smart-list-menu-view.smart-drop-down-repositioned[checkboxes][checkable] smart-menu-items-group[level="1"][checked]>.smart-menu-item-label-container:after,.smart-list-menu[checkboxes] .smart-menu-item-container[checkable]>smart-menu-item[checked]>.smart-menu-item-label-container:after,.smart-list-menu[checkboxes] .smart-menu-item-container[checkable]>smart-menu-items-group[checked]>.smart-menu-item-label-container:after,.smart-list-menu[checkboxes][checkable] smart-menu-item[level="1"][checked]>.smart-menu-item-label-container:after,.smart-list-menu[checkboxes][checkable] smart-menu-items-group[level="1"][checked]>.smart-menu-item-label-container:after{position:absolute;left:10px;top:50%;transform:translateY(-50%);content:var(--smart-icon-check);font-family:var(--smart-font-family-icon)}.smart-list-menu-view-minimized:not([animation=none]) .smart-list-menu-group-label,.smart-list-menu-view-minimized:not([animation=none]) smart-menu-item,.smart-list-menu:not([animation=none]) .smart-list-menu-group-label,.smart-list-menu:not([animation=none]) smart-menu-item{position:relative}.smart-list-menu-view.smart-drop-down-repositioned[checkboxes] .smart-menu-item-container[checkable][check-mode=radioButton]>smart-menu-item[checked]>.smart-menu-item-label-container:after,.smart-list-menu-view.smart-drop-down-repositioned[checkboxes] .smart-menu-item-container[checkable][check-mode=radioButton]>smart-menu-items-group[checked]>.smart-menu-item-label-container:after,.smart-list-menu-view.smart-drop-down-repositioned[checkboxes][checkable][check-mode=radioButton] smart-menu-item[level="1"][checked]>.smart-menu-item-label-container:after,.smart-list-menu-view.smart-drop-down-repositioned[checkboxes][checkable][check-mode=radioButton] smart-menu-items-group[level="1"][checked]>.smart-menu-item-label-container:after,.smart-list-menu[checkboxes] .smart-menu-item-container[checkable][check-mode=radioButton]>smart-menu-item[checked]>.smart-menu-item-label-container:after,.smart-list-menu[checkboxes] .smart-menu-item-container[checkable][check-mode=radioButton]>smart-menu-items-group[checked]>.smart-menu-item-label-container:after,.smart-list-menu[checkboxes][checkable][check-mode=radioButton] smart-menu-item[level="1"][checked]>.smart-menu-item-label-container:after,.smart-list-menu[checkboxes][checkable][check-mode=radioButton] smart-menu-items-group[level="1"][checked]>.smart-menu-item-label-container:after{content:var(--smart-icon-radio)}.smart-list-menu-view.smart-drop-down-repositioned[animation=none].smart-visibility-hidden,.smart-list-menu[animation=none].smart-visibility-hidden{transform:scale(0)}.smart-list-menu-view-minimized:not([animation=none]) .smart-list-menu-group-label,.smart-list-menu-view-minimized:not([animation=none]) .smart-menu-item-label-container,.smart-list-menu-view-minimized:not([animation=none]) smart-menu-item,.smart-list-menu-view-minimized:not([animation=none]) smart-menu-items-group,.smart-list-menu:not([animation=none]) .smart-list-menu-group-label,.smart-list-menu:not([animation=none]) .smart-menu-item-label-container,.smart-list-menu:not([animation=none]) smart-menu-item,.smart-list-menu:not([animation=none]) smart-menu-items-group{left:0;transition:left .3s ease-in}.smart-list-menu-view-minimized:not([animation=none]) .smart-list-menu-group-label.animate,.smart-list-menu-view-minimized:not([animation=none]) .smart-menu-item-label-container.animate,.smart-list-menu-view-minimized:not([animation=none]) smart-menu-item.animate,.smart-list-menu-view-minimized:not([animation=none]) smart-menu-items-group.animate,.smart-list-menu:not([animation=none]) .smart-list-menu-group-label.animate,.smart-list-menu:not([animation=none]) .smart-menu-item-label-container.animate,.smart-list-menu:not([animation=none]) smart-menu-item.animate,.smart-list-menu:not([animation=none]) smart-menu-items-group.animate{left:-100%}.smart-list-menu-view-minimized:not([animation=none]) .smart-list-menu-group-label.right,.smart-list-menu-view-minimized:not([animation=none]) .smart-menu-item-label-container.right,.smart-list-menu-view-minimized:not([animation=none]) smart-menu-item.right,.smart-list-menu-view-minimized:not([animation=none]) smart-menu-items-group.right,.smart-list-menu:not([animation=none]) .smart-list-menu-group-label.right,.smart-list-menu:not([animation=none]) .smart-menu-item-label-container.right,.smart-list-menu:not([animation=none]) smart-menu-item.right,.smart-list-menu:not([animation=none]) smart-menu-items-group.right{left:-100%;transition:none}.smart-list-menu-view-minimized:not([animation=none]) .smart-menu-drop-down,.smart-list-menu:not([animation=none]) .smart-menu-drop-down{position:absolute;top:0;left:0;transition:left .3s ease-in}.smart-list-menu-view-minimized:not([animation=none]) .smart-menu-drop-down.smart-hidden,.smart-list-menu:not([animation=none]) .smart-menu-drop-down.smart-hidden{display:block!important;left:100%}.smart-list-menu-view-minimized:not([animation=none]) .smart-menu-drop-down.no-transition,.smart-list-menu:not([animation=none]) .smart-menu-drop-down.no-transition{transition:none}.smart-list-menu-view{width:100%;height:100%;overflow:hidden}.smart-list-menu-view.smart-list-menu-view-minimized{position:absolute;width:var(--smart-editor-drop-down-width);height:var(--smart-editor-drop-down-height);left:calc(-1 * var(--smart-border-width));top:calc(100% + var(--smart-border-width));background-color:#fff;box-shadow:var(--smart-elevation-8)}.smart-list-menu-view-minimized:not([animation=none]){opacity:1;transform:scaleY(1);margin:8px 0;transform-origin:top;transition:opacity .2s ease-in,visibility .2s ease-in,transform .2s ease-in}.smart-list-menu-view-minimized:not([animation=none]).smart-visibility-hidden{opacity:.2;transform:scaleY(0)}.smart-list-menu-view-minimized.smart-drop-down-repositioned.smart-visibility-hidden.not-in-view{left:-9999px;top:-9999px;transition:none}.smart-list-menu-view-minimized[drop-down-position|=top]:not([animation=none]){transform:translateY(-100%) scaleY(1);transform-origin:bottom}.smart-list-menu-view-minimized[drop-down-position|=top]:not([animation=none]).smart-visibility-hidden{transform:translateY(-100%) scaleY(0)}.smart-list-menu-view-minimized:not([animation=none])[right-to-left] .smart-menu-drop-down.smart-hidden,.smart-list-menu:not([animation=none])[right-to-left] .smart-menu-drop-down.smart-hidden{left:-100%}.smart-list-menu-view-minimized:not([animation=none])[right-to-left] .smart-list-menu-group-label.animate,.smart-list-menu-view-minimized:not([animation=none])[right-to-left] .smart-list-menu-group-label.right,.smart-list-menu-view-minimized:not([animation=none])[right-to-left] .smart-menu-item-label-container.animate,.smart-list-menu-view-minimized:not([animation=none])[right-to-left] .smart-menu-item-label-container.right,.smart-list-menu-view-minimized:not([animation=none])[right-to-left] smart-menu-item.animate,.smart-list-menu-view-minimized:not([animation=none])[right-to-left] smart-menu-item.right,.smart-list-menu-view-minimized:not([animation=none])[right-to-left] smart-menu-items-group.animate,.smart-list-menu-view-minimized:not([animation=none])[right-to-left] smart-menu-items-group.right,.smart-list-menu:not([animation=none])[right-to-left] .smart-list-menu-group-label.animate,.smart-list-menu:not([animation=none])[right-to-left] .smart-list-menu-group-label.right,.smart-list-menu:not([animation=none])[right-to-left] .smart-menu-item-label-container.animate,.smart-list-menu:not([animation=none])[right-to-left] .smart-menu-item-label-container.right,.smart-list-menu:not([animation=none])[right-to-left] smart-menu-item.animate,.smart-list-menu:not([animation=none])[right-to-left] smart-menu-item.right,.smart-list-menu:not([animation=none])[right-to-left] smart-menu-items-group.animate,.smart-list-menu:not([animation=none])[right-to-left] smart-menu-items-group.right{left:100%}.smart-list-menu-view.smart-drop-down-repositioned[right-to-left] .smart-filter-input,.smart-list-menu[right-to-left] .smart-filter-input{direction:rtl;padding-right:var(--smart-editor-label-padding);padding-left:calc(var(--smart-editor-label-padding) + 25px)}.smart-list-menu-view.smart-drop-down-repositioned[right-to-left] .smart-list-menu-filter-input-container:after,.smart-list-menu[right-to-left] .smart-list-menu-filter-input-container:after{left:0}.smart-list-menu-view.smart-drop-down-repositioned[right-to-left] .smart-header>smart-button,.smart-list-menu[right-to-left] .smart-header>smart-button{left:initial;right:0}.smart-list-menu-view.smart-drop-down-repositioned[right-to-left] smart-menu-items-group .smart-menu-items-group-arrow,.smart-list-menu[right-to-left] smart-menu-items-group .smart-menu-items-group-arrow{margin-left:initial}.smart-list-menu-view.smart-drop-down-repositioned[checkboxes][checkable][right-to-left] smart-menu-item[level="1"]>.smart-menu-item-label-container,.smart-list-menu-view.smart-drop-down-repositioned[checkboxes][checkable][right-to-left] smart-menu-items-group[level="1"]>.smart-menu-item-label-container,.smart-list-menu-view.smart-drop-down-repositioned[checkboxes][right-to-left] .smart-menu-item-container[checkable]>smart-menu-item>.smart-menu-item-label-container,.smart-list-menu-view.smart-drop-down-repositioned[checkboxes][right-to-left] .smart-menu-item-container[checkable]>smart-menu-items-group>.smart-menu-item-label-container,.smart-list-menu[checkboxes][checkable][right-to-left] smart-menu-item[level="1"]>.smart-menu-item-label-container,.smart-list-menu[checkboxes][checkable][right-to-left] smart-menu-items-group[level="1"]>.smart-menu-item-label-container,.smart-list-menu[checkboxes][right-to-left] .smart-menu-item-container[checkable]>smart-menu-item>.smart-menu-item-label-container,.smart-list-menu[checkboxes][right-to-left] .smart-menu-item-container[checkable]>smart-menu-items-group>.smart-menu-item-label-container{padding-left:initial;padding-right:35px}.smart-list-menu-view.smart-drop-down-repositioned[checkboxes][checkable][right-to-left] smart-menu-item[level="1"][checked]>.smart-menu-item-label-container:after,.smart-list-menu-view.smart-drop-down-repositioned[checkboxes][checkable][right-to-left] smart-menu-items-group[level="1"][checked]>.smart-menu-item-label-container:after,.smart-list-menu-view.smart-drop-down-repositioned[checkboxes][right-to-left] .smart-menu-item-container[checkable]>smart-menu-item[checked]>.smart-menu-item-label-container:after,.smart-list-menu-view.smart-drop-down-repositioned[checkboxes][right-to-left] .smart-menu-item-container[checkable]>smart-menu-items-group[checked]>.smart-menu-item-label-container:after,.smart-list-menu[checkboxes][checkable][right-to-left] smart-menu-item[level="1"][checked]>.smart-menu-item-label-container:after,.smart-list-menu[checkboxes][checkable][right-to-left] smart-menu-items-group[level="1"][checked]>.smart-menu-item-label-container:after,.smart-list-menu[checkboxes][right-to-left] .smart-menu-item-container[checkable]>smart-menu-item[checked]>.smart-menu-item-label-container:after,.smart-list-menu[checkboxes][right-to-left] .smart-menu-item-container[checkable]>smart-menu-items-group[checked]>.smart-menu-item-label-container:after{left:initial;right:10px}.smart-list-menu[right-to-left] smart-menu-items-group[level="1"]>.smart-menu-item-label-container>.smart-menu-items-group-arrow{margin-right:initial}.smart-list-menu[right-to-left] smart-menu-item .smart-menu-item-shortcut{margin-left:initial;margin-right:100px}.smart-list-menu[right-to-left] .smart-menu-main-container{direction:rtl}.smart-list-menu[right-to-left] .smart-menu-items-group-arrow.right.smart-arrow-right{margin-left:initial;margin-right:50px}.smart-list-menu[right-to-left]>.smart-container{flex-direction:row-reverse}.smart-list-menu[right-to-left] .smart-list-menu-view.smart-list-menu-view-minimized{left:initial;right:calc(-1 * var(--smart-border-width))}.smart-list-menu[right-to-left][minimized] .smart-list-menu-view-minimized,.smart-list-menu[right-to-left][mode=tree] .smart-list-menu-view-minimized{direction:rtl}.smart-list-menu-view-minimized[right-to-left] .smart-menu-item-shortcut,.smart-list-menu-view-minimized[right-to-left] smart-menu-items-group .smart-menu-items-group-arrow,.smart-list-menu[right-to-left] .smart-list-menu-view-minimized .smart-menu-item-shortcut,.smart-list-menu[right-to-left] smart-menu-items-group .smart-menu-items-group-arrow,.smart-list-menu[right-to-left][mode=dropDown] smart-menu-item[level="1"] .smart-menu-item-shortcut{margin-right:initial}.smart-menu-drop-down.smart-drop-down-repositioned.smart-list-menu-view-minimized[right-to-left]{direction:rtl}.smart-menu-drop-down.smart-drop-down-repositioned[right-to-left] .smart-menu-items-group-arrow.right.smart-arrow-right{margin-left:initial;margin-right:50px}.smart-menu-drop-down.smart-drop-down-repositioned[right-to-left] .smart-menu-item-container{direction:rtl}.smart-menu-drop-down.smart-drop-down-repositioned[right-to-left] smart-menu-item .smart-menu-item-shortcut{margin-left:initial;margin-right:100px}
smart-masked-text-box{width:var(--smart-text-box-default-width);height:var(--smart-text-box-default-height)}smart-masked-text-box.smart-element{border:1px solid var(--smart-border);background:var(--smart-background);overflow:visible;border-radius:var(--smart-border-radius)}.smart-masked-text-box>.smart-container{position:relative}.smart-masked-text-box .smart-input{width:100%;height:100%;color:inherit;font-family:inherit;position:relative;overflow:hidden;outline:0}.smart-masked-text-box[right-to-left] .smart-container{direction:rtl}
.smart-menu .smart-menu-drop-down,smart-menu[mode=dropDown]{z-index:var(--smart-editor-drop-down-z-index);top:0;box-shadow:var(--smart-elevation-8);border-radius:var(--smart-border-radius)}.smart-menu .smart-element[level="2"]:last-child,.smart-menu .smart-element[level="3"]:last-child,.smart-menu:not([aria-orientation=horizontal]) .smart-element[level="1"]:last-child{margin-bottom:var(--smart-border-radius)}smart-menu{width:var(--smart-menu-default-width);height:var(--smart-menu-default-height);visibility:hidden}smart-menu:focus{outline:0;border-color:var(--smart-outline)}smart-menu>.smart-container{display:flex;position:relative}smart-menu smart-menu-item[level="1"][separator],smart-menu smart-menu-item[separator][level]:last-child,smart-menu smart-menu-items-group[level="1"][separator],smart-menu smart-menu-items-group[separator][level]:last-child{border-bottom:none}smart-menu.smart-element{visibility:inherit;overflow:visible}smart-menu .smart-ripple{background:var(--smart-primary)}smart-menu[mode=dropDown],smart-menu[mode=tree]{background:var(--smart-background);color:var(--smart-background-color)}smart-menu[aria-orientation=horizontal]{background:var(--smart-surface);color:var(--smart-surface-color);border-color:var(--smart-border)}smart-menu[mode=dropDown],smart-menu[mode=tree],smart-menu[mode=vertical]{width:var(--smart-menu-vertical-default-width);height:var(--smart-menu-vertical-default-height)}smart-menu[mode=tree]:focus{outline:0;border-color:var(--smart-outline)}smart-menu[minimized] smart-menu-item[level="1"][separator],smart-menu[minimized] smart-menu-items-group[level="1"][separator],smart-menu[mode=dropDown] smart-menu-item[level="1"][separator],smart-menu[mode=dropDown] smart-menu-items-group[level="1"][separator],smart-menu[mode=tree] smart-menu-item[level="1"][separator],smart-menu[mode=tree] smart-menu-items-group[level="1"][separator],smart-menu[mode=vertical] smart-menu-item[level="1"][separator],smart-menu[mode=vertical] smart-menu-items-group[level="1"][separator]{border-bottom:1px solid var(--smart-border)}smart-menu[minimized][drop-down-position$=left] .smart-menu-minimized-items-container .smart-menu-item-label-container{flex-direction:row}smart-menu[mode=tree]{border-color:var(--smart-border)}smart-menu[mode=dropDown]{position:absolute;left:0}smart-menu-item,smart-menu-items-group{visibility:hidden;cursor:pointer;height:auto;display:flex;justify-content:space-between;align-items:center;white-space:nowrap}smart-menu-item.smart-element,smart-menu-items-group.smart-element{visibility:inherit;overflow:visible;background:inherit;color:inherit;border-color:inherit}smart-menu-item[hover],smart-menu-items-group[hover]{background-color:var(--smart-ui-state-hover);border-color:var(--smart-ui-state-border-hover);color:var(--smart-ui-state-color-hover)}smart-menu-item[focus],smart-menu-items-group[focus]{background-color:var(--smart-ui-state-focus);border-color:var(--smart-ui-state-border-focus);color:var(--smart-ui-state-color-focus)}smart-menu-item[separator],smart-menu-items-group[separator]{border-bottom:1px solid var(--smart-border)}smart-menu-item .smart-menu-item-shortcut{margin-left:100px;opacity:.5}smart-menu-item[template-applied]{cursor:default}smart-menu-item[disabled]{opacity:.5}smart-menu-items-group{position:relative}.smart-menu a{color:inherit}.smart-menu smart-menu-item[level="1"],.smart-menu smart-menu-item[level="1"]>.smart-menu-item-label-container,.smart-menu smart-menu-items-group[level="1"],.smart-menu smart-menu-items-group[level="1"]>.smart-menu-item-label-container{height:100%}.smart-menu .smart-menu-drop-down{position:absolute;background:var(--smart-background);color:var(--smart-background-color);left:100%}.smart-menu .smart-menu-drop-down .smart-menu-drop-down,.smart-menu .smart-menu-drop-down .smart-menu-drop-down.smart-visibility-hidden{border:none}.smart-menu .smart-menu-drop-down.smart-visibility-hidden.not-in-view{left:-9999px;top:-9999px;transition:none}.smart-menu .smart-menu-drop-down[level="2"]{top:100%;left:0}.smart-menu .smart-menu-main-container{display:flex;position:relative;align-items:center;width:100%;height:100%;cursor:default}.smart-menu .smart-menu-main-container>smart-menu-item[level="1"] .smart-menu-item-shortcut{display:none}.smart-menu .smart-menu-main-container.scroll-buttons-shown{width:calc(100% - 2 * var(--smart-menu-scroll-button-size));overflow:hidden}.smart-menu .smart-menu-main-container.scroll-buttons-shown.one-button-shown{width:calc(100% - var(--smart-menu-scroll-button-size))}.smart-menu .smart-menu-item-label-element{display:flex;align-items:center;overflow:hidden}.smart-menu .smart-menu-item-label-element>span{display:flex;align-items:center}.smart-menu .smart-element[level="2"]:first-child{margin-top:var(--smart-border-radius)}.smart-menu .smart-element[level="3"]:first-child{margin-top:var(--smart-border-radius)}.smart-menu .smart-header{background:var(--smart-surface);color:var(--smart-surface-color);box-shadow:var(--smart-elevation-4);border:var(--smart-border-width) solid var(--smart-border);border-top-left-radius:var(--smart-border-top-left-radius);border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);z-index:3;padding:0 16px;display:flex;align-items:center;justify-content:center;position:relative;width:100%}.smart-menu .smart-hamburger-icon{width:40px;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;float:none;cursor:pointer}.smart-menu-drop-down,.smart-menu-item[template-applied],.smart-menu[disabled] .smart-hamburger-icon,.smart-menu[disabled] smart-menu-item,.smart-menu[disabled] smart-menu-items-group{cursor:default}.smart-menu .smart-hamburger-icon.smart-close-button>.smart-hamburger-icon-line-top{width:29px;transform:translateX(4px) rotate(45deg)}.smart-menu .smart-hamburger-icon.smart-close-button>.smart-hamburger-icon-line-center{visibility:hidden}.smart-menu .smart-hamburger-icon.smart-close-button>.smart-hamburger-icon-line-bottom{width:29px;transform:translateX(4px) rotate(-45deg)}.smart-menu .smart-hamburger-icon .smart-hamburger-icon-custom-container{height:100%;display:flex;align-items:center}.smart-menu .smart-hamburger-icon-line{margin-bottom:5px;border-radius:10px;width:30px;height:5px;transform-origin:left;background-color:#757575}.smart-menu .smart-hamburger-icon-line-bottom{margin-bottom:0}.smart-menu .smart-menu-minimized-items-container .smart-menu-items-group-opened>.smart-menu-item-label-container{padding-bottom:0}.smart-menu .smart-menu-minimized-items-container .smart-menu-drop-down.smart-visibility-hidden{margin-top:0;height:0;transform:scaleY(0)}.smart-menu .smart-menu-minimized-items-container.smart-visibility-hidden.not-in-view{left:-9999px;top:-9999px;transition:none}.smart-menu:not([mode=tree])[checkboxes][drop-down-position$=left] .smart-menu-item-container[checkable]>smart-menu-item>.smart-menu-item-label-container:after,.smart-menu:not([mode=tree])[checkboxes][drop-down-position$=left] .smart-menu-item-container[checkable]>smart-menu-items-group>.smart-menu-item-label-container:after,.smart-menu[minimized][checkboxes][checkable][drop-down-position$=left] .smart-menu-minimized-items-container>smart-menu-item>.smart-menu-item-label-container:after,.smart-menu[minimized][checkboxes][checkable][drop-down-position$=left] .smart-menu-minimized-items-container>smart-menu-items-group>.smart-menu-item-label-container:after{left:initial;right:10px}.smart-menu .smart-menu-item-label-container{position:relative;width:100%;padding:10px;display:flex;flex-direction:row;align-items:center;justify-content:space-between;overflow:hidden}.smart-menu .smart-menu-scroll-button{display:block;background-color:var(--smart-scroll-bar-button-background);color:var(--smart-scroll-bar-button-color);border-color:var(--smart-scroll-bar-button-border);min-height:0;width:var(--smart-menu-scroll-button-size);height:100%}.smart-menu .smart-menu-scroll-button[hover]{background-color:var(--smart-scroll-bar-button-background-hover);color:var(--smart-scroll-bar-button-color-hover);border-color:var(--smart-scroll-bar-button-border-hover)}.smart-menu .smart-menu-scroll-button[active]{background-color:var(--smart-scroll-bar-button-background-active);color:var(--smart-scroll-bar-button-color-active);border-color:var(--smart-scroll-bar-button-border-active)}.smart-menu .smart-menu-scroll-button>button{border:none}.smart-menu .smart-hidden{display:none!important}.smart-menu.smart-container{display:flex;position:relative}.smart-menu:not([animation=none]) .smart-menu-drop-down,.smart-menu:not([animation=none]) .smart-menu-minimized-items-container{opacity:1;transform:scaleY(1);transform-origin:top;transition:opacity .2s ease-in,visibility .2s ease-in,transform .2s ease-in}.smart-menu:not([animation=none]) .smart-menu-drop-down.smart-visibility-hidden,.smart-menu:not([animation=none]) .smart-menu-minimized-items-container.smart-visibility-hidden{opacity:.2;transform:scaleY(0)}.smart-menu:not([animation=none]) .smart-menu-minimized-items-container .smart-menu-drop-down{transform-origin:top;transition:height .2s ease-in}.smart-menu:not([animation=none]) .smart-menu-minimized-items-container .smart-menu-item-label-container>.smart-menu-items-group-arrow{transition:transform .2s ease-in}.smart-menu:not([animation=none]) .smart-hamburger-icon-line{transition:visibility 20ms ease-in,transform .2s ease-in,width .2s ease-in}.smart-menu[animation=none] .smart-menu-drop-down.smart-visibility-hidden,.smart-menu[animation=none] .smart-menu-minimized-items-container.smart-visibility-hidden{transform:scale(0)}.smart-menu[drop-down-append-to]:not([drop-down-append-to=null]) .smart-menu-main-container{overflow:hidden}.smart-menu[overflow=hidden] .smart-menu-main-container{width:100%}.smart-menu[overflow=hidden][mode]:not([mode=horizontal]) .smart-menu-main-container{height:100%}.smart-menu[aria-orientation=horizontal] .smart-element[level="1"]:first-child{margin-left:var(--smart-border-radius)}.smart-menu[aria-orientation=horizontal] .smart-element[level="1"]:last-child{margin-right:var(--smart-border-radius)}.smart-menu:not([aria-orientation=horizontal]) .smart-element[level="1"]:first-child{margin-top:var(--smart-border-radius)}.smart-menu[disabled][mode=dropDown]:not([animation=none]){opacity:.55}.smart-menu[minimized] .smart-minimized-header{border:var(--smart-border-width) solid var(--smart-border);background:var(--smart-surface);justify-content:flex-end}.smart-menu:not([mode=tree])[drop-down-position$=left] smart-menu-item:not([level="1"])>.smart-menu-item-label-container,.smart-menu[minimized][drop-down-position$=left] .smart-menu-minimized-items-container .smart-menu-item-label-container,.smart-menu[minimized][drop-down-position$=left]>.smart-container{flex-direction:row-reverse}.smart-menu[minimized][drop-down-position$=left] .smart-menu-minimized-items-container .smart-menu-items-group-arrow{margin:0}.smart-menu[minimized][drop-down-position$=left] .smart-menu-minimized-items-container .smart-menu-drop-down{padding-left:0;padding-right:20px}.smart-menu:not([mode=tree])[checkboxes][drop-down-position$=left] .smart-menu-item-container[checkable]>smart-menu-item>.smart-menu-item-label-container,.smart-menu:not([mode=tree])[checkboxes][drop-down-position$=left] .smart-menu-item-container[checkable]>smart-menu-items-group>.smart-menu-item-label-container,.smart-menu[minimized][checkboxes][checkable][drop-down-position$=left] .smart-menu-minimized-items-container>smart-menu-item>.smart-menu-item-label-container,.smart-menu[minimized][checkboxes][checkable][drop-down-position$=left] .smart-menu-minimized-items-container>smart-menu-items-group>.smart-menu-item-label-container,.smart-menu[mode=dropDown][checkboxes][checkable][drop-down-position$=left] smart-menu-item[level="1"]>.smart-menu-item-label-container,.smart-menu[mode=dropDown][checkboxes][checkable][drop-down-position$=left] smart-menu-items-group[level="1"]>.smart-menu-item-label-container,.smart-menu[mode=tree][minimized][checkboxes][drop-down-position$=left] .smart-menu-item-container[checkable]>smart-menu-item>.smart-menu-item-label-container,.smart-menu[mode=tree][minimized][checkboxes][drop-down-position$=left] .smart-menu-item-container[checkable]>smart-menu-items-group>.smart-menu-item-label-container,.smart-menu[mode=vertical][checkboxes][checkable][drop-down-position$=left] smart-menu-item[level="1"]>.smart-menu-item-label-container,.smart-menu[mode=vertical][checkboxes][checkable][drop-down-position$=left] smart-menu-items-group[level="1"]>.smart-menu-item-label-container{padding-right:35px;padding-left:10px}.smart-menu[minimize-icon-template] .smart-hamburger-icon{width:auto;float:left}.smart-menu[minimize-icon-template=null] .smart-hamburger-icon{width:40px;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;float:none;cursor:pointer}.smart-menu[mode]:not([mode=horizontal]) smart-menu-item[level="1"]>.smart-menu-item-label-container,.smart-menu[mode]:not([mode=horizontal]) smart-menu-items-group[level="1"]>.smart-menu-item-label-container{height:initial}.smart-menu[mode]:not([mode=horizontal]):not([mode=tree])[drop-down-position$=left] smart-menu-item>.smart-menu-item-label-container,.smart-menu[mode]:not([mode=horizontal])[drop-down-position$=left] .smart-menu-main-container smart-menu-items-group>.smart-menu-item-label-container{flex-direction:row-reverse}.smart-menu[mode]:not([mode=horizontal])[drop-down-position$=left] .smart-menu-main-container smart-menu-items-group>.smart-menu-item-label-container>.smart-menu-items-group-arrow{margin-left:0;margin-right:50px;transform:rotate(180deg)}.smart-menu[mode]:not([mode=horizontal])[drop-down-position$=left] .smart-menu-main-container smart-menu-item>.smart-menu-item-label-container>.smart-menu-item-shortcut{margin-left:0;margin-right:100px}.smart-menu[mode]:not([mode=horizontal]):not([minimized]).smart-container,.smart-menu[mode]:not([mode=horizontal]):not([minimized])>.smart-container{display:block}.smart-menu[mode=dropDown] .smart-menu-main-container,.smart-menu[mode=vertical] .smart-menu-main-container{flex-direction:column}.smart-menu[mode=dropDown] .smart-menu-main-container.scroll-buttons-shown,.smart-menu[mode=vertical] .smart-menu-main-container.scroll-buttons-shown{width:100%;height:calc(100% - 2 * var(--smart-menu-scroll-button-size))}.smart-menu[mode=dropDown] .smart-menu-main-container.scroll-buttons-shown.one-button-shown,.smart-menu[mode=vertical] .smart-menu-main-container.scroll-buttons-shown.one-button-shown{width:100%;height:calc(100% - var(--smart-menu-scroll-button-size))}.smart-menu[mode=dropDown] .smart-menu-drop-down[level="2"],.smart-menu[mode=vertical] .smart-menu-drop-down[level="2"]{top:0;left:100%}.smart-menu[mode=dropDown] smart-menu-item[level="1"],.smart-menu[mode=dropDown] smart-menu-items-group[level="1"],.smart-menu[mode=vertical] smart-menu-item[level="1"],.smart-menu[mode=vertical] smart-menu-items-group[level="1"]{width:100%;height:auto}.smart-menu[mode=dropDown] .smart-menu-scroll-button,.smart-menu[mode=tree] .smart-menu-scroll-button,.smart-menu[mode=vertical] .smart-menu-scroll-button{height:var(--smart-menu-scroll-button-size);width:100%}.smart-menu[mode=dropDown] smart-menu-item[level="1"]>.smart-menu-item-label-element,.smart-menu[mode=dropDown] smart-menu-items-group[level="1"]>.smart-menu-item-label-element,.smart-menu[mode=vertical] smart-menu-item[level="1"]>.smart-menu-item-label-element,.smart-menu[mode=vertical] smart-menu-items-group[level="1"]>.smart-menu-item-label-element{max-width:calc(100% - 10px)}.smart-menu[mode=dropDown][drop-down-position$=left] .smart-menu-drop-down[level="2"],.smart-menu[mode=vertical][drop-down-position$=left] .smart-menu-drop-down[level="2"]{left:initial;right:100%}.smart-menu[mode=dropDown][drop-down-position|=top] .smart-menu-drop-down,.smart-menu[mode=vertical][drop-down-position|=top] .smart-menu-drop-down{box-shadow:var(--smart-elevation-8)}.smart-menu[mode=dropDown][drop-down-position|=top] .smart-menu-drop-down[level="2"],.smart-menu[mode=vertical][drop-down-position|=top] .smart-menu-drop-down[level="2"]{top:100%}.smart-menu[mode=dropDown][drop-down-position=overlay-right] .smart-menu-drop-down[level="2"],.smart-menu[mode=vertical][drop-down-position=overlay-right] .smart-menu-drop-down[level="2"]{left:0}.smart-menu[mode=dropDown][drop-down-position=overlay-left] .smart-menu-drop-down[level="2"],.smart-menu[mode=vertical][drop-down-position=overlay-left] .smart-menu-drop-down[level="2"]{right:0}.smart-menu[mode=dropDown][checkboxes][checkable][drop-down-position$=left] smart-menu-item[level="1"]>.smart-menu-item-label-container:after,.smart-menu[mode=dropDown][checkboxes][checkable][drop-down-position$=left] smart-menu-items-group[level="1"]>.smart-menu-item-label-container:after,.smart-menu[mode=vertical][checkboxes][checkable][drop-down-position$=left] smart-menu-item[level="1"]>.smart-menu-item-label-container:after,.smart-menu[mode=vertical][checkboxes][checkable][drop-down-position$=left] smart-menu-items-group[level="1"]>.smart-menu-item-label-container:after{left:initial;right:10px}.smart-menu[mode=vertical] .smart-menu-drop-down:not(.smart-menu-minimized-items-container){margin:0 calc(var(--smart-editor-drop-down-vertical-offset) + 3px)}.smart-menu[mode=vertical] .smart-menu-drop-down:not(.smart-menu-minimized-items-container) .smart-menu-drop-down{margin:0}.smart-menu[mode=vertical] .smart-menu-main-container>smart-menu-item[level="1"] .smart-menu-item-shortcut{display:none}.smart-menu[mode=dropDown][drop-down-position$=left] .smart-menu-main-container smart-menu-item[level="1"]>.smart-menu-item-label-container>.smart-menu-item-shortcut{margin-right:initial}.smart-menu[mode=dropDown] smart-menu-item[level="1"] .smart-menu-item-shortcut{display:block;margin-left:0}.smart-menu[mode=dropDown]:not([animation=none]){transition:opacity .2s ease-in,visibility .2s ease-in,transform .2s ease-in;opacity:1;transform:scale(1);transform-origin:0 0}.smart-menu[mode=dropDown]:not([animation=none]).smart-visibility-hidden{opacity:.2;transform:scale(0)}.smart-menu[mode=tree] smart-menu-item[level="1"] .smart-menu-item-shortcut{display:block}.smart-menu[mode=tree] .smart-menu-minimized-items-container.scroll-buttons-shown{width:100%;height:calc(100% - 2 * var(--smart-menu-scroll-button-size))}.smart-menu[mode=tree] .smart-menu-minimized-items-container.scroll-buttons-shown.one-button-shown{width:100%;height:calc(100% - var(--smart-menu-scroll-button-size))}.smart-menu[mode=tree]:not([minimized]) .smart-menu-minimized-items-container{position:relative;width:100%;height:100%;box-shadow:none;overflow:hidden;transform:none;left:0;top:0}.smart-menu[mode=tree]:not([minimized])[drop-down-position$=left] smart-menu-items-group:not([level="1"])>.smart-menu-item-label-container{flex-direction:row}.smart-menu[mode=tree][minimized][checkboxes][drop-down-position$=left] .smart-menu-item-container[checkable]>smart-menu-item>.smart-menu-item-label-container:after,.smart-menu[mode=tree][minimized][checkboxes][drop-down-position$=left] .smart-menu-item-container[checkable]>smart-menu-items-group>.smart-menu-item-label-container:after{left:initial;right:10px}.smart-menu[drop-down-position] .smart-menu-minimized-items-container .smart-menu-drop-down{position:static;width:100%;height:auto;padding-left:20px;box-shadow:none;transform:none}.smart-menu[checkboxes] .smart-menu-item-container[checkable]>smart-menu-item>.smart-menu-item-label-container,.smart-menu[checkboxes] .smart-menu-item-container[checkable]>smart-menu-items-group>.smart-menu-item-label-container,.smart-menu[checkboxes][checkable] smart-menu-item[level="1"]>.smart-menu-item-label-container,.smart-menu[checkboxes][checkable] smart-menu-items-group[level="1"]>.smart-menu-item-label-container{padding-left:35px}.smart-menu[drop-down-position*=overlay] .smart-menu-drop-down,.smart-menu[drop-down-position*=overlay] .smart-menu-drop-down[level="2"]{margin:unset}.smart-menu-drop-down.smart-drop-down-repositioned.smart-drop-down-container[drop-down-position*=top],.smart-menu[drop-down-position*=top] .smart-menu-drop-down,.smart-menu[drop-down-position*=top] .smart-menu-drop-down[level="2"]{margin:calc(-1 * (var(--smart-editor-drop-down-vertical-offset) + 3px)) 0}.smart-menu[drop-down-position|=overlay] .smart-menu-drop-down{top:50%;left:0;transform:translateY(-50%);box-shadow:var(--smart-elevation-8)}.smart-menu[drop-down-position|=overlay] .smart-menu-drop-down[level="2"]{top:initial;transform:initial}.smart-menu[drop-down-position|=overlay]:not([animation=none]) .smart-menu-drop-down{transform:translateY(-50%) scaleY(1);transform-origin:center}.smart-menu[drop-down-position|=overlay]:not([animation=none]) .smart-menu-drop-down.smart-visibility-hidden{transform:translateY(-50%) scaleY(0)}.smart-menu[drop-down-position|=overlay]:not([animation=none]) .smart-menu-drop-down[level="2"]{transform:scaleY(1)}.smart-menu[drop-down-position|=overlay]:not([animation=none]) .smart-menu-drop-down[level="2"].smart-visibility-hidden{transform:scaleY(0)}.smart-menu[drop-down-position|=top] .smart-menu-drop-down{top:100%;transform:translateY(-100%);box-shadow:var(--smart-elevation-8)}.smart-menu[drop-down-position|=top] .smart-menu-drop-down[level="2"]{top:0}.smart-menu[drop-down-position|=top] .smart-menu-minimized-items-container{top:calc(-1 * var(--smart-border-width));transform:translateY(-100%);box-shadow:var(--smart-elevation-4)}.smart-menu[drop-down-position|=top]:not([animation=none]) .smart-menu-drop-down{transform:translateY(-100%) scaleY(1);transform-origin:bottom}.smart-menu[drop-down-position|=top]:not([animation=none]) .smart-menu-drop-down.smart-visibility-hidden,.smart-menu[drop-down-position|=top]:not([animation=none]) .smart-menu-minimized-items-container.smart-visibility-hidden{transform:translateY(-100%) scaleY(0)}.smart-menu[drop-down-position|=top]:not([animation=none]):not([mode=tree]) .smart-menu-minimized-items-container{transform:translateY(-100%) scaleY(1);transform-origin:bottom}.smart-menu[drop-down-position|=top][mode=dropDown]:not([animation=none]) .smart-menu-minimized-items-container .smart-menu-drop-down,.smart-menu[drop-down-position|=top][mode=vertical]:not([animation=none]) .smart-menu-minimized-items-container .smart-menu-drop-down{transform-origin:top}.smart-menu[drop-down-position$=left] .smart-menu-drop-down{left:initial;right:100%}.smart-menu[drop-down-position$=left] .smart-menu-drop-down[level="2"]{left:initial;right:0}.smart-menu[drop-down-position$=left] .smart-menu-main-container smart-menu-items-group:not([level="1"])>.smart-menu-item-label-container>.smart-menu-items-group-arrow{margin-left:0;margin-right:50px;transform:rotate(180deg)}.smart-menu[drop-down-position$=left] .smart-menu-main-container smart-menu-item:not([level="1"])>.smart-menu-item-label-container>.smart-menu-item-shortcut{margin-left:0;margin-right:100px}.smart-menu[drop-down-position$=left] smart-menu-items-group:not([level="1"])>.smart-menu-item-label-container{flex-direction:row-reverse}.smart-menu[drop-down-position$=left] .smart-menu-minimized-items-container{left:initial;right:calc(-1 * var(--smart-border-width))}.smart-menu[drop-down-position=overlay-left] .smart-menu-main-container .smart-menu-drop-down:not([level="2"]){left:initial;right:0}.smart-menu[checkboxes] .smart-menu-item-container[checkable]>smart-menu-item[checked]>.smart-menu-item-label-container:after,.smart-menu[checkboxes] .smart-menu-item-container[checkable]>smart-menu-items-group[checked]>.smart-menu-item-label-container:after{position:absolute;left:10px;top:50%;transform:translateY(-50%);content:var(--smart-icon-check);font-family:smart-icons}.smart-menu[checkboxes] .smart-menu-item-container[checkable]>smart-menu-item[checked][check-type=radioButton]>.smart-menu-item-label-container:after,.smart-menu[checkboxes] .smart-menu-item-container[checkable]>smart-menu-items-group[checked][check-type=radioButton]>.smart-menu-item-label-container:after,.smart-menu[checkboxes] .smart-menu-item-container[checkable][check-mode=radioButton]>smart-menu-item[checked]>.smart-menu-item-label-container:after,.smart-menu[checkboxes] .smart-menu-item-container[checkable][check-mode=radioButton]>smart-menu-items-group[checked]>.smart-menu-item-label-container:after{content:var(--smart-icon-radio)}.smart-menu[checkboxes][checkable] smart-menu-item[level="1"][checked]>.smart-menu-item-label-container:after,.smart-menu[checkboxes][checkable] smart-menu-items-group[level="1"][checked]>.smart-menu-item-label-container:after{position:absolute;left:10px;top:50%;transform:translateY(-50%);content:var(--smart-icon-check);font-family:smart-icons}.smart-menu[checkboxes][checkable] smart-menu-item[level="1"][checked][check-type=radioButton]>.smart-menu-item-label-container:after,.smart-menu[checkboxes][checkable] smart-menu-items-group[level="1"][checked][check-type=radioButton]>.smart-menu-item-label-container:after,.smart-menu[checkboxes][checkable][check-mode=radioButton] smart-menu-item[level="1"][checked]>.smart-menu-item-label-container:after,.smart-menu[checkboxes][checkable][check-mode=radioButton] smart-menu-items-group[level="1"][checked]>.smart-menu-item-label-container:after{content:var(--smart-icon-radio)}.smart-menu[checkboxes][mode=tree] .smart-menu-minimized-items-container smart-menu-items-group.smart-menu-items-group-opened>.smart-menu-item-label-container:after{top:calc(50% + 5px)}.smart-menu-items-group .smart-menu-items-group-arrow{margin-left:50px;font-size:calc(var(--smart-font-size) - 3px);font-family:var(--smart-family-icon);transform:rotate(0)}.smart-menu-items-group[level="1"]>.smart-menu-item-label-container>.smart-menu-items-group-arrow{margin-left:10px}.smart-menu-item[template-applied] .smart-menu-item-label-container{overflow:visible}.smart-menu-item[template-applied] .smart-menu-item-label-element{width:100%;overflow:visible;display:block;white-space:normal}.smart-menu-drop-down{background:var(--smart-background);color:var(--smart-background-color)}.smart-menu-drop-down .smart-menu-drop-down{margin:0}.smart-menu-drop-down[level="2"]:not(.smart-menu-minimized-items-container){margin:calc(var(--smart-editor-drop-down-vertical-offset) + 3px) 0}.smart-menu-drop-down[level="2"][mode=dropDown]:not(.smart-menu-minimized-items-container),.smart-menu-drop-down[level="2"][mode=vertical]:not(.smart-menu-minimized-items-container){margin:0}.smart-menu-drop-down.smart-drop-down-repositioned[drop-down-position*=overlay],.smart-menu-drop-down[drop-down-position*=overlay]{margin:unset}.smart-menu-drop-down.drop-down-height-set .smart-menu-scroll-button{display:block;background-color:var(--smart-scroll-bar-button-background);color:var(--smart-scroll-bar-button-color);border-color:var(--smart-scroll-bar-button-border);min-height:0;width:100%;height:var(--smart-menu-scroll-button-size)}.smart-menu-drop-down.drop-down-height-set .smart-menu-scroll-button[hover]{background-color:var(--smart-scroll-bar-button-background-hover);color:var(--smart-scroll-bar-button-color-hover);border-color:var(--smart-scroll-bar-button-border-hover)}.smart-menu-drop-down.drop-down-height-set .smart-menu-scroll-button[active]{background-color:var(--smart-scroll-bar-button-background-active);color:var(--smart-scroll-bar-button-color-active);border-color:var(--smart-scroll-bar-button-border-active)}.smart-menu-drop-down.smart-drop-down-repositioned,.smart-menu-minimized-items-container,.smart-menu-minimized-items-container.smart-drop-down-repositioned .smart-menu-drop-down{background:var(--smart-background);color:var(--smart-background-color);z-index:var(--smart-editor-drop-down-z-index)}.smart-menu-drop-down.drop-down-height-set .smart-menu-scroll-button>button{border:none}.smart-menu-drop-down.drop-down-height-set .smart-menu-main-container.scroll-buttons-shown{width:calc(100% - 2 * var(--smart-menu-scroll-button-size));overflow:hidden}.smart-menu-drop-down.drop-down-height-set[mode=dropDown] .smart-menu-scroll-button,.smart-menu-drop-down.drop-down-height-set[mode=tree] .smart-menu-scroll-button,.smart-menu-drop-down.drop-down-height-set[mode=vertical] .smart-menu-scroll-button{width:100%;height:var(--smart-menu-scroll-button-size)}.smart-menu-drop-down.drop-down-height-set>.smart-menu-item-container{height:100%;overflow:hidden}.smart-menu-drop-down.drop-down-height-set>.smart-menu-item-container.scroll-buttons-shown{height:calc(100% - 2 * var(--smart-menu-scroll-button-size))}.smart-menu-drop-down.drop-down-height-set>.smart-menu-item-container.scroll-buttons-shown.one-button-shown{width:100%;height:calc(100% - var(--smart-menu-scroll-button-size))}.smart-menu-drop-down.drop-down-height-set>.smart-menu-item-container>smart-menu-items-group{position:static}.smart-menu-drop-down.smart-drop-down-repositioned{position:absolute;box-shadow:var(--smart-elevation-8);border-radius:var(--smart-border-radius);left:100%;top:0;box-sizing:border-box;font-size:var(--smart-font-size);font-family:var(--smart-font-family)}.smart-menu-drop-down.smart-drop-down-repositioned a{color:inherit}.smart-menu-drop-down.smart-drop-down-repositioned *{box-sizing:border-box}.smart-menu-drop-down.smart-drop-down-repositioned .smart-ripple{background:var(--smart-primary)}.smart-menu-drop-down.smart-drop-down-repositioned .smart-menu-drop-down{border:none}.smart-menu-drop-down.smart-drop-down-repositioned .smart-menu-item-label-container{position:relative;width:100%;padding:10px;display:flex;flex-direction:row;align-items:center;justify-content:space-between;overflow:hidden}.smart-menu-drop-down.smart-drop-down-repositioned smart-menu-item[separator][level]:last-child,.smart-menu-drop-down.smart-drop-down-repositioned smart-menu-items-group[separator][level]:last-child{border-bottom:none}.smart-menu-drop-down.smart-drop-down-repositioned[checkboxes] .smart-menu-item-container[checkable]>smart-menu-item>.smart-menu-item-label-container,.smart-menu-drop-down.smart-drop-down-repositioned[checkboxes] .smart-menu-item-container[checkable]>smart-menu-items-group>.smart-menu-item-label-container{padding-left:35px}.smart-menu-drop-down.smart-drop-down-repositioned[checkboxes] .smart-menu-item-container[checkable]>smart-menu-item[checked]>.smart-menu-item-label-container:after,.smart-menu-drop-down.smart-drop-down-repositioned[checkboxes] .smart-menu-item-container[checkable]>smart-menu-items-group[checked]>.smart-menu-item-label-container:after{position:absolute;left:10px;top:50%;transform:translateY(-50%);content:var(--smart-icon-check);font-family:smart-icons}.smart-menu-drop-down.smart-drop-down-repositioned[checkboxes] .smart-menu-item-container[checkable]>smart-menu-item[checked][check-type=radioButton]>.smart-menu-item-label-container:after,.smart-menu-drop-down.smart-drop-down-repositioned[checkboxes] .smart-menu-item-container[checkable]>smart-menu-items-group[checked][check-type=radioButton]>.smart-menu-item-label-container:after,.smart-menu-drop-down.smart-drop-down-repositioned[checkboxes] .smart-menu-item-container[checkable][check-mode=radioButton]>smart-menu-item[checked]>.smart-menu-item-label-container:after,.smart-menu-drop-down.smart-drop-down-repositioned[checkboxes] .smart-menu-item-container[checkable][check-mode=radioButton]>smart-menu-items-group[checked]>.smart-menu-item-label-container:after{content:var(--smart-icon-radio)}.smart-menu-drop-down.smart-drop-down-repositioned[level="2"]{top:100%;left:0}.smart-menu-drop-down.smart-drop-down-repositioned[mode=dropDown][level="2"],.smart-menu-drop-down.smart-drop-down-repositioned[mode=vertical][level="2"]{top:0;left:100%}.smart-menu-drop-down.smart-drop-down-repositioned[mode=dropDown][drop-down-position|=top],.smart-menu-drop-down.smart-drop-down-repositioned[mode=vertical][drop-down-position|=top]{box-shadow:var(--smart-elevation-8);transform:translateY(-100%)}.smart-menu-drop-down.smart-drop-down-repositioned[mode=dropDown][drop-down-position|=top][level="2"],.smart-menu-drop-down.smart-drop-down-repositioned[mode=vertical][drop-down-position|=top][level="2"]{top:100%;transform:none}.smart-menu-drop-down.smart-drop-down-repositioned[mode=dropDown][drop-down-position=overlay-right][level="2"],.smart-menu-drop-down.smart-drop-down-repositioned[mode=vertical][drop-down-position=overlay-right][level="2"]{left:0}.smart-menu-drop-down.smart-drop-down-repositioned[mode=dropDown][drop-down-position=overlay-left][level="2"],.smart-menu-drop-down.smart-drop-down-repositioned[mode=vertical][drop-down-position=overlay-left][level="2"]{right:0}.smart-menu-drop-down.smart-drop-down-repositioned[drop-down-position$=left],.smart-menu-drop-down.smart-drop-down-repositioned[mode=dropDown][drop-down-position$=left][level="2"]{left:initial;right:100%}.smart-menu-drop-down.smart-drop-down-repositioned[drop-down-position$=left][level="2"],.smart-menu-drop-down.smart-drop-down-repositioned[drop-down-position=overlay-left]:not([level="2"]){left:initial;right:0}.smart-menu-drop-down.smart-drop-down-repositioned[drop-down-position|=overlay]{top:50%;left:0;transform:translateY(-50%);box-shadow:var(--smart-elevation-8)}.smart-menu-drop-down.smart-drop-down-repositioned[drop-down-position*=top]{margin:calc(-1 * (var(--smart-editor-drop-down-vertical-offset) + 3px)) 0}.smart-menu-minimized-items-container .smart-menu-item-shortcut,.smart-menu-minimized-items-container smart-menu-items-group .smart-menu-items-group-arrow{margin-left:0}.smart-menu-drop-down.smart-drop-down-repositioned[drop-down-position|=top]{top:100%;transform:translateY(-100%);box-shadow:var(--smart-elevation-8)}.smart-menu-drop-down.smart-drop-down-repositioned[drop-down-position|=top][level="2"]{top:0;transform:none}.smart-menu-drop-down.smart-drop-down-repositioned[animation=none].smart-visibility-hidden{transform:scale(0)}.smart-menu-drop-down.smart-drop-down-repositioned.smart-visibility-hidden.not-in-view{left:-9999px;top:-9999px;transition:none}.smart-menu-drop-down.smart-drop-down-repositioned .smart-hidden{display:none!important}.smart-menu-drop-down:not([animation=none]).smart-drop-down-repositioned{opacity:1;transform:scaleY(1);transform-origin:top;transition:opacity .2s ease-in,visibility .2s ease-in,transform .2s ease-in}.smart-menu-drop-down:not([animation=none]).smart-drop-down-repositioned.smart-visibility-hidden{opacity:.2;transform:scaleY(0)}.smart-menu-drop-down:not([animation=none]).smart-drop-down-repositioned[drop-down-position|=top]{transform:translateY(-100%) scaleY(1);transform-origin:bottom}.smart-menu-drop-down:not([animation=none]).smart-drop-down-repositioned[drop-down-position|=top].smart-visibility-hidden{transform:translateY(-100%) scaleY(0)}.smart-menu-drop-down:not([animation=none]).smart-drop-down-repositioned[drop-down-position|=top][level="2"]{transform:scaleY(1)}.smart-menu-drop-down:not([animation=none]).smart-drop-down-repositioned[drop-down-position|=top][level="2"].smart-visibility-hidden{transform:scaleY(0)}.smart-menu-drop-down:not([animation=none]).smart-drop-down-repositioned[drop-down-position|=overlay]{transform:translateY(-50%) scaleY(1);transform-origin:center}.smart-menu-drop-down:not([animation=none]).smart-drop-down-repositioned[drop-down-position|=overlay].smart-visibility-hidden{transform:translateY(-50%) scaleY(0)}.smart-menu-drop-down:not(.smart-list-menu-view-minimized).smart-drop-down-repositioned[checkboxes][drop-down-position$=left] .smart-menu-item-container[checkable]>smart-menu-item>.smart-menu-item-label-container,.smart-menu-drop-down:not(.smart-list-menu-view-minimized).smart-drop-down-repositioned[checkboxes][drop-down-position$=left] .smart-menu-item-container[checkable]>smart-menu-items-group>.smart-menu-item-label-container{padding-left:10px;padding-right:35px}.smart-menu-drop-down:not(.smart-list-menu-view-minimized).smart-drop-down-repositioned[checkboxes][drop-down-position$=left] .smart-menu-item-container[checkable]>smart-menu-item>.smart-menu-item-label-container:after,.smart-menu-drop-down:not(.smart-list-menu-view-minimized).smart-drop-down-repositioned[checkboxes][drop-down-position$=left] .smart-menu-item-container[checkable]>smart-menu-items-group>.smart-menu-item-label-container:after{left:initial;right:10px}.smart-menu-minimized-items-container{position:absolute;box-shadow:var(--smart-elevation-8);border-radius:var(--smart-border-radius);left:calc(-1 * var(--smart-border-width));top:calc(100% + var(--smart-border-width))}.smart-menu-minimized-items-container smart-menu-items-group{display:flex;flex-direction:column;overflow:hidden}.smart-menu-minimized-items-container smart-menu-item[level],.smart-menu-minimized-items-container smart-menu-items-group[level]{margin:0;height:auto}.smart-menu-minimized-items-container .smart-menu-drop-down{margin:0;border:none;position:static;width:100%;height:auto;padding-left:20px;box-shadow:none;transform:none}.smart-menu-minimized-items-container .smart-menu-drop-down.smart-visibility-hidden{border:none}.smart-menu-minimized-items-container .smart-menu-drop-down:not(.smart-menu-minimized-items-container){margin:0}.smart-menu-minimized-items-container .smart-menu-drop-down.drop-down-height-set>.smart-menu-item-container{overflow:initial}.smart-menu-minimized-items-container.smart-menu-drop-down.smart-drop-down-repositioned[drop-down-position$=left] .smart-menu-drop-down .smart-menu-item-label-container>.smart-menu-item-shortcut{margin-right:0}.smart-menu-minimized-items-container.smart-menu-drop-down.smart-drop-down-repositioned[drop-down-position|=overlay]{transform:none}.smart-menu-minimized-items-container.smart-menu-drop-down:not([animation=none]).smart-drop-down-repositioned[drop-down-position|=overlay]{transform:scaleY(1);transform-origin:top}.smart-menu-minimized-items-container.smart-menu-drop-down:not([animation=none]).smart-visibility-hidden.smart-drop-down-repositioned[drop-down-position|=overlay]{transform:scaleY(0)}.smart-menu-minimized-items-container .smart-menu-item-label-container{position:relative;width:100%;padding:10px;display:flex;flex-direction:row;align-items:center;justify-content:space-between;overflow:hidden}.smart-menu-minimized-items-container .smart-menu-items-group-opened>.smart-menu-drop-down{margin-top:10px}.smart-menu-minimized-items-container .smart-menu-items-group-opened>.smart-menu-item-label-container>.smart-menu-items-group-arrow{transform:rotate(180deg)}.smart-menu-minimized-items-container .smart-menu-item-label-element{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.smart-menu-minimized-items-container.smart-drop-down-repositioned{z-index:var(--smart-editor-drop-down-z-index)}.smart-menu-minimized-items-container.smart-drop-down-repositioned .smart-menu-drop-down{position:absolute;box-shadow:var(--smart-elevation-8);border-radius:var(--smart-border-radius);left:100%;top:0}.smart-menu-minimized-items-container.smart-drop-down-repositioned .smart-menu-drop-down.smart-visibility-hidden{border:none;margin-top:0;height:0;transform:scaleY(0)}.smart-menu-minimized-items-container.smart-drop-down-repositioned .smart-menu-items-group-opened>.smart-menu-item-label-container{padding-bottom:0}.smart-menu-minimized-items-container.smart-drop-down-repositioned[drop-down-position$=left]{left:initial;right:calc(-1 * var(--smart-border-width))}.smart-menu-minimized-items-container.smart-drop-down-repositioned[drop-down-position$=left] .smart-menu-items-group-arrow{margin:0}.smart-drop-down.smart-menu-minimized-items-container,.smart-menu-minimized-items-container[drop-down]{margin:calc(var(--smart-editor-drop-down-vertical-offset) + 3px) 0}.smart-menu-minimized-items-container.smart-drop-down-repositioned[checkboxes] smart-menu-items-group.smart-menu-items-group-opened>.smart-menu-item-label-container:after{top:calc(50% + 5px)}.smart-menu-minimized-items-container:not([animation=none]){opacity:1;transform:scaleY(1);transform-origin:top;transition:opacity .2s ease-in,visibility .2s ease-in,transform .2s ease-in}.smart-menu-minimized-items-container:not([animation=none]) .smart-menu-drop-down{transform-origin:top;transition:height .2s ease-in}.smart-menu-minimized-items-container:not([animation=none]) .smart-menu-item-label-container>.smart-menu-items-group-arrow{transition:transform .2s ease-in}.smart-menu-minimized-items-container:not([animation=none]).smart-visibility-hidden{opacity:.2;transform:scaleY(0)}.smart-menu-minimized-items-container[drop-down-position] .smart-menu-drop-down{position:static;width:100%;height:auto;padding-left:20px;box-shadow:none;transform:none}.smart-menu-minimized-items-container[drop-down-position|=top]{top:calc(-1 * var(--smart-border-width));transform:translateY(-100%);box-shadow:var(--smart-elevation-4)}.smart-menu-minimized-items-container[drop-down-position|=top]:not([animation=none]){transform:translateY(-100%) scaleY(1);transform-origin:bottom}.smart-menu-minimized-items-container[drop-down-position|=top]:not([animation=none]).smart-visibility-hidden{transform:translateY(-100%) scaleY(0)}.smart-menu-minimized-items-container[drop-down-position|=top][mode=dropDown]:not([animation=none]) .smart-menu-drop-down,.smart-menu-minimized-items-container[drop-down-position|=top][mode=vertical]:not([animation=none]) .smart-menu-drop-down{transform-origin:top}.smart-menu-minimized-items-container[drop-down-position$=left] .smart-menu-drop-down{padding-left:0;padding-right:20px}.smart-menu-minimized-items-container[checkboxes][checkable]>smart-menu-item>.smart-menu-item-label-container,.smart-menu-minimized-items-container[checkboxes][checkable]>smart-menu-items-group>.smart-menu-item-label-container{padding-left:35px}.smart-menu-drop-down.smart-drop-down-repositioned[right-to-left][checkboxes] .smart-menu-item-container[checkable]>smart-menu-item>.smart-menu-item-label-container,.smart-menu-drop-down.smart-drop-down-repositioned[right-to-left][checkboxes] .smart-menu-item-container[checkable]>smart-menu-items-group>.smart-menu-item-label-container,.smart-menu-minimized-items-container[checkboxes][checkable][drop-down-position$=left]>smart-menu-item>.smart-menu-item-label-container,.smart-menu-minimized-items-container[checkboxes][checkable][drop-down-position$=left]>smart-menu-items-group>.smart-menu-item-label-container,.smart-menu-minimized-items-container[right-to-left][checkboxes][checkable]>smart-menu-item>.smart-menu-item-label-container,.smart-menu-minimized-items-container[right-to-left][checkboxes][checkable]>smart-menu-items-group>.smart-menu-item-label-container,.smart-menu[right-to-left][checkboxes] .smart-menu-item-container[checkable]>smart-menu-item>.smart-menu-item-label-container,.smart-menu[right-to-left][checkboxes] .smart-menu-item-container[checkable]>smart-menu-items-group>.smart-menu-item-label-container,.smart-menu[right-to-left][checkboxes][checkable] smart-menu-item[level="1"]>.smart-menu-item-label-container,.smart-menu[right-to-left][checkboxes][checkable] smart-menu-items-group[level="1"]>.smart-menu-item-label-container{padding-left:10px;padding-right:35px}.smart-menu-minimized-items-container[checkboxes][checkable]>smart-menu-item[checked]>.smart-menu-item-label-container:after,.smart-menu-minimized-items-container[checkboxes][checkable]>smart-menu-items-group[checked]>.smart-menu-item-label-container:after{position:absolute;left:10px;top:50%;transform:translateY(-50%);content:var(--smart-icon-check);font-family:smart-icons}.smart-menu-minimized-items-container[checkboxes][checkable]>smart-menu-item[checked][check-type=radioButton]>.smart-menu-item-label-container:after,.smart-menu-minimized-items-container[checkboxes][checkable]>smart-menu-items-group[checked][check-type=radioButton]>.smart-menu-item-label-container:after,.smart-menu-minimized-items-container[checkboxes][checkable][check-mode=radioButton]>smart-menu-item[checked]>.smart-menu-item-label-container:after,.smart-menu-minimized-items-container[checkboxes][checkable][check-mode=radioButton]>smart-menu-items-group[checked]>.smart-menu-item-label-container:after{content:var(--smart-icon-radio)}.smart-menu-minimized-items-container[checkboxes][checkable][drop-down-position$=left]>smart-menu-item>.smart-menu-item-label-container:after,.smart-menu-minimized-items-container[checkboxes][checkable][drop-down-position$=left]>smart-menu-items-group>.smart-menu-item-label-container:after{left:initial;right:10px}.smart-date-time-picker .smart-date-time-drop-down.smart-visibility-hidden.not-in-view{left:-9999px;top:-9999px;transition:none}.minus:after{content:var(--smart-icon-minus);font-family:var(--smart-font-family-icon)}.smart-menu[right-to-left] .smart-menu-main-container{direction:rtl}.smart-menu[right-to-left] .smart-menu-minimized-items-container{left:initial;right:calc(-1 * var(--smart-border-width))}.smart-menu[right-to-left] .smart-menu-minimized-items-container .smart-menu-item-shortcut{margin-right:initial;margin-left:initial}.smart-menu[right-to-left] .smart-menu-items-group-arrow.right.smart-arrow-right{margin-left:initial;margin-right:50px}.smart-menu[right-to-left] .smart-menu-drop-down{left:initial;right:100%}.smart-menu[right-to-left] .smart-menu-drop-down[level="2"]{right:0}.smart-menu[right-to-left][mode=dropDown],.smart-menu[right-to-left][mode=vertical] .smart-menu-drop-down[level="2"]{left:initial;right:100%}.smart-menu[right-to-left] smart-menu-item .smart-menu-item-shortcut{margin-left:initial;margin-right:100px}.smart-menu[right-to-left] smart-menu-items-group .smart-menu-items-group-arrow{margin-right:initial;margin-left:initial}.smart-menu[right-to-left] smart-menu-items-group[level="1"]>.smart-menu-item-label-container>.smart-menu-items-group-arrow{margin-right:10px;margin-left:initial}.smart-menu[right-to-left]:not([mode=tree])[drop-down-position$=left] smart-menu-item:not([level="1"])>.smart-menu-item-label-container,.smart-menu[right-to-left][mode]:not([mode=horizontal]):not([mode=tree])[drop-down-position$=left] smart-menu-item>.smart-menu-item-label-container,.smart-menu[right-to-left][mode]:not([mode=horizontal])[drop-down-position$=left] .smart-menu-main-container smart-menu-items-group>.smart-menu-item-label-container{flex-direction:row}.smart-menu[right-to-left][mode=tree] .smart-menu-minimized-items-container{direction:rtl}.smart-menu[right-to-left][mode=dropDown] smart-menu-item[level="1"] .smart-menu-item-shortcut{margin-right:initial;margin-left:initial}.smart-menu[right-to-left][drop-down-position$=left] smart-menu-items-group:not([level="1"])>.smart-menu-item-label-container{flex-direction:row}.smart-menu[right-to-left][drop-down-position$=right] .smart-menu-drop-down[level="2"],.smart-menu[right-to-left][drop-down-position=overlay-right] .smart-menu-main-container .smart-menu-drop-down:not([level="2"]){right:initial;left:0}.smart-menu[right-to-left][checkboxes] .smart-menu-item-container[checkable]>smart-menu-item[checked]>.smart-menu-item-label-container:after,.smart-menu[right-to-left][checkboxes] .smart-menu-item-container[checkable]>smart-menu-items-group[checked]>.smart-menu-item-label-container:after,.smart-menu[right-to-left][checkboxes][checkable] smart-menu-item[level="1"][checked]>.smart-menu-item-label-container:after,.smart-menu[right-to-left][checkboxes][checkable] smart-menu-items-group[level="1"][checked]>.smart-menu-item-label-container:after{right:10px;left:initial}.smart-menu[right-to-left][minimized] .smart-menu-minimized-items-container{direction:rtl}.smart-menu[right-to-left][minimized][drop-down-position$=left]>.smart-container{flex-direction:row}.smart-menu-drop-down.smart-drop-down-repositioned[right-to-left]{left:initial;right:100%}.smart-menu-drop-down.smart-drop-down-repositioned[right-to-left] .smart-menu-item-container,.smart-menu-drop-down.smart-drop-down-repositioned[right-to-left].smart-menu-minimized-items-container{direction:rtl}.smart-menu-drop-down.smart-drop-down-repositioned[right-to-left] .smart-menu-items-group-arrow.right.smart-arrow-right{margin-left:initial;margin-right:50px}.smart-menu-drop-down.smart-drop-down-repositioned[right-to-left] smart-menu-item .smart-menu-item-shortcut{margin-left:initial;margin-right:100px}.smart-menu-drop-down.smart-drop-down-repositioned[right-to-left][drop-down-position$=left][level="2"],.smart-menu-drop-down.smart-drop-down-repositioned[right-to-left][drop-down-position=overlay-right]:not([level="2"]){right:initial;left:0}.smart-menu-drop-down.smart-drop-down-repositioned[right-to-left][level="2"]{right:0}.smart-menu-drop-down.smart-drop-down-repositioned[right-to-left][checkboxes] .smart-menu-item-container[checkable]>smart-menu-item[checked]>.smart-menu-item-label-container:after,.smart-menu-drop-down.smart-drop-down-repositioned[right-to-left][checkboxes] .smart-menu-item-container[checkable]>smart-menu-items-group[checked]>.smart-menu-item-label-container:after{left:initial;right:10px}.smart-menu-minimized-items-container[right-to-left]{left:initial;right:100%}.smart-menu-minimized-items-container[right-to-left] .smart-menu-item-shortcut,.smart-menu-minimized-items-container[right-to-left] smart-menu-items-group .smart-menu-items-group-arrow{margin-right:initial;margin-left:initial}.smart-menu-minimized-items-container[right-to-left].smart-drop-down-repositioned{left:initial;right:calc(-1 * var(--smart-border-width))}.smart-menu-minimized-items-container[right-to-left].smart-drop-down-repositioned .smart-menu-drop-down{left:initial;right:100%}.smart-menu-minimized-items-container[right-to-left][checkboxes][checkable]>smart-menu-item[checked]>.smart-menu-item-label-container:after,.smart-menu-minimized-items-container[right-to-left][checkboxes][checkable]>smart-menu-items-group[checked]>.smart-menu-item-label-container:after{left:initial;right:10px}
smart-multi-split-button{width:var(--smart-multi-split-button-default-width);height:var(--smart-multi-split-button-default-height);overflow:initial;visibility:hidden;cursor:pointer}smart-multi-split-button.smart-element{overflow:visible;visibility:inherit;border-width:0}smart-multi-split-button[right-to-left] .smart-content,smart-multi-split-button[right-to-left] .smart-hint,smart-multi-split-button[right-to-left] .smart-label{direction:rtl}smart-multi-split-button[right-to-left] .smart-drop-down{direction:initial}.smart-multi-split-button smart-list-box{position:relative;width:100%;height:100%;border:initial;padding:initial;overflow:hidden;font-size:inherit;font-family:inherit;outline:0}.smart-multi-split-button .smart-buttons-container .smart-input .smart-token{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;cursor:pointer;margin:0 2px;-webkit-user-select:none;user-select:none}.smart-multi-split-button .smart-drop-down.smart-visibility-hidden{transform:scale(0);transition:transform .2s ease-in;transform-origin:left top 0}.smart-multi-split-button .smart-template-container{width:100%;height:100%}.smart-multi-split-button .smart-multi-split-button-buttons{display:flex;width:100%;height:100%;align-items:stretch;justify-content:space-around}.smart-multi-split-button .smart-multi-split-button-buttons .smart-action-split-button{display:flex;width:100%;height:100%;justify-content:center;align-items:center}.smart-multi-split-button .smart-multi-split-button-buttons .smart-action-split-button[hover]{background:var(--smart-ui-state-hover);border:var(--smart-ui-state-border-hover);color:var(--smart-ui-state-color-hover)}.smart-multi-split-button .smart-multi-split-button-buttons .smart-action-split-button[active]{background:var(--smart-ui-state-active);border:var(--smart-ui-state-border-active);color:var(--smart-ui-state-color-active)}.smart-multi-split-button.primary{--smart-border:var(--smart-primary);--smart-outline:var(--smart-primary);--smart-surface:var(--smart-primary);--smart-surface-color:var(--smart-primary-color);--smart-ui-state-selected:rgba(var(--smart-primary-rgb), .8);--smart-ui-state-color-selected:var(--smart-primary-color);--smart-ui-state-active:rgba(var(--smart-primary-rgb), .8);--smart-ui-state-color-active:var(--smart-primary-color);--smart-ui-state-hover:var(--smart-primary);--smart-ui-state-color-hover:var(--smart-primary-color);--smart-ui-state-border-selected:var(--smart-primary);--smart-ui-state-border-active:var(--smart-primary);--smart-ui-state-border-hover:var(--smart-primary)}.smart-multi-split-button.primary[hover]{--smart-surface:var(--smart-primary-color)}.smart-multi-split-button.secondary{--smart-border:var(--smart-secondary);--smart-outline:var(--smart-secondary);--smart-surface:var(--smart-secondary);--smart-surface-color:var(--smart-secondary-color);--smart-ui-state-selected:rgba(var(--smart-secondary-rgb), .8);--smart-ui-state-color-selected:var(--smart-secondary-color);--smart-ui-state-active:rgba(var(--smart-secondary-rgb), .8);--smart-ui-state-color-active:var(--smart-secondary-color);--smart-ui-state-hover:var(--smart-secondary);--smart-ui-state-color-hover:var(--smart-secondary-color);--smart-ui-state-border-selected:var(--smart-secondary);--smart-ui-state-border-active:var(--smart-secondary);--smart-ui-state-border-hover:var(--smart-secondary)}.smart-multi-split-button.secondary[hover]{--smart-surface:var(--smart-secondary-color)}.smart-multi-split-button.success{--smart-border:var(--smart-success);--smart-outline:var(--smart-success);--smart-surface:var(--smart-success);--smart-surface-color:var(--smart-success-color);--smart-ui-state-selected:rgba(var(--smart-success-rgb), .8);--smart-ui-state-color-selected:var(--smart-success-color);--smart-ui-state-active:rgba(var(--smart-success-rgb), .8);--smart-ui-state-color-active:var(--smart-success-color);--smart-ui-state-hover:var(--smart-success);--smart-ui-state-color-hover:var(--smart-success-color);--smart-ui-state-border-selected:var(--smart-success);--smart-ui-state-border-active:var(--smart-success);--smart-ui-state-border-hover:var(--smart-success)}.smart-multi-split-button.success[hover]{--smart-surface:var(--smart-success-color)}.smart-multi-split-button.error{--smart-border:var(--smart-error);--smart-outline:var(--smart-error);--smart-surface:var(--smart-error);--smart-surface-color:var(--smart-error-color);--smart-ui-state-selected:rgba(var(--smart-error-rgb), .8);--smart-ui-state-color-selected:var(--smart-error-color);--smart-ui-state-active:rgba(var(--smart-error-rgb), .8);--smart-ui-state-color-active:var(--smart-error-color);--smart-ui-state-hover:var(--smart-error);--smart-ui-state-color-hover:var(--smart-error-color);--smart-ui-state-border-selected:var(--smart-error);--smart-ui-state-border-active:var(--smart-error);--smart-ui-state-border-hover:var(--smart-error)}.smart-multi-split-button.error[hover]{--smart-surface:var(--smart-error-color)}.smart-multi-split-button.info{--smart-border:var(--smart-info);--smart-outline:var(--smart-info);--smart-surface:var(--smart-info);--smart-surface-color:var(--smart-info-color);--smart-ui-state-selected:rgba(var(--smart-info-rgb), .8);--smart-ui-state-color-selected:var(--smart-info-color);--smart-ui-state-active:rgba(var(--smart-info-rgb), .8);--smart-ui-state-color-active:var(--smart-info-color);--smart-ui-state-hover:var(--smart-info);--smart-ui-state-color-hover:var(--smart-info-color);--smart-ui-state-border-selected:var(--smart-info);--smart-ui-state-border-active:var(--smart-info);--smart-ui-state-border-hover:var(--smart-info)}.smart-multi-split-button.info[hover]{--smart-surface:var(--smart-info-color)}.smart-multi-split-button.warning{--smart-border:var(--smart-warning);--smart-outline:var(--smart-warning);--smart-surface:var(--smart-warning);--smart-surface-color:var(--smart-warning-color);--smart-ui-state-selected:rgba(var(--smart-warning-rgb), .8);--smart-ui-state-color-selected:var(--smart-warning-color);--smart-ui-state-active:rgba(var(--smart-warning-rgb), .8);--smart-ui-state-color-active:var(--smart-warning-color);--smart-ui-state-hover:var(--smart-warning);--smart-ui-state-color-hover:var(--smart-warning-color);--smart-ui-state-border-selected:var(--smart-warning);--smart-ui-state-border-active:var(--smart-warning);--smart-ui-state-border-hover:var(--smart-warning)}.smart-multi-split-button.warning[hover]{--smart-surface:var(--smart-warning-color)}.smart-multi-split-button.light{--smart-border:var(--smart-light);--smart-outline:var(--smart-light);--smart-surface:var(--smart-light);--smart-surface-color:var(--smart-light-color);--smart-ui-state-selected:rgba(var(--smart-light-rgb), .8);--smart-ui-state-color-selected:var(--smart-light-color);--smart-ui-state-active:rgba(var(--smart-light-rgb), .8);--smart-ui-state-color-active:var(--smart-light-color);--smart-ui-state-hover:var(--smart-light);--smart-ui-state-color-hover:var(--smart-light-color);--smart-ui-state-border-selected:var(--smart-light);--smart-ui-state-border-active:var(--smart-light);--smart-ui-state-border-hover:var(--smart-light)}.smart-multi-split-button.light[hover]{--smart-surface:var(--smart-light-color)}.smart-multi-split-button.dark{--smart-border:var(--smart-dark);--smart-outline:var(--smart-dark);--smart-surface:var(--smart-dark);--smart-surface-color:var(--smart-dark-color);--smart-ui-state-selected:rgba(var(--smart-dark-rgb), .8);--smart-ui-state-color-selected:var(--smart-dark-color);--smart-ui-state-active:rgba(var(--smart-dark-rgb), .8);--smart-ui-state-color-active:var(--smart-dark-color);--smart-ui-state-hover:var(--smart-dark);--smart-ui-state-color-hover:var(--smart-dark-color);--smart-ui-state-border-selected:var(--smart-dark);--smart-ui-state-border-active:var(--smart-dark);--smart-ui-state-border-hover:var(--smart-dark)}.smart-multi-split-button.dark[hover]{--smart-surface:var(--smart-dark-color)}.smart-multi-split-button[selection-display-mode=tokens] .smart-multi-split-button-unselect-button{pointer-events:initial}.smart-multi-split-button[selection-display-mode=plain] .smart-multi-split-button-unselect-button{pointer-events:none}
smart-multiline-text-box.smart-element{width:var(--smart-multiline-text-box-default-width);height:var(--smart-multiline-text-box-default-height);background:0 0;overflow:initial}smart-multiline-text-box[cols]{width:auto}smart-multiline-text-box[rows]{height:auto}.smart-multiline-text-box[hover]{border-color:var(--smart-ui-state-border-hover)}.smart-multiline-text-box[focus]{border-color:var(--smart-outline)}.smart-multiline-text-box .smart-container>.smart-resize-trigger-container,.smart-multiline-text-box .smart-inner-container>.smart-resize-trigger-container,.smart-multiline-text-box>.smart-resize-trigger-container{margin-bottom:-1px}.smart-multiline-text-box.smart-drop-down-box.smart-container,.smart-multiline-text-box.smart-drop-down-box>.smart-container,.smart-multiline-text-box.smart-drop-down-box[label][hint]>.smart-container{overflow:visible;display:block;max-height:inherit}.smart-multiline-text-box .smart-inner-container,.smart-multiline-text-box textarea{font-family:inherit;font-size:inherit;font-weight:inherit;font-style:inherit;overflow:hidden;color:inherit;width:100%}.smart-multiline-text-box smart-scroll-bar{display:none}.smart-multiline-text-box textarea{height:100%;outline:0;padding:var(--smart-editor-label-padding);border:none;background-color:inherit;resize:none;float:left;border-top-left-radius:var(--smart-border-top-left-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius)}.smart-multiline-text-box textarea:not(.smart-text-box-hidden){max-height:inherit}.smart-multiline-text-box textarea.smart-text-box-hidden{visibility:hidden;width:100%;height:0;position:absolute;left:0;top:0}.smart-multiline-text-box .smart-inner-container{height:100%;position:relative;max-height:inherit}.smart-multiline-text-box .smart-initialization-value{display:none}.smart-multiline-text-box .smart-resize-element{box-sizing:border-box;height:calc(var(--smart-scroll-bar-size));width:calc(var(--smart-scroll-bar-size));position:absolute;bottom:0;right:0;background-color:#d3d3d3;background-clip:content-box;border:var(--smart-border) solid var(--smart-border-width);display:none;padding:2px 0 0 2px;cursor:nw-resize;touch-action:none}.smart-multiline-text-box .smart-required-message{display:none}.smart-multiline-text-box .smart-container textarea,.smart-multiline-text-box.smart-container textarea{height:100%}.smart-multiline-text-box .smart-container.hscroll textarea,.smart-multiline-text-box.smart-container.hscroll textarea{height:calc(100% - var(--smart-scroll-bar-size))}.smart-multiline-text-box .smart-container.hscroll smart-scroll-bar,.smart-multiline-text-box.smart-container.hscroll smart-scroll-bar{width:100%;height:calc(var(--smart-scroll-bar-size));display:block}.smart-multiline-text-box .smart-container.hscroll smart-scroll-bar[orientation=vertical],.smart-multiline-text-box.smart-container.hscroll smart-scroll-bar[orientation=vertical]{display:none}.smart-multiline-text-box .smart-container.vscroll textarea,.smart-multiline-text-box.smart-container.vscroll textarea{width:calc(100% - var(--smart-scroll-bar-size))}.smart-multiline-text-box .smart-container.vscroll smart-scroll-bar[orientation=vertical],.smart-multiline-text-box.smart-container.vscroll smart-scroll-bar[orientation=vertical]{float:right;width:calc(var(--smart-scroll-bar-size));height:100%;display:block;border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius)}.smart-multiline-text-box .smart-container.vscroll.hscroll smart-scroll-bar,.smart-multiline-text-box.smart-container.vscroll.hscroll smart-scroll-bar{width:calc(100% - var(--smart-scroll-bar-size))}.smart-multiline-text-box .smart-container.vscroll.hscroll smart-scroll-bar[orientation=vertical],.smart-multiline-text-box.smart-container.vscroll.hscroll smart-scroll-bar[orientation=vertical]{height:calc(100% - var(--smart-scroll-bar-size));width:calc(var(--smart-scroll-bar-size))}.smart-multiline-text-box[auto-expand]{height:auto;min-height:var(--smart-editor-height)}.smart-multiline-text-box[auto-expand] textarea.smart-text-box-hidden{height:0}.smart-multiline-text-box[auto-capitalize=words] textarea{text-transform:capitalize}.smart-multiline-text-box[auto-capitalize=characters] textarea{text-transform:uppercase}.smart-multiline-text-box[display-mode=escaped] textarea{white-space:nowrap}.smart-multiline-text-box[cols] textarea,.smart-multiline-text-box[rows] textarea{width:inherit;height:inherit}.smart-multiline-text-box[resizable] .smart-container.hscroll smart-scroll-bar,.smart-multiline-text-box[resizable].smart-container.hscroll smart-scroll-bar{width:calc(100% - var(--smart-scroll-bar-size))}.smart-multiline-text-box[resizable] .smart-container.hscroll smart-scroll-bar smart-multiline-text-box .smart-container.vscroll.hscroll smart-scroll-bar,.smart-multiline-text-box[resizable].smart-container.hscroll smart-scroll-bar smart-multiline-text-box .smart-container.vscroll.hscroll smart-scroll-bar{height:calc(var(--smart-scroll-bar-size));width:calc(100% - var(--smart-scroll-bar-size))}.smart-multiline-text-box[resizable] .smart-container.vscroll smart-scroll-bar[orientation=vertical],.smart-multiline-text-box[resizable].smart-container.vscroll smart-scroll-bar[orientation=vertical]{height:calc(100% - var(--smart-scroll-bar-size));width:calc(var(--smart-scroll-bar-size))}.smart-multiline-text-box[resizable] .smart-resize-element{display:block}.smart-multiline-text-box[resizable] .smart-resize,.smart-multiline-text-box[resizable] .smart-resize textarea{-webkit-user-select:none;user-select:none}.smart-multiline-text-box.outlined textarea{border:1px solid var(--smart-border)!important;padding:10px}.smart-multiline-text-box.outlined[focus] textarea{border:1px solid var(--smart-primary)!important;border-top-color:transparent!important}.smart-multiline-text-box.outlined.smart-element{height:var(--smart-multiline-text-box-default-height)}.smart-multiline-text-box[right-to-left] textarea{float:right}.smart-multiline-text-box[right-to-left] .smart-container.vscroll smart-scroll-bar[orientation=vertical],.smart-multiline-text-box[right-to-left].smart-container.vscroll smart-scroll-bar[orientation=vertical]{border-top-left-radius:var(--smart-border-top-right-radius);border-bottom-left-radius:var(--smart-border-bottom-right-radius);border-top-right-radius:initial;border-bottom-right-radius:initial}
smart-numeric-text-box{width:var(--smart-numeric-text-box-default-width);height:var(--smart-numeric-text-box-default-height)}smart-numeric-text-box .smart-container{display:flex;border:none;width:100%}smart-numeric-text-box.smart-element{overflow:visible;border:none;background:0 0}smart-numeric-text-box[spin-buttons][spin-buttons-position=left] .smart-spin-button.smart-element:first-child,smart-numeric-text-box[spin-buttons][spin-buttons-position=left] .smart-spin-button.smart-element:last-child{border-right:none}smart-numeric-text-box[hint] .smart-hint,smart-numeric-text-box[label] .smart-label{position:absolute;left:0;bottom:100%;font-size:12px;width:100%;display:block;padding:var(--smart-editor-label-padding);pointer-events:none;user-select:none;-webkit-user-select:none;-ms-user-select:none;-moz-user-select:none;text-align:initial;line-height:initial;vertical-align:initial}.smart-numeric-text-box{border-color:var(--smart-border);border-width:1px;border-style:solid}.smart-numeric-text-box:focus{border-color:var(--smart-outline)}.smart-numeric-text-box *{box-sizing:border-box}.smart-numeric-text-box.smart-container{display:flex;border:none;width:100%;height:100%;position:relative}.smart-numeric-text-box .smart-container{height:100%;position:relative}.smart-numeric-text-box input.smart-input{width:100%;height:100%;border-color:var(--smart-border);border-width:1px;border-style:solid;border-right-width:var(--smart-border-width);padding:var(--smart-editor-label-padding);background-color:var(--smart-background);color:inherit;font:inherit;text-align:var(--smart-numeric-text-box-text-align);outline:0;-webkit-appearance:none}.smart-numeric-text-box .smart-spin-button{width:100%;height:50%;background-color:var(--smart-surface);color:var(--smart-surface-color);border-color:var(--smart-border);border-width:1px;border-style:solid}.smart-numeric-text-box .smart-spin-button:first-child{border-bottom:none}.smart-numeric-text-box .smart-spin-button.smart-element{display:block;min-height:0;border-radius:0;background:var(--smart-surface);color:var(--smart-surface-color)}.smart-numeric-text-box .smart-spin-button[hover]{background-color:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover);border-color:var(--smart-ui-state-border-hover)}.smart-numeric-text-box .smart-spin-button[active]{background-color:var(--smart-ui-state-active);color:var(--smart-ui-state-color-active);border-color:var(--smart-ui-state-border-active)}.smart-numeric-text-box .smart-spin-button .smart-button{border:none;padding:0}.smart-numeric-text-box .smart-numeric-text-box-component{border-width:var(--smart-border-width);border-style:solid;border-color:var(--smart-border);border-left-width:var(--smart-border-width);border-right-width:0}.smart-numeric-text-box .smart-input-addon{border-color:var(--smart-border);border-width:1px;border-style:solid}.smart-numeric-text-box .smart-spin-buttons-container{width:var(--smart-editor-addon-width);border:none}.smart-numeric-text-box .smart-numeric-text-box-drop-down{width:100%}.smart-numeric-text-box .smart-numeric-text-box-radix-display.smart-numeric-text-box-pressed-component,.smart-numeric-text-box .smart-numeric-text-box-radix-display.smart-numeric-text-box-pressed-component[hover]{background-color:var(--smart-ui-state-active);color:var(--smart-ui-state-color-active);border-color:var(--smart-ui-state-border-active)}.smart-numeric-text-box .smart-numeric-text-box-unit-display{width:var(--smart-numeric-text-box-default-unit-display-width);border-width:var(--smart-border-width) 0;overflow:hidden;background-color:var(--smart-background)}.smart-numeric-text-box .smart-numeric-text-box-unit-display[hover],.smart-numeric-text-box[drop-down-enabled] .smart-numeric-text-box-radix-display[hover]:not([aria-expanded=true]){background-color:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover)}.smart-numeric-text-box .smart-numeric-text-box-unit-display[hover]{border-color:var(--smart-ui-state-border-hover)}.smart-numeric-text-box .smart-arrow{position:relative}.smart-numeric-text-box .smart-hint,.smart-numeric-text-box .smart-label{display:none;position:absolute}.smart-numeric-text-box .smart-numeric-text-box-component:not(.smart-hidden){border-radius:0}.smart-numeric-text-box .smart-numeric-text-box-component:not(.smart-hidden).smart-numeric-text-box-component-border-left,.smart-numeric-text-box .smart-numeric-text-box-component:not(.smart-hidden).smart-numeric-text-box-component-border-left .smart-spin-button.smart-repeat-button-element{border-top-left-radius:var(--smart-border-top-left-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);overflow:hidden}.smart-numeric-text-box .smart-numeric-text-box-component:not(.smart-hidden).smart-numeric-text-box-component-border-left .smart-spin-button.smart-element:first-child{border-bottom-left-radius:0}.smart-numeric-text-box .smart-numeric-text-box-component:not(.smart-hidden).smart-numeric-text-box-component-border-left .smart-spin-button.smart-element:last-child{border-top-left-radius:0}.smart-numeric-text-box .smart-numeric-text-box-component:not(.smart-hidden).smart-numeric-text-box-component-border-right,.smart-numeric-text-box .smart-numeric-text-box-component:not(.smart-hidden).smart-numeric-text-box-component-border-right .smart-spin-button.smart-element{border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);overflow:hidden}.smart-numeric-text-box .smart-numeric-text-box-component:not(.smart-hidden).smart-numeric-text-box-component-border-right .smart-spin-button.smart-element:first-child{border-bottom-right-radius:0}.smart-numeric-text-box .smart-numeric-text-box-component:not(.smart-hidden).smart-numeric-text-box-component-border-right .smart-spin-button.smart-element:last-child{border-top-right-radius:0}.smart-numeric-text-box[drop-down-enabled] .smart-numeric-text-box-radix-display{cursor:pointer}.smart-numeric-text-box:not([animation=none])[hint] .smart-hint{transition:opacity .2s cubic-bezier(.4,0,.6,1)}.smart-numeric-text-box:not([animation=none])[hint][focus] .smart-hint{transition:opacity .2s cubic-bezier(.4,0,.2,1)}.smart-numeric-text-box:not([animation=none]) .smart-numeric-text-box-drop-down{transform-origin:top;transition:opacity .2s ease-in,visibility .2s ease-in,transform .2s ease-in}.smart-numeric-text-box[focus] .smart-input-addon,.smart-numeric-text-box[focus] .smart-spin-button,.smart-numeric-text-box[focus] input.smart-input{border-color:var(--smart-outline)}.smart-numeric-text-box[hint] .smart-hint{opacity:0;top:100%;bottom:initial}.smart-numeric-text-box[hint][focus] .smart-hint{opacity:1}.smart-numeric-text-box[radix-display-position=right]:not([spin-buttons]) .smart-numeric-text-box-radix-display,.smart-numeric-text-box[radix-display-position=right][spin-buttons][spin-buttons-position=left] .smart-numeric-text-box-radix-display{border-left-width:0;border-right-width:var(--smart-border-width)}.smart-numeric-text-box[disabled],.smart-numeric-text-box[value=-Infinity] .smart-spin-buttons-container,.smart-numeric-text-box[value=Infinity] .smart-spin-buttons-container,.smart-numeric-text-box[value=NaN] .smart-spin-buttons-container,.smart-numeric-text-box[value=null] .smart-numeric-text-box-radix-display{opacity:.55;cursor:default}.smart-numeric-text-box[spin-buttons] input.smart-input{width:calc(100% - var(--smart-editor-addon-width));border-right-width:0}.smart-numeric-text-box[radix-display] input.smart-input{width:calc(100% - var(--smart-numeric-text-box-default-radix-display-width))}.smart-numeric-text-box[show-unit] input.smart-input{width:calc(100% - var(--smart-numeric-text-box-default-unit-display-width))}.smart-numeric-text-box[spin-buttons][radix-display] input.smart-input{width:calc(100% - var(--smart-editor-addon-width) - var(--smart-numeric-text-box-default-radix-display-width))}.smart-numeric-text-box[spin-buttons][show-unit] input.smart-input{width:calc(100% - var(--smart-editor-addon-width) - var(--smart-numeric-text-box-default-unit-display-width))}.smart-numeric-text-box[radix-display][show-unit] input.smart-input{width:calc(100% - var(--smart-numeric-text-box-default-radix-display-width) - var(--smart-numeric-text-box-default-unit-display-width))}.smart-numeric-text-box[spin-buttons][radix-display][show-unit] input.smart-input{width:calc(100% - var(--smart-numeric-text-box-default-unit-display-width) - var(--smart-editor-addon-width) - var(--smart-numeric-text-box-default-radix-display-width))}.smart-numeric-text-box[spin-buttons] .smart-spin-buttons-container{border-right-width:var(--smart-border-width)}.smart-numeric-text-box[spin-buttons][spin-buttons-position=left] .smart-spin-buttons-container{border-right-width:0}.smart-numeric-text-box[spin-buttons][spin-buttons-position=left] input.smart-input{border-right-width:var(--smart-border-width)}.smart-numeric-text-box[spin-buttons][spin-buttons-position=left][show-unit] input.smart-input{border-right-width:0}.smart-numeric-text-box[spin-buttons][spin-buttons-position=left][show-unit] .smart-numeric-text-box-unit-display{border-right-width:var(--smart-border-width)}.smart-numeric-text-box[show-unit] input.smart-input,.smart-numeric-text-box[spin-buttons][show-unit] .smart-numeric-text-box-unit-display{border-right-width:0}.smart-numeric-text-box[show-unit] .smart-numeric-text-box-unit-display{border-right-width:var(--smart-border-width)}.smart-numeric-text-box.underlined{border-width:0 0 1px;background:var(--smart-background)}.smart-numeric-text-box.underlined input{border-width:0 0 1px}.smart-numeric-text-box.underlined input:focus{border:none}.smart-numeric-text-box.underlined .smart-drop-down-button,.smart-numeric-text-box.underlined .smart-spin-button{background:var(--smart-background);border-width:0 0 1px;border-radius:0}.smart-numeric-text-box.underlined .smart-drop-down-button[active],.smart-numeric-text-box.underlined .smart-drop-down-button[hover],.smart-numeric-text-box.underlined .smart-spin-button[active],.smart-numeric-text-box.underlined .smart-spin-button[hover]{background:var(--smart-background);color:var(--smart-ui-state-active)}.smart-numeric-text-box.underlined .smart-hint{position:absolute;top:0;left:0;right:0;bottom:0;display:block!important;box-sizing:border-box;padding:var(--smart-editor-label-padding);color:var(--smart-background-color);pointer-events:none;font-size:75%;opacity:0;transition:color .2s,font-size .2s,line-height .2s,margin-top .2s,opacity .1s,top .2s;margin-top:calc(0px - var(--smart-font-size))}.smart-numeric-text-box.underlined .smart-hint:after{content:"";position:absolute;left:0;bottom:-2px;display:block;width:100%;height:2px;background-color:var(--smart-primary);transform-origin:bottom center;transform:scaleX(0);transition:transform .2s}.smart-numeric-text-box.underlined:not([focus]) .smart-hint{margin-top:0}.smart-numeric-text-box.underlined[focus] .smart-drop-down-button{color:var(--smart-primary);opacity:1;border-bottom-color:transparent}.smart-numeric-text-box.underlined[focus] .smart-hint{color:var(--smart-primary);opacity:1}.smart-numeric-text-box.underlined[focus] .smart-hint:after{transform:scale(1)}.smart-numeric-text-box.underlined[focus] .smart-spin-button{border-bottom-color:transparent}.smart-numeric-text-box.outlined{height:auto;min-height:0;border-radius:var(--smart-border-radius);background:var(--smart-background)}.smart-numeric-text-box.outlined input{transition:border-color .2s;border:1px solid var(--smart-border);outline:unset;display:block;padding:13px}.smart-numeric-text-box.outlined .smart-drop-down-button,.smart-numeric-text-box.outlined .smart-spin-button{background:var(--smart-background);border-width:0}.smart-numeric-text-box.outlined .smart-drop-down-button[active],.smart-numeric-text-box.outlined .smart-drop-down-button[hover],.smart-numeric-text-box.outlined .smart-spin-button[active],.smart-numeric-text-box.outlined .smart-spin-button[hover]{background:var(--smart-background);color:var(--smart-ui-state-active)}.smart-numeric-text-box.outlined .smart-drop-down-button{padding:8px 0}.smart-numeric-text-box.outlined .smart-hint{position:absolute;top:0;left:0;display:flex!important;border-color:var(--smart-border)!important;width:100%;max-height:100%;color:var(--smart-background-color);font-size:75%;line-height:15px;cursor:text;padding:0;margin-top:-6px;transition:color .2s,z-index .2s,font-size .2s,opacity .3s,font-size .2s,line-height .2s}.smart-numeric-text-box.outlined .smart-hint:after,.smart-numeric-text-box.outlined .smart-hint:before{content:"";display:block;box-sizing:border-box;margin-top:6px;border-top:solid 1px;border-top-color:var(--smart-border)!important;min-width:10px;height:8px;pointer-events:none;box-shadow:inset 0 1px transparent;transition:border-color .2s,box-shadow .2s}.smart-numeric-text-box.outlined .smart-hint:before{margin-right:4px;border-left:solid 1px transparent;border-radius:var(--smart-border-radius) 0}.smart-numeric-text-box.outlined .smart-hint:after{flex-grow:1;margin-left:4px;border-right:solid 1px transparent;border-radius:0 var(--smart-border-radius)}.smart-numeric-text-box.outlined:not([focus]) .smart-hint{font-size:var(--smart-font-size);line-height:48px;opacity:0}.smart-numeric-text-box.outlined[focus]{--smart-border:var(--smart-primary)}.smart-numeric-text-box.outlined[focus] .smart-input{border:1px solid var(--smart-border);border-top-color:transparent!important}.smart-numeric-text-box.outlined[focus] .smart-drop-down-button{color:var(--smart-primary)}.smart-numeric-text-box.outlined[focus] .smart-hint{color:var(--smart-primary);opacity:1}.smart-numeric-text-box.outlined[focus] .smart-hint:after,.smart-numeric-text-box.outlined[focus] .smart-hint:before{border-top-color:var(--smart-primary)!important}.smart-numeric-text-box-radix-display{display:flex;align-items:center;cursor:default;background-color:var(--smart-surface);color:var(--smart-surface-color);width:var(--smart-numeric-text-box-default-radix-display-width);justify-content:center}.smart-numeric-text-box-unit-display{display:flex;align-items:center;cursor:default}.smart-numeric-text-box-drop-down{position:absolute;box-sizing:border-box;height:auto;border-width:var(--smart-border-width);border-style:solid;border-color:var(--smart-border);box-shadow:var(--smart-elevation-8);padding:2px;top:100%;z-index:9999;list-style-type:none;transform:scaleY(1);opacity:1;background:var(--smart-background);color:var(--smart-background-color);font-family:var(--smart-font-family);font-size:var(--smart-font-size)}.smart-numeric-text-box-drop-down .smart-list-item{cursor:pointer;margin:1px;border:1px solid transparent;padding:4px 8px;word-break:break-all}.smart-numeric-text-box-drop-down .smart-list-item:hover,.smart-numeric-text-box-drop-down .smart-list-item[hover]{background-color:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover)}.smart-numeric-text-box-drop-down.smart-visibility-hidden{transform:scaleY(0);opacity:0}.smart-numeric-text-box-drop-down.smart-drop-down-repositioned:not([animation=none]){transform-origin:top;transition:opacity .2s ease-in,visibility .2s ease-in,transform .2s ease-in}.smart-numeric-text-box-pressed-component{background-color:var(--smart-ui-state-active);color:var(--smart-ui-state-color-active);border-color:var(--smart-ui-state-border-active)}smart-numeric-text-box[right-to-left]>.smart-container{direction:initial}smart-numeric-text-box[right-to-left] .smart-hint,smart-numeric-text-box[right-to-left] .smart-label,smart-numeric-text-box[right-to-left] .smart-numeric-text-box-drop-down,smart-numeric-text-box[right-to-left] .smart-numeric-text-box-radix-display,smart-numeric-text-box[right-to-left] input.smart-input{direction:rtl}smart-numeric-text-box[right-to-left] .smart-numeric-text-box-unit-display{direction:rtl;flex-direction:row-reverse}.smart-numeric-text-box-drop-down.smart-drop-down-repositioned[right-to-left]{direction:rtl}
.smart-pager-middle-buttons-container{order:1;height:100%}.smart-pager-far-buttons-container{order:2;height:100%}.smart-pager-far-buttons-container.near{order:0}.smart-pager-far-buttons-container.far{order:2}.smart-pager-input-and-label-container{order:3}.smart-pager-input-and-label-container.near{order:-2}.smart-pager-size-selector-and-label-container{order:4}.smart-pager-size-selector-and-label-container.near{order:-1}.smart-pager-summary-container{order:5}.smart-pager-summary-container.near{order:-2}.smart-pager-near-buttons-container{order:0;height:100%}.smart-pager-near-buttons-container.near{order:0}.smart-pager-near-buttons-container.far{order:2}smart-pager{min-width:300px;height:var(--smart-pager-default-height);justify-content:center;padding:var(--smart-pager-padding);--smart-item-border-radius:100%;--smart-item-border-top-left-radius:100%;--smart-item-border-top-right-radius:100%;--smart-item-border-bottom-left-radius:100%;--smart-item-border-bottom-right-radius:100%}smart-pager.smart-element{overflow:visible;border-radius:0;background:var(--smart-surface);color:var(--smart-surface-color)}smart-pager:focus{border-color:var(--smart-outline)}smart-pager.smart-container,smart-pager>.smart-container{flex-direction:row;display:flex;align-items:center}smart-pager .smart-pager-far-buttons-container,smart-pager .smart-pager-input-and-label-container,smart-pager .smart-pager-middle-buttons-container,smart-pager .smart-pager-near-buttons-container,smart-pager .smart-pager-size-selector-and-label-container,smart-pager .smart-pager-summary-container{display:flex;flex-direction:row;align-items:center;justify-content:center;margin:0 4px}smart-pager .smart-pager-page-index-selectors-container{display:flex;color:var(--smart-pager-color);width:auto;height:100%;outline:0;align-items:center}smart-pager .smart-pager-page-index-selectors-container:focus .smart-pager-page-index-selector[selected]{text-decoration:underline}smart-pager .smart-pager-label{display:flex;border:none;align-items:center;justify-content:center;overflow:hidden;text-overflow:ellipsis;height:100%;margin:0 8px}smart-pager .smart-pager-button,smart-pager .smart-pager-page-index-selector{font-size:inherit;font-family:inherit;display:flex;overflow:hidden;position:relative;border-top-left-radius:var(--smart-item-border-top-left-radius);border-top-right-radius:var(--smart-item-border-top-right-radius);border-bottom-left-radius:var(--smart-item-border-bottom-left-radius);border-bottom-right-radius:var(--smart-item-border-bottom-right-radius)}smart-pager .smart-pager-label span{padding:2px}smart-pager .smart-pager-button{align-items:center;justify-content:center;width:var(--smart-pager-button-width);height:var(--smart-pager-button-height)}smart-pager .smart-pager-button:hover{background:var(--smart-ui-state-hover);border-color:var(--smart-ui-state-border-hover);color:var(--smart-ui-state-color-hover)}smart-pager .smart-pager-button:active{background:var(--smart-ui-state-active);border-color:var(--smart-ui-state-border-active);color:var(--smart-ui-state-color-active)}smart-pager .smart-pager-button:active .smart-ripple{background-color:var(--smart-ui-state-color-active)}smart-pager .smart-pager-button[disabled]{opacity:.55}smart-pager .smart-pager-button .smart-ripple{background-color:var(--smart-ui-state-active)}smart-pager .smart-pager-page-index-selector{flex-grow:1;align-items:center;justify-content:center;-webkit-user-select:none;user-select:none;cursor:pointer;text-overflow:ellipsis;width:var(--smart-pager-page-index-selector-width);height:var(--smart-pager-page-index-selector-height);margin-left:var(--smart-pager-page-index-selector-horizontal-offset)}smart-pager .smart-pager-page-index-selector:first-child{margin-left:-1px}smart-pager .smart-pager-page-index-selector:hover{background-color:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover);border-color:var(--smart-ui-state-border-hover)}smart-pager .smart-pager-page-index-selector .smart-ripple{background-color:var(--smart-ui-state-active)}smart-pager .smart-pager-page-index-selector[selected]{background-color:var(--smart-ui-state-active);color:var(--smart-ui-state-color-active);border-color:var(--smart-ui-state-border-active);box-shadow:var(--smart-elevation-2)}smart-pager .smart-pager-page-index-selector[selected] .smart-ripple{background-color:var(--smart-ui-state-color-active)}smart-pager .smart-page-size-selector,smart-pager .smart-pager-input{background:var(--smart-background);color:var(--smart-background-color)}smart-pager .smart-next-ellipsis-button,smart-pager .smart-previous-ellipsis-button{width:var(--smart-pager-page-index-ellipsis-selector-width);height:var(--smart-pager-page-index-ellipsis-selector-height)}smart-pager .smart-page-size-selector{width:var(--smart-pager-page-size-selector-width);--smart-item-border-top-left-radius:var(--smart-border-radius);--smart-item-border-top-right-radius:var(--smart-border-radius);--smart-item-border-bottom-left-radius:var(--smart-border-radius);--smart-item-border-bottom-right-radius:var(--smart-border-radius)}smart-pager .smart-pager-input{width:var(--smart-pager-input-width);box-sizing:border-box;padding:0 var(--smart-editor-label-padding);margin:0 5px;border-top-left-radius:var(--smart-border-top-left-radius);border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);border-color:var(--smart-border);border-style:solid;border-width:var(--smart-border-width);height:var(--smart-text-box-default-height)}smart-pager:not([show-navigation-button-labels]) .smart-pager-button{border-top-left-radius:var(--smart-item-border-top-left-radius);border-top-right-radius:var(--smart-item-border-top-right-radius);border-bottom-left-radius:var(--smart-item-border-bottom-left-radius);border-bottom-right-radius:var(--smart-item-border-bottom-right-radius);width:var(--smart-pager-page-index-selector-width)}smart-pager[disabled] .smart-pager-page-index-selector{-webkit-user-select:none;user-select:none;cursor:default}smart-pager[right-to-left] .smart-pager-far-buttons-container,smart-pager[right-to-left] .smart-pager-input-and-label-container,smart-pager[right-to-left] .smart-pager-label,smart-pager[right-to-left] .smart-pager-middle-buttons-container,smart-pager[right-to-left] .smart-pager-near-buttons-container,smart-pager[right-to-left] .smart-pager-page-index-selectors-container,smart-pager[right-to-left] .smart-pager-size-selector-and-label-container,smart-pager[right-to-left]>.smart-container{flex-direction:row-reverse}smart-pager[right-to-left] .smart-arrow-left-first:after,smart-pager[right-to-left] .smart-arrow-left:after,smart-pager[right-to-left] .smart-arrow-right-last:after,smart-pager[right-to-left] .smart-arrow-right:after{transform:rotate(180deg);transform-origin:center}smart-pager[right-to-left] .smart-first-button,smart-pager[right-to-left] .smart-last-button,smart-pager[right-to-left] .smart-next-page-button,smart-pager[right-to-left] .smart-pager-input,smart-pager[right-to-left] .smart-pager-label,smart-pager[right-to-left] .smart-pager-label>span,smart-pager[right-to-left] .smart-pager-page-index-selector,smart-pager[right-to-left] .smart-previous-page-button{direction:rtl}
smart-password-text-box{display:block;width:var(--smart-text-box-default-width);height:var(--smart-text-box-default-height)}smart-password-text-box.smart-element{border:1px solid var(--smart-border);background:var(--smart-background);overflow:visible;border-radius:var(--smart-border-radius)}.smart-password-text-box>.smart-container{position:relative}.smart-password-text-box .smart-content,.smart-password-text-box .smart-content .smart-input{width:100%;height:100%;color:inherit;font-family:inherit;position:relative;overflow:hidden}.smart-password-text-box .smart-content .smart-input::-ms-reveal{display:none}.smart-password-text-box .smart-password-icon{position:absolute;right:0;top:0;height:100%;width:30px;display:flex;justify-content:center;font-size:inherit;align-items:center;cursor:pointer;-webkit-user-select:none;user-select:none;color:var(--smart-background-color);font-family:var(--smart-font-family-icon)}.smart-password-text-box .smart-password-icon:after{content:var(--smart-icon-visibility)}.smart-password-text-box .smart-password-icon.smart-hidden{display:none}.smart-password-text-box smart-tooltip{font-size:inherit;font-family:inherit;font-weight:inherit}.smart-password-text-box .smart-hint,.smart-password-text-box .smart-label{display:none;position:absolute}.smart-password-text-box[hint] .smart-hint,.smart-password-text-box[label] .smart-label{position:absolute;left:0;bottom:100%;font-size:12px;width:100%;display:block;padding:var(--smart-editor-label-padding);pointer-events:none;user-select:none;-webkit-user-select:none;-ms-user-select:none;-moz-user-select:none;text-align:initial;line-height:initial;vertical-align:initial}.smart-password-text-box[hint] .smart-hint{opacity:0;transition:opacity .2s cubic-bezier(.4,0,.6,1);top:100%;bottom:initial}.smart-password-text-box[hint][focus] .smart-hint{opacity:1;transition:opacity .2s cubic-bezier(.4,0,.2,1)}@media not all and (min-resolution:0.001dpcm){@supports (-webkit-appearance:none){.smart-password-text-box .smart-hint,.smart-password-text-box .smart-hint::after{transition-duration:.1s}}}.smart-password-text-box[show-password-strength] .smart-password-short input:focus,.smart-password-text-box[show-password-strength]:focus .smart-password-short input{border-color:var(--smart-error)}.smart-password-text-box[show-password-strength] .smart-password-weak input:focus,.smart-password-text-box[show-password-strength]:focus .smart-password-weak input{border-color:orange}.smart-password-text-box[show-password-strength] .smart-password-far input:focus,.smart-password-text-box[show-password-strength]:focus .smart-password-far input{border-color:#ff0}.smart-password-text-box[show-password-strength] .smart-password-good input:focus,.smart-password-text-box[show-password-strength]:focus .smart-password-good input{border-color:#00bfff}.smart-password-text-box[show-password-strength] .smart-password-strong input:focus,.smart-password-text-box[show-password-strength]:focus .smart-password-strong input{border-color:var(--smart-success)}smart-password-text-box[right-to-left] .smart-hint,smart-password-text-box[right-to-left] .smart-label,smart-password-text-box[right-to-left]>.smart-container{direction:rtl}smart-password-text-box[right-to-left] smart-tooltip{direction:initial}smart-password-text-box[right-to-left] .smart-password-icon{left:0;right:initial}
.smart-pivot-table tfoot td,.smart-pivot-table thead th{font-weight:700}.smart-pivot-table thead th:not(:last-child):not(.last-visible){border-right:var(--smart-border-width) solid var(--smart-border)}.smart-pivot-table tbody tr td{transform:scaleY(1)}.smart-pivot-table tbody tr.collapsed{height:0}.smart-pivot-table tbody tr.collapsed td{border-top-width:0;border-top-color:transparent;padding-top:0;padding-bottom:0;line-height:0;transform:scaleY(0)}.smart-pivot-table tbody tr.no-height td{line-height:0}.smart-pivot-table th.align-left>.wrapper{justify-content:flex-start}.smart-pivot-table th.align-center>.wrapper{justify-content:center}.smart-pivot-table th.align-right>.wrapper{justify-content:flex-end}.smart-pivot-table tr td{line-height:calc(var(--smart-table-row-height) - 2 * var(--smart-table-cell-padding) - var(--smart-border-width));white-space:nowrap}.smart-pivot-table tr:last-child:not(:first-child) .smart-pivot-table-grouping-header,.smart-pivot-table tr:last-child:not(:first-child) .smart-pivot-table-total-header{border-top:var(--smart-border-width) solid var(--smart-border)}.smart-pivot-table tr:not(:last-child) .smart-pivot-table-grouping-header,.smart-pivot-table tr:not(:last-child) .smart-pivot-table-selection-header,.smart-pivot-table tr:not(:last-child) .smart-pivot-table-total-header{border-bottom:none}.smart-pivot-table td.align-left{text-align:left}.smart-pivot-table td.align-center{text-align:center}.smart-pivot-table td.align-right{text-align:right}.smart-pivot-table td.sort-by{position:relative}.smart-pivot-table td.sort-by:before{content:var(--smart-icon-up);display:flex;align-items:center;justify-content:flex-end;visibility:hidden;position:absolute;top:0;right:var(--smart-table-cell-padding);height:100%;font-family:var(--smart-font-family-icon);opacity:0;transform:rotate(90deg)}.smart-pivot-table td.sort-by.asc:before,.smart-pivot-table td.sort-by.desc:before{opacity:1;visibility:visible}.smart-pivot-table td[selection-detail]:before{content:attr(selection-detail);position:absolute;top:100%;left:0;padding:3px;background-color:var(--smart-secondary);color:var(--smart-secondary-color);font-size:var(--smart-font-size);font-variant:small-caps;opacity:.8;pointer-events:none}.smart-pivot-table td[selection-detail][detail-position-x=right]:before{left:unset;right:0}.smart-pivot-table td[selection-detail][detail-position-y=top]:before{top:0;transform:translateY(-100%)}.smart-pivot-table .smart-pivot-table-main-container{width:100%;height:100%;overflow:auto}.smart-pivot-table .smart-pivot-table-main-container.prevent-scroll{overflow:hidden}.smart-pivot-table .smart-pivot-table-selection-header{border-top:none}.smart-pivot-table .smart-pivot-table-total-header{border-top:none;width:var(--smart-pivot-table-cell-width)}.smart-pivot-table .smart-pivot-table-grouping-header{border-top:none;width:var(--smart-pivot-table-secondary-group-width)}.smart-pivot-table .smart-pivot-table-toolbar{display:none;border:none;border-bottom:var(--smart-border-width) solid var(--smart-border);height:var(--smart-table-row-height)}.smart-pivot-table .smart-pivot-table-toolbar smart-breadcrumb .smart-breadcrumb-items .smart-breadcrumb-item{height:calc(100% - var(--smart-breadcrumb-padding))}.smart-pivot-table .smart-pivot-table-row-group-breadcrumb:before{content:var(--smart-icon-align-left);transform:scale(-1)}.smart-pivot-table:not([right-to-left]) td.sort-by.desc::before,.smart-pivot-table[right-to-left] td.sort-by.asc:before{transform:rotate(270deg)}.smart-pivot-table .smart-pivot-table-pivot-breadcrumb{border-left:var(--smart-border-width) solid var(--smart-border);border-radius:0}.smart-pivot-table .smart-pivot-table-pivot-breadcrumb:before{content:var(--smart-icon-refresh)}.smart-pivot-table .empty{border-top:none}.smart-pivot-table .total-arrow{display:inline-flex;margin-left:var(--smart-table-arrow-margin);width:var(--smart-table-arrow-size);height:var(--smart-table-arrow-size);cursor:pointer}.smart-pivot-table .total-arrow:focus{outline:0;border:1px solid var(--smart-ui-state-color-focus);border-radius:50%;color:var(--smart-ui-state-color-focus)}.smart-pivot-table .smart-pivot-panel{border-top:none;border-right:none;border-bottom:none;width:100%;height:100%}.smart-pivot-table smart-breadcrumb{position:relative;border:none;width:unset;height:100%;padding-left:calc(3 * var(--smart-breadcrumb-padding))}.smart-pivot-panel .smart-accordion smart-accordion-item .smart-accordion-item-content,.smart-pivot-panel smart-accordion-item .smart-content-container{padding:0}.smart-pivot-table smart-breadcrumb:before{position:absolute;left:0;display:flex;align-items:center;justify-content:center;width:calc(3 * var(--smart-breadcrumb-padding));height:100%;font-family:var(--smart-font-family-icon)}.smart-pivot-table smart-breadcrumb>.smart-container{position:relative}.smart-pivot-table smart-breadcrumb>.smart-container.drop-target:after{content:"";position:absolute;top:0;left:calc(-3 * var(--smart-breadcrumb-padding));box-sizing:border-box;border:2px dashed var(--smart-primary);width:calc(100% + 4 * var(--smart-breadcrumb-padding));height:calc(100% + var(--smart-breadcrumb-padding))}.smart-pivot-table smart-breadcrumb .smart-breadcrumb-items,.smart-pivot-table smart-breadcrumb .smart-template-container{height:100%}.smart-pivot-table smart-breadcrumb .smart-breadcrumb-item{height:calc(100% - var(--smart-breadcrumb-padding))}.smart-pivot-table smart-breadcrumb .smart-breadcrumb-placeholder{position:absolute;top:var(--smart-breadcrumb-padding);left:0;font-style:italic}.smart-pivot-table [selection-detail]{position:relative;overflow:visible;z-index:1}.smart-pivot-table:not([animation=none]) tbody tr{transition:height .2s ease-in-out}.smart-pivot-table:not([animation=none]) tr td{transition:padding-top .2s ease-in-out,padding-bottom .2s ease-in-out,transform .2s ease-in-out,border-top-color .2s ease-in-out}.smart-pivot-table:not([designer]) .smart-pivot-table-designer-container{display:none}.smart-pivot-table[group-layout=classic] .smart-pivot-table-grouping-header{width:calc(.75 * var(--smart-pivot-table-cell-width))}.smart-pivot-table[group-layout=classic] tbody td.expanded:not(.main)+td[data-field^=group]:not(.main),.smart-pivot-table[group-layout=classic] tbody td:not(.expanded)+td[data-field^=group]:not(.main){font-size:0}.smart-pivot-table[group-layout=classic] .hierarchy-arrow::after{content:var(--smart-icon-plus)}.smart-pivot-table[group-layout=classic] td.expanded .hierarchy-arrow::after{content:var(--smart-icon-minus)}.smart-pivot-table[designer]>.smart-container{display:grid;grid-template-columns:1fr var(--smart-pivot-panel-width);grid-template-rows:100%}.smart-pivot-table[designer] .smart-pivot-table-designer-container{display:block;height:100%}.smart-pivot-table[designer-position=near]>.smart-container{grid-template-columns:var(--smart-pivot-panel-width) 1fr}.smart-pivot-table[designer-position=near] .smart-pivot-table-main-container{order:1}.smart-pivot-table[designer-position=near]:not([right-to-left]) .smart-pivot-panel{border-left:none;border-right:var(--smart-border-width) solid var(--smart-border)}.smart-pivot-table[toolbar]>.smart-container{display:flex;flex-direction:column}.smart-pivot-table[toolbar] .smart-pivot-table-main-container{height:calc(100% - var(--smart-table-row-height));grid-area:main}.smart-pivot-table[toolbar] .smart-pivot-table-toolbar{display:grid;grid-template-columns:1fr 1fr var(--smart-table-row-height) var(--smart-table-row-height);grid-area:toolbar;gap:var(--smart-pivot-panel-padding)}.smart-pivot-table[toolbar] .smart-pivot-table-designer-container{grid-area:designer;min-height:0;max-height:unset}.smart-pivot-table[toolbar][designer]>.smart-container{display:grid;grid-template-columns:1fr var(--smart-pivot-panel-width);grid-template-rows:var(--smart-table-row-height) 1fr;grid-template-areas:"toolbar toolbar" "main designer"}.smart-pivot-table[toolbar][designer] .smart-pivot-table-toolbar{grid-template-columns:1fr 1fr var(--smart-table-row-height)}.smart-pivot-table[toolbar][designer] .smart-table-toolbar-button.fields{display:none}.smart-pivot-table[toolbar][designer] .smart-pivot-table-main-container{width:100%;height:100%}.smart-pivot-table[toolbar][designer][designer-position=near]>.smart-container{grid-template-columns:var(--smart-pivot-panel-width) 1fr;grid-template-areas:"toolbar toolbar" "designer main"}.smart-pivot-table[selection][selection-mode=cell] tbody td{-webkit-user-select:none;user-select:none}.smart-pivot-table[selection][selection-mode=cell] tbody td.selected{background-color:rgba(var(--smart-primary-rgb),.8);color:var(--smart-primary-color)}.smart-table[column-reorder] th[data-field].smart-pivot-table-total-header,.smart-table[column-reorder][column-totals] th[data-field]{cursor:unset}.smart-table[freeze-header] thead tr:nth-child(4)>th{top:calc(3 * var(--smart-table-column-header-height))}.smart-table[freeze-header] thead tr:nth-child(5)>th{top:calc(4 * var(--smart-table-column-header-height))}.smart-table[freeze-header] thead tr:nth-child(6)>th{top:calc(5 * var(--smart-table-column-header-height))}.smart-table[freeze-header] thead tr:nth-child(7)>th{top:calc(6 * var(--smart-table-column-header-height))}.smart-table[freeze-header] thead tr:nth-child(8)>th{top:calc(7 * var(--smart-table-column-header-height))}.smart-table[freeze-header] thead tr:nth-child(9)>th{top:calc(8 * var(--smart-table-column-header-height))}.smart-table[freeze-header] thead tr:nth-child(10)>th{top:calc(9 * var(--smart-table-column-header-height))}.smart-table-window.drill-down{--smart-window-default-width:750px;--smart-window-footer-padding:0;--smart-window-footer-height:0px}.smart-table-window.drill-down .smart-content-container>.smart-content>div{display:grid;grid-template-rows:auto 1fr;grid-template-columns:100%;gap:var(--smart-pivot-panel-padding);width:100%;height:100%}.smart-table-window.drill-down .drill-down-details{display:flex}.smart-table-window.drill-down .smart-content strong{margin-right:var(--smart-pivot-panel-padding);margin-left:calc(var(--smart-pivot-panel-padding)/ 3)}.smart-table-window.drill-down smart-table{min-height:0}.smart-table-window.fields{--smart-window-footer-padding:0;--smart-window-footer-height:0px;--smart-window-default-width:600px;--smart-window-default-height:800px}.smart-table-window.fields smart-pivot-panel{width:100%;height:100%}.smart-table-window.fields smart-pivot-panel>.smart-container{grid-template-rows:auto 1fr;grid-template-columns:unset}.smart-table-window.fields smart-pivot-panel>.smart-container>div:first-child{order:1}.smart-table-window.fields smart-pivot-panel>.smart-container>div:nth-child(2){order:0}.smart-table-window.fields smart-pivot-panel .smart-filter-panel .smart-filter-panel-button-container>smart-button{width:40%}.smart-table-window.fields smart-pivot-panel .smart-pivot-panel-columns-view{grid-template-rows:2fr 1fr 1fr 1fr}.smart-table-window.fields smart-pivot-panel .smart-pivot-panel-tabs{border-left:none;writing-mode:unset}.smart-table-window.fields smart-pivot-panel .smart-pivot-panel-tab-item{height:auto;border-bottom-width:calc(2 * var(--smart-border-width));border-left-width:var(--smart-border-width);border-left-color:transparent}.smart-table-window.fields smart-pivot-panel .smart-pivot-panel-tab-item:first-child{margin-top:0;margin-right:var(--smart-pivot-panel-padding)}.smart-table-window.fields smart-pivot-panel .smart-pivot-panel-tab-item:focus{border-color:var(--smart-ui-state-color-focus)}.smart-table-window.fields smart-pivot-panel .smart-pivot-panel-tab-item.selected{border-bottom-color:var(--smart-primary)}.smart-table-window.fields smart-pivot-panel .smart-pivot-panel-tab-item.selected:focus{border-color:var(--smart-ui-state-color-focus) var(--smart-ui-state-color-focus) var(--smart-primary)}.smart-table-window.fields smart-pivot-panel .smart-pivot-panel-tab-item .icon{margin-bottom:0;margin-right:3px}.smart-table-window.fields:not([animation=none]) smart-pivot-panel .smart-pivot-panel-tab-item{transition:border-bottom-color .3s ease-out}.smart-window.smart-table-window.drill-down .smart-content-container>.smart-footer,.smart-window.smart-table-window.fields .smart-content-container>.smart-footer{display:none}.smart-pivot-panel{border:var(--smart-border-width) solid var(--smart-border);width:var(--smart-pivot-panel-width);height:var(--smart-pivot-panel-default-height)}.smart-pivot-panel>.smart-container{display:grid;grid-template-columns:1fr auto;min-width:0;min-height:0}.smart-pivot-panel>.smart-container>div:first-child{min-height:0}.smart-pivot-panel>.smart-container .check-box{position:relative;left:unset;transform:none}.smart-pivot-panel smart-accordion-item.filtered .smart-label{position:relative;color:var(--smart-primary)}.smart-pivot-panel .icon:before,.smart-pivot-panel smart-accordion-item.filtered .smart-label:before,.smart-pivot-panel smart-tree-item .settings-icon:before{height:100%;font-weight:400;color:inherit;text-decoration:inherit;font-family:var(--smart-font-family-icon);font-size:var(--smart-arrow-size);font-variant:normal;text-transform:none}.smart-pivot-panel smart-accordion-item.filtered .smart-label:before{font-style:normal;display:flex;flex-wrap:wrap;align-items:center;justify-content:center;content:var(--smart-icon-filter);position:absolute;right:calc(100% + var(--smart-pivot-panel-padding)/ 2);width:16px}.smart-pivot-panel smart-tree-item .settings-icon{margin-right:calc(var(--smart-pivot-panel-padding)/ 2)}.smart-pivot-panel smart-tree-item .settings-icon:before{width:100%;font-style:normal;display:flex;flex-wrap:wrap;align-items:center;justify-content:center;position:relative;content:var(--smart-icon-settings)}.smart-pivot-panel smart-accordion,.smart-pivot-panel smart-filter-panel{width:100%;height:100%}.smart-pivot-panel smart-filter-panel>.smart-container{display:grid;grid-template-rows:auto 1fr auto;row-gap:var(--smart-pivot-panel-padding)}.smart-pivot-panel smart-filter-panel>.smart-container>div:nth-child(2){min-height:0}.smart-pivot-panel smart-filter-panel>.smart-container smart-tree{height:100%}.smart-pivot-panel smart-tree.smart-element{visibility:inherit}.smart-pivot-panel smart-tree:focus{border-color:var(--smart-ui-state-color-focus)}.smart-pivot-panel .icon:before{width:100%;font-style:normal;display:flex;flex-wrap:wrap;align-items:center;justify-content:center;position:relative}.smart-pivot-panel .smart-pivot-panel-tabs{display:flex;border-left:var(--smart-border-width) solid var(--smart-border);writing-mode:vertical-lr}.smart-pivot-panel .smart-pivot-panel-tab-item{display:flex;align-items:center;justify-content:center;border:1px solid transparent;border-left-width:calc(2 * var(--smart-border-width));height:var(--smart-pivot-panel-tab-item-height);padding:var(--smart-pivot-panel-padding);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;cursor:pointer}.smart-pivot-panel .smart-pivot-panel-tab-item:first-child{margin-top:var(--smart-pivot-panel-padding)}.smart-pivot-panel .smart-pivot-panel-tab-item:first-child .icon:before{content:var(--smart-icon-table)}.smart-pivot-panel .smart-pivot-panel-tab-item:nth-child(2) .icon:before{content:var(--smart-icon-filter)}.smart-pivot-panel .smart-pivot-panel-tab-item:hover{color:var(--smart-primary)}.smart-pivot-panel .smart-pivot-panel-tab-item:focus{border-color:var(--smart-ui-state-color-focus);outline:0}.smart-pivot-panel .smart-pivot-panel-tab-item.selected{border-left-color:var(--smart-primary)}.smart-pivot-panel .smart-pivot-panel-tab-item.selected:focus{border-color:var(--smart-ui-state-color-focus) var(--smart-ui-state-color-focus) var(--smart-ui-state-color-focus) var(--smart-primary)}.smart-pivot-panel .smart-pivot-panel-tab-item .icon{margin-bottom:3px}.smart-pivot-panel .smart-pivot-panel-columns-view{display:grid;grid-template-rows:3fr 1fr 1fr 1fr;width:100%;min-width:0;height:100%;min-height:0}.smart-pivot-panel .smart-pivot-panel-columns-view smart-tree{border-color:transparent;width:100%;height:100%}.smart-pivot-panel .smart-pivot-panel-active-columns{display:grid;grid-template-rows:auto 1fr;min-width:0;min-height:0;border-top:var(--smart-border-width) solid var(--smart-border)}.smart-pivot-panel .smart-pivot-panel-active-columns smart-tree-item .smart-tree-item-label-element>span{display:flex}.smart-pivot-panel .smart-pivot-panel-label{display:flex;padding:var(--smart-pivot-panel-padding);background:var(--smart-primary);color:var(--smart-primary-color)}.smart-pivot-panel .smart-pivot-panel-label .icon{margin-right:calc(var(--smart-pivot-panel-padding)/ 2)}.smart-pivot-panel .smart-pivot-panel-row-groups-label .icon:before{content:var(--smart-icon-align-left);transform:scale(-1)}.smart-pivot-panel .smart-pivot-panel-summaries-label .icon:before{content:var(--smart-icon-math)}.smart-pivot-panel .smart-pivot-panel-pivots-label .icon:before{content:var(--smart-icon-refresh)}.smart-pivot-panel .smart-pivot-panel-columns-container{min-height:0;overflow:auto}.smart-pivot-panel .smart-pivot-panel-filters-view{height:100%}.smart-pivot-panel:not([animation=none]) .smart-pivot-panel-tab-item{transition:border-left-color .3s ease-out}.smart-pivot-panel[inverted]>.smart-container{grid-template-columns:auto 1fr}.smart-pivot-panel[inverted]>.smart-container>div:first-child{order:1}.smart-pivot-panel[inverted] .smart-pivot-panel-tabs{border-left:none;border-right:var(--smart-border-width) solid var(--smart-border)}.smart-pivot-panel[inverted] .smart-pivot-panel-tab-item{border-left:1px solid transparent;border-right-width:calc(2 * var(--smart-border-width))}.smart-pivot-panel[inverted] .smart-pivot-panel-tab-item span:nth-child(2){transform:rotate(180deg)}.smart-pivot-panel[inverted] .smart-pivot-panel-tab-item.selected{border-right-color:var(--smart-primary)}.smart-pivot-panel[inverted] .smart-pivot-panel-tab-item.selected:focus{border-color:var(--smart-ui-state-color-focus) var(--smart-primary) var(--smart-ui-state-color-focus) var(--smart-ui-state-color-focus)}.smart-pivot-panel[inverted]:not([animation=none]) .smart-pivot-panel-tab-item{transition:border-right-color .3s ease-out}.smart-window.smart-pivot-window{--smart-window-default-height:190px}.smart-window.smart-pivot-window .smart-content-container>.smart-content{display:grid;grid-template-columns:minmax(175px,auto) 1fr;grid-auto-rows:max-content;gap:var(--smart-pivot-panel-padding);min-width:0}.smart-window.smart-pivot-window .smart-content-container>.smart-footer{display:flex;justify-content:space-evenly;align-items:center}.smart-window.smart-pivot-window .smart-content-container>.smart-footer smart-button{--smart-button-padding:0;width:40%;height:100%}.smart-window.smart-pivot-window .smart-content .category.label{grid-column-start:1;grid-column-end:3;font-weight:700;text-decoration:underline}.smart-window.smart-pivot-window smart-input{width:100%}.smart-window.smart-pivot-window.summary{--smart-window-default-height:500px}.smart-window.smart-pivot-window:not(.summary) .summary{display:none}.smart-breadcrumb-feedback.cancel:after{content:var(--smart-icon-block);background-color:var(--smart-error);color:var(--smart-error-color)}.smart-breadcrumb-feedback.delete:after{content:var(--smart-icon-delete);background-color:var(--smart-primary);color:var(--smart-primary-color)}.smart-breadcrumb-feedback.pivot:after{content:var(--smart-icon-refresh)}.smart-breadcrumb-feedback.row-group:after{content:var(--smart-icon-align-left);transform:scale(-1)}.smart-breadcrumb-feedback.summary:after{content:var(--smart-icon-math)}.smart-tree-item-feedback.forbidden{border-color:var(--smart-error);color:var(--smart-error)}.smart-tree-item-feedback.forbidden:before{width:100%;height:100%;font-family:var(--smart-font-family-icon);font-style:normal;font-weight:400;font-size:var(--smart-arrow-size);color:inherit;text-decoration:inherit;font-variant:normal;text-transform:none;display:flex;flex-wrap:wrap;align-items:center;justify-content:center;position:relative;content:var(--smart-icon-block);margin-right:calc(var(--smart-pivot-panel-padding)/ 2)}.smart-pivot-table[right-to-left] thead th:not(:last-child){border-left:var(--smart-border-width) solid var(--smart-border);border-right:none}.smart-pivot-table[right-to-left] .smart-pivot-table-pivot-breadcrumb,.smart-pivot-table[right-to-left]:not([designer-position=near]) .smart-pivot-panel{border-left:none;border-right:var(--smart-border-width) solid var(--smart-border)}.smart-pivot-table[right-to-left] th.expanded .total-arrow{transform:none}.smart-pivot-table[right-to-left] smart-breadcrumb{padding-left:var(--smart-breadcrumb-padding);padding-right:calc(3 * var(--smart-breadcrumb-padding))}.smart-pivot-table[right-to-left] smart-breadcrumb:before{left:unset;right:0}.smart-pivot-table[right-to-left] .total-arrow{transform:rotate(180deg)}.smart-pivot-table[right-to-left][selection]:not([selection-mode=cell]) thead th:first-child{border-left:none}.smart-table-window[right-to-left].drill-down .smart-content strong{margin-right:calc(var(--smart-pivot-panel-padding)/ 3);margin-left:var(--smart-pivot-panel-padding)}.smart-table-window[right-to-left].fields smart-pivot-panel .smart-pivot-panel-tab-item,.smart-table-window[right-to-left].fields smart-pivot-panel .smart-pivot-panel-tabs{flex-direction:row-reverse}.smart-table-window[right-to-left].fields smart-pivot-panel .smart-pivot-panel-tab-item{display:flex}.smart-table-window[right-to-left].fields smart-pivot-panel .smart-pivot-panel-tab-item:first-child{margin-left:var(--smart-pivot-panel-padding);margin-right:0}.smart-table-window[right-to-left].fields smart-pivot-panel .smart-pivot-panel-tab-item .icon{margin-left:3px;margin-right:0}.smart-pivot-panel[right-to-left]{direction:ltr}.smart-pivot-panel[right-to-left] .smart-pivot-panel-tab-item>span:nth-child(2),.smart-pivot-panel[right-to-left]>.smart-container>div:first-child{direction:rtl}.smart-pivot-panel[right-to-left] .smart-pivot-panel-label .icon,.smart-pivot-panel[right-to-left] smart-tree-item .settings-icon{margin-left:calc(var(--smart-pivot-panel-padding)/ 2);margin-right:0}
.smart-power-button{padding:0;border-radius:100%;display:inline-block;width:var(--smart-power-button-default-width);height:var(--smart-power-button-default-width)}.smart-power-button .smart-input{border-radius:100%;outline:0;width:100%;height:100%;min-width:var(--smart-power-button-default-width);min-height:var(--smart-power-button-default-width);background-color:var(--smart-background);border-style:solid;box-sizing:border-box;border-width:var(--smart-border-width);border-color:var(--smart-border);display:block;position:relative;overflow:hidden}.smart-power-button .smart-input:after{content:var(--smart-icon-power);width:100%;height:100%;font-family:smart-icons;font-style:normal;font-weight:400;font-size:20px;text-decoration:inherit;font-variant:normal;text-transform:none;display:flex;flex-wrap:wrap;align-items:center;justify-content:center}.smart-power-button .smart-container{cursor:pointer;height:100%;position:relative;display:flex}.smart-power-button .smart-animation{pointer-events:none}.smart-power-button[focus]{outline:0}.smart-power-button[focus] .smart-input{outline:0;border:var(--smart-border-width) solid var(--smart-ui-state-border-focus);background:var(--smart-ui-state-focus);color:var(--smart-ui-state-color-focus)}.smart-power-button:hover .smart-input{border:var(--smart-border-width) solid var(--smart-ui-state-border-hover);background:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover);transition:background-color .1s linear}.smart-power-button:active .smart-input{border:var(--smart-border-width) solid var(--smart-ui-state-border-active);background:var(--smart-ui-state-active);color:var(--smart-ui-state-color-active);transition:background-color .1s linear}.smart-power-button[disabled] .smart-container{cursor:initial}.smart-power-button[checked] .smart-input{background-color:var(--smart-primary);color:var(--smart-primary)}.smart-power-button[checked] .smart-input:after{color:#fff}.smart-power-button[readonly].active .smart-input,.smart-power-button[readonly]:active .smart-input,.smart-power-button[readonly]:hover .smart-input{color:initial;border:var(--smart-border-width) solid var(--smart-button-border);background:var(--smart-button-background);transition:none}smart-power-button.active .smart-input{border:var(--smart-border-width) solid var(--smart-ui-state-border-active);background:var(--smart-ui-state-active);color:var(--smart-ui-state-color-active);transition:background-color .1s linear}smart-power-button.raised{box-shadow:var(--smart-elevation-2)}smart-power-button[right-to-left]>.smart-container>.smart-input{direction:rtl}
.smart-circular-progress-bar.smart-element,smart-circular-progress-bar.smart-element,smart-progress-bar.smart-element{border:none}.smart-circular-progress-bar.smart-element:focus>.smart-container,smart-circular-progress-bar.smart-element:focus>.smart-container,smart-progress-bar.smart-element:focus>.smart-container{border-color:var(--smart-outline)}.smart-circular-progress-bar.smart-container,.smart-circular-progress-bar>.smart-container,smart-circular-progress-bar.smart-container,smart-circular-progress-bar>.smart-container,smart-progress-bar.smart-container,smart-progress-bar>.smart-container{border-top-left-radius:var(--smart-border-top-left-radius);border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);overflow:hidden;position:relative;border-width:var(--smart-border-width);border-style:solid;border-color:var(--smart-border);color:var(--smart-background-color)}.smart-circular-progress-bar .smart-label,smart-circular-progress-bar .smart-label,smart-progress-bar .smart-label{top:50%;left:50%;transform:translate(-50%,-50%);position:absolute;text-align:center;color:var(--smart-background-color)}smart-progress-bar{width:var(--smart-progress-bar-default-width);height:var(--smart-progress-bar-default-height)}smart-progress-bar .smart-label{width:auto;color:var(--smart-outline)}smart-progress-bar .smart-value{outline:0;height:100%;width:100%;box-sizing:border-box;position:absolute;border:1px solid var(--smart-ui-state-border-active);background-color:var(--smart-ui-state-active);transform-origin:left}smart-progress-bar .smart-value.smart-value-animation{animation:indeterminate 3s infinite linear}smart-progress-bar.primary .smart-value{border:1px solid var(--smart-primary);background-color:var(--smart-primary)}smart-progress-bar.secondary .smart-value{border:1px solid var(--smart-secondary);background-color:var(--smart-secondary)}smart-progress-bar.success .smart-value{border:1px solid var(--smart-success);background-color:var(--smart-success)}smart-progress-bar.info .smart-value{border:1px solid var(--smart-info);background-color:var(--smart-info)}smart-progress-bar.warning .smart-value{border:1px solid var(--smart-warning);background-color:var(--smart-warning)}smart-progress-bar.error .smart-value{border:1px solid var(--smart-error);background-color:var(--smart-error)}smart-progress-bar.light .smart-value{border:1px solid var(--smart-light);background-color:var(--smart-light)}smart-progress-bar.dark .smart-value{border:1px solid var(--smart-dark);background-color:var(--smart-dark)}smart-progress-bar:not([animation=none]) .smart-value{transition:.2s ease-in-out}smart-progress-bar[inverted] .smart-value,smart-progress-bar[orientation][inverted] .smart-value{transform-origin:right}smart-progress-bar[inverted] .smart-value.smart-value-animation{animation:indeterminate-inverted 3s infinite linear}smart-progress-bar[orientation] .smart-value{transform-origin:left}smart-progress-bar[orientation=vertical]{width:var(--smart-progress-bar-default-height);height:var(--smart-progress-bar-default-width)}smart-progress-bar[orientation=vertical][inverted] .smart-value{transform-origin:left bottom}smart-progress-bar[orientation=vertical] .smart-value{transform-origin:left top}smart-progress-bar[orientation=vertical] .smart-value.smart-value-animation{animation:indeterminate-vertical 3s infinite linear}smart-progress-bar[orientation=vertical] .smart-label{width:100%}smart-progress-bar[inverted][orientation=vertical] .smart-value.smart-value-animation{animation:indeterminate-vertical-inverted 3s infinite linear}.smart-circular-progress-bar,smart-circular-progress-bar{width:var(--smart-circular-progress-bar-default-size);height:var(--smart-circular-progress-bar-default-size)}.smart-circular-progress-bar.smart-container,.smart-circular-progress-bar>.smart-container,smart-circular-progress-bar.smart-container,smart-circular-progress-bar>.smart-container{border-radius:50%}.smart-circular-progress-bar .smart-value-animation-ms,smart-circular-progress-bar .smart-value-animation-ms{stroke-dashoffset:114}.smart-circular-progress-bar svg:first-of-type,smart-circular-progress-bar svg:first-of-type{position:absolute;border-radius:50%;pointer-events:none}.smart-circular-progress-bar svg:first-of-type .smart-value.smart-value-animation,smart-circular-progress-bar svg:first-of-type .smart-value.smart-value-animation{animation:circle 2s infinite linear}.smart-circular-progress-bar .smart-label-container,smart-circular-progress-bar .smart-label-container{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);overflow:hidden;box-sizing:content-box;border-radius:50%;background-color:transparent;border-style:solid;border-width:var(--smart-border-width);border-color:var(--smart-border);width:calc(100% - var(--smart-circular-progress-bar-fill-size));height:calc(100% - var(--smart-circular-progress-bar-fill-size))}.smart-circular-progress-bar .smart-value,.smart-circular-progress-bar .smart-value-path,smart-circular-progress-bar .smart-value,smart-circular-progress-bar .smart-value-path{stroke-width:var(--smart-circular-progress-bar-fill-size);fill:transparent;stroke-dasharray:314.159}.smart-circular-progress-bar .smart-value,smart-circular-progress-bar .smart-value{stroke:var(--smart-ui-state-active)}.smart-circular-progress-bar .smart-value-path,smart-circular-progress-bar .smart-value-path{stroke-dashoffset:0;stroke:transparent}.smart-circular-progress-bar.primary .smart-value,smart-circular-progress-bar.primary .smart-value{stroke:var(--smart-primary)}.smart-circular-progress-bar.secondary .smart-value,smart-circular-progress-bar.secondary .smart-value{stroke:var(--smart-secondary)}.smart-circular-progress-bar.success .smart-value,smart-circular-progress-bar.success .smart-value{stroke:var(--smart-success)}.smart-circular-progress-bar.info .smart-value,smart-circular-progress-bar.info .smart-value{stroke:var(--smart-info)}.smart-circular-progress-bar.warning .smart-value,smart-circular-progress-bar.warning .smart-value{stroke:var(--smart-warning)}.smart-circular-progress-bar.error .smart-value,smart-circular-progress-bar.error .smart-value{stroke:var(--smart-error)}.smart-circular-progress-bar.light .smart-value,smart-circular-progress-bar.light .smart-value{stroke:var(--smart-light)}.smart-circular-progress-bar.dark .smart-value,smart-circular-progress-bar.dark .smart-value{stroke:var(--smart-dark)}.smart-circular-progress-bar:not([animation=none]) .smart-value,smart-circular-progress-bar:not([animation=none]) .smart-value{transition:stroke-dashoffset 1s linear}.smart-circular-progress-bar[inverted] svg:first-of-type .smart-value.smart-value-animation,smart-circular-progress-bar[inverted] svg:first-of-type .smart-value.smart-value-animation{animation:circle-inverted 2s infinite linear}.smart-circular-progress-bar[indeterminate][inverted] svg:first-of-type,.smart-circular-progress-bar[value=null][inverted] svg:first-of-type,smart-circular-progress-bar[indeterminate][inverted] svg:first-of-type,smart-circular-progress-bar[value=null][inverted] svg:first-of-type{animation:rotate-circle-inverted 1s infinite linear}.smart-circular-progress-bar[indeterminate] svg:first-of-type,.smart-circular-progress-bar[value=null] svg:first-of-type,smart-circular-progress-bar[indeterminate] svg:first-of-type,smart-circular-progress-bar[value=null] svg:first-of-type{animation:rotate-circle 1s infinite linear}.barber-shop-effect .smart-value{background-image:linear-gradient(45deg,rgba(0,0,0,.2) 25%,transparent 25%,transparent 50%,rgba(0,0,0,.2) 50%,rgba(0,0,0,.2) 75%,transparent 75%,transparent);background-size:5rem 5rem;background-position:0 -244rem;animation:stripes 10s linear infinite;animation-direction:normal}.barber-shop-effect[inverted] .smart-value,.barber-shop-effect[orientation=vertical] .smart-value{animation-direction:reverse}@keyframes stripes{0%{background-position:0 0}100%{background-position:60rem 0}}@keyframes indeterminate{0%{left:-100%;transform:scaleX(.4);transform-origin:left}20%{left:-40%;transform:scaleX(.3);transform-origin:left}35%{left:35%;transform:scaleX(.4);transform-origin:left}50%{left:75%;transform:scaleX(.6);transform-origin:left}55%{left:100%;transform:scaleX(.7);transform-origin:left}55.99%{left:100%;transform:scaleX(0);transform-origin:left}56%{left:-100%;transform:scaleX(0);transform-origin:left}56.99%{left:-100%;transform:scaleX(.6);transform-origin:left}75%{left:-5%;transform:scaleX(.6);transform-origin:left}80%{left:30%;transform:scaleX(.5);transform-origin:left}85%{left:50%;transform:scaleX(.4);transform-origin:left}90%{left:75%;transform:scaleX(.3);transform-origin:left}95%{left:95%;transform:scaleX(.2);transform-origin:left}98%{left:100%;transform:scaleX(.2);transform-origin:left}99.99%{left:100%;transform:scaleX(0);transform-origin:left}100%{left:-100%;transform:scaleX(0);transform-origin:left}}@keyframes indeterminate-vertical{0%{bottom:-100%;transform:scaleY(.4);transform-origin:bottom}20%{bottom:-40%;transform:scaleY(.3);transform-origin:bottom}35%{bottom:35%;transform:scaleY(.4);transform-origin:bottom}50%{bottom:75%;transform:scaleY(.6);transform-origin:bottom}55%{bottom:100%;transform:scaleY(.7);transform-origin:bottom}55.99%{bottom:100%;transform:scaleY(0);transform-origin:bottom}56%{bottom:-100%;transform:scaleY(0);transform-origin:bottom}56.99%{bottom:-100%;transform:scaleY(.6);transform-origin:bottom}75%{bottom:-5%;transform:scaleY(.6);transform-origin:bottom}80%{bottom:30%;transform:scaleY(.5);transform-origin:bottom}85%{bottom:50%;transform:scaleY(.4);transform-origin:bottom}90%{bottom:75%;transform:scaleY(.3);transform-origin:bottom}95%{bottom:95%;transform:scaleY(.2);transform-origin:bottom}98%{bottom:100%;transform:scaleY(.2);transform-origin:bottom}99.99%{bottom:100%;transform:scaleY(0);transform-origin:bottom}100%{bottom:-100%;transform:scaleY(0);transform-origin:bottom}}@keyframes circle{0%{stroke-dashoffset:314}5%{stroke-dashoffset:164}25%{stroke-dashoffset:104}}@keyframes circle-inverted{0%{stroke-dashoffset:-314}5%{stroke-dashoffset:-164}25%{stroke-dashoffset:-104}}@keyframes rotate-circle{50%{transform:rotate(180deg)}75%{transform:rotate(270deg)}100%{transform:rotate(360deg)}}@keyframes rotate-circle-inverted{50%{transform:rotate(-180deg)}75%{transform:rotate(-270deg)}100%{transform:rotate(-360deg)}}smart-circular-progress-bar[right-to-left] .smart-label,smart-progress-bar[right-to-left] .smart-label{direction:rtl}smart-progress-bar[right-to-left]:not([orientation=vertical]) .smart-value,smart-progress-bar[right-to-left][orientation=horizontal] .smart-value{transform-origin:right}smart-progress-bar[right-to-left]:not([orientation=vertical])[inverted] .smart-value,smart-progress-bar[right-to-left][orientation=horizontal][inverted] .smart-value{transform-origin:left}smart-progress-bar[right-to-left]:not([orientation=vertical]) .smart-value.smart-value-animation,smart-progress-bar[right-to-left][orientation=horizontal] .smart-value.smart-value-animation{animation:indeterminate-inverted 3s infinite linear}smart-progress-bar[right-to-left][inverted]:not([orientation=vertical]) .smart-value.smart-value-animation,smart-progress-bar[right-to-left][inverted][orientation=horizontal] .smart-value.smart-value-animation{animation:indeterminate 3s infinite linear}smart-circular-progress-bar[right-to-left][inverted] svg:first-of-type .smart-value.smart-value-animation{animation:circle 2s infinite linear}smart-circular-progress-bar[right-to-left] svg:first-of-type .smart-value.smart-value-animation{animation:circle-inverted 2s infinite linear}smart-circular-progress-bar[right-to-left][indeterminate] svg:first-of-type,smart-circular-progress-bar[right-to-left][value=null] svg:first-of-type{animation:rotate-circle-inverted 1s infinite linear}smart-circular-progress-bar[right-to-left][indeterminate][inverted] svg:first-of-type,smart-circular-progress-bar[right-to-left][value=null][inverted] svg:first-of-type{animation:rotate-circle 1s infinite linear}.barber-shop-effect[right-to-left] .smart-value{animation-direction:reverse}.barber-shop-effect[right-to-left][inverted] .smart-value{animation-direction:normal}
@charset "UTF-8";smart-query-builder{display:block;border:var(--smart-border-width) solid var(--smart-border);width:var(--smart-query-builder-default-width);min-width:var(--smart-query-builder-min-width);height:var(--smart-query-builder-default-height)}smart-query-builder.smart-element{overflow:visible}smart-query-builder[allow-drag] .smart-filter-group-condition:after,smart-query-builder[allow-drag] .smart-filter-group-condition:before{content:var(--smart-icon-ellipsis);font-weight:400}smart-query-builder[dragging] .smart-filter-group-condition:after,smart-query-builder[dragging] .smart-filter-group-condition:before{content:none}.smart-query-builder{border-top-right-radius:var(--smart-border-top-right-radius);border-top-left-radius:var(--smart-border-top-left-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius)}.smart-query-builder.smart-container,.smart-query-builder>.smart-container{position:relative;overflow:visible}.smart-query-builder.smart-container>.smart-inner-container,.smart-query-builder>.smart-container>.smart-inner-container{overflow:hidden;width:100%;height:100%;position:relative}.smart-query-builder smart-menu.smart-conditions-menu:not([animation=none]){width:auto;height:auto;padding:2px;transform-origin:top;transform:scaleY(1)}.smart-query-builder smart-menu.smart-conditions-menu.smart-visibility-hidden:not([animation=none]){transform:scaleY(0)}.smart-query-builder smart-menu[mode=dropDown]{--smart-menu-vertical-default-width:auto;--smart-menu-vertical-default-height:auto}.smart-query-builder smart-scroll-viewer{border:none;width:100%;height:100%;position:relative;padding:var(--smart-query-builder-content-padding)}.smart-query-builder .smart-content-container>.smart-filter-group:first-child>.smart-filter-group-operator{display:none}.smart-query-builder .smart-query-builder-label{margin:var(--smart-query-builder-content-padding) 0 calc(2 * var(--smart-query-builder-content-padding)) var(--smart-query-builder-content-padding);font-weight:700;opacity:.75}.smart-query-builder .filter-builder-item{min-height:var(--smart-filter-builder-row-height);margin-left:calc(var(--smart-filter-builder-item-margin)/ 2);margin-right:calc(var(--smart-filter-builder-item-margin)/ 2);border:none;border-bottom:var(--smart-border-width) solid var(--smart-border);display:flex;align-items:center;cursor:pointer}.smart-query-builder .filter-builder-item .smart-value-container{padding-left:var(--smart-editor-label-padding)}.smart-query-builder .filter-builder-item[edited]{border:none}.smart-query-builder .filter-builder-item[edited] .smart-value-container{display:none}.smart-query-builder .filter-builder-item[placeholder]{opacity:.75;font-style:italic}.smart-query-builder .filter-builder-item[placeholder] .smart-value-container{padding-right:2px}.smart-query-builder .smart-conditions-menu{border-top-right-radius:var(--smart-border-top-right-radius);border-top-left-radius:var(--smart-border-top-left-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius)}.smart-query-builder .smart-conditions-menu:focus{border:var(--smart-menu-border-width) solid var(--smart-menu-border)}.smart-query-builder .smart-conditions-menu smart-menu-item{border-top-right-radius:var(--smart-border-top-right-radius);border-top-left-radius:var(--smart-border-top-left-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius)}.smart-query-builder .smart-conditions-menu smart-menu-item:first-child{margin-bottom:1px}.smart-query-builder .smart-conditions-menu smart-menu-item.hover{background-color:var(--smart-menu-item-background-focus);border-color:var(--smart-menu-item-border-focus);color:var(--smart-menu-item-color-focus)}.smart-query-builder .smart-editors-container>*{width:var(--smart-query-builder-editor-width);min-width:100px}.smart-query-builder .smart-editors-container smart-numeric-text-box input.smart-input{text-align:left}.smart-query-builder .smart-editors-container smart-input .arrow{transition:none}.smart-query-builder .smart-editors-container .smart-custom-editor>*{pointer-events:all;width:100%}.smart-query-builder .smart-editors-container[open] .smart-check-box-editor{margin-left:auto;margin-right:auto;display:flex;align-self:center;justify-self:center;width:30px;height:30px}.smart-query-builder .smart-editors-container[open] .smart-check-box-editor.smart-hidden{display:none}.smart-query-builder .smart-editors-container[open] smart-check-box{display:block}.smart-query-builder .smart-filter-group{display:flex;width:100%;box-sizing:border-box;white-space:nowrap;flex-direction:column;align-items:flex-start}.smart-query-builder .smart-filter-group:last-of-type .smart-filter-add-btn{display:initial}.smart-query-builder .smart-filter-group:not(:first-of-type){margin-top:var(--smart-filter-builder-group-margin)}.smart-query-builder .smart-filter-group .smart-filter-add-btn,.smart-query-builder .smart-filter-group[max-level] .smart-filter-add-btn,.smart-query-builder .smart-filter-group[node-id="0"] .smart-filter-group-operator{display:none}.smart-query-builder .smart-filter-group-condition{margin-bottom:var(--smart-filter-builder-group-condition-margin);position:relative;display:flex;width:100%;box-sizing:border-box;white-space:nowrap}.smart-query-builder .smart-filter-group-condition:after,.smart-query-builder .smart-filter-group-condition:before{font-weight:800;font-family:var(--smart-font-family-icon);position:absolute;right:100%;width:auto;content:none;transform:rotate(90deg);display:flex;align-items:flex-end;justify-content:center;font-size:12px;height:10px;top:10px;opacity:.25;margin-right:6px;cursor:move;line-height:1rem}.smart-query-builder .smart-filter-group-condition:after{transform:rotate(-90deg)}.smart-query-builder .smart-filter-group-condition.dragged{background-image:linear-gradient(45deg,rgba(0,0,0,.1) 25%,transparent 25%,transparent 50%,rgba(0,0,0,.1) 50%,rgba(0,0,0,.1) 75%,transparent 75%,transparent);background-size:3em 3em}.smart-query-builder .smart-filter-group-condition[limit-selection]:after,.smart-query-builder .smart-filter-group-condition[limit-selection]:before{content:none}.smart-query-builder .smart-filter-group-condition[limit-selection] .filter-builder-item:not(.smart-filter-field-name){pointer-events:none}.smart-query-builder .smart-filter-group-condition-container{display:flex;box-sizing:border-box;white-space:nowrap;flex-direction:column;padding-left:calc(var(--smart-filter-builder-group-condition-margin) * 6);border-left:var(--smart-filter-builder-group-container-border) solid var(--smart-border);margin-left:calc(var(--smart-filter-builder-group-condition-margin) * 3 - var(--smart-filter-builder-group-container-border)/ 2);width:calc(100% - var(--smart-filter-builder-group-condition-margin) * 3 - var(--smart-filter-builder-group-container-border)/ 3)}.smart-query-builder .smart-filter-group-operator{cursor:pointer;min-width:50px;border-radius:50px;text-transform:uppercase;background:var(--smart-primary);color:var(--smart-primary-color);border:none;margin-right:0;-webkit-user-select:none;user-select:none}.smart-query-builder .smart-filter-group-operator:not(:empty){margin-bottom:calc(var(--smart-filter-builder-group-condition-margin) * 2);padding:4px;display:flex;justify-content:center}.smart-query-builder .smart-filter-nested-operator{cursor:pointer;margin-top:calc(var(--smart-filter-builder-group-condition-margin) * 3);margin-bottom:calc(var(--smart-filter-builder-group-condition-margin) * 3);margin-left:calc(-1 * var(--smart-filter-builder-item-margin));opacity:.5;font-weight:600;text-transform:uppercase;align-self:flex-start;-webkit-user-select:none;user-select:none}.smart-query-builder .smart-filter-group-operation{min-width:50px;border-radius:50px;text-transform:uppercase;background:var(--smart-primary);color:var(--smart-primary-color);border:none;margin-right:0;-webkit-user-select:none;user-select:none}.smart-query-builder .smart-filter-delete-btn{min-width:var(--smart-filter-builder-row-height);min-height:var(--smart-filter-builder-row-height);box-sizing:border-box;display:flex;align-items:center;justify-content:center;opacity:.25;font-size:16px;cursor:pointer}.smart-query-builder .smart-filter-delete-btn:after{display:flex;justify-content:center;align-items:center;width:100%;height:0;cursor:pointer;font-weight:800;font-family:var(--smart-font-family-icon);content:var(--smart-icon-close);font-size:var(--smart-font-size)}.smart-query-builder .smart-filter-add-btn,.smart-query-builder .smart-filter-add-condition-btn{min-height:var(--smart-filter-builder-row-height);width:var(--smart-filter-builder-row-height);display:flex}.smart-query-builder .smart-filter-delete-btn:hover{opacity:.6}.smart-query-builder .smart-filter-delete-btn:active{opacity:1}.smart-query-builder .smart-filter-add-btn{min-width:var(--smart-filter-builder-row-height);box-sizing:border-box;align-items:center;justify-content:center;font-size:16px;height:var(--smart-filter-builder-row-height);border-radius:50%;background:var(--smart-primary);color:var(--smart-primary-color);margin-top:calc(var(--smart-filter-builder-group-condition-margin) * 2);margin-bottom:calc(var(--smart-filter-builder-group-condition-margin) * 2);line-height:1rem;opacity:1}@media only screen and (min-device-width:768px) and (max-device-width:1024px){.smart-query-builder .smart-filter-add-btn{padding-bottom:7px}}.smart-query-builder .smart-filter-add-btn:after{content:"+";display:flex;justify-content:center;align-items:center;width:100%;cursor:pointer;font-size:30px;font-weight:800;font-family:var(--smart-font-family-icon);height:100%}.smart-query-builder .smart-filter-add-condition-btn{box-sizing:border-box;font-size:16px;padding-left:calc(var(--smart-filter-builder-group-condition-margin) * 6);border-left:calc(var(--smart-filter-builder-group-container-border)/ 2.5) dashed var(--smart-border);margin-left:calc(var(--smart-filter-builder-group-condition-margin) * 3 - var(--smart-filter-builder-group-container-border)/ 5);opacity:initial;min-width:50px;justify-content:flex-start;color:var(--smart-background-color);cursor:pointer;align-items:flex-end;-webkit-user-select:none;user-select:none}.smart-query-builder .smart-filter-add-condition-btn>div{position:relative;padding-left:calc(var(--smart-filter-builder-item-margin)/ 2)}.smart-query-builder .smart-filter-add-condition-btn>div:before{content:"+";display:flex;justify-content:center;align-items:center;cursor:pointer;font-weight:800;font-family:var(--smart-font-family-icon);position:absolute;right:100%;top:0;width:auto;height:100%;font-size:20px;margin-right:5px}.smart-query-builder .smart-filter-add-condition-btn[limit-selection]{pointer-events:none;opacity:.75}.smart-query-builder .smart-filter-value{padding:0;min-width:100px;width:var(--smart-query-builder-editor-width);text-overflow:ellipsis}.smart-query-builder .smart-filter-value[edited]{padding:0;background-color:transparent}.smart-query-builder .smart-filter-value .smart-value-container{width:100%;height:100%;display:flex;align-items:center;margin:0;overflow:hidden;-webkit-user-select:none;user-select:none}.smart-query-builder .smart-filter-value .smart-value-container>span{text-overflow:ellipsis;overflow:hidden;min-width:0}.smart-query-builder .smart-filter-operation{position:relative;min-width:100px;width:var(--smart-query-builder-editor-width);text-overflow:ellipsis;overflow:hidden;-webkit-user-select:none;user-select:none}.smart-query-builder .smart-filter-operation .smart-value-container{text-overflow:ellipsis;width:calc(100% - var(--smart-editor-addon-width));overflow:hidden}.smart-query-builder .smart-filter-operation:not([edited]):after{content:var(--smart-icon-arrow-down);display:flex;overflow:hidden;cursor:pointer;font-family:var(--smart-font-family-icon);justify-content:center;align-items:center;font-size:var(--smart-arrow-size);outline:0;width:var(--smart-editor-addon-width);position:absolute;right:-1px}.smart-query-builder .smart-filter-field-name{position:relative;min-width:100px;width:var(--smart-query-builder-editor-width);text-overflow:ellipsis;overflow:hidden;-webkit-user-select:none;user-select:none}.smart-query-builder .smart-filter-field-name .smart-value-container{text-overflow:ellipsis;overflow:hidden}.smart-query-builder .smart-filter-builder-icon{width:40px;height:100%;font-weight:700;border-right:1px solid gray;margin-right:5px;display:flex;justify-content:center;align-items:center}.smart-query-builder .smart-filter-builder-menu-item{height:100%}.smart-query-builder .smart-hidden{display:none}.smart-query-builder .smart-scrollable-outer-container{width:100%;height:100%}.smart-query-builder .smart-scroll-viewer-content-container{vertical-align:top;padding:initial}.smart-query-builder .drop-target.bottom:after,.smart-query-builder .drop-target.top:after{content:"";position:absolute;box-sizing:border-box;width:100%;height:var(--smart-filter-builder-group-condition-margin);left:0;pointer-events:none;transform:none;background-color:var(--smart-primary);opacity:.75}.smart-query-builder .drop-target.bottom:after{top:calc(100% + 3px)}.smart-query-builder .drop-target.top:after{top:calc(-1 * var(--smart-filter-builder-group-condition-margin))}.smart-query-builder .mac .smart-filter-add-btn:after,.smart-query-builder .mac .smart-filter-add-condition-btn>div:before{align-items:stretch;line-height:80%}.smart-query-builder[show-field-name-arrow] .smart-filter-field-name:not([edited]):after{content:var(--smart-icon-arrow-down);display:flex;outline:0;width:var(--smart-editor-addon-width);position:absolute;top:1px;right:-1px;height:100%}.smart-query-builder-drag-feedback{position:absolute;display:flex;align-items:center;box-shadow:var(--smart-elevation-8);border:var(--smart-border-width) solid var(--smart-border);border-radius:var(--smart-border-radius);padding:5px;white-space:nowrap;font-family:var(--smart-font-family-icon);font-size:26px;background-color:var(--smart-background);color:var(--smart-background-color);z-index:10000;opacity:.75}.smart-query-builder-drag-feedback:after{content:var(--smart-icon-docs);width:100%;height:100%;position:relative;top:0;left:0}.smart-input-drop-down-menu .icon:after{display:flex;align-items:center;justify-content:center;font-size:calc(var(--smart-font-size) - 2px);font-weight:700}.smart-input-drop-down-menu .icon.equals:after{content:"="}.smart-input-drop-down-menu .icon.notequals:after{content:"≠"}.smart-input-drop-down-menu .icon.greaterthan:after{content:">"}.smart-input-drop-down-menu .icon.greaterthanorequal:after{content:"≥"}.smart-input-drop-down-menu .icon.lessthan:after{content:"<"}.smart-input-drop-down-menu .icon.lessthanorequal:after{content:"≤"}.smart-input-drop-down-menu .icon.startswith:after{content:"a|bc"}.smart-input-drop-down-menu .icon.endswith:after{content:"ab|c"}.smart-input-drop-down-menu .icon.contains:after{content:"abc"}.smart-input-drop-down-menu .icon.notcontains:after{content:"!abc"}.smart-input-drop-down-menu .icon.isblank:after{content:"□"}.smart-input-drop-down-menu .icon.isnotblank:after{content:"■"}.smart-query-builder-drag-feedback[right-to-left],smart-query-builder[right-to-left] .smart-filter-group{direction:rtl}smart-query-builder[right-to-left] .smart-filter-group-condition-container{padding-left:initial;padding-right:calc(var(--smart-filter-builder-group-condition-margin) * 6);border-left:initial;border-right:var(--smart-border-width) solid var(--smart-border);margin-left:initial;margin-right:calc(var(--smart-filter-builder-group-condition-margin) * 3 - var(--smart-filter-builder-group-container-border)/ 2)}smart-query-builder[right-to-left] .smart-filter-nested-operator{margin-left:initial;margin-right:calc(-1 * var(--smart-filter-builder-item-margin))}smart-query-builder[right-to-left] .smart-filter-group-condition:after,smart-query-builder[right-to-left] .smart-filter-group-condition:before{right:initial;left:100%;margin:0 0 0 6px}smart-query-builder[right-to-left] .smart-filter-add-condition-btn{padding-left:initial;padding-right:calc(var(--smart-filter-builder-group-condition-margin) * 6);border-left:initial;border-right:calc(var(--smart-border-width)/ 2.5) dashed var(--smart-border);margin-left:initial;margin-right:calc(var(--smart-filter-builder-group-condition-margin) * 3 - var(--smart-border-width)/ 5)}smart-query-builder[right-to-left] .smart-filter-add-condition-btn>div{padding-left:initial;padding-right:calc(var(--smart-filter-builder-item-margin)/ 2)}smart-query-builder[right-to-left] .smart-filter-add-condition-btn>div:before{right:initial;left:100%}smart-query-builder[right-to-left] .smart-filter-operation:not([edited])::after{left:-1px;right:initial}smart-query-builder[right-to-left] .drop-target.bottom:after,smart-query-builder[right-to-left] .drop-target.top:after{left:initial;right:0}
.smart-rating .rating-star:after{width:100%;height:100%;top:0;font-size:var(--smart-font-size);content:var(--smart-icon-star);color:var(--smart-primary);font-family:var(--smart-font-family-icon)}.smart-rating .rating-star.active.hover:after,.smart-rating .rating-star.active:after,.smart-rating .rating-star.hover:after{color:var(--smart-secondary)}
smart-scroll-bar{display:block;touch-action:none;width:var(--smart-scroll-bar-default-width);height:var(--smart-scroll-bar-default-height)}smart-scroll-bar .smart-thumb{position:absolute;width:40px;background-clip:content-box;padding:var(--smart-scroll-bar-thumb-padding) 0;height:var(--smart-scroll-bar-thumb-size);cursor:default;box-sizing:border-box;border-width:1px;border-style:solid;border-color:var(--smart-scroll-bar-thumb-border);background-color:var(--smart-scroll-bar-thumb-background);border-top-left-radius:var(--smart-scroll-bar-thumb-border-top-left-radius);border-top-right-radius:var(--smart-scroll-bar-thumb-border-top-right-radius);border-bottom-left-radius:var(--smart-scroll-bar-thumb-border-bottom-left-radius);border-bottom-right-radius:var(--smart-scroll-bar-thumb-border-bottom-right-radius)}smart-scroll-bar .smart-thumb:hover{border-color:var(--smart-scroll-bar-thumb-border-hover);background-color:var(--smart-scroll-bar-thumb-background-hover)}smart-scroll-bar .smart-thumb:active{border-color:var(--smart-scroll-bar-thumb-border-active);background-color:var(--smart-scroll-bar-thumb-background-active)}smart-scroll-bar .smart-track{position:relative;float:left;height:100%;background-color:var(--smart-scroll-bar-track-background);width:100%}smart-scroll-bar .smart-scroll-button{display:none;float:left;width:var(--smart-scroll-button-size);height:100%;cursor:default;background-color:var(--smart-scroll-bar-button-background);color:var(--smart-scroll-bar-button-color);border:1px solid var(--smart-scroll-bar-button-border);min-height:0;padding:0;border-radius:0}smart-scroll-bar .smart-scroll-button:hover{background-color:var(--smart-scroll-bar-button-background-hover);color:var(--smart-scroll-bar-button-color-hover);border-color:var(--smart-scroll-bar-button-border-hover)}smart-scroll-bar .smart-scroll-button:active{background-color:var(--smart-scroll-bar-button-background-active);color:var(--smart-scroll-bar-button-color-active);border-color:var(--smart-scroll-bar-button-border-active)}smart-scroll-bar[show-buttons] .smart-track{width:calc(100% - var(--smart-scroll-button-size) * 2)}smart-scroll-bar[show-buttons] .smart-scroll-button{display:block}smart-scroll-bar[spinner][show-buttons] .smart-track{display:none}smart-scroll-bar[spinner][show-buttons] .smart-scroll-button{width:50%}smart-scroll-bar[discrete]{--smart-scroll-button-size:0px;--smart-scroll-bar-size:15px;--smart-scroll-bar-thumb-border-top-right-radius:6px;--smart-scroll-bar-thumb-border-top-left-radius:6px;--smart-scroll-bar-thumb-border-bottom-left-radius:6px;--smart-scroll-bar-thumb-border-bottom-right-radius:6px;--smart-scroll-bar-thumb-size:100%;--smart-scroll-bar-thumb-padding:3px;--smart-scroll-bar-default-width:var(--smart-editor-width);--smart-scroll-bar-default-height:var(--smart-scroll-bar-size);--smart-scroll-bar-background:#fafafa;--smart-scroll-bar-track-background:var(--smart-scroll-bar-background);--smart-scroll-bar-border:#F1F1F1;--smart-scroll-bar-thumb-background:#C1C1C1;--smart-scroll-bar-thumb-border:transparent}smart-scroll-bar[orientation=vertical]{height:var(--smart-scroll-bar-default-width);width:var(--smart-scroll-bar-default-height)}smart-scroll-bar[orientation=vertical] .smart-thumb{width:var(--smart-scroll-bar-thumb-size);padding:0 var(--smart-scroll-bar-thumb-padding);height:40px;top:0}smart-scroll-bar[orientation=vertical] .smart-track{float:none;width:100%;height:100%}smart-scroll-bar[orientation=vertical] .smart-scroll-button{float:none;height:var(--smart-scroll-button-size);width:100%}smart-scroll-bar[orientation=vertical][show-buttons] .smart-track{height:calc(100% - var(--smart-scroll-button-size) * 2)}smart-scroll-bar[orientation=vertical][spinner] .smart-scroll-button{height:50%;width:100%;float:none}
smart-scroll-viewer{display:block;width:var(--smart-editor-width);min-width:var(--smart-scroll-viewer-min-width);max-width:var(--smart-scroll-viewer-max-width);height:var(--smart-list-box-default-height);min-height:var(--smart-scroll-viewer-min-height);max-height:var(--smart-scroll-viewer-max-height);padding:3px}.smart-scroll-viewer.smart-container,smart-scroll-viewer>.smart-container{height:100%;width:100%;border:none;position:relative;overflow:hidden}.smart-scroll-viewer>.smart-container,.smart-scroll-viewer>.smart-container>.smart-scroll-viewer-container{max-height:inherit;min-height:inherit;max-width:inherit;min-width:inherit}.smart-scroll-viewer smart-scroll-bar{overflow:visible;position:absolute;bottom:0;height:calc(var(--smart-scroll-bar-size));width:100%}.smart-scroll-viewer smart-scroll-bar:before{position:absolute;content:"";width:100%;height:var(--smart-scroll-bar-size);background-color:var(--smart-surface);left:100%}.smart-scroll-viewer smart-scroll-bar.bottom-corner{width:calc(100% - var(--smart-scroll-bar-size))}.smart-scroll-viewer smart-scroll-bar[orientation=vertical]{right:0;top:0;height:100%;width:calc(var(--smart-scroll-bar-size))}.smart-scroll-viewer smart-scroll-bar[orientation=vertical].bottom-corner{height:calc(100% - var(--smart-scroll-bar-size))}.smart-scroll-viewer .smart-scroll-viewer-container{width:100%;height:100%;overflow:hidden;position:relative;background-color:transparent}.smart-scroll-viewer .smart-scroll-viewer-container.hscroll{height:calc(100% - var(--smart-scroll-bar-size))}.smart-scroll-viewer .smart-scroll-viewer-container.vscroll{width:calc(100% - var(--smart-scroll-bar-size))}.smart-scroll-viewer .smart-scroll-viewer-content-container{width:auto;height:auto;display:inline-block;padding:5px;position:relative;background-color:transparent}.smart-scroll-viewer[right-to-left] .smart-scroll-viewer-container{direction:rtl;text-align:initial}.smart-scroll-viewer[right-to-left] .smart-scroll-viewer-container.vscroll,.smart-scroll-viewer[right-to-left] smart-scroll-bar{left:var(--smart-scroll-bar-size);right:0}.smart-scroll-viewer[right-to-left] smart-scroll-bar:after{left:-100%}.smart-scroll-viewer[right-to-left] smart-scroll-bar[orientation=vertical]{left:0;right:initial}.smart-scroll-viewer[right-to-left] smart-scroll-bar[orientation=vertical]:after{content:none}
smart-slider{display:block;width:var(--smart-slider-default-width);height:var(--smart-slider-default-height);--smart-border-top-left-radius:100%;--smart-border-top-right-radius:100%;--smart-border-bottom-left-radius:100%;--smart-border-bottom-right-radius:100%}smart-slider[orientation=vertical]{width:var(--smart-slider-default-height);height:var(--smart-slider-default-width)}smart-slider.smart-element{overflow:visible}.smart-slider .smart-track-container{width:100%;height:var(--smart-slider-track-size);margin-top:calc((var(--smart-slider-thumb-height) - var(--smart-slider-track-size))/ 2 + 2px);margin-bottom:calc((var(--smart-slider-thumb-height) - var(--smart-slider-track-size))/ 2 + 2px)}.smart-slider .smart-track{user-select:none;-webkit-user-select:none;position:relative;float:left;width:100%;height:var(--smart-slider-track-size);background-color:var(--smart-disabled);cursor:pointer}.smart-slider .smart-thumb{position:absolute;margin-left:calc(-1 * var(--smart-slider-thumb-width)/ 2);margin-top:calc(var(--smart-slider-track-size)/ 2 - var(--smart-slider-thumb-height)/ 2);border-top-left-radius:var(--smart-slider-thumb-border-top-left-radius);border-top-right-radius:var(--smart-slider-thumb-border-top-right-radius);border-bottom-left-radius:var(--smart-slider-thumb-border-bottom-left-radius);border-bottom-right-radius:var(--smart-slider-thumb-border-bottom-right-radius);border:var(--smart-border-width) solid var(--smart-primary);width:var(--smart-slider-thumb-width);min-width:var(--smart-slider-track-size);height:var(--smart-slider-thumb-height);min-height:var(--smart-slider-track-size);background-color:var(--smart-primary);cursor:pointer;user-select:none;-webkit-user-select:none}.smart-slider .smart-thumb:before{width:100%;height:100%;transition:.2s;display:block;border-radius:50%;content:"";z-index:-1;opacity:.2;background:var(--smart-primary)}.smart-slider .smart-thumb[hover]:before{transform:scale(3);animation:slider-thumb-effect 1s infinite;animation-delay:.1s}.smart-slider .smart-thumb.accessible{z-index:1}.smart-slider .smart-thumb-label,.smart-slider .smart-thumb~.smart-thumb{display:none}.smart-slider .smart-value{position:absolute;width:0;height:var(--smart-slider-track-size);background-color:var(--smart-ui-state-active)}.smart-slider .smart-tooltip{position:absolute;display:flex;align-items:center;justify-content:center;border:1px solid var(--smart-primary);width:var(--smart-slider-tooltip-width);height:var(--smart-slider-tooltip-height);padding:4px 12px;font-family:var(--smart-font-family);font-size:75%;opacity:.5;border-radius:0;background-color:var(--smart-primary);color:var(--smart-primary-color);left:calc(-1 * var(--smart-slider-tooltip-width)/ 2 + var(--smart-slider-thumb-width)/ 2 - 1px);top:calc(-1 * var(--smart-slider-tooltip-height) - 22px)}.smart-slider .smart-scale.smart-hidden,.smart-slider .smart-tooltip.smart-hidden{display:none}.smart-slider .smart-tooltip .smart-tooltip-content{background:inherit;color:inherit;border-color:inherit;background-color:inherit}.smart-slider .smart-tick{position:absolute;width:1px;height:var(--smart-slider-tick-size);background-color:var(--smart-border)}.smart-slider .smart-tick-minor{height:var(--smart-slider-minor-tick-size)}.smart-slider .smart-scale{margin-left:var(--smart-border-width);height:calc(100% - var(--smart-slider-thumb-height) - 4px)}.smart-slider .smart-scale-near .smart-tick{bottom:0}.smart-slider .smart-scale-near .smart-label{bottom:calc(var(--smart-slider-tick-size) + 2px)}.smart-slider .smart-scale-far .smart-tick{top:0}.smart-slider .smart-scale-far .smart-label{top:calc(var(--smart-slider-tick-size) + 2px)}.smart-slider .smart-spin-button{display:block;float:left;margin-top:calc(var(--smart-slider-track-size)/ 2 - var(--smart-slider-spin-button-height)/ 2);border:var(--smart-border-width) solid var(--smart-border);border-top-left-radius:var(--smart-border-top-left-radius);border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);width:var(--smart-slider-spin-button-width);height:var(--smart-slider-spin-button-height);background-color:var(--smart-surface);color:var(--smart-surface-color);cursor:pointer;padding:0;min-height:0;top:0;position:relative}.smart-slider .smart-spin-button.smart-hidden,.smart-slider:not([hint]) .smart-hint{display:none}.smart-slider .smart-spin-button .smart-button{padding:0;min-height:0}.smart-slider .smart-spin-button .smart-arrow{left:1px;top:1px}.smart-slider .smart-spin-button[hover]{background-color:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover);border-color:var(--smart-ui-state-border-hover)}.smart-slider .smart-spin-button[active]{background-color:var(--smart-ui-state-active);color:var(--smart-ui-state-color-active);border-color:var(--smart-ui-state-border-active)}.smart-slider:focus{border-color:var(--smart-outline)}.smart-slider:focus .smart-thumb:before{transform:scale(3);animation:slider-thumb-effect 1s infinite;animation-delay:.1s}.smart-slider:not([animation=none]) .smart-thumb.enable-animation{transition:margin-left .4s cubic-bezier(.25,.8,.25,1)}.smart-slider:not([animation=none]) .smart-value.enable-animation{transition:width .4s cubic-bezier(.25,.8,.25,1)}.smart-slider:not([animation=none])[inverted] .smart-value.enable-animation,.smart-slider:not([animation=none])[range-slider] .smart-value.enable-animation{transition:width .4s cubic-bezier(.25,.8,.25,1),margin-left .4s cubic-bezier(.25,.8,.25,1)}.smart-slider:not([animation=none])[orientation=vertical] .smart-thumb.enable-animation{transition:margin-top .4s cubic-bezier(.25,.8,.25,1)}.smart-slider:not([animation=none])[orientation=vertical] .smart-value.enable-animation{transition:height .4s cubic-bezier(.25,.8,.25,1),margin-top .4s cubic-bezier(.25,.8,.25,1)}.smart-slider:not([animation=none])[orientation=vertical][inverted] .smart-value.enable-animation{transition:height .4s cubic-bezier(.25,.8,.25,1)}.smart-slider:not([animation=none])[orientation=vertical][range-slider] .smart-value.enable-animation{transition:height .4s cubic-bezier(.25,.8,.25,1),margin-top .4s cubic-bezier(.25,.8,.25,1)}.smart-slider[disabled] .smart-spin-button,.smart-slider[disabled] .smart-thumb,.smart-slider[disabled] .smart-track,.smart-slider[disabled] .smart-value,.smart-slider[readonly] .smart-spin-button,.smart-slider[readonly] .smart-thumb,.smart-slider[readonly] .smart-track,.smart-slider[readonly] .smart-value{cursor:default}.smart-slider[hint] .smart-hint{position:absolute;left:0;bottom:calc(100% + 2px);font-size:12px;width:100%;display:block;pointer-events:none;user-select:none;-webkit-user-select:none;-ms-user-select:none;-moz-user-select:none}.smart-slider[hint] .smart-hint:empty{display:none}.smart-slider[range-slider] .smart-thumb~.smart-thumb,.smart-slider[show-thumb-label]:focus .smart-thumb-label{display:block}.smart-slider[hint][scale-position=both]:not([orientation=vertical]) .smart-hint{bottom:150%}.smart-slider[ticks-position=track] .smart-scale-near .smart-label,.smart-slider[ticks-visibility=none] .smart-scale-near .smart-label{bottom:2px}.smart-slider[hint]:not([animation=none]) .smart-hint{transition:opacity .2s cubic-bezier(.4,0,.6,1)}.smart-slider[value="0"] .smart-thumb{background-color:var(--smart-border);border-color:var(--smart-border)}.smart-slider[value="0"] .smart-thumb:before{background:var(--smart-border)}.smart-slider[show-buttons] .smart-track-container{margin-top:calc((var(--smart-slider-spin-button-height) - var(--smart-slider-track-size))/ 2 + 2px);margin-bottom:calc((var(--smart-slider-spin-button-height) - var(--smart-slider-track-size))/ 2 + 2px)}.smart-slider[show-buttons] .smart-track{margin-left:calc(var(--smart-slider-thumb-width)/ 2);margin-right:calc(var(--smart-slider-thumb-width)/ 2);width:calc(100% - 2 * var(--smart-slider-spin-button-width) - var(--smart-slider-thumb-width))}.smart-slider[show-buttons] .smart-scale{height:calc(100% - var(--smart-slider-spin-button-height) - 4px);margin-left:calc(var(--smart-slider-spin-button-width) + var(--smart-slider-thumb-width)/ 2 + var(--smart-border-width));margin-right:calc(var(--smart-slider-spin-button-width) + var(--smart-slider-thumb-width)/ 2)}.smart-slider[tooltip-position=far] .smart-tooltip{top:calc(var(--smart-slider-thumb-height) + 1px)}.smart-slider[scale-position=both] .smart-scale{height:calc((100% - var(--smart-slider-thumb-height))/ 2 - 2px)}.smart-slider[scale-position=both][show-buttons] .smart-scale{height:calc((100% - var(--smart-slider-spin-button-height))/ 2 - 2px)}.smart-slider[ticks-visibility=none] .smart-scale-far .smart-label{top:2px}.smart-slider[ticks-position=track] .smart-tick{height:100%}.smart-slider[ticks-position=track] .smart-tick-minor{height:60%;top:50%;transform:translateY(-50%)}.smart-slider[ticks-position=track] .smart-scale-far .smart-label{top:2px}.smart-slider[show-thumb-label] .smart-thumb{overflow:hidden;text-overflow:ellipsis;z-index:9999}.smart-slider[show-thumb-label] .smart-thumb-label{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);font-size:7px;font-family:var(--smart-font-family);-webkit-user-select:none;user-select:none}.smart-slider[thumb-label-position=far] .smart-thumb{top:0}.smart-slider[thumb-label-position=far]:focus .smart-thumb{top:calc(var(--smart-slider-default-height) + var(--smart-slider-thumb-width) * 2)}.smart-slider[orientation=vertical].smart-container,.smart-slider[orientation=vertical]>.smart-container{display:flex;flex-flow:row;justify-content:space-between}.smart-slider[orientation=vertical] .smart-thumb{margin-left:calc(var(--smart-slider-track-size)/ 2 - var(--smart-slider-thumb-width)/ 2);margin-top:calc(-1 * var(--smart-slider-thumb-height)/ 2)}.smart-slider[orientation=vertical] .smart-track-container{float:left;width:var(--smart-slider-track-size);height:100%;margin-top:0;margin-right:calc((var(--smart-slider-thumb-width) - var(--smart-slider-track-size))/ 2 + 2px);margin-bottom:0;margin-left:calc((var(--smart-slider-thumb-width) - var(--smart-slider-track-size))/ 2 + 2px);z-index:1}.smart-slider[orientation=vertical] .smart-track{float:none;width:var(--smart-slider-track-size);height:100%}.smart-slider[orientation=vertical] .smart-value{width:var(--smart-slider-track-size);height:0}.smart-slider[orientation=vertical] .smart-scale{float:left;margin-top:var(--smart-border-width);width:calc(100% - var(--smart-slider-thumb-width) - 2px);height:100%}.smart-slider[orientation=vertical] .smart-tooltip{left:calc(-1 * var(--smart-slider-tooltip-width) - 8px);top:calc(-1 * var(--smart-slider-tooltip-height)/ 2 + var(--smart-slider-thumb-height)/ 2 - 1px)}.smart-slider[orientation=vertical] .smart-tick{width:var(--smart-slider-tick-size);height:1px}.smart-slider[orientation=vertical] .smart-tick-minor{width:var(--smart-slider-minor-tick-size)}.smart-slider[orientation=vertical] .smart-scale-near .smart-tick{right:0}.smart-slider[orientation=vertical] .smart-scale-near .smart-label{right:calc(var(--smart-slider-tick-size) + 2px);bottom:initial}.smart-slider[orientation=vertical][ticks-position=track] .smart-scale-near .smart-label,.smart-slider[orientation=vertical][ticks-visibility=none] .smart-scale-near .smart-label{right:2px}.smart-slider[orientation=vertical] .smart-scale-far .smart-label{left:calc(var(--smart-slider-tick-size) + 2px)}.smart-slider[orientation=vertical] .smart-spin-button{float:none;margin-left:calc(var(--smart-slider-track-size)/ 2 - var(--smart-slider-spin-button-width)/ 2);margin-top:0}.smart-slider[orientation=vertical][inverted] .smart-thumb{margin-top:0}.smart-slider[orientation=vertical][scale-position=both] .smart-scale{width:calc((100% - var(--smart-slider-thumb-width))/ 2 - 2px)}.smart-slider[orientation=vertical][scale-position=both][show-buttons] .smart-scale{width:calc((100% - var(--smart-slider-spin-button-width))/ 2)}.smart-slider[orientation=vertical][show-buttons] .smart-track-container{margin-right:calc((var(--smart-slider-spin-button-width) - var(--smart-slider-track-size))/ 2 + 2px);margin-left:calc((var(--smart-slider-spin-button-width) - var(--smart-slider-track-size))/ 2 + 2px)}.smart-slider[orientation=vertical][show-buttons] .smart-track{margin-left:0;margin-right:0;margin-top:calc(var(--smart-slider-thumb-height)/ 2);margin-bottom:calc(var(--smart-slider-thumb-height)/ 2);width:100%;height:calc(100% - 2 * var(--smart-slider-spin-button-height) - var(--smart-slider-thumb-height))}.smart-slider[orientation=vertical][show-buttons] .smart-scale{margin-top:calc(var(--smart-slider-spin-button-height) + var(--smart-slider-thumb-height)/ 2 + var(--smart-border-width));margin-right:0;margin-left:0;height:calc(100% - var(--smart-slider-spin-button-height) * 2 - var(--smart-slider-thumb-height))}.smart-slider[orientation=vertical][tooltip-position=far] .smart-tooltip{left:calc(var(--smart-slider-thumb-width) + 1px)}.smart-slider[orientation=vertical][ticks-position=track] .smart-tick{width:100%;height:1px}.smart-slider[orientation=vertical][ticks-position=track] .smart-tick-minor{width:60%;left:50%;transform:translateX(-50%)}.smart-slider[orientation=vertical][ticks-position=track] .smart-scale-far .smart-label,.smart-slider[orientation=vertical][ticks-visibility=none] .smart-scale-far .smart-label{left:2px}.smart-slider[orientation=vertical][thumb-label-position=far] .smart-thumb{left:100%;top:calc(100% + var(--smart-slider-thumb-height)/ 2)}@keyframes slider-thumb-effect{0%,100%{transform:scale(3)}50%{transform:scale(2.75)}}.smart-slider[right-to-left] .smart-hint,.smart-slider[right-to-left] .smart-label,smart-slider[right-to-left] .smart-tooltip-content{direction:rtl}.smart-slider[right-to-left]:not([animation=none]) .smart-value.enable-animation{transition:width .4s cubic-bezier(.25,.8,.25,1),margin-left .4s cubic-bezier(.25,.8,.25,1)}
.smart-sortable{display:block}.smart-sortable .smart-sortable-items-parent{display:flex;flex-direction:column}.smart-sortable .smart-sortable-item{transform:translate(0,0);position:relative}.smart-sortable .smart-sortable-item.dragged{position:absolute;box-shadow:var(--smart-elevation-4);z-index:9999999}.smart-sortable .smart-sortable-item.placeholder:after,.smart-sortable .smart-sortable-item.placeholder:before{content:none}.smart-sortable:not([disabled]) .smart-sortable-item{touch-action:none}.smart-sortable[disabled]{pointer-events:none;opacity:.7}.smart-sortable:not([items]).smart-container,.smart-sortable:not([items])>.smart-container{display:flex;flex-direction:column}.smart-sortable:not([items])[mode=horizontal]>.smart-container{flex-direction:row}.smart-sortable[dragged]>.smart-container{-webkit-user-select:none;user-select:none}.smart-sortable[mode=horizontal] .smart-sortable-items-parent{flex-direction:row}.smart-sortable[handle-position=left] .smart-sortable-item:after,.smart-sortable[handle-position=left] .smart-sortable-item:before{left:calc(-1 * var(--smart-sortable-handle-size))!important}.smart-sortable:not([animation=none]) .smart-sortable-item{transition:transform .15s ease-in}.smart-sortable:not([animation=none]) .smart-sortable-item.returning{transition:left .15s ease-in,top .15s ease-in}.smart-sortable:not([drag-mode=handle]):not([disabled]) .smart-sortable-item{cursor:grab}.smart-sortable[drag-mode=handle] .smart-sortable-item:after,.smart-sortable[drag-mode=handle] .smart-sortable-item:before{content:var(--smart-icon-ellipsis);position:absolute;left:100%;top:calc(50% - var(--smart-sortable-handle-size)/ 2);width:var(--smart-sortable-handle-size);height:var(--smart-sortable-handle-size);display:flex;align-items:flex-end;justify-content:center;font-family:var(--smart-font-family-icon);font-size:var(--smart-font-size);line-height:calc(var(--smart-sortable-handle-size) - var(--smart-font-size)/ 2);cursor:grab;visibility:hidden;opacity:0;transition:visibility .2s ease-in,opacity .2s ease-in;color:var(--smart-background-color)}.smart-sortable[drag-mode=handle] .smart-sortable-item.dragged:after,.smart-sortable[drag-mode=handle] .smart-sortable-item.dragged:before,.smart-sortable[drag-mode=handle][handle-visibility=visible]:not([disabled]) .smart-sortable-item:after,.smart-sortable[drag-mode=handle][handle-visibility=visible]:not([disabled]) .smart-sortable-item:before{visibility:visible;opacity:.5}.smart-sortable[drag-mode=handle] .smart-sortable-item:before{transform:rotate(-90deg)}.smart-sortable[drag-mode=handle] .smart-sortable-item:after{transform:rotate(90deg)}.smart-sortable[drag-mode=handle]:not([disabled]) .smart-sortable-item:hover:after,.smart-sortable[drag-mode=handle]:not([disabled]) .smart-sortable-item:hover:before{z-index:9999999;visibility:visible;opacity:.5}.smart-sortable[drag-mode=handle][handle-position=bottom] .smart-sortable-item:after,.smart-sortable[drag-mode=handle][handle-position=bottom] .smart-sortable-item:before,.smart-sortable[drag-mode=handle][handle-position=top] .smart-sortable-item:after,.smart-sortable[drag-mode=handle][handle-position=top] .smart-sortable-item:before{left:calc(50% - var(--smart-sortable-handle-size)/ 2);top:100%;align-items:center;transform:none}.smart-sortable[drag-mode=handle][handle-position=bottom] .smart-sortable-item:after{align-items:flex-start}.smart-sortable[drag-mode=handle][handle-position=top] .smart-sortable-item:before{top:calc(-1 * var(--smart-sortable-handle-size))}.smart-sortable[drag-mode=handle][handle-position=top] .smart-sortable-item:after{top:calc(-1 * var(--smart-sortable-handle-size));align-items:flex-end}.smart-sortable[right-to-left] .smart-column-panel-label,.smart-sortable[right-to-left] .smart-sortable-items-parent{direction:rtl}
smart-splitter{width:var(--smart-splitter-default-width);height:var(--smart-splitter-default-height);position:relative}smart-splitter[dragged]{cursor:w-resize}smart-splitter[orientation=horizontal][dragged]{cursor:s-resize}smart-splitter-item>.smart-container{overflow:hidden;position:relative;padding:var(--smart-splitter-item-padding)}.smart-splitter smart-splitter-bar{min-width:5px;width:var(--smart-splitter-bar-size);position:relative;-webkit-user-select:none;user-select:none;overflow:hidden;touch-action:none}.smart-splitter smart-splitter-bar>.smart-container{display:flex;align-items:center;justify-content:center;flex-direction:column-reverse}.smart-splitter smart-splitter-bar.smart-element{background:var(--smart-surface);border-color:var(--smart-surface-color);color:var(--smart-surface-color);border-radius:initial}.smart-splitter smart-splitter-bar[focus] .smart-splitter-resize-button>span,.smart-splitter smart-splitter-bar[focus] .smart-splitter-resize-button>span::after,.smart-splitter smart-splitter-bar[focus] .smart-splitter-resize-button>span::before{background-color:var(--smart-ui-state-color-active);border-color:var(--smart-ui-state-color-active);color:var(--smart-ui-state-color-active)}.smart-splitter smart-splitter-bar[focus].smart-element{outline:0;background:var(--smart-ui-state-active);color:var(--smart-ui-state-color-active)}.smart-splitter smart-splitter-bar[locked] .smart-splitter-resize-button>span{visibility:hidden}.smart-splitter smart-splitter-bar[locked] .smart-splitter-resize-button>span:after,.smart-splitter smart-splitter-bar[locked] .smart-splitter-resize-button>span:before{content:none}.smart-splitter smart-splitter-bar[locked][hover]{background-color:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover)}.smart-splitter smart-splitter-bar[locked][focus]{background-color:var(--smart-ui-state-active);color:var(--smart-ui-state-color-active)}.smart-splitter smart-splitter-bar[show-far-button] .smart-splitter-far-collapse-button,.smart-splitter smart-splitter-bar[show-near-button] .smart-splitter-near-collapse-button{visibility:visible;width:100%}.smart-splitter smart-splitter-bar[item-collapsed]{cursor:initial}.smart-splitter smart-splitter-bar[item-collapsed]>.smart-container{flex-direction:initial}.smart-splitter smart-splitter-bar[item-collapsed] .smart-splitter-resize-button{display:none}.smart-splitter smart-splitter-bar[item-collapsed] .smart-splitter-resize-button>span:after,.smart-splitter smart-splitter-bar[item-collapsed] .smart-splitter-resize-button>span:before{content:initial}.smart-splitter smart-splitter-bar[item-collapsed] .smart-splitter-far-collapse-button>span,.smart-splitter smart-splitter-bar[item-collapsed] .smart-splitter-near-collapse-button>span{transform:rotate(270deg)}.smart-splitter smart-splitter-bar[item-collapsed] .smart-splitter-far-collapse-button.smart-visibility-hidden,.smart-splitter smart-splitter-bar[item-collapsed] .smart-splitter-near-collapse-button.smart-visibility-hidden{width:initial}.smart-splitter smart-splitter-bar[item-collapsed] .smart-splitter-near-collapse-button>span{transform:translate(-50%,-50%) rotate(270deg)}.smart-splitter smart-splitter-bar[item-collapsed] .smart-splitter-far-collapse-button>span{transform:translate(-50%,-50%) rotate(90deg)}.smart-splitter smart-splitter-item{overflow:hidden}.smart-splitter smart-splitter-item>.smart-container>.smart-content{width:100%;height:100%;overflow:auto;padding:var(--smart-splitter-item-content-padding)}.smart-splitter smart-splitter-item.smart-element{background-color:inherit;color:inherit;border-radius:initial}.smart-splitter smart-splitter-item[collapsed]{overflow:hidden;padding:initial}.smart-splitter .smart-splitter{margin:0;width:100%;height:100%;border:none}.smart-splitter .smart-splitter smart-splitter-bar{background-color:var(--smart-primary);color:var(--smart-primary-color)}.smart-splitter>.smart-container{display:flex;position:relative;overflow:inherit}.smart-splitter>.smart-container>smart-splitter-item{height:100%;flex-shrink:0;width:var(--smart-splitter-item-size)}.smart-splitter>.smart-container>smart-splitter-bar{flex-shrink:0;height:var(--smart-splitter-bar-fit-size)}.smart-splitter>.smart-container>smart-splitter-bar[locked]{cursor:default}.smart-splitter>.smart-container>.smart-splitter-bar-feedback{height:100%;flex-shrink:0}.smart-splitter .smart-splitter-bar-feedback{min-width:5px;width:var(--smart-splitter-bar-size);-webkit-user-select:none;user-select:none;overflow:hidden;touch-action:none;position:absolute;background-color:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover);opacity:.5}.smart-splitter .smart-splitter-bar-feedback.limit-reached{background-color:var(--smart-error)}.smart-splitter .smart-splitter-resize-button{width:100%;position:relative;font-family:var(--smart-font-family-icon);height:40px;display:flex;justify-content:center;align-items:center;cursor:inherit}.smart-splitter .smart-splitter-resize-button>span{width:6px;height:6px;border:1px solid var(--smart-surface-color);background-color:var(--smart-surface-color);color:var(--smart-surface-color);border-radius:50%;cursor:inherit}.smart-splitter .smart-splitter-resize-button>span:after,.smart-splitter .smart-splitter-resize-button>span:before{position:absolute;transform:translate(-50%,-50%);content:"";width:4px;height:4px;border-radius:50%;border:1px solid var(--smart-surface-color);background-color:var(--smart-surface-color);color:var(--smart-surface-color);pointer-events:none;font-family:var(--smart-font-family-icon)}.smart-splitter .smart-splitter-resize-button>span:before{left:50%;top:calc(50% - var(--smart-splitter-bar-size))}.smart-splitter .smart-splitter-resize-button>span:after{top:calc(50% + var(--smart-splitter-bar-size));left:50%}.smart-splitter .smart-splitter-far-collapse-button,.smart-splitter .smart-splitter-near-collapse-button{height:20px;position:relative;font-family:var(--smart-font-family-icon);cursor:pointer;visibility:hidden;width:0}.smart-splitter .smart-splitter-far-collapse-button .smart-arrow,.smart-splitter .smart-splitter-near-collapse-button .smart-arrow{position:absolute;top:50%;left:50%;width:auto;height:auto}.smart-splitter .smart-splitter-far-collapse-button .smart-arrow:after,.smart-splitter .smart-splitter-near-collapse-button .smart-arrow:after{content:var(--smart-icon-arrow-down);position:absolute;display:flex;align-items:center;justify-content:center;pointer-events:none;width:100%;height:100%;top:0;line-height:normal}.smart-splitter .smart-splitter-far-collapse-button>span{transform:translate(-50%,-50%) rotate(270deg)}.smart-splitter .smart-splitter-near-collapse-button .smart-arrow{transform:translate(-55%,-50%) rotate(90deg)}.smart-splitter:not([readonly])>.smart-container>smart-splitter-bar[hover]{cursor:w-resize}.smart-splitter:not([dragged])>.smart-container>smart-splitter-bar:not([focus]) .smart-splitter-far-collapse-button,.smart-splitter:not([dragged])>.smart-container>smart-splitter-bar:not([focus]) .smart-splitter-near-collapse-button{color:inherit}.smart-splitter:not([dragged])>.smart-container>smart-splitter-bar[hover]:not([item-collapsed]):not([focus]) .smart-splitter-far-collapse-button,.smart-splitter:not([dragged])>.smart-container>smart-splitter-bar[hover]:not([item-collapsed]):not([focus]) .smart-splitter-near-collapse-button{color:var(--smart-ui-state-color-hover)}.smart-splitter:not([dragged]) smart-splitter-bar.smart-element,.smart-splitter:not([dragged]) smart-splitter-bar[hover]{background-color:var(--smart-ui-state-hover);border-color:var(--smart-ui-state-border-hover);color:var(--smart-ui-state-color-hover)}.smart-splitter:not([dragged]) smart-splitter-bar[hover]:not([item-collapsed]):not([focus]) .smart-splitter-resize-button span,.smart-splitter:not([dragged]) smart-splitter-bar[hover]:not([item-collapsed]):not([focus]) .smart-splitter-resize-button span:after,.smart-splitter:not([dragged]) smart-splitter-bar[hover]:not([item-collapsed]):not([focus]) .smart-splitter-resize-button span:before{background-color:var(--smart-ui-state-color-hover);border-color:var(--smart-ui-state-color-hover);color:var(--smart-ui-state-color-hover)}.smart-splitter:not([dragged]) smart-splitter-bar[focus]{background-color:var(--smart-ui-state-active);border-color:var(--smart-ui-state-border-active);color:var(--smart-ui-state-color-active)}.smart-splitter:not([dragged]) smart-splitter-bar[focus]:not([item-collapsed]) .smart-splitter-resize-button span,.smart-splitter:not([dragged]) smart-splitter-bar[focus]:not([item-collapsed]) .smart-splitter-resize-button span:after,.smart-splitter:not([dragged]) smart-splitter-bar[focus]:not([item-collapsed]) .smart-splitter-resize-button span:before{background-color:var(--smart-ui-state-color-active);border-color:var(--smart-ui-state-color-active);color:var(--smart-ui-state-color-active)}.smart-splitter:not([dragged]) smart-splitter-bar:not([item-collapsed]):not([focus]) .smart-splitter-far-collapse-button[hover],.smart-splitter:not([dragged]) smart-splitter-bar:not([item-collapsed]):not([focus]) .smart-splitter-near-collapse-button[hover]{color:var(--smart-ui-state-color-hover)}.smart-splitter[dragged]{cursor:w-resize;pointer-events:none;-webkit-user-select:none;user-select:none;touch-action:none}.smart-splitter[dragged]:not([animation=none])>.smart-container>smart-splitter-item{transition:none}.smart-splitter[auto-fit-mode=overflow]>.smart-container{overflow:auto}.smart-splitter[orientation=horizontal]>.smart-container{flex-direction:column}.smart-splitter[orientation=horizontal]>.smart-container>smart-splitter-item{width:100%;height:var(--smart-splitter-item-size)}.smart-splitter[orientation=horizontal]>.smart-container>smart-splitter-bar{width:var(--smart-splitter-bar-fit-size);min-height:5px;height:var(--smart-splitter-bar-size)}.smart-splitter[orientation=horizontal]>.smart-container>smart-splitter-bar>.smart-container{flex-direction:row}.smart-splitter[orientation=horizontal]>.smart-container>smart-splitter-bar .smart-splitter-far-collapse-button,.smart-splitter[orientation=horizontal]>.smart-container>smart-splitter-bar .smart-splitter-near-collapse-button{width:0;height:100%}.smart-splitter[orientation=horizontal]>.smart-container>smart-splitter-bar .smart-splitter-resize-button,.smart-splitter[orientation=horizontal]>.smart-container>smart-splitter-bar[show-far-button] .smart-splitter-far-collapse-button,.smart-splitter[orientation=horizontal]>.smart-container>smart-splitter-bar[show-near-button] .smart-splitter-near-collapse-button{width:20px;height:100%}.smart-splitter[orientation=horizontal]>.smart-container>smart-splitter-bar .smart-splitter-far-collapse-button>span{transform:translate(-50%,-45%) rotate(0)}.smart-splitter[orientation=horizontal]>.smart-container>smart-splitter-bar .smart-splitter-near-collapse-button>span,.smart-splitter[orientation=horizontal]>.smart-container>smart-splitter-bar[item-collapsed] .smart-splitter-far-collapse-button>span{transform:translate(-50%,-50%) rotate(180deg)}.smart-splitter[orientation=horizontal]>.smart-container>smart-splitter-bar .smart-splitter-resize-button>span:before{left:calc(50% - var(--smart-splitter-bar-size));top:50%}.smart-splitter[orientation=horizontal]>.smart-container>smart-splitter-bar .smart-splitter-resize-button>span:after{top:50%;left:calc(50% + var(--smart-splitter-bar-size))}.smart-splitter[orientation=horizontal]>.smart-container>smart-splitter-bar[item-collapsed] .smart-splitter-near-collapse-button>span{transform:translate(-50%,-50%) rotate(0)}.smart-splitter[orientation=horizontal]>.smart-container>.smart-splitter-bar-feedback{width:100%;min-height:5px;height:var(--smart-splitter-bar-size)}.smart-splitter[orientation=horizontal] smart-splitter-item[collapsed]{min-width:0;min-height:0}.smart-splitter[orientation=horizontal]:not([resize-mode=none]):not([readonly])>.smart-container>smart-splitter-bar[hover]:not([locked]),.smart-splitter[orientation=horizontal][dragged]{cursor:s-resize}.smart-splitter[resize-mode=none]>.smart-container>smart-splitter-bar{cursor:default}.smart-splitter[disabled]>.smart-container>smart-splitter-bar{cursor:default;outline:0;border:none;box-shadow:none}.smart-splitter[dragging-not-allowed]>.smart-container>.smart-splitter-bar-feedback,.smart-splitter[dragging-not-allowed]>.smart-container>smart-splitter-bar,.smart-splitter[orientation][disabled]>.smart-container>smart-splitter-bar{cursor:default}.smart-splitter:not([animation=none]) .smart-splitter-far-collapse-button .smart-arrow,.smart-splitter:not([animation=none]) .smart-splitter-near-collapse-button .smart-arrow{transition:transform .2s ease-out}.smart-splitter:not([animation=none])>.smart-container>smart-splitter-item.animate{transition:all .25s cubic-bezier(.4,0,.2,1)}.smart-splitter[orientation-change]:not([animation=none])>.smart-container>smart-splitter-item{transition:none}.smart-splitter[show-locked-items]>.smart-container>smart-splitter-item[locked]>.smart-container:after{position:absolute;content:var(--smart-icon-lock);font-family:var(--smart-font-family-icon);opacity:.25;font-size:calc(2.5 * var(--smart-splitter-font-size));top:50%;left:50%;transform:translate(-50%,-50%)}.smart-splitter[right-to-left] .smart-splitter>.smart-container{direction:initial}.smart-splitter[right-to-left] smart-splitter-item>.smart-container>.smart-content{direction:rtl}
smart-switch-button{width:var(--smart-switch-button-default-width);height:var(--smart-switch-button-default-height)}smart-switch-button[orientation=vertical]{height:var(--smart-switch-button-default-width);width:var(--smart-switch-button-default-height)}smart-switch-button.smart-element{display:inline-block;border:none;background:0 0;overflow:visible}.smart-switch-button .smart-thumb{border:var(--smart-border-width) solid var(--smart-border);border-radius:100%;width:var(--smart-switch-button-thumb-size);height:var(--smart-switch-button-thumb-size);background-color:var(--smart-surface);box-shadow:var(--smart-elevation-2);align-self:center;position:relative;cursor:pointer;order:2;pointer-events:all}.smart-switch-button .smart-thumb:before{background-color:var(--smart-primary);position:absolute;width:200%;height:200%;left:50%;top:50%;transition:.2s;display:block;border-radius:100%;content:"";transform:scale(0) translate(-50%,-50%);transform-origin:left top;opacity:.2}.smart-switch-button .smart-thumb:active:before{animation:button-wave-effect .1s ease-in;transform:scale(1) translate(-50%,-50%)}.smart-switch-button .smart-container{font-size:inherit;position:relative;user-select:none;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;touch-action:none}.smart-switch-button .smart-container:before{content:"";position:absolute;width:90%;height:50%;left:5%;top:25%;border-radius:10px;background-color:var(--smart-surface)}.smart-switch-button .smart-inner-container{width:calc(200% - var(--smart-switch-button-thumb-size));height:100%;position:absolute;color:inherit;display:flex;flex-direction:row;justify-content:flex-start;pointer-events:none;left:0}.smart-switch-button .smart-false-content,.smart-switch-button .smart-true-content{font-size:inherit;font-weight:inherit;display:inline-block;text-align:center;box-sizing:border-box;color:inherit}.smart-switch-button .smart-false-content-container,.smart-switch-button .smart-true-content-container{height:100%;display:flex;justify-content:center;align-items:center;background-clip:content-box;padding:2px 0;color:inherit;overflow:hidden;width:calc((100% - var(--smart-switch-button-thumb-size))/ 2)}.smart-switch-button .smart-true-content-container{order:1}.smart-switch-button .smart-false-content-container,.smart-switch-button[inverted] .smart-true-content-container{order:3}.smart-switch-button:not([animation=none]) .smart-container:before{transition:opacity .2s ease-in-out,background .2s ease-in-out}.smart-switch-button:not([animation=none]):not([dragged]):not([checked=null]) .smart-inner-container{transition:left .2s ease-in-out}.smart-switch-button:not([animation=none])[orientation=vertical]:not([dragged]):not([checked=null]) .smart-inner-container{transition:top .2s ease-in-out}.smart-switch-button[hover]{border-color:var(--smart-ui-state-hover)}.smart-switch-button:focus .smart-thumb,.smart-switch-button[checked] .smart-thumb{border-color:var(--smart-primary);background-color:var(--smart-primary)}.smart-switch-button:focus .smart-thumb:before{transform:scale(1) translate(-50%,-50%);background-color:var(--smart-primary);animation:button-wave-effect .1s ease-in}.smart-switch-button[readonly]{pointer-events:none}.smart-switch-button[disabled] .smart-thumb:before{content:none}.smart-switch-button[checked] .smart-thumb:active:before{transform:scale(1) translate(-50%,-50%);background-color:var(--smart-primary)}.smart-switch-button[checked] .smart-container:before{background-color:var(--smart-primary);opacity:.4}.smart-switch-button[checked] .smart-inner-container{left:calc(-1 * (100% - var(--smart-switch-button-thumb-size)))}.smart-switch-button[checked]:focus .smart-thumb:before{transform:scale(1) translate(-50%,-50%);background-color:var(--smart-primary)}.smart-switch-button[checked][inverted] .smart-inner-container{left:0}.smart-switch-button[checked=null] .smart-inner-container,.smart-switch-button[checked=null][inverted] .smart-inner-container{left:calc(-50% + var(--smart-switch-button-thumb-size)/ 2)}.smart-switch-button[checked]:not([animation=none]) .smart-thumb:active:before,.smart-switch-button[checked]:not([animation=none]):focus .smart-thumb:before{animation:button-wave-effect .1s ease-in}.smart-switch-button[checked][orientation=vertical] .smart-thumb{background-color:var(--smart-primary)}.smart-switch-button[checked][orientation=vertical] .smart-thumb:active:before{transform:scale(1) translate(-50%,-50%);background-color:var(--smart-primary)}.smart-switch-button[checked][orientation=vertical] .smart-container:before{background-color:var(--smart-primary);opacity:.4}.smart-switch-button[checked][orientation=vertical]:focus .smart-thumb:before{transform:scale(1) translate(-50%,-50%);background-color:var(--smart-primary)}.smart-switch-button[checked][orientation=vertical]:not([animation=none]) .smart-thumb:active:before,.smart-switch-button[checked][orientation=vertical]:not([animation=none]):focus .smart-thumb:before{animation:button-wave-effect .1s ease-in}.smart-switch-button[checked=null] .smart-thumb{background-color:var(--smart-surface);border-color:var(--smart-border)}.smart-switch-button[checked=null] .smart-false-content,.smart-switch-button[checked=null] .smart-true-content{visibility:hidden}.smart-switch-button[checked=null] .smart-false-content-container,.smart-switch-button[checked=null] .smart-true-content-container{color:transparent}.smart-switch-button[inverted] .smart-inner-container{left:calc(-1 * (100% - var(--smart-switch-button-thumb-size)))}.smart-switch-button[inverted] .smart-false-content-container{order:1}.smart-switch-button[orientation=vertical] .smart-thumb{width:var(--smart-switch-button-thumb-size);height:var(--smart-switch-button-thumb-size);box-shadow:var(--smart-elevation-2)}.smart-switch-button[orientation=vertical] .smart-thumb:before{border:var(--smart-border-width) solid var(--smart-border)}.smart-switch-button[orientation=vertical] .smart-thumb:active:before{animation:button-wave-effect .1s ease-in;transform:scale(1) translate(-50%,-50%)}.smart-switch-button[orientation=vertical] .smart-thumb:focus .smart-thumb:before{transform:scale(1) translate(-50%,-50%)}.smart-switch-button[orientation=vertical] .smart-container:before{content:"";position:absolute;width:50%;height:90%;left:25%;top:5%;border-radius:10px}.smart-switch-button[orientation=vertical] .smart-inner-container{height:calc(200% - var(--smart-switch-button-thumb-size));width:100%;flex-direction:column;left:0;top:0}.smart-switch-button[orientation=vertical] .smart-false-content-container,.smart-switch-button[orientation=vertical] .smart-true-content-container{width:100%;padding:0 2px;height:calc((100% - var(--smart-switch-button-thumb-size))/ 2)}.smart-switch-button[orientation=vertical]:focus .smart-thumb:before{animation:button-wave-effect .1s ease-in}.smart-switch-button[orientation=vertical][checked] .smart-inner-container{left:0;top:calc(-1 * (100% - var(--smart-switch-button-thumb-size)))}.smart-switch-button[orientation=vertical][checked][inverted] .smart-inner-container{top:0}.smart-switch-button[orientation=vertical][checked=null] .smart-inner-container{top:calc(-50% + var(--smart-switch-button-thumb-size)/ 2)}.smart-switch-button[orientation=vertical][checked=null][inverted] .smart-inner-container{left:0;top:calc(-50% + var(--smart-switch-button-thumb-size)/ 2)}.smart-switch-button[orientation=vertical][inverted] .smart-inner-container{left:0;top:calc(-1 * (100% - var(--smart-switch-button-thumb-size)))}@keyframes button-wave-effect{0%{transform:scale(.2) translate(-50%,-50%)}50%{transform:scale(.5) translate(-50%,-50%)}100%{transform:scale(1) translate(-50%,-50%)}}.smart-switch-button[right-to-left][checked]:not([orientation=vertical]) .smart-inner-container,.smart-switch-button[right-to-left][inverted]:not([orientation=vertical]) .smart-inner-container{left:0}.smart-switch-button[right-to-left]:not([orientation=vertical]) .smart-inner-container,.smart-switch-button[right-to-left][checked][inverted]:not([orientation=vertical]) .smart-inner-container{left:calc(-1 * (100% - var(--smart-switch-button-thumb-size)))}.smart-switch-button[right-to-left][checked=null]:not([orientation=vertical]) .smart-inner-container{left:calc(-50% + var(--smart-switch-button-thumb-size)/ 2)}
.smart-table thead th,.smart-table[virtualization] tr.last-row td{border-bottom:var(--smart-border-width) solid var(--smart-border)}smart-table table:not(.smart-table-container){display:none}smart-table tr.expanded .hierarchy-arrow{transform:rotate(180deg)}.smart-table{display:block;border-radius:var(--smart-border-top-left-radius) var(--smart-border-top-right-radius) var(--smart-border-bottom-right-radius) var(--smart-border-bottom-left-radius);width:var(--smart-table-default-width);height:var(--smart-table-default-height);font-family:var(--smart-font-family);font-size:var(--smart-font-size)}.smart-table>.smart-container{border:var(--smart-border-width) solid var(--smart-border);position:relative;overflow:auto;border-radius:inherit;max-height:inherit}.smart-table .smart-table{background-color:#fff}.smart-table table{table-layout:fixed;border-collapse:collapse;border-radius:inherit}.smart-table thead th{background-color:var(--smart-background);color:var(--smart-background-color);font-size:calc(var(--smart-font-size) - 2px);text-align:left;font-weight:500}.smart-table thead th .sort-by:before,.smart-table thead th[filter]::before{font-style:normal;font-size:var(--smart-arrow-size);color:inherit;text-decoration:inherit;font-variant:normal;font-family:var(--smart-font-family-icon);text-transform:none}.smart-table thead th[filter]{position:relative}.smart-table thead th[filter]::before{content:var(--smart-icon-filter);font-weight:400;display:flex;flex-wrap:wrap;margin-top:2px;align-items:center;justify-content:center;position:absolute;right:10px}.smart-table thead th .sort-by{display:none;position:relative;visibility:hidden;width:16px;height:16px;-webkit-user-select:none;user-select:none;opacity:0}.smart-table thead th .sort-by:before{content:var(--smart-icon-up);width:100%;height:100%;font-weight:400;display:flex;flex-wrap:wrap;align-items:center;justify-content:center;position:relative}.smart-table thead th .sort-by:after{display:flex;align-items:center;justify-content:center;position:absolute;top:0;left:100%;border-radius:50%;width:50%;height:50%;padding:3px;background-color:var(--smart-primary);color:var(--smart-primary-color);font-size:8px}.smart-table td,.smart-table th{padding-top:var(--smart-table-cell-padding);padding-right:var(--smart-table-cell-padding);padding-bottom:var(--smart-table-cell-padding);padding-left:var(--smart-table-cell-padding);vertical-align:middle;overflow:hidden;text-overflow:ellipsis}.smart-table thead th .sort-by.asc,.smart-table thead th .sort-by.desc{display:inline-block;visibility:visible;opacity:1}.smart-table thead th .sort-by.desc:before{transform:rotateX(180deg)}.smart-table thead th:not(.smart-table-select-all){opacity:.9}.smart-table thead th.freeze-far,.smart-table thead th.freeze-near{opacity:1}.smart-table thead tr{height:var(--smart-table-column-header-height)}.smart-table thead tr:first-child th{border-top:none}.smart-table tbody tr{height:var(--smart-table-row-height)}.smart-table tbody tr.last-visible{height:unset}.smart-table tbody tr.last-visible.sized{box-shadow:inset 0 var(--smart-border-width) 0 0 var(--smart-border)}.smart-table tbody+tbody{border-top:2px solid var(--smart-border)}.smart-table tfoot tr{height:var(--smart-table-row-height)}.smart-table tfoot td{--smart-surface:var(--smart-background);--smart-surface-color:var(--smart-background-color);font-size:calc(var(--smart-font-size) - 2px);background-color:var(--smart-surface);color:var(--smart-surface-color)}.smart-table tr[row-id] td{white-space:nowrap}.smart-table th{border-top-width:var(--smart-border-width);border-top-style:solid;border-top-color:var(--smart-border);white-space:nowrap}.smart-table th:hover .column-menu,.smart-table th[column-menu-button] .column-menu{overflow:hidden;text-overflow:ellipsis;position:absolute;right:3px;width:25px;height:100%}.smart-table th:hover .column-menu:after,.smart-table th[column-menu-button] .column-menu:after{content:var(--smart-icon-arrow-down);font-family:var(--smart-font-family-icon);width:100%;cursor:pointer;color:var(--smart-surface-color);font-size:16px;font-weight:700}.smart-table th>.wrapper{display:flex;align-items:center;overflow:hidden;position:relative}.smart-table th>.wrapper>.label{overflow:hidden;text-overflow:ellipsis}.smart-table th.smart-table-select-all{width:calc(var(--smart-check-box-default-size) * 3)}.smart-table td.indeterminate>div:after,.smart-table th.smart-table-select-all.indeterminate>div:after{content:"";position:absolute;width:calc(.5 * var(--smart-check-box-default-size));height:calc(.5 * var(--smart-check-box-default-size))}.smart-table th.smart-table-select-all.indeterminate>div{background-color:var(--smart-primary)}.smart-table th.smart-table-select-all.indeterminate>div:after{background-color:var(--smart-primary-color)}.smart-table th.column-header{text-align:center;border-bottom:none}.smart-table th.column-header:empty{border-top:none}.smart-table td{border-top-width:var(--smart-border-width);border-top-style:solid;border-top-color:var(--smart-border)}.smart-table td div{font-size:var(--smart-font-size);padding:0;margin:0;line-height:initial}.smart-table td span{line-height:initial}.smart-table td.no-edit{background-color:rgba(0,0,0,.02)}.smart-table td.indeterminate>div{background-color:var(--smart-primary)}.smart-table td.indeterminate>div:after{background-color:var(--smart-primary-color)}.smart-table td.editing{padding:0}.smart-table td.editing .smart-table-editor{width:100%;height:100%}.smart-table td.editing .smart-table-editor.standard{border:var(--smart-border-width) solid var(--smart-border);padding:var(--smart-table-cell-padding);font-family:inherit;font-size:inherit;box-shadow:none}.smart-table td.editing .smart-table-editor.standard:focus{border:var(--smart-border-width) solid var(--smart-border);outline:0}.smart-table td.group-header>div,.smart-table td.tree-cell>div{display:flex;flex-direction:row;align-items:center}.smart-table td.tree-cell>div div:nth-child(2){width:calc(100% - var(--smart-table-arrow-margin) - var(--smart-table-arrow-size));overflow:hidden;text-overflow:ellipsis;line-height:1.2}.smart-table td.editing.invalid{position:relative;overflow:visible}.smart-table td.editing.invalid:before{content:attr(validation-message);visibility:hidden;position:absolute;top:-100%;border-top-left-radius:var(--smart-border-top-left-radius);border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);padding:7px;background-color:var(--smart-error);color:var(--smart-secondary-color);font-size:calc(var(--smart-font-size) - 4px);opacity:0;transform:scale(0)}.smart-table smart-pager .smart-pager-far-buttons-container,.smart-table smart-pager .smart-pager-near-buttons-container{font-size:calc(var(--smart-font-size) * 2)}.smart-table td.editing.invalid:hover:before{visibility:visible;opacity:.7;transform:scale(1)}.smart-table td.editing.invalid .smart-table-editor{border-color:var(--smart-error)}.smart-table td.smart-table-select-row:hover,.smart-table th.smart-table-select-all:hover{z-index:99;overflow:visible}.smart-table td.smart-table-select-row>div,.smart-table th.smart-table-select-all>div{display:flex;align-items:center;justify-content:center;position:absolute;left:50%;transform:translate(-50%,-50%);border:var(--smart-border-width) solid var(--smart-border);width:var(--smart-check-box-default-size);height:var(--smart-check-box-default-size);padding:8px;color:var(--smart-primary-color);font-family:var(--smart-font-family-icon);cursor:pointer;border-radius:var(--smart-border-radius)}.smart-table .smart-table-toolbar-button:before,.smart-table smart-pager .smart-pager-button:before{padding:7px;color:var(--smart-secondary-color);font-size:calc(var(--smart-font-size) - 4px);opacity:0}.smart-table td.smart-table-select-row>div:before,.smart-table th.smart-table-select-all>div:before{content:"";position:absolute;border-radius:50%;width:100%;height:100%;background-color:var(--smart-secondary);opacity:.1;transform:scale(0);transform-origin:center}.smart-table td.smart-table-select-row>div:hover:before,.smart-table th.smart-table-select-all>div:hover:before{transform:scale(2.5)}.smart-table td.smart-table-select-row>div:hover:active:before,.smart-table th.smart-table-select-all>div:hover:active:before{background-color:var(--smart-primary);animation-name:active;animation-duration:.2s;animation-timing-function:ease-out;animation-iteration-count:1}.smart-table td.smart-table-select-row.selected>div,.smart-table th.smart-table-select-all.selected>div{border-color:var(--smart-primary);background-color:var(--smart-primary)}.smart-table td.smart-table-select-row.selected>div:after,.smart-table th.smart-table-select-all.selected>div:after{content:var(--smart-icon-check)}.smart-table td.smart-table-select-row.selected>div:before,.smart-table th.smart-table-select-all.selected>div:before{background-color:var(--smart-primary)}.smart-table .smart-table-select-all.freeze-near{background-color:var(--smart-background);color:var(--smart-background-color)}.smart-table smart-pager.smart-element{display:none;min-width:0;height:var(--smart-table-header-footer-height);background-color:var(--smart-background);border-left:none;border-right:none;border-bottom:none;position:sticky;left:0;bottom:0}.smart-table smart-pager>.smart-container{justify-content:flex-end}.smart-table smart-pager .smart-pager-near-buttons-container.near{order:2}.smart-table smart-pager .smart-pager-near-buttons-container.far{order:3}.smart-table smart-pager .smart-pager-size-selector-and-label-container,.smart-table[right-to-left] smart-pager .smart-pager-far-buttons-container{order:0}.smart-table smart-pager .smart-pager-label{font-size:calc(var(--smart-font-size) - 2px);opacity:.7}.smart-table smart-pager .smart-pager-summary-container.smart-pager-label{order:1;margin:0 32px 0 24px}.smart-table smart-pager .smart-pager-button:before{content:attr(tooltip);visibility:hidden;position:absolute;top:-125%;border-top-left-radius:var(--smart-border-top-left-radius);border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);background-color:var(--smart-secondary);transform:scale(0)}.smart-table smart-pager .smart-pager-button:hover:before{visibility:visible;opacity:.7;transform:scale(1)}.smart-table .smart-pager .smart-pager-button{overflow:visible}.smart-table .smart-table-container:focus{outline:0}.smart-table .smart-table-container:focus td[focus]:after{content:"";box-sizing:border-box;position:absolute;width:calc(100% - 1px);height:100%;top:0;left:1px;pointer-events:none;border:1px solid var(--smart-ui-state-color-focus)}.smart-table .smart-table-container:focus td[focus]:not(.freeze-near):not(.freeze-far){position:relative}.smart-table .smart-table-header{height:var(--smart-table-header-footer-height);display:none;position:sticky;left:0;top:0;background-color:var(--smart-background);z-index:2}.smart-table .smart-table-header .smart-input,.smart-table .smart-table-header .smart-table-filter-template-container{display:none;width:100%;height:100%}.smart-table .smart-table-header .smart-table-toolbar-button.conditional-formatting{display:none;border:var(--smart-border-width) solid var(--smart-border);border-top:none;border-right:none;width:var(--smart-table-header-footer-height);height:100%}.smart-table .smart-table-header .smart-table-toolbar-button.conditional-formatting:before{left:unset;right:0}.smart-table .smart-table-toolbar-button{--smart-border-top-left-radius:0;--smart-border-top-right-radius:0;--smart-border-bottom-left-radius:0;--smart-border-bottom-right-radius:0;--smart-button-padding:0;position:relative;border-top:none;border-bottom:none;overflow:visible;min-height:0}.smart-table .smart-table-toolbar-button:before{content:attr(tooltip);visibility:hidden;position:absolute;border-top-left-radius:var(--smart-border-top-left-radius);border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);background-color:var(--smart-secondary);transform:scale(0);box-sizing:border-box;top:125%;left:calc(-1 * var(--smart-table-row-height)/ 2);width:calc(2 * var(--smart-table-row-height));white-space:normal;word-wrap:break-word;text-transform:none;z-index:1000}.smart-table .smart-table-toolbar-button:after{content:var(--smart-icon-table);display:flex;align-items:center;justify-content:center;position:absolute;width:100%;height:100%;font-size:20px;font-family:smart-icons;pointer-events:none;opacity:.4}.smart-table .smart-table-toolbar-button:hover:before{visibility:visible;opacity:.7;transform:scale(1)}.smart-table[hide-selection-column] td.smart-table-select-row,.smart-table[hide-selection-column] td.smart-table-select-row .selection-checkbox,.smart-table[hide-selection-column] th.smart-table-select-all>div,.smart-table[virtualization] tr[unused]{visibility:hidden}.smart-table .smart-table-toolbar-button>button{overflow:hidden}.smart-table .smart-table-toolbar-button.conditional-formatting>button:after{display:flex;align-items:center;justify-content:center;position:absolute;width:100%;height:100%;font-family:smart-icons;pointer-events:none;content:var(--smart-icon-less-than-equal);font-size:16px;top:8px;left:8px;opacity:1}.smart-table .smart-table-toolbar-button.fields{border-right:none}.smart-table .smart-table-toolbar-button.fields:before{left:unset;right:0;width:calc(2 * var(--smart-table-row-height))}.smart-table .smart-table-toolbar-button.fields>button:after{display:flex;align-items:center;justify-content:center;position:absolute;width:100%;height:100%;font-family:smart-icons;pointer-events:none;font-size:16px;top:8px;left:8px;opacity:1;content:var(--smart-icon-settings)}.smart-table .smart-table-filter-row smart-button{--smart-button-padding:0}.smart-table .smart-table-filter-row smart-button button:after{content:var(--smart-icon-filter);font-family:var(--smart-font-family-icon);width:100%;height:100%;text-decoration:line-through}.smart-table .smart-table-filter-row>td>div{--smart-filter-row-content-height:calc(var(--smart-table-row-height) - 2 * var(--smart-table-cell-padding) - var(--smart-border-width));display:grid;grid-template-columns:1fr var(--smart-filter-row-content-height) var(--smart-filter-row-content-height);grid-template-rows:100%;column-gap:2px;height:var(--smart-filter-row-content-height)}.smart-table .smart-table-filter-row>td.no-filter{opacity:.6;pointer-events:none}.smart-table .smart-table-filter-row .filter-value{min-width:0;border:var(--smart-border-width) solid var(--smart-border);border-top-right-radius:var(--smart-border-top-right-radius);border-top-left-radius:var(--smart-border-top-left-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);padding:var(--smart-editor-label-padding);background-color:var(--smart-background);color:var(--smart-background-color);font-family:inherit;font-size:inherit}.smart-table .smart-table-filter-row .filter-value:hover{border-color:var(--smart-ui-state-border-hover)}.smart-table .smart-table-filter-row .filter-value:focus{outline:0;border-color:var(--smart-outline)}.smart-table .smart-table-filter-row .filter-value[type=number]{-webkit-appearance:none;-moz-appearance:textfield}.smart-table .smart-table-filter-row .filter-value::-webkit-inner-spin-button,.smart-table .smart-table-filter-row .filter-value::-webkit-outer-spin-button{-webkit-appearance:none;-moz-appearance:textfield}.smart-table .smart-table-filter-row .smart-input{--smart-editor-addon-width:100%;--smart-editor-label-padding:0;width:unset;height:100%}.smart-table .smart-table-filter-row .smart-input .smart-drop-down-button{border-top-left-radius:var(--smart-border-top-left-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius)}.smart-table .smart-table-filter-row .smart-input .smart-drop-down-button .arrow:after{content:var(--smart-icon-filter);transform:none!important}.smart-table .smart-table-row-detail{height:var(--smart-table-row-detail-height)}.smart-table .smart-table-row-detail>td{border:none;padding:0}.smart-table .smart-table-row-detail .smart-table-detail-container{height:calc(var(--smart-table-row-detail-height) - 2 * var(--smart-table-cell-padding));padding:0 var(--smart-table-cell-padding);overflow:hidden}.smart-table .smart-table-row-detail.collapsed{height:0}.smart-table .smart-table-row-detail.collapsed .smart-table-detail-container{height:0;padding-top:0;padding-bottom:0}.smart-table .smart-table-cell-template{overflow:hidden;text-overflow:ellipsis;display:contents}.smart-table .disable-select td.smart-table-select-row>div{pointer-events:none;opacity:.2}.smart-table .dragged,.smart-table .drop-column{position:relative}.smart-table .drop-column:after{content:"";position:absolute;width:2px;height:100%;background-color:var(--smart-primary);top:0}.smart-table .freeze-far,.smart-table .freeze-near{position:sticky;opacity:1;background-color:var(--smart-background);color:var(--smart-background-color);z-index:1}.smart-table .drop-column.left:after{left:0}.smart-table .drop-column.right:after{right:0}.smart-table .freeze-near{left:0;box-shadow:1px 0 0 0 var(--smart-border)}.smart-table .freeze-far{right:0;box-shadow:-1px 0 0 0 var(--smart-border)}.smart-table .smart-table-virtualization-container{width:100%;height:100%;border:none;padding:0}.smart-table[conditional-formatting-button] .smart-table-container,.smart-table[conditional-formatting-button] .smart-table-virtualization-container,.smart-table[filtering]:not([filter-row]):not([column-menu]) .smart-table-container,.smart-table[filtering]:not([filter-row]):not([column-menu]) .smart-table-virtualization-container,.smart-table[paging]:not(.smart-pivot-table) .smart-table-container,.smart-table[paging]:not(.smart-pivot-table) .smart-table-virtualization-container{height:calc(100% - var(--smart-table-header-footer-height))}.smart-table .smart-table-virtualization-container .smart-scroll-viewer-content-container{padding:0}.smart-table .hierarchy-arrow{margin-right:var(--smart-table-arrow-margin);width:var(--smart-table-arrow-size);cursor:pointer}.smart-table .group-label-name{display:var(--smart-table-group-name-display)}.smart-table .group-label-value{font-weight:700}.smart-table .group-label-count{display:var(--smart-table-group-count-display)}.smart-table .outline-level-1{padding-left:var(--smart-table-indent)}.smart-table .outline-level-1.tree-leaf{padding-left:calc(var(--smart-table-indent) + var(--smart-table-arrow-size) + var(--smart-table-arrow-margin))}.smart-table .outline-level-2{padding-left:calc(2 * var(--smart-table-indent))}.smart-table .outline-level-2.tree-leaf{padding-left:calc(2 * var(--smart-table-indent) + var(--smart-table-arrow-size) + var(--smart-table-arrow-margin))}.smart-table .outline-level-3{padding-left:calc(3 * var(--smart-table-indent))}.smart-table .outline-level-3.tree-leaf{padding-left:calc(3 * var(--smart-table-indent) + var(--smart-table-arrow-size) + var(--smart-table-arrow-margin))}.smart-table .outline-level-4{padding-left:calc(4 * var(--smart-table-indent))}.smart-table .outline-level-4.tree-leaf{padding-left:calc(4 * var(--smart-table-indent) + var(--smart-table-arrow-size) + var(--smart-table-arrow-margin))}.smart-table .outline-level-5{padding-left:calc(5 * var(--smart-table-indent))}.smart-table .outline-level-5.tree-leaf{padding-left:calc(5 * var(--smart-table-indent) + var(--smart-table-arrow-size) + var(--smart-table-arrow-margin))}.smart-table .outline-level-6{padding-left:calc(6 * var(--smart-table-indent))}.smart-table .outline-level-6.tree-leaf{padding-left:calc(6 * var(--smart-table-indent) + var(--smart-table-arrow-size) + var(--smart-table-arrow-margin))}.smart-table .outline-level-7{padding-left:calc(7 * var(--smart-table-indent))}.smart-table .outline-level-7.tree-leaf{padding-left:calc(7 * var(--smart-table-indent) + var(--smart-table-arrow-size) + var(--smart-table-arrow-margin))}.smart-table .outline-level-8{padding-left:calc(8 * var(--smart-table-indent))}.smart-table .outline-level-8.tree-leaf{padding-left:calc(8 * var(--smart-table-indent) + var(--smart-table-arrow-size) + var(--smart-table-arrow-margin))}.smart-table .outline-level-9{padding-left:calc(9 * var(--smart-table-indent))}.smart-table .outline-level-9.tree-leaf{padding-left:calc(9 * var(--smart-table-indent) + var(--smart-table-arrow-size) + var(--smart-table-arrow-margin))}.smart-table .outline-level-10{padding-left:calc(10 * var(--smart-table-indent))}.smart-table .outline-level-10.tree-leaf{padding-left:calc(10 * var(--smart-table-indent) + var(--smart-table-arrow-size) + var(--smart-table-arrow-margin))}.smart-table.thead-dark table th{color:#fff;background-color:#212529;border-color:#32383e}.smart-table.thead-dark thead th .sort-by::before{color:#fff}.smart-table.thead-primary table th{color:var(--smart-primary-color);background-color:var(--smart-primary);border-color:var(--smart-primary)}.smart-table.thead-primary th.smart-table-select-all.selected>div,.smart-table.thead-primary th.smart-table-select-all>div{border-color:var(--smart-primary-color)}.smart-table.thead-primary th.smart-table-select-all.indeterminate>div{background-color:var(--smart-primary-color)}.smart-table.thead-secondary table th{color:var(--smart-secondary-color);background-color:var(--smart-secondary);border-color:var(--smart-secondary)}.smart-table.thead-surface table th{color:var(--smart-surface-color);background-color:var(--smart-surface);border-color:var(--smart-surface)}.smart-table.thead-light table th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.smart-table.table-dark table{color:#fff;background-color:#212529}.smart-table.table-dark thead th .sort-by::before{color:#fff}.smart-table.table-dark.table-bordered table{border:0}.smart-table.table-dark.table-striped table tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,.05)}.smart-table.table-dark.table-hover table tbody tr:hover{background-color:rgba(255,255,255,.075)}.smart-table.table-bordered table{border:var(--smart-border-width) solid var(--smart-border)}.smart-table.table-bordered table thead td,.smart-table.table-bordered table thead th{border-bottom-width:2px}.smart-table.table-bordered table td,.smart-table.table-bordered table th{border:var(--smart-border-width) solid var(--smart-border)}.smart-table.table-striped table tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.smart-table.table-hover table tbody tr:hover{background-color:rgba(0,0,0,.075)}.smart-table.table-hover table .smart-table-primary:hover,.smart-table.table-hover table .smart-table-primary:hover>td,.smart-table.table-hover table .smart-table-primary:hover>th{background-color:#9fcdff}.smart-table.table-hover table .smart-table-secondary:hover,.smart-table.table-hover table .smart-table-secondary:hover>td,.smart-table.table-hover table .smart-table-secondary:hover>th{background-color:#c8cbcf}.smart-table.table-hover table .smart-table-success:hover,.smart-table.table-hover table .smart-table-success:hover>td,.smart-table.table-hover table .smart-table-success:hover>th{background-color:#b1dfbb}.smart-table.table-hover table .smart-table-info:hover,.smart-table.table-hover table .smart-table-info:hover>td,.smart-table.table-hover table .smart-table-info:hover>th{background-color:#abdde5}.smart-table.table-hover table .smart-table-warning:hover,.smart-table.table-hover table .smart-table-warning:hover>td,.smart-table.table-hover table .smart-table-warning:hover>th{background-color:#ffe8a1}.smart-table.table-hover table .smart-table-danger:hover,.smart-table.table-hover table .smart-table-danger:hover>td,.smart-table.table-hover table .smart-table-danger:hover>th{background-color:#f1b0b7}.smart-table.table-hover table .smart-table.table-light table:hover,.smart-table.table-hover table .smart-table.table-light table:hover>td,.smart-table.table-hover table .smart-table.table-light table:hover>th{background-color:#ececf6}.smart-table.table-hover table .smart-table.table-dark table:hover,.smart-table.table-hover table .smart-table.table-dark table:hover>td,.smart-table.table-hover table .smart-table.table-dark table:hover>th{background-color:#b9bbbe}.smart-table.table-hover table .smart-table-active:hover,.smart-table.table-hover table .smart-table-active:hover>td,.smart-table.table-hover table .smart-table-active:hover>th{background-color:rgba(0,0,0,.075)}.smart-table.no-border>.smart-container{border:none}.smart-table.table-elevation{border:none;border-radius:unset;box-shadow:var(--smart-elevation-8)}.smart-table:not([animation=none]) thead th .sort-by{transition:visibility .5s ease-out,opacity .5s ease-out}.smart-table:not([animation=none]) thead th .sort-by:before{transition:transform .5s ease-out}.smart-table:not([animation=none]) tr[row-id] td:not(.editing){transition:padding-top .2s ease-in-out,padding-bottom .2s ease-in-out,transform .2s ease-in-out,border-top-color .2s ease-in-out}.smart-table:not([animation=none]) td.editing.invalid:before{transition:visibility .2s ease-in-out,opacity .2s ease-out,transform .1s ease-out}.smart-table:not([animation=none]) .smart-table-toolbar-button:before,.smart-table:not([animation=none]) smart-pager .smart-pager-button:before{transition:visibility .2s ease-out,opacity .2s ease-out,transform .1s ease-out}.smart-table:not([animation=none]) .hierarchy-arrow{transition:transform .2s ease-in-out}.smart-table:not([animation=none]):not([ignore-detail-animation]) .smart-table-row-detail{transition:height .2s ease-in-out}.smart-table:not([animation=none]):not([ignore-detail-animation]) .smart-table-row-detail .smart-table-detail-container{transition:height .2s ease-in-out,padding-top .2s ease-in-out,padding-bottom .2s ease-in-out}.smart-table[virtualization]{--smart-table-default-height:var(--smart-grid-default-height)}.smart-table[filtering] .smart-table-header{display:grid;grid-template-columns:1fr}.smart-table[filtering] .smart-table-header .smart-input,.smart-table[filtering] .smart-table-header .smart-table-filter-template-container{display:block}.smart-table[filtering][filter-row][conditional-formatting-button] .smart-table-header .smart-input,.smart-table[filtering][filter-row][conditional-formatting-button] .smart-table-header .smart-table-filter-template-container{display:none}.smart-table[filtering][conditional-formatting-button] .smart-table-header{grid-template-columns:1fr auto}.smart-table[conditional-formatting-button] .smart-table-header{display:grid}.smart-table[conditional-formatting-button] .smart-table-header .smart-table-toolbar-button.conditional-formatting{display:flex}.smart-table[conditional-formatting-button]:not([filtering]) .smart-table-header{grid-template-columns:1fr auto;grid-template-areas:". button"}.smart-table[conditional-formatting-button]:not([filtering]) .smart-table-header .smart-table-toolbar-button.conditional-formatting{grid-area:button}.smart-table[conditional-formatting-button][filtering][filter-row] .smart-table-header{grid-template-columns:1fr auto;grid-template-areas:". button"}.smart-table[conditional-formatting-button][filtering][filter-row] .smart-table-header .smart-table-toolbar-button.conditional-formatting{grid-area:button}.smart-table[paging]:not(.smart-pivot-table) smart-pager{display:block;z-index:1}.smart-table[paging]:not(.smart-pivot-table)[conditional-formatting-button] .smart-table-container,.smart-table[paging]:not(.smart-pivot-table)[conditional-formatting-button] .smart-table-virtualization-container,.smart-table[paging]:not(.smart-pivot-table)[filtering]:not([filter-row]) .smart-table-container,.smart-table[paging]:not(.smart-pivot-table)[filtering]:not([filter-row]) .smart-table-virtualization-container{height:calc(100% - 2 * var(--smart-table-header-footer-height))}.smart-table[paging].smart-pivot-table smart-pager{display:block;z-index:999}.smart-table[paging].smart-pivot-table [designer] smart-pager{border-right:1px solid var(--smart-border)}.smart-table[column-reorder] thead th{touch-action:none}.smart-table[column-reorder] th[data-field]{cursor:move}.smart-table:not([column-resize]) .dragged:after{content:"";position:absolute;top:0;left:0;width:100%;height:100%;background-image:linear-gradient(45deg,rgba(0,0,0,.1) 25%,transparent 25%,transparent 50%,rgba(0,0,0,.1) 50%,rgba(0,0,0,.1) 75%,transparent 75%,transparent);background-size:3em 3em;opacity:.8}.smart-table[column-resize] thead th{touch-action:none}.smart-table[column-resize] th[data-field]:after,.smart-table[column-resize] th[data-field]:before{content:"";position:absolute;top:0;width:5px;height:100%;cursor:col-resize}.smart-table[column-resize]:not([right-to-left]) th[locked]+th[data-field]:before,.smart-table[column-resize]:not([right-to-left]) th[locked]:after,.smart-table[column-resize]:not([selection]) th[data-field]:first-child:before,.smart-table[column-resize][resize-max-reached] th[data-field]:after,.smart-table[column-resize][resize-max-reached] th[data-field]:before,.smart-table[column-resize][selection] th[data-field]:nth-child(2):before{content:none}.smart-table[column-resize] th[data-field]:before{left:0}.smart-table[column-resize] th[data-field]:after{right:0;width:4px}.smart-table[column-resize]:not([freeze-header]) th[data-field]:not(.freeze-near):not(.freeze-far){position:relative}@media (hover:none){.smart-table[column-resize]:not(.resizing) th[data-field]:before{border-left:1px solid rgba(var(--smart-primary-rgb),.3)}.smart-table[column-resize]:not(.resizing) th[data-field]:after{border-right:1px solid rgba(var(--smart-primary-rgb),.3)}}@media (hover:hover){.smart-table[column-resize]:not(.resizing) th[data-field]:hover:before{border-left:1px solid rgba(var(--smart-primary-rgb),.3)}.smart-table[column-resize]:not(.resizing) th[data-field]:hover:after{border-right:1px solid rgba(var(--smart-primary-rgb),.3)}}.smart-table[sort-mode=many] thead th .sort-by:after{content:attr(order)}.smart-table[loading] tbody td{opacity:0}.smart-table[loading] smart-pager{pointer-events:none}.smart-table[freeze-header]:not([virtualization]) thead th{position:sticky;opacity:1;border-bottom:none;top:0;box-shadow:0 1px 0 0 var(--smart-border);z-index:100}.smart-table[freeze-header]:not([virtualization]) thead th.freeze-near{box-shadow:1px 1px 0 0 var(--smart-border);z-index:200}.smart-table[freeze-header]:not([virtualization]) thead th.freeze-far{box-shadow:-1px 1px 0 0 var(--smart-border);z-index:200}.smart-table[freeze-header]:not([virtualization]) thead tr:nth-child(2)>th{top:var(--smart-table-column-header-height)}.smart-table[freeze-header]:not([virtualization]) thead tr:nth-child(3)>th{top:calc(2 * var(--smart-table-column-header-height))}.smart-table[freeze-header]:not([virtualization]) thead tr:nth-child(4)>th{top:calc(3 * var(--smart-table-column-header-height))}.smart-table[freeze-header]:not([virtualization]) thead tr:nth-child(5)>th{top:calc(4 * var(--smart-table-column-header-height))}.smart-table[freeze-header]:not([virtualization])[conditional-formatting-button] thead th,.smart-table[freeze-header]:not([virtualization])[filtering]:not([filter-row]):not([column-menu]) thead th{top:var(--smart-table-header-footer-height)}.smart-table[freeze-header]:not([virtualization])[conditional-formatting-button] thead tr:nth-child(2)>th,.smart-table[freeze-header]:not([virtualization])[filtering]:not([filter-row]):not([column-menu]) thead tr:nth-child(2)>th{top:calc(var(--smart-table-header-footer-height) + var(--smart-table-column-header-height))}.smart-table[freeze-header]:not([virtualization])[conditional-formatting-button] thead tr:nth-child(3)>th,.smart-table[freeze-header]:not([virtualization])[filtering]:not([filter-row]):not([column-menu]) thead tr:nth-child(3)>th{top:calc(var(--smart-table-header-footer-height) + 2 * var(--smart-table-column-header-height))}.smart-table[freeze-header]:not([virtualization])[conditional-formatting-button] thead tr:nth-child(4)>th,.smart-table[freeze-header]:not([virtualization])[filtering]:not([filter-row]):not([column-menu]) thead tr:nth-child(4)>th{top:calc(var(--smart-table-header-footer-height) + 3 * var(--smart-table-column-header-height))}.smart-table[freeze-header]:not([virtualization])[conditional-formatting-button] thead tr:nth-child(5)>th,.smart-table[freeze-header]:not([virtualization])[filtering]:not([filter-row]):not([column-menu]) thead tr:nth-child(5)>th{top:calc(var(--smart-table-header-footer-height) + 4 * var(--smart-table-column-header-height))}.smart-table[freeze-header][virtualization] thead{box-shadow:0 1px 0 0 var(--smart-border);top:0;position:relative;z-index:200}.smart-table[freeze-header][virtualization] thead th{opacity:1;border-bottom:none;top:0;box-shadow:0 1px 0 0 var(--smart-border);z-index:100;position:relative}.smart-table[freeze-header][virtualization] thead th.sticky{position:sticky}.smart-table[freeze-header][virtualization] thead th.freeze-near{box-shadow:1px 1px 0 0 var(--smart-border);z-index:200}.smart-table[freeze-header][virtualization] thead th.freeze-far{box-shadow:-1px 1px 0 0 var(--smart-border);z-index:200}.smart-table[freeze-header][virtualization] thead tr:nth-child(2)>th{top:var(--smart-table-column-header-height)}.smart-table[freeze-header][virtualization] thead tr:nth-child(3)>th{top:calc(2 * var(--smart-table-column-header-height))}.smart-table[freeze-header][virtualization] thead tr:nth-child(4)>th{top:calc(3 * var(--smart-table-column-header-height))}.smart-table[freeze-header][virtualization] thead tr:nth-child(5)>th{top:calc(4 * var(--smart-table-column-header-height))}.smart-table[freeze-header][virtualization][conditional-formatting-button] thead th,.smart-table[freeze-header][virtualization][filtering]:not([filter-row]):not([column-menu]) thead th{top:var(--smart-table-header-footer-height)}.smart-table[freeze-header][virtualization][conditional-formatting-button] thead tr:nth-child(2)>th,.smart-table[freeze-header][virtualization][filtering]:not([filter-row]):not([column-menu]) thead tr:nth-child(2)>th{top:calc(var(--smart-table-header-footer-height) + var(--smart-table-column-header-height))}.smart-table[freeze-header][virtualization][conditional-formatting-button] thead tr:nth-child(3)>th,.smart-table[freeze-header][virtualization][filtering]:not([filter-row]):not([column-menu]) thead tr:nth-child(3)>th{top:calc(var(--smart-table-header-footer-height) + 2 * var(--smart-table-column-header-height))}.smart-table[freeze-header][virtualization][conditional-formatting-button] thead tr:nth-child(4)>th,.smart-table[freeze-header][virtualization][filtering]:not([filter-row]):not([column-menu]) thead tr:nth-child(4)>th{top:calc(var(--smart-table-header-footer-height) + 3 * var(--smart-table-column-header-height))}.smart-table[freeze-header][virtualization][conditional-formatting-button] thead tr:nth-child(5)>th,.smart-table[freeze-header][virtualization][filtering]:not([filter-row]):not([column-menu]) thead tr:nth-child(5)>th{top:calc(var(--smart-table-header-footer-height) + 4 * var(--smart-table-column-header-height))}.smart-table[freeze-footer] tfoot td{position:sticky;opacity:1;border-top:none;bottom:0;box-shadow:0 -1px 0 0 var(--smart-border);z-index:100}.smart-table[freeze-footer] tfoot td.freeze-near{box-shadow:1px -1px 0 0 var(--smart-border);z-index:200}.smart-table[freeze-footer] tfoot td.freeze-far{box-shadow:-1px -1px 0 0 var(--smart-border);z-index:200}.smart-table[freeze-footer] tfoot tr:nth-last-child(2) td{bottom:var(--smart-table-row-height)}.smart-table[freeze-footer] tfoot tr:nth-last-child(3) td{bottom:calc(2 * var(--smart-table-row-height))}.smart-table[freeze-footer] .smart-table-container:focus td[focus]:after{height:calc(100% - 1px)}.smart-table[freeze-footer][paging]:not(.smart-pivot-table) tfoot td{bottom:var(--smart-table-header-footer-height)}.smart-table[freeze-footer][paging]:not(.smart-pivot-table) tfoot tr:nth-last-child(2) td{bottom:calc(var(--smart-table-row-height) + var(--smart-table-header-footer-height))}.smart-table[freeze-footer][paging]:not(.smart-pivot-table) tfoot tr:nth-last-child(3) td{bottom:calc(2 * var(--smart-table-row-height) + var(--smart-table-header-footer-height))}.smart-table[row-detail-template] tr[row-id]{cursor:pointer}.smart-table[hierarchy] tr[row-id] td{transform:scaleY(1)}.smart-table[hierarchy] tr[row-id].no-height td{line-height:0}.smart-table[hierarchy] tr.collapsed[row-id]{height:0}.smart-table[hierarchy] tr.collapsed[row-id] td{border-top-width:0;border-top-color:transparent;padding-top:0;padding-bottom:0;line-height:0;transform:scaleY(0)}.smart-table[column-groups][selection] th.empty,.smart-table[column-groups][selection] th.smart-table-select-all,.smart-table[virtualization] tr[unused] td{border-top:none}.smart-pivot-table th.expanded .total-arrow,.smart-pivot-table:not([group-layout=classic]) tr.expanded .hierarchy-arrow{transform:rotate(180deg)}.smart-table[hierarchy]:not([animation=none]) tr[row-id]{transition:height .2s ease-in-out}.smart-table[modal]{position:relative;pointer-events:none;-webkit-user-select:none;user-select:none}.smart-table[modal]:after{content:"";position:absolute;width:100%;height:100%;top:0;left:0;background-color:#000;opacity:.3;pointer-events:none;cursor:default;-webkit-user-select:none;user-select:none;z-index:100}.smart-table[toolbar][designer] .smart-table-toolbar-button.conditional-formatting{border-right:none}.smart-table[toolbar][designer] .smart-table-toolbar-button.conditional-formatting:before{left:unset;right:0;width:calc(2 * var(--smart-table-row-height))}.smart-table[auto-size] table{table-layout:auto}.smart-table[column-groups]:not([right-to-left]) th:not(:last-child){border-right:var(--smart-border-width) solid var(--smart-border)}.smart-table[virtualization] tr.smart-table-filter-row td{position:sticky;top:var(--smart-table-column-header-height);background-color:var(--smart-background);box-shadow:0 1px 0 0 var(--smart-border)}.smart-table[virtualization][conditional-formatting-button] .smart-table-container,.smart-table[virtualization][filtering]:not([filter-row]) .smart-table-container,.smart-table[virtualization][paging]:not(.smart-pivot-table) .smart-table-container,.smart-table[virtualization][paging]:not(.smart-pivot-table)[conditional-formatting-button] .smart-table-container,.smart-table[virtualization][paging]:not(.smart-pivot-table)[filtering]:not([filter-row]):not([column-menu]) .smart-table-container{height:100%}.smart-table[virtualization][freeze-header][conditional-formatting-button] thead th,.smart-table[virtualization][freeze-header][filtering]:not([filter-row]):not([column-menu]) thead th{top:0}@media (max-width:575.98px){.smart-table.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.smart-table.table-responsive-sm>.smart-table.table-bordered table{border:0}}@media (max-width:767.98px){.smart-table.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.smart-table.table-responsive-md>.smart-table.table-bordered table{border:0}}@media (max-width:991.98px){.smart-table.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.smart-table.table-responsive-lg>.smart-table.table-bordered table{border:0}}@media (max-width:1199.98px){.smart-table.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.smart-table.table-responsive-xl>.smart-table.table-bordered table{border:0}}.smart-table.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.smart-table.table-responsive>.smart-table.table-bordered table{border:0}@media only screen and (max-width:1280px){.smart-table .priority-5{display:none}}@media only screen and (max-width:1024px){.smart-table .priority-4{display:none}}@media only screen and (max-width:800px){.smart-table .priority-3{display:none}}@media only screen and (max-width:640px){.smart-table .priority-2{display:none}}.smart-table[hide-selection-column] th.smart-table-select-all{width:0;padding-left:0;padding-right:0}.smart-table[hide-selection-column] tr[aria-selected=true] td{background:var(--smart-ui-state-selected);color:var(--smart-ui-state-color-selected)}.smart-pivot-table:not([animation=none]) .total-arrow{transition:transform .2s ease-in-out}@-moz-document url-prefix(){.smart-table thead th:not(.smart-table-select-all){opacity:1}.smart-table .freeze-far,.smart-table .freeze-near{box-shadow:0 0 0 1px var(--smart-border)}.smart-table .smart-table-container:focus td[focus]:after{height:calc(100% - 1px);top:1px}.smart-table[freeze-header] thead th.empty,.smart-table[freeze-header] thead th:empty{box-shadow:-1px 0 0 0 var(--smart-border)}.smart-table[freeze-footer] .smart-table-container:focus td[focus]::after{height:calc(100% - 2px)}.smart-table[column-groups][freeze-header] thead th{box-shadow:0 0 0 1px var(--smart-border)}.smart-pivot-table thead th:last-child,.smart-pivot-table thead th:not(:last-child){border:none;box-shadow:0 0 0 1px var(--smart-border)}.smart-pivot-table tbody tr[row-id]:first-child td{border-top:none}.smart-pivot-table[freeze-header] thead th{box-shadow:0 0 0 1px var(--smart-border)}.smart-pivot-table[freeze-header] .smart-pivot-table-grouping-header:empty{box-shadow:-1px 0 0 0 var(--smart-border)}}.smart-pivot-panel>.smart-container[modal]{position:relative;pointer-events:none;-webkit-user-select:none;user-select:none}.smart-pivot-panel>.smart-container[modal]:after{content:"";position:absolute;width:100%;height:100%;top:0;left:0;background-color:#000;opacity:.3;pointer-events:none;cursor:default;-webkit-user-select:none;user-select:none;z-index:100}.smart-table-primary,.smart-table-primary>td,.smart-table-primary>th{background-color:#b8daff}.smart-table-secondary,.smart-table-secondary>td,.smart-table-secondary>th{background-color:#d6d8db}.smart-table-success,.smart-table-success>td,.smart-table-success>th{background-color:#c3e6cb}.smart-table-info,.smart-table-info>td,.smart-table-info>th{background-color:#bee5eb}.smart-table-warning,.smart-table-warning>td,.smart-table-warning>th{background-color:#ffeeba}.smart-table-danger,.smart-table-danger>td,.smart-table-danger>th{background-color:#f5c6cb}.smart-table.table-light table,.smart-table.table-light table>td,.smart-table.table-light table>th{background-color:#fdfdfe}.smart-table.table-dark table td,.smart-table.table-dark table th,.smart-table.table-dark table thead th{border-color:#32383e}.smart-table.table-dark table>td,.smart-table.table-dark table>th{background-color:#212529}.smart-table-active,.smart-table-active>td,.smart-table-active>th{background-color:rgba(0,0,0,.075)}.smart-table-container{width:100%;height:100%}.smart-table-sm td,.smart-table-sm th{padding:.3rem}.smart-table-feedback,.smart-table-resize-feedback{padding:5px;font-family:var(--smart-font-family);position:absolute}.smart-table-feedback{display:flex;align-items:center;box-shadow:var(--smart-elevation-8);border:var(--smart-border-width) solid var(--smart-border);border-radius:var(--smart-border-radius);white-space:nowrap;font-size:var(--smart-font-size);background-color:var(--smart-background);color:var(--smart-background-color);z-index:10000;opacity:.85}.smart-table-resize-feedback{box-sizing:border-box;border-left:1px dashed var(--smart-primary);font-size:12px;font-weight:700;z-index:100}.smart-table-resize-feedback.static{border-left-style:solid}.smart-table-resize-feedback.max,.smart-table-resize-feedback.min{border-left-color:var(--smart-error)}.smart-table-window.conditional-formatting{--smart-window-default-width:650px}.smart-table-window.conditional-formatting .smart-content-container>.smart-content,.smart-table-window.conditional-formatting>.smart-container{overflow:visible}.smart-table-window.conditional-formatting smart-formatting-panel{border:none;width:100%;height:100%}.smart-table-window.smart-window.conditional-formatting{overflow:visible}.smart-table-window.smart-window .smart-content-container>.smart-footer{display:flex;justify-content:space-evenly;align-items:center}.smart-table-window.smart-window .smart-content-container>.smart-footer smart-button{--smart-button-padding:0;width:40%;height:100%}.smart-table-column-menu{border:1px solid var(--smart-border);box-shadow:var(--smart-elevation-8);z-index:9999;width:200px;height:auto;padding:10px;border-radius:var(--smart-border-radius);position:absolute;background:var(--smart-background);top:0;left:0}.smart-table-column-menu smart-button{--smart-button-padding:0}.smart-table-column-menu smart-button button:after{content:var(--smart-icon-filter);font-family:var(--smart-font-family-icon);width:100%;height:100%;text-decoration:line-through}.smart-table-column-menu.wrapper>div{--smart-filter-row-content-height:calc(var(--smart-table-row-height) - 2 * var(--smart-table-cell-padding) - var(--smart-border-width));display:grid;grid-template-columns:1fr var(--smart-filter-row-content-height) var(--smart-filter-row-content-height);grid-template-rows:100%;column-gap:2px;height:var(--smart-filter-row-content-height);position:relative}.smart-table-column-menu.wrapper .smart-table-menu-item{display:flex;cursor:pointer;font-family:var(--smart-font-family);font-size:var(--smart-font-size);height:30px;align-items:center;padding:5px;box-sizing:border-box;margin-bottom:5px}.smart-table-column-menu.wrapper .smart-table-menu-item.smart-disabled{-webkit-user-select:none;user-select:none;pointer-events:none;opacity:.5}.smart-table-column-menu.wrapper .smart-table-menu-item .label{padding:5px}.smart-table-column-menu.wrapper .smart-table-menu-item:not(.filter-item):hover{background:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover)}.smart-table-column-menu.wrapper .smart-table-menu-item .menu-icon::after,.smart-table-column-menu.wrapper .smart-table-menu-item.columns-item::after{font-family:var(--smart-font-family-icon);width:100%;color:var(--smart-surface-color);height:100%}.smart-table-column-menu.wrapper .smart-table-menu-item .sort-asc::after{content:var(--smart-icon-sort-name-up)}.smart-table-column-menu.wrapper .smart-table-menu-item .sort-desc::after{content:var(--smart-icon-sort-name-down)}.smart-table-column-menu.wrapper .smart-table-menu-item .sort-remove::after{content:var(--smart-icon-sort-name-up);text-decoration:line-through}.smart-table-column-menu.wrapper .smart-table-menu-item .reset::after{content:var(--smart-icon-refresh)}.smart-table-column-menu.wrapper .smart-table-menu-item .columns::after{content:var(--smart-icon-table)}.smart-table-column-menu.wrapper .smart-table-menu-item .filter-by::after{content:var(--smart-icon-add-filter)}.smart-table-column-menu.wrapper .smart-table-menu-item .filter-by-remove::after{content:var(--smart-icon-filter);text-decoration:line-through}.smart-table-column-menu.wrapper .smart-table-menu-item .column-item::after{content:var(--smart-icon-check-squared)}.smart-table-column-menu.wrapper .smart-table-menu-item .column-item.off::after{content:var(--smart-icon-check-empty)}.smart-table-column-menu.wrapper .smart-table-menu-item.columns-item::after{content:var(--smart-icon-arrow-right);display:flex;justify-content:flex-end;align-items:center}.smart-table-column-menu.wrapper .smart-table-menu-item.filter-item{cursor:default;border-top:1px solid var(--smart-border);padding-top:20px;margin-bottom:10px}.smart-table-column-menu.wrapper.no-filter{opacity:.6;pointer-events:none}.smart-table-column-menu .filter-value{min-width:0;border:var(--smart-border-width) solid var(--smart-border);border-top-right-radius:var(--smart-border-top-right-radius);border-top-left-radius:var(--smart-border-top-left-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);padding:var(--smart-editor-label-padding);background-color:var(--smart-background);color:var(--smart-background-color);font-family:inherit;font-size:inherit}.smart-table-column-menu .filter-value:hover{border-color:var(--smart-ui-state-border-hover)}.smart-table-column-menu .filter-value:focus{outline:0;border-color:var(--smart-outline)}.smart-table-column-menu .filter-value[type=number]{-webkit-appearance:none;-moz-appearance:textfield}.smart-table-column-menu .filter-value::-webkit-inner-spin-button,.smart-table-column-menu .filter-value::-webkit-outer-spin-button{-webkit-appearance:none;-moz-appearance:textfield}.smart-table-column-menu .smart-input{--smart-editor-addon-width:100%;--smart-editor-label-padding:0;width:unset;height:100%}.smart-table-column-menu .smart-input .smart-drop-down-button{border-top-left-radius:var(--smart-border-top-left-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius)}.smart-table-column-menu .smart-input .smart-drop-down-button .arrow:after{content:var(--smart-icon-filter);transform:none!important}@keyframes active{from{transform:scale(0)}to{transform:scale(2.5)}}@-moz-document url-prefix(){.smart-table[right-to-left] .freeze-far,.smart-table[right-to-left] .freeze-near{box-shadow:0 0 0 1px var(--smart-border)}}.smart-table[right-to-left]>.smart-container{direction:rtl}.smart-table[right-to-left] thead th{text-align:right}.smart-table[right-to-left] thead th .sort-by:after{left:unset;right:100%}.smart-table[right-to-left] th.column-header{text-align:center}.smart-table[right-to-left] td{text-align:initial}.smart-table[right-to-left] .smart-table-container:focus td[focus]:after{left:unset;right:1px}.smart-table[right-to-left] .smart-table-header{left:unset;right:0}.smart-table[right-to-left] .smart-table-header .smart-table-toolbar-button.conditional-formatting{border-left:none;border-right:var(--smart-border-width) solid var(--smart-border)}.smart-table[right-to-left] .smart-table-header .smart-table-toolbar-button.conditional-formatting:before{left:0;right:unset}.smart-table[right-to-left] .freeze-far{left:0;box-shadow:1px 0 0 0 var(--smart-border);right:unset}.smart-table[right-to-left] .freeze-near{right:0;box-shadow:-1px 0 0 0 var(--smart-border);left:unset}.smart-pivot-table[right-to-left] .smart-table-toolbar-button.fields:before,.smart-pivot-table[right-to-left][toolbar][designer] .smart-table-toolbar-button.conditional-formatting:before{left:0;right:unset}.smart-table[right-to-left] smart-pager .smart-container{justify-content:flex-start}.smart-table[right-to-left] smart-pager .smart-pager-near-buttons-container{order:1}.smart-table[right-to-left] smart-pager .smart-pager-summary-container.smart-pager-label{order:2}.smart-table[right-to-left] smart-pager .smart-pager-size-selector-and-label-container{order:3;flex-direction:row}.smart-table[right-to-left] .group-header,.smart-table[right-to-left] .tree-cell,.smart-table[right-to-left] .tree-leaf{padding-left:var(--smart-table-cell-padding)}.smart-table[right-to-left] .hierarchy-arrow{margin-left:var(--smart-table-arrow-margin);margin-right:unset}.smart-table[right-to-left][freeze-header] thead th.freeze-far{box-shadow:1px 1px 0 0 var(--smart-border)}.smart-table[right-to-left][freeze-header] thead th.freeze-near{box-shadow:-1px 1px 0 0 var(--smart-border)}.smart-table[right-to-left][freeze-footer] tfoot td.freeze-far{box-shadow:1px -1px 0 0 var(--smart-border)}.smart-table[right-to-left][freeze-footer] tfoot td.freeze-near{box-shadow:-1px -1px 0 0 var(--smart-border)}.smart-table[right-to-left][conditional-formatting-button]:not([filtering]) .smart-table-header{grid-template-columns:1fr auto;grid-template-areas:". button"}.smart-table[right-to-left][filtering] .smart-table-header{grid-template-columns:1fr}.smart-table[right-to-left][filtering][conditional-formatting-button] .smart-table-header{grid-template-columns:1fr auto}.smart-table[right-to-left][column-resize] th[locked]+th[data-field]:after,.smart-table[right-to-left][column-resize] th[locked]:before,.smart-table[right-to-left][column-resize]:not([selection]) th[data-field]:first-child:after{content:none}.smart-table[right-to-left][column-resize]:not([selection]) th[data-field]:not([locked]):first-child:before{content:""}.smart-table[right-to-left][column-resize][selection] th[data-field]:nth-child(2):after{content:none}.smart-table[right-to-left][column-resize][selection] th[data-field]:not([locked]):nth-child(2):before{content:""}.smart-table[right-to-left][column-groups] th:not(:last-child){border-left:var(--smart-border-width) solid var(--smart-border)}@-moz-document url-prefix(){.smart-pivot-table[right-to-left] thead th:last-child,.smart-pivot-table[right-to-left] thead th:not(:last-child){border:none;box-shadow:0 0 0 1px var(--smart-border)}}.smart-pivot-table[right-to-left] .smart-table-toolbar-button.fields,.smart-pivot-table[right-to-left][toolbar][designer] .smart-table-toolbar-button.conditional-formatting{border-left:none;border-right:var(--smart-border-width) solid var(--smart-border)}.smart-table[right-to-left] .outline-level-1{padding-right:var(--smart-table-indent)}.smart-table[right-to-left] .outline-level-1.tree-leaf{padding-right:calc(var(--smart-table-indent) + var(--smart-table-arrow-size) + var(--smart-table-arrow-margin))}.smart-table[right-to-left] .outline-level-2{padding-right:calc(2 * var(--smart-table-indent))}.smart-table[right-to-left] .outline-level-2.tree-leaf{padding-right:calc(2 * var(--smart-table-indent) + var(--smart-table-arrow-size) + var(--smart-table-arrow-margin))}.smart-table[right-to-left] .outline-level-3{padding-right:calc(3 * var(--smart-table-indent))}.smart-table[right-to-left] .outline-level-3.tree-leaf{padding-right:calc(3 * var(--smart-table-indent) + var(--smart-table-arrow-size) + var(--smart-table-arrow-margin))}.smart-table[right-to-left] .outline-level-4{padding-right:calc(4 * var(--smart-table-indent))}.smart-table[right-to-left] .outline-level-4.tree-leaf{padding-right:calc(4 * var(--smart-table-indent) + var(--smart-table-arrow-size) + var(--smart-table-arrow-margin))}.smart-table[right-to-left] .outline-level-5{padding-right:calc(5 * var(--smart-table-indent))}.smart-table[right-to-left] .outline-level-5.tree-leaf{padding-right:calc(5 * var(--smart-table-indent) + var(--smart-table-arrow-size) + var(--smart-table-arrow-margin))}.smart-table[right-to-left] .outline-level-6{padding-right:calc(6 * var(--smart-table-indent))}.smart-table[right-to-left] .outline-level-6.tree-leaf{padding-right:calc(6 * var(--smart-table-indent) + var(--smart-table-arrow-size) + var(--smart-table-arrow-margin))}.smart-table[right-to-left] .outline-level-7{padding-right:calc(7 * var(--smart-table-indent))}.smart-table[right-to-left] .outline-level-7.tree-leaf{padding-right:calc(7 * var(--smart-table-indent) + var(--smart-table-arrow-size) + var(--smart-table-arrow-margin))}.smart-table[right-to-left] .outline-level-8{padding-right:calc(8 * var(--smart-table-indent))}.smart-table[right-to-left] .outline-level-8.tree-leaf{padding-right:calc(8 * var(--smart-table-indent) + var(--smart-table-arrow-size) + var(--smart-table-arrow-margin))}.smart-table[right-to-left] .outline-level-9{padding-right:calc(9 * var(--smart-table-indent))}.smart-table[right-to-left] .outline-level-9.tree-leaf{padding-right:calc(9 * var(--smart-table-indent) + var(--smart-table-arrow-size) + var(--smart-table-arrow-margin))}.smart-table[right-to-left] .outline-level-10{padding-right:calc(10 * var(--smart-table-indent))}.smart-table[right-to-left] .outline-level-10.tree-leaf{padding-right:calc(10 * var(--smart-table-indent) + var(--smart-table-arrow-size) + var(--smart-table-arrow-margin))}
smart-tabs{border:none;min-width:125px;width:var(--smart-tabs-default-width);min-height:125px;height:var(--smart-tabs-default-height);padding:2px;overflow:visible;line-height:initial}.smart-tabs .smart-tab-close-button,.smart-tabs .smart-tab-group-arrow{font-family:var(--smart-font-family-icon);line-height:var(--smart-editor-addon-width);text-align:center}smart-tabs.smart-element{background:0 0;border:none}smart-tab-item{position:relative;top:0;left:0;width:100%;height:100%;font-size:inherit;overflow:auto;outline:0}smart-tab-item>.smart-container{padding:5px}smart-tab-item>.smart-container .smart-widget *{box-sizing:initial}smart-tab-item.smart-element{background:0 0;border:none}smart-tab-item.animate{transition:left var(--smart-tabs-animation-duration) cubic-bezier(.35,0,.25,1),top var(--smart-tabs-animation-duration) cubic-bezier(.35,0,.25,1),visibility 2s cubic-bezier(.35,0,.25,1),opacity 2s cubic-bezier(.35,0,.25,1)}smart-tab-item.smart-visibility-hidden{position:absolute}smart-tab-item.smart-visibility-hidden .smart-container,smart-tab-item.smart-visibility-hidden>.smart-container .smart-widget *{visibility:hidden}smart-tab-item.smart-visibility-hidden.animate .smart-container{visibility:initial}smart-tab-items-group.smart-element{background:0 0;border:none}.smart-tabs{outline:0}.smart-tabs>.smart-container{display:flex;flex-direction:column;position:relative;min-height:inherit}.smart-tabs .smart-tabs-content-section,.smart-tabs .smart-tabs-header-items{position:relative;min-height:0;width:100%;overflow:hidden}.smart-tabs .smart-tabs-header-section{border:var(--smart-border-width) solid var(--smart-surface);background:var(--smart-surface);color:var(--smart-surface-color);padding:var(--smart-tabs-header-padding)}.smart-tabs .smart-tabs-header-items>.smart-drop-down-button{font-family:var(--smart-font-family-icon);position:relative;display:none;cursor:pointer}.smart-tabs .smart-tabs-content-section{flex:1;margin:0;color:var(--smart-tabs-color);background:var(--smart-background);border:var(--smart-border-width) solid var(--smart-border);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);margin-top:var(--smart-tabs-header-offset)}.smart-tabs .smart-drop-down-button-drop-down,.smart-tabs .smart-tab-group-drop-down{padding:2px;width:auto;z-index:var(--smart-editor-drop-down-z-index);box-shadow:var(--smart-elevation-8);white-space:nowrap}.smart-tabs .smart-tabs-resize-token{position:absolute;background-color:#000;opacity:.5}.smart-tabs .smart-tab-header-controls:empty{display:none}.smart-tabs .smart-tab-group-container{position:relative;display:inline-block;cursor:pointer;color:inherit;text-transform:var(--smart-tab-item-text-transform)}.smart-tabs .smart-tab-group-container .smart-tab-label-text-container{margin-right:18px}.smart-tabs .smart-tab-group-container[hover],.smart-tabs .smart-tab-group-container[hover][focus]{color:var(--smart-ui-state-color-hover);border-color:var(--smart-ui-state-border-hover);background-color:var(--smart-ui-state-hover)}.smart-tabs .smart-tab-group-drop-down{position:absolute;border-width:var(--smart-border-width);border-style:solid;border-color:var(--smart-border);border-top:none;height:auto;border-radius:var(--smart-border-radius);background-color:var(--smart-background);color:var(--smart-background-color)}.smart-tabs .smart-tab-group-drop-down .smart-tab-label-container{display:block;width:100%;overflow:hidden}.smart-tabs .smart-tab-group-arrow{position:absolute;right:2px;top:50%;transform:translateY(-50%);width:var(--smart-editor-addon-width);height:var(--smart-editor-addon-width)}.smart-tabs .smart-tab-group-arrow:after{content:var(--smart-icon-arrow-down)}.smart-tabs .smart-tab-label-container{position:relative;display:inline-block;cursor:pointer;color:inherit;text-transform:var(--smart-tab-item-text-transform);background-color:inherit;border-color:transparent;margin-right:var(--smart-tab-item-offset);border-top-left-radius:var(--smart-item-border-top-left-radius);border-top-right-radius:var(--smart-item-border-top-right-radius);border-bottom-left-radius:var(--smart-item-border-bottom-left-radius);border-bottom-right-radius:var(--smart-item-border-bottom-right-radius)}.smart-tabs .smart-tab-label-container[selected],.smart-tabs .smart-tab-label-container[selected][focus]{background-color:var(--smart-ui-state-selected);border-color:var(--smart-item-border-selected);color:var(--smart-ui-state-color-selected)}.smart-tabs .smart-tab-label-container[disabled]{opacity:.55;cursor:default;pointer-events:none;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.smart-tabs .smart-tab-label-container[hover],.smart-tabs .smart-tab-label-container[hover][focus]{color:var(--smart-ui-state-color-hover);border-color:var(--smart-ui-state-border-hover);background-color:var(--smart-ui-state-hover)}.smart-tabs .smart-tab-label-text-wrapper{width:100%;height:100%;position:relative;padding:var(--smart-tab-item-padding)}.smart-tabs .smart-tab-label-text-container{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.smart-tabs .smart-tab-label-text-container.smart-close-button-enabled{margin-right:18px}.smart-tabs .smart-tab-close-button{font-size:10px;position:absolute;right:2px;top:50%;transform:translateY(-50%);width:var(--smart-editor-addon-width);height:var(--smart-editor-addon-width)}.smart-tabs .smart-tab-close-button:after{content:var(--smart-icon-close);display:flex;justify-content:center;width:100%;height:100%;align-items:center}.smart-tabs .smart-tab-close-button[hover]{border-radius:50%;border:1px solid var(--smart-ui-state-border-hover);background-color:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover)}.smart-tabs .smart-drop-down-button-arrow{position:absolute;width:10px;height:10px;top:50%;left:50%;transform:translate(-50%,-50%);color:inherit}.smart-tabs .smart-drop-down-button-arrow:after{content:var(--smart-icon-arrow-down)}.smart-tabs .smart-drop-down-button-drop-down{position:absolute;border-width:var(--smart-border-width);border-style:solid;border-color:var(--smart-border);border-top:none;height:auto;border-radius:var(--smart-border-radius);background-color:var(--smart-background);color:var(--smart-background-color);top:100%}.smart-tabs .smart-drop-down-button-drop-down .smart-tab-label-container{display:block;width:100%;overflow:hidden;padding:var(--smart-tab-item-padding)}.smart-tabs .smart-add-new-tab[hover]{color:var(--smart-ui-state-color-hover)}.smart-tabs .smart-nav-button{position:relative;border-radius:0;z-index:100}.smart-tabs .smart-nav-button>.smart-button{border:none;height:initial;padding:0}.smart-tabs .ripple-agent{position:absolute;width:100%;height:100%;top:0;left:0;overflow:hidden;pointer-events:none}.smart-tabs .smart-ripple{background-color:var(--smart-primary);opacity:.5}.smart-tabs:focus .smart-tabs-content-section,.smart-tabs:focus .smart-tabs-header-section{border-color:var(--smart-outline)}.smart-tabs:focus .smart-tab-label-container[selected]{color:var(--smart-ui-state-color-focus)}.smart-tabs:focus .smart-add-new-tab[focus],.smart-tabs:focus .smart-tab-group-container[focus],.smart-tabs:focus .smart-tab-label-container[focus]{color:var(--smart-ui-state-color-selected)}.smart-tabs:not([animation=none]) smart-tab-item.right{left:100%}.smart-tabs:not([animation=none]) smart-tab-item.left{left:-100%}.smart-tabs:not([animation=none]) smart-tab-item.top{top:-100%}.smart-tabs:not([animation=none]) smart-tab-item.bottom{top:100%}.smart-tabs:not([animation=none]) .smart-tabs-selection-bar{transition:width var(--smart-tabs-animation-duration) cubic-bezier(.35,0,.25,1),height var(--smart-tabs-animation-duration) cubic-bezier(.35,0,.25,1),top var(--smart-tabs-animation-duration) cubic-bezier(.35,0,.25,1),left var(--smart-tabs-animation-duration) cubic-bezier(.35,0,.25,1)}.smart-tabs:not([animation=none]) .smart-tabs-content-section:after{transition:opacity .2s ease-in}.smart-tabs[keyboard-navigate]{color:var(--smart-ui-state-color-focus)}.smart-tabs[collapsed] .smart-tabs-content-section{margin:0;display:none}.smart-tabs[collapsed][horizontal]{min-height:initial;height:auto}.smart-tabs[collapsed][vertical]{display:table-caption;min-width:initial;width:auto}.smart-tabs[dragged],.smart-tabs[dragged] .smart-tab-label-container{cursor:move}.smart-tabs[resizing][horizontal],.smart-tabs[resizing][horizontal] .smart-tab-group-container,.smart-tabs[resizing][horizontal] .smart-tab-label-container{cursor:e-resize}.smart-tabs[resizing][vertical],.smart-tabs[resizing][vertical] .smart-tab-group-container,.smart-tabs[resizing][vertical] .smart-tab-label-container{cursor:n-resize}.smart-tabs[disabled] .smart-nav-button,.smart-tabs[disabled] .smart-tab-group-container,.smart-tabs[disabled] .smart-tab-label-container,.smart-tabs[disabled] .smart-tabs-header-items>.smart-drop-down-button,.smart-tabs[readonly] .smart-nav-button,.smart-tabs[readonly] .smart-tab-group-container,.smart-tabs[readonly] .smart-tab-label-container,.smart-tabs[readonly] .smart-tabs-header-items>.smart-drop-down-button{cursor:default}.smart-tabs[allow-toggle] .smart-tabs-content-section:after{content:"No Items Selected";width:100%;height:100%;display:flex;justify-content:center;align-items:center;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);opacity:1;pointer-events:none}.smart-tabs[vertical]>.smart-container{flex-direction:row}.smart-tabs[vertical] .smart-tabs-header-section{width:auto;min-height:initial;height:100%}.smart-tabs[vertical] .smart-tabs-header-section.scroll-buttons-shown .smart-tab-strip{height:calc(100% - 2 * var(--smart-tabs-header-button-size))}.smart-tabs[vertical] .smart-tabs-header-section.scroll-buttons-shown.one-button-shown .smart-tab-strip{height:calc(100% - var(--smart-tabs-header-button-size))}.smart-tabs[vertical] .smart-tabs-content-section,.smart-tabs[vertical] .smart-tabs-header-items{width:auto;min-height:initial;height:100%}.smart-tabs[vertical] .smart-tabs-header-items>.smart-drop-down-button{height:var(--smart-tabs-header-button-size);width:100%;border:none;background:0 0}.smart-tabs[vertical] .smart-tab-strip{height:100%}.smart-tabs[vertical] .smart-tab-strip>.smart-tab-label-container{border:none;border-right:var(--smart-item-border-width) solid transparent;min-height:20px}.smart-tabs[vertical] .smart-tab-strip>.smart-add-new-tab{min-height:initial;min-width:initial}.smart-tabs[vertical] .smart-tab-group-container{display:block;border:none;border-right:var(--smart-item-border-width) solid transparent;min-height:20px}.smart-tabs[vertical] .smart-tab-label-container{display:block}.smart-tabs[vertical] .smart-tab-label-container:last-child{margin-right:0;margin-bottom:0}.smart-tabs[tab-text-orientation=vertical] .smart-tab-group-container .smart-tab-label-text-container,.smart-tabs[tab-text-orientation=vertical] .smart-tab-strip>.smart-tab-label-container .smart-tab-label-text-container.smart-close-button-enabled{margin-bottom:18px;margin-right:0}.smart-tabs[vertical] .smart-tab-group-drop-down{border-top:var(--smart-border-width) solid var(--smart-border)}.smart-tabs[vertical] .smart-add-new-tab{text-align:center}.smart-tabs[vertical] .smart-add-new-tab>.smart-tab-label-text-wrapper{padding-left:10px;padding-right:10px}.smart-tabs[vertical] .smart-nav-button{height:var(--smart-tabs-header-button-size);width:100%;border:none;background:0 0}.smart-tabs[vertical] .smart-drop-down-button-drop-down{border-top:var(--smart-border-width) solid var(--smart-border);top:initial}.smart-tabs[vertical] .smart-tabs-resize-token{width:100%;height:3px;transform:translateY(-50%)}.smart-tabs[horizontal] .smart-tab-strip{width:100%;min-height:0}.smart-tabs[horizontal] .smart-tab-strip>.smart-tab-label-container{min-width:10px;border:none;border-bottom:var(--smart-item-border-width) solid transparent}.smart-tabs[horizontal] .smart-tab-strip>.smart-tab-label-container:first-child{margin-left:var(--smart-tab-item-initial-offset)}.smart-tabs[horizontal] .smart-tab-group-container{min-width:40px}.smart-tabs[horizontal] .smart-tabs-header-section.scroll-buttons-shown .smart-tab-strip{width:calc(100% - 2 * var(--smart-tabs-header-button-size))}.smart-tabs[horizontal] .smart-tabs-header-section.scroll-buttons-shown.one-button-shown .smart-tab-strip{width:calc(100% - var(--smart-tabs-header-button-size))}.smart-tabs[horizontal] .smart-nav-button,.smart-tabs[horizontal] .smart-tabs-header-items>.smart-drop-down-button{width:var(--smart-tabs-header-button-size);border:none;background:0 0}.smart-tabs[horizontal] .smart-tabs-resize-token{width:3px;height:100%;transform:translateX(-50%)}.smart-tabs[tab-text-orientation=vertical] .smart-tab-strip>.smart-tab-label-container>.smart-tab-close-button{top:initial;right:initial;bottom:2px;left:50%;transform:translateX(-50%)}.smart-tabs[tab-text-orientation=vertical] .smart-tab-group-arrow{top:initial;right:initial;bottom:2px;left:50%;transform:translateX(-50%)}.smart-tabs[tab-text-orientation=vertical] .smart-tab-group-drop-down{writing-mode:horizontal-tb}.smart-tabs[tab-text-orientation=vertical][horizontal] .smart-tab-strip{writing-mode:vertical-lr}.smart-tabs[tab-text-orientation=vertical][horizontal] .smart-tab-group-container,.smart-tabs[tab-text-orientation=vertical][horizontal] .smart-tab-strip>.smart-tab-label-container{min-width:20px;display:block}.smart-tabs[tab-text-orientation=vertical][horizontal] .smart-tab-close-button{padding-left:2px}.smart-tabs[tab-text-orientation=vertical][vertical] .smart-tab-strip{writing-mode:vertical-rl}.smart-tabs[tab-text-orientation=vertical][vertical] .smart-tab-strip>.smart-tab-label-container{min-height:10px;display:inline-block}.smart-tabs[tab-text-orientation=vertical][vertical] .smart-tab-group-container{min-height:40px;display:inline-block}.smart-tabs[tab-text-orientation=vertical][vertical] .smart-tab-close-button,.smart-tabs[tab-text-orientation=vertical][vertical] .smart-tab-group-arrow{padding-right:1px}.smart-tabs[tab-text-orientation=vertical][tab-position=bottom] .smart-tab-group-container .smart-tab-label-text-container{margin-top:18px;margin-bottom:0}.smart-tabs[tab-text-orientation=vertical][tab-position=bottom] .smart-tab-group-arrow{bottom:initial;top:2px}.smart-tabs[tab-text-orientation=vertical][tab-position=right] .smart-tab-group-container .smart-tab-label-text-container{margin-left:0}.smart-tabs:not([tab-position=bottom]):not([tab-position=left]):not([tab-position=right]) .smart-tabs-header-section{border-bottom-width:0}.smart-tabs[tab-position=hidden] .smart-tabs-header-section{display:none}.smart-tabs[tab-position=hidden] .smart-tabs-content-section{margin:0}.smart-tabs[tab-position=right] .smart-tabs-selection-bar{width:2px;left:0}.smart-tabs[tab-position=right] .smart-tabs-header-section{border-left-width:0}.smart-tabs[tab-position=right] .smart-tab-label-container{margin-right:0;margin-left:0;margin-top:var(--smart-tab-item-initial-offset);margin-bottom:var(--smart-tab-item-offset)}.smart-tabs[tab-position=right] .smart-tabs-content-section{margin:0 var(--smart-tabs-header-offset) 0 0;border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-top-left-radius:var(--smart-border-top-left-radius)}.smart-tabs[tab-position=right] .smart-drop-down-button-drop-down,.smart-tabs[tab-position=right] .smart-tab-group-drop-down{transform:translateX(-100%);border-right:none;box-shadow:var(--smart-elevation-8)}.smart-tabs[tab-position=right] .smart-tab-group-container .smart-tab-label-text-container{margin-left:12px;margin-right:0}.smart-tabs[tab-position=right] .smart-tab-group-arrow{left:0;right:initial}.smart-tabs[tab-position=bottom] .smart-tabs-selection-bar{height:2px;top:0}.smart-tabs[tab-position=bottom] .smart-tabs-header-section{border-top-width:0}.smart-tabs[tab-position=bottom] .smart-drop-down-button-drop-down,.smart-tabs[tab-position=bottom] .smart-tab-group-drop-down{border-top:var(--smart-border-width) solid var(--smart-border);transform:translateY(-100%);border-bottom:none;box-shadow:var(--smart-elevation-8)}.smart-tabs[tab-position=bottom] .smart-tab-label-container{margin-right:var(--smart-tab-item-offset)}.smart-tabs[tab-position=bottom] .smart-tabs-content-section{margin:0 0 var(--smart-tabs-header-offset);border-top-left-radius:var(--smart-border-top-left-radius);border-top-right-radius:var(--smart-border-top-right-radius)}.smart-tabs[tab-position=bottom] .smart-drop-down-button-drop-down{top:initial}.smart-tabs[tab-position=left] .smart-tabs-selection-bar{width:2px;right:0}.smart-tabs[tab-position=left] .smart-tabs-header-section{border-right-width:0}.smart-tabs[tab-position=left] .smart-tab-label-container{margin-right:0;margin-left:0;margin-top:var(--smart-tab-item-initial-offset);margin-bottom:var(--smart-tab-item-offset)}.smart-tabs[tab-position=left] .smart-tabs-content-section{margin:0 0 0 var(--smart-tabs-header-offset);border-bottom-right-radius:var(--smart-border-bottom-right-radius);border-top-right-radius:var(--smart-border-top-right-radius)}.smart-tabs[tab-position=left] .smart-tab-group-drop-down{border-left:none}.smart-tabs[tab-position=left] .smart-drop-down-button-drop-down{border-left:none;left:100%}.smart-tabs[tab-layout=wrap][tab-text-orientation=vertical][horizontal] .smart-tab-strip,.smart-tabs[tab-layout=wrap][vertical] .smart-tab-strip{display:flex;flex-direction:column;flex-wrap:wrap}.smart-tabs[tab-layout=wrap][tab-text-orientation=vertical][vertical] .smart-tab-strip{display:block}.smart-tabs[tab-layout=scroll] .smart-tab-strip{overflow:hidden;white-space:nowrap}.smart-tabs[tab-layout=scroll] .smart-tabs-header-section .smart-nav-button.smart-hidden{display:none}.smart-tabs[tab-layout=scroll] .smart-tabs-header-section.scroll-buttons-shown .smart-nav-button,.smart-tabs[tab-layout=scroll][horizontal] .smart-tabs-header-items,.smart-tabs[tab-layout=scroll][horizontal] .smart-tabs-header-section{display:flex}.smart-tabs[tab-layout=shrink] .smart-tab-strip{overflow:hidden;white-space:nowrap}.smart-tabs[tab-layout=shrink] .smart-tab-strip>.smart-tab-group-container .smart-tab-label-text-container,.smart-tabs[tab-layout=shrink] .smart-tab-strip>.smart-tab-label-container .smart-tab-label-text-container{overflow:hidden}.smart-tabs[tab-layout=shrink] .smart-tab-strip.shrink-tabs{display:table;table-layout:fixed}.smart-tabs[tab-layout=shrink] .smart-tab-strip.shrink-tabs>.smart-tab-group-container,.smart-tabs[tab-layout=shrink] .smart-tab-strip.shrink-tabs>.smart-tab-label-container{display:table-cell;vertical-align:top}.smart-tabs[tab-layout=shrink] .smart-tab-strip.shrink-tabs>.smart-tab-group-container .smart-tab-label-text-container,.smart-tabs[tab-layout=shrink] .smart-tab-strip.shrink-tabs>.smart-tab-label-container .smart-tab-label-text-container{white-space:nowrap;text-overflow:ellipsis}.smart-tabs[tab-layout=shrink][horizontal] .smart-tab-group-container,.smart-tabs[tab-layout=shrink][horizontal] .smart-tab-strip>.smart-tab-label-container{min-width:initial}.smart-tabs[tab-layout=shrink][vertical] .smart-tab-strip{display:flex;flex-direction:column}.smart-tabs[tab-layout=shrink][vertical] .smart-tab-strip>.smart-tab-group-container{display:flex}.smart-tabs[tab-layout=shrink][vertical] .smart-tab-strip>.smart-tab-label-container{display:flex;min-height:initial;overflow:hidden}.smart-tabs[tab-layout=shrink][vertical] .smart-tab-strip.shrink-tabs-vertical>.smart-tab-group-container,.smart-tabs[tab-layout=shrink][vertical] .smart-tab-strip.shrink-tabs-vertical>.smart-tab-label-container{margin-top:0;margin-bottom:0}.smart-tabs[tab-layout=shrink][vertical] .smart-tab-group-container{min-height:initial;overflow:hidden}.smart-tabs[tab-layout=shrink][tab-text-orientation=vertical] .smart-tab-strip>.smart-tab-group-container .smart-tab-label-text-container,.smart-tabs[tab-layout=shrink][tab-text-orientation=vertical] .smart-tab-strip>.smart-tab-label-container .smart-tab-label-text-container{writing-mode:vertical-lr}.smart-tabs[tab-layout=shrink][tab-text-orientation=vertical] .smart-tab-strip.shrink-tabs{writing-mode:initial}.smart-tabs[tab-layout=shrink][tab-text-orientation=vertical] .smart-tab-strip.shrink-tabs>.smart-tab-group-container .smart-tab-label-text-container,.smart-tabs[tab-layout=shrink][tab-text-orientation=vertical] .smart-tab-strip.shrink-tabs>.smart-tab-label-container .smart-tab-label-text-container{width:100%}.smart-tabs[tab-layout=shrink][tab-text-orientation=vertical][vertical] .smart-tab-strip{writing-mode:initial;white-space:nowrap}@media screen and (-webkit-min-device-pixel-ratio:0){.smart-tabs[tab-layout=shrink][tab-text-orientation=vertical][vertical] .smart-tab-label-text-wrapper{display:flex;height:auto}}@media not all and (min-resolution:0.001dpcm){.smart-tabs[tab-layout=shrink][tab-text-orientation=vertical][vertical] .smart-tab-label-text-wrapper{overflow:hidden}}.smart-tabs[tab-layout=shrink][tab-text-orientation=vertical][horizontal] .smart-tab-strip.shrink-tabs>div>.smart-tab-label-text-wrapper{padding-left:5px;padding-right:5px}.smart-tabs[tab-layout=dropDown] .smart-tab-strip{overflow:hidden;white-space:nowrap}.smart-tabs[tab-layout=dropDown] .smart-tabs-header-items>.smart-drop-down-button{display:block;background-color:var(--smart-surface);color:var(--smart-surface-color);border-color:var(--smart-border)}.smart-tabs[tab-layout=dropDown][horizontal] .smart-tabs-header-items,.smart-tabs[tab-layout=dropDown][horizontal] .smart-tabs-header-section{display:flex}.smart-tabs[tab-layout=dropDown][horizontal] .smart-tab-strip{width:calc(100% - var(--smart-tabs-header-button-size))}.smart-tabs[tab-layout=dropDown][vertical] .smart-tab-strip{height:calc(100% - var(--smart-tabs-header-button-size))}.smart-tabs[selected-index] .smart-tabs-content-section:after{opacity:0}.smart-tabs[selected-index=null] .smart-tabs-selection-bar{visibility:hidden}.smart-tabs[selected-index=null] .smart-tabs-content-section:after{opacity:1}.smart-tabs[close-buttons][horizontal] .smart-tab-strip>.smart-tab-label-container{min-width:40px}.smart-tabs[close-buttons][horizontal] .smart-tab-strip>.smart-add-new-tab{min-width:initial}.smart-tabs[close-buttons][vertical] .smart-tab-strip>.smart-add-new-tab{min-height:initial}.smart-tabs[close-buttons][tab-text-orientation=vertical][vertical] .smart-tab-strip>.smart-tab-label-container{min-height:40px}@-moz-document url-prefix(){.smart-tabs .smart-tab-label-container .smart-tab-label-text-container-full-height{height:100%}.smart-tabs .smart-tab-group-container .smart-tab-label-text-container-full-height{height:calc(100% - 10px)}.smart-tabs[tab-layout=wrap][tab-text-orientation=vertical][horizontal] .smart-tab-strip{height:100%;display:block;writing-mode:initial}.smart-tabs[tab-layout=wrap][tab-text-orientation=vertical][horizontal] .smart-tab-strip>div{float:left;writing-mode:vertical-lr}.smart-tabs[tab-layout=shrink][vertical] .smart-tab-strip,.smart-tabs[tab-layout=shrink][vertical] .smart-tab-strip .smart-tab-label-text-wrapper,.smart-tabs[tab-layout=shrink][vertical] .smart-tab-strip>.smart-tab-group-container,.smart-tabs[tab-layout=shrink][vertical] .smart-tab-strip>.smart-tab-label-container{display:block}}@supports (-ms-ime-align:auto){.smart-tabs[tab-layout=wrap][tab-text-orientation=vertical][horizontal] .smart-tab-strip{height:100%;display:block;writing-mode:initial}.smart-tabs[tab-layout=wrap][tab-text-orientation=vertical][horizontal] .smart-tab-strip>div{writing-mode:vertical-lr;float:left}.smart-tabs[tab-layout=shrink][tab-text-orientation=vertical][horizontal] .smart-tab-strip{height:100%;writing-mode:initial;display:flex}.smart-tabs[tab-layout=shrink][tab-text-orientation=vertical][horizontal] .smart-tab-strip>div{writing-mode:vertical-lr}}.smart-tabs-selection-bar{position:absolute;bottom:0;background:var(--smart-ui-state-color-selected);height:2px;z-index:10}.smart-tabs[right-to-left] .smart-tab-group-container,.smart-tabs[right-to-left] .smart-tab-label-container,.smart-tabs[right-to-left] smart-tab-item>.smart-container{direction:rtl}.smart-tabs[right-to-left][tab-text-orientation=vertical] .smart-tab-strip{writing-mode:vertical-rl}.smart-tabs[right-to-left]:not([vertical]) .smart-tab-strip{direction:rtl;text-align:right}.smart-tabs[right-to-left]:not([vertical]) .smart-tab-strip>.smart-tab-label-container:last-child{margin-left:initial;margin-right:var(--smart-tab-item-offset)}.smart-tabs[right-to-left]:not([vertical]) .smart-tab-strip>.smart-tab-label-container:first-child{margin-left:initial;margin-right:initial}.smart-tabs[right-to-left][tab-position=right]:not([tab-text-orientation=vertical]):not([vertical]) .smart-tab-group-container .smart-tab-label-text-container{margin-right:18px;margin-left:0}.smart-tabs[right-to-left][tab-position=right]:not([tab-text-orientation=vertical]):not([vertical]) .smart-tab-group-arrow{right:2px;left:initial}.smart-tabs[right-to-left]:not([tab-text-orientation=vertical]):not([vertical]) .smart-tab-group-container .smart-tab-label-text-container,.smart-tabs[right-to-left]:not([tab-text-orientation=vertical]):not([vertical]) .smart-tab-label-text-container.smart-close-button-enabled{margin-left:18px;margin-right:initial}.smart-tabs[right-to-left]:not([tab-text-orientation=vertical]):not([vertical]) .smart-tab-close-button,.smart-tabs[right-to-left]:not([tab-text-orientation=vertical]):not([vertical]) .smart-tab-group-arrow{left:2px;right:initial}
.smart-tank:focus,smart-slider:focus{outline:0}smart-slider.smart-element,smart-tank.smart-element{border:none;background:0 0;overflow:visible}.smart-tank[labels-visibility=endPoints] .smart-label-middle,.smart-tank[labels-visibility=none] .smart-label,smart-slider[labels-visibility=endPoints] .smart-label-middle,smart-slider[labels-visibility=none] .smart-label{visibility:hidden}.smart-tank *,smart-slider *{box-sizing:border-box}.smart-tank .smart-label,smart-slider .smart-label{font-family:inherit;font-size:inherit;white-space:nowrap;color:var(--smart-background-color);float:left}smart-tank{padding-left:5px;padding-right:5px;width:var(--smart-tank-default-width);height:var(--smart-tank-default-height)}smart-tank.smart-scale-far .smart-tick{top:initial}smart-slider .smart-container{overflow:visible}smart-slider .smart-scale{position:relative;-webkit-user-select:none;user-select:none;pointer-events:none}smart-slider .smart-label{position:absolute}smart-slider .smart-tooltip{z-index:1}smart-slider .smart-tooltip-content{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}smart-slider .smart-track-container{touch-action:none}smart-slider .smart-track-ticks-container{position:absolute;width:100%;height:100%;pointer-events:none}smart-slider[ticks-visibility=major] .smart-tick,smart-slider[ticks-visibility=major] .smart-tick-minor,smart-slider[ticks-visibility=none] .smart-tick,smart-slider[ticks-visibility=none] .smart-tick-minor{display:none}.smart-tank .smart-container{overflow:visible}.smart-tank .smart-track{height:100%;width:calc(100% - var(--smart-tank-scale-size) - 4px);min-width:var(--smart-tank-minimum-track-size);position:relative;border:var(--smart-border) solid;border-width:var(--smart-border-width);background-color:var(--smart-background);float:left;border-top-left-radius:var(--smart-border-top-left-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);touch-action:none;margin:0 2px}.smart-tank .smart-track.track-hovered{cursor:pointer}.smart-tank .smart-track-ticks-container{position:absolute;width:100%;height:100%;pointer-events:none}.smart-tank .smart-value{width:100%;height:0;background-color:var(--smart-primary);border-color:var(--smart-primary);position:absolute}.smart-tank .smart-label{position:absolute}.smart-tank .smart-thumb{display:none;position:absolute;width:var(--smart-tank-thumb-width);height:var(--smart-tank-thumb-height);transform:scale(0);transition:transform .2s ease-out;left:calc(-1 * var(--smart-tank-thumb-width) * 2);top:calc(-1 * var(--smart-tank-thumb-height)/ 2);border-radius:50%;background-color:var(--smart-primary)}.smart-tank .smart-thumb:before{transform:scale(1.1) rotate(45deg);border:1px solid var(--smart-primary);border-radius:50% 0 50% 50%;background-color:var(--smart-primary);width:100%;height:100%;display:block;content:""}.smart-tank .smart-thumb-label-container{overflow:hidden;text-overflow:ellipsis;width:var(--smart-tank-thumb-width);height:var(--smart-tank-thumb-height);position:absolute;top:0;left:0}.smart-tank .smart-scale{position:relative;-webkit-user-select:none;user-select:none;pointer-events:none;float:left;margin-top:var(--smart-border-width);margin-left:initial;height:calc(100% - var(--smart-border-width));width:var(--smart-tank-scale-size);max-width:calc(100% - var(--smart-tank-minimum-track-size) - 4px)}.smart-tank .smart-scale-near .smart-tick{bottom:initial;right:0}.smart-tank .smart-scale-near .smart-label{bottom:initial;right:calc(var(--smart-tank-tick-size) + 2px)}.smart-tank .smart-scale-far .smart-label{left:calc(var(--smart-tank-tick-size) + 2px);top:initial}.smart-tank .smart-tooltip{position:absolute;display:flex;align-items:center;justify-content:center;border:1px solid var(--smart-border);width:var(--smart-tank-tooltip-width);height:var(--smart-tank-tooltip-height);padding:5px;background-color:var(--smart-background);color:var(--smart-background-color);opacity:.7;left:calc(-1 * var(--smart-tank-tooltip-width) - 10.5px);top:calc(-1 * var(--smart-tank-tooltip-height)/ 2);z-index:1}.smart-tank .smart-tooltip.smart-hidden,.smart-tank:not([animation=none])[disabled] .bubble,.smart-tank:not([animation=none])[inverted] .bubble,.smart-tank:not([animation=none])[orientation=horizontal] .bubble,.smart-tank[ticks-visibility=major] .smart-tick,.smart-tank[ticks-visibility=major] .smart-tick-minor,.smart-tank[ticks-visibility=none] .smart-tick,.smart-tank[ticks-visibility=none] .smart-tick-minor{display:none}.smart-tank .smart-tooltip:before{content:"";width:0;height:0;border-right:none;border-left:6px solid var(--smart-border);border-top:6px solid transparent;border-bottom:6px solid transparent;position:absolute;top:calc(50% - 6px);right:-7px;left:auto}.smart-tank .smart-tooltip-content{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.smart-tank .smart-tick{position:absolute;background-color:var(--smart-background-color);float:initial;width:var(--smart-tank-tick-size);height:1px}.smart-tank .smart-tick-minor{width:var(--smart-tank-minor-tick-size);height:1px}.smart-tank:focus .smart-track{border-style:solid;border-color:var(--smart-outline);border-width:var(--smart-border-width)}.smart-tank:active .smart-track{cursor:n-resize}.smart-tank:not([animation=none]) .smart-value{transition:height .15s ease-out,margin-top .15s ease-out}.smart-tank:not([animation=none]) .smart-value.disable-animation{transition:none}.smart-tank:not([animation=none]) .smart-bubble-container{position:relative;overflow:hidden;touch-action:none;width:100%;height:100%;-webkit-user-select:none;user-select:none}.smart-tank:not([animation=none]) .bubble{-webkit-user-select:none;user-select:none;pointer-events:none;border-radius:50%;box-shadow:0 10px 20px rgba(0,0,0,.2),inset 0 10px 25px 5px #fff;width:50px;height:50px}.smart-tank:not([animation=none]) .bubble1{left:10%;top:40%;animation:animateBubble 12.5s linear infinite,sideWays 5s ease-in-out infinite alternate;transform:scale(.25)}.smart-tank:not([animation=none]) .bubble2{left:5%;top:35%;animation:animateBubble 15s linear infinite,sideWays 4.5s ease-in-out infinite alternate;transform:scale(.2)}.smart-tank:not([animation=none]) .bubble3{left:0;top:50%;animation:animateBubble 10s linear infinite,sideWays 7s ease-in-out infinite alternate;transform:scale(.3)}.smart-tank:not([animation=none]) .bubble4{left:10%;top:60%;animation:animateBubble 7s linear infinite,sideWays 11s ease-in-out infinite alternate;transform:scale(.275)}.smart-tank:not([animation=none]) .bubble5{left:8%;top:70%;animation:animateBubble 14.5s linear infinite,sideWays 8s ease-in-out infinite alternate;transform:scale(.35)}.smart-tank[disabled] .smart-track.track-hovered,.smart-tank[disabled]:active .smart-track,.smart-tank[readonly] .smart-track.track-hovered,.smart-tank[readonly]:active .smart-track{cursor:default}.smart-tank[inverted] .smart-thumb{top:calc(100% - var(--smart-tank-thumb-height)/ 2);margin-left:initial;margin-top:initial}.smart-tank[inverted] .smart-tooltip{left:calc(-1 * var(--smart-tank-tooltip-width) - 10.5px);top:calc(100% - 1 * var(--smart-tank-tooltip-height)/ 2)}.smart-tank[inverted]:focus .smart-thumb{top:calc(100% - var(--smart-tank-thumb-height)/ 2)}.smart-tank[inverted][tooltip-position=far] .smart-tooltip{top:calc(100% - var(--smart-tank-tooltip-height)/ 2)}.smart-tank[inverted][tooltip-position=far][scale-position=none] .smart-tooltip{left:calc(-100% - 7px)}.smart-tank[inverted][tooltip-position=near] .smart-tooltip{left:calc(-1 * var(--smart-tank-tooltip-width) - 10.5px);top:calc(100% - var(--smart-tank-tooltip-height)/ 2)}.smart-tank[inverted][orientation=vertical] .smart-thumb{top:calc(100% - var(--smart-tank-thumb-height)/ 2)}.smart-tank[ticks-visibility=none] .smart-scale-near .smart-label{right:2px}.smart-tank[ticks-visibility=none] .smart-scale-far .smart-label{left:2px;top:initial}.smart-tank[ticks-position=track] .smart-tick{width:100%}.smart-tank[ticks-position=track] .smart-tick-minor{width:80%;left:50%;transform:translateX(-50%)}.smart-tank[ticks-position=track] .smart-scale-near .smart-label{right:2px}.smart-tank[ticks-position=track] .smart-scale-far .smart-label{left:2px;top:initial}.smart-tank[tooltip-position=far] .smart-tooltip{left:calc(100% + 10.5px);top:calc(-1 * var(--smart-tank-tooltip-height)/ 2)}.smart-tank[tooltip-position=far] .smart-tooltip:before{border-left:none;border-top:6px solid transparent;border-bottom:6px solid transparent;border-right:6px solid var(--smart-border);top:calc(50% - 6px);left:-7px}.smart-tank[show-thumb-label] .smart-thumb{left:calc(-1 * var(--smart-tank-thumb-width)/ 2);overflow:visible;display:initial}.smart-tank[show-thumb-label] .smart-thumb-label{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);font-size:.65rem;font-family:var(--smart-font-family);-webkit-user-select:none;user-select:none;color:var(--smart-background-color)}.smart-tank[show-thumb-label]:focus .smart-thumb{left:calc(-1 * var(--smart-tank-thumb-width) - var(--smart-tank-thumb-width)/ 2 - 2px);transform:scale(1)}.smart-tank[show-thumb-label]:not([animation=none]) .smart-thumb{transition:transform .2s ease-out,left .2s ease-in-out,top .2s ease-in-out}.smart-tank[show-thumb-label][thumb-label-position=far] .smart-thumb{left:calc(100% - var(--smart-tank-thumb-width)/ 2)}.smart-tank[show-thumb-label][orientation=horizontal] .smart-thumb{left:100%;top:calc(-1 * var(--smart-tank-thumb-width)/ 2)}.smart-tank[show-thumb-label][orientation=horizontal][inverted] .smart-thumb{left:calc(-1 * var(--smart-tank-thumb-width)/ 2)}.smart-tank[show-thumb-label][orientation=horizontal][thumb-label-position=far] .smart-thumb{left:100%;top:calc(100% - var(--smart-tank-thumb-width)/ 2)}.smart-tank[show-thumb-label][orientation=horizontal][thumb-label-position=far][inverted] .smart-thumb{left:calc(-1 * var(--smart-tank-thumb-width)/ 2)}.smart-tank[show-thumb-label][orientation=horizontal][thumb-label-position=near] .smart-thumb{left:100%;top:calc(-1 * var(--smart-tank-thumb-width)/ 2)}.smart-tank[thumb-label-position=far] .smart-thumb:before{border:1px solid var(--smart-primary);border-radius:50% 50% 50% 0}.smart-tank[thumb-label-position=far]:focus .smart-thumb{left:calc(100% + var(--smart-tank-thumb-width)/ 2 + 2px)}.smart-tank[scale-position=none] .smart-track{height:100%;width:100%;position:relative;border:var(--smart-border) solid;border-width:var(--smart-border-width);margin:0}.smart-tank[scale-position=none]:focus .smart-track{border-style:solid;border-color:var(--smart-outline);border-width:var(--smart-border-width)}.smart-tank[scale-position=none][tooltip-position=near] .smart-tooltip{top:calc(-1 * var(--smart-tank-tooltip-height)/ 2)}.smart-tank[scale-position=both] .smart-track{width:calc(100% - 2 * var(--smart-tank-scale-size) - 4px)}.smart-tank[scale-position=both] .smart-scale{width:var(--smart-tank-scale-size);height:100%;max-width:47%}.smart-tank[orientation=vertical][thumb-label-position=far] .smart-thumb:before{border:1px solid var(--smart-primary);border-radius:50% 50% 50% 0}.smart-tank[orientation=vertical]:not([animation=none]) .smart-value{transition:height .15s ease-out,margin-top .15s ease-out}.smart-tank[orientation=vertical]:not([animation=none]) .smart-value.disable-animation{transition:none}.smart-tank[orientation=horizontal]{padding-top:5px;padding-bottom:5px;padding-left:initial;padding-right:initial}.smart-tank[orientation=horizontal]:active .smart-track{cursor:w-resize}.smart-tank[orientation=horizontal] .smart-track{height:calc(100% - var(--smart-tank-scale-size) - 4px);min-height:var(--smart-tank-minimum-track-size);width:100%;background-color:transparent;margin-top:2px;margin-bottom:2px}.smart-tank[orientation=horizontal] .smart-value{height:100%;width:0}.smart-tank[orientation=horizontal] .smart-thumb{margin-left:calc(-1 * var(--smart-tank-thumb-width)/ 2)}.smart-tank[orientation=horizontal] .smart-thumb:before{border-radius:50% 50% 0}.smart-tank[orientation=horizontal] .smart-scale{width:100%;float:left;height:calc(var(--smart-tank-scale-size));margin-left:var(--smart-border-width)}.smart-tank[orientation=horizontal] .smart-scale-near .smart-tick{bottom:0;right:initial}.smart-tank[orientation=horizontal] .smart-scale-near .smart-label{bottom:calc(var(--smart-tank-tick-size) + 2px);right:initial}.smart-tank[orientation=horizontal] .smart-scale-far .smart-tick{top:0}.smart-tank[orientation=horizontal] .smart-scale-far .smart-label{top:calc(var(--smart-tank-tick-size) + 2px);left:initial}.smart-tank[orientation=horizontal] .smart-tooltip{top:calc(-1 * var(--smart-tank-tooltip-height) - 12px);left:calc(100% - var(--smart-tank-tooltip-width)/ 2)}.smart-tank[orientation=horizontal] .smart-tooltip:before{content:"";width:0;height:0;border-left:6px solid transparent;border-right:6px solid transparent;border-top:6px solid var(--smart-border);position:absolute;top:100%;left:calc(var(--smart-tank-tooltip-width)/ 2 - 6px)}.smart-tank[orientation=horizontal] .smart-tick{float:left;width:1px;height:var(--smart-tank-tick-size)}.smart-tank[orientation=horizontal] .smart-tick-minor{height:var(--smart-tank-minor-tick-size);width:1px}.smart-tank[orientation=horizontal]:not([animation=none]) .smart-value{transition:width .15s ease-out,margin-left .15s ease-out}.smart-tank[orientation=horizontal]:not([animation=none]) .smart-value.disable-animation{transition:none}.smart-tank[orientation=horizontal][inverted] .smart-tooltip{top:calc(-1 * var(--smart-tank-tooltip-height) - 12px);left:calc(-1 * var(--smart-tank-tooltip-width)/ 2)}.smart-tank[orientation=horizontal][inverted]:focus .smart-thumb{left:calc(-1 * var(--smart-tank-thumb-width)/ 2)}.smart-tank[orientation=horizontal][inverted][tooltip-position=far] .smart-tooltip{left:calc(-1 * var(--smart-tank-tooltip-width)/ 2);top:calc(100% + 12px)}.smart-tank[orientation=horizontal][ticks-visibility=none] .smart-scale-near .smart-label{bottom:2px}.smart-tank[orientation=horizontal][ticks-visibility=none] .smart-scale-far .smart-label{top:2px;left:initial}.smart-tank[orientation=horizontal][ticks-position=track] .smart-tick{height:100%;width:1px}.smart-tank[orientation=horizontal][ticks-position=track] .smart-tick-minor{height:80%;top:50%;transform:translateY(-50%)}.smart-tank[orientation=horizontal][ticks-position=track] .smart-scale-near .smart-label{bottom:2px}.smart-tank[orientation=horizontal][ticks-position=track] .smart-scale-far .smart-label{top:2px;left:initial}.smart-tank[orientation=horizontal][tooltip-position=near][inverted] .smart-tooltip{top:calc(-1 * var(--smart-tank-tooltip-height) - 12px);left:calc(-1 * var(--smart-tank-tooltip-width)/ 2)}.smart-tank[orientation=horizontal][tooltip-position=far] .smart-tooltip{top:calc(100% + 12px);left:calc(100% - var(--smart-tank-tooltip-width)/ 2)}.smart-tank[orientation=horizontal][tooltip-position=far] .smart-tooltip:before{border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid var(--smart-border);border-top:0;position:absolute;left:calc(var(--smart-tank-tooltip-width)/ 2 - 6px);top:-7px}.smart-tank[orientation=horizontal][show-thumb-label]:focus .smart-thumb{left:100%;top:calc(-1 * var(--smart-tank-thumb-height) - var(--smart-tank-thumb-height)/ 2 - 2px)}.smart-tank[orientation=horizontal][show-thumb-label][thumb-label-position=far]:focus .smart-thumb{top:calc(100% + var(--smart-tank-thumb-height)/ 2)}.smart-tank[orientation=horizontal][thumb-label-position=far] .smart-thumb:before{border-radius:0 50% 50%}.smart-tank[orientation=horizontal][thumb-label-position=far]:focus .smart-thumb{left:100%}.smart-tank[orientation=horizontal][scale-position=none] .smart-track{height:100%;width:100%;position:relative;border:var(--smart-border) solid;border-width:var(--smart-border-width);background-color:transparent;margin-top:0;margin-bottom:0}.smart-tank[orientation=horizontal][scale-position=both] .smart-track{height:calc(100% - 2 * var(--smart-tank-scale-size) - 4px)}.smart-tank[orientation=horizontal][scale-position=both] .smart-scale{width:100%;height:var(--smart-tank-scale-size)}@keyframes sideWays{0%{margin-left:-10%}100%{margin-left:55%}}@keyframes animateBubble{0%{margin-top:100%}100%{margin-top:-100%}}smart-tank[right-to-left] .smart-label,smart-tank[right-to-left] .smart-tooltip-content{direction:rtl}smart-tank[right-to-left][show-thumb-label][orientation=horizontal] .smart-thumb{left:calc(-1 * var(--smart-tank-thumb-width)/ 2);margin-left:initial}smart-tank[right-to-left][show-thumb-label][orientation=horizontal][inverted] .smart-thumb{left:100%;margin-left:calc(-1 * var(--smart-tank-thumb-width)/ 2)}smart-tank[right-to-left][show-thumb-label][orientation=horizontal][thumb-label-position=far] .smart-thumb{left:calc(-1 * var(--smart-tank-thumb-width)/ 2)}smart-tank[right-to-left][show-thumb-label][orientation=horizontal][thumb-label-position=far][inverted] .smart-thumb{top:calc(100% - var(--smart-tank-thumb-width)/ 2)}smart-tank[right-to-left][show-thumb-label][orientation=horizontal][thumb-label-position=far][inverted]:focus .smart-thumb{top:calc(100% + var(--smart-tank-thumb-height)/ 2)}smart-tank[right-to-left][show-thumb-label][orientation=horizontal][thumb-label-position=near][inverted] .smart-thumb{top:calc(-1 * var(--smart-tank-thumb-width)/ 2)}smart-tank[right-to-left][show-thumb-label][orientation=horizontal][thumb-label-position=near][inverted]:focus .smart-thumb{top:calc(-1 * var(--smart-tank-thumb-height) - var(--smart-tank-thumb-height)/ 2 - 2px)}
.smart-input-drop-down-menu,input.smart-input{font-size:var(--smart-font-size);font-family:var(--smart-font-family)}input.smart-input{border-width:var(--smart-border-width);background:var(--smart-background);border-style:solid;border-color:var(--smart-border);color:var(--smart-background-color);border-top-left-radius:var(--smart-border-top-left-radius);border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);padding-left:var(--smart-editor-label-padding);padding-right:var(--smart-editor-label-padding);padding-top:0;padding-bottom:0;height:var(--smart-editor-height);outline:0;text-align:var(--smart-text-box-text-align);box-sizing:border-box}input.smart-input:focus{border-color:var(--smart-outline)}input.smart-input:hover{border-color:var(--smart-ui-state-border-hover)}input.smart-input:disabled{border-color:var(--smart-disabled);outline:0}input.smart-input::selection{background:var(--smart-editor-selection);color:var(--smart-editor-selection-color)}textarea.smart-input::selection{background:var(--smart-editor-selection);color:var(--smart-editor-selection-color)}.smart-input-drop-down-menu,.smart-text-area-mention-menu{margin:var(--smart-list-item-vertical-offset) var(--smart-list-item-horizontal-offset);background-color:var(--smart-background);box-shadow:var(--smart-elevation-8)}.smart-input-drop-down-menu{display:block;transform:scaleY(0);transform-origin:top left;opacity:0;position:absolute;top:100%;left:0;z-index:var(--smart-editor-drop-down-z-index);float:left;padding:2px;color:var(--smart-background-color);border:1px solid var(--smart-border);border-top-left-radius:var(--smart-border-top-left-radius);border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);overflow:hidden;width:auto;height:auto;--smart-input-drop-down-menu-width:auto;--smart-input-drop-down-menu-height:200px;min-height:0}.smart-input-drop-down-menu[top]{transform-origin:bottom}.smart-input-drop-down-menu:not([animation=none]){transition:opacity .2s,transform .2s ease-out}.smart-input-drop-down-menu.smart-container{box-shadow:none;padding:0;margin:0}.smart-input-drop-down-menu .smart-scroll-viewer-container,.smart-input-drop-down-menu .smart-scroll-viewer-content-container,.smart-input-drop-down-menu>.smart-container{width:var(--smart-input-drop-down-menu-width);max-height:calc(var(--smart-input-drop-down-menu-height) - 6px)}.smart-input-drop-down-menu .smart-scroll-viewer-content-container{padding:0;max-height:initial}.smart-input-drop-down-menu ul{list-style:none;padding:0;margin:0;width:100%;height:auto}.smart-input-drop-down-menu ul.scroll{width:calc(100% - var(--smart-scroll-bar-size) - 2px)}.smart-input-drop-down-menu ul li{padding-bottom:1px}.smart-input-drop-down-menu ul li:last-child{padding-bottom:0}.smart-input-drop-down-menu ul li a{display:block;padding:8px 12px;border-top-left-radius:var(--smart-item-border-top-left-radius);border-top-right-radius:var(--smart-item-border-top-right-radius);border-bottom-left-radius:var(--smart-item-border-bottom-left-radius);border-bottom-right-radius:var(--smart-item-border-bottom-right-radius);clear:both;font-weight:400;white-space:nowrap;color:var(--smart-background-color);text-decoration:none;-webkit-user-select:none;user-select:none}.smart-input-drop-down-menu ul li a:hover{color:var(--smart-ui-state-color-hover);background:var(--smart-ui-state-hover)}.smart-input-drop-down-menu ul li a.icon{position:relative;padding-left:var(--smart-column-icon-size)}.smart-input-drop-down-menu ul li a.icon:after{content:"";position:absolute;left:0;top:0;width:var(--smart-column-icon-size);height:100%;background-repeat:no-repeat;background-position:center}.smart-input-drop-down-menu:not(.smart-check-input-drop-down-menu) li.active a{color:var(--smart-ui-state-color-focus);background:var(--smart-ui-state-focus);text-decoration:none;outline:0}.smart-input-drop-down-menu[open]{transform:scale(1);opacity:1}.smart-multi-combo-input-scroll-viewer .smart-scroll-viewer-content-container{width:var(--smart-input-drop-down-menu-width);max-height:initial}.smart-multi-combo-input-scroll-viewer .smart-scroll-viewer-container,.smart-multi-combo-input-scroll-viewer>.smart-container{width:var(--smart-input-drop-down-menu-width);max-height:calc(var(--smart-input-drop-down-menu-height) - 6px)}.smart-drop-down smart-list-item[focus] .smart-overlay{background-color:var(--smart-ui-state-focus)}.smart-drop-down smart-list-item[focus] .smart-content{color:var(--smart-ui-state-color-focus);border-color:var(--smart-ui-state-border-focus)}.smart-drop-down smart-list-item[focus][selected] .smart-overlay{background-color:var(--smart-ui-state-selected)}.smart-drop-down smart-list-item[focus][selected] .smart-content{color:var(--smart-ui-state-color-selected);border-color:var(--smart-ui-state-border-selected)}.smart-text-box:focus.hovered input,smart-text-box input:hover,smart-text-box:focus input.hovered,smart-text-box[hover] input{border-color:var(--smart-ui-state-border-hover)}smart-text-box{--smart-outline:var(--smart-primary);display:inline-block;border:none;width:var(--smart-text-box-default-width);height:var(--smart-text-box-default-height);overflow:visible;background:var(--smart-background)}smart-text-box input::selection{background:var(--smart-editor-selection);color:var(--smart-editor-selection-color)}.smart-text-area textarea.smart-input,smart-text-area,smart-text-box.smart-element{background:var(--smart-background)}smart-text-box[disabled]{border-color:var(--smart-disabled);outline:0}smart-text-box input:focus{border-color:var(--smart-outline)}.smart-text-box .smart-container,.smart-text-box input,.smart-text-box.smart-container{width:100%;height:100%;color:inherit;font-family:inherit;position:relative;overflow:visible}.smart-text-box>.smart-container>.smart-content{height:100%}.smart-text-box>.smart-container>.smart-content>div{width:100%;height:100%;outline:0;border-width:var(--smart-border-width);border-style:solid;border-color:var(--smart-border);border-top-left-radius:var(--smart-border-top-left-radius);border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);padding:var(--smart-editor-label-padding);color:inherit;font-family:inherit;font-size:inherit;background-color:transparent;font-weight:inherit;font-style:inherit;overflow:hidden}.smart-text-box>.smart-container>.smart-content>div>label{color:transparent}.smart-text-box>.smart-container>.smart-content>div:first-of-type{position:absolute;display:flex;width:initial;height:initial;-webkit-user-select:none;user-select:none;pointer-events:none;min-height:initial;max-height:initial;align-items:center;padding-top:1px;padding-bottom:1px;opacity:.5;text-overflow:ellipsis;white-space:nowrap;border:var(--smart-border-width) solid transparent}.smart-text-box[disabled] input,.smart-text-box[readonly] input{user-select:none;-webkit-user-select:none;-ms-user-select:none;-moz-user-select:none}.smart-text-box .smart-hint,.smart-text-box .smart-label{display:none;position:absolute}.smart-text-box[hint] .smart-hint,.smart-text-box[label] .smart-label{position:absolute;font-size:12px;width:100%;display:block;padding:var(--smart-editor-label-padding);text-align:initial;line-height:initial;vertical-align:initial;left:0;pointer-events:none}.smart-text-box[label] .smart-label{bottom:100%;user-select:none;-webkit-user-select:none;-ms-user-select:none;-moz-user-select:none}.smart-text-box[hint] .smart-hint{user-select:none;-webkit-user-select:none;-ms-user-select:none;-moz-user-select:none;opacity:0;transition:opacity .2s cubic-bezier(.4,0,.6,1);top:100%;bottom:initial}smart-input,smart-text-area{display:inline-block;overflow:visible}.smart-text-box[hint][focus] .smart-hint{opacity:1;transition:opacity .2s cubic-bezier(.4,0,.2,1)}.smart-text-box .smart-drop-down{font-family:inherit}.smart-text-box[right-to-left] .smart-hint,.smart-text-box[right-to-left] .smart-label,.smart-text-box[right-to-left]>.smart-container>.smart-content{direction:rtl}smart-text-area{--smart-outline:var(--smart-primary);width:var(--smart-text-box-default-width);border:1px solid var(--smart-border);border-top-left-radius:var(--smart-border-top-left-radius);border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);height:calc(1.5 * var(--smart-text-box-default-height))}smart-text-area textarea{margin:0;resize:none}smart-text-area textarea.smart-input{border:none;text-overflow:ellipsis}.smart-text-area .smart-container{width:100%;height:100%;color:inherit;font-family:inherit;position:relative;overflow:visible}.smart-text-area textarea.smart-input,.smart-text-area-mention-menu{color:var(--smart-background-color);font-size:var(--smart-font-size)}.smart-text-area textarea.smart-input{font-family:var(--smart-font-family);border-top-left-radius:var(--smart-border-top-left-radius);border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);padding-top:0;padding-bottom:0;padding:var(--smart-editor-label-padding);outline:0;text-align:var(--smart-text-box-text-align);box-sizing:border-box;border:none;height:100%;width:100%}.smart-text-area-mention-menu{padding:2px;border:1px solid var(--smart-border);border-top-left-radius:var(--smart-border-top-left-radius);border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);font-family:var(--smart-font-family);position:absolute;z-index:999999}.smart-text-area-mention-menu .smart-text-area-mention-menu-item{padding:5px}.smart-text-area-mention-menu .smart-text-area-mention-menu-item.selected,.smart-text-area-mention-menu .smart-text-area-mention-menu-item:hover{cursor:pointer;color:var(--smart-ui-state-color-hover);background:var(--smart-ui-state-hover)}smart-input,smart-input.smart-element{background:var(--smart-background)}.smart-mention-trigger{font-size:12px;opacity:.8}smart-input{--smart-outline:var(--smart-primary);width:var(--smart-text-box-default-width);height:var(--smart-text-box-default-height);border:1px solid var(--smart-border);border-top-left-radius:var(--smart-border-top-left-radius);border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius)}smart-input>option{display:none}.smart-input.smart-container,smart-input>.smart-container{display:flex}smart-input input::selection{background:var(--smart-editor-selection);color:var(--smart-editor-selection-color)}smart-input input.smart-input{border:none;text-overflow:ellipsis}smart-input:focus{border-color:var(--smart-outline)}smart-input:hover{border-color:var(--smart-ui-state-border-hover)}smart-input[disabled]{border-color:var(--smart-disabled);outline:0}smart-input[drop-down-button-position=right] .smart-input{width:calc(100% - var(--smart-editor-addon-width))}.smart-input .smart-container,.smart-input.smart-container{width:100%;height:100%;color:inherit;font-family:inherit;position:relative;overflow:visible}.smart-input .smart-drop-down-button,.smart-input[readonly]:not(.underlined):not(.outlined):not([opened]):not(:active) input.smart-input,.smart-input[readonly]:not(.underlined):not(.outlined):not([opened]):not(:active) textarea.smart-input{background:var(--smart-surface);color:var(--smart-surface-color)}.smart-input .smart-drop-down-button{display:none;width:var(--smart-editor-addon-width);height:100%;flex-direction:column;border-left:1px solid var(--smart-border);border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);outline:0}.smart-input .smart-drop-down-button .arrow{display:flex;height:100%;overflow:hidden;cursor:pointer;font-family:var(--smart-font-family-icon);justify-content:center;align-items:center;font-size:var(--smart-arrow-size);outline:0}.smart-input .smart-drop-down-button .arrow:after{content:var(--smart-icon-arrow-down);transition:opacity .2s,transform .2s ease-out}.smart-input .smart-drop-down-button[open] .arrow:after{transform:rotate(-180deg)}.smart-input .smart-input{border:none;padding:var(--smart-editor-label-padding);height:100%;width:100%}.smart-input[drop-down-button-position=left] .smart-drop-down-button,.smart-input[drop-down-button-position=right] .smart-drop-down-button{display:flex}.smart-input[drop-down-button-position=left] .smart-input,.smart-input[drop-down-button-position=right] .smart-input{width:calc(100% - var(--smart-editor-addon-width))}.smart-input[drop-down-button-position=left][disabled] .smart-drop-down-button,.smart-input[drop-down-button-position=right][disabled] .smart-drop-down-button{opacity:.5}.smart-input[drop-down-button-position=left] .smart-drop-down-button{order:-1;border-right:1px solid var(--smart-border);border-left:none;border-top-right-radius:0;border-bottom-right-radius:0;border-top-left-radius:var(--smart-border-top-left-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius)}.smart-input[drop-down-button-position=left] .smart-input,.smart-input[right-to-left][drop-down-button-position=right] .smart-input{border-top-left-radius:0;border-bottom-left-radius:0}.smart-input[drop-down-button-position=left][readonly] .smart-drop-down-button{border-right:none}.smart-input[drop-down-button-position=right] .smart-input{border-top-right-radius:0;border-bottom-right-radius:0}.smart-input[focus],.smart-input[focus]:not([disabled]) .smart-drop-down-button{border-color:var(--smart-outline)}.smart-input[readonly] .smart-drop-down-button{border-left:none}.smart-input[readonly]:not(.underlined):not(.outlined) input.smart-input,.smart-input[readonly]:not(.underlined):not(.outlined) textarea.smart-input{padding:0;cursor:pointer;padding-left:var(--smart-editor-label-padding);outline:0}.smart-input:not([disabled]) .smart-drop-down-button:hover,.smart-input:not([disabled])[readonly]:hover .smart-drop-down-button,.smart-input:not([disabled])[readonly]:hover .smart-input{background:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover)}.smart-input:not([disabled]) .smart-drop-down-button:active,.smart-input:not([disabled]) .smart-drop-down-button[open],.smart-input:not([disabled])[readonly]:active .smart-drop-down-button,.smart-input:not([disabled])[readonly]:active .smart-input,.smart-input:not([disabled])[readonly][open] .smart-drop-down-button,.smart-input:not([disabled])[readonly][open] .smart-input{background:var(--smart-ui-state-active);color:var(--smart-ui-state-color-active)}smart-number-input,smart-number-input.smart-element{background:var(--smart-background)}.smart-input:not([disabled])[readonly]:active .smart-input::-webkit-input-placeholder,.smart-input:not([disabled])[readonly][open] .smart-input::-webkit-input-placeholder{color:var(--smart-ui-state-color-active)}.smart-input:not([disabled])[readonly]:active .smart-input::-moz-placeholder,.smart-input:not([disabled])[readonly][open] .smart-input::-moz-placeholder{color:var(--smart-ui-state-color-active)}.smart-input[disabled] .smart-drop-down-button .arrow{cursor:initial}.smart-input[right-to-left] .smart-input{direction:rtl}.smart-input[right-to-left][readonly] .smart-drop-down-button{border-right:none;border-top-right-radius:0;border-bottom-right-radius:0}.smart-input[right-to-left][readonly] .smart-input,.smart-input[right-to-left][readonly]:not(.underlined):not(.outlined) .smart-input{padding-left:initial;padding-right:var(--smart-editor-label-padding)}.smart-input-drop-down-menu[right-to-left] ul.scroll{width:100%}.smart-input-drop-down-menu[right-to-left] li a.icon{padding-left:initial;padding-right:var(--smart-column-icon-size)}.smart-input-drop-down-menu[right-to-left] li a.icon:after{left:initial;right:0}smart-number-input{--smart-outline:var(--smart-primary);display:inline-block;width:var(--smart-text-box-default-width);height:var(--smart-text-box-default-height);overflow:visible;border:1px solid var(--smart-border);border-top-left-radius:var(--smart-border-top-left-radius);border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);text-align:right}smart-number-input>.smart-container{display:flex}.smart-number-input .nav,.smart-number-input .nav.smart-drop-down-button:active,.smart-number-input .nav.smart-drop-down-button:hover,.smart-number-input .nav:active,.smart-number-input .nav:hover{background:var(--smart-surface);color:var(--smart-surface-color)}smart-number-input input.smart-input{border:none;text-overflow:ellipsis}.smart-multi-combo-input-drop-down-menu .smart-select-all,.smart-number-input .nav .up{border-bottom:var(--smart-border-width) solid var(--smart-border)}smart-number-input[drop-down-button-position=right] .smart-input{width:calc(100% - var(--smart-editor-addon-width))}.smart-number-input .nav{display:flex;width:var(--smart-editor-addon-width);height:100%;flex-direction:column;border-left:1px solid var(--smart-border)}smart-multi-input,smart-password-input{width:var(--smart-text-box-default-width)}.smart-number-input .nav .down,.smart-number-input .nav .up{display:flex;height:50%;overflow:hidden;cursor:pointer;font-family:var(--smart-font-family-icon);justify-content:center;align-items:center;outline:0}.smart-check-input .smart-container,.smart-multi-combo-input .smart-container,.smart-multi-input .smart-container,.smart-password-input .smart-container{font-family:inherit;position:relative;overflow:visible}.smart-number-input .nav .down:hover,.smart-number-input .nav .up:hover{background:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover)}.smart-number-input .nav .down:active,.smart-number-input .nav .down[active],.smart-number-input .nav .up:active,.smart-number-input .nav .up[active]{background:var(--smart-ui-state-active);color:var(--smart-ui-state-color-active)}smart-password-input,smart-password-input.smart-element{background:var(--smart-background)}.smart-number-input .nav .up:after{content:var(--smart-icon-arrow-up)}.smart-number-input .nav .down:after{content:var(--smart-icon-arrow-down)}.smart-number-input[disabled] .nav .down,.smart-number-input[disabled] .nav .up{pointer-events:none}.smart-number-input[right-to-left]>.smart-container{direction:rtl}.smart-number-input[right-to-left] .nav{border-left:initial;border-right:var(--smart-border-width) solid var(--smart-border);border-top-left-radius:var(--smart-border-top-right-radius);border-bottom-left-radius:var(--smart-border-bottom-right-radius);border-top-right-radius:initial;border-bottom-right-radius:initial;order:initial}.smart-number-input[right-to-left] .smart-input{border-top-left-radius:initial;border-bottom-left-radius:initial;border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius)}.smart-number-input[right-to-left][focus] .nav{border-color:var(--smart-outline)}smart-password-input{--smart-outline:var(--smart-primary);display:inline-block;height:var(--smart-text-box-default-height);overflow:visible;border:1px solid var(--smart-border);border-top-left-radius:var(--smart-border-top-left-radius);border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius)}smart-password-input>.smart-container{display:flex}smart-password-input input.smart-input{border:none;text-overflow:ellipsis}.smart-password-input input::-ms-clear,.smart-password-input input::-ms-reveal{display:none}.smart-password-input .smart-container{width:100%;height:100%;color:inherit}.smart-password-input .smart-drop-down-button{background:0 0;border-color:transparent;display:block;border-left:none}.smart-password-input .smart-drop-down-button:active,.smart-password-input .smart-drop-down-button:hover,.smart-password-input .smart-drop-down-button[active]{color:var(--smart-primary)!important;background:0 0!important;border-color:transparent!important}smart-multi-input,smart-multi-input.smart-element{background:var(--smart-background)}.smart-password-input .smart-drop-down-button .arrow:after{color:var(--smart-background-color);content:var(--smart-icon-visibility)}.smart-password-input .smart-drop-down-button .arrow.off:after{color:var(--smart-background-color);content:var(--smart-icon-visibility-off)}smart-multi-input{--smart-outline:var(--smart-primary);display:inline-block;height:var(--smart-text-box-default-height);overflow:visible;border:1px solid var(--smart-border);border-top-left-radius:var(--smart-border-top-left-radius);border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius)}smart-multi-input>option{display:none}smart-multi-input>.smart-container{display:flex}smart-multi-input input::selection{background:var(--smart-editor-selection);color:var(--smart-editor-selection-color)}smart-multi-input input.smart-input{border:none;text-overflow:ellipsis}smart-multi-input:focus,smart-multi-input[focus]{border-color:var(--smart-outline)}smart-multi-input:hover{border-color:var(--smart-ui-state-border-hover)}smart-multi-input[disabled]{border-color:var(--smart-disabled);outline:0}smart-multi-input[drop-down-button-position=left] .smart-input,smart-multi-input[drop-down-button-position=right] .smart-input{width:calc(100% - var(--smart-editor-addon-width))}.smart-multi-input .smart-container{width:100%;height:100%;color:inherit}.smart-multi-input-drop-down-menu li a{border-left:var(--smart-border-width) solid transparent}.smart-multi-input-drop-down-menu:not(.smart-check-input-drop-down-menu) li.active a{border-left:var(--smart-border-width) solid var(--smart-primary);border-top-left-radius:0;border-bottom-left-radius:0;color:var(--smart-ui-state-color-selected);background:var(--smart-ui-state-selected)}smart-multi-combo-input,smart-multi-combo-input.smart-element{background:var(--smart-background)}.smart-multi-input-drop-down-menu[right-to-left] li a{border-left:none;border-right:var(--smart-border-width) solid transparent}.smart-multi-input-drop-down-menu[right-to-left]:not(.smart-check-input-drop-down-menu) li.active a{border-left:var(--smart-border-width) solid transparent;border-right:var(--smart-border-width) solid var(--smart-primary);border-top-left-radius:var(--smart-border-top-left-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-top-right-radius:0;border-bottom-right-radius:0}smart-multi-combo-input{--smart-outline:var(--smart-primary);display:inline-block;width:var(--smart-text-box-default-width);height:var(--smart-text-box-default-height);overflow:visible;border:1px solid var(--smart-border);border-top-left-radius:var(--smart-border-top-left-radius);border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius)}smart-multi-combo-input>option{display:none}smart-multi-combo-input>.smart-container{display:flex}smart-multi-combo-input input::selection{background:var(--smart-editor-selection);color:var(--smart-editor-selection-color)}smart-multi-combo-input input.smart-input{border:none;text-overflow:ellipsis}smart-multi-combo-input:hover{border-color:var(--smart-ui-state-border-hover)}smart-multi-combo-input[focus]{border-color:var(--smart-outline)}.smart-multi-combo-input{height:var(--smart-editor-height);min-height:var(--smart-editor-height)}.smart-multi-combo-input:not([input-tags-mode=one]):not(.smart-grid-cell-editor){height:auto!important}.smart-multi-combo-input .smart-container{width:100%;height:100%;color:inherit}.smart-multi-combo-input .smart-drop-down-button,.smart-multi-combo-input .smart-drop-down-button .arrow,.smart-multi-combo-input>.smart-container{min-height:var(--smart-editor-height)}.smart-multi-combo-input .smart-token{position:relative;white-space:nowrap;text-overflow:ellipsis;cursor:pointer;-webkit-user-select:none;user-select:none;display:flex;align-items:center;padding:1px 6px;border-radius:20px;background-color:var(--smart-primary);color:var(--smart-primary-color);margin:0;height:22px}.smart-multi-combo-input .smart-token .smart-drop-down-list-selection-label{text-overflow:ellipsis;overflow:hidden}.smart-multi-combo-input .smart-token .smart-drop-down-list-selection-image{display:flex;justify-content:center;align-items:center;border-radius:50%;width:20px;height:20px;background-position:center;background-repeat:no-repeat;background-size:cover;margin-right:4px;transform:scale(1.3);left:-3px;position:relative}.smart-multi-combo-input .smart-token .smart-drop-down-list-selection-image:hover{transform:scale(1.5)}.smart-multi-combo-input .smart-action-button{display:flex;outline:transparent solid 1px;height:100%;width:100%;flex-wrap:wrap;overflow:hidden;position:relative;-webkit-user-select:none;user-select:none;border-top-left-radius:var(--smart-border-top-left-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);min-height:var(--smart-editor-height);align-items:center}.smart-multi-combo-input .smart-drop-down-list-unselect-button{position:relative;margin-left:2px;margin-right:-2px}.smart-multi-combo-input .smart-drop-down-list-unselect-button:after{content:var(--smart-icon-close);display:flex;justify-content:center;align-items:center;transform-origin:center;font-family:var(--smart-font-family-icon);background:rgba(var(--smart-primary-rgb),.2);border-radius:50%;width:20px;height:20px}.smart-multi-combo-input.smart-input .smart-input{flex-grow:1;align-self:center;width:var(--smart-editor-addon-width);min-width:var(--smart-editor-addon-width);min-height:100%;max-height:1rem;vertical-align:middle;margin:0}.smart-multi-combo-input.smart-input .smart-drop-down-button{height:initial}.smart-multi-combo-input[drop-down-button-position=left] .smart-action-button,.smart-multi-combo-input[drop-down-button-position=right] .smart-action-button{width:calc(100% - var(--smart-editor-addon-width))}.smart-multi-combo-input[input-tags-mode=one] .smart-action-button{align-items:center}.smart-multi-combo-input[readonly] .smart-input{visibility:hidden}.smart-multi-combo-input[readonly] .smart-action-button{background:var(--smart-surface);color:var(--smart-surface-color)}.smart-multi-combo-input[readonly][open] .smart-action-button,.smart-multi-combo-input[readonly][open] .smart-drop-down-button{background:var(--smart-ui-state-hover)!important;color:var(--smart-ui-state-color-hover)!important}.smart-multi-combo-input[readonly]:hover .smart-action-button{background:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover)}.smart-multi-combo-input[hide-input-tags-close-button] .smart-drop-down-list-unselect-button:after{display:none}.smart-multi-combo-input[right-to-left] .smart-token{margin:var(--smart-editor-label-padding) var(--smart-editor-label-padding) 0 0;padding:1px 6px 1px 2px}.smart-multi-combo-input[right-to-left] .smart-token:last-of-type{margin:var(--smart-editor-label-padding) var(--smart-editor-label-padding) var(--smart-editor-label-padding) 0}.smart-multi-combo-input[right-to-left] .smart-action-button{direction:rtl}.smart-multi-combo-input[right-to-left] .smart-drop-down-list-unselect-button{margin:0 5px 0 0}.smart-multi-combo-input-drop-down-menu .smart-scroll-viewer{width:inherit;height:inherit;padding:initial;min-height:inherit;border:initial}.smart-multi-combo-input-drop-down-menu .close-button:after{font-family:var(--smart-font-family-icon);content:var(--smart-icon-close);margin-left:5px}.smart-multi-combo-input-drop-down-menu .add-new-item{display:grid;grid-template-columns:1fr var(--smart-text-box-default-height);grid-column-gap:5px;margin-left:7px;margin-right:7px;height:36px}.smart-multi-combo-input-drop-down-menu .add-new-item input{height:30px}.smart-multi-combo-input-drop-down-menu .add-new-item smart-button{justify-content:center;align-content:center;height:30px}.smart-multi-combo-input-drop-down-menu .add-new-item button{padding:0;display:flex;align-items:center;justify-content:center}.smart-multi-combo-input-drop-down-menu .add-new-item button:after{font-family:var(--smart-font-family-icon);content:var(--smart-icon-plus)}.smart-multi-combo-input-drop-down-menu .smart-select-all{height:auto}.smart-multi-combo-input-drop-down-menu[right-to-left]>ul{direction:rtl}.smart-multi-combo-input-drop-down-menu ul li a{display:flex;align-items:center}.smart-multi-combo-input-drop-down-menu ul li a .smart-drop-down-list-selection-image{display:flex;justify-content:center;align-items:center;width:25px;height:25px;background-position:center;background-repeat:no-repeat;background-size:cover;margin-right:4px;border-radius:50%;border:1px solid var(--smart-border)}.smart-multi-combo-input-drop-down-menu[pills] ul li:after,.smart-multi-combo-input-drop-down-menu[pills] ul li:before,.smart-multi-combo-input-drop-down-menu[single-select] ul li.selected:after,.smart-multi-combo-input-drop-down-menu[single-select] ul li::after,.smart-multi-combo-input-drop-down-menu[single-select] ul li:hover:after{display:none}.smart-multi-combo-input-drop-down-menu[single-select] ul li{height:36px;margin-top:1px;cursor:pointer}.smart-multi-combo-input-drop-down-menu[single-select] ul li a{padding:0 0 0 6px;height:100%}.smart-multi-combo-input-drop-down-menu[single-select] ul li.selected,.smart-multi-combo-input-drop-down-menu[single-select] ul li:hover{background:var(--smart-ui-state-hover);border-color:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover)}.smart-multi-combo-input-drop-down-menu[pills] ul li{height:30px;margin-top:1px}.smart-multi-combo-input-drop-down-menu[pills] ul li a{padding:2px 10px;color:inherit;display:inline-flex;align-items:center;border-radius:15px!important;margin-top:5px;margin-left:5px;height:auto;background:var(--smart-primary);border-color:var(--smart-primary);color:var(--smart-primary-color)}.smart-multi-combo-input-drop-down-menu[pills] ul li a .smart-drop-down-list-selection-image{height:20px;width:20px}.smart-multi-combo-input-drop-down-menu[pills] ul li.focused a{background:var(--smart-primary)!important;border-color:var(--smart-primary)!important;color:var(--smart-primary-color)!important}.smart-multi-combo-input-drop-down-menu[pills] ul li.focused,.smart-multi-combo-input-drop-down-menu[pills] ul li.selected,.smart-multi-combo-input-drop-down-menu[pills] ul li:hover{background:var(--smart-ui-state-hover);border-color:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover)}smart-check-input,smart-check-input.smart-element{background:var(--smart-background)}.smart-multi-combo-input-drop-down-menu[pills] ul li.active.selected:before,.smart-multi-combo-input-drop-down-menu[pills] ul li.focused:after,.smart-multi-combo-input-drop-down-menu[pills] ul li.selected:after,.smart-multi-combo-input-drop-down-menu[pills] ul li:hover:after{display:none}smart-check-input{--smart-outline:var(--smart-primary);display:inline-block;width:var(--smart-text-box-default-width);height:var(--smart-text-box-default-height);overflow:visible;border:1px solid var(--smart-border);border-top-left-radius:var(--smart-border-top-left-radius);border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius)}smart-check-input>option{display:none}smart-check-input>.smart-container{display:flex}smart-check-input input::selection{background:var(--smart-editor-selection);color:var(--smart-editor-selection-color)}smart-check-input input.smart-input{border:none;text-overflow:ellipsis}smart-check-input:hover{border-color:var(--smart-ui-state-border-hover)}smart-check-input[disabled]{border-color:var(--smart-disabled);outline:0}smart-check-input:focus,smart-check-input[focus]{border-color:var(--smart-outline)}smart-check-input[drop-down-button-position=left] .smart-input,smart-check-input[drop-down-button-position=right] .smart-input{width:calc(100% - var(--smart-editor-addon-width))}.smart-check-input .smart-container{width:100%;height:100%;color:inherit}.smart-check-input-drop-down-menu ul li{position:relative}.smart-check-input-drop-down-menu ul li:before{content:"";transform:scale(0);background-color:#fff}.smart-check-input-drop-down-menu ul li:after{content:"";position:absolute;border:var(--smart-border-width) solid var(--smart-border);border-top-left-radius:var(--smart-border-top-left-radius);border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);width:var(--smart-check-box-default-size);height:var(--smart-check-box-default-size);padding:1px;margin-left:10px;font-family:var(--smart-font-family-icon);justify-content:center;align-items:center;display:flex;top:50%;transform:translateY(-50%);pointer-events:none;box-sizing:content-box}.smart-check-input-drop-down-menu ul li a{padding-left:calc(var(--smart-tree-indent) + 25px)}.smart-check-input-drop-down-menu ul li.selected:after{content:var(--smart-icon-check);background:var(--smart-primary);border-color:var(--smart-primary);color:var(--smart-primary-color)}.smart-check-input-drop-down-menu ul li.selected.color:after{content:""}.smart-check-input-drop-down-menu ul li.active.selected:before{position:absolute;content:"";border-radius:50%;width:calc(var(--smart-check-box-default-size) + 16px);height:calc(var(--smart-check-box-default-size) + 16px);background:var(--smart-primary);opacity:.3;margin-left:4px;top:50%;transform:scale(1) translateY(-50%);transform-origin:top}smart-color-input,smart-date-input,smart-date-range-input,smart-time-input{width:var(--smart-text-box-default-width);height:var(--smart-text-box-default-height);display:inline-block}.smart-check-input-drop-down-menu ul li.active.focused a{border-left:var(--smart-border-width) solid var(--smart-primary);border-top-left-radius:0;border-bottom-left-radius:0;color:var(--smart-ui-state-color-selected);background:var(--smart-ui-state-selected)}.smart-check-input-drop-down-menu ul li[indeterminate]:after{background-color:var(--smart-ui-state-selected);padding:2px;background-clip:content-box}.smart-check-input-drop-down-menu[inverted] ul li a,.smart-check-input-drop-down-menu[right-to-left] ul li a{padding-left:10px;padding-right:calc(var(--smart-tree-indent) + 25px)}.smart-check-input-drop-down-menu[inverted] ul li:after{margin-left:initial;margin-right:10px;right:0}.smart-check-input-drop-down-menu[inverted] ul li.selected:before{right:0}.smart-check-input-drop-down-menu[inverted] ul li.active.selected:before{margin-left:initial;margin-right:4px}.smart-check-input-drop-down-menu:not([animation=none]) ul li:before{transition:transform .25s ease-in-out}.smart-check-input-drop-down-menu[right-to-left] ul li:after{margin-left:initial;margin-right:10px}.smart-check-input-drop-down-menu[right-to-left] ul li.active.focused a{border-left:var(--smart-border-width) solid transparent;border-right:var(--smart-border-width) solid var(--smart-primary);border-top-left-radius:var(--smart-border-top-left-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-top-right-radius:0;border-bottom-right-radius:0}.smart-check-input-drop-down-menu[right-to-left] ul li.active.selected:before{margin-left:initial;margin-right:4px}.smart-check-input-drop-down-menu[right-to-left][pills] ul li a{padding-right:initial}smart-color-input{--smart-outline:var(--smart-primary);border:none;overflow:visible;background:var(--smart-background)}smart-color-input[value-display-mode=colorBox] .smart-action-button{cursor:pointer}smart-date-input,smart-date-range-input,smart-time-input{--smart-outline:var(--smart-primary);background:var(--smart-background);border:1px solid var(--smart-border);border-top-left-radius:var(--smart-border-top-left-radius);border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);overflow:hidden}smart-date-input>.smart-container,smart-date-range-input>.smart-container,smart-time-input>.smart-container{display:flex}smart-date-input.smart-element,smart-date-range-input.smart-element,smart-time-input.smart-element{background:var(--smart-background)}smart-date-input[drop-down-button-position=left] .smart-input,smart-date-input[drop-down-button-position=right] .smart-input,smart-date-range-input[drop-down-button-position=left] .smart-input,smart-date-range-input[drop-down-button-position=right] .smart-input,smart-time-input[drop-down-button-position=left] .smart-input,smart-time-input[drop-down-button-position=right] .smart-input{width:calc(100% - var(--smart-editor-addon-width))}smart-date-range-input input::selection{background:var(--smart-editor-selection);color:var(--smart-editor-selection-color)}smart-date-range-input input.smart-input{border:none;text-overflow:ellipsis}smart-date-range-input:focus,smart-date-range-input[focus]{border-color:var(--smart-outline)}.smart-time-box{display:block;height:auto;width:300px;overflow:hidden}.smart-time-box .smart-timepicker{display:grid;grid-template-columns:60% 35%;grid-column-gap:5%;background:var(--smart-background);padding:10px;border-color:var(--smart-border)}.smart-time-box[right-to-left] .smart-timepicker{direction:rtl}.smart-time-input.smart-input .smart-drop-down-button .arrow:after,.smart-time-input.smart-input .smart-drop-down-button[open] .arrow:after{content:var(--smart-icon-clock);transform:rotate(0)}.smart-timepicker .hour-selection,.smart-timepicker .minute-selection{display:grid;grid-template-columns:repeat(5,20%);grid-template-rows:repeat(6,auto);justify-content:center;align-items:center;justify-items:center;position:relative;cursor:default}.smart-timepicker .hour-selection .smart-calendar-cell,.smart-timepicker .minute-selection .smart-calendar-cell{margin:initial;line-height:var(--smart-calendar-cell-size);display:flex;justify-content:center;align-items:center;width:32px;height:32px;box-sizing:border-box;border-radius:100%}.smart-date-range-input-drop-down-menu .smart-done-button,.smart-date-range-input-drop-down-menu .smart-today-button,.smart-date-range-input-drop-down-menu smart-button:last-of-type{margin-right:5px}.smart-timepicker .hour-selection .header,.smart-timepicker .minute-selection .header{content:attr(header-label);width:100%;display:flex;justify-content:center;align-items:center;grid-row:1/3;grid-column:1/6;font-weight:600;height:var(--smart-calendar-cell-size);line-height:calc(var(--smart-calendar-cell-size) - 2px)}.smart-timepicker .minute-selection{border-right:var(--smart-border-width) solid var(--smart-border);grid-template-columns:repeat(2,50%);border-left:var(--smart-border-width) solid var(--smart-border)}.smart-timepicker .minute-selection .header{grid-column:span 2}.smart-timepicker .hour-selection:after,.smart-timepicker .hour-selection:before{content:attr(am-label);width:100%;display:flex;justify-content:center;grid-column:1;font-weight:600;height:var(--smart-calendar-cell-size);line-height:calc(var(--smart-calendar-cell-size) - 2px)}.smart-date-range-input-drop-down-menu .smart-button-controls,.smart-date-range-input-drop-down-menu .smart-timepicker-button:empty,.smart-date-range-input-drop-down-menu .smart-timepicker-buttons{display:none}.smart-timepicker .hour-selection:after{content:attr(pm-label);grid-row:4/9}.smart-date-input.smart-input .smart-drop-down-button .arrow:after,.smart-date-input.smart-input .smart-drop-down-button[open] .arrow:after,.smart-date-range-input.smart-input .smart-drop-down-button .arrow:after,.smart-date-range-input.smart-input .smart-drop-down-button[open] .arrow:after{content:var(--smart-icon-calendar);transform:rotate(0)}.smart-date-range-input .smart-container{width:100%;height:100%;color:inherit;font-family:inherit;position:relative;overflow:visible}.smart-date-range-input-drop-down-menu smart-button:first-of-type{margin-left:5px}.smart-date-range-input-drop-down-menu .smart-calendar{height:100%;min-width:100%;--smart-calendar-default-height:auto;--smart-calendar-footer-height:0px}.smart-date-range-input-drop-down-menu .smart-clear-button,.smart-date-range-input-drop-down-menu .smart-done-button,.smart-date-range-input-drop-down-menu .smart-today-button{height:auto;--smart-button-padding:5px}.smart-date-range-input-drop-down-menu .smart-calendar-footer{flex-direction:column}.smart-date-range-input-drop-down-menu .smart-date-range-input-footer-controls{width:100%;height:100%}.smart-date-range-input-drop-down-menu .smart-timepicker-button{position:relative;white-space:nowrap}.smart-date-range-input-drop-down-menu .smart-timepicker-button:before{content:var(--smart-icon-clock);height:100%;font-family:var(--smart-font-family-icon);font-weight:var(--smart-font-weight);font-size:var(--smart-arrow-size);margin:0 var(--smart-editor-label-padding)}.smart-date-range-input-drop-down-menu .smart-timepicker-button:hover{color:var(--smart-ui-state-color-hover);border-color:var(--smart-ui-state-hover);background-color:var(--smart-ui-state-hover);transition:background-color .1s linear,color .1s ease-in-out;opacity:var(--smart-button-opacity-hover);cursor:pointer}.smart-date-range-input-drop-down-menu .smart-timepicker-button[selected]{color:var(--smart-ui-state-color-selected)}.smart-date-range-input-drop-down-menu .smart-icon-today:before{content:var(--smart-icon-calendar)}.smart-date-range-input-drop-down-menu .smart-icon-clear:before{content:var(--smart-icon-cancel)}.smart-date-range-input-drop-down-menu .smart-timepicker{position:absolute;top:0;display:grid;grid-template-columns:60% 35%;height:calc(100% - var(--smart-calendar-footer-height));width:100%;grid-column-gap:5%;background:var(--smart-background);box-sizing:border-box;padding:10px;border-color:var(--smart-border);border-top-left-radius:var(--smart-border-top-left-radius);border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);border-width:var(--smart-border-width);border-style:solid;border-bottom:none}.smart-date-range-input-drop-down-menu[icons] smart-calendar,.smart-date-range-input-drop-down-menu[timepicker] smart-calendar{--smart-calendar-footer-height:30px}.smart-date-range-input-drop-down-menu[icons] .smart-timepicker-buttons,.smart-date-range-input-drop-down-menu[timepicker] .smart-timepicker-buttons{display:flex;justify-content:space-around;width:100%;height:100%;align-items:center}.smart-date-range-input-drop-down-menu[timepicker][icons] .smart-date-range-input-footer-controls{display:grid;grid-template-columns:60% 38%;grid-column-gap:2%;justify-items:center}.smart-date-range-input-drop-down-menu.smart-input-drop-down-menu{height:auto;width:var(--smart-input-drop-down-menu-width)}.smart-date-range-input-drop-down-menu.smart-input-drop-down-menu.smart-date-input-drop-down-menu,.smart-date-range-input-drop-down-menu.smart-input-drop-down-menu.smart-date-range-input-drop-down-menu{height:250px}.smart-date-range-input-drop-down-menu:not([timepicker]) .smart-timepicker-buttons{display:none}.smart-date-range-input-drop-down-menu:not([animation=none]) .smart-timepicker{transition:transform .2s cubic-bezier(.4,0,.2,1),visibility .2s cubic-bezier(.4,0,.2,1);transform:scale(1)}.smart-date-range-input-drop-down-menu:not([animation=none]) .smart-timepicker.smart-visibility-hidden{transition:visibility .2s cubic-bezier(.4,0,.6,1),transform .2s cubic-bezier(.4,0,.6,1);transform:scale(0)}.smart-date-range-input-drop-down-menu[right-to-left] .smart-timepicker{direction:rtl}smart-country-input,smart-phone-input{--smart-outline:var(--smart-primary);display:inline-block;width:var(--smart-text-box-default-width);height:var(--smart-text-box-default-height);overflow:visible;background:var(--smart-background);border:1px solid var(--smart-border);border-top-left-radius:var(--smart-border-top-left-radius);border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius)}smart-country-input>.smart-container,smart-phone-input>.smart-container{display:flex}smart-country-input.smart-element,smart-phone-input.smart-element{background:var(--smart-background)}smart-country-input input::selection,smart-phone-input input::selection{background:var(--smart-editor-selection);color:var(--smart-editor-selection-color)}smart-country-input input.smart-input,smart-phone-input input.smart-input{border:none;text-overflow:ellipsis}smart-country-input:focus,smart-country-input[focus],smart-phone-input:focus,smart-phone-input[focus]{border-color:var(--smart-outline)}smart-country-input:hover,smart-phone-input:hover{border-color:var(--smart-ui-state-border-hover)}smart-country-input[disabled],smart-phone-input[disabled]{border-color:var(--smart-disabled);outline:0}smart-country-input[drop-down-button-position=left] .smart-input,smart-country-input[drop-down-button-position=right] .smart-input,smart-phone-input[drop-down-button-position=left] .smart-input,smart-phone-input[drop-down-button-position=right] .smart-input{width:calc(100% - var(--smart-editor-addon-width))}.smart-country-input .smart-container,.smart-phone-input .smart-container{width:100%;height:100%;color:inherit;font-family:inherit;position:relative;overflow:visible;align-items:center}.smart-phone-input{--smart-editor-addon-width:45px}.smart-phone-input.invalid-number .smart-container::after{color:var(--smart-error)}.smart-phone-input .smart-container::after{font-family:var(--smart-font-family-icon);content:var(--smart-icon-phone);color:var(--smart-success);padding-right:5px}.smart-phone-input .smart-drop-down-button{display:flex;justify-content:center;align-items:center;flex-direction:row;background:0 0;border-right:none;padding-left:2px}.smart-phone-input .smart-drop-down-button::after{font-family:var(--smart-font-family-icon);content:var(--smart-icon-arrow-down)}.smart-flag-box{margin-right:6px}.smart-flag-box .flag{width:20px}.smart-flag-box .flag.be{width:18px}.smart-flag-box .flag.ch{width:15px}.smart-flag-box .flag.mc{width:19px}.smart-flag-box .flag.ne{width:18px}@media (min-resolution:192dpi){.smart-flag-box .flag{background-size:5652px 15px}}.smart-flag-box .flag.ac{height:10px;background-position:0 0}.smart-flag-box .flag.ad{height:14px;background-position:-22px 0}.smart-flag-box .flag.ae{height:10px;background-position:-44px 0}.smart-flag-box .flag.af{height:14px;background-position:-66px 0}.smart-flag-box .flag.ag{height:14px;background-position:-88px 0}.smart-flag-box .flag.ai{height:10px;background-position:-110px 0}.smart-flag-box .flag.al{height:15px;background-position:-132px 0}.smart-flag-box .flag.am{height:10px;background-position:-154px 0}.smart-flag-box .flag.ao{height:14px;background-position:-176px 0}.smart-flag-box .flag.aq{height:14px;background-position:-198px 0}.smart-flag-box .flag.ar{height:13px;background-position:-220px 0}.smart-flag-box .flag.as{height:10px;background-position:-242px 0}.smart-flag-box .flag.at{height:14px;background-position:-264px 0}.smart-flag-box .flag.au{height:10px;background-position:-286px 0}.smart-flag-box .flag.aw{height:14px;background-position:-308px 0}.smart-flag-box .flag.ax{height:13px;background-position:-330px 0}.smart-flag-box .flag.az{height:10px;background-position:-352px 0}.smart-flag-box .flag.ba{height:10px;background-position:-374px 0}.smart-flag-box .flag.bb{height:14px;background-position:-396px 0}.smart-flag-box .flag.bd{height:12px;background-position:-418px 0}.smart-flag-box .flag.be{height:15px;background-position:-440px 0}.smart-flag-box .flag.bf{height:14px;background-position:-460px 0}.smart-flag-box .flag.bg{height:12px;background-position:-482px 0}.smart-flag-box .flag.bh{height:12px;background-position:-504px 0}.smart-flag-box .flag.bi{height:12px;background-position:-526px 0}.smart-flag-box .flag.bj{height:14px;background-position:-548px 0}.smart-flag-box .flag.bl{height:14px;background-position:-570px 0}.smart-flag-box .flag.bm{height:10px;background-position:-592px 0}.smart-flag-box .flag.bn{height:10px;background-position:-614px 0}.smart-flag-box .flag.bo{height:14px;background-position:-636px 0}.smart-flag-box .flag.bq{height:14px;background-position:-658px 0}.smart-flag-box .flag.br{height:14px;background-position:-680px 0}.smart-flag-box .flag.bs{height:10px;background-position:-702px 0}.smart-flag-box .flag.bt{height:14px;background-position:-724px 0}.smart-flag-box .flag.bv{height:15px;background-position:-746px 0}.smart-flag-box .flag.bw{height:14px;background-position:-768px 0}.smart-flag-box .flag.by{height:10px;background-position:-790px 0}.smart-flag-box .flag.bz{height:14px;background-position:-812px 0}.smart-flag-box .flag.ca{height:10px;background-position:-834px 0}.smart-flag-box .flag.cc{height:10px;background-position:-856px 0}.smart-flag-box .flag.cd{height:15px;background-position:-878px 0}.smart-flag-box .flag.cf{height:14px;background-position:-900px 0}.smart-flag-box .flag.cg{height:14px;background-position:-922px 0}.smart-flag-box .flag.ch{height:15px;background-position:-944px 0}.smart-flag-box .flag.ci{height:14px;background-position:-961px 0}.smart-flag-box .flag.ck{height:10px;background-position:-983px 0}.smart-flag-box .flag.cl{height:14px;background-position:-1005px 0}.smart-flag-box .flag.cm{height:14px;background-position:-1027px 0}.smart-flag-box .flag.cn{height:14px;background-position:-1049px 0}.smart-flag-box .flag.co{height:14px;background-position:-1071px 0}.smart-flag-box .flag.cp{height:14px;background-position:-1093px 0}.smart-flag-box .flag.cr{height:12px;background-position:-1115px 0}.smart-flag-box .flag.cu{height:10px;background-position:-1137px 0}.smart-flag-box .flag.cv{height:12px;background-position:-1159px 0}.smart-flag-box .flag.cw{height:14px;background-position:-1181px 0}.smart-flag-box .flag.cx{height:10px;background-position:-1203px 0}.smart-flag-box .flag.cy{height:14px;background-position:-1225px 0}.smart-flag-box .flag.cz{height:14px;background-position:-1247px 0}.smart-flag-box .flag.de{height:12px;background-position:-1269px 0}.smart-flag-box .flag.dg{height:10px;background-position:-1291px 0}.smart-flag-box .flag.dj{height:14px;background-position:-1313px 0}.smart-flag-box .flag.dk{height:15px;background-position:-1335px 0}.smart-flag-box .flag.dm{height:10px;background-position:-1357px 0}.smart-flag-box .flag.do{height:14px;background-position:-1379px 0}.smart-flag-box .flag.dz{height:14px;background-position:-1401px 0}.smart-flag-box .flag.ea{height:14px;background-position:-1423px 0}.smart-flag-box .flag.ec{height:14px;background-position:-1445px 0}.smart-flag-box .flag.ee{height:13px;background-position:-1467px 0}.smart-flag-box .flag.eg{height:14px;background-position:-1489px 0}.smart-flag-box .flag.eh{height:10px;background-position:-1511px 0}.smart-flag-box .flag.er{height:10px;background-position:-1533px 0}.smart-flag-box .flag.es{height:14px;background-position:-1555px 0}.smart-flag-box .flag.et{height:10px;background-position:-1577px 0}.smart-flag-box .flag.eu{height:14px;background-position:-1599px 0}.smart-flag-box .flag.fi{height:12px;background-position:-1621px 0}.smart-flag-box .flag.fj{height:10px;background-position:-1643px 0}.smart-flag-box .flag.fk{height:10px;background-position:-1665px 0}.smart-flag-box .flag.fm{height:11px;background-position:-1687px 0}.smart-flag-box .flag.fo{height:15px;background-position:-1709px 0}.smart-flag-box .flag.fr{height:14px;background-position:-1731px 0}.smart-flag-box .flag.ga{height:15px;background-position:-1753px 0}.smart-flag-box .flag.gb{height:10px;background-position:-1775px 0}.smart-flag-box .flag.gd{height:12px;background-position:-1797px 0}.smart-flag-box .flag.ge{height:14px;background-position:-1819px 0}.smart-flag-box .flag.gf{height:14px;background-position:-1841px 0}.smart-flag-box .flag.gg{height:14px;background-position:-1863px 0}.smart-flag-box .flag.gh{height:14px;background-position:-1885px 0}.smart-flag-box .flag.gi{height:10px;background-position:-1907px 0}.smart-flag-box .flag.gl{height:14px;background-position:-1929px 0}.smart-flag-box .flag.gm{height:14px;background-position:-1951px 0}.smart-flag-box .flag.gn{height:14px;background-position:-1973px 0}.smart-flag-box .flag.gp{height:14px;background-position:-1995px 0}.smart-flag-box .flag.gq{height:14px;background-position:-2017px 0}.smart-flag-box .flag.gr{height:14px;background-position:-2039px 0}.smart-flag-box .flag.gs{height:10px;background-position:-2061px 0}.smart-flag-box .flag.gt{height:13px;background-position:-2083px 0}.smart-flag-box .flag.gu{height:11px;background-position:-2105px 0}.smart-flag-box .flag.gw{height:10px;background-position:-2127px 0}.smart-flag-box .flag.gy{height:12px;background-position:-2149px 0}.smart-flag-box .flag.hk{height:14px;background-position:-2171px 0}.smart-flag-box .flag.hm{height:10px;background-position:-2193px 0}.smart-flag-box .flag.hn{height:10px;background-position:-2215px 0}.smart-flag-box .flag.hr{height:10px;background-position:-2237px 0}.smart-flag-box .flag.ht{height:12px;background-position:-2259px 0}.smart-flag-box .flag.hu{height:10px;background-position:-2281px 0}.smart-flag-box .flag.ic{height:14px;background-position:-2303px 0}.smart-flag-box .flag.id{height:14px;background-position:-2325px 0}.smart-flag-box .flag.ie{height:10px;background-position:-2347px 0}.smart-flag-box .flag.il{height:15px;background-position:-2369px 0}.smart-flag-box .flag.im{height:10px;background-position:-2391px 0}.smart-flag-box .flag.in{height:14px;background-position:-2413px 0}.smart-flag-box .flag.io{height:10px;background-position:-2435px 0}.smart-flag-box .flag.iq{height:14px;background-position:-2457px 0}.smart-flag-box .flag.ir{height:12px;background-position:-2479px 0}.smart-flag-box .flag.is{height:15px;background-position:-2501px 0}.smart-flag-box .flag.it{height:14px;background-position:-2523px 0}.smart-flag-box .flag.je{height:12px;background-position:-2545px 0}.smart-flag-box .flag.jm{height:10px;background-position:-2567px 0}.smart-flag-box .flag.jo{height:10px;background-position:-2589px 0}.smart-flag-box .flag.jp{height:14px;background-position:-2611px 0}.smart-flag-box .flag.ke{height:14px;background-position:-2633px 0}.smart-flag-box .flag.kg{height:12px;background-position:-2655px 0}.smart-flag-box .flag.kh{height:13px;background-position:-2677px 0}.smart-flag-box .flag.ki{height:10px;background-position:-2699px 0}.smart-flag-box .flag.km{height:12px;background-position:-2721px 0}.smart-flag-box .flag.kn{height:14px;background-position:-2743px 0}.smart-flag-box .flag.kp{height:10px;background-position:-2765px 0}.smart-flag-box .flag.kr{height:14px;background-position:-2787px 0}.smart-flag-box .flag.kw{height:10px;background-position:-2809px 0}.smart-flag-box .flag.ky{height:10px;background-position:-2831px 0}.smart-flag-box .flag.kz{height:10px;background-position:-2853px 0}.smart-flag-box .flag.la{height:14px;background-position:-2875px 0}.smart-flag-box .flag.lb{height:14px;background-position:-2897px 0}.smart-flag-box .flag.lc{height:10px;background-position:-2919px 0}.smart-flag-box .flag.li{height:12px;background-position:-2941px 0}.smart-flag-box .flag.lk{height:10px;background-position:-2963px 0}.smart-flag-box .flag.lr{height:11px;background-position:-2985px 0}.smart-flag-box .flag.ls{height:14px;background-position:-3007px 0}.smart-flag-box .flag.lt{height:12px;background-position:-3029px 0}.smart-flag-box .flag.lu{height:12px;background-position:-3051px 0}.smart-flag-box .flag.lv{height:10px;background-position:-3073px 0}.smart-flag-box .flag.ly{height:10px;background-position:-3095px 0}.smart-flag-box .flag.ma{height:14px;background-position:-3117px 0}.smart-flag-box .flag.mc{height:15px;background-position:-3139px 0}.smart-flag-box .flag.md{height:10px;background-position:-3160px 0}.smart-flag-box .flag.me{height:10px;background-position:-3182px 0}.smart-flag-box .flag.mf{height:14px;background-position:-3204px 0}.smart-flag-box .flag.mg{height:14px;background-position:-3226px 0}.smart-flag-box .flag.mh{height:11px;background-position:-3248px 0}.smart-flag-box .flag.mk{height:10px;background-position:-3270px 0}.smart-flag-box .flag.ml{height:14px;background-position:-3292px 0}.smart-flag-box .flag.mm{height:14px;background-position:-3314px 0}.smart-flag-box .flag.mn{height:10px;background-position:-3336px 0}.smart-flag-box .flag.mo{height:14px;background-position:-3358px 0}.smart-flag-box .flag.mp{height:10px;background-position:-3380px 0}.smart-flag-box .flag.mq{height:14px;background-position:-3402px 0}.smart-flag-box .flag.mr{height:14px;background-position:-3424px 0}.smart-flag-box .flag.ms{height:10px;background-position:-3446px 0}.smart-flag-box .flag.mt{height:14px;background-position:-3468px 0}.smart-flag-box .flag.mu{height:14px;background-position:-3490px 0}.smart-flag-box .flag.mv{height:14px;background-position:-3512px 0}.smart-flag-box .flag.mw{height:14px;background-position:-3534px 0}.smart-flag-box .flag.mx{height:12px;background-position:-3556px 0}.smart-flag-box .flag.my{height:10px;background-position:-3578px 0}.smart-flag-box .flag.mz{height:14px;background-position:-3600px 0}.smart-flag-box .flag.na{height:14px;background-position:-3622px 0}.smart-flag-box .flag.nc{height:10px;background-position:-3644px 0}.smart-flag-box .flag.ne{height:15px;background-position:-3666px 0}.smart-flag-box .flag.nf{height:10px;background-position:-3686px 0}.smart-flag-box .flag.ng{height:10px;background-position:-3708px 0}.smart-flag-box .flag.ni{height:12px;background-position:-3730px 0}.smart-flag-box .flag.nl{height:14px;background-position:-3752px 0}.smart-flag-box .flag.no{height:15px;background-position:-3774px 0}.smart-flag-box .flag.np{width:13px;height:15px;background-position:-3796px 0}.smart-flag-box .flag.nr{height:10px;background-position:-3811px 0}.smart-flag-box .flag.nu{height:10px;background-position:-3833px 0}.smart-flag-box .flag.nz{height:10px;background-position:-3855px 0}.smart-flag-box .flag.om{height:10px;background-position:-3877px 0}.smart-flag-box .flag.pa{height:14px;background-position:-3899px 0}.smart-flag-box .flag.pe{height:14px;background-position:-3921px 0}.smart-flag-box .flag.pf{height:14px;background-position:-3943px 0}.smart-flag-box .flag.pg{height:15px;background-position:-3965px 0}.smart-flag-box .flag.ph{height:10px;background-position:-3987px 0}.smart-flag-box .flag.pk{height:14px;background-position:-4009px 0}.smart-flag-box .flag.pl{height:13px;background-position:-4031px 0}.smart-flag-box .flag.pm{height:14px;background-position:-4053px 0}.smart-flag-box .flag.pn{height:10px;background-position:-4075px 0}.smart-flag-box .flag.pr{height:14px;background-position:-4097px 0}.smart-flag-box .flag.ps{height:10px;background-position:-4119px 0}.smart-flag-box .flag.pt{height:14px;background-position:-4141px 0}.smart-flag-box .flag.pw{height:13px;background-position:-4163px 0}.smart-flag-box .flag.py{height:11px;background-position:-4185px 0}.smart-flag-box .flag.qa{height:8px;background-position:-4207px 0}.smart-flag-box .flag.re{height:14px;background-position:-4229px 0}.smart-flag-box .flag.ro{height:14px;background-position:-4251px 0}.smart-flag-box .flag.rs{height:14px;background-position:-4273px 0}.smart-flag-box .flag.ru{height:14px;background-position:-4295px 0}.smart-flag-box .flag.rw{height:14px;background-position:-4317px 0}.smart-flag-box .flag.sa{height:14px;background-position:-4339px 0}.smart-flag-box .flag.sb{height:10px;background-position:-4361px 0}.smart-flag-box .flag.sc{height:10px;background-position:-4383px 0}.smart-flag-box .flag.sd{height:10px;background-position:-4405px 0}.smart-flag-box .flag.se{height:13px;background-position:-4427px 0}.smart-flag-box .flag.sg{height:14px;background-position:-4449px 0}.smart-flag-box .flag.sh{height:10px;background-position:-4471px 0}.smart-flag-box .flag.si{height:10px;background-position:-4493px 0}.smart-flag-box .flag.sj{height:15px;background-position:-4515px 0}.smart-flag-box .flag.sk{height:14px;background-position:-4537px 0}.smart-flag-box .flag.sl{height:14px;background-position:-4559px 0}.smart-flag-box .flag.sm{height:15px;background-position:-4581px 0}.smart-flag-box .flag.sn{height:14px;background-position:-4603px 0}.smart-flag-box .flag.so{height:14px;background-position:-4625px 0}.smart-flag-box .flag.sr{height:14px;background-position:-4647px 0}.smart-flag-box .flag.ss{height:10px;background-position:-4669px 0}.smart-flag-box .flag.st{height:10px;background-position:-4691px 0}.smart-flag-box .flag.sv{height:12px;background-position:-4713px 0}.smart-flag-box .flag.sx{height:14px;background-position:-4735px 0}.smart-flag-box .flag.sy{height:14px;background-position:-4757px 0}.smart-flag-box .flag.sz{height:14px;background-position:-4779px 0}.smart-flag-box .flag.ta{height:10px;background-position:-4801px 0}.smart-flag-box .flag.tc{height:10px;background-position:-4823px 0}.smart-flag-box .flag.td{height:14px;background-position:-4845px 0}.smart-flag-box .flag.tf{height:14px;background-position:-4867px 0}.smart-flag-box .flag.tg{height:13px;background-position:-4889px 0}.smart-flag-box .flag.th{height:14px;background-position:-4911px 0}.smart-flag-box .flag.tj{height:10px;background-position:-4933px 0}.smart-flag-box .flag.tk{height:10px;background-position:-4955px 0}.smart-flag-box .flag.tl{height:10px;background-position:-4977px 0}.smart-flag-box .flag.tm{height:14px;background-position:-4999px 0}.smart-flag-box .flag.tn{height:14px;background-position:-5021px 0}.smart-flag-box .flag.to{height:10px;background-position:-5043px 0}.smart-flag-box .flag.tr{height:14px;background-position:-5065px 0}.smart-flag-box .flag.tt{height:12px;background-position:-5087px 0}.smart-flag-box .flag.tv{height:10px;background-position:-5109px 0}.smart-flag-box .flag.tw{height:14px;background-position:-5131px 0}.smart-flag-box .flag.tz{height:14px;background-position:-5153px 0}.smart-flag-box .flag.ua{height:14px;background-position:-5175px 0}.smart-flag-box .flag.ug{height:14px;background-position:-5197px 0}.smart-flag-box .flag.um{height:11px;background-position:-5219px 0}.smart-flag-box .flag.un{height:14px;background-position:-5241px 0}.smart-flag-box .flag.us{height:11px;background-position:-5263px 0}.smart-flag-box .flag.uy{height:14px;background-position:-5285px 0}.smart-flag-box .flag.uz{height:10px;background-position:-5307px 0}.smart-flag-box .flag.va{width:15px;height:15px;background-position:-5329px 0}.smart-flag-box .flag.vc{height:14px;background-position:-5346px 0}.smart-flag-box .flag.ve{height:14px;background-position:-5368px 0}.smart-flag-box .flag.vg{height:10px;background-position:-5390px 0}.smart-flag-box .flag.vi{height:14px;background-position:-5412px 0}.smart-flag-box .flag.vn{height:14px;background-position:-5434px 0}.smart-flag-box .flag.vu{height:12px;background-position:-5456px 0}.smart-flag-box .flag.wf{height:14px;background-position:-5478px 0}.smart-flag-box .flag.ws{height:10px;background-position:-5500px 0}.smart-flag-box .flag.xk{height:15px;background-position:-5522px 0}.smart-flag-box .flag.ye{height:14px;background-position:-5544px 0}.smart-flag-box .flag.yt{height:14px;background-position:-5566px 0}.smart-flag-box .flag.za{height:14px;background-position:-5588px 0}.smart-flag-box .flag.zm{height:14px;background-position:-5610px 0}.smart-flag-box .flag.zw{height:10px;background-position:-5632px 0}.smart-flag-box .flag{height:15px;box-shadow:0 0 1px 0 #888;background-image:url('flags.f73aa829a0084837.png');background-repeat:no-repeat;background-color:#DBDBDB;background-position:20px 0}.smart-flag-box .flag.np{background-color:transparent}.smart-country-input-drop-down-menu ul li a,.smart-phone-input-drop-down-menu ul li a{border-left:var(--smart-border-width) solid transparent;display:flex;align-items:center}.smart-country-input-drop-down-menu ul li .dial-code,.smart-phone-input-drop-down-menu ul li .dial-code{margin-left:6px;opacity:.5}.smart-country-input-drop-down-menu:not(.smart-check-input-drop-down-menu) li.active a,.smart-phone-input-drop-down-menu:not(.smart-check-input-drop-down-menu) li.active a{border-left:var(--smart-border-width) solid var(--smart-primary);border-top-left-radius:0;border-bottom-left-radius:0;color:var(--smart-ui-state-color-selected);background:var(--smart-ui-state-selected)}.smart-country-input-drop-down-menu[right-to-left] li a,.smart-phone-input-drop-down-menu[right-to-left] li a{border-left:none;border-right:var(--smart-border-width) solid transparent}.smart-country-input-drop-down-menu[right-to-left]:not(.smart-check-input-drop-down-menu) li.active a,.smart-phone-input-drop-down-menu[right-to-left]:not(.smart-check-input-drop-down-menu) li.active a{border-left:var(--smart-border-width) solid transparent;border-right:var(--smart-border-width) solid var(--smart-primary);border-top-left-radius:var(--smart-border-top-left-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-top-right-radius:0;border-bottom-right-radius:0}.underlined.smart-input,.underlined.smart-input .smart-drop-down-button,.underlined.smart-text-box input.smart-input{border-top:none;border-left:none;border-right:none}.underlined.smart-input,.underlined.smart-input[hover]{border-bottom-left-radius:0;border-bottom-right-radius:0}smart-date-input.underlined,smart-date-range-input.underlined,smart-time-input.underlined{overflow:visible}.underlined.smart-input{transition:border-bottom .2s,background-color .2s}.underlined.smart-input .smart-hint{position:absolute;top:0;left:0;right:0;bottom:0;display:block!important;box-sizing:border-box;padding:var(--smart-editor-label-padding);color:var(--smart-background-color);pointer-events:none;font-size:75%;opacity:0;transition:color .2s,font-size .2s,line-height .2s,margin-top .2s,opacity .3s,top .2s;margin-top:calc(0px - var(--smart-font-size))}.underlined.smart-input .smart-hint:after{content:"";position:absolute;left:0;bottom:-2px;display:block;width:100%;height:2px;background-color:var(--smart-primary);transform-origin:bottom center;transform:scaleX(0);transition:transform .2s}.underlined.smart-input[hover]{border-bottom-color:var(--smart-background-color)}.underlined.smart-input[focus] .smart-hint{color:var(--smart-primary);opacity:1}.underlined.smart-input[focus] .smart-hint:before{opacity:.12}.underlined.smart-input[focus] .smart-hint:after{transform:scale(1)}.underlined.smart-input .smart-input:not(:focus):placeholder-shown+.smart-hint{font-size:inherit;margin-top:0}.underlined.smart-input:not([readonly]) .smart-drop-down-button{border-bottom-left-radius:initial;border-bottom-right-radius:initial}.underlined.smart-input:not([opened]) .smart-drop-down-button{background-color:transparent}.underlined.smart-input.smart-multi-combo-input:not([focus]) .smart-hint{margin-top:0}.underlined.smart-input.smart-date-range-input[opened][drop-down-button-position=right]:not([readonly]){border-bottom-left-radius:0;border-bottom-right-radius:0}.underlined.smart-input[readonly] .smart-input{cursor:pointer;background:var(--smart-background)!important;color:var(--smart-background-color)!important;opacity:.75}.underlined.smart-input[drop-down-button-position=left] .smart-drop-down-button{background:inherit;color:inherit;border-bottom-left-radius:initial}.underlined.smart-input[drop-down-button-position=left] .smart-hint{margin-left:var(--smart-editor-addon-width)}.underlined.smart-input[drop-down-button-position=left][focus] .smart-hint:after{margin-left:calc(0px - var(--smart-editor-addon-width));width:calc(100% + var(--smart-editor-addon-width))}.underlined.smart-input[drop-down-button-position=left][opened]:not([readonly]),.underlined.smart-input[drop-down-button-position=left][opened]:not([readonly]) input{border-bottom-right-radius:0}.underlined.smart-input[drop-down-button-position=right] .smart-drop-down-button{background:var(--smart-background);color:var(--smart-background-color);border-bottom-right-radius:initial}.underlined.smart-input[drop-down-button-position=right][opened]:not([readonly]),.underlined.smart-input[drop-down-button-position=right][opened]:not([readonly]) input{border-bottom-left-radius:0}.underlined.smart-input.smart-invalid{border-bottom-color:rgba(var(--smart-error-rgb),.5)}.underlined.smart-input.smart-invalid .smart-hint:after{background-color:var(--smart-error)}.underlined.smart-text-box input.smart-input{border-bottom-left-radius:initial;border-bottom-right-radius:initial}.underlined.smart-number-input .nav{background:var(--smart-background);color:var(--smart-background-color)}.underlined.smart-number-input .nav .up{border-bottom:none}.underlined.smart-element.smart-material{--smart-border-top-left-radius:0;--smart-border-top-right-radius:0;--smart-border-bottom-left-radius:0;--smart-border-bottom-right-radius:0}.underlined.smart-element.smart-material.smart-valid{--smart-border:#28a745}.underlined.smart-element.smart-material.smart-invalid{--smart-border:#dc3545}.underlined.smart-element.smart-material .smart-hint{opacity:1;transition:color .2s,opacity .1s,font-size .2s,line-height .2s,margin-top .2s,top .2s!important;margin-top:0;font-size:100%}.underlined.smart-element.smart-material.has-value .smart-hint,.underlined.smart-element.smart-material[focus] .smart-hint,.underlined.smart-element.smart-material[focus][hover] .smart-hint,.underlined.smart-element.smart-material[value]:not([value=""]) .smart-hint{margin-top:-20px;font-size:80%!important}smart-check-input.outlined,smart-date-range-input.outlined,smart-input.outlined,smart-masked-text-box.outlined,smart-multi-combo-input.outlined,smart-multi-input.outlined,smart-password-input.outlined,smart-password-text-box.outlined,smart-phone-input.outlined,smart-text-box.outlined{background-color:transparent}smart-date-input.outlined,smart-date-range-input.outlined,smart-phone-input.outlined,smart-time-input.outlined{overflow:visible}smart-phone-input.outlined .smart-drop-down-button{margin-right:0}smart-phone-input.outlined .smart-container::after{margin-left:-18px;z-index:9}.outlined.smart-input{position:relative;display:inline-block;font-family:var(--smart-font-family);font-size:var(--smart-font-size);line-height:1.5;height:50px;margin:0;border:none;border-radius:0;padding-top:6px;overflow:hidden}.outlined.smart-input .smart-input{padding:12px 13px;z-index:5;background:var(--smart-background);border:1px solid var(--smart-border);transition:border-color .2s}.outlined.smart-input.smart-valid[focus] .smart-drop-down-button,.outlined.smart-input.smart-valid[focus] .smart-input{border-color:var(--smart-primary)}.outlined.smart-input.smart-valid[focus] .smart-drop-down-button{color:var(--smart-primary)}.outlined.smart-input.smart-invalid .smart-drop-down-button,.outlined.smart-input.smart-invalid .smart-input{border-color:rgba(var(--smart-error-rgb),.5)}.outlined.smart-input.smart-invalid[focus] .smart-drop-down-button,.outlined.smart-input.smart-invalid[focus] .smart-input{border-color:var(--smart-error)}.outlined.smart-input.smart-invalid[focus] .smart-drop-down-button{color:var(--smart-error)}.outlined.smart-input.smart-multi-combo-input .smart-input{padding:0;border:none!important;z-index:initial}.outlined.smart-input.smart-multi-combo-input .smart-drop-down-button{padding:0!important}.outlined.smart-input.smart-multi-combo-input .smart-action-button{padding:12px 13px;z-index:5;background:var(--smart-background);border:1px solid var(--smart-border);transition:border-color .2s}.outlined.smart-input.smart-multi-combo-input[hint] .smart-action-button{border-top:1px solid var(--smart-background)}.outlined.smart-input.smart-multi-combo-input[focus] .smart-action-button{border-color:var(--smart-primary);color:var(--smart-primary)}.outlined.smart-input.smart-multi-combo-input[focus][hint] .smart-action-button{border-top-color:var(--smart-background)}.outlined.smart-input.smart-multi-combo-input.smart-valid[focus] .smart-action-button,.outlined.smart-input[focus]{border-color:var(--smart-primary)}.outlined.smart-input.smart-multi-combo-input.smart-valid[focus] .smart-action-button.smart-valid{color:var(--smart-primary)}.outlined.smart-input.smart-multi-combo-input.smart-invalid[focus] .smart-action-button.smart-invalid{color:var(--smart-error)}.outlined.smart-input[drop-down-button-position=right] input{border-right:none}.outlined.smart-input[drop-down-button-position=right] .smart-drop-down-button{padding:10px 0 9px;border-left:none;border-bottom:1px solid var(--smart-border);border-right:1px solid var(--smart-border);border-top:1px solid var(--smart-border);background:inherit;color:inherit;z-index:6;cursor:pointer}.outlined.smart-input[drop-down-button-position=left] input{border-left:none}.outlined.smart-input[drop-down-button-position=left] .smart-drop-down-button{padding:10px 0;border-right:none;border-bottom:1px solid var(--smart-border);border-left:1px solid var(--smart-border);background:inherit;color:inherit;z-index:6;cursor:pointer}.outlined.smart-input[hint] .smart-hint{position:absolute;top:0;left:0;display:flex!important;border-color:var(--smart-border)!important;width:100%;max-height:100%;color:var(--smart-background-color);font-size:75%;line-height:15px;cursor:text;margin-top:-6px;z-index:7;white-space:nowrap;transition:color .2s,z-index .2s,font-size .2s,opacity .3s,font-size .2s,line-height .2s}.outlined.smart-input[hint] .smart-hint:after,.outlined.smart-input[hint] .smart-hint:before{content:"";display:block;box-sizing:border-box;margin-top:6px;border-top:solid 1px;border-top-color:var(--smart-border)!important;min-width:10px;height:8px;pointer-events:none;box-shadow:inset 0 1px transparent;transition:border-color .2s,box-shadow .2s;z-index:7}.outlined.smart-input[hint] .smart-hint:before{margin-right:4px;border-left:solid 1px transparent;border-radius:4px 0}.outlined.smart-input[hint] .smart-hint:after{flex-grow:1;margin-left:4px;border-right:solid 1px transparent;border-radius:0 4px}.outlined.smart-input[hint][drop-down-button-position=left] .smart-hint:before{width:var(--smart-editor-addon-width);margin-right:13px}.outlined.smart-input[focus]{border-top-color:transparent!important;box-shadow:inset 1px 0 var(--smart-material-safari-helper1),inset -1px 0 var(--smart-material-safari-helper1),inset 0 -1px var(--smart-material-safari-helper1);outline:0}.outlined.smart-input[focus] .smart-input{border-color:var(--smart-primary)}.outlined.smart-input[focus] .smart-drop-down-button{color:var(--smart-primary);border-color:var(--smart-primary)}.outlined.smart-input[focus][hint] .smart-input{border-top-color:var(--smart-background)}.outlined.smart-input[focus][hint] .smart-hint{color:var(--smart-primary);opacity:1}.outlined.smart-input[focus][hint] .smart-hint:after,.outlined.smart-input[focus][hint] .smart-hint:before{border-top-color:var(--smart-primary)!important;box-shadow:none!important}.outlined.smart-input[hover]{border-color:var(--smart-border);border-top-color:transparent}.outlined.smart-input[hover][hint] .smart-hint:before{border-top-color:var(--smart-border)}.outlined.smart-input[hover][hint]>input:not(:focus):placeholder-shown,.outlined.smart-input[hover][hint]>textarea:not(:focus):placeholder-shown{border-color:var(--smart-border)}.outlined.smart-input[readonly] .smart-input{background:var(--smart-background)!important;color:var(--smart-background-color)!important;opacity:.75}.outlined.smart-input:not([focus]) .smart-input,.outlined.smart-input:not([focus]) .smart-input:not(:focus):placeholder-shown{border-top:1px solid var(--smart-border);z-index:5}.outlined.smart-input:not([focus]).smart-invalid .smart-input,.outlined.smart-input:not([focus]).smart-invalid .smart-input:not(:focus):placeholder-shown{border-top:1px solid rgba(var(--smart-error-rgb),.5);z-index:5}.outlined.smart-input:not([focus]):not([value]).smart-multi-combo-input[hint] .smart-hint,.outlined.smart-input[hint] .smart-input:not(:focus):placeholder-shown+.smart-hint,.outlined.smart-input[hint]:not([focus]) .smart-hint{font-size:var(--smart-font-size);line-height:60px;z-index:2;-webkit-user-select:none;user-select:none;pointer-events:none}.outlined.smart-input.smart-invalid[focus]{border-color:var(--smart-error)}.outlined.smart-input.smart-invalid[focus][hint] .smart-hint{color:var(--smart-error)}.outlined.smart-input.smart-invalid[focus][hint] .smart-hint:after,.outlined.smart-input.smart-invalid[focus][hint] .smart-hint:before{border-top-color:var(--smart-error)!important}.outlined.smart-input.smart-valid[focus]{border-color:var(--smart-primary)}.outlined.smart-input.smart-valid[focus][hint] .smart-hint{color:var(--smart-primary)}.outlined.smart-input.smart-valid[focus][hint] .smart-hint:after,.outlined.smart-input.smart-valid[focus][hint] .smart-hint:before{border-top-color:var(--smart-primary)!important}.outlined.smart-text-area[hint] .smart-input:not(:focus):placeholder-shown+.smart-hint,.outlined.smart-text-area[hint]:not([focus]) .smart-hint{font-size:var(--smart-font-size);line-height:var(--smart-editor-height);opacity:0;z-index:2}.outlined.smart-text-box input{border:none;padding:7px}.outlined.smart-number-input .nav{background:var(--smart-background);color:var(--smart-background-color)}.outlined.smart-number-input .nav .up{border-bottom:none}.outlined.smart-number-input[drop-down-button-position=left] .smart-drop-down-button,.outlined.smart-number-input[drop-down-button-position=right] .smart-drop-down-button{padding:0}.outlined.smart-element.smart-material.smart-valid{--smart-border:#28a745}.outlined.smart-element.smart-material.smart-invalid{--smart-border:#dc3545}.outlined.smart-element.smart-material .smart-hint{opacity:1!important;transition:color .2s,opacity .1s,font-size .2s,line-height .2s,margin-top .2s,top .2s!important;z-index:7!important}.outlined.smart-element.smart-material.has-value,.outlined.smart-element.smart-material[focus],.outlined.smart-element.smart-material[focus][hover],.outlined.smart-element.smart-material[value]:not([value=""]){border-color:var(--smart-primary);border-top-color:transparent!important;outline:0}.outlined.smart-element.smart-material.has-value .smart-input,.outlined.smart-element.smart-material[focus] .smart-input,.outlined.smart-element.smart-material[focus][hover] .smart-input,.outlined.smart-element.smart-material[value]:not([value=""]) .smart-input{border-top-color:var(--smart-background)!important}.outlined.smart-element.smart-material.has-value .smart-hint,.outlined.smart-element.smart-material[focus] .smart-hint,.outlined.smart-element.smart-material[focus][hover] .smart-hint,.outlined.smart-element.smart-material[value]:not([value=""]) .smart-hint{color:var(--smart-primary)!important;opacity:1!important;font-size:75%!important;line-height:15px;z-index:7;transition:color .2s,z-index .2s,font-size .2s,opacity .3s,font-size .2s,line-height .2s}.outlined.smart-element.smart-material.has-value .smart-container .smart-content,.outlined.smart-element.smart-material[focus] .smart-container .smart-content,.outlined.smart-element.smart-material[focus][hover] .smart-container .smart-content,.outlined.smart-element.smart-material[value]:not([value=""]) .smart-container .smart-content{border-top-color:transparent!important}.outlined.smart-drop-down-box>.smart-container>.smart-content{z-index:7!important}.smart-invalid .outlined.smart-input.smart-multi-combo-input .smart-action-button{border-color:rgba(var(--smart-error-rgb),.5)}.smart-invalid .outlined.smart-input.smart-multi-combo-input[focus] .smart-action-button{border-color:var(--smart-error)}@media not all and (min-resolution:0.001dpcm){@supports (-webkit-appearance:none){.smart-input .smart-hint,.smart-input .smart-hint::after,.smart-input .smart-input{transition-duration:.1s}}}
.smart-time-picker{display:block;width:var(--smart-time-picker-default-width);height:var(--smart-time-picker-default-height);line-height:initial;min-width:250px}.smart-time-picker>.smart-container{width:100%;height:100%}.smart-time-picker .smart-main-container{width:100%;height:calc(100% - var(--smart-calendar-title-height));padding:2%;background-color:var(--smart-background)}.smart-time-picker .smart-header{display:flex;width:100%;height:var(--smart-calendar-title-height);background-color:var(--smart-primary);color:var(--smart-primary-color);justify-content:center;align-items:center}.smart-time-picker .smart-header:focus{outline:var(--smart-background) solid 1px}.smart-time-picker .smart-footer{display:none}.smart-time-picker .smart-svg-container{display:flex;justify-content:center;align-items:center;width:100%;height:100%}.smart-time-picker .smart-am-container,.smart-time-picker .smart-hour-container,.smart-time-picker .smart-minute-container,.smart-time-picker .smart-pm-container{opacity:.5;cursor:pointer}.smart-time-picker .smart-hour-minute-container{display:flex;font-size:50px}.smart-time-picker .smart-hour-minute-container div:nth-child(2){opacity:.5}.smart-time-picker .smart-am-pm-container{margin-left:10px}.smart-time-picker .smart-selected{opacity:1}.smart-time-picker .smart-svg-picker{border-radius:50%;background-color:var(--smart-background);position:relative;box-sizing:content-box;touch-action:none}.smart-time-picker .smart-svg-picker:focus{border:1px solid var(--smart-outline);outline:0}.smart-time-picker .smart-svg-picker.animate{animation:smart-time-picker-animation .5s linear}.smart-time-picker .smart-label{fill:var(--smart-background-color)}.smart-time-picker .smart-label.smart-selected{fill:var(--smart-primary-color);stroke:var(--smart-primary-color);stroke-width:0}.smart-time-picker .smart-needle,.smart-time-picker .smart-needle-central-circle{fill:var(--smart-primary)}.smart-time-picker[disabled] .smart-am-container,.smart-time-picker[disabled] .smart-hour-container,.smart-time-picker[disabled] .smart-minute-container,.smart-time-picker[disabled] .smart-pm-container,.smart-time-picker[readonly] .smart-am-container,.smart-time-picker[readonly] .smart-hour-container,.smart-time-picker[readonly] .smart-minute-container,.smart-time-picker[readonly] .smart-pm-container{cursor:default}.smart-time-picker[footer] .smart-footer{display:block;width:100%;height:30px}.smart-time-picker[footer] .smart-svg-container{height:calc(100% - 30px)}.smart-time-picker[view=landscape]{width:var(--smart-time-picker-default-height);height:var(--smart-time-picker-default-width);min-width:400px}.smart-time-picker[view=landscape]>.smart-container{display:flex}.smart-time-picker[view=landscape] .smart-header{flex-direction:column;width:33%;height:100%}.smart-time-picker[view=landscape] .smart-main-container{width:67%;height:100%}.smart-time-picker[view=landscape] .smart-am-pm-container{margin-left:0}@keyframes smart-time-picker-animation{0%,100%{opacity:1}25%,75%{opacity:.5}50%{opacity:0}}.smart-time-picker[right-to-left] .smart-footer,.smart-time-picker[right-to-left] .smart-header{direction:rtl}.smart-time-picker[right-to-left] .smart-am-pm-container{margin:0 10px 0 0}.smart-time-picker[right-to-left][view=landscape]>.smart-container{flex-direction:row-reverse}
smart-toast,smart-toast .smart-toast-container{font-family:var(--smart-font-family-icon);display:none}.smart-toast-container.smart-toast-container-bottom-left,.smart-toast-container.smart-toast-container-bottom-right,.smart-toast-container.smart-toast-container-custom,.smart-toast-container.smart-toast-container-top-left,.smart-toast-container.smart-toast-container-top-right{width:var(--smart-toast-container-default-width);padding:5px;position:fixed;overflow-y:hidden;box-sizing:border-box;z-index:var(--smart-editor-drop-down-z-index)}.smart-toast-container.smart-toast-container-top-left{top:0;left:0}.smart-toast-container.smart-toast-container-top-right{top:0;right:0}.smart-toast-container.smart-toast-container-bottom-left{bottom:0;left:0}.smart-toast-container.smart-toast-container-bottom-right{bottom:0;right:0}.smart-toast-container.smart-toast-container-modal{width:100%;height:100%}.smart-toast-container.smart-toast-container-modal:not(:empty){background-color:rgba(0,0,0,.5);display:flex;flex-direction:column;align-items:center;justify-content:center;position:fixed;left:0;top:0;z-index:var(--smart-editor-drop-down-z-index)}.smart-toast-container.smart-toast-container-modal .smart-toast-item{width:200px}.smart-toast-item{display:block;width:100%;margin-bottom:2px;opacity:.8;-webkit-user-select:none;user-select:none;background-color:var(--smart-surface);border-color:var(--smart-border);color:var(--smart-surface-color)}.smart-toast-item:hover{opacity:1}.smart-toast-item .smart-toast-item-header{display:flex;justify-content:flex-end;height:var(--smart-toast-header-height)}.smart-toast-item .smart-toast-item-header .smart-toast-item-close-button{font-family:var(--smart-font-family-icon);-webkit-user-select:none;user-select:none;position:relative;cursor:pointer;margin:5px;opacity:1;display:none;width:var(--smart-font-size);height:var(--smart-font-size);color:inherit}.smart-toast-item .smart-toast-item-container{padding:0 0 10px;display:flex;align-items:center;position:relative;top:-4px}.smart-toast-item .smart-toast-item-container .smart-toast-item-icon{width:25px;height:25px;margin:0 15px;display:inline-block;background-repeat:no-repeat}.smart-toast-item .smart-toast-item-container .smart-toast-item-icon:after{content:var(--smart-toast-item-icon);width:100%;height:100%;display:flex;justify-content:center;align-items:center;font-family:var(--smart-font-family-icon);font-size:1.75em}.smart-toast-item .smart-toast-item-container .smart-toast-item-content{text-align:center;opacity:1;font-family:inherit;font-size:inherit;font-weight:inherit;color:inherit;text-overflow:ellipsis;overflow:hidden;display:inline-block;width:calc(100% - 110px);margin:0 15px}.smart-toast-item[show-close-button] .smart-toast-item-header .smart-toast-item-close-button{display:block}.smart-toast-item[show-close-button] .smart-toast-item-header .smart-toast-item-close-button:after{font-family:var(--smart-font-family-icon);content:var(--smart-icon-close);font-size:inherit;-webkit-user-select:none;user-select:none;cursor:pointer;color:inherit;position:absolute;left:0;top:0;display:block}.smart-toast-item.primary,.smart-toast-item.primary .smart-toast-item-header .smart-toast-item-close-button{color:var(--smart-primary-color)}.smart-toast-item[opened]{opacity:.8}.smart-toast-item[opened]:hover{opacity:1}.smart-toast-item.blink{animation:blink normal 1s infinite ease-in}.smart-toast-item.primary{background-color:var(--smart-primary);border-color:var(--smart-primary)}.smart-toast-item.secondary{background-color:var(--smart-secondary);border-color:var(--smart-secondary);color:var(--smart-secondary-color)}.smart-toast-item.secondary .smart-toast-item-header .smart-toast-item-close-button{color:var(--smart-primary-color)}.smart-toast-item.success{background-color:var(--smart-success);border-color:var(--smart-success);color:var(--smart-success-color)}.smart-toast-item.success .smart-toast-item-header .smart-toast-item-close-button{color:var(--smart-primary-color)}.smart-toast-item.error{background-color:var(--smart-error);border-color:var(--smart-error);color:var(--smart-error-color)}.smart-toast-item.error .smart-toast-item-header .smart-toast-item-close-button{color:var(--smart-primary-color)}.smart-toast-item.info{background-color:var(--smart-info);border-color:var(--smart-info);color:var(--smart-info-color)}.smart-toast-item.info .smart-toast-item-header .smart-toast-item-close-button{color:var(--smart-primary-color)}.smart-toast-item.warning{background-color:var(--smart-warning);border-color:var(--smart-warning);color:var(--smart-warning-color)}.smart-toast-item.warning .smart-toast-item-header .smart-toast-item-close-button{color:var(--smart-primary-color)}.smart-toast-item.light{background-color:var(--smart-light);border-color:var(--smart-light);color:var(--smart-light-color)}.smart-toast-item.light .smart-toast-item-header .smart-toast-item-close-button{color:var(--smart-primary-color)}.smart-toast-item.dark{background-color:var(--smart-dark);border-color:var(--smart-dark);color:var(--smart-dark-color)}.smart-toast-item.dark .smart-toast-item-header .smart-toast-item-close-button{color:var(--smart-primary-color)}.smart-toast-item.mail{background-color:#337ab7;border-color:#337ab7;color:#fff}.smart-toast-item.mail .smart-toast-item-header .smart-toast-item-close-button{color:#fff}.smart-toast-item.time{background-color:#363636;border-color:#363636;color:#fff}.smart-toast-item.time .smart-toast-item-header .smart-toast-item-close-button{color:#fff}.smart-toast-item.info .smart-toast-item-icon:after{--smart-toast-item-icon:var(--smart-icon-help-circled)}.smart-toast-item.warning .smart-toast-item-icon:after{--smart-toast-item-icon:var(--smart-icon-attention)}.smart-toast-item.success .smart-toast-item-icon:after{--smart-toast-item-icon:var(--smart-icon-check)}.smart-toast-item.error .smart-toast-item-icon:after{--smart-toast-item-icon:var(--smart-icon-block)}.smart-toast-item.mail .smart-toast-item-icon:after{--smart-toast-item-icon:var(--smart-icon-mail)}.smart-toast-item.time .smart-toast-item-icon:after{--smart-toast-item-icon:var(--smart-icon-clock)}.smart-toast-item[right-to-left]>.smart-container{direction:rtl}@keyframes blink{50%{opacity:.5}}
.smart-toggle-box{display:inline-block;outline:0;height:var(--smart-editor-height);cursor:pointer}.smart-toggle-box.smart-element{border:none;background:0 0}.smart-toggle-box .smart-container,.smart-toggle-box.smart-container{position:relative;display:flex;align-items:center}.smart-toggle-box .smart-ripple{background:var(--smart-primary)}.smart-toggle-box .smart-overlay{top:0;height:100%;background:var(--smart-primary);width:var(--smart-editor-height);position:absolute;left:2px;border-radius:100%;padding:0;opacity:0;box-sizing:content-box;transition:opacity 280ms ease-in-out;margin:0}.smart-toggle-box .smart-label{color:var(--smart-background-color);background:inherit;font-size:inherit;font-family:inherit;margin:0 8px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:auto}.smart-toggle-box.smart-check-box .smart-input{width:var(--smart-check-box-default-size);min-width:var(--smart-check-box-default-size);height:var(--smart-check-box-default-size);min-height:var(--smart-check-box-default-size);background-color:var(--smart-background);box-sizing:initial;border:var(--smart-border-width) solid var(--smart-border);display:inline-block;color:var(--smart-background-color);border-top-left-radius:var(--smart-border-top-left-radius);border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);margin:0 0 0 8px;transition:background linear .2s;position:relative}.smart-toggle-box.smart-check-box .smart-input:after{font-family:var(--smart-font-family-icon);display:flex;justify-content:center;align-content:center;height:100%;align-items:center}.smart-toggle-box.smart-check-box[checked] .smart-input:after{font-weight:100;content:var(--smart-icon-check);pointer-events:none}.smart-toggle-box.smart-check-box[checked=null] .smart-input:after{content:"-";margin-top:-1px}.smart-toggle-box.smart-radio-button .smart-input{width:var(--smart-radio-button-default-size);min-width:var(--smart-radio-button-default-size);height:var(--smart-radio-button-default-size);min-height:var(--smart-radio-button-default-size);background-color:var(--smart-background);box-sizing:initial;border-style:solid;border-width:var(--smart-border-width);border-color:var(--smart-border);display:inline-block;border-radius:100%;color:var(--smart-background-color);margin:0 0 0 8px;position:relative}.smart-toggle-box.smart-radio-button .smart-input:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:50%;height:50%;font-style:normal;text-decoration:inherit;font-variant:normal;text-transform:none;color:inherit;border-radius:50%;line-height:100%}.smart-toggle-box.smart-radio-button[checked] .smart-input:after{font-size:15px;font-weight:100;background:var(--smart-primary-color)}.smart-toggle-box.smart-radio-button[checked][hover]:not([focus]) .smart-input::after{background:var(--smart-ui-state-color-hover)}.smart-toggle-box[active] .smart-input,.smart-toggle-box[checked] .smart-input{border-color:var(--smart-ui-state-border-active);background-color:var(--smart-ui-state-active);color:var(--smart-ui-state-color-active)}.smart-toggle-box[active]:focus .smart-overlay,.smart-toggle-box[active][focus] .smart-overlay{opacity:.4}.smart-toggle-box[hover] .smart-input{border-color:var(--smart-ui-state-border-hover);background-color:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover)}.smart-toggle-box:focus .smart-input,.smart-toggle-box[focus] .smart-input{outline:0;overflow:visible;border-color:var(--smart-primary);background-color:var(--smart-primary);color:var(--smart-primary-color)}.smart-toggle-box:focus .smart-overlay,.smart-toggle-box[focus] .smart-overlay{opacity:.3}.smart-toggle-box[readonly],.smart-toggle-box[readonly] .smart-input,.smart-toggle-box[readonly] .smart-label{cursor:initial}.smart-toggle-box[check-mode=input]{cursor:default}.smart-toggle-box[check-mode=input] .smart-input,.smart-toggle-box[check-mode=label] .smart-label{cursor:pointer}.smart-toggle-box[right-to-left] .smart-container,.smart-toggle-box[right-to-left] .smart-hidden-input{direction:rtl}.smart-toggle-box[right-to-left] .smart-overlay{left:initial;right:2px}.smart-toggle-box[right-to-left] .smart-input{margin:0 8px 0 0}
smart-tooltip{position:absolute;text-align:center;z-index:var(--smart-editor-drop-down-z-index);font-family:var(--smart-font-family);font-size:var(--smart-font-size);visibility:hidden;pointer-events:none}smart-tooltip.smart-element{background:0 0;overflow:visible}smart-tooltip .smart-tooltip-content{overflow:hidden;text-overflow:ellipsis;padding:var(--smart-tooltip-padding);background-color:var(--smart-secondary);color:var(--smart-secondary-color);border:var(--smart-border-width) solid var(--smart-secondary);width:100%;height:100%;opacity:.9;box-shadow:var(--smart-elevation-6);font-family:var(--smart-font-family);border-top-left-radius:var(--smart-border-top-left-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius)}smart-tooltip[arrow],smart-tooltip[arrow][arrow-direction=bottom]{padding-bottom:var(--smart-tooltip-arrow-width)}smart-tooltip.auto,smart-tooltip.auto .smart-container,smart-tooltip.auto .smart-tooltip-content{height:auto}smart-tooltip[arrow] .smart-tooltip-content:after,smart-tooltip[arrow][arrow-direction=bottom] .smart-tooltip-content:after{content:"";width:0;height:0;border-top:var(--smart-tooltip-arrow-width) solid var(--smart-tooltip-arrow-color);position:absolute;bottom:0;left:calc(50% - var(--smart-tooltip-arrow-width));border-left:var(--smart-tooltip-arrow-width) solid transparent;border-right:var(--smart-tooltip-arrow-width) solid transparent;transform:translateX(var(--smart-tooltip-arrow-translate))}smart-tooltip[visible]{visibility:visible;pointer-events:auto}smart-tooltip[arrow][arrow-direction=top]{padding-bottom:initial;padding-top:var(--smart-tooltip-arrow-width)}smart-tooltip[arrow][arrow-direction=top] .smart-tooltip-content:after{border-left:var(--smart-tooltip-arrow-width) solid transparent;border-right:var(--smart-tooltip-arrow-width) solid transparent;border-bottom:var(--smart-tooltip-arrow-width) solid var(--smart-tooltip-arrow-color);border-top:initial;top:0;bottom:calc(100% + var(--smart-tooltip-arrow-width));transform:translateX(var(--smart-tooltip-arrow-translate))}smart-tooltip[arrow][arrow-direction=left] .smart-tooltip-content:after,smart-tooltip[arrow][arrow-direction=right] .smart-tooltip-content:after{border-bottom:var(--smart-tooltip-arrow-width) solid transparent;border-top:var(--smart-tooltip-arrow-width) solid transparent;transform:translateY(var(--smart-tooltip-arrow-translate))}smart-tooltip[arrow][arrow-direction=left]{padding-bottom:initial;padding-left:var(--smart-tooltip-arrow-width)}smart-tooltip[arrow][arrow-direction=left] .smart-tooltip-content:after{border-right:var(--smart-tooltip-arrow-width) solid var(--smart-tooltip-arrow-color);border-left:initial;left:0;top:calc(50% - var(--smart-tooltip-arrow-width))}smart-tooltip[arrow][arrow-direction=right]{padding-bottom:initial;padding-right:var(--smart-tooltip-arrow-width)}smart-tooltip[arrow][arrow-direction=right] .smart-tooltip-content:after{border-left:var(--smart-tooltip-arrow-width) solid var(--smart-tooltip-arrow-color);border-right:initial;left:calc(100% - var(--smart-tooltip-arrow-width));top:calc(50% - var(--smart-tooltip-arrow-width))}smart-tooltip:not([animation=none]){opacity:0;transition:opacity .5s ease-in-out}smart-tooltip:not([animation=none])[visible]{opacity:1}smart-tooltip[right-to-left] .smart-tooltip-content{direction:rtl}
smart-tree{display:block;width:var(--smart-tree-default-width);height:var(--smart-tree-default-height);overflow:hidden;visibility:hidden}.smart-tree.smart-container,.smart-tree>.smart-container{display:flex;flex-direction:column;position:relative}.smart-tree.smart-element{visibility:inherit}.smart-tree smart-scroll-bar{overflow:hidden}.smart-tree smart-scroll-viewer{position:relative;border:none;width:100%;height:100%;padding:0}.smart-tree smart-scroll-viewer.smart-scroll-viewer-element{border:none}.smart-tree smart-scroll-viewer.scroll-buttons-shown{width:100%;height:calc(100% - 2 * var(--smart-tree-scroll-button-size))}.smart-tree smart-scroll-viewer.scroll-buttons-shown.one-button-shown{width:100%;height:calc(100% - var(--smart-tree-scroll-button-size))}.smart-tree smart-tree-item,.smart-tree smart-tree-items-group{position:relative;height:auto;justify-content:space-between;align-items:center;white-space:nowrap;cursor:pointer}.smart-tree .smart-tree-drop-down,.smart-tree smart-tree-item[disabled],.smart-tree smart-tree-item[template-applied],.smart-tree smart-tree-items-group[disabled],.smart-tree[disabled] smart-tree-item,.smart-tree[disabled] smart-tree-items-group,.smart-tree[display-loading-indicator] smart-tree-item,.smart-tree[display-loading-indicator] smart-tree-items-group{cursor:default}.smart-tree smart-tree-item.smart-element,.smart-tree smart-tree-items-group.smart-element{border:none}.smart-tree smart-tree-item[separator]:after,.smart-tree smart-tree-items-group[separator]:after{content:"";position:absolute;left:0;bottom:0;width:100%;height:1px;background-color:rgba(0,0,0,.1);pointer-events:none}.smart-tree smart-tree-item{overflow:hidden;display:block;padding-left:0}.smart-tree smart-tree-item .smart-tree-item-shortcut{opacity:.5}.smart-tree smart-tree-items-group{display:flex;flex-direction:column;overflow:hidden}.smart-tree smart-tree-items-group>.smart-tree-item-label-container{justify-content:flex-start;overflow:hidden}.smart-tree smart-tree-items-group>.smart-tree-item-label-container>.smart-tree-item-label-element{order:1}.smart-tree smart-tree-items-group .smart-tree-items-group-arrow{order:0;position:relative;display:flex;justify-content:center;width:var(--smart-tree-indent);left:calc(1px - var(--smart-tree-indent)/ 2);height:13px;font-family:var(--smart-font-family-icon);transform:rotate(0);line-height:1}.smart-tree smart-tree-items-group .smart-tree-items-group-arrow:after{position:relative;height:100%;left:0;top:0}.smart-tree smart-tree-items-group.filtered-child>.smart-tree-item-label-container>.smart-tree-item-label-element{font-weight:unset}.smart-tree .smart-tree-main-container{position:relative;width:100%;height:100%;overflow:hidden}.smart-tree .smart-tree-items-group-opened>.smart-tree-item-label-container>.smart-tree-items-group-arrow{transform:rotate(180deg)}.smart-tree .smart-tree-item-label-element{width:100%;display:flex;align-items:center;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.smart-tree .smart-tree-item-label-element>span{position:relative;padding:var(--smart-tree-item-padding);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.smart-tree .smart-tree-item-label-element>span>smart-button button{padding:initial}.smart-tree .smart-tree-item-label-element>span>i{vertical-align:middle}.smart-tree .smart-tree-item-label-container{height:var(--smart-tree-item-label-height);position:relative;width:100%;display:flex;flex-direction:row;align-items:center;justify-content:space-between;overflow:hidden}.smart-tree .smart-tree-edit-input{position:absolute;outline:0;margin:0 var(--smart-tree-item-horizontal-offset);border:1px solid var(--smart-border);width:calc(100% - 2 * var(--smart-tree-item-horizontal-offset));font-family:var(--smart-font-family);font-size:var(--smart-font-size);z-index:1}.smart-tree .smart-tree-edit-input::selection{background-color:var(--smart-ui-state-selected);color:var(--smart-ui-state-color-selected)}.smart-tree .smart-tree-filter-input-container{display:none;position:relative;width:calc(100% - 2 * var(--smart-tree-item-horizontal-offset));height:calc(var(--smart-text-box-default-height));margin:var(--smart-tree-item-vertical-offset) var(--smart-tree-item-horizontal-offset);font-size:inherit}.smart-tree .smart-tree-filter-input-container:after{content:var(--smart-icon-filter);font-family:var(--smart-font-family-icon);height:var(--smart-text-box-default-height);position:absolute;top:0;width:25px;display:flex;align-items:center;justify-content:center;left:calc(100% - 25px)}.smart-tree .smart-filter-input{border:1px solid var(--smart-border);color:inherit;background:inherit;width:100%;height:100%;padding-left:var(--smart-editor-label-padding);padding-right:calc(var(--smart-editor-label-padding) + 25px);font-size:inherit}.smart-tree .smart-filter-input:focus{outline:0}.smart-tree .smart-filter-input::selection{background-color:var(--smart-ui-state-selected);color:var(--smart-ui-state-color-selected)}.smart-tree .smart-tree-scroll-button{width:100%;height:var(--smart-tree-scroll-button-size);background-color:var(--smart-scroll-bar-button-background);--smart-button-padding:0}.smart-tree .smart-tree-scroll-button>button{border:none}.smart-tree .smart-scroll-viewer-container .smart-tree-main-container{padding-left:var(--smart-tree-item-horizontal-offset);padding-right:var(--smart-tree-item-horizontal-offset);padding-top:var(--smart-tree-item-vertical-offset)}.smart-tree .smart-scroll-viewer-container.vscroll .smart-tree-main-container{padding-right:var(--smart-tree-item-horizontal-offset)}.smart-tree .smart-scroll-viewer-content-container{display:block;padding:0}.smart-tree .smart-tree-drop-down{width:100%;height:auto;transform:none;transform:scaleY(1)}.smart-tree .smart-tree-drop-down.smart-visibility-hidden{margin-top:0;height:0;transform:scaleY(0)}.smart-tree .drop-target:after{content:"";position:absolute;box-sizing:border-box;border:2px dashed var(--smart-primary);width:100%;height:100%;left:0;top:0;pointer-events:none;opacity:.75}.smart-tree .drop-target.top:after{border:none;border-top:2px dashed var(--smart-primary)}.smart-tree .drop-target.bottom:after{border:none;border-bottom:2px dashed var(--smart-primary)}.smart-tree .smart-ripple{background:var(--smart-primary)}.smart-tree .smart-hidden{display:none!important}.smart-tree[overflow=hidden],.smart-tree[scroll-mode=scrollButtons]{--smart-scroll-bar-size:0px}.smart-tree[selection-mode=checkBox] smart-tree-item>.smart-tree-item-label-container:before,.smart-tree[selection-mode=checkBox] smart-tree-items-group>.smart-tree-item-label-container:before,.smart-tree[selection-mode=radioButton] smart-tree-item>.smart-tree-item-label-container:before,.smart-tree[selection-mode=radioButton] smart-tree-items-group>.smart-tree-item-label-container:before{content:"";transform:scale(0)}.smart-tree[selection-mode=checkBox] smart-tree-item>.smart-tree-item-label-container:after,.smart-tree[selection-mode=checkBox] smart-tree-items-group>.smart-tree-item-label-container:after,.smart-tree[selection-mode=radioButton] smart-tree-item>.smart-tree-item-label-container:after,.smart-tree[selection-mode=radioButton] smart-tree-items-group>.smart-tree-item-label-container:after{content:"";position:absolute;border:var(--smart-border-width) solid var(--smart-border);border-top-left-radius:var(--smart-border-top-left-radius);border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);width:var(--smart-check-box-default-size);height:var(--smart-check-box-default-size);padding:1px;margin-left:5px;font-family:var(--smart-font-family-icon);justify-content:center;align-items:center;display:flex}.smart-tree[filterable] .smart-tree-filter-input-container,.smart-tree[scroll-mode=scrollButtons] .smart-tree-scroll-button{display:block}.smart-tree[selection-mode=checkBox] smart-tree-item[selected][focus]>.smart-tree-item-label-container:before,.smart-tree[selection-mode=checkBox] smart-tree-items-group[selected][focus]>.smart-tree-item-label-container:before,.smart-tree[selection-mode=radioButton] smart-tree-item[selected][focus]>.smart-tree-item-label-container:before,.smart-tree[selection-mode=radioButton] smart-tree-items-group[selected][focus]>.smart-tree-item-label-container:before{position:absolute;content:"";margin-left:5px;border-radius:50%;width:calc(var(--smart-check-box-default-size) + 16px);height:calc(var(--smart-check-box-default-size) + 16px);background:var(--smart-primary);opacity:.3;z-index:1;transform:scale(1)}.smart-tree[selection-mode=checkBox][show-lines] smart-tree-items-group>.smart-tree-item-label-container:after,.smart-tree[selection-mode=radioButton][show-lines] smart-tree-items-group>.smart-tree-item-label-container:after{margin-left:calc(var(--smart-tree-indent) + 5px)}.smart-tree[selection-mode=checkBox][show-lines] smart-tree-items-group[selected][focus]>.smart-tree-item-label-container:before,.smart-tree[selection-mode=radioButton][show-lines] smart-tree-items-group[selected][focus]>.smart-tree-item-label-container:before{margin-left:calc(var(--smart-tree-indent))}.smart-tree[selection-mode=checkBox][show-lines] smart-tree-item[selected][focus]>.smart-tree-item-label-container:before,.smart-tree[selection-mode=radioButton][show-lines] smart-tree-item[selected][focus]>.smart-tree-item-label-container:before{margin-left:0}.smart-tree[selection-mode=checkBox] smart-tree-item .smart-tree-item-label-element,.smart-tree[selection-mode=checkBox] smart-tree-items-group>.smart-tree-item-label-container>.smart-tree-item-label-element,.smart-tree[selection-mode=radioButton] smart-tree-item .smart-tree-item-label-element,.smart-tree[selection-mode=radioButton] smart-tree-items-group>.smart-tree-item-label-container>.smart-tree-item-label-element{padding-left:calc(var(--smart-tree-indent) + 10px)}.smart-tree[selection-mode=checkBox] .smart-tree-item-label-element>span,.smart-tree[selection-mode=radioButton] .smart-tree-item-label-element>span{padding-left:5px}.smart-tree[selection-mode=checkBox]:not([animation=none]) smart-tree-item>.smart-tree-item-label-container:before,.smart-tree[selection-mode=checkBox]:not([animation=none]) smart-tree-items-group>.smart-tree-item-label-container:before,.smart-tree[selection-mode=radioButton]:not([animation=none]) smart-tree-item>.smart-tree-item-label-container:before,.smart-tree[selection-mode=radioButton]:not([animation=none]) smart-tree-items-group>.smart-tree-item-label-container:before{transition:transform .25s ease-in-out}.smart-tree[selection-mode=checkBox][toggle-element-position=far] smart-tree-item[focus]>.smart-tree-item-label-container:before,.smart-tree[selection-mode=checkBox][toggle-element-position=far] smart-tree-items-group[focus]>.smart-tree-item-label-container:before,.smart-tree[selection-mode=radioButton][toggle-element-position=far] smart-tree-item[focus]>.smart-tree-item-label-container:before,.smart-tree[selection-mode=radioButton][toggle-element-position=far] smart-tree-items-group[focus]>.smart-tree-item-label-container:before{margin-left:-1px}.smart-tree[selection-mode=checkBox]:not([show-lines]) smart-tree-items-group>.smart-tree-item-label-container:after,.smart-tree[selection-mode=radioButton]:not([show-lines]) smart-tree-items-group>.smart-tree-item-label-container:after{margin-left:calc(var(--smart-check-box-default-size) + 5px)}.smart-tree[selection-mode=checkBox]:not([show-lines]):not([toggle-element-position=far]) smart-tree-item>.smart-tree-item-label-container:after,.smart-tree[selection-mode=checkBox]:not([show-lines]):not([toggle-element-position=far]) smart-tree-items-group>.smart-tree-item-label-container:after,.smart-tree[selection-mode=radioButton]:not([show-lines]):not([toggle-element-position=far]) smart-tree-item>.smart-tree-item-label-container:after,.smart-tree[selection-mode=radioButton]:not([show-lines]):not([toggle-element-position=far]) smart-tree-items-group>.smart-tree-item-label-container:after{margin-left:calc(var(--smart-check-box-default-size) - 5px)}.smart-tree[selection-mode=checkBox]:not([show-lines]):not([toggle-element-position=far]):not([right-to-left]) smart-tree-item .smart-tree-item-label-element>span,.smart-tree[selection-mode=radioButton]:not([show-lines]):not([toggle-element-position=far]):not([right-to-left]) smart-tree-item .smart-tree-item-label-element>span{padding:var(--smart-tree-item-padding)}.smart-tree[selection-mode=radioButton] smart-tree-item>.smart-tree-item-label-container:after,.smart-tree[selection-mode=radioButton] smart-tree-items-group>.smart-tree-item-label-container:after{border-radius:100%}.smart-tree[selection-mode=radioButton] smart-tree-item[selected]>.smart-tree-item-label-container:after,.smart-tree[selection-mode=radioButton] smart-tree-items-group[selected]>.smart-tree-item-label-container:after{content:var(--smart-icon-radio);background:var(--smart-primary);border-color:var(--smart-primary);color:var(--smart-primary-color)}.smart-tree[selection-mode=checkBox] smart-tree-item[selected]>.smart-tree-item-label-container:after,.smart-tree[selection-mode=checkBox] smart-tree-items-group[selected]>.smart-tree-item-label-container:after{background:var(--smart-primary);border-color:var(--smart-primary);color:var(--smart-primary-color);content:var(--smart-icon-check)}.smart-tree[selection-mode=checkBox] smart-tree-item[indeterminate]>.smart-tree-item-label-container:after,.smart-tree[selection-mode=checkBox] smart-tree-items-group[indeterminate]>.smart-tree-item-label-container:after{padding:2px;background-clip:content-box;width:calc(var(--smart-check-box-default-size) - 1px);height:calc(var(--smart-check-box-default-size) - 1px)}.smart-tree[filterable] smart-scroll-viewer{height:calc(100% - var(--smart-text-box-default-height) - 2 * var(--smart-tree-item-vertical-offset))}.smart-tree[filterable] smart-scroll-viewer.scroll-buttons-shown{height:calc(100% - 2 * var(--smart-tree-scroll-button-size) - var(--smart-text-box-default-height) - 2 * var(--smart-tree-item-vertical-offset))}.smart-tree[filterable] smart-scroll-viewer.scroll-buttons-shown.one-button-shown{height:calc(100% - var(--smart-tree-scroll-button-size) - var(--smart-text-box-default-height) - 2 * var(--smart-tree-item-vertical-offset))}.smart-tree[filter-applied] .smart-tree-item-label-element{font-weight:bolder}.smart-tree[filter-applied] smart-tree-items-group.hidden-children{cursor:not-allowed}.smart-tree:not([toggle-element-position=far]) smart-tree-items-group .smart-tree-items-group-arrow{opacity:1;z-index:1}.smart-tree[toggle-element-position=far] smart-tree-items-group>.smart-tree-item-label-container{justify-content:space-between}.smart-tree[toggle-element-position=far] smart-tree-items-group>.smart-tree-item-label-container>.smart-tree-item-label-element{order:0;margin-left:var(--smart-tree-indent)}.smart-tree[toggle-element-position=far] smart-tree-items-group>.smart-tree-item-label-container>.smart-tree-items-group-arrow{order:1}.smart-tree:not([show-lines])[selection-mode=checkBox][toggle-element-position=far]:not([right-to-left]) smart-tree-items-group>.smart-tree-item-label-container>.smart-tree-item-label-element,.smart-tree:not([show-lines])[selection-mode=radioButton][toggle-element-position=far]:not([right-to-left]) smart-tree-items-group>.smart-tree-item-label-container>.smart-tree-item-label-element{margin-left:calc(var(--smart-tree-indent) - 11px)}.smart-tree:not([show-lines]):not([toggle-element-position=far]):not([right-to-left]) smart-tree-items-group>.smart-tree-item-label-container>.smart-tree-item-label-element{margin-left:-4px}.smart-tree:not([show-lines])[toggle-element-position=far]:not([right-to-left]) smart-tree-items-group>.smart-tree-item-label-container>.smart-tree-item-label-element{margin-left:calc(var(--smart-tree-indent) - 4px)}.smart-tree:not([show-lines]):not([selection-display-mode=label]):not([right-to-left]) smart-tree-items-group>.smart-tree-item-label-container>.smart-tree-item-label-element>span{padding-left:0}.smart-tree[show-lines] smart-tree-item>.smart-tree-item-label-container,.smart-tree[show-lines] smart-tree-item>.smart-tree-item-label-container>.smart-tree-item-label-element,.smart-tree[show-lines] smart-tree-items-group>.smart-tree-item-label-container,.smart-tree[show-lines] smart-tree-items-group>.smart-tree-item-label-container>.smart-tree-item-label-element{position:relative;overflow:visible}.smart-tree[show-lines] smart-tree-item>.smart-tree-item-label-container>.smart-tree-item-label-element:before,.smart-tree[show-lines] smart-tree-items-group>.smart-tree-item-label-container>.smart-tree-item-label-element:before{content:"";position:absolute;border-left:var(--smart-tree-lines-width) var(--smart-tree-lines-style) var(--smart-tree-lines-color);height:300%;left:calc(0px - var(--smart-tree-indent));pointer-events:none}.smart-tree[show-lines] smart-tree-item>.smart-tree-item-label-container>.smart-tree-item-label-element:after,.smart-tree[show-lines] smart-tree-items-group>.smart-tree-item-label-container>.smart-tree-item-label-element:after{content:"";position:absolute;border-top:var(--smart-tree-lines-width) var(--smart-tree-lines-style) var(--smart-tree-lines-color);pointer-events:none;width:var(--smart-tree-indent);left:calc(0px - var(--smart-tree-indent))}.smart-tree:not([selection-display-mode=label]) smart-tree-item,.smart-tree:not([selection-display-mode=label]) smart-tree-items-group>.smart-tree-item-label-container,.smart-tree[selection-display-mode=label] smart-tree-item>.smart-tree-item-label-container>.smart-tree-item-label-element>span,.smart-tree[selection-display-mode=label] smart-tree-items-group>.smart-tree-item-label-container>.smart-tree-item-label-element>span{border-top-left-radius:var(--smart-item-border-top-left-radius);border-top-right-radius:var(--smart-item-border-top-right-radius);border-bottom-left-radius:var(--smart-item-border-bottom-left-radius);border-bottom-right-radius:var(--smart-item-border-bottom-right-radius);border-width:var(--smart-item-border-width);border-style:solid;margin-bottom:var(--smart-tree-item-vertical-offset)}.smart-tree[show-lines] smart-tree-item.last-filtered-child>.smart-tree-item-label-container>.smart-tree-item-label-element:before,.smart-tree[show-lines] smart-tree-item:last-child>.smart-tree-item-label-container>.smart-tree-item-label-element:before,.smart-tree[show-lines] smart-tree-items-group.last-filtered-child>.smart-tree-item-label-container>.smart-tree-item-label-element:before,.smart-tree[show-lines] smart-tree-items-group:last-child>.smart-tree-item-label-container>.smart-tree-item-label-element:before{height:150%;top:-100%}.smart-tree[show-lines] smart-tree-item{padding-left:var(--smart-tree-indent)}.smart-tree[show-lines] smart-tree-items-group>.smart-tree-item-label-container>.smart-tree-item-label-element{width:calc(100% - var(--smart-tree-indent))}.smart-tree[show-lines]:not([show-root-lines]) smart-tree-item[level="1"] .smart-tree-item-label-element:after,.smart-tree[show-lines]:not([show-root-lines]) smart-tree-item[level="1"] .smart-tree-item-label-element:before,.smart-tree[show-lines]:not([show-root-lines]) smart-tree-items-group[level="1"]>.smart-tree-item-label-container>.smart-tree-item-label-element:after,.smart-tree[show-lines]:not([show-root-lines]) smart-tree-items-group[level="1"]>.smart-tree-item-label-container>.smart-tree-item-label-element:before{content:none}.smart-tree[show-lines][show-root-lines] smart-tree-item[level="1"] .smart-tree-item-label-element:after,.smart-tree[show-lines][show-root-lines] smart-tree-item[level="1"] .smart-tree-item-label-element:before,.smart-tree[show-lines][show-root-lines] smart-tree-items-group[level="1"]>.smart-tree-item-label-container>.smart-tree-item-label-element:after,.smart-tree[show-lines][show-root-lines] smart-tree-items-group[level="1"]>.smart-tree-item-label-container>.smart-tree-item-label-element:before{pointer-events:none}.smart-tree[show-lines] .smart-tree-items-group-expanded:not(:last-child):not(.last-filtered-child)>.smart-tree-item-label-container>.smart-tree-item-label-element:before{height:3000px;z-index:1}.smart-tree:not([selection-display-mode=label]) smart-tree-item{border-color:transparent}.smart-tree:not([selection-display-mode=label]) smart-tree-item[focus]{color:var(--smart-ui-state-color-focus);background-color:var(--smart-ui-state-focus);border-color:var(--smart-ui-state-border-focus)}.smart-tree:not([selection-display-mode=label]) smart-tree-item[selected]{border-color:var(--smart-ui-state-border-selected);background-color:var(--smart-ui-state-selected);color:var(--smart-ui-state-color-selected)}.smart-tree:not([selection-display-mode=label]) smart-tree-items-group>.smart-tree-item-label-container{border-color:transparent}.smart-tree:not([selection-display-mode=label]) smart-tree-items-group[focus]>.smart-tree-item-label-container{color:var(--smart-ui-state-color-focus);background-color:var(--smart-ui-state-focus);border-color:var(--smart-ui-state-border-focus)}.smart-tree:not([selection-display-mode=label]) smart-tree-items-group[selected]>.smart-tree-item-label-container{border-color:var(--smart-ui-state-border-selected);background-color:var(--smart-ui-state-selected);color:var(--smart-ui-state-color-selected)}.smart-tree:not([selection-display-mode=label]):not([animation=none]) smart-tree-item,.smart-tree:not([selection-display-mode=label]):not([animation=none]) smart-tree-items-group>.smart-tree-item-label-container{transition:color ease-in-out .28s,border-color ease-in-out .28s,background ease-in-out .28s}.smart-tree[selection-display-mode=label] smart-tree-item>.smart-tree-item-label-container>.smart-tree-item-label-element>span,.smart-tree[selection-display-mode=label] smart-tree-items-group>.smart-tree-item-label-container>.smart-tree-item-label-element>span{border-color:transparent;margin-top:var(--smart-tree-item-vertical-offset)}.smart-tree[selection-display-mode=label] smart-tree-item[focus]>.smart-tree-item-label-container>.smart-tree-item-label-element>span:not(.smart-ripple),.smart-tree[selection-display-mode=label] smart-tree-items-group[focus]>.smart-tree-item-label-container>.smart-tree-item-label-element>span:not(.smart-ripple){color:var(--smart-ui-state-color-focus);background-color:var(--smart-ui-state-focus);border-color:var(--smart-ui-state-border-focus)}.smart-tree[selection-display-mode=label] smart-tree-items-group .smart-tree-items-group-arrow{top:calc(-.5px - var(--smart-tree-item-border-width)/ 2)}.smart-tree[selection-display-mode=label][selection-mode=checkBox]:not([right-to-left]) smart-tree-item>.smart-tree-item-label-container>.smart-tree-item-label-element>span,.smart-tree[selection-display-mode=label][selection-mode=checkBox]:not([right-to-left]) smart-tree-items-group>.smart-tree-item-label-container>.smart-tree-item-label-element>span,.smart-tree[selection-display-mode=label][selection-mode=radioButton]:not([right-to-left]) smart-tree-item>.smart-tree-item-label-container>.smart-tree-item-label-element>span,.smart-tree[selection-display-mode=label][selection-mode=radioButton]:not([right-to-left]) smart-tree-items-group>.smart-tree-item-label-container>.smart-tree-item-label-element>span{margin-left:5px;padding:var(--smart-tree-item-padding)}.smart-tree[selection-display-mode=label][selection-mode=checkBox]:not([show-lines]):not([right-to-left]):not([toggle-element-position=far]) smart-tree-item>.smart-tree-item-label-container>.smart-tree-item-label-element,.smart-tree[selection-display-mode=label][selection-mode=radioButton]:not([show-lines]):not([right-to-left]):not([toggle-element-position=far]) smart-tree-item>.smart-tree-item-label-container>.smart-tree-item-label-element{padding-left:calc(var(--smart-tree-indent) + 15px)}.smart-tree[selection-display-mode=label][selection-mode=checkBox]:not([show-lines]):not([right-to-left]):not([toggle-element-position=far]) smart-tree-items-group>.smart-tree-item-label-container>.smart-tree-item-label-element,.smart-tree[selection-display-mode=label][selection-mode=radioButton]:not([show-lines]):not([right-to-left]):not([toggle-element-position=far]) smart-tree-items-group>.smart-tree-item-label-container>.smart-tree-item-label-element{padding-left:calc(var(--smart-tree-indent) + 3px)}.smart-tree[selection-display-mode=label][selection-mode=checkBox]:not([show-lines]):not([right-to-left])[toggle-element-position=far] smart-tree-items-group>.smart-tree-item-label-container>.smart-tree-item-label-element,.smart-tree[selection-display-mode=label][selection-mode=radioButton]:not([show-lines]):not([right-to-left])[toggle-element-position=far] smart-tree-items-group>.smart-tree-item-label-container>.smart-tree-item-label-element{margin-left:0}.smart-tree[selection-display-mode=label]:not([selection-mode=checkBox]):not([selection-mode=radioButton]) smart-tree-item[selected]>.smart-tree-item-label-container>.smart-tree-item-label-element>span:not(.smart-ripple),.smart-tree[selection-display-mode=label]:not([selection-mode=checkBox]):not([selection-mode=radioButton]) smart-tree-items-group[selected]>.smart-tree-item-label-container>.smart-tree-item-label-element>span:not(.smart-ripple){background-color:var(--smart-ui-state-selected);color:var(--smart-ui-state-color-selected);border-color:var(--smart-ui-state-border-selected)}.smart-tree[selection-display-mode=label]:not([show-lines]):not([right-to-left]) smart-tree-item>.smart-tree-item-label-container>.smart-tree-item-label-element>span{margin:var(--smart-tree-item-padding);margin-right:0;margin-top:0;margin-top:var(--smart-tree-item-vertical-offset);margin-bottom:var(--smart-tree-item-vertical-offset)}.smart-tree[selection-display-mode=label]:not([animation=none]) smart-tree-item>.smart-tree-item-label-container>.smart-tree-item-label-element>span,.smart-tree[selection-display-mode=label]:not([animation=none]) smart-tree-items-group>.smart-tree-item-label-container>.smart-tree-item-label-element>span{transition:color ease-in-out .28s,background ease-in-out .28s,border-color ease-in-out .28s}.smart-tree[selection-display-mode=label]:not([animation=none]) smart-tree-item[focus]:not([selected])>.smart-tree-item-label-container>.smart-tree-item-label-element>span:not(.smart-ripple),.smart-tree[selection-display-mode=label]:not([animation=none]) smart-tree-items-group[focus]:not([selected])>.smart-tree-item-label-container>.smart-tree-item-label-element>span:not(.smart-ripple){transition:color ease-in-out .28s,border-color ease-in-out .28s,background ease-in-out .28s}.smart-tree[auto-hide-toggle-element] .hidden-arrows smart-tree-items-group .smart-tree-items-group-arrow{opacity:0}.smart-tree:not([animation=none]) .smart-tree-drop-down{transform-origin:top;transition:height .2s ease-in,transform .2s ease-in,visibility .2s ease-in}.smart-tree:not([animation=none]) .smart-tree-item-label-container>.smart-tree-items-group-arrow{transition:transform .2s ease-in}.smart-tree:not([animation=none])[auto-hide-toggle-element] .smart-tree-item-label-container>.smart-tree-items-group-arrow{transition:transform .2s ease-in,opacity .2s ease-in}@media (hover:hover){.smart-tree[selection-mode=checkBox] smart-tree-item:hover>.smart-tree-item-label-container>.smart-tree-item-label-element span.smart-ripple,.smart-tree[selection-mode=checkBox] smart-tree-items-group>.smart-tree-item-label-container:hover>.smart-tree-item-label-element span.smart-ripple,.smart-tree[selection-mode=radioButton] smart-tree-item:hover>.smart-tree-item-label-container>.smart-tree-item-label-element span.smart-ripple,.smart-tree[selection-mode=radioButton] smart-tree-items-group>.smart-tree-item-label-container:hover>.smart-tree-item-label-element span.smart-ripple{background-color:var(--smart-ui-state-selected)}.smart-tree[selection-mode=checkBox] smart-tree-item:hover>.smart-tree-item-label-container:after,.smart-tree[selection-mode=checkBox] smart-tree-items-group>.smart-tree-item-label-container:hover:after{color:var(--smart-background-color);background-color:var(--smart-background);border-color:var(--smart-border)}.smart-tree[selection-mode=checkBox] smart-tree-item[indeterminate]:not(:hover)>.smart-tree-item-label-container:after,.smart-tree[selection-mode=checkBox] smart-tree-items-group[indeterminate]>.smart-tree-item-label-container:not(:hover):after{background-color:var(--smart-ui-state-selected)}.smart-tree[selection-mode=radioButton] smart-tree-item:not([selected]):hover>.smart-tree-item-label-container:after,.smart-tree[selection-mode=radioButton] smart-tree-items-group:not([selected])>.smart-tree-item-label-container:hover:after{color:var(--smart-background-color);background-color:var(--smart-background);border-color:var(--smart-border)}.smart-tree:not([selection-display-mode=label]) smart-tree-item:not([selected])[hover],.smart-tree:not([selection-display-mode=label]) smart-tree-items-group:not([selected])[hover]>.smart-tree-item-label-container,.smart-tree:not([selection-display-mode=label]):not([disable-hover]) smart-tree-item:not([selected]):hover,.smart-tree:not([selection-display-mode=label]):not([disable-hover]) smart-tree-items-group:not([selected])>.smart-tree-item-label-container:hover,.smart-tree[selection-display-mode=label] smart-tree-item:not([selected])[hover]>.smart-tree-item-label-container>.smart-tree-item-label-element>span,.smart-tree[selection-display-mode=label] smart-tree-items-group:not([selected])[hover]>.smart-tree-item-label-container,.smart-tree[selection-display-mode=label]:not([disable-hover]) smart-tree-item:not([selected]):hover>.smart-tree-item-label-container>.smart-tree-item-label-element>span{color:var(--smart-ui-state-color-hover);background-color:var(--smart-ui-state-hover);border-color:var(--smart-ui-state-border-hover)}}.smart-tree-item-feedback{position:absolute;display:flex;align-items:center;box-shadow:var(--smart-elevation-8);border:1px solid var(--smart-border);padding:5px;color:var(--smart-background-color);background-color:var(--smart-background);font-family:var(--smart-font-family);font-size:var(--smart-font-size);white-space:nowrap;cursor:move;z-index:10000}.smart-tree-item-feedback.multiple{font-family:var(--smart-font-family-icon);font-size:26px}.smart-hidden{display:none!important}.smart-tree smart-tree-items-group[right-to-left] smart-tree-item .smart-tree-item-label-element,.smart-tree smart-tree-items-group[right-to-left] smart-tree-items-group>.smart-tree-item-label-container>.smart-tree-item-label-element{padding-left:initial;padding-right:calc(var(--smart-tree-indent) + 10px)}.smart-tree smart-tree-items-group[right-to-left] smart-tree-item>.smart-tree-item-label-container:after{margin-left:-5px}.smart-tree smart-tree-items-group[right-to-left] smart-tree-items-group>.smart-tree-item-label-container:after{margin-left:calc(0px - var(--smart-check-box-default-size) - 5px)}.smart-tree smart-tree-items-group[right-to-left] smart-tree-item[focus]>.smart-tree-item-label-container:before,.smart-tree smart-tree-items-group[right-to-left] smart-tree-items-group[focus]>.smart-tree-item-label-container:before{margin-left:-3px}.smart-tree smart-tree-items-group[right-to-left][show-lines] smart-tree-item[focus]>.smart-tree-item-label-container:before,.smart-tree smart-tree-items-group[right-to-left][toggle-element-position=far] smart-tree-item[focus]>.smart-tree-item-label-container:before,.smart-tree smart-tree-items-group[right-to-left][toggle-element-position=far] smart-tree-items-group[focus]>.smart-tree-item-label-container:before{margin-left:1px}.smart-tree smart-tree-items-group[right-to-left][show-lines] smart-tree-items-group[focus]>.smart-tree-item-label-container:before{margin-left:calc(1px - var(--smart-check-box-default-size))}.smart-tree[toggle-element-position=far][right-to-left] smart-tree-items-group>.smart-tree-item-label-container>.smart-tree-item-label-element{margin-left:initial;margin-right:var(--smart-tree-indent)}.smart-tree:not([show-lines])[selection-mode=checkBox][toggle-element-position=far][right-to-left] smart-tree-item .smart-tree-item-label-element,.smart-tree:not([show-lines])[selection-mode=checkBox][toggle-element-position=far][right-to-left] smart-tree-items-group>.smart-tree-item-label-container>.smart-tree-item-label-element,.smart-tree:not([show-lines])[selection-mode=radioButton][toggle-element-position=far][right-to-left] smart-tree-item .smart-tree-item-label-element,.smart-tree:not([show-lines])[selection-mode=radioButton][toggle-element-position=far][right-to-left] smart-tree-items-group>.smart-tree-item-label-container>.smart-tree-item-label-element{padding-right:calc(var(--smart-tree-indent) + 4px)}.smart-tree:not([show-lines]):not([toggle-element-position=far])[right-to-left] smart-tree-items-group>.smart-tree-item-label-container>.smart-tree-item-label-element{margin-right:-4px}.smart-tree:not([show-lines])[toggle-element-position=far][right-to-left] smart-tree-items-group>.smart-tree-item-label-container>.smart-tree-item-label-element{margin-right:calc(var(--smart-tree-indent) - 4px)}.smart-tree:not([show-lines]):not([selection-display-mode=label])[right-to-left] smart-tree-items-group>.smart-tree-item-label-container>.smart-tree-item-label-element>span{padding-right:0}.smart-tree[show-lines][right-to-left] smart-tree-item{padding-left:0;padding-right:var(--smart-tree-indent)}.smart-tree[show-lines][right-to-left] smart-tree-item .smart-tree-item-label-element:after,.smart-tree[show-lines][right-to-left] smart-tree-item .smart-tree-item-label-element:before,.smart-tree[show-lines][right-to-left] smart-tree-items-group>.smart-tree-item-label-container>.smart-tree-item-label-element:after,.smart-tree[show-lines][right-to-left] smart-tree-items-group>.smart-tree-item-label-container>.smart-tree-item-label-element:before{right:calc(0px - var(--smart-tree-indent));left:initial}.smart-tree[selection-display-mode=label][selection-mode=checkBox]:not([show-lines])[right-to-left]:not([toggle-element-position=far]) smart-tree-item>.smart-tree-item-label-container>.smart-tree-item-label-element,.smart-tree[selection-display-mode=label][selection-mode=radioButton]:not([show-lines])[right-to-left]:not([toggle-element-position=far]) smart-tree-item>.smart-tree-item-label-container>.smart-tree-item-label-element{padding-right:calc(var(--smart-tree-indent) + 15px)}.smart-tree[selection-display-mode=label][selection-mode=checkBox]:not([show-lines])[right-to-left]:not([toggle-element-position=far]) smart-tree-items-group>.smart-tree-item-label-container>.smart-tree-item-label-element,.smart-tree[selection-display-mode=label][selection-mode=radioButton]:not([show-lines])[right-to-left]:not([toggle-element-position=far]) smart-tree-items-group>.smart-tree-item-label-container>.smart-tree-item-label-element{padding-right:calc(var(--smart-tree-indent) + 3px)}.smart-tree[selection-display-mode=label][selection-mode=checkBox]:not([show-lines])[right-to-left][toggle-element-position=far] smart-tree-item>.smart-tree-item-label-container>.smart-tree-item-label-element,.smart-tree[selection-display-mode=label][selection-mode=checkBox]:not([show-lines])[right-to-left][toggle-element-position=far] smart-tree-items-group>.smart-tree-item-label-container>.smart-tree-item-label-element,.smart-tree[selection-display-mode=label][selection-mode=radioButton]:not([show-lines])[right-to-left][toggle-element-position=far] smart-tree-item>.smart-tree-item-label-container>.smart-tree-item-label-element,.smart-tree[selection-display-mode=label][selection-mode=radioButton]:not([show-lines])[right-to-left][toggle-element-position=far] smart-tree-items-group>.smart-tree-item-label-container>.smart-tree-item-label-element{margin-right:5px}.smart-tree[selection-display-mode=label]:not([show-lines])[right-to-left] smart-tree-item>.smart-tree-item-label-container>.smart-tree-item-label-element>span{margin:var(--smart-tree-item-padding);margin-left:0;margin-top:var(--smart-tree-item-vertical-offset);margin-bottom:var(--smart-tree-item-vertical-offset)}.smart-tree[right-to-left] smart-tree-items-group .smart-tree-items-group-arrow{right:calc(1px - var(--smart-tree-indent)/ 2);left:initial}.smart-tree[right-to-left] .smart-tree-filter-input-container:after{left:0}.smart-tree[right-to-left] .smart-tree-item-label-container{flex-direction:row-reverse;position:relative;overflow:visible}.smart-tree[right-to-left] .smart-filter-input{direction:rtl;padding-right:1px;padding-left:25px}.smart-tree[right-to-left] .smart-tree-edit-input{direction:rtl}.smart-tree[right-to-left] .smart-tree-item-label-element{direction:rtl;position:relative;overflow:visible}
smart-window:not([opened]){opacity:0}.smart-window:not(.smart-container){position:absolute;top:calc(50% - var(--smart-window-default-height)/ 2);left:calc(50% - var(--smart-window-default-width)/ 2);width:var(--smart-window-default-width);height:var(--smart-window-default-height);min-width:var(--smart-window-min-width);min-height:var(--smart-window-header-height);box-shadow:var(--smart-elevation-24);z-index:calc(var(--smart-editor-drop-down-z-index) - 1);display:block;overflow:hidden}.smart-window>.smart-container:not(.smart-window){max-height:inherit}.smart-window .smart-content-container{display:flex;flex-direction:column;font-family:inherit;font-size:inherit;width:100%;height:100%;outline:0;max-height:inherit}.smart-window .smart-content-container>.smart-header-section{display:flex;justify-content:space-between;cursor:move;overflow:hidden;align-items:center;touch-action:none;width:100%;font-family:inherit;font-size:inherit;user-select:none;-webkit-user-select:none;-ms-user-select:none;-moz-user-select:none;border-color:var(--smart-border);color:var(--smart-surface-color);line-height:initial;height:var(--smart-window-header-height);min-height:var(--smart-window-header-height);background:var(--smart-window-header-background);padding:var(--smart-window-header-padding)}.smart-window .smart-content-container>.smart-header-section>.smart-buttons-container{height:100%;display:flex;justify-content:center;align-items:center}.smart-window .smart-content-container>.smart-header-section>.smart-buttons-container button{position:relative;margin-left:1px;margin-right:1px;cursor:pointer;height:var(--smart-window-header-button-size);width:var(--smart-window-header-button-size);padding:0;min-height:0;background:0 0;color:inherit;border:none;outline:0}.smart-window .smart-content-container>.smart-header-section>.smart-buttons-container button:active{outline:0;background-color:initial}.smart-window .smart-content-container>.smart-content{width:100%;height:calc(100% - var(--smart-window-header-height));display:flex;align-items:center;overflow-y:auto;padding:var(--smart-window-content-padding);background:var(--smart-background);flex-direction:column}@media not all and (min-resolution:0.001dpcm){.smart-window .smart-content-container>.smart-content{align-content:start}}.smart-window .smart-content-container>.smart-footer{width:100%;min-height:var(--smart-window-footer-height);font-family:inherit;font-size:inherit;user-select:none;-webkit-user-select:none;-ms-user-select:none;-moz-user-select:none;border-color:var(--smart-border);color:var(--smart-surface-color);line-height:initial;position:relative;background-color:initial;display:flex;justify-content:center;height:var(--smart-window-footer-height);background:var(--smart-window-footer-background);padding:var(--smart-window-footer-padding)}.smart-window .smart-content-container>.smart-footer:empty{display:none}.smart-window .smart-content-container.smart-window-resizing-left,.smart-window .smart-content-container.smart-window-resizing-left>.smart-header-section,.smart-window .smart-content-container.smart-window-resizing-right,.smart-window .smart-content-container.smart-window-resizing-right>.smart-header-section{cursor:e-resize}.smart-window .smart-content-container.smart-window-resizing-bottom,.smart-window .smart-content-container.smart-window-resizing-bottom>.smart-header-section,.smart-window .smart-content-container.smart-window-resizing-top,.smart-window .smart-content-container.smart-window-resizing-top>.smart-header-section{cursor:ns-resize}.smart-window .smart-content-container.smart-window-resizing-bottom-right,.smart-window .smart-content-container.smart-window-resizing-bottom-right>.smart-header-section,.smart-window .smart-content-container.smart-window-resizing-top-left,.smart-window .smart-content-container.smart-window-resizing-top-left>.smart-header-section{cursor:se-resize}.smart-window .smart-content-container.smart-window-resizing-bottom-left,.smart-window .smart-content-container.smart-window-resizing-bottom-left>.smart-header-section,.smart-window .smart-content-container.smart-window-resizing-top-right,.smart-window .smart-content-container.smart-window-resizing-top-right>.smart-header-section{cursor:sw-resize}.smart-window .smart-header-section>.smart-buttons-container button:after{position:absolute;top:0;font-family:var(--smart-font-family-icon);font-size:var(--smart-window-header-icon-size);width:100%;height:100%;text-align:center;display:flex;align-items:center;justify-content:center;pointer-events:none}.smart-window.smart-tabs-window .smart-content-container>.smart-footer.smart-hidden,.smart-window.smart-tabs-window .smart-content-container>.smart-header-section.smart-hidden,.smart-window.smart-tabs-window[auto-hide] .smart-content-container>.smart-header-section,.smart-window.smart-tabs-window[auto-hide] .smart-tabs-content-section,.smart-window[header-position=none] .smart-content-container>.smart-header-section{display:none}.smart-window .smart-header-section>.smart-buttons-container button:first-of-type{margin-left:initial}.smart-window .smart-header-section>.smart-buttons-container button:last-of-type{margin-right:initial}.smart-window .smart-header-section>.smart-buttons-container button.hover{color:initial;background-color:initial}.smart-window .smart-header-section .smart-close-button:after{content:var(--smart-icon-close)}.smart-window .smart-header-section .smart-collapse-button:after{content:var(--smart-icon-arrow-down)}.smart-window .smart-header-section .smart-maximize-button:after{content:var(--smart-icon-window-maximize)}.smart-window .smart-header-section .smart-pin-button:after{content:var(--smart-icon-window-pin)}.smart-window .smart-header-section .smart-minimize-button:after{content:var(--smart-icon-window-minimize)}.smart-window:focus,.smart-window[focus]{outline:0;border-color:var(--smart-primary);box-shadow:var(--smart-elevation-24)}.smart-window:focus .smart-content-container>.smart-header-section,.smart-window[focus] .smart-content-container>.smart-header-section{background-color:var(--smart-primary);color:var(--smart-primary-color)}.smart-window[ontop]{z-index:var(--smart-editor-drop-down-z-index)}.smart-window:not([animation=none]){transition:width .2s cubic-bezier(.4,0,.2,1),height .25s cubic-bezier(.4,0,.2,1),top .2s cubic-bezier(.4,0,.6,1),left .2s cubic-bezier(.4,0,.6,1),transform .2s cubic-bezier(.4,0,.2,1),visibility .2s cubic-bezier(.4,0,.2,1),min-height .25s cubic-bezier(.4,0,.2,1),min-width .25s cubic-bezier(.4,0,.2,1),opacity .25s cubic-bezier(.4,0,.2,1);transform:scale(1)}.smart-window:not([animation=none]) .smart-header-section .smart-collapse-button:after,.smart-window:not([animation=none]) .smart-header-section .smart-pin-button:after{transition:transform .15s linear}.smart-window:not([animation=none]).no-transition,.smart-window:not([animation=none]).no-transition.smart-visibility-hidden{transition:none}.smart-window:not([animation=none]).smart-visibility-hidden,.smart-window:not([animation=none]).smart-visibility-hidden[maximized]{transition:width .2s cubic-bezier(.4,0,.2,1),height .2s cubic-bezier(.4,0,.2,1),top .2s cubic-bezier(.4,0,.2,1),left .2s cubic-bezier(.4,0,.2,1),visibility .2s cubic-bezier(.4,0,.6,1),transform .2s cubic-bezier(.4,0,.6,1),min-height .25s cubic-bezier(.4,0,.2,1),min-width .25s cubic-bezier(.4,0,.2,1),opacity .25s cubic-bezier(.4,0,.2,1);transform:scale(0)}.smart-window:not([animation=none])[dragged]{opacity:.5;z-index:calc(1 + var(--smart-editor-drop-down-z-index));transition:none}.smart-window:not([animation=none])[minimized]{transition:width .2s cubic-bezier(.4,0,.2,1),height .2s cubic-bezier(.4,0,.2,1),top .2s cubic-bezier(.4,0,.2,1),left .2s cubic-bezier(.4,0,.2,1),animation .2s cubic-bezier(.4,0,.6)}.smart-window.smart-visibility-hidden{transform:scale(0)}.smart-window.smart-tabs-window[collapsed][header-position=left],.smart-window.smart-tabs-window[collapsed][header-position=right],.smart-window.smart-tabs-window[maximized][collapsed][header-position=left],.smart-window.smart-tabs-window[maximized][collapsed][header-position=right]{width:var(--smart-window-header-height);min-width:initial;height:var(--smart-window-default-height)}.smart-window.smart-tabs-window[dragged]{pointer-events:none}.smart-window.smart-tabs-window[dragged] .smart-tab-label-container,.smart-window.smart-tabs-window[dragged] .smart-tabs-header-section{cursor:move}.smart-window.smart-tabs-window .smart-content-container>.smart-content{width:100%;height:calc(100% - var(--smart-window-header-height));overflow:hidden;padding:0;background-color:var(--smart-background)}.smart-window.smart-tabs-window[active] .smart-content-container>.smart-header-section,.smart-window.smart-tabs-window[dragged] .smart-content-container>.smart-header-section,.smart-window.smart-tabs-window[focus] .smart-content-container>.smart-header-section,.smart-window[active] .smart-content-container>.smart-header-section,.smart-window[dragged] .smart-content-container>.smart-header-section{background-color:var(--smart-primary);color:var(--smart-primary-color)}.smart-window.smart-tabs-window smart-tabs{width:100%;height:250px;min-height:100%;border:initial;outline:0;padding:0}.smart-window.smart-tabs-window smart-tabs .smart-tabs-header-items{width:100%}.smart-window.smart-tabs-window smart-tabs[vertical] .smart-tabs-header-items{width:auto;height:100%}.smart-window.smart-tabs-window .smart-tabs .smart-header{border:none}.smart-window.smart-tabs-window .smart-tabs-content-section{margin:initial;border:none}.smart-window.smart-tabs-window[auto-hide]{overflow:visible;height:auto;min-height:0}.smart-window.smart-tabs-window[auto-hide] .smart-tabs{min-width:0;height:auto;min-height:0}.smart-window.smart-tabs-window[auto-hide] .smart-content-container>.smart-content{overflow:visible}.smart-window.smart-tabs-window[auto-hide] .smart-window{width:auto;height:auto}.smart-window.smart-tabs-window[auto-hide][tab-position=left],.smart-window.smart-tabs-window[auto-hide][tab-position=left] smart-tabs,.smart-window.smart-tabs-window[auto-hide][tab-position=right],.smart-window.smart-tabs-window[auto-hide][tab-position=right] smart-tabs,.smart-window.smart-tabs-window[auto-hide][tab-text-orientation=horizontal][tab-position=left],.smart-window.smart-tabs-window[auto-hide][tab-text-orientation=horizontal][tab-position=left] smart-tabs,.smart-window.smart-tabs-window[auto-hide][tab-text-orientation=horizontal][tab-position=right],.smart-window.smart-tabs-window[auto-hide][tab-text-orientation=horizontal][tab-position=right] smart-tab,.smart-window.smart-tabs-window[auto-hide][tab-text-orientation=vertical][tab-position=left],.smart-window.smart-tabs-window[auto-hide][tab-text-orientation=vertical][tab-position=left] smart-tabs,.smart-window.smart-tabs-window[auto-hide][tab-text-orientation=vertical][tab-position=right],.smart-window.smart-tabs-window[auto-hide][tab-text-orientation=vertical][tab-position=right] smart-tabs{width:auto;min-width:0}.smart-window.smart-tabs-window[tab-position=hidden] .smart-content-container>.smart-content{height:100%}.smart-window[collapsed],.smart-window[collapsed].smart-window-snapped-left,.smart-window[collapsed].smart-window-snapped-right,.smart-window[collapsed].smart-window-snapped-top,.smart-window[collapsed][header-position=bottom].smart-window-snapped-left,.smart-window[collapsed][header-position=bottom].smart-window-snapped-right,.smart-window[collapsed][header-position=bottom].smart-window-snapped-top,.smart-window[collapsed][header-position=top].smart-window-snapped-left,.smart-window[collapsed][header-position=top].smart-window-snapped-right,.smart-window[collapsed][header-position=top].smart-window-snapped-top{height:var(--smart-window-header-height)}.smart-window.smart-tabs-window smart-tab-item{padding:5px;user-select:text;-webkit-user-select:text}.smart-window[minimized]{max-width:var(--smart-window-min-width);min-height:var(--smart-window-header-height);cursor:default}.smart-window[minimized] .smart-content-container>.smart-header-section{cursor:default}.smart-window[minimized] .smart-content-container>.smart-content{padding:initial}.smart-window[minimized] .smart-minimize-button:after{content:var(--smart-icon-arrow-up-alt);transform:rotate(-45deg);margin-top:-1px}.smart-window.smart-progress-window.smart-visibility-hidden smart-progress-bar,.smart-window[maximized].smart-visibility-hidden{transform:scale(0)}.smart-window[maximized] .smart-content-container>.smart-header-section{cursor:initial}.smart-window.smart-wait-window .smart-content-container>.smart-header-section,.smart-window[pinned] .smart-content-container>.smart-header-section{cursor:default}.smart-window[maximized] .smart-header-section .smart-maximize-button:after{content:var(--smart-icon-window-restore);font-size:100%}.smart-window[collapsed] .smart-content-container.smart-window-resizing-bottom-left,.smart-window[collapsed] .smart-content-container.smart-window-resizing-bottom-left>.smart-header-section,.smart-window[collapsed] .smart-content-container.smart-window-resizing-bottom-right,.smart-window[collapsed] .smart-content-container.smart-window-resizing-bottom-right>.smart-header-section,.smart-window[collapsed] .smart-content-container.smart-window-resizing-top-left,.smart-window[collapsed] .smart-content-container.smart-window-resizing-top-left>.smart-header-section,.smart-window[collapsed] .smart-content-container.smart-window-resizing-top-right,.smart-window[collapsed] .smart-content-container.smart-window-resizing-top-right>.smart-header-section,.smart-window[disabled] .smart-header-section>.smart-buttons-container button{cursor:initial}.smart-window[pinned] .smart-header-section .smart-pin-button:after{content:var(--smart-icon-window-pin);transform:rotate(-45deg)}.smart-window[collapsed] .smart-header-section .smart-collapse-button:after{transform:rotate(180deg) translateY(1px)}.smart-window[collapsed][header-position=left] .smart-content-container>.smart-footer,.smart-window[collapsed][header-position=left] .smart-content-container>.smart-header-section,.smart-window[collapsed][header-position=right] .smart-content-container>.smart-footer,.smart-window[collapsed][header-position=right] .smart-content-container>.smart-header-section{min-width:var(--smart-window-header-height)}.smart-window[collapsed][header-position=left].smart-window-snapped-left,.smart-window[collapsed][header-position=left].smart-window-snapped-right,.smart-window[collapsed][header-position=left].smart-window-snapped-top,.smart-window[collapsed][header-position=right].smart-window-snapped-left,.smart-window[collapsed][header-position=right].smart-window-snapped-right,.smart-window[collapsed][header-position=right].smart-window-snapped-top{height:100%;width:var(--smart-window-header-height);min-width:initial}.smart-window[collapsed][maximized]{height:var(--smart-window-header-height)}.smart-window[resize-indicator] .smart-content-container:after,.smart-window[resize-indicator] .smart-content-container:before{width:10px;height:10px;font-family:var(--smart-font-family-icon);content:var(--smart-icon-minus);font-size:10px;position:absolute}.smart-window[collapsed][maximized][header-position=left] .smart-content-container>.smart-footer,.smart-window[collapsed][maximized][header-position=left] .smart-content-container>.smart-header-section,.smart-window[collapsed][maximized][header-position=right] .smart-content-container>.smart-footer,.smart-window[collapsed][maximized][header-position=right] .smart-content-container>.smart-header-section{min-width:var(--smart-window-header-height)}.smart-window[dragged]{opacity:.5;z-index:calc(1 + var(--smart-editor-drop-down-z-index));transition:none}.smart-window[dragged] .smart-content-container{user-select:none;-webkit-user-select:none;-ms-user-select:none;-moz-user-select:none}.smart-window[resized] .smart-content-container{user-select:none;-webkit-user-select:none;-ms-user-select:none;-moz-user-select:none}.smart-window[resize-indicator] .smart-content-container:before{top:calc(100% - 13px);left:calc(100% - 10px);transform:rotate(-45deg) scaleX(2)}.smart-window[resize-indicator] .smart-content-container:after{top:calc(100% - 9px);left:calc(100% - 8px);transform:rotate(-45deg)}.smart-window[resize-indicator][resize-mode=left] .smart-content-container:before,.smart-window[resize-indicator][resize-mode=top] .smart-content-container:before{top:0;left:5px}.smart-window[resize-indicator][resize-mode=left] .smart-content-container:after,.smart-window[resize-indicator][resize-mode=top] .smart-content-container:after{top:4px;left:5px}.smart-window[resize-indicator][collapsed] .smart-content-container:after,.smart-window[resize-indicator][collapsed] .smart-content-container:before{content:""}.smart-window[header-position=none] .smart-content-container>.smart-content{height:100%}.smart-window[header-position=bottom] .smart-content-container{flex-direction:column-reverse}.smart-window[header-position=left] .smart-content-container{flex-direction:row}.smart-window[header-position=left] .smart-content-container .smart-header-section{flex-direction:column}.smart-window[header-position=left] .smart-content-container .smart-header-section .smart-collapse-button:after{transform:rotate(275deg) translateY(1px)}.smart-window[header-position=left][collapsed] .smart-content-container .smart-header-section .smart-collapse-button:after,.smart-window[header-position=right] .smart-content-container .smart-header-section .smart-collapse-button:after{transform:rotate(90deg) translateY(1px)}.smart-window[header-position=left] .smart-content-container .smart-header-section>.smart-header{writing-mode:vertical-lr}.smart-window[header-position=left] .smart-content-container>.smart-footer,.smart-window[header-position=left] .smart-content-container>.smart-header-section{width:var(--smart-window-header-height);min-width:var(--smart-window-header-height);height:100%}.smart-window[header-position=right] .smart-content-container{flex-direction:row-reverse}.smart-window[header-position=right] .smart-content-container .smart-header-section{flex-direction:column}.smart-window[header-position=right] .smart-content-container .smart-header-section>.smart-header{writing-mode:vertical-lr}.smart-window[header-position=right] .smart-content-container>.smart-footer,.smart-window[header-position=right] .smart-content-container>.smart-header-section{width:var(--smart-window-header-height);min-width:var(--smart-window-header-height);height:100%}.smart-window[header-position=right][collapsed] .smart-content-container .smart-header-section .smart-collapse-button:after{transform:rotate(275deg) translateY(1px)}.smart-window[header-position=left],.smart-window[header-position=right]{min-width:var(--smart-window-header-height);min-height:var(--smart-window-min-width)}.smart-window[header-position=left].smart-window-snapped-left,.smart-window[header-position=left].smart-window-snapped-right,.smart-window[header-position=right].smart-window-snapped-left,.smart-window[header-position=right].smart-window-snapped-right{height:100%;width:50%}.smart-window[header-position=left].smart-window-snapped-top,.smart-window[header-position=right].smart-window-snapped-top{height:100%;width:100%}.smart-window[header-position=left][minimized],.smart-window[header-position=right][minimized]{max-width:var(--smart-window-header-height)}.smart-window[header-position=left] .smart-content-container>.smart-content,.smart-window[header-position=right] .smart-content-container>.smart-content{height:100%}.smart-window[header-position=left] .smart-content-container>.smart-header-section .smart-buttons-container,.smart-window[header-position=right] .smart-content-container>.smart-header-section .smart-buttons-container{display:flex;justify-content:center;flex-direction:column;height:initial}.smart-window.smart-alert-window .smart-cancel-button,.smart-window[footer-position=none] .smart-content-container>.smart-footer{display:none}.smart-window[header-position=left] .smart-content-container>.smart-header-section .smart-buttons-container button,.smart-window[header-position=right] .smart-content-container>.smart-header-section .smart-buttons-container button{margin-left:initial;margin-top:1px}.smart-window[header-position=left] .smart-content-container>.smart-header-section .smart-buttons-container button:first-of-type,.smart-window[header-position=right] .smart-content-container>.smart-header-section .smart-buttons-container button:first-of-type{margin-top:initial}.smart-window[footer-template] .smart-content-container>.smart-content{height:calc(100% - var(--smart-window-header-height) - var(--smart-window-footer-height))}.smart-window[footer-template=null] .smart-content-container>.smart-content{height:calc(100% - var(--smart-window-header-height))}.smart-window.smart-window-snapped-left,.smart-window.smart-window-snapped-right,.smart-window.smart-window-snapped-top{height:100%;z-index:9999;box-shadow:none;border:var(--smart-border-width) solid var(--smart-border)}.smart-window.smart-window-snapped-left[ontop],.smart-window.smart-window-snapped-right[ontop],.smart-window.smart-window-snapped-top[ontop]{z-index:10000;box-shadow:none}.smart-window.smart-window-snapped-left,.smart-window.smart-window-snapped-right{width:50%}.smart-window.smart-window-snapped-top{width:100%}.smart-window.smart-alert-window .smart-content-container>.smart-footer .smart-button,.smart-window.smart-dialog-window .smart-content-container>.smart-footer .smart-button,.smart-window.smart-multiline-prompt-window .smart-content-container>.smart-footer .smart-button,.smart-window.smart-progress-window .smart-content-container>.smart-footer .smart-button,.smart-window.smart-prompt-window .smart-content-container>.smart-footer .smart-button{width:var(--smart-window-footer-button-width);height:100%;text-align:center;vertical-align:middle;cursor:pointer;text-transform:var(--smart-button-text-transform);font-weight:500;letter-spacing:.08929em;overflow:hidden;border-color:var(--smart-border);border-top-left-radius:var(--smart-border-top-left-radius);border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);border-width:var(--smart-border-width);border-style:solid}.smart-window.smart-alert-window,.smart-window.smart-dialog-window,.smart-window.smart-prompt-window{width:var(--smart-window-default-width);top:calc(50% - var(--smart-window-default-height)/ 2);left:calc(50% - var(--smart-window-default-width)/ 2)}.smart-window.smart-alert-window,.smart-window.smart-alert-window[collapsed][header-position=left],.smart-window.smart-alert-window[collapsed][header-position=right],.smart-window.smart-alert-window[collapsed][maximized][header-position=left],.smart-window.smart-alert-window[collapsed][maximized][header-position=right],.smart-window.smart-dialog-window,.smart-window.smart-dialog-window[collapsed][header-position=left],.smart-window.smart-dialog-window[collapsed][header-position=right],.smart-window.smart-dialog-window[collapsed][maximized][header-position=left],.smart-window.smart-dialog-window[collapsed][maximized][header-position=right],.smart-window.smart-multiline-prompt-window,.smart-window.smart-multiline-prompt-window[collapsed][header-position=left],.smart-window.smart-multiline-prompt-window[collapsed][header-position=right],.smart-window.smart-multiline-prompt-window[collapsed][maximized][header-position=left],.smart-window.smart-multiline-prompt-window[collapsed][maximized][header-position=right],.smart-window.smart-progress-window,.smart-window.smart-prompt-window,.smart-window.smart-prompt-window[collapsed][header-position=left],.smart-window.smart-prompt-window[collapsed][header-position=right],.smart-window.smart-prompt-window[collapsed][maximized][header-position=left],.smart-window.smart-prompt-window[collapsed][maximized][header-position=right]{height:var(--smart-window-default-height)}.smart-window.smart-alert-window .smart-content-container>.smart-footer .smart-button:focus,.smart-window.smart-dialog-window .smart-content-container>.smart-footer .smart-button:focus,.smart-window.smart-multiline-prompt-window .smart-content-container>.smart-footer .smart-button:focus,.smart-window.smart-progress-window .smart-content-container>.smart-footer .smart-button:focus,.smart-window.smart-prompt-window .smart-content-container>.smart-footer .smart-button:focus{color:var(--smart-ui-state-color-focus);border-color:var(--smart-ui-state-focus);background-color:var(--smart-ui-state-focus);opacity:var(--smart-button-opacity-focus)}.smart-window.smart-progress-window .smart-content-container>.smart-footer smart-progress-bar>.smart-container,.smart-window.smart-progress-window smart-progress-bar .smart-value{border:initial}.smart-window.smart-dialog-window .smart-content-container>.smart-footer button:first-child{margin-right:10px}.smart-window.smart-alert-window .smart-content-container>.smart-footer button:first-child{margin-right:10px}.smart-window.smart-prompt-window .smart-content-container>.smart-content{flex-direction:column-reverse;align-items:flex-start}.smart-window.smart-prompt-window .smart-content-container>.smart-footer button:first-child{margin-right:10px}.smart-window.smart-prompt-window smart-text-box{width:100%;margin-top:5px}.smart-window.smart-multiline-prompt-window{width:var(--smart-window-default-width);top:calc(50% - var(--smart-window-default-height)/ 2);left:calc(50% - var(--smart-window-default-width)/ 2)}.smart-window.smart-multiline-prompt-window smart-multiline-text-box{width:100%;margin-top:5px}.smart-window.smart-multiline-prompt-window .smart-content-container>.smart-content{flex-direction:column-reverse;align-items:flex-start}.smart-window.smart-multiline-prompt-window .smart-content-container>.smart-footer button:first-child{margin-right:10px}.smart-window.smart-progress-window{width:var(--smart-window-default-width);top:calc(50% - var(--smart-window-default-height)/ 2);left:calc(50% - var(--smart-window-default-width)/ 2)}.smart-window.smart-progress-window smart-progress-bar.smart-visibility-hidden{transition:none}.smart-window.smart-progress-window .smart-content-container>.smart-content{user-select:none;-webkit-user-select:none;-ms-user-select:none;-moz-user-select:none}.smart-window.smart-progress-window .smart-content-container>.smart-footer smart-progress-bar{width:100%;height:100%;box-shadow:initial;background-color:var(--smart-surface);transition:opacity .25s ease-in,visibility .25s cubic-bezier(0,0,.2,1)}.smart-window.smart-progress-window .smart-content-container>.smart-footer smart-progress-bar.smart-visibility-hidden{opacity:.5;transition:opacity .25s ease-out,visibility .25s cubic-bezier(0,0,.2,1)}.smart-window.smart-progress-window .smart-content-container>.smart-footer button.smart-button{position:absolute;width:calc(100% - 13px);height:calc(100% - 13px);top:6.5px;left:6.5px;text-align:center;background-color:rgba(224,224,224,.5)}.smart-window.smart-progress-window[collapsed][header-position=left],.smart-window.smart-progress-window[collapsed][header-position=right],.smart-window.smart-progress-window[collapsed][maximized][header-position=left],.smart-window.smart-progress-window[collapsed][maximized][header-position=right],.smart-window.smart-wait-window{height:var(--smart-window-default-height)}.smart-window.smart-progress-window .smart-content-container>.smart-footer button.smart-button.smart-visibility-hidden{top:100%}.smart-window.smart-progress-window:not([animation=none]) .smart-content-container>.smart-footer button,.smart-window.smart-progress-window:not([animation=none]) .smart-content-container>.smart-footer button.smart-visibility-hidden{transition:top .25s cubic-bezier(0,0,.2,1),visibility .25s cubic-bezier(0,0,.2,1)}.smart-window.smart-wait-window{width:var(--smart-window-default-width);top:calc(50% - var(--smart-window-default-height)/ 2);left:calc(50% - var(--smart-window-default-width)/ 2)}.smart-window.smart-wait-window .smart-content-container>.smart-content smart-progress-bar{width:100%;height:75%}.smart-window.smart-wait-window[collapsed][header-position=left],.smart-window.smart-wait-window[collapsed][header-position=right],.smart-window.smart-wait-window[collapsed][maximized][header-position=left],.smart-window.smart-wait-window[collapsed][maximized][header-position=right]{height:var(--smart-window-default-height)}smart-window.smart-window[collapsed][header-position=left],smart-window.smart-window[collapsed][header-position=right],smart-window.smart-window[collapsed][maximized][header-position=left],smart-window.smart-window[collapsed][maximized][header-position=right]{width:var(--smart-window-header-height);min-width:initial;height:var(--smart-window-default-height)}.smart-modal{position:absolute;opacity:.5;background-color:var(--smart-disabled);top:0;left:0;width:100%;min-height:100%}.smart-window-resize-feedback{position:absolute;z-index:10000;pointer-events:none;user-select:none;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;border:2.5px solid #000;box-sizing:border-box}smart-docking-layout .smart-window-resize-feedback{border:2.5px solid #d3d3d3}.smart-window-snap-bottom-feedback,.smart-window-snap-left-feedback,.smart-window-snap-right-feedback,.smart-window-snap-top-feedback{position:absolute;height:calc(100% - 10px);top:5px;bottom:5px;opacity:.65;box-shadow:0 0 1px 1px #8a8a8a;border-radius:2px;transition:all 50ms cubic-bezier(.4,0,.6,1);animation:scaleIn .2s cubic-bezier(.4,0,.2,1);transform:scale(1);pointer-events:none}.smart-window-snap-bottom-feedback.smart-visibility-hidden,.smart-window-snap-left-feedback.smart-visibility-hidden,.smart-window-snap-right-feedback.smart-visibility-hidden,.smart-window-snap-top-feedback.smart-visibility-hidden{transition:animation .2s cubic-bezier(.4,0,.6,1),visibility .2s cubic-bezier(.4,0,.6,1),top .2s cubic-bezier(.4,0,.2,1),left .2s cubic-bezier(.4,0,.2,1);animation:scaleOut .2s cubic-bezier(.4,0,.6,1);transform:scale(0)}.smart-window-snap-right-feedback{width:50%;left:calc(50% - 5px);transform-origin:right}.smart-window-snap-left-feedback{width:50%;left:5px;transform-origin:left}.smart-window-snap-bottom-feedback,.smart-window-snap-top-feedback{width:calc(100% - 10px);left:5px;transform-origin:top}@keyframes scaleIn{0%{transform:scale(0)}50%{transform:scale(.5);opacity:.5}100%{transform:scale(1);opacity:1}}@keyframes scaleOut{0%{transform:scale(1);opacity:1}50%{transform:scale(.5);opacity:.5}100%{transform:scale(0)}}@keyframes scaleInRight{0%{transform:scale(0)}50%{transform:scale(.5);opacity:.5}100%{transform:scale(1);opacity:1}}.smart-window[right-to-left] .smart-content-container>.smart-content,.smart-window[right-to-left] .smart-content-container>.smart-footer,.smart-window[right-to-left] .smart-content-container>.smart-header-section{direction:rtl}.smart-window[right-to-left][header-position=left] .smart-header-section>.smart-header,.smart-window[right-to-left][header-position=right] .smart-header-section>.smart-header{writing-mode:vertical-rl}.smart-window[right-to-left].smart-alert-window .smart-content-container>.smart-footer button:first-child,.smart-window[right-to-left].smart-dialog-window .smart-content-container>.smart-footer button:first-child,.smart-window[right-to-left].smart-multiline-prompt-window .smart-content-container>.smart-footer button:first-child,.smart-window[right-to-left].smart-prompt-window .smart-content-container>.smart-footer button:first-child{margin-left:10px;margin-right:initial}.smart-tabs-window[right-to-left] .smart-content-container>.smart-content{direction:initial}
.smart-grid-layout .col,.smart-grid-layout .col-1,.smart-grid-layout .col-10,.smart-grid-layout .col-11,.smart-grid-layout .col-12,.smart-grid-layout .col-2,.smart-grid-layout .col-3,.smart-grid-layout .col-4,.smart-grid-layout .col-5,.smart-grid-layout .col-6,.smart-grid-layout .col-7,.smart-grid-layout .col-8,.smart-grid-layout .col-9,.smart-grid-layout .col-lg,.smart-grid-layout .col-lg-1,.smart-grid-layout .col-lg-10,.smart-grid-layout .col-lg-11,.smart-grid-layout .col-lg-12,.smart-grid-layout .col-lg-2,.smart-grid-layout .col-lg-3,.smart-grid-layout .col-lg-4,.smart-grid-layout .col-lg-5,.smart-grid-layout .col-lg-6,.smart-grid-layout .col-lg-7,.smart-grid-layout .col-lg-8,.smart-grid-layout .col-lg-9,.smart-grid-layout .col-md,.smart-grid-layout .col-md-1,.smart-grid-layout .col-md-10,.smart-grid-layout .col-md-11,.smart-grid-layout .col-md-12,.smart-grid-layout .col-md-2,.smart-grid-layout .col-md-3,.smart-grid-layout .col-md-4,.smart-grid-layout .col-md-5,.smart-grid-layout .col-md-6,.smart-grid-layout .col-md-7,.smart-grid-layout .col-md-8,.smart-grid-layout .col-md-9,.smart-grid-layout .col-sm,.smart-grid-layout .col-sm-1,.smart-grid-layout .col-sm-10,.smart-grid-layout .col-sm-11,.smart-grid-layout .col-sm-12,.smart-grid-layout .col-sm-2,.smart-grid-layout .col-sm-3,.smart-grid-layout .col-sm-4,.smart-grid-layout .col-sm-5,.smart-grid-layout .col-sm-6,.smart-grid-layout .col-sm-7,.smart-grid-layout .col-sm-8,.smart-grid-layout .col-sm-9,.smart-grid-layout .col-xl,.smart-grid-layout .col-xl-1,.smart-grid-layout .col-xl-10,.smart-grid-layout .col-xl-11,.smart-grid-layout .col-xl-12,.smart-grid-layout .col-xl-2,.smart-grid-layout .col-xl-3,.smart-grid-layout .col-xl-4,.smart-grid-layout .col-xl-5,.smart-grid-layout .col-xl-6,.smart-grid-layout .col-xl-7,.smart-grid-layout .col-xl-8,.smart-grid-layout .col-xl-9{position:relative;width:100%;min-height:1px;padding:15px;box-sizing:border-box;grid-column:span 12}.smart-grid-layout,.smart-grid-layout .row{display:grid;width:var(--smart-grid-layout-width);grid-gap:var(--smart-grid-layout-row-gap);grid-column-gap:var(--smart-grid-layout-col-gap);grid-template-columns:repeat(12,1fr);box-sizing:border-box}.smart-grid-layout{grid-template-rows:var(--smart-grid-layout-rows);padding:0}.smart-grid-layout .row{margin-right:auto;margin-left:auto;grid-column:span 12}.smart-grid-layout.no-gaps,.smart-grid-layout.no-gaps .row{--smart-grid-row-gap:0px;--smart-grid-column-gap:0px;grid-columns-gap:0;grid-gap:0}.smart-grid-layout .order-0{order:-1}.smart-grid-layout .order-1{order:0}.smart-grid-layout .order-2{order:1}.smart-grid-layout .order-3{order:2}.smart-grid-layout .order-4{order:3}.smart-grid-layout .order-5{order:4}.smart-grid-layout .order-6{order:5}.smart-grid-layout .order-7{order:6}.smart-grid-layout .order-8{order:7}.smart-grid-layout .order-9{order:8}.smart-grid-layout .order-10{order:9}.smart-grid-layout .order-11{order:10}.smart-grid-layout .order-12{order:11}.smart-grid-layout [span="1"]{grid-row:span 1}.smart-grid-layout [span="2"]{grid-row:span 2}.smart-grid-layout [span="3"]{grid-row:span 3}.smart-grid-layout [span="4"]{grid-row:span 4}.smart-grid-layout [span="5"]{grid-row:span 5}.smart-grid-layout [span="6"]{grid-row:span 6}.smart-grid-layout [span="7"]{grid-row:span 7}.smart-grid-layout [span="8"]{grid-row:span 8}.smart-grid-layout [span="9"]{grid-row:span 9}.smart-grid-layout [span="10"]{grid-row:span 10}.smart-grid-layout [span="11"]{grid-row:span 11}.smart-grid-layout [span="12"]{grid-row:span 12}.smart-grid-layout .col-1{grid-column:span 1}.smart-grid-layout .col-2{grid-column:span 2}.smart-grid-layout .col-3{grid-column:span 3}.smart-grid-layout .col-4{grid-column:span 4}.smart-grid-layout .col-5{grid-column:span 5}.smart-grid-layout .col-6{grid-column:span 6}.smart-grid-layout .col-7{grid-column:span 7}.smart-grid-layout .col-8{grid-column:span 8}.smart-grid-layout .col-9{grid-column:span 9}.smart-grid-layout .col-10{grid-column:span 10}.smart-grid-layout .col-11{grid-column:span 11}.smart-grid-layout .col-12{grid-column:span 12}@media (min-width:576px){.smart-grid-layout.fixed{max-width:540px}.smart-grid-layout .col-sm-1{grid-column:span 1}.smart-grid-layout .col-sm-2{grid-column:span 2}.smart-grid-layout .col-sm-3{grid-column:span 3}.smart-grid-layout .col-sm-4{grid-column:span 4}.smart-grid-layout .col-sm-5{grid-column:span 5}.smart-grid-layout .col-sm-6{grid-column:span 6}.smart-grid-layout .col-sm-7{grid-column:span 7}.smart-grid-layout .col-sm-8{grid-column:span 8}.smart-grid-layout .col-sm-9{grid-column:span 9}.smart-grid-layout .col-sm-10{grid-column:span 10}.smart-grid-layout .col-sm-11{grid-column:span 11}.smart-grid-layout .col-sm-12{grid-column:span 12}}@media (min-width:768px){.smart-grid-layout.fixed{max-width:720px}.smart-grid-layout .col-md-1{grid-column:span 1}.smart-grid-layout .col-md-2{grid-column:span 2}.smart-grid-layout .col-md-3{grid-column:span 3}.smart-grid-layout .col-md-4{grid-column:span 4}.smart-grid-layout .col-md-5{grid-column:span 5}.smart-grid-layout .col-md-6{grid-column:span 6}.smart-grid-layout .col-md-7{grid-column:span 7}.smart-grid-layout .col-md-8{grid-column:span 8}.smart-grid-layout .col-md-9{grid-column:span 9}.smart-grid-layout .col-md-10{grid-column:span 10}.smart-grid-layout .col-md-11{grid-column:span 11}.smart-grid-layout .col-md-12{grid-column:span 12}}@media (min-width:992px){.smart-grid-layout.fixed{max-width:960px}.smart-grid-layout .col-lg-1{grid-column:span 1}.smart-grid-layout .col-lg-2{grid-column:span 2}.smart-grid-layout .col-lg-3{grid-column:span 3}.smart-grid-layout .col-lg-4{grid-column:span 4}.smart-grid-layout .col-lg-5{grid-column:span 5}.smart-grid-layout .col-lg-6{grid-column:span 6}.smart-grid-layout .col-lg-7{grid-column:span 7}.smart-grid-layout .col-lg-8{grid-column:span 8}.smart-grid-layout .col-lg-9{grid-column:span 9}.smart-grid-layout .col-lg-10{grid-column:span 10}.smart-grid-layout .col-lg-11{grid-column:span 11}.smart-grid-layout .col-lg-12{grid-column:span 12}}@media (min-width:1200px){.smart-grid-layout.fixed{max-width:1140px}.smart-grid-layout .col-xl-1{grid-column:span 1}.smart-grid-layout .col-xl-2{grid-column:span 2}.smart-grid-layout .col-xl-3{grid-column:span 3}.smart-grid-layout .col-xl-4{grid-column:span 4}.smart-grid-layout .col-xl-5{grid-column:span 5}.smart-grid-layout .col-xl-6{grid-column:span 6}.smart-grid-layout .col-xl-7{grid-column:span 7}.smart-grid-layout .col-xl-8{grid-column:span 8}.smart-grid-layout .col-xl-9{grid-column:span 9}.smart-grid-layout .col-xl-10{grid-column:span 10}.smart-grid-layout .col-xl-11{grid-column:span 11}.smart-grid-layout .col-xl-12{grid-column:span 12}}.smart-stack-layout{display:flex;box-sizing:border-box;overflow:hidden;width:100%;align-items:baseline;padding:15px}.smart-stack-layout .item{display:flex;border-radius:0;box-shadow:none;min-width:100px}.smart-stack-layout.vertical{flex-direction:column}.smart-stack-layout:not(.space-around):not(.space-evenly):not(.space-between):not(.vertical) .item:first-child{border-top-left-radius:var(--smart-border-radius);border-bottom-left-radius:var(--smart-border-radius);border-top-right-radius:0;border-bottom-right-radius:0}.smart-stack-layout:not(.space-around):not(.space-evenly):not(.space-between):not(.vertical) .item:last-child{border-top-right-radius:var(--smart-border-radius);border-bottom-right-radius:var(--smart-border-radius);border-top-left-radius:0;border-bottom-left-radius:0}.smart-stack-layout:not(.space-around):not(.space-evenly):not(.space-between).vertical .item:first-child{border-top-left-radius:var(--smart-border-radius);border-top-right-radius:var(--smart-border-radius);border-bottom-left-radius:0;border-bottom-right-radius:0}.smart-stack-layout:not(.space-around):not(.space-evenly):not(.space-between).vertical .item:last-child{border-bottom-right-radius:var(--smart-border-radius);border-bottom-left-radius:var(--smart-border-radius);border-top-left-radius:0;border-top-right-radius:0}.smart-stack-layout.spacing .item{margin:0 6px}.smart-stack-layout.spacing.vertical .item{margin:6px 0}.smart-stack-layout.spacing-2 .item{margin:0 12px}.smart-stack-layout.spacing-2.vertical .item{margin:12px 0}.smart-stack-layout.spacing-3 .item{margin:0 24px}.smart-stack-layout.spacing-3.vertical .item{margin:24px 0}.smart-stack-layout.spacing-4 .item{margin:0 48px}.smart-stack-layout.spacing-4.vertical .item{margin:48px 0}.smart-stack-layout.spacing-5 .item{margin:0 64px}.smart-stack-layout.spacing-5.vertical .item{margin:64px 0}.smart-stack-layout.spacing-6 .item{margin:0 128px}.smart-stack-layout.spacing-6.vertical .item{margin:128px 0}.smart-stack-layout.spacing-2:not(.vertical) .item:first-child,.smart-stack-layout.spacing-3:not(.vertical) .item:first-child,.smart-stack-layout.spacing-4:not(.vertical) .item:first-child,.smart-stack-layout.spacing-5:not(.vertical) .item:first-child,.smart-stack-layout.spacing-6:not(.vertical) .item:first-child,.smart-stack-layout.spacing:not(.vertical) .item:first-child{margin-left:0}.smart-stack-layout.spacing-2:not(.vertical) .item:last-child,.smart-stack-layout.spacing-3:not(.vertical) .item:last-child,.smart-stack-layout.spacing-4:not(.vertical) .item:last-child,.smart-stack-layout.spacing-5:not(.vertical) .item:last-child,.smart-stack-layout.spacing-6:not(.vertical) .item:last-child,.smart-stack-layout.spacing:not(.vertical) .item:last-child{margin-right:0}.smart-stack-layout.spacing-2.vertical .item:first-child,.smart-stack-layout.spacing-3.vertical .item:first-child,.smart-stack-layout.spacing-4.vertical .item:first-child,.smart-stack-layout.spacing-5.vertical .item:first-child,.smart-stack-layout.spacing-6.vertical .item:first-child,.smart-stack-layout.spacing.vertical .item:first-child{margin-top:0}.smart-stack-layout.spacing-2.vertical .item:last-child,.smart-stack-layout.spacing-3.vertical .item:last-child,.smart-stack-layout.spacing-4.vertical .item:last-child,.smart-stack-layout.spacing-5.vertical .item:last-child,.smart-stack-layout.spacing-6.vertical .item:last-child,.smart-stack-layout.spacing.vertical .item:last-child{margin-bottom:0}.smart-stack-layout .top,.smart-stack-layout:not(.vertical).top{align-items:flex-start}.smart-stack-layout .right,.smart-stack-layout:not(.vertical).right{justify-content:flex-end}.smart-stack-layout .bottom,.smart-stack-layout:not(.vertical).bottom{align-items:flex-end}.smart-stack-layout .left,.smart-stack-layout:not(.vertical).left{justify-content:flex-start}.smart-stack-layout .center,.smart-stack-layout:not(.vertical).center{justify-content:center}.smart-stack-layout .middle,.smart-stack-layout:not(.vertical).middle{align-items:center}.smart-stack-layout .space-between,.smart-stack-layout.space-between{justify-content:space-between}.smart-stack-layout .space-evenly,.smart-stack-layout.space-evenly{justify-content:space-evenly}.smart-stack-layout .space-around,.smart-stack-layout.space-around{justify-content:space-around}.smart-stack-layout.vertical.top{justify-content:flex-start}.smart-stack-layout.vertical.right{align-items:flex-end}.smart-stack-layout.vertical.bottom{justify-content:flex-end}.smart-stack-layout.vertical.left{align-items:flex-start}.smart-stack-layout.vertical.center{align-items:center}.smart-stack-layout.vertical.middle{justify-content:center}.smart-stack-layout.stretch:not(.vertical) .item,.smart-stack-layout.vertical.vertical-stretch .item{flex:1}.smart-stack-layout.stretch:not(.vertical) .item.flex-2,.smart-stack-layout.vertical.vertical-stretch .item.flex-2{flex:2}.smart-stack-layout.stretch:not(.vertical) .item.flex-3,.smart-stack-layout.vertical.vertical-stretch .item.flex-3{flex:3}.smart-stack-layout.stretch:not(.vertical) .item.flex-4,.smart-stack-layout.vertical.vertical-stretch .item.flex-4{flex:4}.smart-stack-layout.stretch:not(.vertical) .item.flex-5,.smart-stack-layout.vertical.vertical-stretch .item.flex-5{flex:5}.smart-stack-layout.stretch:not(.vertical) .item.flex-6,.smart-stack-layout.vertical.vertical-stretch .item.flex-6{flex:6}.smart-stack-layout.stretch.vertical,.smart-stack-layout:not(.vertical).vertical-stretch{align-items:stretch}
@charset "UTF-8";.smart-validation-error:not(smart-check-box)>div.smart-container:after,.smart-validation-success:not(smart-check-box)>div.smart-container:after{left:calc(100% + 20px);top:50%;position:absolute;transform:translate(-50%,-50%);pointer-events:none;font-weight:700;font-family:var(--smart-font-family);font-size:var(--smart-font-size);width:20px;height:20px;border-radius:50%;display:flex;text-align:center;justify-content:center;align-items:center}.smart-validation-error:not(.underlined):not(.outlined),.smart-validation-error:not(.underlined):not(.outlined) input,.smart-validation-error:not(.underlined):not(.outlined) span{border-color:var(--smart-error)!important;outline:0}.smart-validation-error:not(smart-check-box)>div.smart-container:after{background-color:var(--smart-error);color:var(--smart-error-color);content:"!"}.smart-success-label-like-after-element:after,.smart-validation-success:not(smart-check-box)>div.smart-container:after{color:var(--smart-success-color);content:"✓";background-color:var(--smart-success)}.smart-validation-error.smart-element:not(.outlined):not(.underlined) .smart-hint::after{background-color:var(--smart-error)}.smart-validation-success.smart-element:not(.outlined):not(.underlined) .smart-hint::after{background-color:var(--smart-success)}input[type=checkbox].smart-validation-error,input[type=radio].smart-validation-error{outline:auto;outline-color:var(--smart-error)}input.smart-validation-error{border-style:solid;border-width:1px}.smart-error-label-like-after-element:after,.smart-success-label-like-after-element:after{pointer-events:none;font-weight:700;font-family:var(--smart-font-family);font-size:var(--smart-font-size);width:20px;height:20px;border-radius:50%;display:flex;text-align:center;justify-content:center;align-items:center;top:50%;position:absolute;left:calc(50% + 15px);transform:translate(-50%,-50%)}.smart-error-label-like-after-element,.smart-success-label-like-after-element{position:relative}.smart-error-label-like-after-element:after{background-color:var(--smart-error);color:var(--smart-error-color);content:"!"}.smart-validation-summary{font-family:var(--smart-font-family);font-size:var(--smart-font-size);color:var(--smart-error)}.smart-validation-summary span{display:block;margin-top:5px}.smart-error-holder{position:absolute;font-size:var(--smart-font-size);background-color:var(--smart-error);color:var(--smart-error-color);padding:10px;pointer-events:none;z-index:var(--smart-editor-drop-down-z-index);margin-top:10px}.smart-error-holder.smart-error-hint-position-right{white-space:nowrap}
.smart-input-buttons-elements-holder{display:grid;grid-template-columns:var(--smart-date-format-panel-smart-inputs-container-width) var(--smart-date-format-panel-apply-container-width);grid-template-rows:auto;grid-column-gap:var(--smart-date-format-panel-smart-input-buttons-column-gap)}.smart-input-and-add-formats-holder{border:var(--smart-date-format-panel-border-size) solid var(--smart-date-format-panel-border-color);border-radius:var(--smart-date-format-panel-border-radius);display:grid;grid-template-columns:var(--smart-date-format-panel-smart-inputs-holder-width) var(--smart-date-format-panel-add-format-holder-width);grid-template-rows:auto;align-items:baseline;justify-content:center}.smart-input-list-holder{padding:var(--smart-date-format-panel-smart-inputs-list-holder-offset)}.smart-input-list-holder:empty{border:none}.smart-input-list-holder smart-input{display:inline-flex;height:var(--smart-date-format-panel-smart-input-height);margin:var(--smart-date-format-panel-each-smart-input-offset)}.smart-input-list-holder .format-smart-input-list{width:var(--smart-date-format-panel-smart-input-format-width)}.smart-input-list-holder .sign-smart-input{width:var(--smart-date-format-panel-smart-input-sign-width)}.all-format-holders{width:var(--smart-date-format-panel-all-format-holders-width)}.format-holder{width:var(--smart-date-format-panel-each-add-format-holder-width);text-align:center;float:left}.add-format-holder{margin:var(--smart-date-format-panel-add-new-format-dropdown-offset);align-self:normal;justify-self:end}.add-format-holder span.smart-drop-down-button{--smart-date-format-panel-smart-drop-down-button-border:transparent}.add-format-holder smart-button{font-size:var(--smart-date-format-panel-smart-font-size);width:auto;min-width:var(--smart-date-format-panel-add-format-holder-button)}.use-format-button{margin:0 auto;margin-top:var(--smart-date-format-panel-margin-from-the-top)}.use-format-button[disabled]{display:none}li[value=" "] a{height:calc(var(--smart-date-format-panel-smart-font-size) + 16px)}.date-time-format-list{padding:0;margin:0;margin-top:var(--smart-date-format-panel-date-time-format-list-offset-top);max-height:var(--smart-date-format-panel-date-time-format-list-max-height);overflow-y:auto}.date-time-format{cursor:pointer;border:var(--smart-date-format-panel-border-size) solid var(--smart-date-format-panel-border-color);border-bottom:none;text-align:center;padding:var(--smart-date-format-panel-each-date-time-format-offset);list-style-type:none;padding-left:0}.date-time-format:last-child{border-bottom:var(--smart-date-format-panel-border-size) solid var(--smart-date-format-panel-border-color)}.date-time-format:hover{background:#f1f1f1}.text-tramsform-none{text-transform:none}.cboth{clear:both}.bold{font-weight:700}
.currency-format-panel-demo-container{max-width:960px;border:1px solid #ccc;border-radius:4px;padding:15px}.selected-currency-holder-and-apply-holder{display:grid;grid-template-columns:var(--smart-currency-format-panel-currency-holder-width) var(--smart-currency-format-panel-apply-button-width);grid-template-rows:auto;grid-column-gap:var(--smart-currency-format-panel-header-holder-offset)}.input-currency-formats{width:var(--smart-currency-format-panel-currency-holder-dropdown-button-width)}.selected-currency-holder{border:var(--smart-currency-format-panel-border-size) solid var(--smart-currency-format-panel-border-color);border-radius:var(--smart-currency-format-panel-border-radius);display:grid;grid-template-columns:var(--smart-currency-format-panel-currency-holder-input-width) var(--smart-currency-format-panel-currency-holder-dropdown-width);grid-template-rows:auto;align-items:baseline;justify-content:center;padding-left:var(--smart-currency-format-panel-currency-holder-padding-left);padding-top:var(--smart-currency-format-panel-currency-holder-padding-top);padding-bottom:var(--smart-currency-format-panel-currency-holder-padding-bottom)}.selected-currency-holder .currency-sign-input-holder{width:auto}.selected-currency-holder .currency-sign-input-holder smart-text-box{width:var(--smart-currency-format-panel-currency-input-width)}.selected-currency-holder .currency-sign-input-holder smart-text-box input{border:none}.currency-item,.currency-list{border:var(--smart-currency-format-panel-border-size) solid var(--smart-currency-format-panel-border-color)}.currency-list{padding:0;margin:0;margin-top:var(--smart-currency-format-panel-currencies-margin-top);max-height:var(--smart-currency-format-panel-currencies-max-height);overflow-y:auto}.currency-item{cursor:pointer;border-left:0;border-bottom:none;padding:var(--smart-currency-format-panel-currencies-item-padding);padding-left:var(--smart-currency-format-panel-currencies-left-padding);list-style-type:none}.currency-item:last-child{border-bottom:0}.currency-item:first-child{border-top:0!important}.currency-item:hover{background:var(--smart-currency-format-panel-currencies-hover-background)}.currency-item-default-format{float:right;color:var(--smart-currency-format-panel-currencies-example-format-color)}
.smart-appearance,.smart-data-validation-container,.smart-on-invalid-data-container{grid-template-columns:var(--smart-validation-panel-description-width) var(--smart-validation-panel-content-width);grid-template-rows:auto;grid-column-gap:0}.smart-on-invalid-data-container{margin-top:var(--smart-validation-panel-invalid-data-vertical-offset);display:grid}.smart-appearance{margin-top:var(--smart-validation-panel-appearance-vertical-offset);display:grid}.smart-appearance .smart-checkbox-appearance{display:block}.smart-appearance .smart-appearance-text-box-value{display:inline-block;margin-top:var(--smart-validation-panel-appearance-textbox-vertical-offset)}.smart-appearance .reset-appearance{cursor:pointer;display:inline-block;margin-left:var(--smart-validation-panel-appearance-reset-button-left-offset);text-decoration:underline;color:var(--smart-validation-panel-appearance-reset-button-color)}.smart-data-validation-container{margin-top:var(--smart-validation-panel-criteria-container-vertical-offset);display:grid}.smart-data-validation-container .criteria-container{margin-top:var(--smart-validation-panel-criteria-row-margin-top)}.smart-data-validation-container .right-elements{display:flex;align-items:center;flex-wrap:wrap;flex-direction:row}.smart-data-validation-container .smart-criteria-container,.smart-data-validation-container .smart-criteria-type-container{display:flex;align-items:center}.smart-data-validation-container .smart-input-criteria,.smart-data-validation-container .smart-input-criteria-type{display:inline-block;width:var(--smart-validation-panel-criteria-container-input-width);margin-left:var(--smart-validation-panel-criteria-container-input-horizontal-offset);margin-right:var(--smart-validation-panel-criteria-container-input-horizontal-offset)}.smart-data-validation-container .smart-input-criteria-container{display:inline-flex;flex-direction:row;align-items:center}.smart-data-validation-container .smart-input-criteria-container smart-text-box{display:inline-block;width:var(--smart-validation-panel-criteria-container-textbox-width);margin-left:var(--smart-validation-panel-criteria-container-textbox-horizontal-offset);margin-right:var(--smart-validation-panel-criteria-container-textbox-horizontal-offset)}.smart-data-validation-container .smart-input-criteria-container smart-text-box:nth-child(1){order:1}.smart-data-validation-container .smart-input-criteria-container smart-text-box:nth-child(2){order:3}.smart-data-validation-container .smart-input-criteria-container .smart-text-between-inputs{margin:var(--smart-validation-panel-criteria-container-text-between-inputs-offset);order:2}.smart-criteria-container,.smart-criteria-type-container,.smart-input-criteria-container{margin-top:var(--smart-validation-panel-criteria-row-margin-top)}.smart-footer-buttons{margin-top:var(--smart-validation-panel-footer-vertical-offset)}.smart-footer-buttons smart-button{margin-left:var(--smart-validation-panel-footer-button-horizontal-offset);margin-right:var(--smart-validation-panel-footer-button-horizontal-offset)}.smart-footer-buttons smart-button.smart-remove-validation-footer-button{width:auto;color:var(--smart-validation-panel-footer-remove-validation-button-color);font-weight:700}.smart-footer-buttons smart-button.smart-cancel-footer-button{color:var(--smart-validation-panel-footer-cancel-button-color);font-weight:700}.smart-footer-buttons smart-button.smart-save-footer-button{background:var(--smart-validation-panel-footer-save-button-background);color:var(--smart-validation-panel-footer-save-button-color)}.smart-footer-buttons .right-elements{float:right}.right-elements-reset{display:flex;align-items:center}
.smart-path-item,.smart-path[hint]>.smart-container{align-items:flex-start}.smart-path .smart-drop-down-button,.smart-path-item{border-top-left-radius:var(--smart-border-top-left-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius)}.smart-path-item{box-sizing:border-box;transition:opacity 280ms ease-in-out;overflow:hidden;white-space:nowrap;display:flex;position:relative;flex-direction:column;justify-content:center;padding:9px 12px;width:100%;height:calc(100% - var(--smart-list-item-vertical-offset));left:0;top:0;color:var(--smart-background-color);border-width:var(--smart-border-width);border-style:solid;border-color:transparent;border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);user-select:none;-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none}.smart-path-item .smart-ripple{background:var(--smart-ui-state-active)}.smart-path-item[disabled]{opacity:.55;cursor:default;pointer-events:none;user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.smart-path-item[hover]{color:var(--smart-ui-state-color-hover);border-color:var(--smart-ui-state-border-hover);background-color:var(--smart-ui-state-hover)}.smart-path-item[active]{color:var(--smart-ui-state-color-active);border-color:var(--smart-ui-state-border-active);background-color:var(--smart-ui-state-active);opacity:1}.smart-path-item[focus]{color:var(--smart-primary-color);border-color:var(--smart-primary);background-color:var(--smart-primary)}smart-path .smart-ripple{background:var(--smart-ui-state-active)}.smart-path,.smart-path.smart-container{display:block;width:var(--smart-path-default-width);height:var(--smart-path-default-height);background:var(--smart-background);color:var(--smart-background-color);border-color:var(--smart-border)}.smart-path>.smart-container{display:flex;position:relative;align-items:center}.smart-path .smart-content{position:relative;cursor:pointer;display:flex;width:100%;height:100%}.smart-path .smart-content .smart-input::selection{background:var(--smart-editor-selection);color:var(--smart-editor-selection-color)}.smart-path .smart-input,.smart-path input.smart-input{cursor:initial;outline:transparent solid 1px;width:100%;height:100%;border:none;min-height:100%;vertical-align:middle;font-size:inherit;font-family:inherit;background-color:inherit;margin:0;color:inherit;background:var(--smart-background);text-align:var(--smart-path-text-align);border-radius:0}.smart-path .smart-input:focus{outline:initial;border-color:var(--smart-primary);background-color:var(--smart-background);color:var(--smart-background-color)}.smart-path .smart-input::-webkit-input-placeholder,.smart-path .smart-input::placeholder{color:var(--smart-disabled-color);font-style:italic}.smart-path .smart-input[hover]{border-color:var(--smart-ui-state-border-hover)}.smart-path .smart-input[position-absolute]{position:absolute}.smart-path div.smart-input{padding:calc(var(--smart-editor-label-padding) + 2 * var(--smart-border-width)) calc(var(--smart-editor-label-padding) - var(--smart-border-width));outline:0;background:initial;overflow-y:auto;overflow-x:hidden;scrollbar-width:none}.smart-path .smart-path-input-wrapper,.smart-path div.smart-input:after{padding:0 var(--smart-editor-label-padding);pointer-events:none;white-space:nowrap}.smart-path div.smart-input:after{position:absolute;display:flex;align-items:center;width:100%;height:100%;top:0;font-size:var(--smart-arrow-size);color:var(--smart-disabled-color);font-style:italic;content:attr(placeholder);justify-content:initial;left:0;opacity:0}.smart-path div.smart-input[show-placeholder]:after{opacity:1}.smart-path .smart-buttons-container{display:grid;width:100%;grid-template-columns:var(--smart-editor-addon-width) minmax(0,1fr) var(--smart-editor-addon-width);grid-column-gap:var(--smart-path-button-gap)}.smart-path .smart-hint,.smart-path .smart-label{display:none;position:absolute}.smart-path .smart-drop-down.smart-visibility-hidden{transform:scale(0);transition:transform .2s ease-in;transform-origin:left top 0}.smart-path .smart-browse-button,.smart-path .smart-drop-down-button{font-family:var(--smart-font-family-icon);font-size:10px;width:var(--smart-editor-addon-width);min-width:var(--smart-editor-addon-width);min-height:var(--smart-editor-height);height:100%;user-select:none;-moz-user-select:none;-webkit-user-select:none;outline:transparent solid 1px;cursor:pointer;overflow:hidden;position:relative;background:var(--smart-surface);border-width:var(--smart-border-width);border-style:solid;color:var(--smart-background-color);border-color:var(--smart-border);transition:background-color .1s linear}.smart-path .smart-browse-button span,.smart-path .smart-drop-down-button span{font-family:inherit;font-size:inherit;color:inherit;pointer-events:none;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.smart-path .smart-browse-button span:not(.smart-ripple):after,.smart-path .smart-drop-down-button span:not(.smart-ripple):after{position:absolute;display:flex;align-items:center;justify-content:center;pointer-events:none;width:100%;height:100%;top:0;white-space:nowrap}.smart-path .smart-browse-button[hover],.smart-path .smart-drop-down-button[hover]{color:var(--smart-ui-state-color-hover);background:var(--smart-ui-state-hover);border-color:var(--smart-ui-state-border-hover)}.smart-path .smart-browse-button:active,.smart-path .smart-browse-button[active],.smart-path .smart-drop-down-button:active,.smart-path .smart-drop-down-button[active]{color:var(--smart-ui-state-color-active);background:var(--smart-ui-state-active);border-color:var(--smart-ui-state-border-active)}.smart-path .smart-drop-down-button{border-top-right-radius:0;border-bottom-right-radius:0}.smart-path .smart-drop-down-button span:not(.smart-ripple):after{content:var(--smart-icon-arrow-down);font-size:var(--smart-arrow-size)}.smart-path .smart-browse-button{border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius)}.smart-path .smart-browse-button span:not(.smart-ripple):after{content:"...";font-weight:600;font-size:1rem}.smart-path .smart-path-input-container{position:relative;overflow:hidden;border-style:solid;border-color:var(--smart-border);border-width:var(--smart-border-width);border-radius:0}.smart-path .smart-path-input-wrapper{position:absolute;top:0;left:0;opacity:0;text-align:var(--smart-path-text-align);vertical-align:middle;outline:0;visibility:hidden}.smart-path .smart-path-input-wrapper::-moz-focus-inner{border:0}@-moz-document url-prefix(){.smart-path .smart-path-input-wrapper{line-height:1rem}}.smart-path .smart-path-multiline-container{cursor:initial;outline:transparent solid 1px;width:100%;height:100%;min-height:100%;vertical-align:middle;font-size:inherit;font-family:inherit;background-color:inherit;margin:0;color:inherit;background:var(--smart-background);text-align:var(--smart-path-text-align);overflow:hidden;position:relative;padding:initial;border:none;border-radius:0}.smart-path .smart-path-multiline-container .smart-input::-webkit-scrollbar{width:0}.smart-path:not([animation=none])[hint] .smart-hint{transition:opacity .2s cubic-bezier(.4,0,.6,1)}.smart-path:not([animation=none])[hint][focus] .smart-hint{transition:opacity .2s cubic-bezier(.4,0,.2,1)}.smart-path[readonly] .smart-input{user-select:none;-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none}.smart-path[indicator] .smart-input{background:var(--smart-surface)}.smart-path[disabled] .smart-browse-button,.smart-path[disabled] .smart-drop-down-button,.smart-path[disabled] input,.smart-path[disabled]>.smart-container{cursor:default;background-color:initial}.smart-path[indicator] .smart-path-input-container{border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius)}.smart-path[indicator] .smart-browse-button{display:none}.smart-path[indicator] .smart-buttons-container{grid-template-columns:var(--smart-editor-addon-width) minmax(0,1fr)}.smart-path[disabled] input{user-select:none;-moz-user-select:none;-webkit-user-select:none}.smart-path[focus] .smart-path-input-container{outline:initial;border-color:var(--smart-primary);background-color:var(--smart-background);color:var(--smart-background-color)}.smart-path[focus] .smart-browse-button,.smart-path[focus] .smart-drop-down-button{outline:initial;border-color:var(--smart-primary);background-color:var(--smart-surface);color:var(--smart-background-color)}.smart-path[label][hint]>.smart-container{display:flex;position:relative;align-items:center}.smart-path[hint] .smart-hint,.smart-path[label] .smart-label{position:absolute;left:0;font-size:12px;display:block;padding:var(--smart-editor-label-padding);pointer-events:none;text-align:initial;line-height:initial;vertical-align:initial;width:100%}.smart-path[label]>.smart-container{align-items:flex-end}.smart-path[label] .smart-label{bottom:100%;-webkit-user-select:none;user-select:none}.smart-path[hint] .smart-hint{-webkit-user-select:none;user-select:none;opacity:0;top:100%;bottom:initial}.smart-path[hint][focus] .smart-hint{opacity:1}.smart-path[opened] .smart-drop-down-button{color:var(--smart-ui-state-color-active);background:var(--smart-ui-state-active);border-color:var(--smart-ui-state-border-active)}.smart-path[wrap] .smart-path-input-wrapper{padding-top:calc(var(--smart-editor-label-padding) + 2 * var(--smart-border-width));padding-bottom:calc(var(--smart-editor-label-padding) + 2 * var(--smart-border-width))}.smart-path.outlined{background-color:transparent;color:inherit}.smart-path.outlined[label] .smart-label{top:-11px;left:var(--smart-editor-label-padding);background:var(--smart-background);color:var(--smart-background-color);z-index:1;height:auto;min-height:20px;width:auto;transition:all .2s ease;transform:scale(1)}.smart-path.outlined[label][focus] .smart-label{transform:scale(.8);color:var(--smart-primary)}.smart-path.outlined[hover] .smart-drop-down-button{color:var(--smart-ui-state-color-hover);border-color:var(--smart-ui-state-border-hover);background-color:var(--smart-ui-state-hover)}.smart-path.underlined .smart-browse-button:after,.smart-path.underlined .smart-drop-down-button:after,.smart-path.underlined .smart-path-input-container:after{border-bottom-color:var(--smart-primary);content:"";width:0;position:absolute;left:0;border-bottom-width:1px;border-bottom-style:solid;transition:all .2s cubic-bezier(0,0,.2,1);bottom:0}.smart-path.underlined .smart-browse-button,.smart-path.underlined .smart-drop-down-button,.smart-path.underlined .smart-input,.smart-path.underlined .smart-path-input-container,.smart-path.underlined[hover]:not([opened]) .smart-input{border-top-color:transparent;border-left-color:transparent;border-right-color:transparent}.smart-path.underlined{background-color:transparent;color:inherit}.smart-path.underlined .smart-browse-button[active],.smart-path.underlined .smart-drop-down-button[active],.smart-path.underlined .smart-input[active]{background-color:var(--smart-ui-state-active);color:var(--smart-ui-state-color-active)}.smart-path.underlined:not([opened]) .smart-input,.smart-path.underlined:not([opened]):not([hover]) .smart-browse-button,.smart-path.underlined:not([opened]):not([hover]) .smart-drop-down-button{background-color:transparent;color:inherit;border-radius:initial}.smart-path.underlined:not([hover]) .smart-browse-button:focus,.smart-path.underlined:not([hover]) .smart-drop-down-button:focus{box-shadow:none}.smart-path.underlined:not([hover]) .smart-input:focus{box-shadow:none;z-index:initial}.smart-path.underlined[hover]:not([opened]) .smart-input{background-color:transparent}.smart-path.underlined[focus] .smart-browse-button:after,.smart-path.underlined[focus] .smart-drop-down-button:after,.smart-path.underlined[focus] .smart-path-input-container:after{width:100%}.smart-path.underlined[label] .smart-label{transition:all .2s cubic-bezier(0,0,.2,1);transform:scale(1);transform-origin:top left}.smart-path.underlined[label][value=""] .smart-label{bottom:0}.smart-path.underlined[label][focus] .smart-label,.smart-path.underlined[label][opened] .smart-label{transform:scale(.8);color:var(--smart-primary);bottom:100%}.smart-path[right-to-left]>.smart-container{direction:rtl}.smart-path[right-to-left] .smart-browse-button{border-top-left-radius:var(--smart-border-top-left-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-top-right-radius:0;border-bottom-right-radius:0}.smart-path[right-to-left] .smart-drop-down-button{border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-right-radius:var(--smart-border-bottom-left-radius);border-top-left-radius:0;border-bottom-left-radius:0}.smart-path[right-to-left][indicator] .smart-path-input-container{border-top-left-radius:var(--smart-border-top-left-radius);border-top-right-radius:0;border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:0}.smart-drop-down.smart-drop-down-repositioned[right-to-left]{direction:rtl}
.number-format-panel-demo-container{max-width:960px;border:1px solid #ccc;border-radius:4px;padding:15px}.selected-custom-number-format-holder-and-apply-holder{display:grid;grid-template-columns:var(--smart-number-format-panel-selected-format-width) var(--smart-number-format-panel-apply-button-width);grid-template-rows:auto;grid-column-gap:var(--smart-number-format-panel-header-holder-offset)}.selected-custom-number-format-holder{display:block;border:var(--smart-number-format-panel-border-size) solid var(--smart-number-format-panel-border-color);border-radius:var(--smart-number-format-panel-border-radius);padding-left:var(--smart-number-format-panel-selected-format-padding-left);padding-top:var(--smart-number-format-panel-selected-format-padding-top);padding-bottom:var(--smart-number-format-panel-selected-format-padding-bottom)}.selected-custom-number-format-holder .custom-number-format-input-holder{width:auto}.selected-custom-number-format-holder .custom-number-format-input-holder smart-text-box{width:var(--smart-number-format-panel-header-input-width)}.selected-custom-number-format-holder .custom-number-format-input-holder smart-text-box input{border:none}.custom-number-format-item,.custom-number-format-list{border:var(--smart-number-format-panel-border-size) solid var(--smart-number-format-panel-border-color)}.apply-button-holder .use-number-format-button{height:100%}.sample-container{margin-top:var(--smart-number-format-panel-sample-container-vertical-offset);margin-left:var(--smart-number-format-panel-sample-container-horizontal-offset)}.custom-number-format-list{padding:0;margin:0;margin-top:var(--smart-number-format-panel-formats-list-margin-top);max-height:var(--smart-number-format-panel-formats-list-max-height);overflow-y:auto}.custom-number-format-item{cursor:pointer;border-left:0;border-bottom:none;padding:var(--smart-number-format-panel-formats-item-padding);padding-left:var(--smart-number-format-panel-formats-item-left-padding);list-style-type:none}.custom-number-format-item:last-child{border-bottom:0}.custom-number-format-item:first-child{border-top:0!important}.custom-number-format-item:hover{background:var(--smart-number-format-panel-formats-item-hover-background)}.custom-number-format-item-default-format{float:right;color:var(--smart-number-format-panel-formats-item-example-format-color)}
.smart-kanban{width:var(--smart-kanban-default-width);height:var(--smart-kanban-default-height);border:none;padding:0}.smart-kanban .smart-kanban-scroll-viewer{width:100%;height:100%}.smart-kanban .smart-kanban-scroll-viewer .smart-scroll-viewer-content-container[disable-vertical]{padding:var(--smart-data-view-padding);height:100%;min-width:100%}.smart-kanban.smart-kanban-column-color .smart-kanban-column:not(.smart-kanban-add-new-column){background:var(--smart-surface);padding:5px;box-shadow:0 0 1px rgba(0,0,0,.2),0 0 2px rgba(0,0,0,.08),0 3px 4px rgba(0,0,0,.03),0 3px 16px rgba(0,0,0,.06);border-radius:5px;box-sizing:border-box}.smart-kanban.smart-kanban-column-color .smart-kanban-column:not(.smart-kanban-add-new-column) .smart-kanban-column-header{background:0 0;border:none}.smart-kanban .smart-kanban-column .smart-kanban-column-footer{display:flex;font-family:var(--smart-font-family);font-size:11px;color:var(--smart-surface-color);opacity:.5;align-items:center;text-align:center;padding:8px}.smart-kanban .smart-kanban-column.collapsed .smart-kanban-column-footer{padding:0}.smart-kanban.smart-container,.smart-kanban>.smart-container{position:relative}.smart-kanban.smart-container[modal],.smart-kanban>.smart-container[modal]{pointer-events:none;-webkit-user-select:none;user-select:none}.smart-kanban.smart-container[modal]:after,.smart-kanban>.smart-container[modal]:after{content:"";position:absolute;width:100%;height:100%;top:0;left:0;background-color:#000;opacity:.3;pointer-events:none;cursor:default;-webkit-user-select:none;user-select:none}.smart-kanban .smart-kanban-body{position:relative;width:100%;height:100%;display:grid;grid-column-gap:var(--smart-data-view-padding);grid-template-rows:100%}.smart-kanban .smart-kanban-body>.smart-kanban-column{height:100%;overflow:hidden}.smart-kanban .smart-kanban-column{display:grid;grid-template-rows:var(--smart-kanban-header-size) 1fr;grid-row-gap:var(--smart-data-view-padding);min-height:0}.smart-kanban .smart-kanban-column:not(.collapsed)>.smart-kanban-column-header{grid-template-columns:1fr auto auto}.smart-kanban .smart-kanban-column.collapsed>.smart-kanban-column-header>.smart-kanban-column-header-label.pill .heading{padding:8px 2px}.smart-kanban .smart-kanban-column>.smart-kanban-column-header{border:var(--smart-border-width) solid var(--smart-border);border-top-left-radius:var(--smart-border-top-left-radius);border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);min-width:0;display:grid;grid-template-columns:1fr auto;align-content:center;align-items:center;padding:0 var(--smart-data-view-padding);background-color:var(--smart-surface);color:var(--smart-surface-color)}.smart-kanban .smart-kanban-column>.smart-kanban-column-header>.smart-kanban-column-header-label{font-size:calc(var(--smart-font-size) + 1px);font-weight:700;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.smart-kanban .smart-kanban-column>.smart-kanban-column-header>.smart-kanban-column-header-label.pill{overflow:visible;display:inline-flex;align-content:center}.smart-kanban .smart-kanban-column>.smart-kanban-column-header>.smart-kanban-column-header-label.pill .heading{border-radius:12px;font-size:var(--smart-font-size);padding:2px 8px;min-width:22px;font-weight:500;display:flex;align-items:center}.smart-kanban .smart-kanban-column>.smart-kanban-column-header>.smart-kanban-column-header-label.pill .heading .summary{font-size:10px;margin-left:3px;opacity:.8}.smart-kanban .smart-kanban-column>.smart-kanban-column-header>.smart-kanban-column-header-label .smart-kanban-title{text-overflow:ellipsis;overflow:hidden}.smart-kanban .smart-kanban-column>.smart-kanban-column-header>.smart-kanban-column-header-label.pending{position:relative;overflow:visible;visibility:hidden}.smart-kanban .smart-kanban-column>.smart-kanban-column-header>.smart-arrow,.smart-kanban .smart-kanban-column>.smart-kanban-column-header>.smart-kanban-column-header-add{display:none}.smart-kanban .smart-kanban-column>.smart-kanban-column-content{display:grid;grid-row-gap:var(--smart-data-view-padding);min-height:0;grid-template-rows:1fr 3fr}.smart-kanban .smart-kanban-column .smart-kanban-column-content-tasks:empty,.smart-kanban .smart-kanban-column.collapsed>.smart-kanban-column-content{display:none}.smart-kanban .smart-kanban-column.has-swimlane,.smart-kanban .smart-kanban-column>.smart-kanban-column-content.has-swimlane{grid-row-gap:calc(var(--smart-kanban-header-size) + 2 * var(--smart-data-view-padding))}.smart-kanban .smart-kanban-column>.smart-kanban-column-content.no-sub-columns{grid-template-rows:1fr}.smart-kanban .smart-kanban-column .smart-kanban-column-content-tasks{position:relative;border:none;width:unset;min-width:unset;height:unset;min-height:0;max-height:unset;padding:0;background-color:transparent}.smart-kanban .smart-kanban-column.collapsed{width:var(--smart-kanban-header-size);grid-template-rows:1fr}.smart-kanban .smart-kanban-column.collapsed>.smart-kanban-column-header{width:100%;padding:var(--smart-data-view-padding) 0;writing-mode:vertical-lr;color:var(--smart-primary);direction:ltr}.smart-kanban .smart-kanban-column.collapsed.has-swimlane>.smart-kanban-column-header>.smart-kanban-column-header-label{margin-top:calc(2 * var(--smart-kanban-header-size) + var(--smart-data-view-padding))}.smart-kanban .smart-kanban-column.dragged .smart-kanban-column-header{background-image:linear-gradient(45deg,rgba(0,0,0,.1) 25%,transparent 25%,transparent 50%,rgba(0,0,0,.1) 50%,rgba(0,0,0,.1) 75%,transparent 75%,transparent);background-size:3em 3em}.smart-kanban .smart-kanban-column.drop-target{position:relative;overflow:visible}.smart-kanban .smart-kanban-column.drop-target.before:after{border-left:var(--smart-kanban-color-band-width) dashed var(--smart-primary);left:calc(-1 * var(--smart-kanban-color-band-width));margin-left:-3px}.smart-kanban .smart-kanban-column.drop-target.after:after{border-right:var(--smart-kanban-color-band-width) dashed var(--smart-primary);margin-left:3px}.smart-kanban .smart-kanban-column[orientation=horizontal]>.smart-kanban-column-content>.smart-kanban-column-content-tasks>.smart-container>.smart-scroll-viewer-container>.smart-scroll-viewer-content-container{grid-template-columns:repeat(auto-fit,minmax(var(--smart-kanban-task-min-width),1fr));grid-column-gap:var(--smart-data-view-padding)}.smart-kanban .smart-kanban-column[orientation=horizontal]>.smart-kanban-column-content>.smart-kanban-column-content-tasks .drop-target.before:after{border-left:var(--smart-kanban-color-band-width) dashed var(--smart-primary-color);left:calc(-1 * var(--smart-kanban-color-band-width))}.smart-kanban .smart-kanban-column[orientation=horizontal]>.smart-kanban-column-content>.smart-kanban-column-content-tasks .drop-target.after:after{border-right:2px dashed var(--smart-primary)}.smart-kanban .smart-kanban-column[orientation=vertical]>.smart-kanban-column-content>.smart-kanban-column-content-tasks .drop-target.before:after{border-top:2px dashed var(--smart-primary)}.smart-kanban .smart-kanban-column[orientation=vertical]>.smart-kanban-column-content>.smart-kanban-column-content-tasks .drop-target.after:after{border-bottom:2px dashed var(--smart-primary)}.smart-kanban .smart-kanban-column-header:focus{outline:0;border-color:var(--smart-ui-state-border-active)}.smart-kanban .smart-kanban-column-header-label.pending .smart-kanban-column-header-input{position:absolute;top:-10%;left:0;width:100%;height:120%;outline:0;font-size:calc(var(--smart-font-size) - 1px);visibility:visible;border:var(--smart-border-width) solid var(--smart-border);border-top-right-radius:var(--smart-border-top-right-radius);border-top-left-radius:var(--smart-border-top-left-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);background-color:var(--smart-background);color:var(--smart-background-color);font-family:inherit;padding:4px}.smart-kanban .smart-kanban-task[selected],.smart-kanban-task-progress-container{background-color:var(--smart-ui-state-selected)}.smart-kanban .smart-kanban-column-header-label.pending .smart-kanban-column-header-input:hover{border-color:var(--smart-ui-state-border-hover)}.smart-kanban .smart-kanban-column-header-label.pending .smart-kanban-column-header-input:focus{border-color:var(--smart-primary)}.smart-kanban .smart-kanban-column-header-label.pending.colors .smart-kanban-column-header-input{width:calc(100% - 30px)}.smart-kanban .smart-kanban-column-header-label.pending.colors smart-color-input{position:absolute;right:2px;visibility:visible}.smart-kanban .smart-kanban-column-header-add:focus{outline:0;color:var(--smart-primary)}.smart-kanban .smart-kanban-column-content-tasks:focus{outline:0}.smart-kanban .smart-kanban-column-content-tasks.empty{position:relative}.smart-kanban .smart-kanban-column-content-tasks.empty:after{content:attr(empty);position:absolute;top:calc(50% - 11px);display:flex;align-items:center;align-content:center;justify-content:center;width:100%;opacity:.5;font-size:11px}.smart-kanban .smart-kanban-column-content-tasks .smart-kanban-task[focus]{box-shadow:inset 0 0 1px 1px var(--smart-primary)}.smart-kanban .smart-kanban-column-content-tasks>.smart-container>.smart-scroll-viewer-container>.smart-scroll-viewer-content-container{display:grid;grid-row-gap:var(--smart-data-view-padding);padding:0}.smart-kanban .smart-kanban-column-content-columns{display:grid;grid-column-gap:var(--smart-data-view-padding);min-height:0}.smart-kanban .smart-kanban-column-content-columns.has-tabs{display:grid;grid-row-gap:var(--smart-data-view-padding);min-height:0;grid-template-rows:var(--smart-kanban-header-size) 1fr}.smart-kanban .smart-kanban-column-content-columns.has-tabs .smart-kanban-column{grid-template-rows:1fr}.smart-kanban .smart-kanban-task:hover .smart-kanban-task-edit{width:16px}.smart-kanban .smart-kanban-task:hover .smart-kanban-task-edit:after{content:var(--smart-icon-mode-edit);font-family:var(--smart-font-family-icon)}.smart-kanban .smart-kanban-task.dragged{background-image:linear-gradient(45deg,rgba(0,0,0,.1) 25%,transparent 25%,transparent 50%,rgba(0,0,0,.1) 50%,rgba(0,0,0,.1) 75%,transparent 75%,transparent);background-size:3em 3em}.smart-kanban .smart-kanban-task-user:focus{outline:0;border:1px solid var(--smart-primary)}.smart-kanban .remove-button:focus,.smart-kanban .smart-kanban-task-actions:focus,.smart-kanban .smart-kanban-task-comments:focus,.smart-kanban .smart-kanban-task-description:focus,.smart-kanban .smart-kanban-task-edit:focus{outline:var(--smart-primary) solid 1px}.smart-kanban .smart-kanban-task-actions:hover,.smart-kanban .smart-kanban-task-comments:hover,.smart-kanban .smart-kanban-task-description:hover,.smart-kanban .smart-kanban-task-edit:hover{color:var(--smart-primary)}.smart-kanban .smart-data-view-header{border:var(--smart-border-width) solid var(--smart-border);border-top-left-radius:var(--smart-border-top-left-radius);border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);min-width:0;height:var(--smart-kanban-header-size)}.smart-kanban .smart-kanban-add-new-column{cursor:pointer}.smart-kanban .smart-kanban-add-new-column .smart-kanban-column-content{display:none}.smart-kanban .smart-kanban-add-new-column-label{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:calc(var(--smart-font-size) + 1px);font-weight:700;display:flex;align-items:center}.smart-kanban .swimlane{position:absolute;display:flex;align-items:center;justify-content:center;height:var(--smart-kanban-header-size);background-color:var(--smart-primary);color:var(--smart-primary-color);font-size:calc(var(--smart-font-size) + 2px);padding:var(--smart-data-view-padding);overflow:hidden;text-overflow:ellipsis;white-space:nowrap;border:var(--smart-border-width) solid var(--smart-border);border-top-left-radius:var(--smart-border-top-left-radius);border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);min-width:0}.smart-kanban .drop-target:after{content:"";position:absolute;box-sizing:border-box;border:2px dashed var(--smart-primary);width:100%;height:100%;left:0;top:0;pointer-events:none;opacity:.75}.smart-kanban .drop-target.after:after,.smart-kanban .drop-target.before:after{border:none}.smart-kanban:not([right-to-left]) .smart-kanban-column.collapsed>.smart-kanban-column-header>.smart-arrow{transform:rotate(180deg)}.smart-kanban[add-new-button] .smart-kanban-column[add-new-button]>.smart-kanban-column-header>.smart-kanban-column-header-add:after{content:var(--smart-icon-plus-circled);font-family:var(--smart-font-family-icon);padding:0 10px 10px 0}.smart-kanban[add-new-button] .smart-kanban-column[add-new-button]>.smart-kanban-column-header>.smart-kanban-column-header-add:hover{cursor:pointer;color:var(--smart-primary)}.smart-kanban[add-new-button] .smart-kanban-column[add-new-button]:not(.collapsed)>.smart-kanban-column-header[add-new-button]{grid-template-columns:auto 1fr auto auto}.smart-kanban[add-new-button] .smart-kanban-column[add-new-button]:not(.collapsed)>.smart-kanban-column-header[add-new-button]>.smart-kanban-column-header-add{display:block}.smart-kanban[add-new-button] .smart-kanban-add-new-button{width:30px;height:30px;border-radius:50%;background:var(--smart-primary);color:var(--smart-primary-color);position:absolute;display:flex;justify-content:center;align-content:center;align-items:center;font-size:24px;box-shadow:var(--smart-elevation-6);cursor:pointer;transition:transform .1s ease-out,box-shadow .2s ease-in-out;transform:scale(1);transition-delay:0s}.smart-kanban[header-position=bottom] .smart-kanban-body,.smart-kanban[header-position=top] .smart-kanban-body{height:calc(100% - var(--smart-kanban-header-size) - var(--smart-data-view-padding))}.smart-kanban[add-new-button] .smart-kanban-add-new-button:hover{box-shadow:var(--smart-elevation-8);transform:scale(1.2)}.smart-kanban[add-new-button] .smart-kanban-add-new-button:after{content:var(--smart-icon-plus);font-family:var(--smart-font-family-icon);font-size:14px}.smart-kanban[add-new-button] .smart-kanban-add-new-button.show{opacity:1}.smart-kanban[column-actions] .smart-kanban-column:not(.collapsed)>.smart-kanban-column-header[settings]>.smart-kanban-column-header-settings-button{display:block;transition:transform .2s ease-in-out;margin-top:-1px}.smart-kanban[column-actions] .smart-kanban-column:not(.collapsed)>.smart-kanban-column-header[settings]>.smart-kanban-column-header-settings-button:hover,.smart-kanban[column-actions] .smart-kanban-column:not(.collapsed)>.smart-kanban-column-header[settings]>.smart-kanban-column-header-settings-button[aria-expanded]{color:var(--smart-primary)}.smart-kanban[column-actions] .smart-kanban-column:not(.collapsed)>.smart-kanban-column-header[settings]>.smart-kanban-column-header-settings-button:after{margin-left:5px;content:var(--smart-icon-menu);font-family:var(--smart-font-family-icon)}.smart-kanban[column-actions] .smart-kanban-column:not(.collapsed):not([add-new-button])>.smart-kanban-column-header[settings]{grid-template-columns:1fr auto auto auto}.smart-kanban[collapsible] .smart-kanban-column[collapsible]>.smart-kanban-column-header{cursor:pointer}.smart-kanban[collapsible] .smart-kanban-column[collapsible]>.smart-kanban-column-header:hover{background-color:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover)}.smart-kanban[collapsible] .smart-kanban-column[collapsible]>.smart-kanban-column-header>.smart-arrow{display:block;transition:transform .2s ease-in-out}.smart-kanban[collapsible] .smart-kanban-column[collapsible]>.smart-kanban-column-header>.smart-arrow:hover{color:var(--smart-primary);transform:scale(1.2)}.smart-kanban[task-position=leaf] .smart-kanban-column>.smart-kanban-column-content:not(.no-sub-columns){grid-template-rows:0 1fr;grid-row-gap:0}.smart-kanban[user-list] .smart-kanban-task-user:hover{border:none;box-shadow:0 0 4px 1px var(--smart-primary)}.smart-kanban[header-position=top] .smart-data-view-header{margin-bottom:var(--smart-data-view-padding)}.smart-kanban[header-position=bottom] .smart-data-view-header{margin-top:var(--smart-data-view-padding)}.smart-data-view-header{height:var(--smart-kanban-header-size)}.smart-kanban-task{border:var(--smart-border-width) solid var(--smart-border);border-left:var(--smart-kanban-color-band-width) solid var(--smart-primary);border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);width:100%;min-width:0;height:auto;min-height:var(--smart-kanban-task-min-height);display:grid;grid-template-columns:100%;grid-template-rows:1fr auto auto;padding:5px;grid-row-gap:5px;cursor:pointer;background-color:var(--smart-background);position:relative}.smart-kanban-task .smart-kanban-task-cover-content{height:100px;display:flex;overflow:hidden}.smart-kanban-task .smart-kanban-task-cover-content img{max-width:100%;max-height:100%}.smart-kanban-task .smart-kanban-task-custom-fields{display:grid;grid-template-columns:1fr 1fr}.smart-kanban-task .smart-kanban-task-custom-fields .smart-kanban-task-field{display:flex;flex-direction:column;padding:5px}.smart-kanban-task .smart-kanban-task-custom-fields .smart-kanban-task-field .smart-kanban-task-field-label{margin-bottom:calc(var(--smart-card-view-vertical-offset)/ 3);text-transform:uppercase;font-size:calc(var(--smart-font-size) - 2px);opacity:.7;overflow:hidden;text-overflow:ellipsis}.smart-kanban-task .smart-kanban-task-custom-fields .smart-kanban-task-field .smart-kanban-task-field-value{overflow:hidden;text-overflow:ellipsis;word-break:break-word}.smart-kanban-task .smart-kanban-task-custom-fields .smart-kanban-task-field .smart-kanban-task-field-value img{border:1px solid var(--smart-border);width:25px;height:25px}.smart-kanban-task .smart-kanban-task-custom-fields .smart-kanban-task-field .smart-kanban-task-field-value img:hover{border:2px solid var(--smart-primary)}.smart-kanban-task-input{height:20px;opacity:.8;border:none!important;width:100%;text-decoration:underline;background:0 0;cursor:pointer;font-size:calc(var(--smart-font-size) - 1px)!important}.smart-kanban-task-input:active,.smart-kanban-task-input:focus{text-decoration:initial;cursor:initial;opacity:1}.smart-kanban-task-subtasks .smart-kanban-sub-task[selected] .label,.smart-window.smart-kanban-window .checklist-editor smart-list-item[selected] .label{text-decoration:line-through}.smart-kanban-task-subtasks .smart-kanban-sub-task{display:grid;grid-column-gap:5px;grid-template-columns:16px 1fr 16px;font-size:calc(var(--smart-font-size) - 1px)!important;padding:2px}.smart-kanban-task-subtasks .smart-kanban-sub-task:before{content:var(--smart-icon-check-empty);font-family:var(--smart-font-family-icon);cursor:pointer}.smart-kanban-task-subtasks .smart-kanban-sub-task:hover .remove-subtask:after{content:var(--smart-icon-close);font-family:var(--smart-font-family-icon);cursor:pointer}.smart-kanban-task-subtasks .smart-kanban-sub-task.selected{background:var(--smart-ui-state-selected);color:var(--smart-ui-state-color-selected)}.smart-kanban-task-subtasks .smart-kanban-sub-task.selected:before{content:var(--smart-icon-check-squared)}.smart-kanban-task-content{display:grid;grid-template-columns:1fr auto;grid-column-gap:5px}.smart-kanban-task-text{padding:5px;word-break:break-word;max-height:var(--smart-kanban-text-max-height);overflow:auto}.smart-kanban-task-text:after,.smart-kanban-task-text:before{font-family:var(--smart-font-family-icon)}.smart-kanban-task-text:before{margin-right:10px}.smart-kanban-task-text:after{margin-left:10px}.smart-kanban-task-footer{display:grid;grid-template-columns:1fr auto auto auto;align-items:center;grid-column-gap:5px}.smart-kanban-task-due{display:none;letter-spacing:1px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.smart-kanban-task-due:not(:empty){margin-top:calc(var(--smart-data-view-padding)/ 2)}.smart-kanban-task-due.overdue{color:var(--smart-error)}.smart-kanban-task-due.overdue:after{font-family:var(--smart-font-family-icon);content:var(--smart-icon-attention-circled)}.smart-kanban-task-info{display:grid;grid-template-rows:auto auto}.smart-kanban-task-checked{letter-spacing:1px}.smart-kanban-task-progress{background-color:var(--smart-primary);position:absolute;height:20%;left:0}.smart-kanban-task-progress.bottom{bottom:0}.smart-kanban-task-progress-container{display:none;height:20px;position:relative;align-items:center;justify-content:center}.smart-kanban-task-user{display:none}.smart-kanban-task-user.empty:after{content:var(--smart-icon-user);font-family:var(--smart-font-family-icon);width:100%;height:100%;display:flex;justify-content:center;align-items:center;font-size:var(--smart-kanban-user-icon-size)}.smart-kanban-task-tags{display:none}.smart-kanban-task-tag{display:inline-block;background-color:rgba(var(--smart-primary-rgb),.15);color:var(--smart-background-color);margin-right:4px;border-radius:20px;font-size:12px;font-weight:500;padding:2px 7px}.smart-kanban-task-actions,.smart-kanban-task-comments{display:none}.smart-kanban-task-description:after{content:var(--smart-icon-align-left);font-family:var(--smart-font-family-icon)}.smart-kanban-task-actions:after{content:var(--smart-icon-settings);font-family:var(--smart-font-family-icon)}.smart-kanban-task-comments:after{content:var(--smart-icon-comment) " " attr(num);font-family:var(--smart-font-family-icon);white-space:nowrap}.smart-kanban-feedback{position:absolute;color:var(--smart-background-color);font-family:var(--smart-font-family);font-size:var(--smart-font-size);cursor:move;opacity:.9}.smart-kanban-feedback *{box-sizing:border-box}.smart-kanban-feedback .smart-kanban-task{position:absolute;box-shadow:var(--smart-elevation-4);pointer-events:none}.smart-kanban-feedback[column-drag]{box-shadow:var(--smart-elevation-4);border:none;height:auto;transform:scale(.8);transform-origin:top left}.smart-kanban-feedback[column-drag] .smart-kanban{border:none;overflow:visible}.smart-kanban-feedback[column-drag] .smart-kanban-task{position:static;box-shadow:none}.smart-kanban-feedback .smart-kanban-feedback-additional,.smart-kanban-feedback .smart-kanban-feedback-additional.multiple:before{box-shadow:var(--smart-elevation-4);border:var(--smart-border-width) solid var(--smart-border);background-color:var(--smart-background);position:absolute;pointer-events:none}.smart-kanban-feedback .smart-kanban-feedback-additional{top:-8px;left:8px}.smart-kanban-feedback .smart-kanban-feedback-additional.multiple{top:-16px;left:16px}.smart-kanban-feedback .smart-kanban-feedback-additional.multiple:before{content:"";width:100%;height:100%;bottom:-9px;left:-9px}.smart-kanban-feedback .smart-kanban-feedback-additional+.smart-kanban-task::after{display:flex;justify-content:center;align-items:center;content:attr(num);position:absolute;width:20px;height:20px;background-color:var(--smart-primary);color:var(--smart-primary-color);right:-10px;top:-10px;border-radius:50%}[task-progress] .smart-kanban-task-progress-container{display:flex}[task-user-icon] .smart-kanban-task-user{display:block;width:var(--smart-kanban-user-icon-size);height:var(--smart-kanban-user-icon-size);border:var(--smart-border-width) solid var(--smart-border);border-radius:50%;background-color:var(--smart-surface);color:var(--smart-background-color);background-position:center;background-repeat:no-repeat;background-size:cover}[task-tags] .smart-kanban-task-tags{display:flex;flex-direction:row;overflow:hidden}[task-actions] .smart-kanban-task-actions,[task-comments] .smart-kanban-task-comments,[task-due] .smart-kanban-task-due{display:block}[task-priority] .smart-kanban-task-text{display:flex;align-items:center}[task-priority] .smart-kanban-task-text .priority{font-family:var(--smart-font-family-icon);margin-left:5px;display:inline-block;width:16px;height:16px;background-repeat:no-repeat}[task-priority] .smart-kanban-task-text .priority.low{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232666BE'%3E%3Cpath d='M2.73804 7.00207C1.96611 5.66874 2.92823 4 4.46889 4H19.5311C21.0718 4 22.0339 5.66874 21.262 7.00207L13.7309 20.0103C12.9605 21.3409 11.0395 21.3409 10.2691 20.0103L2.73804 7.00207Z'/%3E%3C/svg%3E")}[task-priority] .smart-kanban-task-text .priority.average{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23005C99'%3E%3Cpath d='M12 5.98999L19.53 19H4.47L12 5.98999ZM2.74 18C1.97 19.33 2.93 21 4.47 21H19.53C21.07 21 22.03 19.33 21.26 18L13.73 4.98999C12.96 3.65999 11.04 3.65999 10.27 4.98999L2.74 18Z'/%3E%3C/svg%3E")}[task-priority] .smart-kanban-task-text .priority.high{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23DD5347'%3E%3Cpath d='M2.73804 17.9979C1.96611 19.3313 2.92823 21 4.46889 21H19.5311C21.0718 21 22.0339 19.3313 21.262 17.9979L13.7309 4.98965C12.9605 3.65908 11.0395 3.65908 10.2691 4.98965L2.73804 17.9979Z'/%3E%3C/svg%3E")}[task-priority] .smart-kanban-task-text .priority.critical{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23AF0020'%3E%3Cpath d='M2.73804 17.9979C1.96611 19.3313 2.92823 21 4.46889 21H19.5311C21.0718 21 22.0339 19.3313 21.262 17.9979L13.7309 4.98965C12.9605 3.65908 11.0395 3.65908 10.2691 4.98965L2.73804 17.9979ZM13.5 17.5C13.5 18.3284 12.8284 19 12 19V19C11.1716 19 10.5 18.3284 10.5 17.5V17.5C10.5 16.6716 11.1716 16 12 16V16C12.8284 16 13.5 16.6716 13.5 17.5V17.5ZM13.5 13.5C13.5 14.3284 12.8284 15 12 15V15C11.1716 15 10.5 14.3284 10.5 13.5V9.5C10.5 8.67157 11.1716 8 12 8V8C12.8284 8 13.5 8.67157 13.5 9.5V13.5Z'/%3E%3C/svg%3E")}.smart-kanban-tab-strip{height:35px;background:inherit;margin-bottom:10px;display:flex;border-bottom:1px solid var(--smart-border)}.smart-kanban-tab-strip .smart-kanban-tab{padding:8px 22px;cursor:pointer;text-transform:uppercase}.smart-kanban-tab-strip .smart-kanban-tab.selected{color:var(--smart-primary);border-bottom:2px solid var(--smart-primary)}.smart-window.smart-kanban-window[readonly] .smart-date-time-picker[calendar-button] .smart-drop-down-button.smart-calendar-button,.smart-window.smart-kanban-window[readonly] .smart-numeric-text-box .smart-numeric-text-box-unit-display,.smart-window.smart-kanban-window[readonly] smart-numeric-text-box input{border:none}.smart-kanban-tab-strip .smart-kanban-tab[focus]{color:var(--smart-primary);outline:0}.smart-window.smart-kanban-window{max-height:800px;width:auto!important;max-width:700px;min-width:700px!important}.smart-window.smart-kanban-window[readonly] .new-subtask,.smart-window.smart-kanban-window[readonly] .remove-subtask{display:none}.smart-window.smart-kanban-window[readonly] .smart-button.add,.smart-window.smart-kanban-window[readonly] .smart-button.delete,.smart-window.smart-kanban-window[readonly] .smart-footer{display:none!important}.smart-window.smart-kanban-window[readonly] .smart-multi-combo-input .smart-drop-down-button,.smart-window.smart-kanban-window[readonly] .smart-multi-combo-input .smart-drop-down-list-unselect-button{display:none}.smart-window.smart-kanban-window[readonly] smart-color-input{pointer-events:none;opacity:.7}.smart-window.smart-kanban-window[readonly] .smart-kanban-tab-content.details textarea,.smart-window.smart-kanban-window[readonly] input,.smart-window.smart-kanban-window[readonly] smart-date-time-picker,.smart-window.smart-kanban-window[readonly] smart-input,.smart-window.smart-kanban-window[readonly] smart-multi-combo-input,.smart-window.smart-kanban-window[readonly] smart-numeric-text-box{opacity:.7;--smart-surface:var(--smart-background);--smart-surface-color:var(--smart-background);border:none!important;border-bottom:1px solid var(--smart-border)!important;pointer-events:none}.smart-window.smart-kanban-window .details .layout{display:grid;grid-template-columns:1fr 1fr;grid-column-gap:30px}.smart-window.smart-kanban-window .details .layout.single-column{grid-template-columns:1fr}.smart-comment,.smart-window.smart-kanban-window .comments .smart-comment{grid-template-columns:var(--smart-kanban-user-icon-size) 1fr;grid-column-gap:var(--smart-data-view-padding)}.smart-window.smart-kanban-window .details .layout .description-editor{height:91px}.smart-window.smart-kanban-window .details .layout .tags-editor{margin-top:2px}.smart-window.smart-kanban-window .details .layout .text-editor{height:32px}.smart-window.smart-kanban-window .smart-kanban-task-user{display:block;width:var(--smart-kanban-user-icon-size);height:var(--smart-kanban-user-icon-size);border:var(--smart-border-width) solid var(--smart-border);border-radius:50%;background-color:var(--smart-surface);color:var(--smart-background-color);background-position:center;background-repeat:no-repeat;background-size:cover}.smart-window.smart-kanban-window .fields .smart-kanban-task-field-editor{width:100%}.smart-window.smart-kanban-window .fields .editor-label{display:flex;justify-content:space-between}.smart-window.smart-kanban-window .fields .editor-label .icon{width:16px;height:16px;display:inline-block}.smart-window.smart-kanban-window .fields .editor-label .icon::before{content:var(--smart-icon-visibility);font-family:var(--smart-font-family-icon);cursor:pointer}.smart-window.smart-kanban-window .fields .editor-label .icon.hide::before{content:var(--smart-icon-visibility-off)}.smart-window.smart-kanban-window .history-table{display:block!important;max-height:400px;overflow:auto}.smart-window.smart-kanban-window .history-table table{border-collapse:collapse;width:100%}.smart-window.smart-kanban-window .history-table table .smart-kanban-task-user-history{display:flex;align-items:center}.smart-window.smart-kanban-window .history-table table .smart-kanban-task-user-history .name{margin-left:5px}.smart-window.smart-kanban-window .history-table table td,.smart-window.smart-kanban-window .history-table table th{border:1px solid var(--smart-border);padding:8px}.smart-window.smart-kanban-window .history-table table tr:nth-child(even){background-color:var(--smart-surface);color:var(--smart-surface-color)}.smart-window.smart-kanban-window .history-table table tr:hover{background-color:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover)}.smart-window.smart-kanban-window .history-table table th{padding-top:12px;padding-bottom:12px;text-align:left;background-color:var(--smart-info);color:var(--smart-info-color)}.smart-window.smart-kanban-window .comments{margin:0 auto}.smart-window.smart-kanban-window .comments .smart-comment{display:grid;margin:var(--smart-data-view-padding)}.smart-window.smart-kanban-window .comments .smart-comment .comment-header{display:grid;grid-template-columns:1fr auto auto;grid-column-gap:calc(var(--smart-data-view-padding)/ 2);margin-bottom:var(--smart-data-view-padding)}.smart-window.smart-kanban-window .comments .smart-comment .user-icon{width:100%;height:var(--smart-kanban-user-icon-size);border-radius:50%;background-size:cover;background-position:center}.smart-window.smart-kanban-window .comments .smart-comment .user-icon.empty{background:var(--smart-surface);display:flex;align-items:center;justify-content:center;border-radius:50%;border:1px solid var(--smart-border)}.smart-window.smart-kanban-window .comments .smart-comment .user-icon.empty:after{content:var(--smart-icon-user);font-family:var(--smart-font-family-icon);font-size:20px}.smart-window.smart-kanban-window .comments .smart-comment .user-name{font-weight:700}.smart-window.smart-kanban-window .comments .smart-comment .time{opacity:.8}.smart-window.smart-kanban-window .comments .smart-comment .remove-button{visibility:hidden;transform:rotate(90deg);width:16px;cursor:pointer}.smart-window.smart-kanban-window .comments .smart-comment .remove-button:after{content:var(--smart-icon-close);display:flex;align-items:center;justify-content:center;height:100%;font-family:var(--smart-font-family-icon);cursor:pointer}.smart-window.smart-kanban-window .comments .smart-kanban-list.comments .smart-kanban-new-comment textarea,.smart-window.smart-kanban-window .description-editor{border:var(--smart-border-width) solid var(--smart-border);background-color:var(--smart-background);font-family:inherit;color:var(--smart-background-color);font-size:inherit}.smart-window.smart-kanban-window .comments .smart-comment .remove-button.enabled{visibility:visible}.smart-window.smart-kanban-window .comments .smart-kanban-list.comments{width:var(--smart-kanban-comments-list-width);height:var(--smart-kanban-comments-list-height);max-height:100%}.smart-window.smart-kanban-window .comments .smart-kanban-list.comments .smart-kanban-comments{overflow:auto}.smart-window.smart-kanban-window .comments .smart-kanban-list.comments .smart-kanban-new-comment{border-top:var(--smart-border-width) solid var(--smart-border);padding:var(--smart-data-view-padding);overflow:hidden}.smart-window.smart-kanban-window .comments .smart-kanban-list.comments .smart-kanban-new-comment textarea{resize:none;width:100%;border-top-right-radius:var(--smart-border-top-right-radius);border-top-left-radius:var(--smart-border-top-left-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius)}.smart-window.smart-kanban-window .comments .smart-kanban-list.comments .smart-kanban-new-comment textarea:focus{outline:0;border-color:var(--smart-outline)}.smart-window.smart-kanban-window .comments .smart-kanban-list.comments .smart-kanban-new-comment textarea:hover{border-color:var(--smart-ui-state-border-hover)}.smart-window.smart-kanban-window .comments .smart-kanban-list.comments .smart-kanban-new-comment textarea[disabled]{opacity:.5}.smart-window.smart-kanban-window .comments .smart-kanban-list.comments .smart-kanban-new-comment smart-button{--smart-button-padding:0;margin-left:auto;height:var(--smart-kanban-send-button-height);display:block}.smart-window.smart-kanban-window .comments .smart-kanban-list.comments .smart-kanban-new-comment smart-button[disabled]{pointer-events:unset;cursor:not-allowed}.smart-window.smart-kanban-window .comments .smart-kanban-list.comments .smart-kanban-comments{height:calc(100% - var(--smart-kanban-new-comment-height-expanded))}.smart-window.smart-kanban-window .comments .smart-kanban-list.comments .smart-kanban-new-comment{height:var(--smart-kanban-new-comment-height-expanded)}.smart-window.smart-kanban-window .comments .smart-kanban-list.comments .smart-kanban-new-comment textarea{margin-bottom:var(--smart-data-view-padding);height:calc(100% - var(--smart-data-view-padding) - var(--smart-kanban-send-button-height));display:block}.smart-window.smart-kanban-window .edit,.smart-window.smart-kanban-window .prompt{display:none}.smart-window.smart-kanban-window.prompt{--smart-window-default-width:250px;--smart-window-default-height:150px;min-width:100px;min-height:100px}.smart-window.smart-kanban-window.prompt .prompt{display:block;width:100%;height:100%;padding:20px}.smart-window.smart-kanban-window.prompt .task-text{display:inline-block;max-width:100px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-weight:700}.smart-window.smart-kanban-window.edit{--smart-numeric-text-box-default-unit-display-width:20px}.smart-window.smart-kanban-window.edit .edit{display:block;width:100%;height:100%}.smart-window.smart-kanban-window .editor-label{margin-bottom:calc(var(--smart-data-view-padding)/ 2);text-transform:uppercase}.smart-window.smart-kanban-window .editor-container{display:grid;grid-template-columns:1fr 1fr;grid-template-rows:auto auto;grid-column-gap:var(--smart-data-view-padding)}.smart-window.smart-kanban-window .editor-container.single-column{grid-template-columns:1fr}.smart-window.smart-kanban-window .editor{width:100%;margin-bottom:var(--smart-data-view-padding)}.smart-window.smart-kanban-window .description-editor{min-height:75px;resize:none;border-top-right-radius:var(--smart-border-top-right-radius);border-top-left-radius:var(--smart-border-top-left-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius)}.smart-window.smart-kanban-window .description-editor:hover{border-color:var(--smart-ui-state-border-hover)}.smart-window.smart-kanban-window .description-editor:focus{outline:0;border-color:var(--smart-primary)}.smart-window.smart-kanban-window .new-container{display:grid;grid-template-columns:1fr var(--smart-text-box-default-height);grid-column-gap:var(--smart-data-view-padding);height:var(--smart-text-box-default-height)}.smart-window.smart-kanban-window .new-container>smart-button{width:unset;height:unset;--smart-button-padding:0}.smart-window.smart-kanban-window .color-editor{width:60px}.smart-window.smart-kanban-window .checklist-editor{border:none;height:auto}.smart-window.smart-kanban-window .checklist-editor smart-list-item .smart-overlay,.smart-window.smart-kanban-window .checklist-editor smart-list-item[focus][selected] .smart-overlay{background-color:transparent}.smart-window.smart-kanban-window .checklist-editor smart-list-item .smart-list-item-container,.smart-window.smart-kanban-window .checklist-editor smart-list-item[focus][selected] .smart-list-item-container{border-color:transparent}.smart-window.smart-kanban-window .checklist-editor .smart-kanban-sub-task{display:grid;grid-column-gap:5px;grid-template-columns:auto auto}.smart-window.smart-kanban-window .checklist-editor .remove-subtask:after{content:var(--smart-icon-close);font-family:var(--smart-font-family-icon);cursor:pointer}.smart-window.smart-kanban-window .new-subtask{border:var(--smart-border-width) solid var(--smart-border);border-top-right-radius:var(--smart-border-top-right-radius);border-top-left-radius:var(--smart-border-top-left-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);background-color:var(--smart-background);color:var(--smart-background-color);font-family:inherit;font-size:inherit}.smart-window.smart-kanban-window .new-subtask:hover{border-color:var(--smart-ui-state-border-hover)}.smart-window.smart-kanban-window .new-subtask:focus{outline:0;border-color:var(--smart-outline)}.smart-window.smart-kanban-window .smart-content-container>.smart-footer{display:flex;align-items:center}.smart-window.smart-kanban-window .smart-footer smart-button{width:auto;min-width:150px;margin-right:10px;height:100%}@media only screen and (max-width:600px){.smart-window.smart-kanban-window{min-width:300px!important}.smart-window.smart-kanban-window .details .layout{grid-template-columns:1fr}}.smart-color-input-drop-down-menu.smart-kanban-color-input .grid-samples-container{grid-template-columns:repeat(2,minmax(0,1fr))}.smart-color-input-drop-down-menu.smart-kanban-color-input:not([animation=none]) .default-samples-container div{transition:transform .2s ease-in-out}.smart-color-input-drop-down-menu.smart-kanban-color-input .default-samples-container div{position:relative;border-radius:50%;border:initial;transform:scale(.95)}.smart-color-input-drop-down-menu.smart-kanban-color-input .default-samples-container div.selected{transform:scale(1)}.smart-color-input-drop-down-menu.smart-kanban-color-input .default-samples-container div.selected:not(.no-color):after{content:var(--smart-icon-check);width:100%;height:100%;position:absolute;top:0;left:0;display:flex;justify-content:center;align-items:center;font-family:var(--smart-font-family-icon);color:var(--smart-secondary-color);border-radius:inherit}.smart-kanban-color-input{--smart-input-drop-down-menu-width:auto}.smart-kanban-color-input.smart-color-picker{background:0 0!important}.smart-kanban-color-input .smart-action-button{width:100%;background:0 0!important;border:none!important}.smart-kanban-color-input .smart-action-button .smart-color-box{border-radius:50%}.smart-kanban-color-input .smart-drop-down-button{display:none}.smart-kanban-list.dialog{position:absolute;border:var(--smart-border-width) solid var(--smart-border);border-top-left-radius:var(--smart-border-top-left-radius);border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);width:var(--smart-kanban-user-list-width);max-height:var(--smart-kanban-user-list-max-height);background-color:var(--smart-background);box-shadow:var(--smart-elevation-8);overflow:auto;transform:scaleY(1);transform-origin:top;opacity:1;z-index:15}.smart-kanban-list.dialog.comments .smart-kanban-comments,.smart-kanban-list.dialog.comments .smart-kanban-new-comment,.smart-kanban-list.dialog.comments .smart-kanban-new-comment textarea{transition:height .2s ease-in}.smart-kanban-list.dialog:focus{outline:var(--smart-primary) solid 1px}.smart-kanban-list.dialog .item{display:flex;align-items:center;min-height:calc(var(--smart-kanban-user-icon-size) + 10px);padding:5px 10px;cursor:pointer}.smart-kanban-list.dialog .item:hover{background-color:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover)}.smart-kanban-list.dialog .item.selected{border-left:var(--smart-kanban-color-band-width) solid var(--smart-primary);padding-left:7px;background-color:var(--smart-ui-state-selected);color:var(--smart-ui-state-color-selected)}.smart-kanban-list.dialog .item[disabled]{opacity:.55;pointer-events:none}.smart-kanban-list.dialog .icon{margin-right:10px;border-radius:50%;width:var(--smart-kanban-user-icon-size);min-width:var(--smart-kanban-user-icon-size);height:var(--smart-kanban-user-icon-size);background-size:cover;background-position:center}.smart-kanban-list.dialog .name{overflow:hidden;text-overflow:ellipsis}.smart-kanban-list.dialog.smart-visibility-hidden{transform:scaleY(0);opacity:0}.smart-kanban-list.dialog.actions.edit-comment .item[data-id="1"]{display:none}.smart-kanban-list.dialog.comments{width:var(--smart-kanban-comments-list-width);height:var(--smart-kanban-comments-list-height);max-height:100%}.smart-kanban-list.dialog.comments .smart-kanban-comments{height:calc(100% - var(--smart-kanban-new-comment-height));overflow:auto}.smart-kanban-list.dialog.comments .smart-kanban-new-comment{border-top:var(--smart-border-width) solid var(--smart-border);height:var(--smart-kanban-new-comment-height);padding:var(--smart-data-view-padding);overflow:hidden}.smart-kanban-list.dialog.comments .smart-kanban-new-comment textarea{resize:none;width:100%;height:100%;border:var(--smart-border-width) solid var(--smart-border);border-top-right-radius:var(--smart-border-top-right-radius);border-top-left-radius:var(--smart-border-top-left-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);background-color:var(--smart-background);color:var(--smart-background-color);font-family:inherit;font-size:inherit}.smart-kanban-list.dialog.comments .smart-kanban-new-comment textarea:focus{outline:0;border-color:var(--smart-outline)}.smart-kanban-list.dialog.comments .smart-kanban-new-comment textarea:hover{border-color:var(--smart-ui-state-border-hover)}.smart-kanban-list.dialog.comments .smart-kanban-new-comment textarea[disabled]{opacity:.5}.smart-kanban-list.dialog.comments .smart-kanban-new-comment smart-button{--smart-button-padding:0;display:none;margin-left:auto;height:var(--smart-kanban-send-button-height)}.smart-kanban-list.dialog.comments .smart-kanban-new-comment smart-button[disabled]{pointer-events:unset;cursor:not-allowed}.smart-kanban-list.dialog.comments.expanded .smart-kanban-comments{height:calc(100% - var(--smart-kanban-new-comment-height-expanded))}.smart-kanban-list.dialog.comments.expanded .smart-kanban-new-comment{height:var(--smart-kanban-new-comment-height-expanded)}.smart-kanban-list.dialog.comments.expanded .smart-kanban-new-comment textarea{margin-bottom:var(--smart-data-view-padding);height:calc(100% - var(--smart-data-view-padding) - var(--smart-kanban-send-button-height));display:block}.smart-kanban-list.dialog.comments.expanded .smart-kanban-new-comment smart-button{display:block}.smart-comment{display:grid;margin:var(--smart-data-view-padding)}.smart-comment .comment-header{display:grid;grid-template-columns:1fr auto auto;grid-column-gap:calc(var(--smart-data-view-padding)/ 2);margin-bottom:var(--smart-data-view-padding)}.smart-comment .user-icon{width:100%;height:var(--smart-kanban-user-icon-size);border-radius:50%;background-size:cover;background-position:center}.smart-comment .user-icon.empty{background:var(--smart-surface);display:flex;align-items:center;justify-content:center;border-radius:50%;border:1px solid var(--smart-border)}.smart-comment .user-icon.empty:after{content:var(--smart-icon-user);font-family:var(--smart-font-family-icon);font-size:20px}.smart-comment .user-name{font-weight:700}.smart-comment .time{opacity:.8}.smart-comment .remove-button{visibility:hidden;transform:rotate(90deg);width:16px;cursor:pointer}.smart-comment .remove-button:after{content:var(--smart-icon-ellipsis);display:flex;align-items:center;justify-content:center;height:100%;font-family:var(--smart-font-family-icon);cursor:pointer}.smart-comment .remove-button.enabled{visibility:visible}.smart-kanban-task-text{display:flex;align-items:center}.smart-kanban-task-text .priority{font-family:var(--smart-font-family-icon);margin-left:5px;display:inline-block;width:16px;height:16px}.smart-kanban-task-text .priority.low{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232666BE'%3E%3Cpath d='M2.73804 7.00207C1.96611 5.66874 2.92823 4 4.46889 4H19.5311C21.0718 4 22.0339 5.66874 21.262 7.00207L13.7309 20.0103C12.9605 21.3409 11.0395 21.3409 10.2691 20.0103L2.73804 7.00207Z'/%3E%3C/svg%3E")}.smart-kanban-task-text .priority.average{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23005C99'%3E%3Cpath d='M12 5.98999L19.53 19H4.47L12 5.98999ZM2.74 18C1.97 19.33 2.93 21 4.47 21H19.53C21.07 21 22.03 19.33 21.26 18L13.73 4.98999C12.96 3.65999 11.04 3.65999 10.27 4.98999L2.74 18Z'/%3E%3C/svg%3E")}.smart-kanban-task-text .priority.high{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23DD5347'%3E%3Cpath d='M2.73804 17.9979C1.96611 19.3313 2.92823 21 4.46889 21H19.5311C21.0718 21 22.0339 19.3313 21.262 17.9979L13.7309 4.98965C12.9605 3.65908 11.0395 3.65908 10.2691 4.98965L2.73804 17.9979Z'/%3E%3C/svg%3E")}.smart-kanban-task-text .priority.critical{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23AF0020'%3E%3Cpath d='M2.73804 17.9979C1.96611 19.3313 2.92823 21 4.46889 21H19.5311C21.0718 21 22.0339 19.3313 21.262 17.9979L13.7309 4.98965C12.9605 3.65908 11.0395 3.65908 10.2691 4.98965L2.73804 17.9979ZM13.5 17.5C13.5 18.3284 12.8284 19 12 19V19C11.1716 19 10.5 18.3284 10.5 17.5V17.5C10.5 16.6716 11.1716 16 12 16V16C12.8284 16 13.5 16.6716 13.5 17.5V17.5ZM13.5 13.5C13.5 14.3284 12.8284 15 12 15V15C11.1716 15 10.5 14.3284 10.5 13.5V9.5C10.5 8.67157 11.1716 8 12 8V8C12.8284 8 13.5 8.67157 13.5 9.5V13.5Z'/%3E%3C/svg%3E")}.smart-kanban[right-to-left] .smart-kanban-body,.smart-kanban[right-to-left] .smart-kanban-column-header-label,.smart-kanban[right-to-left] .swimlane{direction:rtl}.smart-kanban[right-to-left] .smart-kanban-column.collapsed>.smart-kanban-column-header>.smart-kanban-column-header-label{margin-bottom:auto}.smart-kanban[right-to-left] .smart-kanban-column:not(.collapsed) .smart-kanban-column-header .smart-arrow{transform:rotate(180deg)}.smart-kanban[right-to-left] .smart-kanban-list{direction:rtl}.smart-kanban[right-to-left] .smart-kanban-list .icon{margin-left:10px;margin-right:unset}.smart-kanban[right-to-left] .smart-kanban-list .item.selected{border-left:unset;border-right:var(--smart-kanban-color-band-width) solid var(--smart-primary);padding-left:10px;padding-right:7px}.smart-kanban[right-to-left][add-new-button] .smart-kanban-column[add-new-button]>.smart-kanban-column-header>.smart-kanban-column-header-add::after{padding:0 0 10px 10px}.smart-kanban-feedback[right-to-left] .smart-kanban-task{direction:rtl}[right-to-left] .smart-kanban-task{border-left:var(--smart-border-width) solid var(--smart-border);border-right:var(--smart-kanban-color-band-width) solid var(--smart-primary);border-top-left-radius:var(--smart-border-top-right-radius);border-bottom-left-radius:var(--smart-border-bottom-right-radius);border-top-right-radius:0;border-bottom-right-radius:0}[right-to-left] .smart-kanban-task-progress{left:unset;right:0}
smart-layout{display:block;--smart-layout-buttons-border-radius:50%;--smart-layout-context-menu-default-width:var(--smart-menu-vertical-default-width);--smart-layout-context-menu-default-height:auto;overflow:initial;width:600px;height:600px}smart-layout>.smart-container{position:relative}smart-tab-layout-group[position=left] .smart-layout-tab,smart-tab-layout-group[position=right] .smart-layout-tab{padding:24px 12px}.smart-layout-tab,smart-tab-layout-group[position=bottom] .smart-layout-tab,smart-tab-layout-group[position=top] .smart-layout-tab{padding:12px 24px}smart-tab-layout-group[position=left] .smart-layout-tab:after,smart-tab-layout-group[position=right] .smart-layout-tab:after{position:absolute;bottom:0;top:0;width:100%;height:100%;content:"";transition:all .2s ease;transform:perspective(5px) rotateY(2deg);transform-origin:left;left:0;right:-1px;border-radius:0 8px 8px 0}smart-tab-layout-group[position=right] .smart-layout-tab label,smart-tab-layout-group[position=right] .smart-layout-tab.selected .smart-close-button{margin-right:5px}smart-tab-layout-group[position=left] .smart-layout-tab:after{right:0;border-radius:0 8px 8px 0}smart-tab-layout-group[position=left] .smart-layout-tab label,smart-tab-layout-group[position=left] .smart-layout-tab.selected .smart-close-button{transform:rotateY(0);margin-left:-5px}smart-tab-layout-group[position=bottom] .smart-layout-tab:after{transform-origin:top;transform:perspective(5px) rotateX(-2deg);top:0;border-radius:0 0 8px 8px}smart-tab-layout-group[position=bottom] .smart-layout-tab label,smart-tab-layout-group[position=bottom] .smart-layout-tab.selected .smart-close-button{margin-top:-5px}.smart-layout smart-layout-group{display:grid;overflow:hidden}.smart-layout smart-layout-group[data-id=root]{width:100%;height:100%;overflow:hidden;grid-template-columns:1fr}.smart-layout smart-tab-layout-group{display:grid;overflow:hidden;grid-template-rows:35px 1fr;border-right:1px solid var(--smart-border);border-bottom:1px solid var(--smart-border)}.smart-layout smart-tab-layout-group .smart-layout-tab-strip{background:var(--smart-surface);display:flex;overflow:hidden;border-bottom:2px solid var(--smart-primary)}.smart-layout smart-tab-layout-group[position=bottom]{grid-template-rows:1fr 35px}.smart-layout smart-tab-layout-group[position=bottom]>.smart-layout-tab-strip{border:none;border-top:2px solid var(--smart-primary)}.smart-layout smart-tab-layout-group[position=left] .smart-layout-tab-strip .smart-layout-tab .smart-close-button:after,.smart-layout smart-tab-layout-group[position=right] .smart-layout-tab-strip .smart-layout-tab .smart-close-button:after{margin-left:initial;margin-top:5px}.smart-layout smart-tab-layout-group[position=left]{grid-template-columns:35px 1fr;grid-template-rows:initial}.smart-layout smart-tab-layout-group[position=left]>.smart-layout-tab-strip{writing-mode:vertical-rl;transform:rotate(180deg);justify-content:flex-end;align-items:center;border:none;border-left:2px solid var(--smart-primary)}.smart-layout smart-tab-layout-group[position=right]{grid-template-columns:1fr 35px;grid-template-rows:initial}.smart-layout smart-tab-layout-group[position=right]>.smart-layout-tab-strip{writing-mode:vertical-rl;align-items:center;border:none;border-left:2px solid var(--smart-primary)}.smart-layout smart-tab-layout-group[orientation=vertical]{height:100%}.smart-layout smart-tab-layout-group[orientation=horizontal]{width:100%}.smart-layout smart-tab-layout-item{overflow:hidden}.smart-layout smart-tab-layout-item>smart-layout-group{width:100%;height:100%}.smart-layout .smart-layout-context-menu{opacity:1;transform:scale(1);transform-origin:0;-webkit-transform-origin:0;position:absolute;background:var(--smart-background);color:var(--smart-background-color);box-shadow:var(--smart-elevation-8);border-radius:var(--smart-border-radius);width:var(--smart-layout-context-menu-default-width);height:var(--smart-layout-context-menu-default-height);z-index:var(--smart-editor-drop-down-z-index)}.smart-layout .smart-layout-context-menu.smart-visibility-hidden{opacity:.2;transform:scale(0)}.smart-layout .smart-layout-context-menu>div{width:100%;padding:10px;display:flex;align-items:center;justify-content:space-between;overflow:hidden}.smart-layout .smart-layout-context-menu>div:not([disabled]){cursor:pointer}.smart-layout .smart-layout-context-menu>div[hover]{background-color:var(--smart-ui-state-hover);border-color:var(--smart-ui-state-border-hover);color:var(--smart-ui-state-color-hover)}.smart-layout .smart-layout-context-menu>div[disabled]{pointer-events:none;cursor:default;opacity:.5}.smart-layout .smart-layout-buttons-container{position:absolute;width:100px;height:100px;left:calc(50% - 50px);top:calc(50% - 50px);z-index:9999}.smart-layout .smart-layout-buttons-container div{position:absolute;display:flex;align-items:center;justify-content:center;color:var(--smart-primary-color);background:var(--smart-primary);font-family:var(--smart-font-family-icon);font-size:var(--smart-font-size);padding:5px;left:calc(50% - var(--smart-editor-addon-width)/ 2);width:var(--smart-editor-addon-width);height:var(--smart-editor-addon-width);cursor:pointer;border-top-left-radius:var(--smart-layout-buttons-border-radius);border-top-right-radius:var(--smart-layout-buttons-border-radius);border-bottom-left-radius:var(--smart-layout-buttons-border-radius);border-bottom-right-radius:var(--smart-layout-buttons-border-radius);z-index:1;touch-action:none}.smart-layout .smart-layout-buttons-container div:after{content:var(--smart-icon-plus)}.smart-layout .smart-layout-buttons-container div:active{color:var(--smart-ui-state-color-active);border-color:var(--smart-ui-state-active);background-color:var(--smart-ui-state-active);opacity:var(--smart-button-opacity-active)}.smart-layout .smart-layout-buttons-container div:hover{color:var(--smart-ui-state-color-hover);border-color:var(--smart-ui-state-hover);background-color:var(--smart-ui-state-hover);opacity:var(--smart-button-opacity-active)}.smart-layout .smart-layout-buttons-container div[position=rotate]:after{content:var(--smart-icon-reload)}.smart-layout .smart-layout-buttons-container div[position=center]{top:calc(50% - var(--smart-editor-addon-width)/ 2)}.smart-layout .smart-layout-buttons-container div[position=left]{top:calc(50% - var(--smart-editor-addon-width)/ 2);left:0}.smart-layout .smart-layout-buttons-container div[position=right]{left:initial;top:calc(50% - var(--smart-editor-addon-width)/ 2);right:0}.smart-layout .smart-layout-buttons-container div[position=top]{top:0}.smart-layout .smart-layout-buttons-container div[position=bottom]{bottom:0}.smart-layout .smart-layout-drop-area{position:absolute;width:100%;height:100%;z-index:99;pointer-events:none;left:0;top:0;opacity:0;background:rgba(var(--smart-primary-rgb),.2);transition:opacity .2s ease-in-out}.smart-layout .smart-layout-item{height:auto;overflow:hidden;background:var(--smart-background);border-right:1px solid var(--smart-border);border-bottom:1px solid var(--smart-border)}.smart-layout .smart-layout-item[hover]{overflow:hidden}.smart-layout [data-id]{position:relative}.smart-layout:not([animation=none]) .smart-layout-context-menu{transition:opacity .2s ease-in,visibility .2s ease-in,transform .2s ease-in}.smart-layout:not([animation=none]) .smart-layout-buttons-container div:active,.smart-layout:not([animation=none]) .smart-layout-buttons-container div:hover{transition:background-color .1s linear,box-shadow 280ms ease-in-out}.smart-layout:not([animation=none]) .smart-layout-buttons-container div[position=left]{animation:leftRight .2s ease-in}.smart-layout:not([animation=none]) .smart-layout-buttons-container div[position=right]{animation:rightLeft .2s ease-in}.smart-layout:not([animation=none]) .smart-layout-buttons-container div[position=top]{animation:topBottom .2s ease-in}.smart-layout :not([animation=none]) .smart-layout-buttons-container div[position=bottom]{animation:bottomTop .2s ease-in}.smart-layout.outline .smart-layout-splitter{opacity:1}.smart-layout .smart-layout-splitter{z-index:999;position:absolute;background:var(--smart-border);border:1px solid var(--smart-border);top:0;left:0;opacity:0;transition:opacity .2s ease-in-out}.smart-layout .smart-layout-splitter:hover{border-color:var(--smart-primary);border-style:dashed}.smart-layout .smart-layout-splitter:not([root-splitter]){transition:opacity .2s ease-in-out,width .2s ease-in-out,height .2s ease-in-out}.smart-layout .smart-layout-splitter.active{background:var(--smart-primary);border-color:var(--smart-primary)}.smart-layout .smart-layout-splitter.error{background:var(--smart-error);border-color:var(--smart-error)}.smart-layout .smart-layout-splitter.horizontal{height:1px;width:100%;bottom:0;top:initial;cursor:s-resize}.smart-layout .smart-layout-splitter.horizontal.last{top:0;bottom:initial;display:none}.smart-layout .smart-layout-splitter.vertical{width:1px;height:100%;right:0;left:initial;cursor:e-resize}.smart-layout .smart-layout-splitter.vertical.last{left:0;right:initial;display:none}.smart-layout .smart-layout-group[hover]>.smart-layout-splitter.horizontal,.smart-layout .smart-layout-group[hover]>.smart-layout-splitter.vertical,.smart-layout .smart-layout-item[hover]>.smart-layout-splitter.horizontal,.smart-layout .smart-layout-item[hover]>.smart-layout-splitter.vertical,.smart-layout .smart-layout-splitter[drag].horizontal,.smart-layout .smart-layout-splitter[drag].vertical{opacity:1;z-index:99}.smart-layout-tab{grid-row:1;display:flex;align-items:center;justify-content:center;min-width:0;position:relative;overflow:hidden;cursor:pointer;font-family:var(--smart-font-family);box-sizing:border-box;transition:background-color .2s ease-in-out}.smart-layout-tab:after{position:absolute;left:0;bottom:0;right:0;width:100%;height:120%;border-top-left-radius:8px;border-top-right-radius:8px;content:"";transition:all .2s ease;transform:perspective(5px) rotateX(2deg);transform-origin:bottom}.smart-layout-tab:hover{color:var(--smart-primary)}.smart-layout-tab.selected{color:var(--smart-primary-color)}.smart-layout-tab.selected:after{background:var(--smart-primary)}.smart-layout-tab.selected .smart-close-button{z-index:10;color:inherit}.smart-layout-tab.selected .smart-close-button:after{content:var(--smart-icon-close);width:16px;height:16px;cursor:pointer;font-family:var(--smart-font-family-icon);margin-left:5px;text-align:center;display:flex;align-items:center;justify-content:center;pointer-events:none}.smart-layout-tab label{cursor:pointer;text-overflow:ellipsis;overflow:hidden;z-index:9;margin-top:2px;color:inherit}.smart-layout-feedback{box-shadow:var(--smart-elevation-24);background:var(--smart-background);position:absolute;width:300px;height:150px;max-height:150px;overflow:hidden;left:0;top:0;pointer-events:none;transform-origin:top left;transform:scale(1);transition:transform .25s ease-in-out}.smart-layout-feedback.dragging{transform:scale(.5)}.smart-layout-overlay{position:absolute;z-index:999;left:0;top:0;width:100%;height:100%;opacity:.01;background:#000}@keyframes topBottom{0%{top:calc(-1 * var(--smart-editor-addon-width))}100%{top:0}}@keyframes bottomTop{0%{bottom:calc(-1 * var(--smart-editor-addon-width))}100%{bottom:0}}@keyframes leftRight{0%{left:calc(-1 * var(--smart-editor-addon-width))}100%{left:0}}@keyframes rightLeft{0%{right:calc(-1 * var(--smart-editor-addon-width))}100%{right:0}}
smart-scheduler{--smart-scheduler-event-size:var(--smart-scheduler-event-size-basic);display:block;width:var(--smart-scheduler-default-width);height:var(--smart-scheduler-default-height);contain:content}smart-scheduler.smart-container,smart-scheduler>.smart-container{overflow:hidden;display:grid;grid-template-rows:var(--smart-scheduler-header-height) minmax(0,1fr);grid-template-columns:100%;margin-bottom:-2px}smart-scheduler.smart-container[show-footer],smart-scheduler>.smart-container[show-footer]{grid-template-rows:var(--smart-scheduler-header-height) minmax(0,1fr) var(--smart-scheduler-footer-height)}smart-scheduler.smart-container.hscroll .smart-scheduler-view,smart-scheduler>.smart-container.hscroll .smart-scheduler-view{height:calc(100% - var(--smart-scroll-bar-size))}smart-scheduler.smart-container.vscroll .smart-scheduler-view,smart-scheduler>.smart-container.vscroll .smart-scheduler-view{width:calc(100% - var(--smart-scroll-bar-size))}smart-scheduler .smart-scheduler-nav[current],smart-scheduler .smart-scheduler-nav[next],smart-scheduler .smart-scheduler-nav[prev],smart-scheduler .smart-scheduler-nav[today]{width:var(--smart-scheduler-header-navigation-button-size);min-width:var(--smart-scheduler-header-navigation-button-size);height:100%;position:relative;font-size:initial;display:inline-block;font-weight:inherit;font-family:var(--smart-font-family-icon);border:var(--smart-border-width) solid var(--smart-border);text-transform:initial}smart-scheduler .smart-scheduler-nav[current]:after,smart-scheduler .smart-scheduler-nav[next]:after,smart-scheduler .smart-scheduler-nav[prev]:after{position:absolute;top:0;left:0;width:100%;height:100%;font-family:var(--smart-font-family-icon);font-size:var(--smart-arrow-size);color:inherit;display:flex;align-items:center;justify-content:center;pointer-events:none}smart-scheduler .smart-scheduler-nav[current]:after{width:var(--smart-editor-addon-width);min-width:var(--smart-editor-addon-width);left:initial;right:0;content:var(--smart-icon-arrow-down);background:0 0;color:inherit}smart-scheduler .smart-scheduler-nav[today]{width:var(--smart-scheduler-header-today-button-size);--smart-button-padding:0 10px 0 10px;border-top-left-radius:var(--smart-item-border-top-left-radius);border-bottom-left-radius:var(--smart-item-border-bottom-left-radius);border-top-right-radius:var(--smart-item-border-top-right-radius);border-bottom-right-radius:var(--smart-item-border-bottom-right-radius);margin-right:10px}smart-scheduler .smart-scheduler-nav[today] button{text-overflow:ellipsis;overflow:hidden}smart-scheduler .smart-scheduler-nav[next][focus] button,smart-scheduler .smart-scheduler-nav[prev][focus] button{background-color:var(--smart-background-focus);outline:0}smart-scheduler .smart-scheduler-nav[next] .smart-button,smart-scheduler .smart-scheduler-nav[prev] .smart-button{font-family:var(--smart-font-family-icon);padding:0;border-radius:0;border:none;min-height:initial}smart-scheduler .smart-scheduler-header,smart-scheduler .smart-scheduler-view[show-group-header=vertical] .smart-scheduler-cell[group-separator]:not(:last-of-type){border-bottom:var(--smart-border-width) solid var(--smart-border)}smart-scheduler .smart-scheduler-nav[prev]:after{content:var(--smart-icon-arrow-left)}smart-scheduler .smart-scheduler-nav[next]:after{content:var(--smart-icon-arrow-right)}smart-scheduler .smart-scheduler-header{width:100%;height:var(--smart-scheduler-header-height);display:grid;grid-template-columns:minmax(0,1fr) auto;grid-template-rows:100%;grid-template-areas:"date view";align-items:center;justify-content:start;background:var(--smart-surface)}smart-scheduler .smart-scheduler-footer:empty,smart-scheduler .smart-scheduler-header:empty{display:none}smart-scheduler .smart-scheduler-view,smart-scheduler[legend-location=header] .smart-scheduler-header,smart-scheduler[view-type=agenda] .smart-scheduler-view-header-horizontal,smart-scheduler[view-type=day] .smart-scheduler-view{grid-template-rows:auto minmax(0,1fr)}smart-scheduler .smart-scheduler-header[responsive-mode]{grid-template-columns:repeat(2,auto)}smart-scheduler .smart-scheduler-footer{width:100%;height:var(--smart-scheduler-footer-height);border-top:var(--smart-border-width) solid var(--smart-border);justify-content:center;align-items:center;background:var(--smart-surface)}smart-scheduler .smart-scheduler-view{text-align:center;overflow:hidden;height:100%;display:grid;grid-template-areas:"hHeader hHeader" "vHeader content";grid-template-columns:auto minmax(0,1fr);outline:0;position:relative}smart-scheduler .smart-scheduler-view[show-group-header=vertical] .smart-scheduler-view-header-vertical{display:grid;grid-template-columns:repeat(2,auto)}smart-scheduler .smart-scheduler-view[show-group-header=vertical] .smart-scheduler-view-header-groups-container{flex-direction:row}smart-scheduler .smart-scheduler-view[show-group-header=vertical] .smart-scheduler-cell-container[group-separator]:not(:last-of-type),smart-scheduler .smart-scheduler-view[show-group-header=vertical] .smart-scheduler-cell:not(.scale)[group-separator]:not(:last-of-type),smart-scheduler .smart-scheduler-view[show-group-header=vertical] .smart-scheduler-cell[group-separator]:not(:last-of-type){border-bottom-color:var(--smart-scheduler-timeline-group-separator-background);border-bottom-width:var(--smart-scheduler-timeline-group-separator-size)}smart-scheduler .smart-scheduler-view[show-group-header=horizontal] .smart-scheduler-view-header-groups-container{flex-direction:column}smart-scheduler .smart-scheduler-view[show-group-header=horizontal] .smart-scheduler-view-header-groups-container .smart-scheduler-cell-container:not(:last-of-type)>.smart-scheduler-cell{border-bottom:var(--smart-scheduler-view-line-size) solid var(--smart-scheduler-view-horizontal-line-color)}smart-scheduler .smart-scheduler-view[show-group-header=horizontal] .smart-scheduler-cell-container[group-separator]:not(:last-of-type),smart-scheduler .smart-scheduler-view[show-group-header=horizontal] .smart-scheduler-cell:not(.scale)[group-separator]:not(:last-of-type),smart-scheduler .smart-scheduler-view[show-group-header=horizontal] .smart-scheduler-cell[group-separator]:not(:last-of-type){border-right-color:var(--smart-scheduler-timeline-group-separator-background);border-right-width:var(--smart-scheduler-timeline-group-separator-size);border-right-style:solid}smart-scheduler .smart-scheduler-view:focus .smart-scheduler-cell:not(.scale)[selected]{background:var(--smart-ui-state-selected);color:var(--smart-ui-state-color-selected)}smart-scheduler .smart-scheduler-view:focus .smart-scheduler-cell:not(.scale)[selected=start]{background:var(--smart-ui-state-active);color:var(--smart-ui-state-color-active)}smart-scheduler .smart-scheduler-view[event-hovered=left],smart-scheduler .smart-scheduler-view[event-hovered=left] .smart-scheduler-event-content,smart-scheduler .smart-scheduler-view[event-hovered=right],smart-scheduler .smart-scheduler-view[event-hovered=right] .smart-scheduler-event-content{cursor:e-resize}smart-scheduler .smart-scheduler-view[event-hovered=bottom],smart-scheduler .smart-scheduler-view[event-hovered=bottom] .smart-scheduler-event-content,smart-scheduler .smart-scheduler-view[event-hovered=top],smart-scheduler .smart-scheduler-view[event-hovered=top] .smart-scheduler-event-content{cursor:n-resize}smart-scheduler .smart-scheduler-view[mobile] .smart-scheduler-content:not(.hide-overlay):after{position:fixed;content:"";width:100%;height:100%;display:block}smart-scheduler .smart-scheduler-view[mobile] .smart-scheduler-event[collector]{display:flex;justify-content:center;align-items:center;border-radius:50%;overflow:hidden}smart-scheduler .smart-scheduler-view[mobile] .smart-scheduler-event[collector] .smart-scheduler-event-content{width:var(--smart-scheduler-event-collector-mobile-size);height:var(--smart-scheduler-event-collector-mobile-size)}smart-scheduler .smart-scheduler-view-nav{grid-area:view;display:flex;align-items:center;justify-content:flex-end;height:100%;overflow:hidden}smart-scheduler .smart-scheduler-view-nav .smart-scheduler-nav[next],smart-scheduler .smart-scheduler-view-nav .smart-scheduler-nav[prev]{border:initial;border-radius:initial;--smart-background:transparent;--smart-disabled:transparent}smart-scheduler .smart-scheduler-view-nav[show-menu]{padding:var(--smart-scheduler-header-padding)}smart-scheduler .smart-scheduler-view-nav.no-overflowing .smart-scheduler-items-container{overflow:hidden}smart-scheduler .smart-scheduler-view-header{box-shadow:var(--smart-scheduler-header-box-shadow);position:relative}smart-scheduler .smart-scheduler-view-header-vertical{height:100%;grid-area:vHeader;display:grid;grid-template-columns:repeat(2,auto)}smart-scheduler .smart-scheduler-view-header-vertical .smart-scheduler-view-details{width:var(--smart-scheduler-timeline-header-vertical-details-size)}smart-scheduler .smart-scheduler-view-header-vertical .smart-scheduler-groups-container{width:var(--smart-scheduler-timeline-header-vertical-group-size)}smart-scheduler .smart-scheduler-view-header-vertical .smart-scheduler-cells{width:var(--smart-scheduler-timeline-header-vertical-cells-size);border:none;background:var(--smart-background);position:relative}smart-scheduler .smart-scheduler-view-header-vertical .smart-scheduler-cell{width:100%;min-width:initial;align-items:flex-start}smart-scheduler .smart-scheduler-view-header-vertical .smart-scheduler-cell>div{overflow:hidden;text-overflow:ellipsis;background:inherit;padding:var(--smart-scheduler-timeline-header-vertical-label-padding)}smart-scheduler .smart-scheduler-view-header-vertical-content{width:100%;height:100%;position:relative;overflow:hidden;display:flex}smart-scheduler .smart-scheduler-view-header-horizontal{width:100%;display:grid;grid-area:hHeader}smart-scheduler .smart-scheduler-view-header-horizontal .smart-scheduler-view-details{height:var(--smart-scheduler-timeline-header-horizontal-details-size)}smart-scheduler .smart-scheduler-view-header-horizontal .smart-scheduler-groups-container{height:var(--smart-scheduler-timeline-header-horizontal-group-size)}smart-scheduler .smart-scheduler-view-header-horizontal .smart-scheduler-view-time-container{display:grid;width:100%;overflow:hidden;border-bottom:var(--smart-scheduler-view-line-size) solid var(--smart-scheduler-view-horizontal-line-color);grid-template-columns:auto minmax(0,1fr)}smart-scheduler .smart-scheduler-view-header-horizontal .smart-scheduler-cells{height:var(--smart-scheduler-timeline-header-horizontal-cells-size);position:relative;display:flex;width:100%;min-height:inherit}smart-scheduler .smart-scheduler-view-header-horizontal .smart-scheduler-cells .smart-scheduler-cell{width:100%;min-height:inherit;display:flex;height:100%;border-left:var(--smart-scheduler-view-line-size) solid var(--smart-scheduler-view-vertical-line-color);border-right:var(--smart-scheduler-view-line-size) solid var(--smart-scheduler-view-vertical-line-color)}smart-scheduler .smart-scheduler-view-header-horizontal .smart-scheduler-cells .smart-scheduler-cell>div{overflow:hidden;text-overflow:ellipsis;padding:var(--smart-scheduler-timeline-header-horizontal-label-padding)}smart-scheduler .smart-scheduler-view-header-horizontal .smart-scheduler-cells .smart-scheduler-cell:first-of-type{border-left:none}smart-scheduler .smart-scheduler-view-header-horizontal .smart-scheduler-view-groups-content{border-bottom:var(--smart-border-width) solid var(--smart-border)}smart-scheduler .smart-scheduler-view-header-horizontal-content{width:100%;height:100%;position:relative;overflow:hidden;display:flex;flex-direction:column}smart-scheduler .smart-scheduler-view-header-groups-container{width:100%;display:flex;position:relative}smart-scheduler .smart-scheduler-view-header-groups-container .smart-scheduler-cell-container{position:relative;width:100%;height:100%;min-height:initial;min-width:initial}smart-scheduler .smart-scheduler-view-header-groups-container .smart-scheduler-cell{height:100%;border-right:var(--smart-scheduler-view-line-size) solid var(--smart-scheduler-view-vertical-line-color)}smart-scheduler .smart-scheduler-view-time{display:flex;position:relative}smart-scheduler .smart-scheduler-view-all-day{grid-template-columns:auto minmax(0,1fr);border-bottom:var(--smart-scheduler-day-week-view-hour-size) solid var(--smart-scheduler-day-week-view-hour-color);height:var(--smart-scheduler-timeline-header-all-day-cells-size);display:grid}smart-scheduler .smart-scheduler-view-all-day .smart-scheduler-cell[all-day]{height:100%;border-left:initial}smart-scheduler .smart-scheduler-view-all-day .smart-scheduler-event{padding:var(--smart-scheduler-event-padding-all-day);height:var(--smart-scheduler-event-size)}smart-scheduler .smart-scheduler-view-all-day .smart-scheduler-event:after{top:calc(50% - var(--smart-scheduler-event-resize-indicator-size)/ 4);left:calc(100% - var(--smart-scheduler-event-resize-indicator-size))}smart-scheduler .smart-scheduler-view-all-day .smart-scheduler-event:before{top:calc(50% - var(--smart-scheduler-event-resize-indicator-size)/ 4);left:0}smart-scheduler .smart-scheduler-view-all-day .smart-scheduler-event .smart-scheduler-event-button{display:none}smart-scheduler .smart-scheduler-view-all-day .smart-scheduler-event[repeating] .smart-scheduler-event-content[single-line]{grid-template-columns:repeat(2,auto) var(--smart-scheduler-event-icon-size)}smart-scheduler .smart-scheduler-view-all-day .smart-scheduler-event-content{grid-template-columns:minmax(auto,1fr)}smart-scheduler .smart-scheduler-view-all-day .smart-scheduler-event-content[single-line]{grid-template-columns:repeat(2,auto);grid-template-rows:100%;grid-column-gap:5px;justify-content:space-between}smart-scheduler .smart-scheduler-view-all-day[exception] .smart-scheduler-event-content,smart-scheduler .smart-scheduler-view-all-day[repeating] .smart-scheduler-event-content{grid-template-columns:minmax(auto,1fr) var(--smart-scheduler-event-icon-size)}smart-scheduler .smart-scheduler-view-all-day-content{width:100%;height:100%;position:relative;overflow:hidden;display:flex;flex-direction:column}smart-scheduler .smart-scheduler-view-all-day-label{display:flex;justify-content:center;align-items:center;text-overflow:ellipsis;white-space:nowrap;width:100%;height:100%;min-width:var(--smart-scheduler-timeline-header-vertical-cells-size);font-weight:var(--smart-scheduler-timeline-all-day-label-font-weight);padding:var(--smart-scheduler-timeline-header-cell-padding)}smart-scheduler .smart-scheduler-view-all-day-label>div{overflow:hidden;text-overflow:ellipsis}smart-scheduler .smart-scheduler-view-all-day-label-container{display:flex;flex-direction:column;overflow:hidden}smart-scheduler .smart-scheduler-view-details{display:flex;position:relative}smart-scheduler .smart-scheduler-view-details .smart-scheduler-cell{border-bottom:var(--smart-border-width) solid var(--smart-border);height:100%;min-height:inherit;min-width:inherit}smart-scheduler .smart-scheduler-view-details .smart-scheduler-cell:not(:first-of-type){border-left:none}smart-scheduler .smart-scheduler-view-container{position:relative}smart-scheduler .smart-scheduler-view-groups-label-container,smart-scheduler .smart-scheduler-view-label-container{display:flex;height:100%}smart-scheduler .smart-scheduler-view-groups-content{width:100%;height:100%;position:relative;overflow:hidden;display:flex}smart-scheduler .smart-scheduler-view-items-button{--smart-button-text-transform:initial;transform:scale(1);height:100%;width:var(--smart-scheduler-header-menu-button-size);border-top-left-radius:var(--smart-item-border-top-left-radius);border-bottom-left-radius:var(--smart-item-border-bottom-left-radius);border-top-right-radius:var(--smart-item-border-top-right-radius);border-bottom-right-radius:var(--smart-item-border-bottom-right-radius);overflow:hidden}smart-scheduler .smart-scheduler-view-items-button:after{position:absolute;top:0;height:100%;font-family:var(--smart-font-family-icon);font-size:var(--smart-arrow-size);color:inherit;display:flex;align-items:center;justify-content:center;pointer-events:none;width:var(--smart-editor-addon-width);min-width:var(--smart-editor-addon-width);left:initial;right:0;content:var(--smart-icon-arrow-down);background:0 0}smart-scheduler .smart-scheduler-view-items-button button{display:flex;align-items:center;justify-content:center;border-radius:initial}smart-scheduler .smart-scheduler-view-items-button button>span{text-overflow:ellipsis;overflow:hidden}smart-scheduler .smart-scheduler-view-items-button:not([active]) button:active{color:inherit;border-color:inherit;background-color:inherit}smart-scheduler .smart-scheduler-view-items-button.smart-visibility-hidden{transform:scale(0)}smart-scheduler[hide-other-month-days] .smart-scheduler-cell[other-month]>div{visibility:hidden}smart-scheduler .smart-scheduler-cells .smart-scheduler-cell:empty{display:none}smart-scheduler .smart-scheduler-cells .smart-scheduler-cell:not(:first-of-type){border-left:none}smart-scheduler .smart-scheduler-cells div{border-bottom-color:var(--smart-border);white-space:nowrap;pointer-events:none}smart-scheduler .smart-scheduler-cells-container .smart-scheduler-cell.scale{position:relative;width:100%;height:100%;min-height:initial;min-width:initial}smart-scheduler .smart-scheduler-cells-container .smart-scheduler-cell:not(.scale)[restricted]{background:var(--smart-scheduler-restricted-background)}smart-scheduler .smart-scheduler-cells-container .smart-scheduler-cell[nonworking],smart-scheduler .smart-scheduler-cells-container .smart-scheduler-cell[nonworking] .smart-scheduler-cell{background:var(--smart-scheduler-timeline-nonworking-color)}smart-scheduler .smart-scheduler-cells-container .smart-scheduler-cell[weekend]{background:var(--smart-scheduler-timeline-weekend-color)}smart-scheduler .smart-scheduler-cells-container .smart-scheduler-cell-container{width:100%;height:100%;overflow:hidden;padding:initial;display:flex;flex-direction:column}smart-scheduler .smart-scheduler-cells-container .smart-scheduler-cell:not(.scale){width:100%;height:100%;min-height:initial;min-width:initial}smart-scheduler .smart-scheduler-cell,smart-scheduler .smart-scheduler-cell-container{padding:var(--smart-scheduler-timeline-header-cell-padding);min-height:var(--smart-scheduler-timeline-cell-min-height);min-width:var(--smart-scheduler-timeline-cell-min-size);white-space:nowrap;position:absolute}smart-scheduler .smart-scheduler-cell{display:flex;justify-content:center;align-items:center;background:var(--smart-background);color:var(--smart-surface-color);text-overflow:ellipsis;border-bottom-color:transparent;height:var(--smart-scheduler-timeline-cell-height);width:var(--smart-scheduler-timeline-cell-width)}smart-scheduler .smart-scheduler-cell.smart-scheduler-feedback:after{content:"";position:absolute;top:0;left:0;width:100%;height:100%;box-sizing:border-box;border:2px dashed var(--smart-primary);pointer-events:none;background:var(--smart-scheduler-cell-feedback-background)}smart-scheduler .smart-scheduler-cell[other-month]{background:var(--smart-background);color:var(--smart-background-color);border-color:var(--smart-border)}smart-scheduler .smart-scheduler-cell[other-month]>div{opacity:.5}smart-scheduler .smart-scheduler-cell.smart-scheduler-view-header-cell-feedback{width:initial;height:initial;visibility:hidden}smart-scheduler .smart-scheduler-cell-container{display:flex;justify-content:center;align-items:center;background:var(--smart-background);color:var(--smart-surface-color);text-overflow:ellipsis;border-bottom-color:transparent;height:var(--smart-scheduler-timeline-cell-height);width:var(--smart-scheduler-timeline-cell-width)}smart-scheduler .smart-scheduler-event .smart-scheduler-event-button,smart-scheduler .smart-scheduler-events-container .smart-scheduler-event .smart-scheduler-event-button{display:none}smart-scheduler .smart-scheduler-event{position:absolute;padding:var(--smart-scheduler-event-padding-basic);outline:0;-webkit-tap-highlight-color:transparent;border-radius:var(--smart-scheduler-event-border-radius);-webkit-user-select:none;user-select:none}smart-scheduler .smart-scheduler-event:after{left:calc(50% - var(--smart-scheduler-event-resize-indicator-size)/ 4);top:calc(100% - var(--smart-scheduler-event-resize-indicator-size))}smart-scheduler .smart-scheduler-event:before{left:calc(50% - var(--smart-scheduler-event-resize-indicator-size)/ 4);top:0}smart-scheduler .smart-scheduler-event[focus]:not([collector]):after,smart-scheduler .smart-scheduler-event[focus]:not([collector]):before,smart-scheduler .smart-scheduler-event[hover]:not([collector]):after,smart-scheduler .smart-scheduler-event[hover]:not([collector]):before{transform:scale(1)}smart-scheduler .smart-scheduler-event:not([resized])[focus] .smart-scheduler-event-content{background:var(--smart-scheduler-event-focus);color:var(--smart-scheduler-event-color-focus)}smart-scheduler .smart-scheduler-event:not([resized])[hover] .smart-scheduler-event-content{background:var(--smart-scheduler-event-hover);color:var(--smart-scheduler-event-color-hover)}smart-scheduler .smart-scheduler-event:not([collector]):after,smart-scheduler .smart-scheduler-event:not([collector]):before{content:"";width:var(--smart-scheduler-event-resize-indicator-size);height:var(--smart-scheduler-event-resize-indicator-size);position:absolute;background-color:var(--smart-scheduler-event-resize-indicator-color);box-shadow:0 0 0 1px var(--smart-scheduler-event-resize-indicator-border-color);transform:scale(0);pointer-events:none;z-index:1}smart-scheduler .smart-scheduler-event .smart-scheduler-event-label{font-weight:var(--smart-scheduler-event-label-font-weight);font-size:var(--smart-scheduler-event-label-font-size);pointer-events:none;white-space:nowrap}smart-scheduler .smart-scheduler-event .smart-scheduler-event-time{font-weight:var(--smart-scheduler-event-time-font-weight);font-size:var(--smart-scheduler-event-time-font-size);opacity:var(--smart-scheduler-event-time-opacity);pointer-events:none;white-space:pre-wrap}smart-scheduler .smart-scheduler-event .smart-scheduler-event-content>div{max-width:100%;max-height:100%;overflow:hidden;text-overflow:ellipsis;align-self:flex-start}smart-scheduler .smart-scheduler-event .smart-scheduler-event-content>div:first-of-type{align-self:center}smart-scheduler .smart-scheduler-event .smart-scheduler-event-content:not([single-line])>div:not(:first-of-type){grid-column:1/span 2}smart-scheduler .smart-scheduler-event .smart-scheduler-event-content[single-line]>div{align-self:initial}smart-scheduler .smart-scheduler-event[resized]{opacity:.75;z-index:10000}smart-scheduler .smart-scheduler-event[cut] .smart-scheduler-event-content{opacity:.75}smart-scheduler .smart-scheduler-event[collector]{width:var(--smart-scheduler-event-collector-size);height:var(--smart-scheduler-event-collector-size);border-radius:var(--smart-scheduler-event-collector-border-radius)}smart-scheduler .smart-scheduler-event[collector] .smart-scheduler-event-content{padding:1px 5px;justify-items:center;background:var(--smart-scheduler-event-collector-background);color:var(--smart-scheduler-event-collector-color);grid-template-rows:minmax(0,1fr);grid-template-columns:minmax(0,1fr);grid-column-gap:5px}smart-scheduler .smart-scheduler-event[collector] .smart-scheduler-event-content>div{align-self:initial;white-space:nowrap}smart-scheduler .smart-scheduler-event[collector][focus] .smart-scheduler-event-content{background:var(--smart-scheduler-event-collector-focus);color:var(--smart-scheduler-event-collector-color-focus)}smart-scheduler .smart-scheduler-event[collector][hover] .smart-scheduler-event-content{background:var(--smart-scheduler-event-collector-hover);color:var(--smart-scheduler-event-collector-color-hover)}smart-scheduler .smart-scheduler-event[repeating] .smart-scheduler-event-content:after{content:var(--smart-icon-spin);width:var(--smart-scheduler-event-icon-size);position:absolute;display:flex;justify-content:center;align-items:center;top:0;right:0;font-family:var(--smart-font-family-icon);font-size:var(--smart-font-size);padding:var(--smart-scheduler-event-content-padding);box-sizing:border-box;line-height:1rem}smart-scheduler .smart-scheduler-event[repeating] .smart-scheduler-event-content[single-line]{grid-template-columns:repeat(2,auto) var(--smart-scheduler-event-icon-size)}smart-scheduler .smart-scheduler-event[repeating][exception] .smart-scheduler-event-content:after{content:var(--smart-icon-attention-circled)}smart-scheduler .smart-scheduler-event[status] .smart-scheduler-event-content::before{content:"";position:absolute;display:block;width:var(--smart-scheduler-status-size);height:100%;background:var(--smart-scheduler-status-background);box-shadow:0 0 0 .5px var(--smart-background);border:1px solid var(--smart-border);border-radius:20px;overflow:hidden;box-sizing:border-box}smart-scheduler .smart-scheduler-event[status=free] .smart-scheduler-event-content::before{background:var(--smart-scheduler-status-free-background)}smart-scheduler .smart-scheduler-event[status=busy] .smart-scheduler-event-content::before{background:var(--smart-scheduler-status-busy-background)}smart-scheduler .smart-scheduler-event[status=outOfOffice] .smart-scheduler-event-content::before{background:var(--smart-scheduler-status-out-of-office-background)}smart-scheduler .smart-scheduler-event[status=tentative] .smart-scheduler-event-content::before{background:var(--smart-scheduler-status-tentative-background)}smart-scheduler .smart-scheduler-event[exception] .smart-scheduler-event-button,smart-scheduler .smart-scheduler-event[repeating] .smart-scheduler-event-button{display:none}smart-scheduler .smart-scheduler-event[exception] .smart-scheduler-event-content,smart-scheduler .smart-scheduler-event[repeating] .smart-scheduler-event-content{grid-template-columns:minmax(auto,1fr) var(--smart-scheduler-event-icon-size)}smart-scheduler .smart-scheduler-event:not([repeating]) .smart-scheduler-event-content:not([single-line])>div{grid-column:1/span 2}smart-scheduler .smart-scheduler-event-content{width:100%;height:100%;max-height:100%;display:grid;grid-template-rows:min-content minmax(auto,1fr);justify-content:flex-start;justify-items:flex-start;align-items:center;overflow:hidden;padding:var(--smart-scheduler-event-content-padding);color:var(--smart-scheduler-event-color);background:var(--smart-scheduler-event-background);cursor:pointer;position:relative;border-radius:inherit;grid-row-gap:2px;grid-template-columns:minmax(auto,1fr)}smart-scheduler .smart-scheduler-event-content[single-line]{grid-template-columns:repeat(2,auto);grid-template-rows:100%;grid-column-gap:5px;justify-content:space-between}smart-scheduler .smart-scheduler-date-nav{grid-area:date;display:flex;align-items:center;height:100%;padding:var(--smart-scheduler-header-padding);background:var(--smart-surface);background-clip:content-box;overflow:hidden}smart-scheduler .smart-scheduler-date-nav .smart-scheduler-nav[current]{--smart-button-padding:0 10px 0 10px;width:auto;max-width:var(--smart-scheduler-header-date-button-max-size);border-top-right-radius:var(--smart-item-border-top-right-radius);border-bottom-right-radius:var(--smart-item-border-bottom-right-radius);border-top-left-radius:var(--smart-item-border-top-left-radius);border-bottom-left-radius:var(--smart-item-border-bottom-left-radius)}smart-scheduler .smart-scheduler-date-nav .smart-scheduler-nav[current] .smart-button{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}smart-scheduler .smart-scheduler-time-zone{width:var(--smart-scheduler-timeline-header-vertical-cells-size);overflow:hidden;display:flex;align-items:center;justify-content:center;padding:var(--smart-scheduler-timeline-header-cell-padding)}smart-scheduler .smart-scheduler-time-zone>div{overflow:hidden;text-overflow:ellipsis}smart-scheduler .smart-scheduler-time-zone-container{display:flex;height:100%;align-items:center}smart-scheduler .smart-scheduler-time-zone-container:empty{display:none}smart-scheduler .smart-scheduler-current-time-indicator{position:absolute;pointer-events:none;width:var(--smart-scheduler-current-time-indicator-size);height:var(--smart-scheduler-current-time-indicator-size);background:var(--smart-scheduler-current-time-indicator-background)}smart-scheduler .smart-scheduler-items-container{display:flex;align-items:center;height:100%;position:relative;outline:0}smart-scheduler .smart-scheduler-items-container .smart-scheduler-item[selected]{background:var(--smart-background);border-left:var(--smart-border-width) solid var(--smart-border);border-right:var(--smart-border-width) solid var(--smart-border);border-top:var(--smart-border-width) solid var(--smart-border)}smart-scheduler .smart-scheduler-items-container:focus .smart-scheduler-item[selected]{background-color:var(--smart-ui-state-focus);border-color:var(--smart-ui-state-border-focus);color:var(--smart-ui-state-color-focus)}smart-scheduler .smart-scheduler-items-container .smart-scheduler-item{position:relative;display:flex;align-items:center;justify-content:center;cursor:pointer;height:100%;width:var(--smart-scheduler-item-size);padding:var(--smart-scheduler-header-padding);border:var(--smart-border-width) solid transparent}smart-scheduler .smart-scheduler-items-container .smart-scheduler-item:last-of-type{border-right:none}smart-scheduler .smart-scheduler-item>div{position:relative;align-items:center;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}smart-scheduler .smart-scheduler-groups-container{display:flex;width:100%;height:100%;overflow:hidden}smart-scheduler .smart-scheduler-groups-container .smart-scheduler-cell{font-weight:var(--smart-scheduler-timeline-all-day-label-font-weight);white-space:var(--smart-scheduler-timeline-group-white-space);min-height:inherit;min-width:inherit}smart-scheduler .smart-scheduler-groups-container .smart-scheduler-cell>div{overflow:hidden;text-overflow:ellipsis}smart-scheduler .smart-scheduler-groups-container .smart-scheduler-cell:not(:first-of-type){border-left:none}smart-scheduler .smart-scheduler-scrollable-container{width:100%;position:relative;overflow:hidden;display:grid;grid-area:content;height:100%;background:var(--smart-scheduler-view-background)}smart-scheduler .smart-scheduler-content .smart-scheduler-cell[nonworking],smart-scheduler[view-type=month] .smart-scheduler-content .smart-scheduler-cell[nonworking][other-month]:not([selected]){background:var(--smart-scheduler-timeline-nonworking-color)}smart-scheduler .smart-scheduler-content{position:relative;overflow:hidden;width:100%;height:100%}smart-scheduler .smart-scheduler-content .smart-scheduler-cell[weekend]{background:var(--smart-scheduler-timeline-weekend-color)}smart-scheduler .smart-scheduler-view-scroll-bar{overflow:visible;position:relative;height:var(--smart-scroll-bar-size);width:100%}smart-scheduler .smart-scheduler-view-scroll-bar:after{position:absolute;content:"";width:100%;height:var(--smart-scroll-bar-size);background:var(--smart-scroll-bar-background);left:100%;top:0}smart-scheduler .smart-scheduler-view-scroll-bar.bottom-corner{width:calc(100% - var(--smart-scroll-bar-size))}smart-scheduler .smart-scheduler-view-scroll-bar[orientation=vertical]{position:absolute;right:0;top:0;height:100%;width:var(--smart-scroll-bar-size)}smart-scheduler .smart-scheduler-view-scroll-bar[orientation=vertical].bottom-corner{height:calc(100% - var(--smart-scroll-bar-size))}smart-scheduler .smart-scheduler-tooltip{pointer-events:none;transform:scale(0)}smart-scheduler .smart-toast-container-custom.smart-toast-container{width:var(--smart-scheduler-toast-default-width);top:0;right:0;max-width:100%;max-height:100%;height:auto}smart-scheduler .smart-toast-container-custom.smart-toast-container .smart-toast-item{border-radius:5px;height:var(--smart-scheduler-toast-default-height)}smart-scheduler .smart-toast-container-custom.smart-toast-container .smart-toast-item>.smart-container{display:flex;flex-direction:row-reverse}smart-scheduler .smart-toast-container-custom.smart-toast-container .smart-toast-item .smart-toast-item-container{padding:initial;top:initial;width:100%}smart-scheduler .smart-scheduler-legend{width:100%;height:100%;display:flex;grid-row-gap:10px;grid-column-gap:10px;grid-area:legend}smart-scheduler .smart-scheduler-legend .smart-scheduler-legend-list{width:30px;background:0 0;border:none;font-family:var(--smart-font-family-icon)}smart-scheduler .smart-scheduler-legend .smart-scheduler-legend-list input{display:none}smart-scheduler .smart-scheduler-legend .smart-scheduler-legend-list .smart-container::before{content:var(--smart-icon-menu);background:var(--smart-surface);position:absolute;width:100%;height:100%;left:calc(50% - 8px);top:calc(50% - 8px)}smart-scheduler .smart-scheduler-legend .smart-scheduler-legend-item{display:flex;flex-direction:column;justify-content:center;max-width:100%;padding:var(--smart-scheduler-header-padding);overflow:hidden;grid-row-gap:2px}smart-scheduler .smart-scheduler-legend .smart-scheduler-legend-res-items{display:flex}smart-scheduler .smart-scheduler-legend .smart-scheduler-legend-res-item{position:relative;display:flex;align-items:center;grid-column-gap:5px;white-space:nowrap;outline:initial;overflow:hidden}smart-scheduler .smart-scheduler-legend .smart-scheduler-legend-res-item:hover{color:var(--smart-ui-state-color-hover)}smart-scheduler .smart-scheduler-legend .smart-scheduler-legend-res-item:before{content:"";width:var(--smart-check-box-default-size);min-width:var(--smart-check-box-default-size);height:var(--smart-check-box-default-size);min-height:var(--smart-check-box-default-size);display:flex;border:var(--smart-border-width) solid var(--smart-border);box-sizing:border-box;background-color:var(--smart-scheduler-legend-item-background);border-radius:var(--smart-border-radius)}smart-scheduler:not([view-type=day]) .smart-scheduler-view[show-group-header=vertical] .smart-scheduler-view-header-groups-container .smart-scheduler-cell-container:not(:last-of-type)>.smart-scheduler-cell,smart-scheduler:not([view-type^=timeline]) .smart-scheduler-cells-container .smart-scheduler-cell:not(.scale):not(:last-of-type){border-right:var(--smart-scheduler-view-line-size) solid var(--smart-scheduler-view-vertical-line-color)}smart-scheduler .smart-scheduler-legend .smart-scheduler-legend-res-item:not(:first-of-type){margin-left:20px}smart-scheduler .smart-scheduler-legend .smart-scheduler-legend-res-item>span{overflow:hidden;text-overflow:ellipsis;pointer-events:none}@media only screen and (min-device-width:320px) and (max-device-width:900px){smart-scheduler .smart-scheduler-legend .smart-scheduler-legend-res-item>span{width:0}}smart-scheduler .smart-scheduler-window-modal{position:absolute;opacity:.5;background-color:var(--smart-disabled);top:0;left:0;width:100%;min-height:100%;z-index:calc(var(--smart-editor-drop-down-z-index) - 1)}smart-scheduler .smart-scheduler-shade-section{position:absolute;pointer-events:none;background:var(--smart-scheduler-shader-background)}smart-scheduler .smart-scheduler-cells-container .smart-scheduler-cell:not(.scale)>div,smart-scheduler .smart-scheduler-item>div,smart-scheduler .smart-scheduler-view-all-day-label,smart-scheduler .smart-scheduler-view-header-horizontal .smart-scheduler-cell,smart-scheduler .smart-scheduler-view-header-vertical .smart-scheduler-cell{-webkit-user-select:none;user-select:none}smart-scheduler:not([animation=none]) .smart-scheduler-legend .smart-scheduler-legend-res-item:before{transition:background linear .2s,border linear .2s}smart-scheduler:not([animation=none]) .smart-scheduler-event:after,smart-scheduler:not([animation=none]) .smart-scheduler-event:before{transition:transform .2s cubic-bezier(.4,0,.6,1)}.smart-color-input-drop-down-menu.smart-scheduler-color-input:not([animation=none]) .default-samples-container div,smart-scheduler:not([animation=none]) .smart-scheduler-view-items-button{transition:transform .2s ease-in-out}smart-scheduler:not([animation=none]) .smart-scheduler-items-container .smart-scheduler-item{transition:border-top .2s ease-in-out}smart-scheduler:not([event-render-mode=classic]) .smart-scheduler-event{padding-right:initial}smart-scheduler:not([disable-date-menu]):not([right-to-left]) .smart-scheduler-nav[current] button,smart-scheduler:not([disable-view-menu]):not([right-to-left]) .smart-scheduler-view-items-button button{padding-right:var(--smart-editor-addon-width)}smart-scheduler:not([view-type^=timeline]) .smart-scheduler-cells-container .smart-scheduler-cell.scale:not(:last-of-type){border-bottom:var(--smart-border-width) solid rgba(var(--smart-border-rgb),.5)}smart-scheduler:not([view-type^=timeline]) .smart-scheduler-cells-container .smart-scheduler-cell-container:not(:last-of-type){border-bottom:var(--smart-scheduler-view-line-size) solid var(--smart-scheduler-view-horizontal-line-color)}smart-scheduler:not([view-type^=timeline]) .smart-scheduler-view-header-horizontal .smart-scheduler-time-zone{width:var(--smart-scheduler-timeline-header-vertical-cells-size);height:100%}smart-scheduler:not([view-type^=timeline]) .smart-scheduler-current-time-indicator:before{left:0;top:calc(-1 * var(--smart-scheduler-current-time-indicator-arrow-size) + var(--smart-scheduler-current-time-indicator-size)/ 2);border-top:var(--smart-scheduler-current-time-indicator-arrow-size) solid transparent;border-bottom:var(--smart-scheduler-current-time-indicator-arrow-size) solid transparent;border-left:var(--smart-scheduler-current-time-indicator-arrow-size) solid var(--smart-scheduler-current-time-indicator-background)}smart-scheduler:not([view-type=timelineDay]) .smart-scheduler-view-header-horizontal .smart-scheduler-cells:not(:last-of-type) .smart-scheduler-cell,smart-scheduler[view-type^=timeline] .smart-scheduler-cells-container .smart-scheduler-cell:not(.scale):not(:last-of-type){border-bottom:var(--smart-border-width) solid var(--smart-border)}smart-scheduler:not([view-type^=timeline]) .smart-scheduler-event{width:var(--smart-scheduler-event-size)}smart-scheduler:not([view-type=timelineWeek]) .smart-scheduler-view-details,smart-scheduler:not([view-type=timelineWeek]) .smart-scheduler-view-details-label:empty{display:none}smart-scheduler:not([view-type=day]) .smart-scheduler-view-header-cell-feedback,smart-scheduler:not([view-type=day]):not([view-type=agenda]) .smart-scheduler-view-header-vertical .smart-scheduler-cell,smart-scheduler:not([view-type=day]):not([view-type^=timeline]) .smart-scheduler-view-label-container:empty{border-right:var(--smart-border-width) solid var(--smart-border)}smart-scheduler[view-type]:not([view-type=day]) .smart-scheduler-view-all-day-label,smart-scheduler[view-type]:not([view-type=day]):not([view-type=agenda]) .smart-scheduler-time-zone:last-of-type,smart-scheduler[view-type^=timeline] .smart-scheduler-time-zone,smart-scheduler[view-type^=timeline] .smart-scheduler-view[show-vertical-header][show-group-header=horizontal] .smart-scheduler-view-details-label{border-right:var(--smart-scheduler-view-line-size) solid var(--smart-scheduler-view-vertical-line-color)}smart-scheduler:not([view-type=month]) .smart-scheduler-view[show-group-header=vertical] .smart-scheduler-view-label-container:before{content:"";width:var(--smart-scheduler-timeline-header-vertical-group-size);height:100%;display:flex}smart-scheduler[view-type=day] .smart-scheduler-view[show-group-header=horizontal] .smart-scheduler-current-time-indicator:not(:first-of-type)::before,smart-scheduler[view-type^=timeline] .smart-scheduler-view[show-group-header=vertical] .smart-scheduler-current-time-indicator:not(:first-of-type)::before{content:none}smart-scheduler:not([view-type=agenda])[group-by-date] .smart-scheduler-view[show-group-header=vertical] .smart-scheduler-view-header-vertical .smart-scheduler-view-time .smart-scheduler-cell:not([group-separator])>div,smart-scheduler[view-type=timelineWeek] .smart-scheduler-view[show-group-header=vertical] .smart-scheduler-view-details-label,smart-scheduler[view-type^=timeline] .smart-scheduler-view-all-day{display:none}smart-scheduler:not([view-type=month]) .smart-scheduler-view[show-group-header=vertical] .smart-scheduler-view-all-day-label-container{margin-left:var(--smart-scheduler-timeline-header-vertical-group-size)}smart-scheduler:not([view-type=agenda]) .smart-scheduler-view-header-vertical-content .smart-scheduler-cell:not(:first-of-type)>div{transform:translateY(calc(-50% - var(--smart-scheduler-timeline-header-cell-padding)))}smart-scheduler:not([view-type=agenda]) .smart-scheduler-event[status] .smart-scheduler-event-content{padding-left:calc(var(--smart-scheduler-status-size) + var(--smart-scheduler-status-padding));border-top-left-radius:5px;border-bottom-left-radius:5px}smart-scheduler:not([view-type=agenda]) .smart-scheduler-cells-container .smart-scheduler-cell:not(.scale):hover,smart-scheduler:not([view-type=agenda]) .smart-scheduler-view-all-day .smart-scheduler-cell:hover{background:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover)}smart-scheduler[view-type^=timeline]{--smart-scheduler-event-size:var(--smart-scheduler-event-size-timeline)}smart-scheduler[view-type^=timeline] .smart-scheduler-view-label-container{flex-direction:column}smart-scheduler[view-type^=timeline] .smart-scheduler-cells .smart-scheduler-cell>div{text-overflow:ellipsis;overflow:hidden}smart-scheduler[view-type=agenda] .smart-scheduler-cells-container .smart-scheduler-cell-container,smart-scheduler[view-type^=timeline][group-by-date] .smart-scheduler-view-header-horizontal-content .smart-scheduler-cell{overflow:initial}smart-scheduler[view-type^=timeline] .smart-scheduler-time-zone{height:var(--smart-scheduler-timeline-header-horizontal-cells-size)}smart-scheduler[view-type^=timeline] .smart-scheduler-view:not([show-vertical-header]){--smart-scheduler-timeline-header-vertical-cells-size:0}smart-scheduler[view-type^=timeline] .smart-scheduler-view[show-group-header=vertical] .smart-scheduler-view-label-container{border-right:var(--smart-border-width) solid var(--smart-border)}smart-scheduler[view-type^=timeline] .smart-scheduler-view[show-group-header=vertical] .smart-scheduler-view-header-vertical{grid-template-columns:auto 0}smart-scheduler[view-type^=timeline] .smart-scheduler-view[show-group-header=vertical] .smart-scheduler-view-header-horizontal .smart-scheduler-view-time-container{grid-template-columns:var(--smart-scheduler-timeline-header-vertical-group-size) minmax(0,1fr)}smart-scheduler[view-type=month] .smart-scheduler-content,smart-scheduler[view-type=month] .smart-scheduler-scrollable-container{grid-template-columns:100%}smart-scheduler[view-type^=timeline] .smart-scheduler-time-zone-container{height:auto;flex-direction:column}smart-scheduler[view-type^=timeline] .smart-scheduler-view-time{flex-direction:column}smart-scheduler[view-type^=timeline] .smart-scheduler-event{padding:var(--smart-scheduler-event-padding-timeline);height:var(--smart-scheduler-event-size)}smart-scheduler[view-type=month]:not([event-render-mode=classic]) .smart-scheduler-event,smart-scheduler[view-type^=timeline]:not([event-render-mode=classic]) .smart-scheduler-event{padding-bottom:0}smart-scheduler[view-type^=timeline] .smart-scheduler-event:after{top:calc(50% - var(--smart-scheduler-event-resize-indicator-size)/ 4);left:calc(100% - var(--smart-scheduler-event-resize-indicator-size))}smart-scheduler[view-type^=timeline] .smart-scheduler-event:before{top:calc(50% - var(--smart-scheduler-event-resize-indicator-size)/ 4);left:0}smart-scheduler[view-type^=timeline] .smart-scheduler-cells-container .smart-scheduler-cell.scale:not(:last-of-type){border-right:var(--smart-border-width) solid rgba(var(--smart-border-rgb),.5)}smart-scheduler[view-type^=timeline] .smart-scheduler-cells-container .smart-scheduler-cell-container{flex-direction:row}smart-scheduler[view-type^=timeline] .smart-scheduler-cells-container .smart-scheduler-cell-container:not(:last-of-type){border-right:var(--smart-scheduler-view-line-size) solid var(--smart-scheduler-view-vertical-line-color)}smart-scheduler[view-type^=timeline] .smart-scheduler-current-time-indicator:before{left:calc(-1 * var(--smart-scheduler-current-time-indicator-arrow-size) + var(--smart-scheduler-current-time-indicator-size)/ 2);border-right:var(--smart-scheduler-current-time-indicator-arrow-size) solid transparent;border-left:var(--smart-scheduler-current-time-indicator-arrow-size) solid transparent;border-top:var(--smart-scheduler-current-time-indicator-arrow-size) solid var(--smart-scheduler-current-time-indicator-background)}smart-scheduler[view-type=timelineWeek] .smart-scheduler-view[show-vertical-header] .smart-scheduler-view-details-label{border-right:var(--smart-border-width) solid var(--smart-border)}smart-scheduler[view-type=day] .smart-scheduler-cells-container .smart-scheduler-cell:not(.scale):not(:last-of-type),smart-scheduler[view-type=day] .smart-scheduler-view-header-horizontal .smart-scheduler-cell,smart-scheduler[view-type=week] .smart-scheduler-cells-container .smart-scheduler-cell:not(.scale):not(:last-of-type),smart-scheduler[view-type=week] .smart-scheduler-view-header-horizontal .smart-scheduler-cell{border-right:var(--smart-scheduler-day-week-view-vertical-line-size) solid var(--smart-scheduler-day-week-view-vertical-line-color)}smart-scheduler[view-type=timelineWeek] .smart-scheduler-view-label-container{display:flex;flex-direction:column}smart-scheduler[view-type=agenda] .smart-scheduler-view-header-horizontal .smart-scheduler-view-all-day,smart-scheduler[view-type=day] .smart-scheduler-view-header-horizontal .smart-scheduler-view-time-container,smart-scheduler[view-type=month] .smart-scheduler-view-header-horizontal .smart-scheduler-view-all-day,smart-scheduler[view-type=month] .smart-scheduler-view-header-vertical-content,smart-scheduler[view-type=month] .smart-scheduler-view:not([show-group-header=vertical]) .smart-scheduler-view-header-vertical,smart-scheduler[view-type=month] .smart-scheduler-view:not([show-group-header=vertical]) .smart-scheduler-view-label-container,smart-scheduler[view-type=timelineWeek] .smart-scheduler-view-details:empty{display:none}smart-scheduler[view-type=timelineWeek] .smart-scheduler-view-details-label{height:var(--smart-scheduler-timeline-header-horizontal-details-size);width:100%}smart-scheduler[view-type=day] .smart-scheduler-cells-container .smart-scheduler-cell-container:not(:last-of-type){border-bottom:var(--smart-scheduler-day-week-view-hour-size) solid var(--smart-scheduler-day-week-view-hour-color)}smart-scheduler[view-type=day] .smart-scheduler-view-header-horizontal .smart-scheduler-view-groups-label-container{border-bottom:var(--smart-border-width) solid var(--smart-border)}smart-scheduler[view-type=week] .smart-scheduler-cells-container .smart-scheduler-cell-container:not(:last-of-type){border-bottom:var(--smart-scheduler-day-week-view-hour-size) solid var(--smart-scheduler-day-week-view-hour-color)}smart-scheduler[view-type=month] .smart-scheduler-event{height:var(--smart-scheduler-event-size)}smart-scheduler[view-type=month] .smart-scheduler-event:after{top:calc(50% - var(--smart-scheduler-event-resize-indicator-size)/ 4);left:calc(100% - var(--smart-scheduler-event-resize-indicator-size))}smart-scheduler[view-type=month] .smart-scheduler-event:before{top:calc(50% - var(--smart-scheduler-event-resize-indicator-size)/ 4);left:0}smart-scheduler[view-type=month] .smart-scheduler-cells-container .smart-scheduler-cell:not(.scale){justify-content:flex-end;align-items:flex-start}smart-scheduler[view-type=month] .smart-scheduler-cells-container .smart-scheduler-cell:not(.scale)[today]>div:not([class]){border-radius:50%;background:var(--smart-primary);color:var(--smart-primary-color);box-shadow:0 0 0 2px var(--smart-primary);width:calc(var(--smart-scheduler-month-view-number-size)/ 1.5);height:calc(var(--smart-scheduler-month-view-number-size)/ 1.5)}smart-scheduler[view-type=month] .smart-scheduler-view[show-group-header=vertical] .smart-scheduler-view-header-vertical{grid-template-columns:auto 0}smart-scheduler[view-type=month] .smart-scheduler-view[show-group-header=vertical] .smart-scheduler-view-header-horizontal .smart-scheduler-view-time-container{grid-template-columns:var(--smart-scheduler-timeline-header-vertical-group-size) minmax(0,1fr)}smart-scheduler[view-type=month] .smart-scheduler-view:not([mobile]) .smart-scheduler-event[collector]{padding-right:calc(var(--smart-scheduler-month-view-number-size) + 5px)}smart-scheduler[view-type=month] .smart-scheduler-view:not([mobile]) .smart-scheduler-event[collector][first-month-day]{padding-right:calc(var(--smart-scheduler-month-view-number-size) + 25px)}smart-scheduler[view-type=month] .smart-scheduler-view-all-day,smart-scheduler[view-type=month] .smart-scheduler-view-header-horizontal .smart-scheduler-view-time-container{grid-template-columns:minmax(0,1fr)}smart-scheduler[view-type=agenda]{--smart-scheduler-timeline-header-vertical-label-padding:0 0 0 25%;--smart-scheduler-event-time-font-weight:600}smart-scheduler[view-type=agenda] .smart-scheduler-cells-container .smart-scheduler-cell-container:not([separator]){border:none}smart-scheduler[view-type=agenda] .smart-scheduler-view-header-vertical .smart-scheduler-cell{justify-content:flex-start}smart-scheduler[view-type=agenda] .smart-scheduler-view-header-vertical .smart-scheduler-cell>div{text-align:left}smart-scheduler[view-type=agenda] .smart-scheduler-view-header-horizontal .smart-scheduler-view-time-container{height:0;border:none}smart-scheduler[view-type=agenda] .smart-scheduler-view-header-horizontal .smart-scheduler-view-groups-label-container{border-bottom:var(--smart-border-width) solid var(--smart-border)}smart-scheduler[view-type=agenda] .smart-scheduler-cells-container .smart-scheduler-cell-container[separator]:last-of-type>.smart-scheduler-cell:after,smart-scheduler[view-type=agenda] .smart-scheduler-view-header-vertical .smart-scheduler-cell[separator]:last-of-type>.smart-scheduler-cell:after{border-bottom:var(--smart-border-width) solid var(--smart-border);content:"";height:100%;width:100%;position:absolute;top:var(--smart-border-width);left:0;box-sizing:border-box;pointer-events:none}smart-scheduler[view-type=agenda] .smart-scheduler-cells-container .smart-scheduler-cell-container[separator]:not(:last-of-type),smart-scheduler[view-type=agenda] .smart-scheduler-view-header-vertical .smart-scheduler-cell[separator]:not(:last-of-type){border-bottom:var(--smart-border-width) solid var(--smart-border)}smart-scheduler[view-type=agenda] .smart-scheduler-cell.smart-scheduler-view-header-cell-feedback{padding:calc(2 * var(--smart-scheduler-timeline-header-cell-padding))}smart-scheduler[view-type=agenda] .smart-scheduler-view.no-agenda:after{content:attr(agenda-placeholder);width:100%;height:100%;position:absolute;display:flex;align-items:center;justify-content:center;pointer-events:none;text-overflow:ellipsis;overflow:hidden}smart-scheduler[disable-resize] .smart-scheduler-event:not([collector]):after,smart-scheduler[disable-resize] .smart-scheduler-event:not([collector]):before,smart-scheduler[view-type=agenda] .smart-scheduler-event:not([collector]):not([disable-resize]):after,smart-scheduler[view-type=agenda] .smart-scheduler-event:not([collector]):not([disable-resize]):before,smart-scheduler[view-type=agenda] .smart-scheduler-event[status] .smart-scheduler-event-content::before{content:initial}smart-scheduler[group-by-date] .smart-scheduler-view[show-group-header=horizontal] .smart-scheduler-view-header-horizontal .smart-scheduler-view-time .smart-scheduler-cell:not([show-label])>div,smart-scheduler[hide-all-day] .smart-scheduler-view-all-day,smart-scheduler[hide-today-button] .smart-scheduler-nav[today]{display:none}smart-scheduler[view-type=agenda] .smart-scheduler-event{padding:var(--smart-scheduler-event-padding-agenda)}.smart-notification-panel[right-to-left] .smart-notification-item .smart-input[interval],.smart-notification-panel[right-to-left] .smart-notification-item .smart-input[type],smart-scheduler[right-to-left]:not([disable-date-menu]) .smart-scheduler-nav[current] button,smart-scheduler[right-to-left]:not([disable-view-menu]) .smart-scheduler-view-items-button button{padding-left:var(--smart-editor-addon-width)}smart-scheduler[view-type=agenda] .smart-scheduler-event .smart-scheduler-event-time{opacity:var(--smart-scheduler-event-time-opacity-agenda);font-size:var(--smart-scheduler-event-time-font-size-agenda);font-weight:var(--smart-scheduler-event-time-font-weight-agenda)}smart-scheduler[view-type=agenda]:not([event-render-mode=classic]) .smart-scheduler-event{padding-bottom:0}smart-scheduler:not([filterable]) .smart-scheduler-legend{opacity:.55;cursor:default;pointer-events:none}smart-scheduler[filterable] .smart-scheduler-legend .smart-scheduler-legend-res-item{cursor:pointer;-webkit-user-select:none;user-select:none}smart-scheduler[filterable] .smart-scheduler-legend .smart-scheduler-legend-res-item:hover:before{border-color:var(--smart-ui-state-border-hover)}smart-scheduler[filterable] .smart-scheduler-legend .smart-scheduler-legend-res-item:focus:before{border-color:var(--smart-primary)}smart-scheduler[group-by-date] .smart-scheduler-view[show-group-header=horizontal] .smart-scheduler-view-header-horizontal .smart-scheduler-view-time .smart-scheduler-cell:not([group-separator]),smart-scheduler[group-by-date] .smart-scheduler-view[show-group-header=vertical] .smart-scheduler-view-header-vertical .smart-scheduler-view-time .smart-scheduler-cell{border-right:initial}smart-scheduler[filterable] .smart-scheduler-legend .smart-scheduler-legend-res-item[unselected]:before{background:0 0}smart-scheduler[filterable] .smart-scheduler-legend .smart-scheduler-legend-res-item[disabled]{opacity:.55;cursor:default;pointer-events:none}smart-scheduler[group-by-date] .smart-scheduler-view[show-group-header=horizontal] .smart-scheduler-view-header-horizontal .smart-scheduler-view-time-container{border-bottom:initial}smart-scheduler[group-by-date] .smart-scheduler-view[show-group-header=horizontal] .smart-scheduler-cell[show-label]{justify-content:flex-start}smart-scheduler[group-by-date] .smart-scheduler-view[show-group-header=horizontal] .smart-scheduler-cell[show-label]>div{transform:translateX(calc(-50% - var(--smart-scheduler-timeline-header-cell-padding)))}smart-scheduler[group-by-date] .smart-scheduler-view[show-group-header=horizontal] .smart-scheduler-cell[show-label=offset]>div{margin-left:var(--smart-scheduler-timeline-group-header-offset)}smart-scheduler[group-by-date] .smart-scheduler-view[show-group-header=vertical] .smart-scheduler-cell[show-label]>div{transform:translateY(calc(-50% - var(--smart-scheduler-timeline-header-cell-padding)))}smart-scheduler[group-by-date] .smart-scheduler-view[show-group-header=vertical] .smart-scheduler-cell[show-label=offset]>div{margin-top:var(--smart-scheduler-timeline-group-header-offset)}smart-scheduler[group-by-date] .smart-scheduler-view[show-group-header=vertical] .smart-scheduler-groups-container .smart-scheduler-cell{align-items:center}smart-scheduler[group-by-date] .smart-scheduler-view-header-horizontal .smart-scheduler-groups-container,smart-scheduler[group-by-date]:not([view-type^=timeline]) .smart-scheduler-view-header-vertical .smart-scheduler-groups-container{order:1}smart-scheduler[group-by-date] .smart-scheduler-view-all-day{order:2}smart-scheduler[group-by-date] .smart-scheduler-view-header-horizontal .smart-scheduler-view-groups-label-container,smart-scheduler[group-by-date]:not([view-type=agenda]) .smart-scheduler-view[show-group-header=vertical] .smart-scheduler-groups-container .smart-scheduler-cell:not([group-separator]){border-bottom:var(--smart-border-width) solid var(--smart-border)}smart-scheduler[current-time-indicator] .smart-scheduler-view-header-horizontal .smart-scheduler-cell[current]{color:var(--smart-scheduler-current-time-indicator-background);border-bottom:var(--smart-scheduler-current-time-indicator-header-size) solid var(--smart-scheduler-current-time-indicator-background)}smart-scheduler[current-time-indicator] .smart-scheduler-view-header-vertical .smart-scheduler-cell[current]{color:var(--smart-scheduler-current-time-indicator-background);border-right:var(--smart-scheduler-current-time-indicator-header-size) solid var(--smart-scheduler-current-time-indicator-background)}smart-scheduler[current-time-indicator] .smart-scheduler-current-time-indicator:before{content:"";position:absolute}smart-scheduler[disable-date-menu] .smart-scheduler-nav[current]::after,smart-scheduler[disable-view-menu] .smart-scheduler-view-items-button::after{content:initial}smart-scheduler[resized]{touch-action:none}smart-scheduler[resized] .smart-scheduler-cell[restricted]:hover{cursor:no-drop}smart-scheduler[resized] .smart-scheduler-event{pointer-events:none}smart-scheduler[dragged]{touch-action:none}smart-scheduler[dragged] .smart-scheduler-events-container,smart-scheduler[modal] .smart-scheduler-footer,smart-scheduler[modal] .smart-scheduler-header,smart-scheduler[modal] .smart-scheduler-view-container{pointer-events:none}smart-scheduler[disable-date-menu] .smart-scheduler-nav[current]{cursor:initial}smart-scheduler[disable-date-menu] .smart-scheduler-nav[current] .smart-ripple{visibility:hidden}smart-scheduler[disable-date-menu] .smart-scheduler-nav[current][focus],smart-scheduler[disable-date-menu] .smart-scheduler-nav[current][hover],smart-scheduler[disable-date-menu] .smart-scheduler-view-items-button[focus],smart-scheduler[disable-date-menu] .smart-scheduler-view-items-button[hover]{background:0 0;color:var(--smart-background-color)}smart-scheduler[disable-view-menu] .smart-scheduler-view-items-button{border:initial;cursor:initial}smart-scheduler[disable-view-menu] .smart-scheduler-view-items-button .smart-ripple{visibility:hidden}smart-scheduler[time-ruler-ticks][view-type=day] .smart-scheduler-view-header-vertical .smart-scheduler-cells:last-of-type .smart-scheduler-cell:not(:last-of-type):after,smart-scheduler[time-ruler-ticks][view-type=week] .smart-scheduler-view-header-vertical .smart-scheduler-cells:last-of-type .smart-scheduler-cell:not(:last-of-type):after{content:"";position:absolute;bottom:0;right:0;width:var(--smart-scheduler-time-ruler-tick-size);height:var(--smart-scheduler-day-week-view-hour-size);background:var(--smart-scheduler-day-week-view-hour-color)}smart-scheduler[legend-location=header]{--smart-scheduler-header-height:auto}smart-scheduler[legend-location=header] .smart-scheduler-header{grid-template-areas:"date view" "legend legend"}smart-scheduler[legend-position=far] .smart-scheduler-legend{justify-content:flex-end}smart-scheduler[scroll-buttons-position=both] .smart-scheduler-date-nav .smart-scheduler-nav[prev]{order:1}smart-scheduler[scroll-buttons-position=both] .smart-scheduler-date-nav .smart-scheduler-nav[current]{order:2}smart-scheduler[scroll-buttons-position=both] .smart-scheduler-date-nav .smart-scheduler-nav[next]{order:3}smart-scheduler[scroll-buttons-position=both][header-navigation-style=raised] .smart-scheduler-date-nav .smart-scheduler-nav[current]{border-radius:initial}smart-scheduler[scroll-buttons-position=both][header-navigation-style=raised] .smart-scheduler-date-nav .smart-scheduler-nav[next]{border-top-right-radius:var(--smart-item-border-top-right-radius);border-bottom-right-radius:var(--smart-item-border-bottom-right-radius);border-top-left-radius:initial;border-bottom-left-radius:initial;border-left:initial;border-right:var(--smart-border-width) solid var(--smart-border)}smart-scheduler[scroll-buttons-position=far] .smart-scheduler-date-nav .smart-scheduler-nav[current]{order:1}smart-scheduler[scroll-buttons-position=far] .smart-scheduler-date-nav .smart-scheduler-nav[next]{order:3}smart-scheduler[scroll-buttons-position=far] .smart-scheduler-date-nav .smart-scheduler-nav[prev]{order:2}smart-scheduler[scroll-buttons-position=far][header-navigation-style=raised] .smart-scheduler-date-nav .smart-scheduler-nav[current]{border-top-left-radius:var(--smart-item-border-top-left-radius);border-bottom-left-radius:var(--smart-item-border-bottom-left-radius);border-top-right-radius:initial;border-bottom-right-radius:initial}smart-scheduler[scroll-buttons-position=far][header-navigation-style=raised] .smart-scheduler-date-nav .smart-scheduler-nav[next],smart-scheduler[scroll-buttons-position=far][header-navigation-style=raised] .smart-scheduler-date-nav .smart-scheduler-nav[prev]{border-top-left-radius:initial;border-bottom-left-radius:initial;border-left:initial;border-right:var(--smart-border-width) solid var(--smart-border)}smart-scheduler[scroll-buttons-position=far][header-navigation-style=raised] .smart-scheduler-date-nav .smart-scheduler-nav[next]{border-top-right-radius:var(--smart-item-border-top-right-radius);border-bottom-right-radius:var(--smart-item-border-bottom-right-radius)}smart-scheduler[scroll-buttons-position=near] .smart-scheduler-date-nav .smart-scheduler-nav[prev]{order:1}smart-scheduler[scroll-buttons-position=near] .smart-scheduler-date-nav .smart-scheduler-nav[next]{order:2}smart-scheduler[scroll-buttons-position=near][header-navigation-style=raised] .smart-scheduler-date-nav .smart-scheduler-nav[current]{order:3}smart-scheduler[scroll-buttons-position=near][header-navigation-style=raised] .smart-scheduler-date-nav .smart-scheduler-nav[next]{border-top-right-radius:initial;border-bottom-right-radius:initial;border-right:initial;border-left:var(--smart-border-width) solid var(--smart-border)}smart-scheduler:not([header-navigation-style=raised]) .smart-scheduler-date-nav .smart-scheduler-nav[next],smart-scheduler:not([header-navigation-style=raised]) .smart-scheduler-date-nav .smart-scheduler-nav[prev]{border-radius:50%}smart-scheduler:not([header-navigation-style=raised]) .smart-scheduler-date-nav .smart-scheduler-nav[current],smart-scheduler:not([header-navigation-style=raised]) .smart-scheduler-date-nav .smart-scheduler-nav[next],smart-scheduler:not([header-navigation-style=raised]) .smart-scheduler-date-nav .smart-scheduler-nav[prev]{border:initial}smart-scheduler:not([header-navigation-style=raised]) .smart-scheduler-date-nav .smart-scheduler-nav[current]{margin-left:10px}smart-scheduler:not([header-navigation-style=raised]) .smart-scheduler-date-nav .smart-scheduler-nav[current]:not([focus]),smart-scheduler:not([header-navigation-style=raised]) .smart-scheduler-date-nav .smart-scheduler-nav[next]:not([active]):not([focus]),smart-scheduler:not([header-navigation-style=raised]) .smart-scheduler-date-nav .smart-scheduler-nav[prev]:not([active]):not([focus]),smart-scheduler:not([header-navigation-style=raised]) .smart-scheduler-nav[today]:not([focus]),smart-scheduler:not([header-navigation-style=raised]) .smart-scheduler-view-items-button:not([focus]){background:0 0}smart-scheduler[header-date-position=far] .smart-scheduler-header{grid-template-columns:1fr auto;grid-template-areas:"view date"}smart-scheduler[header-view-position=near] .smart-scheduler-view-nav{justify-content:flex-start}smart-scheduler[header-view-position=near] .smart-scheduler-view-items-button{order:2}smart-scheduler[header-view-position=near] .smart-scheduler-items-container .smart-scheduler-item:first-of-type,smart-scheduler[header-view-position=near] .smart-scheduler-items-container .smart-scheduler-item:first-of-type[selected]{border-left:none}smart-scheduler[header-view-position=near] .smart-scheduler-items-container .smart-scheduler-item[selected]{border-left:var(--smart-border-width) solid var(--smart-border);border-right:var(--smart-border-width) solid var(--smart-border)}smart-scheduler[header-navigation-style=raised] .smart-scheduler-date-nav .smart-scheduler-nav[prev]{border-top-left-radius:var(--smart-item-border-top-left-radius);border-bottom-left-radius:var(--smart-item-border-bottom-left-radius);border-top-right-radius:initial;border-bottom-right-radius:initial;border-right:initial}smart-scheduler[header-navigation-style=raised] .smart-scheduler-date-nav .smart-scheduler-nav[next]{border-top-left-radius:initial;border-bottom-left-radius:initial;border-top-right-radius:initial;border-bottom-right-radius:initial;border-right:initial;border-left:var(--smart-border-width) solid var(--smart-border)}smart-scheduler[header-navigation-style=raised] .smart-scheduler-date-nav .smart-scheduler-nav[current]{border-radius:initial;border-top-right-radius:var(--smart-item-border-top-right-radius);border-bottom-right-radius:var(--smart-item-border-bottom-right-radius)}smart-scheduler[header-navigation-style=raised] .smart-scheduler-nav[today],smart-scheduler[header-navigation-style=raised] .smart-scheduler-view-items-button{background:var(--smart-background)}smart-scheduler[view-selector-type=tabs] .smart-scheduler-view-items-button{position:absolute}smart-scheduler[view-selector-type=auto] .smart-scheduler-header,smart-scheduler[view-selector-type=tabs] .smart-scheduler-header{grid-template-areas:"date . view"}smart-scheduler:not([right-to-left]) .smart-scheduler-view-header-horizontal .smart-scheduler-cell:last-of-type{border-right:none}smart-scheduler[right-to-left][current-time-indicator] .smart-scheduler-view-header-horizontal .smart-scheduler-cell[current]{color:var(--smart-scheduler-current-time-indicator-background);border-bottom:var(--smart-scheduler-current-time-indicator-header-size) solid var(--smart-scheduler-current-time-indicator-background)}smart-scheduler[right-to-left][current-time-indicator] .smart-scheduler-view-header-vertical .smart-scheduler-cell[current]{color:var(--smart-scheduler-current-time-indicator-background);border-left:var(--smart-scheduler-current-time-indicator-header-size) solid var(--smart-scheduler-current-time-indicator-background);border-right:none}smart-scheduler[right-to-left][current-time-indicator] .smart-scheduler-current-time-indicator:before{left:calc(100% - 6px);transform:rotate(-180deg)}smart-scheduler[right-to-left] .smart-scheduler-header,smart-scheduler[right-to-left] .smart-scheduler-view{direction:rtl}smart-scheduler[right-to-left] .smart-scheduler-date-nav .smart-scheduler-nav[today]{order:1}smart-scheduler[right-to-left] .smart-scheduler-date-nav .smart-scheduler-nav[prev]{order:2}smart-scheduler[right-to-left] .smart-scheduler-date-nav .smart-scheduler-nav[prev]:after{content:var(--smart-icon-arrow-right)}smart-scheduler[right-to-left] .smart-scheduler-date-nav .smart-scheduler-nav[next]{order:3}smart-scheduler[right-to-left] .smart-scheduler-date-nav .smart-scheduler-nav[next]:after{content:var(--smart-icon-arrow-left)}smart-scheduler[right-to-left] .smart-scheduler-date-nav .smart-scheduler-nav[current]{order:4}smart-scheduler[right-to-left].smart-container.vscroll .smart-scheduler-view,smart-scheduler[right-to-left]>.smart-container.vscroll .smart-scheduler-view{margin-left:var(--smart-scroll-bar-size)}smart-scheduler[right-to-left].smart-container.vscroll .smart-scheduler-view-scroll-bar:not([orientation=vertical]),smart-scheduler[right-to-left]>.smart-container.vscroll .smart-scheduler-view-scroll-bar:not([orientation=vertical]){left:var(--smart-scroll-bar-size)}smart-scheduler[right-to-left] .smart-scheduler-view-scroll-bar[orientation=vertical]{right:initial;left:0}smart-scheduler[right-to-left] .smart-scheduler-view-scroll-bar[orientation=vertical]:before{border-left:none;border-right:var(--smart-border-width) solid var(--smart-border)}smart-scheduler[right-to-left] .smart-scheduler-view-scroll-bar[orientation=vertical]:after{right:100%;left:initial;left:calc(-1 * var(--smart-scroll-bar-size))}smart-scheduler[right-to-left][view-type=day] .smart-scheduler-cells-container .smart-scheduler-cell:not(.scale):not(:last-of-type),smart-scheduler[right-to-left][view-type=week] .smart-scheduler-cells-container .smart-scheduler-cell:not(.scale):not(:last-of-type){border-right:initial;border-left:var(--smart-scheduler-day-week-view-vertical-line-size) solid var(--smart-scheduler-day-week-view-vertical-line-color)}smart-scheduler[right-to-left]:not([view-type^=timeline]) .smart-scheduler-cells-container .smart-scheduler-cell:not(.scale):not(:last-of-type),smart-scheduler[right-to-left][view-type]:not([view-type=day]) .smart-scheduler-view-all-day-label,smart-scheduler[right-to-left][view-type]:not([view-type=day]):not([view-type=agenda]) .smart-scheduler-time-zone:last-of-type,smart-scheduler[right-to-left][view-type^=timeline] .smart-scheduler-time-zone,smart-scheduler[right-to-left][view-type^=timeline] .smart-scheduler-view[show-vertical-header][show-group-header=horizontal] .smart-scheduler-view-details-label{border-right:initial;border-left:var(--smart-scheduler-view-line-size) solid var(--smart-scheduler-view-vertical-line-color)}smart-scheduler[right-to-left]:not([view-type=day]) .smart-scheduler-view-header-cell-feedback,smart-scheduler[right-to-left]:not([view-type=day]):not([view-type=agenda]) .smart-scheduler-view-header-vertical .smart-scheduler-cell,smart-scheduler[right-to-left]:not([view-type=day]):not([view-type^=timeline]) .smart-scheduler-view-label-container:empty,smart-scheduler[right-to-left][view-type^=timeline] .smart-scheduler-view[show-group-header=vertical] .smart-scheduler-view-label-container{border-right:initial;border-left:var(--smart-border-width) solid var(--smart-border)}smart-scheduler[right-to-left] .smart-scheduler-view-all-day .smart-scheduler-cell[all-day]:not(:last-of-type),smart-scheduler[right-to-left] .smart-scheduler-view-details .smart-scheduler-cell:not(:last-of-type),smart-scheduler[right-to-left] .smart-scheduler-view-header-horizontal .smart-scheduler-cell:not(:last-of-type){border-right:initial;border-left:var(--smart-scheduler-day-week-view-vertical-line-size) solid var(--smart-scheduler-day-week-view-vertical-line-color)}smart-scheduler[right-to-left] .smart-scheduler-view-all-day .smart-scheduler-cell[all-day]:last-of-type,smart-scheduler[right-to-left] .smart-scheduler-view-header-horizontal .smart-scheduler-cell:last-of-type{border-right:initial}smart-scheduler[right-to-left]:not([view-type=day]) .smart-scheduler-view[show-group-header=vertical] .smart-scheduler-view-header-groups-container .smart-scheduler-cell-container:not(:last-of-type)>.smart-scheduler-cell,smart-scheduler[right-to-left][view-type^=timeline] .smart-scheduler-cells-container .smart-scheduler-cell-container:not(:last-of-type){border-right:initial;border-left:var(--smart-scheduler-view-line-size) solid var(--smart-scheduler-view-vertical-line-color)}smart-scheduler[right-to-left] .smart-scheduler-view[show-group-header=horizontal] .smart-scheduler-cell-container[group-separator]:not(:last-of-type),smart-scheduler[right-to-left] .smart-scheduler-view[show-group-header=horizontal] .smart-scheduler-cell:not(.scale)[group-separator]:not(:last-of-type),smart-scheduler[right-to-left] .smart-scheduler-view[show-group-header=horizontal] .smart-scheduler-cell[group-separator]:not(:last-of-type){border-right-color:initial;border-right-width:initial;border-left-color:var(--smart-scheduler-timeline-group-separator-background);border-left-width:var(--smart-scheduler-timeline-group-separator-size)}smart-scheduler[right-to-left][group-by-date] .smart-scheduler-view[show-group-header=horizontal] .smart-scheduler-view-header-horizontal .smart-scheduler-view-time .smart-scheduler-cell:not([group-separator]){border-left:initial}smart-scheduler[right-to-left][group-by-date] .smart-scheduler-view[show-group-header=horizontal] .smart-scheduler-view-header-horizontal .smart-scheduler-view-time .smart-scheduler-cell[show-label=offset]>div{margin-left:initial;margin-right:var(--smart-scheduler-timeline-group-header-offset)}smart-scheduler[right-to-left][group-by-date] .smart-scheduler-view[show-group-header=horizontal] .smart-scheduler-view-header-horizontal .smart-scheduler-view-time .smart-scheduler-cell[show-label]>div{transform:translateX(calc(50% + var(--smart-scheduler-timeline-header-cell-padding)))}smart-scheduler[right-to-left] .smart-scheduler-nav[current]:after,smart-scheduler[right-to-left] .smart-scheduler-view-items-button:after{left:0;right:initial}smart-scheduler[right-to-left][view-type=agenda]{--smart-scheduler-timeline-header-vertical-label-padding:0 25% 0 0}smart-scheduler[right-to-left][view-type=agenda] .smart-scheduler-view-header-vertical .smart-scheduler-cell>div{text-align:right}smart-scheduler[right-to-left][view-type=month] .smart-scheduler-view:not([mobile]) .smart-scheduler-event[collector]{padding-right:initial;padding-left:calc(var(--smart-scheduler-month-view-number-size) + 5px)}smart-scheduler[right-to-left][view-type=month] .smart-scheduler-view:not([mobile]) .smart-scheduler-event[collector][first-month-day]{padding-left:calc(var(--smart-scheduler-month-view-number-size) + 25px)}smart-scheduler[right-to-left] .smart-toast-container-custom{right:initial;left:0}smart-scheduler[right-to-left]:not([view-type=agenda]) .smart-scheduler-event[status] .smart-scheduler-event-content{padding-left:initial;padding-right:calc(var(--smart-scheduler-status-size) + var(--smart-scheduler-status-padding));border-top-left-radius:initial;border-bottom-left-radius:initial;border-top-right-radius:5px;border-bottom-right-radius:5px}smart-scheduler[right-to-left]:not([view-type=month]) .smart-scheduler-view[show-group-header=vertical] .smart-scheduler-view-all-day-label-container{margin-left:initial;margin-right:var(--smart-scheduler-timeline-header-vertical-group-size)}smart-scheduler[right-to-left][header-navigation-style=raised] .smart-scheduler-date-nav .smart-scheduler-nav[current]{border-top-right-radius:initial;border-bottom-right-radius:initial;border-top-left-radius:var(--smart-item-border-top-right-radius);border-bottom-left-radius:var(--smart-item-border-bottom-right-radius)}smart-scheduler[right-to-left][header-navigation-style=raised] .smart-scheduler-date-nav .smart-scheduler-nav[prev]{border-top-left-radius:initial;border-bottom-left-radius:initial;border-left:initial}smart-scheduler[right-to-left][header-navigation-style=raised] .smart-scheduler-date-nav .smart-scheduler-nav[next]{border-top-right-radius:var(--smart-item-border-top-left-radius);border-bottom-right-radius:var(--smart-item-border-bottom-left-radius);border-right:var(--smart-border-width) solid var(--smart-border)}smart-scheduler[right-to-left] .smart-scheduler-nav[today]{margin-right:initial;margin-left:10px}smart-scheduler[right-to-left] .smart-scheduler-event[repeating] .smart-scheduler-event-content:after{right:initial;left:0}smart-scheduler[right-to-left][view-type=timelineWeek] .smart-scheduler-view[show-vertical-header] .smart-scheduler-view-details-label{border-right:initial;border-left:var(--smart-border-width) solid var(--smart-border)}smart-scheduler[right-to-left] .smart-scheduler-items-container .smart-scheduler-item:last-of-type{border-right:var(--smart-border-width) solid var(--smart-border);border-left:none}smart-scheduler[right-to-left] .smart-scheduler-legend{direction:rtl}@-moz-document url-prefix(){.smart-scheduler .smart-scheduler-view[mobile] .smart-scheduler-content:not(.hide-overlay):after{display:none}}.smart-scheduler-window{--smart-window-default-width:auto;--smart-window-default-height:auto;--smart-window-header-height:var(--smart-scheduler-window-header-height);--smart-window-footer-height:var(--smart-scheduler-window-footer-height);--smart-window-header-footer-padding:10px;--smart-window-header-background:transparent;--smart-window-footer-padding:10px;--smart-window-content-padding:20px;max-width:100vw;max-height:100vh}.smart-scheduler-window[mobile]{border-radius:initial}.smart-scheduler-window.smart-window.confirm .smart-scheduler-confirm-label{width:var(--smart-box-width)}.smart-scheduler-window.smart-window.confirm .smart-content-container>.smart-content{width:100%;padding:var(--smart-window-content-padding);justify-items:center;justify-items:safe center;grid-template-rows:auto minmax(auto,1fr);display:grid;justify-content:center;grid-template-columns:100%;grid-row-gap:initial}.smart-scheduler-window.smart-window .smart-scheduler-window-content-wrapper{width:100%;padding:var(--smart-window-content-padding);justify-items:center;justify-items:safe center;grid-template-rows:auto minmax(auto,1fr)}.smart-scheduler-window.smart-window .smart-scheduler-window-content-wrapper,.smart-scheduler-window.smart-window .smart-scheduler-window-main,.smart-scheduler-window.smart-window .smart-scheduler-window-repeat{display:grid;grid-row-gap:10px;justify-content:center;grid-template-columns:100%}.smart-scheduler-window.smart-window .smart-content-container>.smart-content{padding:initial;align-items:flex-start}.smart-scheduler-window.smart-window .smart-scheduler-window-main,.smart-scheduler-window.smart-window .smart-scheduler-window-repeat{width:var(--smart-box-width)}.smart-scheduler-window.smart-window[horizontal] .smart-scheduler-window-content-wrapper{grid-template-columns:repeat(2,auto);grid-column-gap:20px}.smart-scheduler-window.smart-window .smart-scheduler-window-repeat [multiple]{grid-template-columns:minmax(0,1fr)}.smart-scheduler-window.smart-window .smart-scheduler-window-repeat [multiple] .smart-scheduler-window-editor{grid-template-columns:auto auto minmax(0,1fr)}.smart-color-input-drop-down-menu.smart-scheduler-color-input .grid-samples-container,.smart-scheduler-window .smart-scheduler-window-editor[multiple]{grid-template-columns:repeat(2,minmax(0,1fr))}.smart-scheduler-window .smart-content-container,.smart-scheduler-window>.smart-container{max-height:inherit}.smart-scheduler-window [multiple] .smart-scheduler-window-editor{align-items:center;justify-content:flex-start}.smart-scheduler-window [multiple] .smart-scheduler-window-editor:nth-child(even),.smart-scheduler-window [multiple] .smart-scheduler-window-editor:nth-child(odd):not(:first-of-type):not(:last-of-type),.smart-scheduler-window [multiple] .smart-scheduler-window-editor[type=repeat]{justify-content:flex-end}.smart-scheduler-window .smart-content-container>.smart-footer{display:flex}@media not all and (min-resolution:0.001dpcm){.smart-scheduler-window .smart-content-container>.smart-footer{align-content:start}}.smart-scheduler-window .smart-content-container>.smart-footer smart-button{width:100%;height:100%;--smart-button-padding:0.2rem 16px}.smart-scheduler-window .smart-content-container>.smart-footer smart-button:not(:first-of-type){margin-inline-start:2%}.smart-scheduler-window .smart-content-container>.smart-footer .smart-icon{position:relative;height:100%;font-family:var(--smart-font-family-icon);font-size:18px;margin-right:2.5px}.smart-scheduler-window .smart-scheduler-window-button.ok .smart-icon::after{content:var(--smart-icon-check)}.smart-scheduler-window .smart-scheduler-window-button.cancel{grid-area:buttonCancel}.smart-scheduler-window .smart-scheduler-window-button.cancel .smart-icon::after{content:var(--smart-icon-cancel)}.smart-scheduler-window .smart-scheduler-window-button.delete .smart-icon::after{content:var(--smart-icon-delete)}.smart-scheduler-window .smart-scheduler-window-editor{display:grid;grid-row-gap:5px;grid-column-gap:10px}.smart-scheduler-window .smart-scheduler-window-editor[type=allDay],.smart-scheduler-window .smart-scheduler-window-editor[type=repeat]{grid-column-gap:initial}.smart-scheduler-window .smart-scheduler-window-editor[type=conference] label::before{content:var(--smart-icon-video-camera);font-family:var(--smart-font-family-icon);font-size:14px;margin-right:5px;position:relative;top:-3px}.smart-scheduler-window .smart-scheduler-window-editor[type=notifications] label::before{content:var(--smart-icon-bell);font-family:var(--smart-font-family-icon);font-size:14px;margin-right:5px}.smart-scheduler-window .smart-scheduler-window-editor[multiple] .smart-color-input[event-editor]{width:auto;--smart-border-radius:50%}.smart-scheduler-window .smart-scheduler-window-editor .smart-date-time-picker,.smart-scheduler-window .smart-scheduler-window-editor .smart-drop-down-list,.smart-scheduler-window .smart-scheduler-window-editor>.smart-input{width:100%}.smart-scheduler-window .smart-scheduler-window-editor .smart-switch-button{margin:auto 10px}.smart-scheduler-window .smart-scheduler-window-editor>b{text-align:center}.smart-scheduler-window .smart-scheduler-window-editor>.smart-number-input{width:100px}.smart-scheduler-window .smart-scheduler-window-editor input:not(.smart-input){height:var(--smart-editor-height)}.smart-scheduler-window .smart-scheduler-window-editor .smart-input[disabled]{opacity:.55;cursor:default;pointer-events:none;-webkit-user-select:none;user-select:none}.smart-scheduler-window .smart-scheduler-window-main [multiple] .smart-scheduler-window-editor:not([type^=date]):not([resource-type]){grid-template-columns:repeat(2,auto)}.smart-scheduler-window .smart-scheduler-window-repeat [multiple] .smart-scheduler-window-editor[type=repeatEnd]{grid-template-columns:initial}.smart-scheduler-tooltip{--smart-tooltip-arrow-color:var(--smart-background);--smart-tooltip-padding:4px}.smart-scheduler-tooltip.smart-tooltip .smart-tooltip-content{opacity:initial;background-color:var(--smart-background);color:var(--smart-color);border:none}.smart-scheduler-tooltip .smart-calendar{border:initial;border-radius:initial;direction:initial}.smart-scheduler-tooltip .smart-calendar .smart-calendar-header{border:var(--smart-border-width) solid var(--smart-border)}.smart-scheduler-tooltip .smart-scheduler-items-container{flex-direction:column;outline:0}.smart-scheduler-tooltip .smart-scheduler-items-container:focus .smart-scheduler-item[selected]{background-color:var(--smart-ui-state-focus);border-color:var(--smart-ui-state-border-focus);color:var(--smart-ui-state-color-focus)}.smart-scheduler-tooltip .smart-scheduler-item{width:100%;cursor:pointer;height:auto;position:relative;padding-right:calc(var(--smart-scheduler-shortcut-size) - 4px)}.smart-scheduler-tooltip .smart-scheduler-item:after{content:attr(shortcut-key);position:absolute;height:100%;width:var(--smart-scheduler-shortcut-size);display:flex;align-items:center;justify-content:center;box-sizing:border-box;top:0;right:0;overflow:hidden;white-space:nowrap;opacity:.5;margin:0 6px 0 10px}.smart-scheduler-tooltip .smart-scheduler-item:hover{color:var(--smart-ui-state-color-hover);background-color:var(--smart-ui-state-hover)}.smart-scheduler-tooltip .smart-scheduler-item[checkable]:after{content:"";opacity:initial;left:0;right:initial;margin:initial}.smart-scheduler-tooltip .smart-scheduler-item[checkable]>div{padding-left:var(--smart-scheduler-shortcut-size);padding-right:initial}.smart-scheduler-tooltip .smart-scheduler-item[checkable][checked]:after{content:var(--smart-icon-check);font-family:var(--smart-font-family-icon);font-size:var(--smart-font-size)}.smart-scheduler-tooltip .smart-scheduler-item[separator]{position:relative;margin-top:15px}.smart-scheduler-tooltip .smart-scheduler-item[separator]:before{content:"";display:flex;width:100%;border-bottom:var(--smart-border-width) solid var(--smart-border);margin:7px 0;position:absolute;left:0;bottom:100%}.smart-scheduler-tooltip .smart-scheduler-item>div{position:relative;align-items:center;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%;padding:10px var(--smart-scheduler-shortcut-size) 10px 12px;display:flex;flex-direction:row;justify-content:space-between;-webkit-user-select:none;user-select:none}.smart-scheduler-tooltip .smart-scheduler-event{display:grid;position:relative;width:100%!important;height:var(--smart-scheduler-event-item-size)!important;top:initial!important;left:initial!important;right:initial!important;grid-template-columns:20px minmax(0,1fr) var(--smart-scheduler-event-button-size);grid-column-gap:10px;justify-content:center;padding:var(--smart-scheduler-event-content-padding);cursor:pointer;background:var(--smart-background);color:var(--smart-background-color);outline:0;--smart-scheduler-event-focus:var(--smart-ui-state-focus);--smart-scheduler-event-color-focus:var(--smart-ui-state-color-focus);--smart-scheduler-event-hover:var(--smart-ui-state-hover);--smart-scheduler-event-color-hover:var(--smart-ui-state-color-hover);-webkit-user-select:none;user-select:none}.smart-scheduler-tooltip .smart-scheduler-event:before{content:"";width:20px;height:20px;display:flex;background:var(--smart-scheduler-event-background);justify-content:center;align-items:center;pointer-events:none;box-sizing:border-box;border-radius:50%;padding:var(--smart-scheduler-event-content-padding)}.smart-scheduler-tooltip .smart-scheduler-event:hover{background:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover)}.smart-scheduler-tooltip .smart-scheduler-event[hover] .smart-scheduler-event-button:hover{color:var(--smart-ui-state-color-focus);background-color:var(--smart-ui-state-focus)}.smart-scheduler-tooltip .smart-scheduler-event .smart-scheduler-event-content{position:relative;width:100%;height:100%;display:flex;flex-direction:column;justify-content:space-between;align-items:flex-start;overflow:hidden}.smart-scheduler-tooltip .smart-scheduler-event .smart-scheduler-event-content .meeting{font-size:12px;color:var(--smart-primary)}.smart-scheduler-tooltip .smart-scheduler-event .smart-scheduler-event-content .meeting a{color:var(--smart-primary)}.smart-scheduler-tooltip .smart-scheduler-event .smart-scheduler-event-content .meeting::before{content:var(--smart-icon-video-camera);font-family:var(--smart-font-family-icon);font-size:12px;margin-right:5px}.smart-scheduler-tooltip .smart-scheduler-event .smart-scheduler-event-content>div{max-width:100%;max-height:100%;overflow:hidden;text-overflow:ellipsis;align-self:flex-start}.smart-scheduler-tooltip .smart-scheduler-context-menu{width:100%;height:100%;display:grid;align-items:center;justify-content:flex-start}.smart-scheduler-tooltip .smart-scheduler-context-menu .smart-scheduler-context-menu-item{height:var(--smart-list-item-height);padding:var(--smart-list-item-padding);border-top-left-radius:var(--smart-item-border-top-left-radius);border-top-right-radius:var(--smart-item-border-top-right-radius);border-bottom-left-radius:var(--smart-item-border-bottom-left-radius);border-bottom-right-radius:var(--smart-item-border-bottom-right-radius);white-space:nowrap;text-overflow:ellipsis;background:var(--smart-background);color:var(--smart-background-color);display:flex;align-items:center;-webkit-user-select:none;user-select:none}.smart-notification-panel .smart-notification-item .smart-button[delete]:active,.smart-notification-panel .smart-notification-item .smart-button[delete]:hover,.smart-scheduler-tooltip .smart-scheduler-event-button:hover{color:var(--smart-ui-state-color-hover);background-color:var(--smart-ui-state-hover)}.smart-scheduler-tooltip .smart-scheduler-context-menu .smart-scheduler-context-menu-item:hover{background:var(--smart-ui-state-hover);color:var(--smart-ui-state-color-hover)}.smart-scheduler-tooltip .smart-scheduler-context-menu .smart-scheduler-context-menu-item[selected],.smart-scheduler-tooltip .smart-scheduler-event[selected],.smart-scheduler-tooltip .smart-scheduler-item[selected]{background-color:var(--smart-ui-state-selected);border-color:var(--smart-ui-state-border-selected);color:var(--smart-ui-state-color-selected)}.smart-scheduler-tooltip .smart-scheduler-context-menu .smart-scheduler-context-menu-item[disabled],.smart-scheduler-tooltip .smart-scheduler-event[disabled],.smart-scheduler-tooltip .smart-scheduler-item[disabled]{opacity:.55;cursor:default;pointer-events:none}.smart-scheduler-tooltip .smart-scheduler-collector-event-list{width:100%;height:100%}.smart-scheduler-tooltip .smart-scroll-viewer{--smart-scroll-viewer-max-height:var(--smart-scheduler-context-menu-max-height);--smart-scroll-viewer-max-width:var(--smart-scheduler-context-menu-max-width);--smart-list-box-default-height:auto;width:auto;border:initial;padding:initial}.smart-notification-panel .smart-notification-item .smart-input,.smart-scheduler-tooltip .smart-scheduler-event-button{border-top-right-radius:var(--smart-border-top-right-radius);border-bottom-left-radius:var(--smart-border-bottom-left-radius);outline:0}.smart-scheduler-tooltip .smart-scroll-viewer .smart-scroll-viewer-container.vscroll .smart-scheduler-context-menu{padding-right:var(--smart-scroll-bar-size)}.smart-scheduler-tooltip .smart-scroll-viewer .smart-scroll-viewer-container .smart-scroll-viewer-content-container{padding:initial}.smart-scheduler-tooltip .smart-scheduler-event-button{position:relative;width:var(--smart-scheduler-collector-item-button-size);height:var(--smart-scheduler-collector-item-button-size);display:flex;justify-content:center;align-items:center;overflow:hidden;border-color:var(--smart-border);border-top-left-radius:var(--smart-border-top-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius)}.smart-scheduler-tooltip .smart-scheduler-event-button:active{color:var(--smart-ui-state-color-active);background-color:var(--smart-ui-state-active)}.smart-scheduler-tooltip .smart-scheduler-event-button:focus{color:var(--smart-ui-state-color-focus);background-color:var(--smart-ui-state-focus)}.smart-scheduler-tooltip .smart-scheduler-event-button:before{content:var(--smart-icon-delete);font-family:var(--smart-font-family-icon);position:absolute;pointer-events:none;box-sizing:border-box;font-size:var(--smart-button-large-font-size)}.smart-scheduler-tooltip .smart-scheduler-event-label{font-weight:var(--smart-scheduler-event-label-font-weight);font-size:var(--smart-scheduler-event-label-font-size);pointer-events:none;white-space:nowrap}.smart-scheduler-tooltip .smart-scheduler-event-time{font-weight:var(--smart-scheduler-event-time-font-weight);font-size:var(--smart-scheduler-event-time-font-size);opacity:var(--smart-scheduler-event-time-opacity);pointer-events:none;white-space:nowrap}.smart-scheduler-tooltip:not([animation=none]){animation:smart-drop-down-list-smart-animate-closing .2s ease-in;transition:animation .2s ease-in,opacity .2s ease-in,visibility .2s ease-in}.smart-scheduler-tooltip:not([animation=none])[visible]{animation:smart-drop-down-list-smart-animate-opening .2s ease-out;transition:animation .2s ease-out,opacity .2s ease-out,visibility .2s ease-out}.smart-scheduler-tooltip:not([arrow-direction]),.smart-scheduler-tooltip[arrow-direction=bottom]{transform-origin:bottom}.smart-scheduler-tooltip:not([arrow]),.smart-scheduler-tooltip[arrow-direction=top]{transform-origin:top}.smart-scheduler-tooltip[right-to-left] .smart-scheduler-item{padding-right:initial;padding-left:calc(var(--smart-scheduler-shortcut-size) - 4px)}.smart-scheduler-tooltip[right-to-left] .smart-scheduler-item:after{left:0;right:initial;margin:0 10px 0 6px}.smart-scheduler-tooltip[right-to-left] .smart-scheduler-item>div{padding:10px 12px 10px var(--smart-scheduler-shortcut-size)}.smart-scheduler-drag-feedback{position:absolute;outline:0;-webkit-tap-highlight-color:transparent;border-radius:var(--smart-scheduler-event-border-radius);pointer-events:none;padding:initial;text-align:center;box-sizing:border-box;background:0 0;box-shadow:var(--smart-elevation-8);font-family:var(--smart-font-family);font-size:var(--smart-font-size);cursor:move;opacity:.75;z-index:10000}.smart-scheduler-drag-feedback .smart-scheduler-event-content{box-sizing:border-box;width:100%;height:100%;max-height:100%;display:grid;grid-template-rows:min-content minmax(auto,1fr);justify-content:flex-start;justify-items:flex-start;align-items:center;overflow:hidden;padding:var(--smart-scheduler-event-content-padding);color:var(--smart-scheduler-event-color);background:var(--smart-scheduler-event-background);cursor:pointer;position:relative;border-radius:inherit;grid-row-gap:2px}.smart-scheduler-drag-feedback .smart-scheduler-event-content[single-line]{grid-template-columns:repeat(2,auto);grid-template-rows:100%;grid-column-gap:5px;justify-content:space-between}.smart-scheduler-drag-feedback .smart-scheduler-event-content[single-line]>div{align-self:initial}.smart-scheduler-drag-feedback .smart-scheduler-event-content:not([single-line])>div:not(:first-of-type){grid-column:1/span 2}.smart-scheduler-drag-feedback .smart-scheduler-event-label{font-weight:var(--smart-scheduler-event-label-font-weight);font-size:var(--smart-scheduler-event-label-font-size);pointer-events:none;white-space:nowrap}.smart-scheduler-drag-feedback .smart-scheduler-event-time{font-weight:var(--smart-scheduler-event-time-font-weight);font-size:var(--smart-scheduler-event-time-font-size);opacity:var(--smart-scheduler-event-time-opacity);pointer-events:none;white-space:pre-wrap}.smart-scheduler-drag-feedback .smart-scheduler-event-content{grid-template-columns:minmax(auto,1fr)}.smart-scheduler-drag-feedback .smart-scheduler-event-content>div{max-width:100%;max-height:100%;overflow:hidden;text-overflow:ellipsis;align-self:flex-start}.smart-scheduler-drag-feedback .smart-scheduler-event-content>div:first-of-type{align-self:center}.smart-scheduler-drag-feedback[status] .smart-scheduler-event-content:before{content:"";position:absolute;display:block;width:var(--smart-scheduler-status-size);height:100%;background:var(--smart-scheduler-status-background);box-shadow:0 0 0 .5px var(--smart-background);border:1px solid var(--smart-border);border-radius:20px;overflow:hidden;box-sizing:border-box}.smart-scheduler-drag-feedback[status]:not([view-type=agenda]) .smart-scheduler-event-content{padding-left:calc(var(--smart-scheduler-status-size) + var(--smart-scheduler-status-padding))}.smart-scheduler-drag-feedback[status=free] .smart-scheduler-event-content:before{background:var(--smart-scheduler-status-free-background)}.smart-scheduler-drag-feedback[status=busy] .smart-scheduler-event-content:before{background:var(--smart-scheduler-status-busy-background)}.smart-scheduler-drag-feedback[status=outOfOffice] .smart-scheduler-event-content:before{background:var(--smart-scheduler-status-out-of-office-background)}.smart-scheduler-drag-feedback[status=tentative] .smart-scheduler-event-content:before{background:var(--smart-scheduler-status-tentative-background)}.smart-scheduler-drag-feedback[view-type=agenda] .smart-scheduler-event-time{opacity:var(--smart-scheduler-event-time-opacity-agenda);font-size:var(--smart-scheduler-event-time-font-size-agenda);font-weight:var(--smart-scheduler-event-time-font-weight-agenda)}.smart-scheduler-drag-feedback[view-type=agenda] .smart-scheduler-event,.smart-scheduler-drag-feedback[view-type=agenda] .smart-scheduler-event-content>div{padding:var(--smart-scheduler-event-padding-agenda)}.smart-scheduler-drag-feedback[view-type=agenda][status] .smart-scheduler-event-content:before{content:initial}.smart-scheduler-drag-feedback:not([view-type^=timeline]){width:var(--smart-scheduler-event-size)}.smart-scheduler-drag-feedback:not([view-type^=timeline]) .smart-scheduler-event-content>div{padding:var(--smart-scheduler-event-padding-basic)}.smart-scheduler-drag-feedback[view-type^=timeline] .smart-scheduler-event-content>div{padding:var(--smart-scheduler-event-padding-timeline)}.smart-scheduler-drag-feedback[mobile]:not([view-type^=timeline]){min-width:var(--smart-scheduler-event-size-timeline)}.smart-scheduler-drag-feedback[exception] .smart-scheduler-event-content,.smart-scheduler-drag-feedback[repeating] .smart-scheduler-event-content{grid-template-columns:minmax(auto,1fr) var(--smart-scheduler-event-icon-size)}.smart-scheduler-drag-feedback:not([repeating]) .smart-scheduler-event-content:not([single-line])>div{grid-column:1/span 2}.smart-scheduler-drag-feedback[repeating] .smart-scheduler-event-content:after{content:var(--smart-icon-spin);width:var(--smart-scheduler-event-icon-size);position:absolute;display:flex;justify-content:center;align-items:center;top:0;right:0;font-family:var(--smart-font-family-icon);font-size:var(--smart-font-size);padding:var(--smart-scheduler-event-content-padding);box-sizing:border-box;line-height:1rem}.smart-scheduler-drag-feedback[repeating] .smart-scheduler-event-content[single-line]{grid-template-columns:repeat(2,auto) var(--smart-scheduler-event-icon-size)}.smart-scheduler-drag-feedback[repeating][exception] .smart-scheduler-event-content:after{content:var(--smart-icon-attention-circled)}.smart-scheduler-drag-feedback[right-to-left]{direction:rtl}.smart-scheduler-drag-feedback[right-to-left]:not([view-type=agenda])[status] .smart-scheduler-event-content{padding-left:initial;padding-right:calc(var(--smart-scheduler-status-size) + var(--smart-scheduler-status-padding))}.smart-scheduler-drag-feedback[right-to-left][repeating] .smart-scheduler-event-content:after{right:initial;left:0}.smart-dragging-disabled{cursor:no-drop}.smart-notification-panel{width:auto;height:auto;display:inline-block;contain:content;max-height:100px}.smart-notification-panel:focus{border-color:var(--smart-outline)}.smart-notification-panel.smart-container,.smart-notification-panel>.smart-container{padding:var(--smart-editor-label-padding);overflow:auto;max-height:inherit}.smart-notification-panel .smart-notification-container{display:flex;width:100%;flex-direction:column}.smart-notification-panel .smart-notification-container:empty{display:none}.smart-notification-panel .smart-notification-item,.smart-notification-panel .smart-notification-placeholder{-webkit-user-select:none;user-select:none}.smart-notification-panel .smart-notification-item{display:inline-grid;grid-template-columns:repeat(4,minmax(0,1fr)) var(--smart-editor-height);grid-column-gap:10px;align-items:center;padding:0 0 var(--smart-editor-label-padding);justify-items:center}.smart-notification-panel .smart-notification-item .smart-input{width:100%;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;background:var(--smart-surface);color:var(--smart-surface-color);position:relative;padding:var(--smart-editor-label-padding);height:var(--smart-editor-height);border-top-left-radius:var(--smart-border-top-left-radius);border-bottom-right-radius:var(--smart-border-bottom-right-radius);display:inline-flex;align-items:center;cursor:pointer;font-family:var(--smart-font-family);font-size:var(--smart-font-size);border:var(--smart-border-width) solid transparent}.smart-notification-panel .smart-notification-item .smart-input[interval]::after,.smart-notification-panel .smart-notification-item .smart-input[interval]::before,.smart-notification-panel .smart-notification-item .smart-input[type]::after{content:var(--smart-icon-arrow-down);display:flex;overflow:hidden;cursor:pointer;font-family:var(--smart-font-family-icon);justify-content:center;align-items:center;font-size:var(--smart-arrow-size);outline:0;width:var(--smart-editor-addon-width);position:absolute;top:1px;right:-1px;height:100%;box-sizing:border-box}.smart-notification-panel .smart-notification-item .smart-input[interval]::before{content:var(--smart-icon-arrow-up);top:0;height:50%;border-bottom:var(--smart-border-width) solid transparent}.smart-notification-panel .smart-notification-item .smart-input[interval]::after{content:var(--smart-icon-arrow-down);bottom:0;top:initial;height:50%}.smart-notification-panel .smart-notification-item .smart-button[delete]{width:var(--smart-editor-height);height:var(--smart-editor-height);box-sizing:border-box;display:flex;align-items:center;justify-content:center;opacity:.25;font-size:16px;cursor:pointer;position:relative;border-radius:50%;outline:0}.smart-notification-panel .smart-notification-item .smart-button[delete]:after{content:var(--smart-icon-close);display:flex;justify-content:center;align-items:center;width:100%;height:0;cursor:pointer;font-size:var(--smart-font-size);font-family:var(--smart-font-family-icon)}.smart-notification-panel .smart-notification-placeholder,.smart-notification-panel .smart-notification-placeholder .smart-input{outline:0;align-items:center;cursor:pointer;font-family:var(--smart-font-family);font-size:var(--smart-font-size);display:inline-flex}.smart-notification-panel .smart-notification-item .smart-button[delete]:hover{opacity:.6}.smart-notification-panel .smart-notification-item .smart-button[delete]:active{opacity:1}.smart-notification-panel .smart-notification-item .smart-button[delete]:focus,.smart-notification-panel .smart-notification-item .smart-input:focus{box-shadow:0 0 0 1px var(--smart-outline)}.smart-notification-panel .smart-notification-placeholder{border-bottom:var(--smart-border-width) solid var(--smart-primary);color:var(--smart-primary)}.smart-notification-panel .smart-notification-placeholder .smart-input{border:var(--smart-border-width) solid transparent}.smart-notification-panel .smart-notification-placeholder:hover{color:var(--smart-ui-state-color-hover)}.smart-notification-panel .smart-notification-editor{position:absolute;background:var(--smart-background);color:var(--smart-background-color)}.smart-notification-panel label{display:inline-flex;align-items:center;justify-content:center}.smart-notification-panel[right-to-left] .smart-notification-item .smart-input[interval]{padding-left:calc(var(--smart-editor-addon-width) + var(--smart-editor-label-padding))}.smart-notification-panel[right-to-left] .smart-notification-item .smart-input[interval]::after,.smart-notification-panel[right-to-left] .smart-notification-item .smart-input[interval]::before,.smart-notification-panel[right-to-left] .smart-notification-item .smart-input[type]::after{right:initial;left:-1px}.smart-scheduler-loading-container .smart-loader-label{position:absolute;top:50%;left:50%;z-index:99;transform:translate(-50%,-50%);margin-top:calc(5px + var(--smart-loader-size));margin-left:5px}.smart-scheduler-loader{margin:inherit;display:block;position:absolute;top:50%;left:50%;z-index:99;transform:translate(-50%,-50%);opacity:.85;text-align:left;border:6px solid rgba(43,51,63,.1);box-sizing:border-box;background-clip:padding-box;border-radius:50%;width:calc(var(--smart-loader-size) + 10px);height:calc(var(--smart-loader-size) + 10px)}.smart-scheduler-loader:after,.smart-scheduler-loader:before{content:"";position:absolute;margin:-6px;box-sizing:inherit;width:inherit;height:inherit;border-radius:inherit;opacity:1;border:inherit inherit transparent;border-width:6px;animation:smart-loader-spin 1.1s cubic-bezier(.6,.2,0,.8) infinite,smart-loader-spin-fade 1.1s linear infinite}.smart-color-input-drop-down-menu.smart-scheduler-color-input .default-samples-container div{position:relative;border-radius:50%;border:initial;transform:scale(.95)}.smart-color-input-drop-down-menu.smart-scheduler-color-input .default-samples-container div.selected{transform:scale(1)}.smart-color-input-drop-down-menu.smart-scheduler-color-input .default-samples-container div.selected:not(.no-color):after{content:var(--smart-icon-check);width:100%;height:100%;position:absolute;top:0;left:0;display:flex;justify-content:center;align-items:center;font-family:var(--smart-font-family-icon);color:var(--smart-secondary-color);border-radius:inherit}.smart-scheduler-color-input{--smart-input-drop-down-menu-width:auto}
.smart-3d-chart-legend-item-color{width:13px;height:13px;margin-right:5px;cursor:pointer;border:3px solid}.smart-3d-chart-legend-item-hidden>.smart-3d-chart-legend-item-color{background-color:#fff!important}.smart-3d-chart-legend-item-label{font-size:12px;font-weight:700}.smart-3d-chart-legend{position:absolute;display:flex;justify-content:center;flex-wrap:wrap;z-index:2}.smart-3d-chart-footer{border:1px solid var(--smart-border)}.smart-3d-chart-range-selector-container{position:relative;width:95%;height:100px;border:1px solid var(--smart-border)}.smart-3d-chart-range-selector{position:relative;width:100%;height:80%}.smart-3d-chart-range-selector-rect{position:absolute;background:#00f;opacity:.1;top:0;width:95%;height:100%;cursor:move}.smart-3d-chart-range-selector-slider{position:absolute;top:0;width:6px;height:100%;cursor:e-resize}.smart-3d-chart-range-selector-slider:before{content:"";position:absolute;top:0;left:0;height:100%;width:1px;background:var(--smart-border)}.smart-3d-chart-range-selector-slider:after{content:"";position:absolute;top:50%;transform:translateY(-50%);left:-3px;height:30%;width:100%;border:1px solid var(--smart-border);border-radius:4px;background:#fff}.smart-3d-chart-legend-table{table-layout:fixed}.smart-3d-chart-legend-table-header-cell{height:55px;border-bottom:1px solid var(--smart-border);text-overflow:ellipsis;overflow:hidden;white-space:nowrap}td.smart-3d-chart-legend-table-body-cell:first-child{text-align:left;border-right:1px solid var(--smart-border);text-overflow:ellipsis;overflow:hidden;white-space:nowrap}td.smart-3d-chart-legend-table-body-cell{text-align:center;padding:0 5px}td.smart-3d-chart-legend-table-body-cell:last-child{min-width:40px}.smart-3d-chart-legend-table-body-cell-flex{display:flex;justify-content:center}.smart-3d-chart-legend-table .smart-3d-chart-legend-item{width:100%;justify-content:center;margin:8px 2px}.smart-3d-chart-legend-table .smart-3d-chart-legend-item-color{max-width:20px;width:100%;height:20px}.smart-3d-chart-legend-table thead th:not(:first-child) div.wrapper{justify-content:center}.smart-3d-chart-legend-column{display:flex}.smart-3d-chart-legend-item{display:flex;margin:8px;-webkit-user-select:none;user-select:none}.smart-3d-chart-tooltip{position:fixed;display:none;background-color:var(--smart-background);color:var(--smart-background-color);opacity:.8;border-radius:5px;border:2px solid #000;padding:3px;z-index:2;max-width:165px}.smart-3d-chart-caption{width:100%;padding:10px;position:absolute;text-align:center;z-index:2;margin:auto}.smart-3d-chart,.smart-3d-chart-container{position:relative}.smart-3d-chart-label{font-size:15px;color:var(--smart-background-color);background-color:none}.smart-3d-chart-value-axis-label,.smart-3d-chart-x-axis-label,.smart-3d-chart-z-axis-label{color:var(--smart-background-color);font-weight:550;padding:0}.smart-3d-chart-hover{cursor:pointer}.smart-3d-chart-tooltip-heading{font-weight:700}.smart-3d-chart{display:block;width:800px;height:400px;border:1px solid var(--smart-border)}smart-3d-chart .smart-3d-chart-controls{height:fit-content;width:100%;display:flex;justify-content:right;align-items:center;position:absolute;z-index:3;opacity:0;transition:opacity .25s ease-in-out;padding:5px 20px}.smart-3d-chart-controls>.smart-3d-chart-control{margin-left:20px}smart-3d-chart:hover .smart-3d-chart-controls{opacity:1}.smart-3d-chart-control-button{cursor:pointer;font-size:17px}.smart-3d-chart-control-button:after{opacity:.7;position:relative;top:20%}.smart-3d-chart-control-button:hover:after,.smart-3d-chart-control-button[selected]:after{opacity:1}.smart-3d-chart-control-zoom-in:after{content:var(--smart-icon-zoom-in);font-family:var(--smart-font-family-icon)}.smart-3d-chart-control-zoom-out:after{content:var(--smart-icon-zoom-out);font-family:var(--smart-font-family-icon)}.smart-3d-chart-control-camera-mode:after{content:var(--smart-icon-video-camera);font-family:var(--smart-font-family-icon)}.smart-3d-chart-control-pan-mode:after{content:var(--smart-icon-move);font-family:var(--smart-font-family-icon)}.smart-3d-chart-control-zoom-mode:after{content:var(--smart-icon-zoom-in);font-family:var(--smart-font-family-icon)}.smart-3d-chart-control-reset-camera:after{content:var(--smart-icon-home);font-family:var(--smart-font-family-icon)}.smart-3d-chart-control-save-image:after{content:var(--smart-icon-download-alt);font-family:var(--smart-font-family-icon)}.smart-3d-chart-control-drop-down-list{width:150px}.smart-3d-chart-control-drop-down-list .smart-3d-chart-control-list-item{margin-right:5px}
.drawContainer,.smart-arrow,.smart-container{height:100%;width:100%}.smart-container{box-sizing:border-box;font-family:inherit;font-size:inherit;display:block;outline:0;margin:0;padding:0}.smart-container *{box-sizing:border-box}.smart-drop-down,.smart-popup{position:absolute;box-sizing:border-box;margin:var(--smart-editor-drop-down-vertical-offset) 0;z-index:var(--smart-editor-drop-down-z-index);list-style-type:none}@font-face{font-family:smart-icons;src:local("./font/smart-icons"),url('smart-icons.3d6dfa6db497e61b.woff2') format("woff2"),url('smart-icons.3fa70cfb9a92d662.woff') format("woff"),url('smart-icons.25b7f0de9e73e343.ttf') format("truetype"),url('smart-icons.24e83f53cae99df8.eot') format("embedded-opentype");font-weight:400;font-style:normal}.smart-arrow{background-position:center;background-repeat:no-repeat;background-size:1em 1em}.smart-arrow-down:after,.smart-arrow-left-first:after,.smart-arrow-left:after,.smart-arrow-right-last:after,.smart-arrow-right:after,.smart-arrow-up:after{width:100%;height:100%;font-family:var(--smart-font-family-icon);font-style:normal;font-weight:400;font-size:var(--smart-arrow-size);color:inherit;text-decoration:inherit;font-variant:normal;text-transform:none;display:flex;flex-wrap:wrap;align-items:center;justify-content:center;position:relative}.smart-arrow-up:after{content:var(--smart-icon-arrow-up);top:-1px}.smart-arrow-down:after{content:var(--smart-icon-arrow-down)}.smart-arrow-left:after{content:var(--smart-icon-arrow-left)}.smart-arrow-left-first:after{content:var(--smart-icon-first-page)}.smart-arrow-right-last:after{content:var(--smart-icon-last-page)}.smart-arrow-right:after{content:var(--smart-icon-arrow-right)}.drawContainer{position:relative}.smart-ripple{display:block;position:absolute;border-radius:50%;transform:scale(0);pointer-events:none;animation:ripple .35s linear;border:none;opacity:.5}.smart-ripple.smart-animate{animation:ripple .65s linear;position:absolute}@keyframes ripple{100%{opacity:0;transform:scale(2.5)}}.smart-overlay{pointer-events:none}.smart-unselectable{-webkit-user-select:none;-ms-user-select:none;-moz-user-select:none}.smart-hidden{display:none!important}.smart-visibility-hidden{visibility:hidden!important}.smart-element-init{visibility:hidden}.smart-element-ready{overflow:hidden}.smart-shown{display:block}.smart-resize-trigger{position:absolute;left:0;top:0;transition:0s}.smart-resize-trigger-shrink{position:absolute;left:0;top:0;transition:0s;width:200%;height:200%}.smart-resize-trigger-container{display:block;position:relative;top:-100%;left:0;height:100%;width:100%;min-height:1px;overflow:hidden;pointer-events:none;z-index:-1;visibility:hidden}.smart-list-menu-view.smart-drop-down-repositioned .smart-loader,smart-card-view .smart-loader,smart-grid .smart-loader,smart-list-box .smart-loader,smart-list-menu .smart-loader,smart-table .smart-loader,smart-tree .smart-loader{margin:inherit;display:block;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);opacity:.85;text-align:left;border:6px solid rgba(43,51,63,.1);box-sizing:border-box;background-clip:padding-box;border-radius:50%;z-index:10;width:calc(var(--smart-loader-size) + 10px);height:calc(var(--smart-loader-size) + 10px)}.smart-list-menu-view.smart-drop-down-repositioned .smart-loader:after,.smart-list-menu-view.smart-drop-down-repositioned .smart-loader:before,smart-card-view .smart-loader:after,smart-card-view .smart-loader:before,smart-grid .smart-loader:after,smart-grid .smart-loader:before,smart-list-box .smart-loader:after,smart-list-box .smart-loader:before,smart-list-menu .smart-loader:after,smart-list-menu .smart-loader:before,smart-table .smart-loader:after,smart-table .smart-loader:before,smart-tree .smart-loader:after,smart-tree .smart-loader:before{content:"";position:absolute;margin:-6px;box-sizing:inherit;width:inherit;height:inherit;border-radius:inherit;opacity:1;border:6px solid transparent;animation:smart-loader-spin 1.1s cubic-bezier(.6,.2,0,.8) infinite,smart-loader-spin-fade 1.1s linear infinite}.smart-list-menu-view.smart-drop-down-repositioned .smart-loader.smart-hidden,smart-card-view .smart-loader.smart-hidden,smart-grid .smart-loader.smart-hidden,smart-list-box .smart-loader.smart-hidden,smart-list-menu .smart-loader.smart-hidden,smart-table .smart-loader.smart-hidden,smart-tree .smart-loader.smart-hidden{display:none}.smart-list-menu-view.smart-drop-down-repositioned[loading-indicator-position=bottom] .smart-loader,.smart-list-menu-view.smart-drop-down-repositioned[loading-indicator-position=top] .smart-loader,smart-grid[loading-indicator-position=bottom] .smart-loader,smart-grid[loading-indicator-position=top] .smart-loader,smart-list-box[loading-indicator-position=bottom] .smart-loader,smart-list-box[loading-indicator-position=top] .smart-loader,smart-list-menu[loading-indicator-position=bottom] .smart-loader,smart-list-menu[loading-indicator-position=top] .smart-loader,smart-tree[loading-indicator-position=bottom] .smart-loader,smart-tree[loading-indicator-position=top] .smart-loader{width:var(--smart-loader-size);height:var(--smart-loader-size);left:20%}.smart-list-menu-view.smart-drop-down-repositioned[loading-indicator-position=bottom] .smart-loader-container,.smart-list-menu-view.smart-drop-down-repositioned[loading-indicator-position=top] .smart-loader-container,smart-grid[loading-indicator-position=bottom] .smart-loader-container,smart-grid[loading-indicator-position=top] .smart-loader-container,smart-list-box[loading-indicator-position=bottom] .smart-loader-container,smart-list-box[loading-indicator-position=top] .smart-loader-container,smart-list-menu[loading-indicator-position=bottom] .smart-loader-container,smart-list-menu[loading-indicator-position=top] .smart-loader-container,smart-tree[loading-indicator-position=bottom] .smart-loader-container,smart-tree[loading-indicator-position=top] .smart-loader-container{display:block;position:relative;width:100%;height:10%;background-color:#F2F2F2;overflow:hidden;animation:smart-loader-container-pop-up-down .3s linear}.smart-list-menu-view.smart-drop-down-repositioned[loading-indicator-position=bottom] .smart-loader-container.smart-hidden,.smart-list-menu-view.smart-drop-down-repositioned[loading-indicator-position=top] .smart-loader-container.smart-hidden,smart-grid[loading-indicator-position=bottom] .smart-loader-container.smart-hidden,smart-grid[loading-indicator-position=top] .smart-loader-container.smart-hidden,smart-list-box[loading-indicator-position=bottom] .smart-loader-container.smart-hidden,smart-list-box[loading-indicator-position=top] .smart-loader-container.smart-hidden,smart-list-menu[loading-indicator-position=bottom] .smart-loader-container.smart-hidden,smart-list-menu[loading-indicator-position=top] .smart-loader-container.smart-hidden,smart-tree[loading-indicator-position=bottom] .smart-loader-container.smart-hidden,smart-tree[loading-indicator-position=top] .smart-loader-container.smart-hidden{display:none}.smart-list-menu-view.smart-drop-down-repositioned[loading-indicator-position=bottom] .smart-loader-label,.smart-list-menu-view.smart-drop-down-repositioned[loading-indicator-position=top] .smart-loader-label,smart-grid[loading-indicator-position=bottom] .smart-loader-label,smart-grid[loading-indicator-position=top] .smart-loader-label,smart-list-box[loading-indicator-position=bottom] .smart-loader-label,smart-list-box[loading-indicator-position=top] .smart-loader-label,smart-list-menu[loading-indicator-position=bottom] .smart-loader-label,smart-list-menu[loading-indicator-position=top] .smart-loader-label,smart-tree[loading-indicator-position=bottom] .smart-loader-label,smart-tree[loading-indicator-position=top] .smart-loader-label{position:absolute;display:block;top:50%;transform:translate(-50%,-50%);left:60%;font-family:inherit;font-size:inherit;vertical-align:middle;white-space:nowrap}.smart-list-menu-view.smart-drop-down-repositioned[loading-indicator-position=top] .smart-loader-container,smart-grid[loading-indicator-position=top] .smart-loader-container,smart-list-box[loading-indicator-position=top] .smart-loader-container,smart-list-menu[loading-indicator-position=top] .smart-loader-container,smart-tree[loading-indicator-position=top] .smart-loader-container{top:0;position:absolute;animation:smart-loader-container-pop-up-top .3s linear}.smart-list-menu-view.smart-drop-down-repositioned[loading-indicator-position=bottom] .smart-loader-container,smart-grid[loading-indicator-position=bottom] .smart-loader-container,smart-list-box[loading-indicator-position=bottom] .smart-loader-container,smart-list-menu[loading-indicator-position=bottom] .smart-loader-container,smart-tree[loading-indicator-position=bottom] .smart-loader-container{top:-10%}.smart-list-menu-view.smart-drop-down-repositioned[loading-indicator-position=center] .smart-loader,smart-grid[loading-indicator-position=center] .smart-loader,smart-list-box[loading-indicator-position=center] .smart-loader,smart-list-menu[loading-indicator-position=center] .smart-loader,smart-tree[loading-indicator-position=center] .smart-loader{width:calc(var(--smart-loader-size) + 10px);height:calc(var(--smart-loader-size) + 10px)}smart-grid[disabled] .smart-loader:after,smart-grid[disabled] .smart-loader:before,smart-list-box[disabled] .smart-loader:after,smart-list-box[disabled] .smart-loader:before,smart-list-menu[disabled] .smart-loader:after,smart-list-menu[disabled] .smart-loader:before,smart-tree[disabled] .smart-loader:after,smart-tree[disabled] .smart-loader:before{animation:none}@keyframes smart-loader-container-pop-up-down{0%{top:0}20%{top:-2%}35%{top:-6%}60%{top:-8%}100%{top:-10%}}@keyframes smart-loader-container-pop-up-top{0%{top:-10%}20%{top:-8%}35%{top:-6%}60%{top:-2%}100%{top:0}}@keyframes smart-loader-spin{100%{transform:rotate(360deg)}}@keyframes smart-loader-spin-fade{0%,100%,20%,60%{border-top-color:#7A7A7A}35%{border-top-color:transparent}}.smart-right-to-left{direction:rtl}.smart-micro{font-size:9px}.smart-caps{text-transform:uppercase;letter-spacing:.1em}.smart-strong{font-weight:500}.smart-truncate{max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.smart-quiet{opacity:.75}.smart-flex{display:flex}.smart-flex-wrap{display:flex;flex-wrap:wrap}.smart-dragging,.smart-dragging *{cursor:move!important}

.parent-drawflow {
  display: flex;
  overflow: hidden;
  touch-action: none;
  outline: none;
}

.drawflow {
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-user-select: none;
          user-select: none;
  perspective: 0;
}

.drawflow .parent-node {
  position: relative;
}

.drawflow .drawflow-node {
  display: flex;
  align-items: center;
  position: absolute;
  background: var(--bgColor10);
  width: 13.33em;
  min-height: 3.33em;
  border-radius: 0.33em;
  border: 0.17em solid black;
  color: black;
  z-index: 2;
  padding: 1.25em;
}

.drawflow .drawflow-node.selected {
  background: rgb(217, 217, 217);
}

.drawflow .drawflow-node:hover {
  cursor: move;
}

.drawflow .drawflow-node .inputs,
.drawflow .drawflow-node .outputs {
  width: 0em;
}

.drawflow .drawflow-node .drawflow_content_node {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.drawflow .drawflow-node .input,
.drawflow .drawflow-node .output {
  position: relative;
  width: 1.25em;
  height: 1.25em;
  background: var(--bgColor10);
  border-radius: 50%;
  border: 0.17em solid black;
  cursor: crosshair;
  z-index: 1;
  margin-bottom: 0.42em;
}

.drawflow .drawflow-node .input {
  left: -2em;
  top: 0.17em;
  background: black;
}

.drawflow .drawflow-node .output {
  right: -0.67em;
  top: 0.17em;
}

.drawflow svg {
  z-index: 0;
  position: absolute;
  overflow: visible !important;
}

.drawflow .connection {
  position: absolute;
  pointer-events: none;
  aspect-ratio: 1/1;
}

.drawflow .connection .main-path {
  fill: none;
  stroke-width: 0.25em;
  stroke: black;
  pointer-events: all;
}

.drawflow .connection .main-path:hover {
  stroke: black;
  cursor: pointer;
}

.drawflow .connection .main-path.selected {
  stroke: black;
}

.drawflow .connection .point {
  cursor: move;
  stroke: black;
  stroke-width: 2;
  fill: white;
  pointer-events: all;
}

.drawflow .connection .point.selected,
.drawflow .connection .point:hover {
  fill: black;
}

.drawflow .main-path {
  fill: none;
  stroke-width: 0.25em;
  stroke: black;
}

.drawflow-delete {
  position: absolute;
  width: 1.67em;
  height: 1.67em;
  background: var(--bgColor10);
  color: red;
  z-index: 4;
  border: 0.17em solid black;
  line-height: 2.5em;
  font-weight: bold;
  text-align: center;
  border-radius: 50%;
  font-family: monospace;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawflow > .drawflow-delete {
  margin-left: -1.25em;
  margin-top: 1.25em;
}

.parent-node .drawflow-delete {
  right: -0.83em;
  top: -1em;
}

.drawflow-node:has(.input-output-div) {
  border-radius: 3em 3em 3em 3em;
}

.node-head {
  display: block;
  width: 100%;
  text-align: center;
  font-size: small;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0.3em;
}

.node-body {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-evenly;
  align-items: center;
  height: 3em;
}
.swagger-ui {
  color: #3b4151;
  /*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
  font-family: sans-serif;
  height: calc(100vh - 9em) !important;
  overflow: auto;
}

.swagger-ui html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  line-height: 1.15;
}

.swagger-ui body {
  margin: 0;
}

.swagger-ui article, .swagger-ui aside, .swagger-ui footer, .swagger-ui header, .swagger-ui nav, .swagger-ui section {
  display: block;
}

.swagger-ui h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

.swagger-ui figcaption, .swagger-ui figure, .swagger-ui main {
  display: block;
}

.swagger-ui figure {
  margin: 1em 3.33em;
}

.swagger-ui hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

.swagger-ui pre {
  font-family: monospace;
  font-size: 1em;
}

.swagger-ui a {
  -webkit-text-decoration-skip: objects;
  background-color: transparent;
}

.swagger-ui abbr[title] {
  border-bottom: none;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

.swagger-ui b, .swagger-ui strong {
  font-weight: inherit;
  font-weight: bolder;
}

.swagger-ui code, .swagger-ui kbd, .swagger-ui samp {
  font-family: monospace;
  font-size: 1em;
}

.swagger-ui dfn {
  font-style: italic;
}

.swagger-ui mark {
  background-color: #ff0;
  color: #000;
}

.swagger-ui small {
  font-size: 80%;
}

.swagger-ui sub, .swagger-ui sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

.swagger-ui sub {
  bottom: -0.25em;
}

.swagger-ui sup {
  top: -0.5em;
}

.swagger-ui audio, .swagger-ui video {
  display: inline-block;
}

.swagger-ui audio:not([controls]) {
  display: none;
  height: 0;
}

.swagger-ui svg:not(:root) {
  overflow: hidden;
}

.swagger-ui button, .swagger-ui input, .swagger-ui optgroup, .swagger-ui select, .swagger-ui textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

.swagger-ui button, .swagger-ui input {
  overflow: visible;
}

.swagger-ui button, .swagger-ui select {
  text-transform: none;
}

.swagger-ui [type=reset], .swagger-ui [type=submit], .swagger-ui button, .swagger-ui html [type=button] {
  -webkit-appearance: button;
}

.swagger-ui [type=button]::-moz-focus-inner, .swagger-ui [type=reset]::-moz-focus-inner, .swagger-ui [type=submit]::-moz-focus-inner, .swagger-ui button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

.swagger-ui [type=button]:-moz-focusring, .swagger-ui [type=reset]:-moz-focusring, .swagger-ui [type=submit]:-moz-focusring, .swagger-ui button:-moz-focusring {
  outline: 0.08em dotted ButtonText;
}

.swagger-ui fieldset {
  padding: 0.35em 0.75em 0.63em;
}

.swagger-ui legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

.swagger-ui progress {
  display: inline-block;
  vertical-align: baseline;
}

.swagger-ui [type=checkbox], .swagger-ui [type=radio] {
  box-sizing: border-box;
  padding: 0;
}

.swagger-ui [type=number]::-webkit-inner-spin-button, .swagger-ui [type=number]::-webkit-outer-spin-button {
  height: auto;
}

.swagger-ui [type=search] {
  -webkit-appearance: textfield;
  outline-offset: -0.17em;
}

.swagger-ui [type=search]::-webkit-search-cancel-button, .swagger-ui [type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

.swagger-ui ::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

.swagger-ui details, .swagger-ui menu {
  display: block;
}

.swagger-ui summary {
  display: list-item;
}

.swagger-ui canvas {
  display: inline-block;
}

.swagger-ui [hidden], .swagger-ui template {
  display: none;
}

.swagger-ui .debug * {
  outline: 0.08em solid gold;
}

.swagger-ui .debug-white * {
  outline: 0.08em solid #fff;
}

.swagger-ui .debug-black * {
  outline: 0.08em solid #000;
}

.swagger-ui .debug-grid {
  background: transparent url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTExIDc5LjE1ODMyNSwgMjAxNS8wOS8xMC0wMToxMDoyMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MTRDOTY4N0U2N0VFMTFFNjg2MzZDQjkwNkQ4MjgwMEIiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MTRDOTY4N0Q2N0VFMTFFNjg2MzZDQjkwNkQ4MjgwMEIiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo3NjcyQkQ3NjY3QzUxMUU2QjJCQ0UyNDA4MTAwMjE3MSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo3NjcyQkQ3NzY3QzUxMUU2QjJCQ0UyNDA4MTAwMjE3MSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PsBS+GMAAAAjSURBVHjaYvz//z8DLsD4gcGXiYEAGBIKGBne//fFpwAgwAB98AaF2pjlUQAAAABJRU5ErkJggg==) repeat 0 0;
}

.swagger-ui .debug-grid-16 {
  background: transparent url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTExIDc5LjE1ODMyNSwgMjAxNS8wOS8xMC0wMToxMDoyMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6ODYyRjhERDU2N0YyMTFFNjg2MzZDQjkwNkQ4MjgwMEIiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6ODYyRjhERDQ2N0YyMTFFNjg2MzZDQjkwNkQ4MjgwMEIiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo3NjcyQkQ3QTY3QzUxMUU2QjJCQ0UyNDA4MTAwMjE3MSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo3NjcyQkQ3QjY3QzUxMUU2QjJCQ0UyNDA4MTAwMjE3MSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PvCS01IAAABMSURBVHjaYmR4/5+BFPBfAMFm/MBgx8RAGWCn1AAmSg34Q6kBDKMGMDCwICeMIemF/5QawEipAWwUhwEjMDvbAWlWkvVBwu8vQIABAEwBCph8U6c0AAAAAElFTkSuQmCC) repeat 0 0;
}

.swagger-ui .debug-grid-8-solid {
  background: #fff url(data:image/jpeg;base64,/9j/4QAYRXhpZgAASUkqAAgAAAAAAAAAAAAAAP/sABFEdWNreQABAAQAAAAAAAD/4QMxaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLwA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/PiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjYtYzExMSA3OS4xNTgzMjUsIDIwMTUvMDkvMTAtMDE6MTA6MjAgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE1IChNYWNpbnRvc2gpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkIxMjI0OTczNjdCMzExRTZCMkJDRTI0MDgxMDAyMTcxIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkIxMjI0OTc0NjdCMzExRTZCMkJDRTI0MDgxMDAyMTcxIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6QjEyMjQ5NzE2N0IzMTFFNkIyQkNFMjQwODEwMDIxNzEiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6QjEyMjQ5NzI2N0IzMTFFNkIyQkNFMjQwODEwMDIxNzEiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7/7gAOQWRvYmUAZMAAAAAB/9sAhAAbGhopHSlBJiZBQi8vL0JHPz4+P0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHAR0pKTQmND8oKD9HPzU/R0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0f/wAARCAAIAAgDASIAAhEBAxEB/8QAWQABAQAAAAAAAAAAAAAAAAAAAAYBAQEAAAAAAAAAAAAAAAAAAAIEEAEBAAMBAAAAAAAAAAAAAAABADECA0ERAAEDBQAAAAAAAAAAAAAAAAARITFBUWESIv/aAAwDAQACEQMRAD8AoOnTV1QTD7JJshP3vSM3P//Z) repeat 0 0;
}

.swagger-ui .debug-grid-16-solid {
  background: #fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTExIDc5LjE1ODMyNSwgMjAxNS8wOS8xMC0wMToxMDoyMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUgKE1hY2ludG9zaCkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NzY3MkJEN0U2N0M1MTFFNkIyQkNFMjQwODEwMDIxNzEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NzY3MkJEN0Y2N0M1MTFFNkIyQkNFMjQwODEwMDIxNzEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo3NjcyQkQ3QzY3QzUxMUU2QjJCQ0UyNDA4MTAwMjE3MSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo3NjcyQkQ3RDY3QzUxMUU2QjJCQ0UyNDA4MTAwMjE3MSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pve6J3kAAAAzSURBVHjaYvz//z8D0UDsMwMjSRoYP5Gq4SPNbRjVMEQ1fCRDg+in/6+J1AJUxsgAEGAA31BAJMS0GYEAAAAASUVORK5CYII=) repeat 0 0;
}

.swagger-ui .border-box, .swagger-ui a, .swagger-ui article, .swagger-ui body, .swagger-ui code, .swagger-ui dd, .swagger-ui div, .swagger-ui dl, .swagger-ui dt, .swagger-ui fieldset, .swagger-ui footer, .swagger-ui form, .swagger-ui h1, .swagger-ui h2, .swagger-ui h3, .swagger-ui h4, .swagger-ui h5, .swagger-ui h6, .swagger-ui header, .swagger-ui html, .swagger-ui input[type=email], .swagger-ui input[type=number], .swagger-ui input[type=password], .swagger-ui input[type=tel], .swagger-ui input[type=text], .swagger-ui input[type=url], .swagger-ui legend, .swagger-ui li, .swagger-ui main, .swagger-ui ol, .swagger-ui p, .swagger-ui pre, .swagger-ui section, .swagger-ui table, .swagger-ui td, .swagger-ui textarea, .swagger-ui th, .swagger-ui tr, .swagger-ui ul {
  box-sizing: border-box;
}

.swagger-ui .aspect-ratio {
  height: 0;
  position: relative;
}

.swagger-ui .aspect-ratio--16x9 {
  padding-bottom: 56.25%;
}

.swagger-ui .aspect-ratio--9x16 {
  padding-bottom: 177.77%;
}

.swagger-ui .aspect-ratio--4x3 {
  padding-bottom: 75%;
}

.swagger-ui .aspect-ratio--3x4 {
  padding-bottom: 133.33%;
}

.swagger-ui .aspect-ratio--6x4 {
  padding-bottom: 66.6%;
}

.swagger-ui .aspect-ratio--4x6 {
  padding-bottom: 150%;
}

.swagger-ui .aspect-ratio--8x5 {
  padding-bottom: 62.5%;
}

.swagger-ui .aspect-ratio--5x8 {
  padding-bottom: 160%;
}

.swagger-ui .aspect-ratio--7x5 {
  padding-bottom: 71.42%;
}

.swagger-ui .aspect-ratio--5x7 {
  padding-bottom: 140%;
}

.swagger-ui .aspect-ratio--1x1 {
  padding-bottom: 100%;
}

.swagger-ui .aspect-ratio--object {
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 100;
}

@media screen and (min-width: 30em) {
  .swagger-ui .aspect-ratio-ns {
    height: 0;
    position: relative;
  }
  .swagger-ui .aspect-ratio--16x9-ns {
    padding-bottom: 56.25%;
  }
  .swagger-ui .aspect-ratio--9x16-ns {
    padding-bottom: 177.77%;
  }
  .swagger-ui .aspect-ratio--4x3-ns {
    padding-bottom: 75%;
  }
  .swagger-ui .aspect-ratio--3x4-ns {
    padding-bottom: 133.33%;
  }
  .swagger-ui .aspect-ratio--6x4-ns {
    padding-bottom: 66.6%;
  }
  .swagger-ui .aspect-ratio--4x6-ns {
    padding-bottom: 150%;
  }
  .swagger-ui .aspect-ratio--8x5-ns {
    padding-bottom: 62.5%;
  }
  .swagger-ui .aspect-ratio--5x8-ns {
    padding-bottom: 160%;
  }
  .swagger-ui .aspect-ratio--7x5-ns {
    padding-bottom: 71.42%;
  }
  .swagger-ui .aspect-ratio--5x7-ns {
    padding-bottom: 140%;
  }
  .swagger-ui .aspect-ratio--1x1-ns {
    padding-bottom: 100%;
  }
  .swagger-ui .aspect-ratio--object-ns {
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 100;
  }
}
@media screen and (min-width: 30em) and (max-width: 60em) {
  .swagger-ui .aspect-ratio-m {
    height: 0;
    position: relative;
  }
  .swagger-ui .aspect-ratio--16x9-m {
    padding-bottom: 56.25%;
  }
  .swagger-ui .aspect-ratio--9x16-m {
    padding-bottom: 177.77%;
  }
  .swagger-ui .aspect-ratio--4x3-m {
    padding-bottom: 75%;
  }
  .swagger-ui .aspect-ratio--3x4-m {
    padding-bottom: 133.33%;
  }
  .swagger-ui .aspect-ratio--6x4-m {
    padding-bottom: 66.6%;
  }
  .swagger-ui .aspect-ratio--4x6-m {
    padding-bottom: 150%;
  }
  .swagger-ui .aspect-ratio--8x5-m {
    padding-bottom: 62.5%;
  }
  .swagger-ui .aspect-ratio--5x8-m {
    padding-bottom: 160%;
  }
  .swagger-ui .aspect-ratio--7x5-m {
    padding-bottom: 71.42%;
  }
  .swagger-ui .aspect-ratio--5x7-m {
    padding-bottom: 140%;
  }
  .swagger-ui .aspect-ratio--1x1-m {
    padding-bottom: 100%;
  }
  .swagger-ui .aspect-ratio--object-m {
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 100;
  }
}
@media screen and (min-width: 60em) {
  .swagger-ui .aspect-ratio-l {
    height: 0;
    position: relative;
  }
  .swagger-ui .aspect-ratio--16x9-l {
    padding-bottom: 56.25%;
  }
  .swagger-ui .aspect-ratio--9x16-l {
    padding-bottom: 177.77%;
  }
  .swagger-ui .aspect-ratio--4x3-l {
    padding-bottom: 75%;
  }
  .swagger-ui .aspect-ratio--3x4-l {
    padding-bottom: 133.33%;
  }
  .swagger-ui .aspect-ratio--6x4-l {
    padding-bottom: 66.6%;
  }
  .swagger-ui .aspect-ratio--4x6-l {
    padding-bottom: 150%;
  }
  .swagger-ui .aspect-ratio--8x5-l {
    padding-bottom: 62.5%;
  }
  .swagger-ui .aspect-ratio--5x8-l {
    padding-bottom: 160%;
  }
  .swagger-ui .aspect-ratio--7x5-l {
    padding-bottom: 71.42%;
  }
  .swagger-ui .aspect-ratio--5x7-l {
    padding-bottom: 140%;
  }
  .swagger-ui .aspect-ratio--1x1-l {
    padding-bottom: 100%;
  }
  .swagger-ui .aspect-ratio--object-l {
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 100;
  }
}
.swagger-ui img {
  max-width: 100%;
  border-style: none;
}

.swagger-ui .cover {
  background-size: cover !important;
}

.swagger-ui .contain {
  background-size: contain !important;
}

@media screen and (min-width: 30em) {
  .swagger-ui .cover-ns {
    background-size: cover !important;
  }
  .swagger-ui .contain-ns {
    background-size: contain !important;
  }
}
@media screen and (min-width: 30em) and (max-width: 60em) {
  .swagger-ui .cover-m {
    background-size: cover !important;
  }
  .swagger-ui .contain-m {
    background-size: contain !important;
  }
}
@media screen and (min-width: 60em) {
  .swagger-ui .cover-l {
    background-size: cover !important;
  }
  .swagger-ui .contain-l {
    background-size: contain !important;
  }
}
.swagger-ui .bg-center {
  background-position: 50%;
  background-repeat: no-repeat;
}

.swagger-ui .bg-top {
  background-position: top;
  background-repeat: no-repeat;
}

.swagger-ui .bg-right {
  background-position: 100%;
  background-repeat: no-repeat;
}

.swagger-ui .bg-bottom {
  background-position: bottom;
  background-repeat: no-repeat;
}

.swagger-ui .bg-left {
  background-position: 0;
  background-repeat: no-repeat;
}

@media screen and (min-width: 30em) {
  .swagger-ui .bg-center-ns {
    background-position: 50%;
    background-repeat: no-repeat;
  }
  .swagger-ui .bg-top-ns {
    background-position: top;
    background-repeat: no-repeat;
  }
  .swagger-ui .bg-right-ns {
    background-position: 100%;
    background-repeat: no-repeat;
  }
  .swagger-ui .bg-bottom-ns {
    background-position: bottom;
    background-repeat: no-repeat;
  }
  .swagger-ui .bg-left-ns {
    background-position: 0;
    background-repeat: no-repeat;
  }
}
@media screen and (min-width: 30em) and (max-width: 60em) {
  .swagger-ui .bg-center-m {
    background-position: 50%;
    background-repeat: no-repeat;
  }
  .swagger-ui .bg-top-m {
    background-position: top;
    background-repeat: no-repeat;
  }
  .swagger-ui .bg-right-m {
    background-position: 100%;
    background-repeat: no-repeat;
  }
  .swagger-ui .bg-bottom-m {
    background-position: bottom;
    background-repeat: no-repeat;
  }
  .swagger-ui .bg-left-m {
    background-position: 0;
    background-repeat: no-repeat;
  }
}
@media screen and (min-width: 60em) {
  .swagger-ui .bg-center-l {
    background-position: 50%;
    background-repeat: no-repeat;
  }
  .swagger-ui .bg-top-l {
    background-position: top;
    background-repeat: no-repeat;
  }
  .swagger-ui .bg-right-l {
    background-position: 100%;
    background-repeat: no-repeat;
  }
  .swagger-ui .bg-bottom-l {
    background-position: bottom;
    background-repeat: no-repeat;
  }
  .swagger-ui .bg-left-l {
    background-position: 0;
    background-repeat: no-repeat;
  }
}
.swagger-ui .outline {
  outline: 0.08em solid;
}

.swagger-ui .outline-transparent {
  outline: 0.08em solid transparent;
}

.swagger-ui .outline-0 {
  outline: 0;
}

@media screen and (min-width: 30em) {
  .swagger-ui .outline-ns {
    outline: 0.08em solid;
  }
  .swagger-ui .outline-transparent-ns {
    outline: 0.08em solid transparent;
  }
  .swagger-ui .outline-0-ns {
    outline: 0;
  }
}
@media screen and (min-width: 30em) and (max-width: 60em) {
  .swagger-ui .outline-m {
    outline: 0.08em solid;
  }
  .swagger-ui .outline-transparent-m {
    outline: 0.08em solid transparent;
  }
  .swagger-ui .outline-0-m {
    outline: 0;
  }
}
@media screen and (min-width: 60em) {
  .swagger-ui .outline-l {
    outline: 0.08em solid;
  }
  .swagger-ui .outline-transparent-l {
    outline: 0.08em solid transparent;
  }
  .swagger-ui .outline-0-l {
    outline: 0;
  }
}
.swagger-ui .ba {
  border-style: solid;
  border-width: 0.08em;
}

.swagger-ui .bt {
  border-top-style: solid;
  border-top-width: 0.08em;
}

.swagger-ui .br {
  border-right-style: solid;
  border-right-width: 0.08em;
}

.swagger-ui .bb {
  border-bottom-style: solid;
  border-bottom-width: 0.08em;
}

.swagger-ui .bl {
  border-left-style: solid;
  border-left-width: 0.08em;
}

.swagger-ui .bn {
  border-style: none;
  border-width: 0;
}

@media screen and (min-width: 30em) {
  .swagger-ui .ba-ns {
    border-style: solid;
    border-width: 0.08em;
  }
  .swagger-ui .bt-ns {
    border-top-style: solid;
    border-top-width: 0.08em;
  }
  .swagger-ui .br-ns {
    border-right-style: solid;
    border-right-width: 0.08em;
  }
  .swagger-ui .bb-ns {
    border-bottom-style: solid;
    border-bottom-width: 0.08em;
  }
  .swagger-ui .bl-ns {
    border-left-style: solid;
    border-left-width: 0.08em;
  }
  .swagger-ui .bn-ns {
    border-style: none;
    border-width: 0;
  }
}
@media screen and (min-width: 30em) and (max-width: 60em) {
  .swagger-ui .ba-m {
    border-style: solid;
    border-width: 0.08em;
  }
  .swagger-ui .bt-m {
    border-top-style: solid;
    border-top-width: 0.08em;
  }
  .swagger-ui .br-m {
    border-right-style: solid;
    border-right-width: 0.08em;
  }
  .swagger-ui .bb-m {
    border-bottom-style: solid;
    border-bottom-width: 0.08em;
  }
  .swagger-ui .bl-m {
    border-left-style: solid;
    border-left-width: 0.08em;
  }
  .swagger-ui .bn-m {
    border-style: none;
    border-width: 0;
  }
}
@media screen and (min-width: 60em) {
  .swagger-ui .ba-l {
    border-style: solid;
    border-width: 0.08em;
  }
  .swagger-ui .bt-l {
    border-top-style: solid;
    border-top-width: 0.08em;
  }
  .swagger-ui .br-l {
    border-right-style: solid;
    border-right-width: 0.08em;
  }
  .swagger-ui .bb-l {
    border-bottom-style: solid;
    border-bottom-width: 0.08em;
  }
  .swagger-ui .bl-l {
    border-left-style: solid;
    border-left-width: 0.08em;
  }
  .swagger-ui .bn-l {
    border-style: none;
    border-width: 0;
  }
}
.swagger-ui .b--black {
  border-color: #000;
}

.swagger-ui .b--near-black {
  border-color: #111;
}

.swagger-ui .b--dark-gray {
  border-color: #333;
}

.swagger-ui .b--mid-gray {
  border-color: #555;
}

.swagger-ui .b--gray {
  border-color: #777;
}

.swagger-ui .b--silver {
  border-color: #999;
}

.swagger-ui .b--light-silver {
  border-color: #aaa;
}

.swagger-ui .b--moon-gray {
  border-color: #ccc;
}

.swagger-ui .b--light-gray {
  border-color: #eee;
}

.swagger-ui .b--near-white {
  border-color: #f4f4f4;
}

.swagger-ui .b--white {
  border-color: #fff;
}

.swagger-ui .b--white-90 {
  border-color: hsla(0, 0%, 100%, 0.9);
}

.swagger-ui .b--white-80 {
  border-color: hsla(0, 0%, 100%, 0.8);
}

.swagger-ui .b--white-70 {
  border-color: hsla(0, 0%, 100%, 0.7);
}

.swagger-ui .b--white-60 {
  border-color: hsla(0, 0%, 100%, 0.6);
}

.swagger-ui .b--white-50 {
  border-color: hsla(0, 0%, 100%, 0.5);
}

.swagger-ui .b--white-40 {
  border-color: hsla(0, 0%, 100%, 0.4);
}

.swagger-ui .b--white-30 {
  border-color: hsla(0, 0%, 100%, 0.3);
}

.swagger-ui .b--white-20 {
  border-color: hsla(0, 0%, 100%, 0.2);
}

.swagger-ui .b--white-10 {
  border-color: hsla(0, 0%, 100%, 0.1);
}

.swagger-ui .b--white-05 {
  border-color: hsla(0, 0%, 100%, 0.05);
}

.swagger-ui .b--white-025 {
  border-color: hsla(0, 0%, 100%, 0.03);
}

.swagger-ui .b--white-0125 {
  border-color: hsla(0, 0%, 100%, 0.01);
}

.swagger-ui .b--black-90 {
  border-color: rgba(0, 0, 0, 0.9);
}

.swagger-ui .b--black-80 {
  border-color: rgba(0, 0, 0, 0.8);
}

.swagger-ui .b--black-70 {
  border-color: rgba(0, 0, 0, 0.7);
}

.swagger-ui .b--black-60 {
  border-color: rgba(0, 0, 0, 0.6);
}

.swagger-ui .b--black-50 {
  border-color: rgba(0, 0, 0, 0.5);
}

.swagger-ui .b--black-40 {
  border-color: rgba(0, 0, 0, 0.4);
}

.swagger-ui .b--black-30 {
  border-color: rgba(0, 0, 0, 0.3);
}

.swagger-ui .b--black-20 {
  border-color: rgba(0, 0, 0, 0.2);
}

.swagger-ui .b--black-10 {
  border-color: rgba(0, 0, 0, 0.1);
}

.swagger-ui .b--black-05 {
  border-color: rgba(0, 0, 0, 0.05);
}

.swagger-ui .b--black-025 {
  border-color: rgba(0, 0, 0, 0.03);
}

.swagger-ui .b--black-0125 {
  border-color: rgba(0, 0, 0, 0.01);
}

.swagger-ui .b--dark-red {
  border-color: #e7040f;
}

.swagger-ui .b--red {
  border-color: #ff4136;
}

.swagger-ui .b--light-red {
  border-color: #ff725c;
}

.swagger-ui .b--orange {
  border-color: #ff6300;
}

.swagger-ui .b--gold {
  border-color: #ffb700;
}

.swagger-ui .b--yellow {
  border-color: gold;
}

.swagger-ui .b--light-yellow {
  border-color: #fbf1a9;
}

.swagger-ui .b--purple {
  border-color: #5e2ca5;
}

.swagger-ui .b--light-purple {
  border-color: #a463f2;
}

.swagger-ui .b--dark-pink {
  border-color: #d5008f;
}

.swagger-ui .b--hot-pink {
  border-color: #ff41b4;
}

.swagger-ui .b--pink {
  border-color: #ff80cc;
}

.swagger-ui .b--light-pink {
  border-color: #ffa3d7;
}

.swagger-ui .b--dark-green {
  border-color: #137752;
}

.swagger-ui .b--green {
  border-color: #19a974;
}

.swagger-ui .b--light-green {
  border-color: #9eebcf;
}

.swagger-ui .b--navy {
  border-color: #001b44;
}

.swagger-ui .b--dark-blue {
  border-color: #00449e;
}

.swagger-ui .b--blue {
  border-color: #357edd;
}

.swagger-ui .b--light-blue {
  border-color: #96ccff;
}

.swagger-ui .b--lightest-blue {
  border-color: #cdecff;
}

.swagger-ui .b--washed-blue {
  border-color: #f6fffe;
}

.swagger-ui .b--washed-green {
  border-color: #e8fdf5;
}

.swagger-ui .b--washed-yellow {
  border-color: #fffceb;
}

.swagger-ui .b--washed-red {
  border-color: #ffdfdf;
}

.swagger-ui .b--transparent {
  border-color: transparent;
}

.swagger-ui .b--inherit {
  border-color: inherit;
}

.swagger-ui .br0 {
  border-radius: 0;
}

.swagger-ui .br1 {
  border-radius: 0.13rem;
}

.swagger-ui .br2 {
  border-radius: 0.25rem;
}

.swagger-ui .br3 {
  border-radius: 0.5rem;
}

.swagger-ui .br4 {
  border-radius: 1rem;
}

.swagger-ui .br-100 {
  border-radius: 100%;
}

.swagger-ui .br-pill {
  border-radius: 833.25em;
}

.swagger-ui .br--bottom {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.swagger-ui .br--top {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.swagger-ui .br--right {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.swagger-ui .br--left {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

@media screen and (min-width: 30em) {
  .swagger-ui .br0-ns {
    border-radius: 0;
  }
  .swagger-ui .br1-ns {
    border-radius: 0.13rem;
  }
  .swagger-ui .br2-ns {
    border-radius: 0.25rem;
  }
  .swagger-ui .br3-ns {
    border-radius: 0.5rem;
  }
  .swagger-ui .br4-ns {
    border-radius: 1rem;
  }
  .swagger-ui .br-100-ns {
    border-radius: 100%;
  }
  .swagger-ui .br-pill-ns {
    border-radius: 833.25em;
  }
  .swagger-ui .br--bottom-ns {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .swagger-ui .br--top-ns {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .swagger-ui .br--right-ns {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
  }
  .swagger-ui .br--left-ns {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
  }
}
@media screen and (min-width: 30em) and (max-width: 60em) {
  .swagger-ui .br0-m {
    border-radius: 0;
  }
  .swagger-ui .br1-m {
    border-radius: 0.13rem;
  }
  .swagger-ui .br2-m {
    border-radius: 0.25rem;
  }
  .swagger-ui .br3-m {
    border-radius: 0.5rem;
  }
  .swagger-ui .br4-m {
    border-radius: 1rem;
  }
  .swagger-ui .br-100-m {
    border-radius: 100%;
  }
  .swagger-ui .br-pill-m {
    border-radius: 833.25em;
  }
  .swagger-ui .br--bottom-m {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .swagger-ui .br--top-m {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .swagger-ui .br--right-m {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
  }
  .swagger-ui .br--left-m {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
  }
}
@media screen and (min-width: 60em) {
  .swagger-ui .br0-l {
    border-radius: 0;
  }
  .swagger-ui .br1-l {
    border-radius: 0.13rem;
  }
  .swagger-ui .br2-l {
    border-radius: 0.25rem;
  }
  .swagger-ui .br3-l {
    border-radius: 0.5rem;
  }
  .swagger-ui .br4-l {
    border-radius: 1rem;
  }
  .swagger-ui .br-100-l {
    border-radius: 100%;
  }
  .swagger-ui .br-pill-l {
    border-radius: 833.25em;
  }
  .swagger-ui .br--bottom-l {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .swagger-ui .br--top-l {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .swagger-ui .br--right-l {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
  }
  .swagger-ui .br--left-l {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
  }
}
.swagger-ui .b--dotted {
  border-style: dotted;
}

.swagger-ui .b--dashed {
  border-style: dashed;
}

.swagger-ui .b--solid {
  border-style: solid;
}

.swagger-ui .b--none {
  border-style: none;
}

@media screen and (min-width: 30em) {
  .swagger-ui .b--dotted-ns {
    border-style: dotted;
  }
  .swagger-ui .b--dashed-ns {
    border-style: dashed;
  }
  .swagger-ui .b--solid-ns {
    border-style: solid;
  }
  .swagger-ui .b--none-ns {
    border-style: none;
  }
}
@media screen and (min-width: 30em) and (max-width: 60em) {
  .swagger-ui .b--dotted-m {
    border-style: dotted;
  }
  .swagger-ui .b--dashed-m {
    border-style: dashed;
  }
  .swagger-ui .b--solid-m {
    border-style: solid;
  }
  .swagger-ui .b--none-m {
    border-style: none;
  }
}
@media screen and (min-width: 60em) {
  .swagger-ui .b--dotted-l {
    border-style: dotted;
  }
  .swagger-ui .b--dashed-l {
    border-style: dashed;
  }
  .swagger-ui .b--solid-l {
    border-style: solid;
  }
  .swagger-ui .b--none-l {
    border-style: none;
  }
}
.swagger-ui .bw0 {
  border-width: 0;
}

.swagger-ui .bw1 {
  border-width: 0.13rem;
}

.swagger-ui .bw2 {
  border-width: 0.25rem;
}

.swagger-ui .bw3 {
  border-width: 0.5rem;
}

.swagger-ui .bw4 {
  border-width: 1rem;
}

.swagger-ui .bw5 {
  border-width: 2rem;
}

.swagger-ui .bt-0 {
  border-top-width: 0;
}

.swagger-ui .br-0 {
  border-right-width: 0;
}

.swagger-ui .bb-0 {
  border-bottom-width: 0;
}

.swagger-ui .bl-0 {
  border-left-width: 0;
}

@media screen and (min-width: 30em) {
  .swagger-ui .bw0-ns {
    border-width: 0;
  }
  .swagger-ui .bw1-ns {
    border-width: 0.13rem;
  }
  .swagger-ui .bw2-ns {
    border-width: 0.25rem;
  }
  .swagger-ui .bw3-ns {
    border-width: 0.5rem;
  }
  .swagger-ui .bw4-ns {
    border-width: 1rem;
  }
  .swagger-ui .bw5-ns {
    border-width: 2rem;
  }
  .swagger-ui .bt-0-ns {
    border-top-width: 0;
  }
  .swagger-ui .br-0-ns {
    border-right-width: 0;
  }
  .swagger-ui .bb-0-ns {
    border-bottom-width: 0;
  }
  .swagger-ui .bl-0-ns {
    border-left-width: 0;
  }
}
@media screen and (min-width: 30em) and (max-width: 60em) {
  .swagger-ui .bw0-m {
    border-width: 0;
  }
  .swagger-ui .bw1-m {
    border-width: 0.13rem;
  }
  .swagger-ui .bw2-m {
    border-width: 0.25rem;
  }
  .swagger-ui .bw3-m {
    border-width: 0.5rem;
  }
  .swagger-ui .bw4-m {
    border-width: 1rem;
  }
  .swagger-ui .bw5-m {
    border-width: 2rem;
  }
  .swagger-ui .bt-0-m {
    border-top-width: 0;
  }
  .swagger-ui .br-0-m {
    border-right-width: 0;
  }
  .swagger-ui .bb-0-m {
    border-bottom-width: 0;
  }
  .swagger-ui .bl-0-m {
    border-left-width: 0;
  }
}
@media screen and (min-width: 60em) {
  .swagger-ui .bw0-l {
    border-width: 0;
  }
  .swagger-ui .bw1-l {
    border-width: 0.13rem;
  }
  .swagger-ui .bw2-l {
    border-width: 0.25rem;
  }
  .swagger-ui .bw3-l {
    border-width: 0.5rem;
  }
  .swagger-ui .bw4-l {
    border-width: 1rem;
  }
  .swagger-ui .bw5-l {
    border-width: 2rem;
  }
  .swagger-ui .bt-0-l {
    border-top-width: 0;
  }
  .swagger-ui .br-0-l {
    border-right-width: 0;
  }
  .swagger-ui .bb-0-l {
    border-bottom-width: 0;
  }
  .swagger-ui .bl-0-l {
    border-left-width: 0;
  }
}
.swagger-ui .shadow-1 {
  box-shadow: 0 0 0.33em 0.17em rgba(0, 0, 0, 0.2);
}

.swagger-ui .shadow-2 {
  box-shadow: 0 0 0.67em 0.17em rgba(0, 0, 0, 0.2);
}

.swagger-ui .shadow-3 {
  box-shadow: 0.17em 0.17em 0.33em 0.17em rgba(0, 0, 0, 0.2);
}

.swagger-ui .shadow-4 {
  box-shadow: 0.17em 0.17em 0.67em 0 rgba(0, 0, 0, 0.2);
}

.swagger-ui .shadow-5 {
  box-shadow: 0.33em 0.33em 0.67em 0 rgba(0, 0, 0, 0.2);
}

@media screen and (min-width: 30em) {
  .swagger-ui .shadow-1-ns {
    box-shadow: 0 0 0.33em 0.17em rgba(0, 0, 0, 0.2);
  }
  .swagger-ui .shadow-2-ns {
    box-shadow: 0 0 0.67em 0.17em rgba(0, 0, 0, 0.2);
  }
  .swagger-ui .shadow-3-ns {
    box-shadow: 0.17em 0.17em 0.33em 0.17em rgba(0, 0, 0, 0.2);
  }
  .swagger-ui .shadow-4-ns {
    box-shadow: 0.17em 0.17em 0.67em 0 rgba(0, 0, 0, 0.2);
  }
  .swagger-ui .shadow-5-ns {
    box-shadow: 0.33em 0.33em 0.67em 0 rgba(0, 0, 0, 0.2);
  }
}
@media screen and (min-width: 30em) and (max-width: 60em) {
  .swagger-ui .shadow-1-m {
    box-shadow: 0 0 0.33em 0.17em rgba(0, 0, 0, 0.2);
  }
  .swagger-ui .shadow-2-m {
    box-shadow: 0 0 0.67em 0.17em rgba(0, 0, 0, 0.2);
  }
  .swagger-ui .shadow-3-m {
    box-shadow: 0.17em 0.17em 0.33em 0.17em rgba(0, 0, 0, 0.2);
  }
  .swagger-ui .shadow-4-m {
    box-shadow: 0.17em 0.17em 0.67em 0 rgba(0, 0, 0, 0.2);
  }
  .swagger-ui .shadow-5-m {
    box-shadow: 0.33em 0.33em 0.67em 0 rgba(0, 0, 0, 0.2);
  }
}
@media screen and (min-width: 60em) {
  .swagger-ui .shadow-1-l {
    box-shadow: 0 0 0.33em 0.17em rgba(0, 0, 0, 0.2);
  }
  .swagger-ui .shadow-2-l {
    box-shadow: 0 0 0.67em 0.17em rgba(0, 0, 0, 0.2);
  }
  .swagger-ui .shadow-3-l {
    box-shadow: 0.17em 0.17em 0.33em 0.17em rgba(0, 0, 0, 0.2);
  }
  .swagger-ui .shadow-4-l {
    box-shadow: 0.17em 0.17em 0.67em 0 rgba(0, 0, 0, 0.2);
  }
  .swagger-ui .shadow-5-l {
    box-shadow: 0.33em 0.33em 0.67em 0 rgba(0, 0, 0, 0.2);
  }
}
.swagger-ui .top-0 {
  top: 0;
}

.swagger-ui .right-0 {
  right: 0;
}

.swagger-ui .bottom-0 {
  bottom: 0;
}

.swagger-ui .left-0 {
  left: 0;
}

.swagger-ui .top-1 {
  top: 1rem;
}

.swagger-ui .right-1 {
  right: 1rem;
}

.swagger-ui .bottom-1 {
  bottom: 1rem;
}

.swagger-ui .left-1 {
  left: 1rem;
}

.swagger-ui .top-2 {
  top: 2rem;
}

.swagger-ui .right-2 {
  right: 2rem;
}

.swagger-ui .bottom-2 {
  bottom: 2rem;
}

.swagger-ui .left-2 {
  left: 2rem;
}

.swagger-ui .top--1 {
  top: -1rem;
}

.swagger-ui .right--1 {
  right: -1rem;
}

.swagger-ui .bottom--1 {
  bottom: -1rem;
}

.swagger-ui .left--1 {
  left: -1rem;
}

.swagger-ui .top--2 {
  top: -2rem;
}

.swagger-ui .right--2 {
  right: -2rem;
}

.swagger-ui .bottom--2 {
  bottom: -2rem;
}

.swagger-ui .left--2 {
  left: -2rem;
}

.swagger-ui .absolute--fill {
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
}

@media screen and (min-width: 30em) {
  .swagger-ui .top-0-ns {
    top: 0;
  }
  .swagger-ui .left-0-ns {
    left: 0;
  }
  .swagger-ui .right-0-ns {
    right: 0;
  }
  .swagger-ui .bottom-0-ns {
    bottom: 0;
  }
  .swagger-ui .top-1-ns {
    top: 1rem;
  }
  .swagger-ui .left-1-ns {
    left: 1rem;
  }
  .swagger-ui .right-1-ns {
    right: 1rem;
  }
  .swagger-ui .bottom-1-ns {
    bottom: 1rem;
  }
  .swagger-ui .top-2-ns {
    top: 2rem;
  }
  .swagger-ui .left-2-ns {
    left: 2rem;
  }
  .swagger-ui .right-2-ns {
    right: 2rem;
  }
  .swagger-ui .bottom-2-ns {
    bottom: 2rem;
  }
  .swagger-ui .top--1-ns {
    top: -1rem;
  }
  .swagger-ui .right--1-ns {
    right: -1rem;
  }
  .swagger-ui .bottom--1-ns {
    bottom: -1rem;
  }
  .swagger-ui .left--1-ns {
    left: -1rem;
  }
  .swagger-ui .top--2-ns {
    top: -2rem;
  }
  .swagger-ui .right--2-ns {
    right: -2rem;
  }
  .swagger-ui .bottom--2-ns {
    bottom: -2rem;
  }
  .swagger-ui .left--2-ns {
    left: -2rem;
  }
  .swagger-ui .absolute--fill-ns {
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
  }
}
@media screen and (min-width: 30em) and (max-width: 60em) {
  .swagger-ui .top-0-m {
    top: 0;
  }
  .swagger-ui .left-0-m {
    left: 0;
  }
  .swagger-ui .right-0-m {
    right: 0;
  }
  .swagger-ui .bottom-0-m {
    bottom: 0;
  }
  .swagger-ui .top-1-m {
    top: 1rem;
  }
  .swagger-ui .left-1-m {
    left: 1rem;
  }
  .swagger-ui .right-1-m {
    right: 1rem;
  }
  .swagger-ui .bottom-1-m {
    bottom: 1rem;
  }
  .swagger-ui .top-2-m {
    top: 2rem;
  }
  .swagger-ui .left-2-m {
    left: 2rem;
  }
  .swagger-ui .right-2-m {
    right: 2rem;
  }
  .swagger-ui .bottom-2-m {
    bottom: 2rem;
  }
  .swagger-ui .top--1-m {
    top: -1rem;
  }
  .swagger-ui .right--1-m {
    right: -1rem;
  }
  .swagger-ui .bottom--1-m {
    bottom: -1rem;
  }
  .swagger-ui .left--1-m {
    left: -1rem;
  }
  .swagger-ui .top--2-m {
    top: -2rem;
  }
  .swagger-ui .right--2-m {
    right: -2rem;
  }
  .swagger-ui .bottom--2-m {
    bottom: -2rem;
  }
  .swagger-ui .left--2-m {
    left: -2rem;
  }
  .swagger-ui .absolute--fill-m {
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
  }
}
@media screen and (min-width: 60em) {
  .swagger-ui .top-0-l {
    top: 0;
  }
  .swagger-ui .left-0-l {
    left: 0;
  }
  .swagger-ui .right-0-l {
    right: 0;
  }
  .swagger-ui .bottom-0-l {
    bottom: 0;
  }
  .swagger-ui .top-1-l {
    top: 1rem;
  }
  .swagger-ui .left-1-l {
    left: 1rem;
  }
  .swagger-ui .right-1-l {
    right: 1rem;
  }
  .swagger-ui .bottom-1-l {
    bottom: 1rem;
  }
  .swagger-ui .top-2-l {
    top: 2rem;
  }
  .swagger-ui .left-2-l {
    left: 2rem;
  }
  .swagger-ui .right-2-l {
    right: 2rem;
  }
  .swagger-ui .bottom-2-l {
    bottom: 2rem;
  }
  .swagger-ui .top--1-l {
    top: -1rem;
  }
  .swagger-ui .right--1-l {
    right: -1rem;
  }
  .swagger-ui .bottom--1-l {
    bottom: -1rem;
  }
  .swagger-ui .left--1-l {
    left: -1rem;
  }
  .swagger-ui .top--2-l {
    top: -2rem;
  }
  .swagger-ui .right--2-l {
    right: -2rem;
  }
  .swagger-ui .bottom--2-l {
    bottom: -2rem;
  }
  .swagger-ui .left--2-l {
    left: -2rem;
  }
  .swagger-ui .absolute--fill-l {
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
  }
}
.swagger-ui .cf:after, .swagger-ui .cf:before {
  content: " ";
  display: table;
}

.swagger-ui .cf:after {
  clear: both;
}

.swagger-ui .cf {
  zoom: 1;
}

.swagger-ui .cl {
  clear: left;
}

.swagger-ui .cr {
  clear: right;
}

.swagger-ui .cb {
  clear: both;
}

.swagger-ui .cn {
  clear: none;
}

@media screen and (min-width: 30em) {
  .swagger-ui .cl-ns {
    clear: left;
  }
  .swagger-ui .cr-ns {
    clear: right;
  }
  .swagger-ui .cb-ns {
    clear: both;
  }
  .swagger-ui .cn-ns {
    clear: none;
  }
}
@media screen and (min-width: 30em) and (max-width: 60em) {
  .swagger-ui .cl-m {
    clear: left;
  }
  .swagger-ui .cr-m {
    clear: right;
  }
  .swagger-ui .cb-m {
    clear: both;
  }
  .swagger-ui .cn-m {
    clear: none;
  }
}
@media screen and (min-width: 60em) {
  .swagger-ui .cl-l {
    clear: left;
  }
  .swagger-ui .cr-l {
    clear: right;
  }
  .swagger-ui .cb-l {
    clear: both;
  }
  .swagger-ui .cn-l {
    clear: none;
  }
}
.swagger-ui .flex {
  display: flex;
}

.swagger-ui .inline-flex {
  display: inline-flex;
}

.swagger-ui .flex-auto {
  flex: 1 1 auto;
  min-height: 0;
  min-width: 0;
}

.swagger-ui .flex-none {
  flex: none;
}

.swagger-ui .flex-column {
  flex-direction: column;
}

.swagger-ui .flex-row {
  flex-direction: row;
}

.swagger-ui .flex-wrap {
  flex-wrap: wrap;
}

.swagger-ui .flex-nowrap {
  flex-wrap: nowrap;
}

.swagger-ui .flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.swagger-ui .flex-column-reverse {
  flex-direction: column-reverse;
}

.swagger-ui .flex-row-reverse {
  flex-direction: row-reverse;
}

.swagger-ui .items-start {
  align-items: flex-start;
}

.swagger-ui .items-end {
  align-items: flex-end;
}

.swagger-ui .items-center {
  align-items: center;
}

.swagger-ui .items-baseline {
  align-items: baseline;
}

.swagger-ui .items-stretch {
  align-items: stretch;
}

.swagger-ui .self-start {
  align-self: flex-start;
}

.swagger-ui .self-end {
  align-self: flex-end;
}

.swagger-ui .self-center {
  align-self: center;
}

.swagger-ui .self-baseline {
  align-self: baseline;
}

.swagger-ui .self-stretch {
  align-self: stretch;
}

.swagger-ui .justify-start {
  justify-content: flex-start;
}

.swagger-ui .justify-end {
  justify-content: flex-end;
}

.swagger-ui .justify-center {
  justify-content: center;
}

.swagger-ui .justify-between {
  justify-content: space-between;
}

.swagger-ui .justify-around {
  justify-content: space-around;
}

.swagger-ui .content-start {
  align-content: flex-start;
}

.swagger-ui .content-end {
  align-content: flex-end;
}

.swagger-ui .content-center {
  align-content: center;
}

.swagger-ui .content-between {
  align-content: space-between;
}

.swagger-ui .content-around {
  align-content: space-around;
}

.swagger-ui .content-stretch {
  align-content: stretch;
}

.swagger-ui .order-0 {
  order: 0;
}

.swagger-ui .order-1 {
  order: 1;
}

.swagger-ui .order-2 {
  order: 2;
}

.swagger-ui .order-3 {
  order: 3;
}

.swagger-ui .order-4 {
  order: 4;
}

.swagger-ui .order-5 {
  order: 5;
}

.swagger-ui .order-6 {
  order: 6;
}

.swagger-ui .order-7 {
  order: 7;
}

.swagger-ui .order-8 {
  order: 8;
}

.swagger-ui .order-last {
  order: 99999;
}

.swagger-ui .flex-grow-0 {
  flex-grow: 0;
}

.swagger-ui .flex-grow-1 {
  flex-grow: 1;
}

.swagger-ui .flex-shrink-0 {
  flex-shrink: 0;
}

.swagger-ui .flex-shrink-1 {
  flex-shrink: 1;
}

@media screen and (min-width: 30em) {
  .swagger-ui .flex-ns {
    display: flex;
  }
  .swagger-ui .inline-flex-ns {
    display: inline-flex;
  }
  .swagger-ui .flex-auto-ns {
    flex: 1 1 auto;
    min-height: 0;
    min-width: 0;
  }
  .swagger-ui .flex-none-ns {
    flex: none;
  }
  .swagger-ui .flex-column-ns {
    flex-direction: column;
  }
  .swagger-ui .flex-row-ns {
    flex-direction: row;
  }
  .swagger-ui .flex-wrap-ns {
    flex-wrap: wrap;
  }
  .swagger-ui .flex-nowrap-ns {
    flex-wrap: nowrap;
  }
  .swagger-ui .flex-wrap-reverse-ns {
    flex-wrap: wrap-reverse;
  }
  .swagger-ui .flex-column-reverse-ns {
    flex-direction: column-reverse;
  }
  .swagger-ui .flex-row-reverse-ns {
    flex-direction: row-reverse;
  }
  .swagger-ui .items-start-ns {
    align-items: flex-start;
  }
  .swagger-ui .items-end-ns {
    align-items: flex-end;
  }
  .swagger-ui .items-center-ns {
    align-items: center;
  }
  .swagger-ui .items-baseline-ns {
    align-items: baseline;
  }
  .swagger-ui .items-stretch-ns {
    align-items: stretch;
  }
  .swagger-ui .self-start-ns {
    align-self: flex-start;
  }
  .swagger-ui .self-end-ns {
    align-self: flex-end;
  }
  .swagger-ui .self-center-ns {
    align-self: center;
  }
  .swagger-ui .self-baseline-ns {
    align-self: baseline;
  }
  .swagger-ui .self-stretch-ns {
    align-self: stretch;
  }
  .swagger-ui .justify-start-ns {
    justify-content: flex-start;
  }
  .swagger-ui .justify-end-ns {
    justify-content: flex-end;
  }
  .swagger-ui .justify-center-ns {
    justify-content: center;
  }
  .swagger-ui .justify-between-ns {
    justify-content: space-between;
  }
  .swagger-ui .justify-around-ns {
    justify-content: space-around;
  }
  .swagger-ui .content-start-ns {
    align-content: flex-start;
  }
  .swagger-ui .content-end-ns {
    align-content: flex-end;
  }
  .swagger-ui .content-center-ns {
    align-content: center;
  }
  .swagger-ui .content-between-ns {
    align-content: space-between;
  }
  .swagger-ui .content-around-ns {
    align-content: space-around;
  }
  .swagger-ui .content-stretch-ns {
    align-content: stretch;
  }
  .swagger-ui .order-0-ns {
    order: 0;
  }
  .swagger-ui .order-1-ns {
    order: 1;
  }
  .swagger-ui .order-2-ns {
    order: 2;
  }
  .swagger-ui .order-3-ns {
    order: 3;
  }
  .swagger-ui .order-4-ns {
    order: 4;
  }
  .swagger-ui .order-5-ns {
    order: 5;
  }
  .swagger-ui .order-6-ns {
    order: 6;
  }
  .swagger-ui .order-7-ns {
    order: 7;
  }
  .swagger-ui .order-8-ns {
    order: 8;
  }
  .swagger-ui .order-last-ns {
    order: 99999;
  }
  .swagger-ui .flex-grow-0-ns {
    flex-grow: 0;
  }
  .swagger-ui .flex-grow-1-ns {
    flex-grow: 1;
  }
  .swagger-ui .flex-shrink-0-ns {
    flex-shrink: 0;
  }
  .swagger-ui .flex-shrink-1-ns {
    flex-shrink: 1;
  }
}
@media screen and (min-width: 30em) and (max-width: 60em) {
  .swagger-ui .flex-m {
    display: flex;
  }
  .swagger-ui .inline-flex-m {
    display: inline-flex;
  }
  .swagger-ui .flex-auto-m {
    flex: 1 1 auto;
    min-height: 0;
    min-width: 0;
  }
  .swagger-ui .flex-none-m {
    flex: none;
  }
  .swagger-ui .flex-column-m {
    flex-direction: column;
  }
  .swagger-ui .flex-row-m {
    flex-direction: row;
  }
  .swagger-ui .flex-wrap-m {
    flex-wrap: wrap;
  }
  .swagger-ui .flex-nowrap-m {
    flex-wrap: nowrap;
  }
  .swagger-ui .flex-wrap-reverse-m {
    flex-wrap: wrap-reverse;
  }
  .swagger-ui .flex-column-reverse-m {
    flex-direction: column-reverse;
  }
  .swagger-ui .flex-row-reverse-m {
    flex-direction: row-reverse;
  }
  .swagger-ui .items-start-m {
    align-items: flex-start;
  }
  .swagger-ui .items-end-m {
    align-items: flex-end;
  }
  .swagger-ui .items-center-m {
    align-items: center;
  }
  .swagger-ui .items-baseline-m {
    align-items: baseline;
  }
  .swagger-ui .items-stretch-m {
    align-items: stretch;
  }
  .swagger-ui .self-start-m {
    align-self: flex-start;
  }
  .swagger-ui .self-end-m {
    align-self: flex-end;
  }
  .swagger-ui .self-center-m {
    align-self: center;
  }
  .swagger-ui .self-baseline-m {
    align-self: baseline;
  }
  .swagger-ui .self-stretch-m {
    align-self: stretch;
  }
  .swagger-ui .justify-start-m {
    justify-content: flex-start;
  }
  .swagger-ui .justify-end-m {
    justify-content: flex-end;
  }
  .swagger-ui .justify-center-m {
    justify-content: center;
  }
  .swagger-ui .justify-between-m {
    justify-content: space-between;
  }
  .swagger-ui .justify-around-m {
    justify-content: space-around;
  }
  .swagger-ui .content-start-m {
    align-content: flex-start;
  }
  .swagger-ui .content-end-m {
    align-content: flex-end;
  }
  .swagger-ui .content-center-m {
    align-content: center;
  }
  .swagger-ui .content-between-m {
    align-content: space-between;
  }
  .swagger-ui .content-around-m {
    align-content: space-around;
  }
  .swagger-ui .content-stretch-m {
    align-content: stretch;
  }
  .swagger-ui .order-0-m {
    order: 0;
  }
  .swagger-ui .order-1-m {
    order: 1;
  }
  .swagger-ui .order-2-m {
    order: 2;
  }
  .swagger-ui .order-3-m {
    order: 3;
  }
  .swagger-ui .order-4-m {
    order: 4;
  }
  .swagger-ui .order-5-m {
    order: 5;
  }
  .swagger-ui .order-6-m {
    order: 6;
  }
  .swagger-ui .order-7-m {
    order: 7;
  }
  .swagger-ui .order-8-m {
    order: 8;
  }
  .swagger-ui .order-last-m {
    order: 99999;
  }
  .swagger-ui .flex-grow-0-m {
    flex-grow: 0;
  }
  .swagger-ui .flex-grow-1-m {
    flex-grow: 1;
  }
  .swagger-ui .flex-shrink-0-m {
    flex-shrink: 0;
  }
  .swagger-ui .flex-shrink-1-m {
    flex-shrink: 1;
  }
}
@media screen and (min-width: 60em) {
  .swagger-ui .flex-l {
    display: flex;
  }
  .swagger-ui .inline-flex-l {
    display: inline-flex;
  }
  .swagger-ui .flex-auto-l {
    flex: 1 1 auto;
    min-height: 0;
    min-width: 0;
  }
  .swagger-ui .flex-none-l {
    flex: none;
  }
  .swagger-ui .flex-column-l {
    flex-direction: column;
  }
  .swagger-ui .flex-row-l {
    flex-direction: row;
  }
  .swagger-ui .flex-wrap-l {
    flex-wrap: wrap;
  }
  .swagger-ui .flex-nowrap-l {
    flex-wrap: nowrap;
  }
  .swagger-ui .flex-wrap-reverse-l {
    flex-wrap: wrap-reverse;
  }
  .swagger-ui .flex-column-reverse-l {
    flex-direction: column-reverse;
  }
  .swagger-ui .flex-row-reverse-l {
    flex-direction: row-reverse;
  }
  .swagger-ui .items-start-l {
    align-items: flex-start;
  }
  .swagger-ui .items-end-l {
    align-items: flex-end;
  }
  .swagger-ui .items-center-l {
    align-items: center;
  }
  .swagger-ui .items-baseline-l {
    align-items: baseline;
  }
  .swagger-ui .items-stretch-l {
    align-items: stretch;
  }
  .swagger-ui .self-start-l {
    align-self: flex-start;
  }
  .swagger-ui .self-end-l {
    align-self: flex-end;
  }
  .swagger-ui .self-center-l {
    align-self: center;
  }
  .swagger-ui .self-baseline-l {
    align-self: baseline;
  }
  .swagger-ui .self-stretch-l {
    align-self: stretch;
  }
  .swagger-ui .justify-start-l {
    justify-content: flex-start;
  }
  .swagger-ui .justify-end-l {
    justify-content: flex-end;
  }
  .swagger-ui .justify-center-l {
    justify-content: center;
  }
  .swagger-ui .justify-between-l {
    justify-content: space-between;
  }
  .swagger-ui .justify-around-l {
    justify-content: space-around;
  }
  .swagger-ui .content-start-l {
    align-content: flex-start;
  }
  .swagger-ui .content-end-l {
    align-content: flex-end;
  }
  .swagger-ui .content-center-l {
    align-content: center;
  }
  .swagger-ui .content-between-l {
    align-content: space-between;
  }
  .swagger-ui .content-around-l {
    align-content: space-around;
  }
  .swagger-ui .content-stretch-l {
    align-content: stretch;
  }
  .swagger-ui .order-0-l {
    order: 0;
  }
  .swagger-ui .order-1-l {
    order: 1;
  }
  .swagger-ui .order-2-l {
    order: 2;
  }
  .swagger-ui .order-3-l {
    order: 3;
  }
  .swagger-ui .order-4-l {
    order: 4;
  }
  .swagger-ui .order-5-l {
    order: 5;
  }
  .swagger-ui .order-6-l {
    order: 6;
  }
  .swagger-ui .order-7-l {
    order: 7;
  }
  .swagger-ui .order-8-l {
    order: 8;
  }
  .swagger-ui .order-last-l {
    order: 99999;
  }
  .swagger-ui .flex-grow-0-l {
    flex-grow: 0;
  }
  .swagger-ui .flex-grow-1-l {
    flex-grow: 1;
  }
  .swagger-ui .flex-shrink-0-l {
    flex-shrink: 0;
  }
  .swagger-ui .flex-shrink-1-l {
    flex-shrink: 1;
  }
}
.swagger-ui .dn {
  display: none;
}

.swagger-ui .di {
  display: inline;
}

.swagger-ui .db {
  display: block;
}

.swagger-ui .dib {
  display: inline-block;
}

.swagger-ui .dit {
  display: inline-table;
}

.swagger-ui .dt {
  display: table;
}

.swagger-ui .dtc {
  display: table-cell;
}

.swagger-ui .dt-row {
  display: table-row;
}

.swagger-ui .dt-row-group {
  display: table-row-group;
}

.swagger-ui .dt-column {
  display: table-column;
}

.swagger-ui .dt-column-group {
  display: table-column-group;
}

.swagger-ui .dt--fixed {
  table-layout: fixed;
  width: 100%;
}

@media screen and (min-width: 30em) {
  .swagger-ui .dn-ns {
    display: none;
  }
  .swagger-ui .di-ns {
    display: inline;
  }
  .swagger-ui .db-ns {
    display: block;
  }
  .swagger-ui .dib-ns {
    display: inline-block;
  }
  .swagger-ui .dit-ns {
    display: inline-table;
  }
  .swagger-ui .dt-ns {
    display: table;
  }
  .swagger-ui .dtc-ns {
    display: table-cell;
  }
  .swagger-ui .dt-row-ns {
    display: table-row;
  }
  .swagger-ui .dt-row-group-ns {
    display: table-row-group;
  }
  .swagger-ui .dt-column-ns {
    display: table-column;
  }
  .swagger-ui .dt-column-group-ns {
    display: table-column-group;
  }
  .swagger-ui .dt--fixed-ns {
    table-layout: fixed;
    width: 100%;
  }
}
@media screen and (min-width: 30em) and (max-width: 60em) {
  .swagger-ui .dn-m {
    display: none;
  }
  .swagger-ui .di-m {
    display: inline;
  }
  .swagger-ui .db-m {
    display: block;
  }
  .swagger-ui .dib-m {
    display: inline-block;
  }
  .swagger-ui .dit-m {
    display: inline-table;
  }
  .swagger-ui .dt-m {
    display: table;
  }
  .swagger-ui .dtc-m {
    display: table-cell;
  }
  .swagger-ui .dt-row-m {
    display: table-row;
  }
  .swagger-ui .dt-row-group-m {
    display: table-row-group;
  }
  .swagger-ui .dt-column-m {
    display: table-column;
  }
  .swagger-ui .dt-column-group-m {
    display: table-column-group;
  }
  .swagger-ui .dt--fixed-m {
    table-layout: fixed;
    width: 100%;
  }
}
@media screen and (min-width: 60em) {
  .swagger-ui .dn-l {
    display: none;
  }
  .swagger-ui .di-l {
    display: inline;
  }
  .swagger-ui .db-l {
    display: block;
  }
  .swagger-ui .dib-l {
    display: inline-block;
  }
  .swagger-ui .dit-l {
    display: inline-table;
  }
  .swagger-ui .dt-l {
    display: table;
  }
  .swagger-ui .dtc-l {
    display: table-cell;
  }
  .swagger-ui .dt-row-l {
    display: table-row;
  }
  .swagger-ui .dt-row-group-l {
    display: table-row-group;
  }
  .swagger-ui .dt-column-l {
    display: table-column;
  }
  .swagger-ui .dt-column-group-l {
    display: table-column-group;
  }
  .swagger-ui .dt--fixed-l {
    table-layout: fixed;
    width: 100%;
  }
}
.swagger-ui .fl {
  _display: inline;
  float: left;
}

.swagger-ui .fr {
  _display: inline;
  float: right;
}

.swagger-ui .fn {
  float: none;
}

@media screen and (min-width: 30em) {
  .swagger-ui .fl-ns {
    _display: inline;
    float: left;
  }
  .swagger-ui .fr-ns {
    _display: inline;
    float: right;
  }
  .swagger-ui .fn-ns {
    float: none;
  }
}
@media screen and (min-width: 30em) and (max-width: 60em) {
  .swagger-ui .fl-m {
    _display: inline;
    float: left;
  }
  .swagger-ui .fr-m {
    _display: inline;
    float: right;
  }
  .swagger-ui .fn-m {
    float: none;
  }
}
@media screen and (min-width: 60em) {
  .swagger-ui .fl-l {
    _display: inline;
    float: left;
  }
  .swagger-ui .fr-l {
    _display: inline;
    float: right;
  }
  .swagger-ui .fn-l {
    float: none;
  }
}
.swagger-ui .sans-serif {
  font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica, helvetica neue, ubuntu, noto, segoe ui, arial, sans-serif;
}

.swagger-ui .serif {
  font-family: georgia, serif;
}

.swagger-ui .system-sans-serif {
  font-family: sans-serif;
}

.swagger-ui .system-serif {
  font-family: serif;
}

.swagger-ui .code, .swagger-ui code {
  font-family: Consolas, monaco, monospace;
}

.swagger-ui .courier {
  font-family: Courier Next, courier, monospace;
}

.swagger-ui .helvetica {
  font-family: helvetica neue, helvetica, sans-serif;
}

.swagger-ui .avenir {
  font-family: avenir next, avenir, sans-serif;
}

.swagger-ui .athelas {
  font-family: athelas, georgia, serif;
}

.swagger-ui .georgia {
  font-family: georgia, serif;
}

.swagger-ui .times {
  font-family: times, serif;
}

.swagger-ui .bodoni {
  font-family: Bodoni MT, serif;
}

.swagger-ui .calisto {
  font-family: Calisto MT, serif;
}

.swagger-ui .garamond {
  font-family: garamond, serif;
}

.swagger-ui .baskerville {
  font-family: baskerville, serif;
}

.swagger-ui .i {
  font-style: italic;
}

.swagger-ui .fs-normal {
  font-style: normal;
}

@media screen and (min-width: 30em) {
  .swagger-ui .i-ns {
    font-style: italic;
  }
  .swagger-ui .fs-normal-ns {
    font-style: normal;
  }
}
@media screen and (min-width: 30em) and (max-width: 60em) {
  .swagger-ui .i-m {
    font-style: italic;
  }
  .swagger-ui .fs-normal-m {
    font-style: normal;
  }
}
@media screen and (min-width: 60em) {
  .swagger-ui .i-l {
    font-style: italic;
  }
  .swagger-ui .fs-normal-l {
    font-style: normal;
  }
}
.swagger-ui .normal {
  font-weight: 400;
}

.swagger-ui .b {
  font-weight: 700;
}

.swagger-ui .fw1 {
  font-weight: 100;
}

.swagger-ui .fw2 {
  font-weight: 200;
}

.swagger-ui .fw3 {
  font-weight: 300;
}

.swagger-ui .fw4 {
  font-weight: 400;
}

.swagger-ui .fw5 {
  font-weight: 500;
}

.swagger-ui .fw6 {
  font-weight: 600;
}

.swagger-ui .fw7 {
  font-weight: 700;
}

.swagger-ui .fw8 {
  font-weight: 800;
}

.swagger-ui .fw9 {
  font-weight: 900;
}

@media screen and (min-width: 30em) {
  .swagger-ui .normal-ns {
    font-weight: 400;
  }
  .swagger-ui .b-ns {
    font-weight: 700;
  }
  .swagger-ui .fw1-ns {
    font-weight: 100;
  }
  .swagger-ui .fw2-ns {
    font-weight: 200;
  }
  .swagger-ui .fw3-ns {
    font-weight: 300;
  }
  .swagger-ui .fw4-ns {
    font-weight: 400;
  }
  .swagger-ui .fw5-ns {
    font-weight: 500;
  }
  .swagger-ui .fw6-ns {
    font-weight: 600;
  }
  .swagger-ui .fw7-ns {
    font-weight: 700;
  }
  .swagger-ui .fw8-ns {
    font-weight: 800;
  }
  .swagger-ui .fw9-ns {
    font-weight: 900;
  }
}
@media screen and (min-width: 30em) and (max-width: 60em) {
  .swagger-ui .normal-m {
    font-weight: 400;
  }
  .swagger-ui .b-m {
    font-weight: 700;
  }
  .swagger-ui .fw1-m {
    font-weight: 100;
  }
  .swagger-ui .fw2-m {
    font-weight: 200;
  }
  .swagger-ui .fw3-m {
    font-weight: 300;
  }
  .swagger-ui .fw4-m {
    font-weight: 400;
  }
  .swagger-ui .fw5-m {
    font-weight: 500;
  }
  .swagger-ui .fw6-m {
    font-weight: 600;
  }
  .swagger-ui .fw7-m {
    font-weight: 700;
  }
  .swagger-ui .fw8-m {
    font-weight: 800;
  }
  .swagger-ui .fw9-m {
    font-weight: 900;
  }
}
@media screen and (min-width: 60em) {
  .swagger-ui .normal-l {
    font-weight: 400;
  }
  .swagger-ui .b-l {
    font-weight: 700;
  }
  .swagger-ui .fw1-l {
    font-weight: 100;
  }
  .swagger-ui .fw2-l {
    font-weight: 200;
  }
  .swagger-ui .fw3-l {
    font-weight: 300;
  }
  .swagger-ui .fw4-l {
    font-weight: 400;
  }
  .swagger-ui .fw5-l {
    font-weight: 500;
  }
  .swagger-ui .fw6-l {
    font-weight: 600;
  }
  .swagger-ui .fw7-l {
    font-weight: 700;
  }
  .swagger-ui .fw8-l {
    font-weight: 800;
  }
  .swagger-ui .fw9-l {
    font-weight: 900;
  }
}
.swagger-ui .input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
}

.swagger-ui .button-reset::-moz-focus-inner, .swagger-ui .input-reset::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.swagger-ui .h1 {
  height: 1rem;
}

.swagger-ui .h2 {
  height: 2rem;
}

.swagger-ui .h3 {
  height: 4rem;
}

.swagger-ui .h4 {
  height: 8rem;
}

.swagger-ui .h5 {
  height: 16rem;
}

.swagger-ui .h-25 {
  height: 25%;
}

.swagger-ui .h-50 {
  height: 50%;
}

.swagger-ui .h-75 {
  height: 75%;
}

.swagger-ui .h-100 {
  height: 100%;
}

.swagger-ui .min-h-100 {
  min-height: 100%;
}

.swagger-ui .vh-25 {
  height: 25vh;
}

.swagger-ui .vh-50 {
  height: 50vh;
}

.swagger-ui .vh-75 {
  height: 75vh;
}

.swagger-ui .vh-100 {
  height: 100vh;
}

.swagger-ui .min-vh-100 {
  min-height: 100vh;
}

.swagger-ui .h-auto {
  height: auto;
}

.swagger-ui .h-inherit {
  height: inherit;
}

@media screen and (min-width: 30em) {
  .swagger-ui .h1-ns {
    height: 1rem;
  }
  .swagger-ui .h2-ns {
    height: 2rem;
  }
  .swagger-ui .h3-ns {
    height: 4rem;
  }
  .swagger-ui .h4-ns {
    height: 8rem;
  }
  .swagger-ui .h5-ns {
    height: 16rem;
  }
  .swagger-ui .h-25-ns {
    height: 25%;
  }
  .swagger-ui .h-50-ns {
    height: 50%;
  }
  .swagger-ui .h-75-ns {
    height: 75%;
  }
  .swagger-ui .h-100-ns {
    height: 100%;
  }
  .swagger-ui .min-h-100-ns {
    min-height: 100%;
  }
  .swagger-ui .vh-25-ns {
    height: 25vh;
  }
  .swagger-ui .vh-50-ns {
    height: 50vh;
  }
  .swagger-ui .vh-75-ns {
    height: 75vh;
  }
  .swagger-ui .vh-100-ns {
    height: 100vh;
  }
  .swagger-ui .min-vh-100-ns {
    min-height: 100vh;
  }
  .swagger-ui .h-auto-ns {
    height: auto;
  }
  .swagger-ui .h-inherit-ns {
    height: inherit;
  }
}
@media screen and (min-width: 30em) and (max-width: 60em) {
  .swagger-ui .h1-m {
    height: 1rem;
  }
  .swagger-ui .h2-m {
    height: 2rem;
  }
  .swagger-ui .h3-m {
    height: 4rem;
  }
  .swagger-ui .h4-m {
    height: 8rem;
  }
  .swagger-ui .h5-m {
    height: 16rem;
  }
  .swagger-ui .h-25-m {
    height: 25%;
  }
  .swagger-ui .h-50-m {
    height: 50%;
  }
  .swagger-ui .h-75-m {
    height: 75%;
  }
  .swagger-ui .h-100-m {
    height: 100%;
  }
  .swagger-ui .min-h-100-m {
    min-height: 100%;
  }
  .swagger-ui .vh-25-m {
    height: 25vh;
  }
  .swagger-ui .vh-50-m {
    height: 50vh;
  }
  .swagger-ui .vh-75-m {
    height: 75vh;
  }
  .swagger-ui .vh-100-m {
    height: 100vh;
  }
  .swagger-ui .min-vh-100-m {
    min-height: 100vh;
  }
  .swagger-ui .h-auto-m {
    height: auto;
  }
  .swagger-ui .h-inherit-m {
    height: inherit;
  }
}
@media screen and (min-width: 60em) {
  .swagger-ui .h1-l {
    height: 1rem;
  }
  .swagger-ui .h2-l {
    height: 2rem;
  }
  .swagger-ui .h3-l {
    height: 4rem;
  }
  .swagger-ui .h4-l {
    height: 8rem;
  }
  .swagger-ui .h5-l {
    height: 16rem;
  }
  .swagger-ui .h-25-l {
    height: 25%;
  }
  .swagger-ui .h-50-l {
    height: 50%;
  }
  .swagger-ui .h-75-l {
    height: 75%;
  }
  .swagger-ui .h-100-l {
    height: 100%;
  }
  .swagger-ui .min-h-100-l {
    min-height: 100%;
  }
  .swagger-ui .vh-25-l {
    height: 25vh;
  }
  .swagger-ui .vh-50-l {
    height: 50vh;
  }
  .swagger-ui .vh-75-l {
    height: 75vh;
  }
  .swagger-ui .vh-100-l {
    height: 100vh;
  }
  .swagger-ui .min-vh-100-l {
    min-height: 100vh;
  }
  .swagger-ui .h-auto-l {
    height: auto;
  }
  .swagger-ui .h-inherit-l {
    height: inherit;
  }
}
.swagger-ui .tracked {
  letter-spacing: 0.1em;
}

.swagger-ui .tracked-tight {
  letter-spacing: -0.05em;
}

.swagger-ui .tracked-mega {
  letter-spacing: 0.25em;
}

@media screen and (min-width: 30em) {
  .swagger-ui .tracked-ns {
    letter-spacing: 0.1em;
  }
  .swagger-ui .tracked-tight-ns {
    letter-spacing: -0.05em;
  }
  .swagger-ui .tracked-mega-ns {
    letter-spacing: 0.25em;
  }
}
@media screen and (min-width: 30em) and (max-width: 60em) {
  .swagger-ui .tracked-m {
    letter-spacing: 0.1em;
  }
  .swagger-ui .tracked-tight-m {
    letter-spacing: -0.05em;
  }
  .swagger-ui .tracked-mega-m {
    letter-spacing: 0.25em;
  }
}
@media screen and (min-width: 60em) {
  .swagger-ui .tracked-l {
    letter-spacing: 0.1em;
  }
  .swagger-ui .tracked-tight-l {
    letter-spacing: -0.05em;
  }
  .swagger-ui .tracked-mega-l {
    letter-spacing: 0.25em;
  }
}
.swagger-ui .lh-solid {
  line-height: 1;
}

.swagger-ui .lh-title {
  line-height: 1.25;
}

.swagger-ui .lh-copy {
  line-height: 1.5;
}

@media screen and (min-width: 30em) {
  .swagger-ui .lh-solid-ns {
    line-height: 1;
  }
  .swagger-ui .lh-title-ns {
    line-height: 1.25;
  }
  .swagger-ui .lh-copy-ns {
    line-height: 1.5;
  }
}
@media screen and (min-width: 30em) and (max-width: 60em) {
  .swagger-ui .lh-solid-m {
    line-height: 1;
  }
  .swagger-ui .lh-title-m {
    line-height: 1.25;
  }
  .swagger-ui .lh-copy-m {
    line-height: 1.5;
  }
}
@media screen and (min-width: 60em) {
  .swagger-ui .lh-solid-l {
    line-height: 1;
  }
  .swagger-ui .lh-title-l {
    line-height: 1.25;
  }
  .swagger-ui .lh-copy-l {
    line-height: 1.5;
  }
}
.swagger-ui .link {
  text-decoration: none;
}

.swagger-ui .link, .swagger-ui .link:active, .swagger-ui .link:focus, .swagger-ui .link:hover, .swagger-ui .link:link, .swagger-ui .link:visited {
  transition: color 0.15s ease-in;
}

.swagger-ui .link:focus {
  outline: 0.08em dotted currentColor;
}

.swagger-ui .list {
  list-style-type: none;
}

.swagger-ui .mw-100 {
  max-width: 100%;
}

.swagger-ui .mw1 {
  max-width: 1rem;
}

.swagger-ui .mw2 {
  max-width: 2rem;
}

.swagger-ui .mw3 {
  max-width: 4rem;
}

.swagger-ui .mw4 {
  max-width: 8rem;
}

.swagger-ui .mw5 {
  max-width: 16rem;
}

.swagger-ui .mw6 {
  max-width: 32rem;
}

.swagger-ui .mw7 {
  max-width: 48rem;
}

.swagger-ui .mw8 {
  max-width: 64rem;
}

.swagger-ui .mw9 {
  max-width: 96rem;
}

.swagger-ui .mw-none {
  max-width: none;
}

@media screen and (min-width: 30em) {
  .swagger-ui .mw-100-ns {
    max-width: 100%;
  }
  .swagger-ui .mw1-ns {
    max-width: 1rem;
  }
  .swagger-ui .mw2-ns {
    max-width: 2rem;
  }
  .swagger-ui .mw3-ns {
    max-width: 4rem;
  }
  .swagger-ui .mw4-ns {
    max-width: 8rem;
  }
  .swagger-ui .mw5-ns {
    max-width: 16rem;
  }
  .swagger-ui .mw6-ns {
    max-width: 32rem;
  }
  .swagger-ui .mw7-ns {
    max-width: 48rem;
  }
  .swagger-ui .mw8-ns {
    max-width: 64rem;
  }
  .swagger-ui .mw9-ns {
    max-width: 96rem;
  }
  .swagger-ui .mw-none-ns {
    max-width: none;
  }
}
@media screen and (min-width: 30em) and (max-width: 60em) {
  .swagger-ui .mw-100-m {
    max-width: 100%;
  }
  .swagger-ui .mw1-m {
    max-width: 1rem;
  }
  .swagger-ui .mw2-m {
    max-width: 2rem;
  }
  .swagger-ui .mw3-m {
    max-width: 4rem;
  }
  .swagger-ui .mw4-m {
    max-width: 8rem;
  }
  .swagger-ui .mw5-m {
    max-width: 16rem;
  }
  .swagger-ui .mw6-m {
    max-width: 32rem;
  }
  .swagger-ui .mw7-m {
    max-width: 48rem;
  }
  .swagger-ui .mw8-m {
    max-width: 64rem;
  }
  .swagger-ui .mw9-m {
    max-width: 96rem;
  }
  .swagger-ui .mw-none-m {
    max-width: none;
  }
}
@media screen and (min-width: 60em) {
  .swagger-ui .mw-100-l {
    max-width: 100%;
  }
  .swagger-ui .mw1-l {
    max-width: 1rem;
  }
  .swagger-ui .mw2-l {
    max-width: 2rem;
  }
  .swagger-ui .mw3-l {
    max-width: 4rem;
  }
  .swagger-ui .mw4-l {
    max-width: 8rem;
  }
  .swagger-ui .mw5-l {
    max-width: 16rem;
  }
  .swagger-ui .mw6-l {
    max-width: 32rem;
  }
  .swagger-ui .mw7-l {
    max-width: 48rem;
  }
  .swagger-ui .mw8-l {
    max-width: 64rem;
  }
  .swagger-ui .mw9-l {
    max-width: 96rem;
  }
  .swagger-ui .mw-none-l {
    max-width: none;
  }
}
.swagger-ui .w1 {
  width: 1rem;
}

.swagger-ui .w2 {
  width: 2rem;
}

.swagger-ui .w3 {
  width: 4rem;
}

.swagger-ui .w4 {
  width: 8rem;
}

.swagger-ui .w5 {
  width: 16rem;
}

.swagger-ui .w-10 {
  width: 10%;
}

.swagger-ui .w-20 {
  width: 20%;
}

.swagger-ui .w-25 {
  width: 25%;
}

.swagger-ui .w-30 {
  width: 30%;
}

.swagger-ui .w-33 {
  width: 33%;
}

.swagger-ui .w-34 {
  width: 34%;
}

.swagger-ui .w-40 {
  width: 40%;
}

.swagger-ui .w-50 {
  width: 50%;
}

.swagger-ui .w-60 {
  width: 60%;
}

.swagger-ui .w-70 {
  width: 70%;
}

.swagger-ui .w-75 {
  width: 75%;
}

.swagger-ui .w-80 {
  width: 80%;
}

.swagger-ui .w-90 {
  width: 90%;
}

.swagger-ui .w-100 {
  width: 100%;
}

.swagger-ui .w-third {
  width: 33.3333333333%;
}

.swagger-ui .w-two-thirds {
  width: 66.6666666667%;
}

.swagger-ui .w-auto {
  width: auto;
}

@media screen and (min-width: 30em) {
  .swagger-ui .w1-ns {
    width: 1rem;
  }
  .swagger-ui .w2-ns {
    width: 2rem;
  }
  .swagger-ui .w3-ns {
    width: 4rem;
  }
  .swagger-ui .w4-ns {
    width: 8rem;
  }
  .swagger-ui .w5-ns {
    width: 16rem;
  }
  .swagger-ui .w-10-ns {
    width: 10%;
  }
  .swagger-ui .w-20-ns {
    width: 20%;
  }
  .swagger-ui .w-25-ns {
    width: 25%;
  }
  .swagger-ui .w-30-ns {
    width: 30%;
  }
  .swagger-ui .w-33-ns {
    width: 33%;
  }
  .swagger-ui .w-34-ns {
    width: 34%;
  }
  .swagger-ui .w-40-ns {
    width: 40%;
  }
  .swagger-ui .w-50-ns {
    width: 50%;
  }
  .swagger-ui .w-60-ns {
    width: 60%;
  }
  .swagger-ui .w-70-ns {
    width: 70%;
  }
  .swagger-ui .w-75-ns {
    width: 75%;
  }
  .swagger-ui .w-80-ns {
    width: 80%;
  }
  .swagger-ui .w-90-ns {
    width: 90%;
  }
  .swagger-ui .w-100-ns {
    width: 100%;
  }
  .swagger-ui .w-third-ns {
    width: 33.3333333333%;
  }
  .swagger-ui .w-two-thirds-ns {
    width: 66.6666666667%;
  }
  .swagger-ui .w-auto-ns {
    width: auto;
  }
}
@media screen and (min-width: 30em) and (max-width: 60em) {
  .swagger-ui .w1-m {
    width: 1rem;
  }
  .swagger-ui .w2-m {
    width: 2rem;
  }
  .swagger-ui .w3-m {
    width: 4rem;
  }
  .swagger-ui .w4-m {
    width: 8rem;
  }
  .swagger-ui .w5-m {
    width: 16rem;
  }
  .swagger-ui .w-10-m {
    width: 10%;
  }
  .swagger-ui .w-20-m {
    width: 20%;
  }
  .swagger-ui .w-25-m {
    width: 25%;
  }
  .swagger-ui .w-30-m {
    width: 30%;
  }
  .swagger-ui .w-33-m {
    width: 33%;
  }
  .swagger-ui .w-34-m {
    width: 34%;
  }
  .swagger-ui .w-40-m {
    width: 40%;
  }
  .swagger-ui .w-50-m {
    width: 50%;
  }
  .swagger-ui .w-60-m {
    width: 60%;
  }
  .swagger-ui .w-70-m {
    width: 70%;
  }
  .swagger-ui .w-75-m {
    width: 75%;
  }
  .swagger-ui .w-80-m {
    width: 80%;
  }
  .swagger-ui .w-90-m {
    width: 90%;
  }
  .swagger-ui .w-100-m {
    width: 100%;
  }
  .swagger-ui .w-third-m {
    width: 33.3333333333%;
  }
  .swagger-ui .w-two-thirds-m {
    width: 66.6666666667%;
  }
  .swagger-ui .w-auto-m {
    width: auto;
  }
}
@media screen and (min-width: 60em) {
  .swagger-ui .w1-l {
    width: 1rem;
  }
  .swagger-ui .w2-l {
    width: 2rem;
  }
  .swagger-ui .w3-l {
    width: 4rem;
  }
  .swagger-ui .w4-l {
    width: 8rem;
  }
  .swagger-ui .w5-l {
    width: 16rem;
  }
  .swagger-ui .w-10-l {
    width: 10%;
  }
  .swagger-ui .w-20-l {
    width: 20%;
  }
  .swagger-ui .w-25-l {
    width: 25%;
  }
  .swagger-ui .w-30-l {
    width: 30%;
  }
  .swagger-ui .w-33-l {
    width: 33%;
  }
  .swagger-ui .w-34-l {
    width: 34%;
  }
  .swagger-ui .w-40-l {
    width: 40%;
  }
  .swagger-ui .w-50-l {
    width: 50%;
  }
  .swagger-ui .w-60-l {
    width: 60%;
  }
  .swagger-ui .w-70-l {
    width: 70%;
  }
  .swagger-ui .w-75-l {
    width: 75%;
  }
  .swagger-ui .w-80-l {
    width: 80%;
  }
  .swagger-ui .w-90-l {
    width: 90%;
  }
  .swagger-ui .w-100-l {
    width: 100%;
  }
  .swagger-ui .w-third-l {
    width: 33.3333333333%;
  }
  .swagger-ui .w-two-thirds-l {
    width: 66.6666666667%;
  }
  .swagger-ui .w-auto-l {
    width: auto;
  }
}
.swagger-ui .overflow-visible {
  overflow: visible;
}

.swagger-ui .overflow-hidden {
  overflow: hidden;
}

.swagger-ui .overflow-scroll {
  overflow: scroll;
}

.swagger-ui .overflow-auto {
  overflow: auto;
}

.swagger-ui .overflow-x-visible {
  overflow-x: visible;
}

.swagger-ui .overflow-x-hidden {
  overflow-x: hidden;
}

.swagger-ui .overflow-x-scroll {
  overflow-x: scroll;
}

.swagger-ui .overflow-x-auto {
  overflow-x: auto;
}

.swagger-ui .overflow-y-visible {
  overflow-y: visible;
}

.swagger-ui .overflow-y-hidden {
  overflow-y: hidden;
}

.swagger-ui .overflow-y-scroll {
  overflow-y: scroll;
}

.swagger-ui .overflow-y-auto {
  overflow-y: auto;
}

@media screen and (min-width: 30em) {
  .swagger-ui .overflow-visible-ns {
    overflow: visible;
  }
  .swagger-ui .overflow-hidden-ns {
    overflow: hidden;
  }
  .swagger-ui .overflow-scroll-ns {
    overflow: scroll;
  }
  .swagger-ui .overflow-auto-ns {
    overflow: auto;
  }
  .swagger-ui .overflow-x-visible-ns {
    overflow-x: visible;
  }
  .swagger-ui .overflow-x-hidden-ns {
    overflow-x: hidden;
  }
  .swagger-ui .overflow-x-scroll-ns {
    overflow-x: scroll;
  }
  .swagger-ui .overflow-x-auto-ns {
    overflow-x: auto;
  }
  .swagger-ui .overflow-y-visible-ns {
    overflow-y: visible;
  }
  .swagger-ui .overflow-y-hidden-ns {
    overflow-y: hidden;
  }
  .swagger-ui .overflow-y-scroll-ns {
    overflow-y: scroll;
  }
  .swagger-ui .overflow-y-auto-ns {
    overflow-y: auto;
  }
}
@media screen and (min-width: 30em) and (max-width: 60em) {
  .swagger-ui .overflow-visible-m {
    overflow: visible;
  }
  .swagger-ui .overflow-hidden-m {
    overflow: hidden;
  }
  .swagger-ui .overflow-scroll-m {
    overflow: scroll;
  }
  .swagger-ui .overflow-auto-m {
    overflow: auto;
  }
  .swagger-ui .overflow-x-visible-m {
    overflow-x: visible;
  }
  .swagger-ui .overflow-x-hidden-m {
    overflow-x: hidden;
  }
  .swagger-ui .overflow-x-scroll-m {
    overflow-x: scroll;
  }
  .swagger-ui .overflow-x-auto-m {
    overflow-x: auto;
  }
  .swagger-ui .overflow-y-visible-m {
    overflow-y: visible;
  }
  .swagger-ui .overflow-y-hidden-m {
    overflow-y: hidden;
  }
  .swagger-ui .overflow-y-scroll-m {
    overflow-y: scroll;
  }
  .swagger-ui .overflow-y-auto-m {
    overflow-y: auto;
  }
}
@media screen and (min-width: 60em) {
  .swagger-ui .overflow-visible-l {
    overflow: visible;
  }
  .swagger-ui .overflow-hidden-l {
    overflow: hidden;
  }
  .swagger-ui .overflow-scroll-l {
    overflow: scroll;
  }
  .swagger-ui .overflow-auto-l {
    overflow: auto;
  }
  .swagger-ui .overflow-x-visible-l {
    overflow-x: visible;
  }
  .swagger-ui .overflow-x-hidden-l {
    overflow-x: hidden;
  }
  .swagger-ui .overflow-x-scroll-l {
    overflow-x: scroll;
  }
  .swagger-ui .overflow-x-auto-l {
    overflow-x: auto;
  }
  .swagger-ui .overflow-y-visible-l {
    overflow-y: visible;
  }
  .swagger-ui .overflow-y-hidden-l {
    overflow-y: hidden;
  }
  .swagger-ui .overflow-y-scroll-l {
    overflow-y: scroll;
  }
  .swagger-ui .overflow-y-auto-l {
    overflow-y: auto;
  }
}
.swagger-ui .static {
  position: static;
}

.swagger-ui .relative {
  position: relative;
}

.swagger-ui .absolute {
  position: absolute;
}

.swagger-ui .fixed {
  position: fixed;
}

@media screen and (min-width: 30em) {
  .swagger-ui .static-ns {
    position: static;
  }
  .swagger-ui .relative-ns {
    position: relative;
  }
  .swagger-ui .absolute-ns {
    position: absolute;
  }
  .swagger-ui .fixed-ns {
    position: fixed;
  }
}
@media screen and (min-width: 30em) and (max-width: 60em) {
  .swagger-ui .static-m {
    position: static;
  }
  .swagger-ui .relative-m {
    position: relative;
  }
  .swagger-ui .absolute-m {
    position: absolute;
  }
  .swagger-ui .fixed-m {
    position: fixed;
  }
}
@media screen and (min-width: 60em) {
  .swagger-ui .static-l {
    position: static;
  }
  .swagger-ui .relative-l {
    position: relative;
  }
  .swagger-ui .absolute-l {
    position: absolute;
  }
  .swagger-ui .fixed-l {
    position: fixed;
  }
}
.swagger-ui .o-100 {
  opacity: 1;
}

.swagger-ui .o-90 {
  opacity: 0.9;
}

.swagger-ui .o-80 {
  opacity: 0.8;
}

.swagger-ui .o-70 {
  opacity: 0.7;
}

.swagger-ui .o-60 {
  opacity: 0.6;
}

.swagger-ui .o-50 {
  opacity: 0.5;
}

.swagger-ui .o-40 {
  opacity: 0.4;
}

.swagger-ui .o-30 {
  opacity: 0.3;
}

.swagger-ui .o-20 {
  opacity: 0.2;
}

.swagger-ui .o-10 {
  opacity: 0.1;
}

.swagger-ui .o-05 {
  opacity: 0.05;
}

.swagger-ui .o-025 {
  opacity: 0.025;
}

.swagger-ui .o-0 {
  opacity: 0;
}

.swagger-ui .rotate-45 {
  transform: rotate(45deg);
}

.swagger-ui .rotate-90 {
  transform: rotate(90deg);
}

.swagger-ui .rotate-135 {
  transform: rotate(135deg);
}

.swagger-ui .rotate-180 {
  transform: rotate(180deg);
}

.swagger-ui .rotate-225 {
  transform: rotate(225deg);
}

.swagger-ui .rotate-270 {
  transform: rotate(270deg);
}

.swagger-ui .rotate-315 {
  transform: rotate(315deg);
}

@media screen and (min-width: 30em) {
  .swagger-ui .rotate-45-ns {
    transform: rotate(45deg);
  }
  .swagger-ui .rotate-90-ns {
    transform: rotate(90deg);
  }
  .swagger-ui .rotate-135-ns {
    transform: rotate(135deg);
  }
  .swagger-ui .rotate-180-ns {
    transform: rotate(180deg);
  }
  .swagger-ui .rotate-225-ns {
    transform: rotate(225deg);
  }
  .swagger-ui .rotate-270-ns {
    transform: rotate(270deg);
  }
  .swagger-ui .rotate-315-ns {
    transform: rotate(315deg);
  }
}
@media screen and (min-width: 30em) and (max-width: 60em) {
  .swagger-ui .rotate-45-m {
    transform: rotate(45deg);
  }
  .swagger-ui .rotate-90-m {
    transform: rotate(90deg);
  }
  .swagger-ui .rotate-135-m {
    transform: rotate(135deg);
  }
  .swagger-ui .rotate-180-m {
    transform: rotate(180deg);
  }
  .swagger-ui .rotate-225-m {
    transform: rotate(225deg);
  }
  .swagger-ui .rotate-270-m {
    transform: rotate(270deg);
  }
  .swagger-ui .rotate-315-m {
    transform: rotate(315deg);
  }
}
@media screen and (min-width: 60em) {
  .swagger-ui .rotate-45-l {
    transform: rotate(45deg);
  }
  .swagger-ui .rotate-90-l {
    transform: rotate(90deg);
  }
  .swagger-ui .rotate-135-l {
    transform: rotate(135deg);
  }
  .swagger-ui .rotate-180-l {
    transform: rotate(180deg);
  }
  .swagger-ui .rotate-225-l {
    transform: rotate(225deg);
  }
  .swagger-ui .rotate-270-l {
    transform: rotate(270deg);
  }
  .swagger-ui .rotate-315-l {
    transform: rotate(315deg);
  }
}
.swagger-ui .black-90 {
  color: rgba(0, 0, 0, 0.9);
}

.swagger-ui .black-80 {
  color: rgba(0, 0, 0, 0.8);
}

.swagger-ui .black-70 {
  color: rgba(0, 0, 0, 0.7);
}

.swagger-ui .black-60 {
  color: rgba(0, 0, 0, 0.6);
}

.swagger-ui .black-50 {
  color: rgba(0, 0, 0, 0.5);
}

.swagger-ui .black-40 {
  color: rgba(0, 0, 0, 0.4);
}

.swagger-ui .black-30 {
  color: rgba(0, 0, 0, 0.3);
}

.swagger-ui .black-20 {
  color: rgba(0, 0, 0, 0.2);
}

.swagger-ui .black-10 {
  color: rgba(0, 0, 0, 0.1);
}

.swagger-ui .black-05 {
  color: rgba(0, 0, 0, 0.05);
}

.swagger-ui .white-90 {
  color: hsla(0, 0%, 100%, 0.9);
}

.swagger-ui .white-80 {
  color: hsla(0, 0%, 100%, 0.8);
}

.swagger-ui .white-70 {
  color: hsla(0, 0%, 100%, 0.7);
}

.swagger-ui .white-60 {
  color: hsla(0, 0%, 100%, 0.6);
}

.swagger-ui .white-50 {
  color: hsla(0, 0%, 100%, 0.5);
}

.swagger-ui .white-40 {
  color: hsla(0, 0%, 100%, 0.4);
}

.swagger-ui .white-30 {
  color: hsla(0, 0%, 100%, 0.3);
}

.swagger-ui .white-20 {
  color: hsla(0, 0%, 100%, 0.2);
}

.swagger-ui .white-10 {
  color: hsla(0, 0%, 100%, 0.1);
}

.swagger-ui .black {
  color: #000;
}

.swagger-ui .near-black {
  color: #111;
}

.swagger-ui .dark-gray {
  color: #333;
}

.swagger-ui .mid-gray {
  color: #555;
}

.swagger-ui .gray {
  color: #777;
}

.swagger-ui .silver {
  color: #999;
}

.swagger-ui .light-silver {
  color: #aaa;
}

.swagger-ui .moon-gray {
  color: #ccc;
}

.swagger-ui .light-gray {
  color: #eee;
}

.swagger-ui .near-white {
  color: #f4f4f4;
}

.swagger-ui .white {
  color: #fff;
}

.swagger-ui .dark-red {
  color: #e7040f;
}

.swagger-ui .red {
  color: #ff4136;
}

.swagger-ui .light-red {
  color: #ff725c;
}

.swagger-ui .orange {
  color: #ff6300;
}

.swagger-ui .gold {
  color: #ffb700;
}

.swagger-ui .yellow {
  color: gold;
}

.swagger-ui .light-yellow {
  color: #fbf1a9;
}

.swagger-ui .purple {
  color: #5e2ca5;
}

.swagger-ui .light-purple {
  color: #a463f2;
}

.swagger-ui .dark-pink {
  color: #d5008f;
}

.swagger-ui .hot-pink {
  color: #ff41b4;
}

.swagger-ui .pink {
  color: #ff80cc;
}

.swagger-ui .light-pink {
  color: #ffa3d7;
}

.swagger-ui .dark-green {
  color: #137752;
}

.swagger-ui .green {
  color: #19a974;
}

.swagger-ui .light-green {
  color: #9eebcf;
}

.swagger-ui .navy {
  color: #001b44;
}

.swagger-ui .dark-blue {
  color: #00449e;
}

.swagger-ui .blue {
  color: #357edd;
}

.swagger-ui .light-blue {
  color: #96ccff;
}

.swagger-ui .lightest-blue {
  color: #cdecff;
}

.swagger-ui .washed-blue {
  color: #f6fffe;
}

.swagger-ui .washed-green {
  color: #e8fdf5;
}

.swagger-ui .washed-yellow {
  color: #fffceb;
}

.swagger-ui .washed-red {
  color: #ffdfdf;
}

.swagger-ui .color-inherit {
  color: inherit;
}

.swagger-ui .bg-black-90 {
  background-color: rgba(0, 0, 0, 0.9);
}

.swagger-ui .bg-black-80 {
  background-color: rgba(0, 0, 0, 0.8);
}

.swagger-ui .bg-black-70 {
  background-color: rgba(0, 0, 0, 0.7);
}

.swagger-ui .bg-black-60 {
  background-color: rgba(0, 0, 0, 0.6);
}

.swagger-ui .bg-black-50 {
  background-color: rgba(0, 0, 0, 0.5);
}

.swagger-ui .bg-black-40 {
  background-color: rgba(0, 0, 0, 0.4);
}

.swagger-ui .bg-black-30 {
  background-color: rgba(0, 0, 0, 0.3);
}

.swagger-ui .bg-black-20 {
  background-color: rgba(0, 0, 0, 0.2);
}

.swagger-ui .bg-black-10 {
  background-color: rgba(0, 0, 0, 0.1);
}

.swagger-ui .bg-black-05 {
  background-color: rgba(0, 0, 0, 0.05);
}

.swagger-ui .bg-white-90 {
  background-color: hsla(0, 0%, 100%, 0.9);
}

.swagger-ui .bg-white-80 {
  background-color: hsla(0, 0%, 100%, 0.8);
}

.swagger-ui .bg-white-70 {
  background-color: hsla(0, 0%, 100%, 0.7);
}

.swagger-ui .bg-white-60 {
  background-color: hsla(0, 0%, 100%, 0.6);
}

.swagger-ui .bg-white-50 {
  background-color: hsla(0, 0%, 100%, 0.5);
}

.swagger-ui .bg-white-40 {
  background-color: hsla(0, 0%, 100%, 0.4);
}

.swagger-ui .bg-white-30 {
  background-color: hsla(0, 0%, 100%, 0.3);
}

.swagger-ui .bg-white-20 {
  background-color: hsla(0, 0%, 100%, 0.2);
}

.swagger-ui .bg-white-10 {
  background-color: hsla(0, 0%, 100%, 0.1);
}

.swagger-ui .bg-black {
  background-color: #000;
}

.swagger-ui .bg-near-black {
  background-color: #111;
}

.swagger-ui .bg-dark-gray {
  background-color: #333;
}

.swagger-ui .bg-mid-gray {
  background-color: #555;
}

.swagger-ui .bg-gray {
  background-color: #777;
}

.swagger-ui .bg-silver {
  background-color: #999;
}

.swagger-ui .bg-light-silver {
  background-color: #aaa;
}

.swagger-ui .bg-moon-gray {
  background-color: #ccc;
}

.swagger-ui .bg-light-gray {
  background-color: #eee;
}

.swagger-ui .bg-near-white {
  background-color: #f4f4f4;
}

.swagger-ui .bg-white {
  background-color: #fff;
}

.swagger-ui .bg-transparent {
  background-color: transparent;
}

.swagger-ui .bg-dark-red {
  background-color: #e7040f;
}

.swagger-ui .bg-red {
  background-color: #ff4136;
}

.swagger-ui .bg-light-red {
  background-color: #ff725c;
}

.swagger-ui .bg-orange {
  background-color: #ff6300;
}

.swagger-ui .bg-gold {
  background-color: #ffb700;
}

.swagger-ui .bg-yellow {
  background-color: gold;
}

.swagger-ui .bg-light-yellow {
  background-color: #fbf1a9;
}

.swagger-ui .bg-purple {
  background-color: #5e2ca5;
}

.swagger-ui .bg-light-purple {
  background-color: #a463f2;
}

.swagger-ui .bg-dark-pink {
  background-color: #d5008f;
}

.swagger-ui .bg-hot-pink {
  background-color: #ff41b4;
}

.swagger-ui .bg-pink {
  background-color: #ff80cc;
}

.swagger-ui .bg-light-pink {
  background-color: #ffa3d7;
}

.swagger-ui .bg-dark-green {
  background-color: #137752;
}

.swagger-ui .bg-green {
  background-color: #19a974;
}

.swagger-ui .bg-light-green {
  background-color: #9eebcf;
}

.swagger-ui .bg-navy {
  background-color: #001b44;
}

.swagger-ui .bg-dark-blue {
  background-color: #00449e;
}

.swagger-ui .bg-blue {
  background-color: #357edd;
}

.swagger-ui .bg-light-blue {
  background-color: #96ccff;
}

.swagger-ui .bg-lightest-blue {
  background-color: #cdecff;
}

.swagger-ui .bg-washed-blue {
  background-color: #f6fffe;
}

.swagger-ui .bg-washed-green {
  background-color: #e8fdf5;
}

.swagger-ui .bg-washed-yellow {
  background-color: #fffceb;
}

.swagger-ui .bg-washed-red {
  background-color: #ffdfdf;
}

.swagger-ui .bg-inherit {
  background-color: inherit;
}

.swagger-ui .hover-black:focus, .swagger-ui .hover-black:hover {
  color: #000;
}

.swagger-ui .hover-near-black:focus, .swagger-ui .hover-near-black:hover {
  color: #111;
}

.swagger-ui .hover-dark-gray:focus, .swagger-ui .hover-dark-gray:hover {
  color: #333;
}

.swagger-ui .hover-mid-gray:focus, .swagger-ui .hover-mid-gray:hover {
  color: #555;
}

.swagger-ui .hover-gray:focus, .swagger-ui .hover-gray:hover {
  color: #777;
}

.swagger-ui .hover-silver:focus, .swagger-ui .hover-silver:hover {
  color: #999;
}

.swagger-ui .hover-light-silver:focus, .swagger-ui .hover-light-silver:hover {
  color: #aaa;
}

.swagger-ui .hover-moon-gray:focus, .swagger-ui .hover-moon-gray:hover {
  color: #ccc;
}

.swagger-ui .hover-light-gray:focus, .swagger-ui .hover-light-gray:hover {
  color: #eee;
}

.swagger-ui .hover-near-white:focus, .swagger-ui .hover-near-white:hover {
  color: #f4f4f4;
}

.swagger-ui .hover-white:focus, .swagger-ui .hover-white:hover {
  color: #fff;
}

.swagger-ui .hover-black-90:focus, .swagger-ui .hover-black-90:hover {
  color: rgba(0, 0, 0, 0.9);
}

.swagger-ui .hover-black-80:focus, .swagger-ui .hover-black-80:hover {
  color: rgba(0, 0, 0, 0.8);
}

.swagger-ui .hover-black-70:focus, .swagger-ui .hover-black-70:hover {
  color: rgba(0, 0, 0, 0.7);
}

.swagger-ui .hover-black-60:focus, .swagger-ui .hover-black-60:hover {
  color: rgba(0, 0, 0, 0.6);
}

.swagger-ui .hover-black-50:focus, .swagger-ui .hover-black-50:hover {
  color: rgba(0, 0, 0, 0.5);
}

.swagger-ui .hover-black-40:focus, .swagger-ui .hover-black-40:hover {
  color: rgba(0, 0, 0, 0.4);
}

.swagger-ui .hover-black-30:focus, .swagger-ui .hover-black-30:hover {
  color: rgba(0, 0, 0, 0.3);
}

.swagger-ui .hover-black-20:focus, .swagger-ui .hover-black-20:hover {
  color: rgba(0, 0, 0, 0.2);
}

.swagger-ui .hover-black-10:focus, .swagger-ui .hover-black-10:hover {
  color: rgba(0, 0, 0, 0.1);
}

.swagger-ui .hover-white-90:focus, .swagger-ui .hover-white-90:hover {
  color: hsla(0, 0%, 100%, 0.9);
}

.swagger-ui .hover-white-80:focus, .swagger-ui .hover-white-80:hover {
  color: hsla(0, 0%, 100%, 0.8);
}

.swagger-ui .hover-white-70:focus, .swagger-ui .hover-white-70:hover {
  color: hsla(0, 0%, 100%, 0.7);
}

.swagger-ui .hover-white-60:focus, .swagger-ui .hover-white-60:hover {
  color: hsla(0, 0%, 100%, 0.6);
}

.swagger-ui .hover-white-50:focus, .swagger-ui .hover-white-50:hover {
  color: hsla(0, 0%, 100%, 0.5);
}

.swagger-ui .hover-white-40:focus, .swagger-ui .hover-white-40:hover {
  color: hsla(0, 0%, 100%, 0.4);
}

.swagger-ui .hover-white-30:focus, .swagger-ui .hover-white-30:hover {
  color: hsla(0, 0%, 100%, 0.3);
}

.swagger-ui .hover-white-20:focus, .swagger-ui .hover-white-20:hover {
  color: hsla(0, 0%, 100%, 0.2);
}

.swagger-ui .hover-white-10:focus, .swagger-ui .hover-white-10:hover {
  color: hsla(0, 0%, 100%, 0.1);
}

.swagger-ui .hover-inherit:focus, .swagger-ui .hover-inherit:hover {
  color: inherit;
}

.swagger-ui .hover-bg-black:focus, .swagger-ui .hover-bg-black:hover {
  background-color: #000;
}

.swagger-ui .hover-bg-near-black:focus, .swagger-ui .hover-bg-near-black:hover {
  background-color: #111;
}

.swagger-ui .hover-bg-dark-gray:focus, .swagger-ui .hover-bg-dark-gray:hover {
  background-color: #333;
}

.swagger-ui .hover-bg-mid-gray:focus, .swagger-ui .hover-bg-mid-gray:hover {
  background-color: #555;
}

.swagger-ui .hover-bg-gray:focus, .swagger-ui .hover-bg-gray:hover {
  background-color: #777;
}

.swagger-ui .hover-bg-silver:focus, .swagger-ui .hover-bg-silver:hover {
  background-color: #999;
}

.swagger-ui .hover-bg-light-silver:focus, .swagger-ui .hover-bg-light-silver:hover {
  background-color: #aaa;
}

.swagger-ui .hover-bg-moon-gray:focus, .swagger-ui .hover-bg-moon-gray:hover {
  background-color: #ccc;
}

.swagger-ui .hover-bg-light-gray:focus, .swagger-ui .hover-bg-light-gray:hover {
  background-color: #eee;
}

.swagger-ui .hover-bg-near-white:focus, .swagger-ui .hover-bg-near-white:hover {
  background-color: #f4f4f4;
}

.swagger-ui .hover-bg-white:focus, .swagger-ui .hover-bg-white:hover {
  background-color: #fff;
}

.swagger-ui .hover-bg-transparent:focus, .swagger-ui .hover-bg-transparent:hover {
  background-color: transparent;
}

.swagger-ui .hover-bg-black-90:focus, .swagger-ui .hover-bg-black-90:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

.swagger-ui .hover-bg-black-80:focus, .swagger-ui .hover-bg-black-80:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.swagger-ui .hover-bg-black-70:focus, .swagger-ui .hover-bg-black-70:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.swagger-ui .hover-bg-black-60:focus, .swagger-ui .hover-bg-black-60:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

.swagger-ui .hover-bg-black-50:focus, .swagger-ui .hover-bg-black-50:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

.swagger-ui .hover-bg-black-40:focus, .swagger-ui .hover-bg-black-40:hover {
  background-color: rgba(0, 0, 0, 0.4);
}

.swagger-ui .hover-bg-black-30:focus, .swagger-ui .hover-bg-black-30:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

.swagger-ui .hover-bg-black-20:focus, .swagger-ui .hover-bg-black-20:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.swagger-ui .hover-bg-black-10:focus, .swagger-ui .hover-bg-black-10:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.swagger-ui .hover-bg-white-90:focus, .swagger-ui .hover-bg-white-90:hover {
  background-color: hsla(0, 0%, 100%, 0.9);
}

.swagger-ui .hover-bg-white-80:focus, .swagger-ui .hover-bg-white-80:hover {
  background-color: hsla(0, 0%, 100%, 0.8);
}

.swagger-ui .hover-bg-white-70:focus, .swagger-ui .hover-bg-white-70:hover {
  background-color: hsla(0, 0%, 100%, 0.7);
}

.swagger-ui .hover-bg-white-60:focus, .swagger-ui .hover-bg-white-60:hover {
  background-color: hsla(0, 0%, 100%, 0.6);
}

.swagger-ui .hover-bg-white-50:focus, .swagger-ui .hover-bg-white-50:hover {
  background-color: hsla(0, 0%, 100%, 0.5);
}

.swagger-ui .hover-bg-white-40:focus, .swagger-ui .hover-bg-white-40:hover {
  background-color: hsla(0, 0%, 100%, 0.4);
}

.swagger-ui .hover-bg-white-30:focus, .swagger-ui .hover-bg-white-30:hover {
  background-color: hsla(0, 0%, 100%, 0.3);
}

.swagger-ui .hover-bg-white-20:focus, .swagger-ui .hover-bg-white-20:hover {
  background-color: hsla(0, 0%, 100%, 0.2);
}

.swagger-ui .hover-bg-white-10:focus, .swagger-ui .hover-bg-white-10:hover {
  background-color: hsla(0, 0%, 100%, 0.1);
}

.swagger-ui .hover-dark-red:focus, .swagger-ui .hover-dark-red:hover {
  color: #e7040f;
}

.swagger-ui .hover-red:focus, .swagger-ui .hover-red:hover {
  color: #ff4136;
}

.swagger-ui .hover-light-red:focus, .swagger-ui .hover-light-red:hover {
  color: #ff725c;
}

.swagger-ui .hover-orange:focus, .swagger-ui .hover-orange:hover {
  color: #ff6300;
}

.swagger-ui .hover-gold:focus, .swagger-ui .hover-gold:hover {
  color: #ffb700;
}

.swagger-ui .hover-yellow:focus, .swagger-ui .hover-yellow:hover {
  color: gold;
}

.swagger-ui .hover-light-yellow:focus, .swagger-ui .hover-light-yellow:hover {
  color: #fbf1a9;
}

.swagger-ui .hover-purple:focus, .swagger-ui .hover-purple:hover {
  color: #5e2ca5;
}

.swagger-ui .hover-light-purple:focus, .swagger-ui .hover-light-purple:hover {
  color: #a463f2;
}

.swagger-ui .hover-dark-pink:focus, .swagger-ui .hover-dark-pink:hover {
  color: #d5008f;
}

.swagger-ui .hover-hot-pink:focus, .swagger-ui .hover-hot-pink:hover {
  color: #ff41b4;
}

.swagger-ui .hover-pink:focus, .swagger-ui .hover-pink:hover {
  color: #ff80cc;
}

.swagger-ui .hover-light-pink:focus, .swagger-ui .hover-light-pink:hover {
  color: #ffa3d7;
}

.swagger-ui .hover-dark-green:focus, .swagger-ui .hover-dark-green:hover {
  color: #137752;
}

.swagger-ui .hover-green:focus, .swagger-ui .hover-green:hover {
  color: #19a974;
}

.swagger-ui .hover-light-green:focus, .swagger-ui .hover-light-green:hover {
  color: #9eebcf;
}

.swagger-ui .hover-navy:focus, .swagger-ui .hover-navy:hover {
  color: #001b44;
}

.swagger-ui .hover-dark-blue:focus, .swagger-ui .hover-dark-blue:hover {
  color: #00449e;
}

.swagger-ui .hover-blue:focus, .swagger-ui .hover-blue:hover {
  color: #357edd;
}

.swagger-ui .hover-light-blue:focus, .swagger-ui .hover-light-blue:hover {
  color: #96ccff;
}

.swagger-ui .hover-lightest-blue:focus, .swagger-ui .hover-lightest-blue:hover {
  color: #cdecff;
}

.swagger-ui .hover-washed-blue:focus, .swagger-ui .hover-washed-blue:hover {
  color: #f6fffe;
}

.swagger-ui .hover-washed-green:focus, .swagger-ui .hover-washed-green:hover {
  color: #e8fdf5;
}

.swagger-ui .hover-washed-yellow:focus, .swagger-ui .hover-washed-yellow:hover {
  color: #fffceb;
}

.swagger-ui .hover-washed-red:focus, .swagger-ui .hover-washed-red:hover {
  color: #ffdfdf;
}

.swagger-ui .hover-bg-dark-red:focus, .swagger-ui .hover-bg-dark-red:hover {
  background-color: #e7040f;
}

.swagger-ui .hover-bg-red:focus, .swagger-ui .hover-bg-red:hover {
  background-color: #ff4136;
}

.swagger-ui .hover-bg-light-red:focus, .swagger-ui .hover-bg-light-red:hover {
  background-color: #ff725c;
}

.swagger-ui .hover-bg-orange:focus, .swagger-ui .hover-bg-orange:hover {
  background-color: #ff6300;
}

.swagger-ui .hover-bg-gold:focus, .swagger-ui .hover-bg-gold:hover {
  background-color: #ffb700;
}

.swagger-ui .hover-bg-yellow:focus, .swagger-ui .hover-bg-yellow:hover {
  background-color: gold;
}

.swagger-ui .hover-bg-light-yellow:focus, .swagger-ui .hover-bg-light-yellow:hover {
  background-color: #fbf1a9;
}

.swagger-ui .hover-bg-purple:focus, .swagger-ui .hover-bg-purple:hover {
  background-color: #5e2ca5;
}

.swagger-ui .hover-bg-light-purple:focus, .swagger-ui .hover-bg-light-purple:hover {
  background-color: #a463f2;
}

.swagger-ui .hover-bg-dark-pink:focus, .swagger-ui .hover-bg-dark-pink:hover {
  background-color: #d5008f;
}

.swagger-ui .hover-bg-hot-pink:focus, .swagger-ui .hover-bg-hot-pink:hover {
  background-color: #ff41b4;
}

.swagger-ui .hover-bg-pink:focus, .swagger-ui .hover-bg-pink:hover {
  background-color: #ff80cc;
}

.swagger-ui .hover-bg-light-pink:focus, .swagger-ui .hover-bg-light-pink:hover {
  background-color: #ffa3d7;
}

.swagger-ui .hover-bg-dark-green:focus, .swagger-ui .hover-bg-dark-green:hover {
  background-color: #137752;
}

.swagger-ui .hover-bg-green:focus, .swagger-ui .hover-bg-green:hover {
  background-color: #19a974;
}

.swagger-ui .hover-bg-light-green:focus, .swagger-ui .hover-bg-light-green:hover {
  background-color: #9eebcf;
}

.swagger-ui .hover-bg-navy:focus, .swagger-ui .hover-bg-navy:hover {
  background-color: #001b44;
}

.swagger-ui .hover-bg-dark-blue:focus, .swagger-ui .hover-bg-dark-blue:hover {
  background-color: #00449e;
}

.swagger-ui .hover-bg-blue:focus, .swagger-ui .hover-bg-blue:hover {
  background-color: #357edd;
}

.swagger-ui .hover-bg-light-blue:focus, .swagger-ui .hover-bg-light-blue:hover {
  background-color: #96ccff;
}

.swagger-ui .hover-bg-lightest-blue:focus, .swagger-ui .hover-bg-lightest-blue:hover {
  background-color: #cdecff;
}

.swagger-ui .hover-bg-washed-blue:focus, .swagger-ui .hover-bg-washed-blue:hover {
  background-color: #f6fffe;
}

.swagger-ui .hover-bg-washed-green:focus, .swagger-ui .hover-bg-washed-green:hover {
  background-color: #e8fdf5;
}

.swagger-ui .hover-bg-washed-yellow:focus, .swagger-ui .hover-bg-washed-yellow:hover {
  background-color: #fffceb;
}

.swagger-ui .hover-bg-washed-red:focus, .swagger-ui .hover-bg-washed-red:hover {
  background-color: #ffdfdf;
}

.swagger-ui .hover-bg-inherit:focus, .swagger-ui .hover-bg-inherit:hover {
  background-color: inherit;
}

.swagger-ui .pa0 {
  padding: 0;
}

.swagger-ui .pa1 {
  padding: 0.25rem;
}

.swagger-ui .pa2 {
  padding: 0.5rem;
}

.swagger-ui .pa3 {
  padding: 1rem;
}

.swagger-ui .pa4 {
  padding: 2rem;
}

.swagger-ui .pa5 {
  padding: 4rem;
}

.swagger-ui .pa6 {
  padding: 8rem;
}

.swagger-ui .pa7 {
  padding: 16rem;
}

.swagger-ui .pl0 {
  padding-left: 0;
}

.swagger-ui .pl1 {
  padding-left: 0.25rem;
}

.swagger-ui .pl2 {
  padding-left: 0.5rem;
}

.swagger-ui .pl3 {
  padding-left: 1rem;
}

.swagger-ui .pl4 {
  padding-left: 2rem;
}

.swagger-ui .pl5 {
  padding-left: 4rem;
}

.swagger-ui .pl6 {
  padding-left: 8rem;
}

.swagger-ui .pl7 {
  padding-left: 16rem;
}

.swagger-ui .pr0 {
  padding-right: 0;
}

.swagger-ui .pr1 {
  padding-right: 0.25rem;
}

.swagger-ui .pr2 {
  padding-right: 0.5rem;
}

.swagger-ui .pr3 {
  padding-right: 1rem;
}

.swagger-ui .pr4 {
  padding-right: 2rem;
}

.swagger-ui .pr5 {
  padding-right: 4rem;
}

.swagger-ui .pr6 {
  padding-right: 8rem;
}

.swagger-ui .pr7 {
  padding-right: 16rem;
}

.swagger-ui .pb0 {
  padding-bottom: 0;
}

.swagger-ui .pb1 {
  padding-bottom: 0.25rem;
}

.swagger-ui .pb2 {
  padding-bottom: 0.5rem;
}

.swagger-ui .pb3 {
  padding-bottom: 1rem;
}

.swagger-ui .pb4 {
  padding-bottom: 2rem;
}

.swagger-ui .pb5 {
  padding-bottom: 4rem;
}

.swagger-ui .pb6 {
  padding-bottom: 8rem;
}

.swagger-ui .pb7 {
  padding-bottom: 16rem;
}

.swagger-ui .pt0 {
  padding-top: 0;
}

.swagger-ui .pt1 {
  padding-top: 0.25rem;
}

.swagger-ui .pt2 {
  padding-top: 0.5rem;
}

.swagger-ui .pt3 {
  padding-top: 1rem;
}

.swagger-ui .pt4 {
  padding-top: 2rem;
}

.swagger-ui .pt5 {
  padding-top: 4rem;
}

.swagger-ui .pt6 {
  padding-top: 8rem;
}

.swagger-ui .pt7 {
  padding-top: 16rem;
}

.swagger-ui .pv0 {
  padding-bottom: 0;
  padding-top: 0;
}

.swagger-ui .pv1 {
  padding-bottom: 0.25rem;
  padding-top: 0.25rem;
}

.swagger-ui .pv2 {
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}

.swagger-ui .pv3 {
  padding-bottom: 1rem;
  padding-top: 1rem;
}

.swagger-ui .pv4 {
  padding-bottom: 2rem;
  padding-top: 2rem;
}

.swagger-ui .pv5 {
  padding-bottom: 4rem;
  padding-top: 4rem;
}

.swagger-ui .pv6 {
  padding-bottom: 8rem;
  padding-top: 8rem;
}

.swagger-ui .pv7 {
  padding-bottom: 16rem;
  padding-top: 16rem;
}

.swagger-ui .ph0 {
  padding-left: 0;
  padding-right: 0;
}

.swagger-ui .ph1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.swagger-ui .ph2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.swagger-ui .ph3 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.swagger-ui .ph4 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.swagger-ui .ph5 {
  padding-left: 4rem;
  padding-right: 4rem;
}

.swagger-ui .ph6 {
  padding-left: 8rem;
  padding-right: 8rem;
}

.swagger-ui .ph7 {
  padding-left: 16rem;
  padding-right: 16rem;
}

.swagger-ui .ma0 {
  margin: 0;
}

.swagger-ui .ma1 {
  margin: 0.25rem;
}

.swagger-ui .ma2 {
  margin: 0.5rem;
}

.swagger-ui .ma3 {
  margin: 1rem;
}

.swagger-ui .ma4 {
  margin: 2rem;
}

.swagger-ui .ma5 {
  margin: 4rem;
}

.swagger-ui .ma6 {
  margin: 8rem;
}

.swagger-ui .ma7 {
  margin: 16rem;
}

.swagger-ui .ml0 {
  margin-left: 0;
}

.swagger-ui .ml1 {
  margin-left: 0.25rem;
}

.swagger-ui .ml2 {
  margin-left: 0.5rem;
}

.swagger-ui .ml3 {
  margin-left: 1rem;
}

.swagger-ui .ml4 {
  margin-left: 2rem;
}

.swagger-ui .ml5 {
  margin-left: 4rem;
}

.swagger-ui .ml6 {
  margin-left: 8rem;
}

.swagger-ui .ml7 {
  margin-left: 16rem;
}

.swagger-ui .mr0 {
  margin-right: 0;
}

.swagger-ui .mr1 {
  margin-right: 0.25rem;
}

.swagger-ui .mr2 {
  margin-right: 0.5rem;
}

.swagger-ui .mr3 {
  margin-right: 1rem;
}

.swagger-ui .mr4 {
  margin-right: 2rem;
}

.swagger-ui .mr5 {
  margin-right: 4rem;
}

.swagger-ui .mr6 {
  margin-right: 8rem;
}

.swagger-ui .mr7 {
  margin-right: 16rem;
}

.swagger-ui .mb0 {
  margin-bottom: 0;
}

.swagger-ui .mb1 {
  margin-bottom: 0.25rem;
}

.swagger-ui .mb2 {
  margin-bottom: 0.5rem;
}

.swagger-ui .mb3 {
  margin-bottom: 1rem;
}

.swagger-ui .mb4 {
  margin-bottom: 2rem;
}

.swagger-ui .mb5 {
  margin-bottom: 4rem;
}

.swagger-ui .mb6 {
  margin-bottom: 8rem;
}

.swagger-ui .mb7 {
  margin-bottom: 16rem;
}

.swagger-ui .mt0 {
  margin-top: 0;
}

.swagger-ui .mt1 {
  margin-top: 0.25rem;
}

.swagger-ui .mt2 {
  margin-top: 0.5rem;
}

.swagger-ui .mt3 {
  margin-top: 1rem;
}

.swagger-ui .mt4 {
  margin-top: 2rem;
}

.swagger-ui .mt5 {
  margin-top: 4rem;
}

.swagger-ui .mt6 {
  margin-top: 8rem;
}

.swagger-ui .mt7 {
  margin-top: 16rem;
}

.swagger-ui .mv0 {
  margin-bottom: 0;
  margin-top: 0;
}

.swagger-ui .mv1 {
  margin-bottom: 0.25rem;
  margin-top: 0.25rem;
}

.swagger-ui .mv2 {
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

.swagger-ui .mv3 {
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.swagger-ui .mv4 {
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.swagger-ui .mv5 {
  margin-bottom: 4rem;
  margin-top: 4rem;
}

.swagger-ui .mv6 {
  margin-bottom: 8rem;
  margin-top: 8rem;
}

.swagger-ui .mv7 {
  margin-bottom: 16rem;
  margin-top: 16rem;
}

.swagger-ui .mh0 {
  margin-left: 0;
  margin-right: 0;
}

.swagger-ui .mh1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.swagger-ui .mh2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.swagger-ui .mh3 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.swagger-ui .mh4 {
  margin-left: 2rem;
  margin-right: 2rem;
}

.swagger-ui .mh5 {
  margin-left: 4rem;
  margin-right: 4rem;
}

.swagger-ui .mh6 {
  margin-left: 8rem;
  margin-right: 8rem;
}

.swagger-ui .mh7 {
  margin-left: 16rem;
  margin-right: 16rem;
}

@media screen and (min-width: 30em) {
  .swagger-ui .pa0-ns {
    padding: 0;
  }
  .swagger-ui .pa1-ns {
    padding: 0.25rem;
  }
  .swagger-ui .pa2-ns {
    padding: 0.5rem;
  }
  .swagger-ui .pa3-ns {
    padding: 1rem;
  }
  .swagger-ui .pa4-ns {
    padding: 2rem;
  }
  .swagger-ui .pa5-ns {
    padding: 4rem;
  }
  .swagger-ui .pa6-ns {
    padding: 8rem;
  }
  .swagger-ui .pa7-ns {
    padding: 16rem;
  }
  .swagger-ui .pl0-ns {
    padding-left: 0;
  }
  .swagger-ui .pl1-ns {
    padding-left: 0.25rem;
  }
  .swagger-ui .pl2-ns {
    padding-left: 0.5rem;
  }
  .swagger-ui .pl3-ns {
    padding-left: 1rem;
  }
  .swagger-ui .pl4-ns {
    padding-left: 2rem;
  }
  .swagger-ui .pl5-ns {
    padding-left: 4rem;
  }
  .swagger-ui .pl6-ns {
    padding-left: 8rem;
  }
  .swagger-ui .pl7-ns {
    padding-left: 16rem;
  }
  .swagger-ui .pr0-ns {
    padding-right: 0;
  }
  .swagger-ui .pr1-ns {
    padding-right: 0.25rem;
  }
  .swagger-ui .pr2-ns {
    padding-right: 0.5rem;
  }
  .swagger-ui .pr3-ns {
    padding-right: 1rem;
  }
  .swagger-ui .pr4-ns {
    padding-right: 2rem;
  }
  .swagger-ui .pr5-ns {
    padding-right: 4rem;
  }
  .swagger-ui .pr6-ns {
    padding-right: 8rem;
  }
  .swagger-ui .pr7-ns {
    padding-right: 16rem;
  }
  .swagger-ui .pb0-ns {
    padding-bottom: 0;
  }
  .swagger-ui .pb1-ns {
    padding-bottom: 0.25rem;
  }
  .swagger-ui .pb2-ns {
    padding-bottom: 0.5rem;
  }
  .swagger-ui .pb3-ns {
    padding-bottom: 1rem;
  }
  .swagger-ui .pb4-ns {
    padding-bottom: 2rem;
  }
  .swagger-ui .pb5-ns {
    padding-bottom: 4rem;
  }
  .swagger-ui .pb6-ns {
    padding-bottom: 8rem;
  }
  .swagger-ui .pb7-ns {
    padding-bottom: 16rem;
  }
  .swagger-ui .pt0-ns {
    padding-top: 0;
  }
  .swagger-ui .pt1-ns {
    padding-top: 0.25rem;
  }
  .swagger-ui .pt2-ns {
    padding-top: 0.5rem;
  }
  .swagger-ui .pt3-ns {
    padding-top: 1rem;
  }
  .swagger-ui .pt4-ns {
    padding-top: 2rem;
  }
  .swagger-ui .pt5-ns {
    padding-top: 4rem;
  }
  .swagger-ui .pt6-ns {
    padding-top: 8rem;
  }
  .swagger-ui .pt7-ns {
    padding-top: 16rem;
  }
  .swagger-ui .pv0-ns {
    padding-bottom: 0;
    padding-top: 0;
  }
  .swagger-ui .pv1-ns {
    padding-bottom: 0.25rem;
    padding-top: 0.25rem;
  }
  .swagger-ui .pv2-ns {
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
  }
  .swagger-ui .pv3-ns {
    padding-bottom: 1rem;
    padding-top: 1rem;
  }
  .swagger-ui .pv4-ns {
    padding-bottom: 2rem;
    padding-top: 2rem;
  }
  .swagger-ui .pv5-ns {
    padding-bottom: 4rem;
    padding-top: 4rem;
  }
  .swagger-ui .pv6-ns {
    padding-bottom: 8rem;
    padding-top: 8rem;
  }
  .swagger-ui .pv7-ns {
    padding-bottom: 16rem;
    padding-top: 16rem;
  }
  .swagger-ui .ph0-ns {
    padding-left: 0;
    padding-right: 0;
  }
  .swagger-ui .ph1-ns {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .swagger-ui .ph2-ns {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .swagger-ui .ph3-ns {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .swagger-ui .ph4-ns {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .swagger-ui .ph5-ns {
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .swagger-ui .ph6-ns {
    padding-left: 8rem;
    padding-right: 8rem;
  }
  .swagger-ui .ph7-ns {
    padding-left: 16rem;
    padding-right: 16rem;
  }
  .swagger-ui .ma0-ns {
    margin: 0;
  }
  .swagger-ui .ma1-ns {
    margin: 0.25rem;
  }
  .swagger-ui .ma2-ns {
    margin: 0.5rem;
  }
  .swagger-ui .ma3-ns {
    margin: 1rem;
  }
  .swagger-ui .ma4-ns {
    margin: 2rem;
  }
  .swagger-ui .ma5-ns {
    margin: 4rem;
  }
  .swagger-ui .ma6-ns {
    margin: 8rem;
  }
  .swagger-ui .ma7-ns {
    margin: 16rem;
  }
  .swagger-ui .ml0-ns {
    margin-left: 0;
  }
  .swagger-ui .ml1-ns {
    margin-left: 0.25rem;
  }
  .swagger-ui .ml2-ns {
    margin-left: 0.5rem;
  }
  .swagger-ui .ml3-ns {
    margin-left: 1rem;
  }
  .swagger-ui .ml4-ns {
    margin-left: 2rem;
  }
  .swagger-ui .ml5-ns {
    margin-left: 4rem;
  }
  .swagger-ui .ml6-ns {
    margin-left: 8rem;
  }
  .swagger-ui .ml7-ns {
    margin-left: 16rem;
  }
  .swagger-ui .mr0-ns {
    margin-right: 0;
  }
  .swagger-ui .mr1-ns {
    margin-right: 0.25rem;
  }
  .swagger-ui .mr2-ns {
    margin-right: 0.5rem;
  }
  .swagger-ui .mr3-ns {
    margin-right: 1rem;
  }
  .swagger-ui .mr4-ns {
    margin-right: 2rem;
  }
  .swagger-ui .mr5-ns {
    margin-right: 4rem;
  }
  .swagger-ui .mr6-ns {
    margin-right: 8rem;
  }
  .swagger-ui .mr7-ns {
    margin-right: 16rem;
  }
  .swagger-ui .mb0-ns {
    margin-bottom: 0;
  }
  .swagger-ui .mb1-ns {
    margin-bottom: 0.25rem;
  }
  .swagger-ui .mb2-ns {
    margin-bottom: 0.5rem;
  }
  .swagger-ui .mb3-ns {
    margin-bottom: 1rem;
  }
  .swagger-ui .mb4-ns {
    margin-bottom: 2rem;
  }
  .swagger-ui .mb5-ns {
    margin-bottom: 4rem;
  }
  .swagger-ui .mb6-ns {
    margin-bottom: 8rem;
  }
  .swagger-ui .mb7-ns {
    margin-bottom: 16rem;
  }
  .swagger-ui .mt0-ns {
    margin-top: 0;
  }
  .swagger-ui .mt1-ns {
    margin-top: 0.25rem;
  }
  .swagger-ui .mt2-ns {
    margin-top: 0.5rem;
  }
  .swagger-ui .mt3-ns {
    margin-top: 1rem;
  }
  .swagger-ui .mt4-ns {
    margin-top: 2rem;
  }
  .swagger-ui .mt5-ns {
    margin-top: 4rem;
  }
  .swagger-ui .mt6-ns {
    margin-top: 8rem;
  }
  .swagger-ui .mt7-ns {
    margin-top: 16rem;
  }
  .swagger-ui .mv0-ns {
    margin-bottom: 0;
    margin-top: 0;
  }
  .swagger-ui .mv1-ns {
    margin-bottom: 0.25rem;
    margin-top: 0.25rem;
  }
  .swagger-ui .mv2-ns {
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
  }
  .swagger-ui .mv3-ns {
    margin-bottom: 1rem;
    margin-top: 1rem;
  }
  .swagger-ui .mv4-ns {
    margin-bottom: 2rem;
    margin-top: 2rem;
  }
  .swagger-ui .mv5-ns {
    margin-bottom: 4rem;
    margin-top: 4rem;
  }
  .swagger-ui .mv6-ns {
    margin-bottom: 8rem;
    margin-top: 8rem;
  }
  .swagger-ui .mv7-ns {
    margin-bottom: 16rem;
    margin-top: 16rem;
  }
  .swagger-ui .mh0-ns {
    margin-left: 0;
    margin-right: 0;
  }
  .swagger-ui .mh1-ns {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }
  .swagger-ui .mh2-ns {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .swagger-ui .mh3-ns {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .swagger-ui .mh4-ns {
    margin-left: 2rem;
    margin-right: 2rem;
  }
  .swagger-ui .mh5-ns {
    margin-left: 4rem;
    margin-right: 4rem;
  }
  .swagger-ui .mh6-ns {
    margin-left: 8rem;
    margin-right: 8rem;
  }
  .swagger-ui .mh7-ns {
    margin-left: 16rem;
    margin-right: 16rem;
  }
}
@media screen and (min-width: 30em) and (max-width: 60em) {
  .swagger-ui .pa0-m {
    padding: 0;
  }
  .swagger-ui .pa1-m {
    padding: 0.25rem;
  }
  .swagger-ui .pa2-m {
    padding: 0.5rem;
  }
  .swagger-ui .pa3-m {
    padding: 1rem;
  }
  .swagger-ui .pa4-m {
    padding: 2rem;
  }
  .swagger-ui .pa5-m {
    padding: 4rem;
  }
  .swagger-ui .pa6-m {
    padding: 8rem;
  }
  .swagger-ui .pa7-m {
    padding: 16rem;
  }
  .swagger-ui .pl0-m {
    padding-left: 0;
  }
  .swagger-ui .pl1-m {
    padding-left: 0.25rem;
  }
  .swagger-ui .pl2-m {
    padding-left: 0.5rem;
  }
  .swagger-ui .pl3-m {
    padding-left: 1rem;
  }
  .swagger-ui .pl4-m {
    padding-left: 2rem;
  }
  .swagger-ui .pl5-m {
    padding-left: 4rem;
  }
  .swagger-ui .pl6-m {
    padding-left: 8rem;
  }
  .swagger-ui .pl7-m {
    padding-left: 16rem;
  }
  .swagger-ui .pr0-m {
    padding-right: 0;
  }
  .swagger-ui .pr1-m {
    padding-right: 0.25rem;
  }
  .swagger-ui .pr2-m {
    padding-right: 0.5rem;
  }
  .swagger-ui .pr3-m {
    padding-right: 1rem;
  }
  .swagger-ui .pr4-m {
    padding-right: 2rem;
  }
  .swagger-ui .pr5-m {
    padding-right: 4rem;
  }
  .swagger-ui .pr6-m {
    padding-right: 8rem;
  }
  .swagger-ui .pr7-m {
    padding-right: 16rem;
  }
  .swagger-ui .pb0-m {
    padding-bottom: 0;
  }
  .swagger-ui .pb1-m {
    padding-bottom: 0.25rem;
  }
  .swagger-ui .pb2-m {
    padding-bottom: 0.5rem;
  }
  .swagger-ui .pb3-m {
    padding-bottom: 1rem;
  }
  .swagger-ui .pb4-m {
    padding-bottom: 2rem;
  }
  .swagger-ui .pb5-m {
    padding-bottom: 4rem;
  }
  .swagger-ui .pb6-m {
    padding-bottom: 8rem;
  }
  .swagger-ui .pb7-m {
    padding-bottom: 16rem;
  }
  .swagger-ui .pt0-m {
    padding-top: 0;
  }
  .swagger-ui .pt1-m {
    padding-top: 0.25rem;
  }
  .swagger-ui .pt2-m {
    padding-top: 0.5rem;
  }
  .swagger-ui .pt3-m {
    padding-top: 1rem;
  }
  .swagger-ui .pt4-m {
    padding-top: 2rem;
  }
  .swagger-ui .pt5-m {
    padding-top: 4rem;
  }
  .swagger-ui .pt6-m {
    padding-top: 8rem;
  }
  .swagger-ui .pt7-m {
    padding-top: 16rem;
  }
  .swagger-ui .pv0-m {
    padding-bottom: 0;
    padding-top: 0;
  }
  .swagger-ui .pv1-m {
    padding-bottom: 0.25rem;
    padding-top: 0.25rem;
  }
  .swagger-ui .pv2-m {
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
  }
  .swagger-ui .pv3-m {
    padding-bottom: 1rem;
    padding-top: 1rem;
  }
  .swagger-ui .pv4-m {
    padding-bottom: 2rem;
    padding-top: 2rem;
  }
  .swagger-ui .pv5-m {
    padding-bottom: 4rem;
    padding-top: 4rem;
  }
  .swagger-ui .pv6-m {
    padding-bottom: 8rem;
    padding-top: 8rem;
  }
  .swagger-ui .pv7-m {
    padding-bottom: 16rem;
    padding-top: 16rem;
  }
  .swagger-ui .ph0-m {
    padding-left: 0;
    padding-right: 0;
  }
  .swagger-ui .ph1-m {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .swagger-ui .ph2-m {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .swagger-ui .ph3-m {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .swagger-ui .ph4-m {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .swagger-ui .ph5-m {
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .swagger-ui .ph6-m {
    padding-left: 8rem;
    padding-right: 8rem;
  }
  .swagger-ui .ph7-m {
    padding-left: 16rem;
    padding-right: 16rem;
  }
  .swagger-ui .ma0-m {
    margin: 0;
  }
  .swagger-ui .ma1-m {
    margin: 0.25rem;
  }
  .swagger-ui .ma2-m {
    margin: 0.5rem;
  }
  .swagger-ui .ma3-m {
    margin: 1rem;
  }
  .swagger-ui .ma4-m {
    margin: 2rem;
  }
  .swagger-ui .ma5-m {
    margin: 4rem;
  }
  .swagger-ui .ma6-m {
    margin: 8rem;
  }
  .swagger-ui .ma7-m {
    margin: 16rem;
  }
  .swagger-ui .ml0-m {
    margin-left: 0;
  }
  .swagger-ui .ml1-m {
    margin-left: 0.25rem;
  }
  .swagger-ui .ml2-m {
    margin-left: 0.5rem;
  }
  .swagger-ui .ml3-m {
    margin-left: 1rem;
  }
  .swagger-ui .ml4-m {
    margin-left: 2rem;
  }
  .swagger-ui .ml5-m {
    margin-left: 4rem;
  }
  .swagger-ui .ml6-m {
    margin-left: 8rem;
  }
  .swagger-ui .ml7-m {
    margin-left: 16rem;
  }
  .swagger-ui .mr0-m {
    margin-right: 0;
  }
  .swagger-ui .mr1-m {
    margin-right: 0.25rem;
  }
  .swagger-ui .mr2-m {
    margin-right: 0.5rem;
  }
  .swagger-ui .mr3-m {
    margin-right: 1rem;
  }
  .swagger-ui .mr4-m {
    margin-right: 2rem;
  }
  .swagger-ui .mr5-m {
    margin-right: 4rem;
  }
  .swagger-ui .mr6-m {
    margin-right: 8rem;
  }
  .swagger-ui .mr7-m {
    margin-right: 16rem;
  }
  .swagger-ui .mb0-m {
    margin-bottom: 0;
  }
  .swagger-ui .mb1-m {
    margin-bottom: 0.25rem;
  }
  .swagger-ui .mb2-m {
    margin-bottom: 0.5rem;
  }
  .swagger-ui .mb3-m {
    margin-bottom: 1rem;
  }
  .swagger-ui .mb4-m {
    margin-bottom: 2rem;
  }
  .swagger-ui .mb5-m {
    margin-bottom: 4rem;
  }
  .swagger-ui .mb6-m {
    margin-bottom: 8rem;
  }
  .swagger-ui .mb7-m {
    margin-bottom: 16rem;
  }
  .swagger-ui .mt0-m {
    margin-top: 0;
  }
  .swagger-ui .mt1-m {
    margin-top: 0.25rem;
  }
  .swagger-ui .mt2-m {
    margin-top: 0.5rem;
  }
  .swagger-ui .mt3-m {
    margin-top: 1rem;
  }
  .swagger-ui .mt4-m {
    margin-top: 2rem;
  }
  .swagger-ui .mt5-m {
    margin-top: 4rem;
  }
  .swagger-ui .mt6-m {
    margin-top: 8rem;
  }
  .swagger-ui .mt7-m {
    margin-top: 16rem;
  }
  .swagger-ui .mv0-m {
    margin-bottom: 0;
    margin-top: 0;
  }
  .swagger-ui .mv1-m {
    margin-bottom: 0.25rem;
    margin-top: 0.25rem;
  }
  .swagger-ui .mv2-m {
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
  }
  .swagger-ui .mv3-m {
    margin-bottom: 1rem;
    margin-top: 1rem;
  }
  .swagger-ui .mv4-m {
    margin-bottom: 2rem;
    margin-top: 2rem;
  }
  .swagger-ui .mv5-m {
    margin-bottom: 4rem;
    margin-top: 4rem;
  }
  .swagger-ui .mv6-m {
    margin-bottom: 8rem;
    margin-top: 8rem;
  }
  .swagger-ui .mv7-m {
    margin-bottom: 16rem;
    margin-top: 16rem;
  }
  .swagger-ui .mh0-m {
    margin-left: 0;
    margin-right: 0;
  }
  .swagger-ui .mh1-m {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }
  .swagger-ui .mh2-m {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .swagger-ui .mh3-m {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .swagger-ui .mh4-m {
    margin-left: 2rem;
    margin-right: 2rem;
  }
  .swagger-ui .mh5-m {
    margin-left: 4rem;
    margin-right: 4rem;
  }
  .swagger-ui .mh6-m {
    margin-left: 8rem;
    margin-right: 8rem;
  }
  .swagger-ui .mh7-m {
    margin-left: 16rem;
    margin-right: 16rem;
  }
}
@media screen and (min-width: 60em) {
  .swagger-ui .pa0-l {
    padding: 0;
  }
  .swagger-ui .pa1-l {
    padding: 0.25rem;
  }
  .swagger-ui .pa2-l {
    padding: 0.5rem;
  }
  .swagger-ui .pa3-l {
    padding: 1rem;
  }
  .swagger-ui .pa4-l {
    padding: 2rem;
  }
  .swagger-ui .pa5-l {
    padding: 4rem;
  }
  .swagger-ui .pa6-l {
    padding: 8rem;
  }
  .swagger-ui .pa7-l {
    padding: 16rem;
  }
  .swagger-ui .pl0-l {
    padding-left: 0;
  }
  .swagger-ui .pl1-l {
    padding-left: 0.25rem;
  }
  .swagger-ui .pl2-l {
    padding-left: 0.5rem;
  }
  .swagger-ui .pl3-l {
    padding-left: 1rem;
  }
  .swagger-ui .pl4-l {
    padding-left: 2rem;
  }
  .swagger-ui .pl5-l {
    padding-left: 4rem;
  }
  .swagger-ui .pl6-l {
    padding-left: 8rem;
  }
  .swagger-ui .pl7-l {
    padding-left: 16rem;
  }
  .swagger-ui .pr0-l {
    padding-right: 0;
  }
  .swagger-ui .pr1-l {
    padding-right: 0.25rem;
  }
  .swagger-ui .pr2-l {
    padding-right: 0.5rem;
  }
  .swagger-ui .pr3-l {
    padding-right: 1rem;
  }
  .swagger-ui .pr4-l {
    padding-right: 2rem;
  }
  .swagger-ui .pr5-l {
    padding-right: 4rem;
  }
  .swagger-ui .pr6-l {
    padding-right: 8rem;
  }
  .swagger-ui .pr7-l {
    padding-right: 16rem;
  }
  .swagger-ui .pb0-l {
    padding-bottom: 0;
  }
  .swagger-ui .pb1-l {
    padding-bottom: 0.25rem;
  }
  .swagger-ui .pb2-l {
    padding-bottom: 0.5rem;
  }
  .swagger-ui .pb3-l {
    padding-bottom: 1rem;
  }
  .swagger-ui .pb4-l {
    padding-bottom: 2rem;
  }
  .swagger-ui .pb5-l {
    padding-bottom: 4rem;
  }
  .swagger-ui .pb6-l {
    padding-bottom: 8rem;
  }
  .swagger-ui .pb7-l {
    padding-bottom: 16rem;
  }
  .swagger-ui .pt0-l {
    padding-top: 0;
  }
  .swagger-ui .pt1-l {
    padding-top: 0.25rem;
  }
  .swagger-ui .pt2-l {
    padding-top: 0.5rem;
  }
  .swagger-ui .pt3-l {
    padding-top: 1rem;
  }
  .swagger-ui .pt4-l {
    padding-top: 2rem;
  }
  .swagger-ui .pt5-l {
    padding-top: 4rem;
  }
  .swagger-ui .pt6-l {
    padding-top: 8rem;
  }
  .swagger-ui .pt7-l {
    padding-top: 16rem;
  }
  .swagger-ui .pv0-l {
    padding-bottom: 0;
    padding-top: 0;
  }
  .swagger-ui .pv1-l {
    padding-bottom: 0.25rem;
    padding-top: 0.25rem;
  }
  .swagger-ui .pv2-l {
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
  }
  .swagger-ui .pv3-l {
    padding-bottom: 1rem;
    padding-top: 1rem;
  }
  .swagger-ui .pv4-l {
    padding-bottom: 2rem;
    padding-top: 2rem;
  }
  .swagger-ui .pv5-l {
    padding-bottom: 4rem;
    padding-top: 4rem;
  }
  .swagger-ui .pv6-l {
    padding-bottom: 8rem;
    padding-top: 8rem;
  }
  .swagger-ui .pv7-l {
    padding-bottom: 16rem;
    padding-top: 16rem;
  }
  .swagger-ui .ph0-l {
    padding-left: 0;
    padding-right: 0;
  }
  .swagger-ui .ph1-l {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .swagger-ui .ph2-l {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .swagger-ui .ph3-l {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .swagger-ui .ph4-l {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .swagger-ui .ph5-l {
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .swagger-ui .ph6-l {
    padding-left: 8rem;
    padding-right: 8rem;
  }
  .swagger-ui .ph7-l {
    padding-left: 16rem;
    padding-right: 16rem;
  }
  .swagger-ui .ma0-l {
    margin: 0;
  }
  .swagger-ui .ma1-l {
    margin: 0.25rem;
  }
  .swagger-ui .ma2-l {
    margin: 0.5rem;
  }
  .swagger-ui .ma3-l {
    margin: 1rem;
  }
  .swagger-ui .ma4-l {
    margin: 2rem;
  }
  .swagger-ui .ma5-l {
    margin: 4rem;
  }
  .swagger-ui .ma6-l {
    margin: 8rem;
  }
  .swagger-ui .ma7-l {
    margin: 16rem;
  }
  .swagger-ui .ml0-l {
    margin-left: 0;
  }
  .swagger-ui .ml1-l {
    margin-left: 0.25rem;
  }
  .swagger-ui .ml2-l {
    margin-left: 0.5rem;
  }
  .swagger-ui .ml3-l {
    margin-left: 1rem;
  }
  .swagger-ui .ml4-l {
    margin-left: 2rem;
  }
  .swagger-ui .ml5-l {
    margin-left: 4rem;
  }
  .swagger-ui .ml6-l {
    margin-left: 8rem;
  }
  .swagger-ui .ml7-l {
    margin-left: 16rem;
  }
  .swagger-ui .mr0-l {
    margin-right: 0;
  }
  .swagger-ui .mr1-l {
    margin-right: 0.25rem;
  }
  .swagger-ui .mr2-l {
    margin-right: 0.5rem;
  }
  .swagger-ui .mr3-l {
    margin-right: 1rem;
  }
  .swagger-ui .mr4-l {
    margin-right: 2rem;
  }
  .swagger-ui .mr5-l {
    margin-right: 4rem;
  }
  .swagger-ui .mr6-l {
    margin-right: 8rem;
  }
  .swagger-ui .mr7-l {
    margin-right: 16rem;
  }
  .swagger-ui .mb0-l {
    margin-bottom: 0;
  }
  .swagger-ui .mb1-l {
    margin-bottom: 0.25rem;
  }
  .swagger-ui .mb2-l {
    margin-bottom: 0.5rem;
  }
  .swagger-ui .mb3-l {
    margin-bottom: 1rem;
  }
  .swagger-ui .mb4-l {
    margin-bottom: 2rem;
  }
  .swagger-ui .mb5-l {
    margin-bottom: 4rem;
  }
  .swagger-ui .mb6-l {
    margin-bottom: 8rem;
  }
  .swagger-ui .mb7-l {
    margin-bottom: 16rem;
  }
  .swagger-ui .mt0-l {
    margin-top: 0;
  }
  .swagger-ui .mt1-l {
    margin-top: 0.25rem;
  }
  .swagger-ui .mt2-l {
    margin-top: 0.5rem;
  }
  .swagger-ui .mt3-l {
    margin-top: 1rem;
  }
  .swagger-ui .mt4-l {
    margin-top: 2rem;
  }
  .swagger-ui .mt5-l {
    margin-top: 4rem;
  }
  .swagger-ui .mt6-l {
    margin-top: 8rem;
  }
  .swagger-ui .mt7-l {
    margin-top: 16rem;
  }
  .swagger-ui .mv0-l {
    margin-bottom: 0;
    margin-top: 0;
  }
  .swagger-ui .mv1-l {
    margin-bottom: 0.25rem;
    margin-top: 0.25rem;
  }
  .swagger-ui .mv2-l {
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
  }
  .swagger-ui .mv3-l {
    margin-bottom: 1rem;
    margin-top: 1rem;
  }
  .swagger-ui .mv4-l {
    margin-bottom: 2rem;
    margin-top: 2rem;
  }
  .swagger-ui .mv5-l {
    margin-bottom: 4rem;
    margin-top: 4rem;
  }
  .swagger-ui .mv6-l {
    margin-bottom: 8rem;
    margin-top: 8rem;
  }
  .swagger-ui .mv7-l {
    margin-bottom: 16rem;
    margin-top: 16rem;
  }
  .swagger-ui .mh0-l {
    margin-left: 0;
    margin-right: 0;
  }
  .swagger-ui .mh1-l {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }
  .swagger-ui .mh2-l {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .swagger-ui .mh3-l {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .swagger-ui .mh4-l {
    margin-left: 2rem;
    margin-right: 2rem;
  }
  .swagger-ui .mh5-l {
    margin-left: 4rem;
    margin-right: 4rem;
  }
  .swagger-ui .mh6-l {
    margin-left: 8rem;
    margin-right: 8rem;
  }
  .swagger-ui .mh7-l {
    margin-left: 16rem;
    margin-right: 16rem;
  }
}
.swagger-ui .na1 {
  margin: -0.25rem;
}

.swagger-ui .na2 {
  margin: -0.5rem;
}

.swagger-ui .na3 {
  margin: -1rem;
}

.swagger-ui .na4 {
  margin: -2rem;
}

.swagger-ui .na5 {
  margin: -4rem;
}

.swagger-ui .na6 {
  margin: -8rem;
}

.swagger-ui .na7 {
  margin: -16rem;
}

.swagger-ui .nl1 {
  margin-left: -0.25rem;
}

.swagger-ui .nl2 {
  margin-left: -0.5rem;
}

.swagger-ui .nl3 {
  margin-left: -1rem;
}

.swagger-ui .nl4 {
  margin-left: -2rem;
}

.swagger-ui .nl5 {
  margin-left: -4rem;
}

.swagger-ui .nl6 {
  margin-left: -8rem;
}

.swagger-ui .nl7 {
  margin-left: -16rem;
}

.swagger-ui .nr1 {
  margin-right: -0.25rem;
}

.swagger-ui .nr2 {
  margin-right: -0.5rem;
}

.swagger-ui .nr3 {
  margin-right: -1rem;
}

.swagger-ui .nr4 {
  margin-right: -2rem;
}

.swagger-ui .nr5 {
  margin-right: -4rem;
}

.swagger-ui .nr6 {
  margin-right: -8rem;
}

.swagger-ui .nr7 {
  margin-right: -16rem;
}

.swagger-ui .nb1 {
  margin-bottom: -0.25rem;
}

.swagger-ui .nb2 {
  margin-bottom: -0.5rem;
}

.swagger-ui .nb3 {
  margin-bottom: -1rem;
}

.swagger-ui .nb4 {
  margin-bottom: -2rem;
}

.swagger-ui .nb5 {
  margin-bottom: -4rem;
}

.swagger-ui .nb6 {
  margin-bottom: -8rem;
}

.swagger-ui .nb7 {
  margin-bottom: -16rem;
}

.swagger-ui .nt1 {
  margin-top: -0.25rem;
}

.swagger-ui .nt2 {
  margin-top: -0.5rem;
}

.swagger-ui .nt3 {
  margin-top: -1rem;
}

.swagger-ui .nt4 {
  margin-top: -2rem;
}

.swagger-ui .nt5 {
  margin-top: -4rem;
}

.swagger-ui .nt6 {
  margin-top: -8rem;
}

.swagger-ui .nt7 {
  margin-top: -16rem;
}

@media screen and (min-width: 30em) {
  .swagger-ui .na1-ns {
    margin: -0.25rem;
  }
  .swagger-ui .na2-ns {
    margin: -0.5rem;
  }
  .swagger-ui .na3-ns {
    margin: -1rem;
  }
  .swagger-ui .na4-ns {
    margin: -2rem;
  }
  .swagger-ui .na5-ns {
    margin: -4rem;
  }
  .swagger-ui .na6-ns {
    margin: -8rem;
  }
  .swagger-ui .na7-ns {
    margin: -16rem;
  }
  .swagger-ui .nl1-ns {
    margin-left: -0.25rem;
  }
  .swagger-ui .nl2-ns {
    margin-left: -0.5rem;
  }
  .swagger-ui .nl3-ns {
    margin-left: -1rem;
  }
  .swagger-ui .nl4-ns {
    margin-left: -2rem;
  }
  .swagger-ui .nl5-ns {
    margin-left: -4rem;
  }
  .swagger-ui .nl6-ns {
    margin-left: -8rem;
  }
  .swagger-ui .nl7-ns {
    margin-left: -16rem;
  }
  .swagger-ui .nr1-ns {
    margin-right: -0.25rem;
  }
  .swagger-ui .nr2-ns {
    margin-right: -0.5rem;
  }
  .swagger-ui .nr3-ns {
    margin-right: -1rem;
  }
  .swagger-ui .nr4-ns {
    margin-right: -2rem;
  }
  .swagger-ui .nr5-ns {
    margin-right: -4rem;
  }
  .swagger-ui .nr6-ns {
    margin-right: -8rem;
  }
  .swagger-ui .nr7-ns {
    margin-right: -16rem;
  }
  .swagger-ui .nb1-ns {
    margin-bottom: -0.25rem;
  }
  .swagger-ui .nb2-ns {
    margin-bottom: -0.5rem;
  }
  .swagger-ui .nb3-ns {
    margin-bottom: -1rem;
  }
  .swagger-ui .nb4-ns {
    margin-bottom: -2rem;
  }
  .swagger-ui .nb5-ns {
    margin-bottom: -4rem;
  }
  .swagger-ui .nb6-ns {
    margin-bottom: -8rem;
  }
  .swagger-ui .nb7-ns {
    margin-bottom: -16rem;
  }
  .swagger-ui .nt1-ns {
    margin-top: -0.25rem;
  }
  .swagger-ui .nt2-ns {
    margin-top: -0.5rem;
  }
  .swagger-ui .nt3-ns {
    margin-top: -1rem;
  }
  .swagger-ui .nt4-ns {
    margin-top: -2rem;
  }
  .swagger-ui .nt5-ns {
    margin-top: -4rem;
  }
  .swagger-ui .nt6-ns {
    margin-top: -8rem;
  }
  .swagger-ui .nt7-ns {
    margin-top: -16rem;
  }
}
@media screen and (min-width: 30em) and (max-width: 60em) {
  .swagger-ui .na1-m {
    margin: -0.25rem;
  }
  .swagger-ui .na2-m {
    margin: -0.5rem;
  }
  .swagger-ui .na3-m {
    margin: -1rem;
  }
  .swagger-ui .na4-m {
    margin: -2rem;
  }
  .swagger-ui .na5-m {
    margin: -4rem;
  }
  .swagger-ui .na6-m {
    margin: -8rem;
  }
  .swagger-ui .na7-m {
    margin: -16rem;
  }
  .swagger-ui .nl1-m {
    margin-left: -0.25rem;
  }
  .swagger-ui .nl2-m {
    margin-left: -0.5rem;
  }
  .swagger-ui .nl3-m {
    margin-left: -1rem;
  }
  .swagger-ui .nl4-m {
    margin-left: -2rem;
  }
  .swagger-ui .nl5-m {
    margin-left: -4rem;
  }
  .swagger-ui .nl6-m {
    margin-left: -8rem;
  }
  .swagger-ui .nl7-m {
    margin-left: -16rem;
  }
  .swagger-ui .nr1-m {
    margin-right: -0.25rem;
  }
  .swagger-ui .nr2-m {
    margin-right: -0.5rem;
  }
  .swagger-ui .nr3-m {
    margin-right: -1rem;
  }
  .swagger-ui .nr4-m {
    margin-right: -2rem;
  }
  .swagger-ui .nr5-m {
    margin-right: -4rem;
  }
  .swagger-ui .nr6-m {
    margin-right: -8rem;
  }
  .swagger-ui .nr7-m {
    margin-right: -16rem;
  }
  .swagger-ui .nb1-m {
    margin-bottom: -0.25rem;
  }
  .swagger-ui .nb2-m {
    margin-bottom: -0.5rem;
  }
  .swagger-ui .nb3-m {
    margin-bottom: -1rem;
  }
  .swagger-ui .nb4-m {
    margin-bottom: -2rem;
  }
  .swagger-ui .nb5-m {
    margin-bottom: -4rem;
  }
  .swagger-ui .nb6-m {
    margin-bottom: -8rem;
  }
  .swagger-ui .nb7-m {
    margin-bottom: -16rem;
  }
  .swagger-ui .nt1-m {
    margin-top: -0.25rem;
  }
  .swagger-ui .nt2-m {
    margin-top: -0.5rem;
  }
  .swagger-ui .nt3-m {
    margin-top: -1rem;
  }
  .swagger-ui .nt4-m {
    margin-top: -2rem;
  }
  .swagger-ui .nt5-m {
    margin-top: -4rem;
  }
  .swagger-ui .nt6-m {
    margin-top: -8rem;
  }
  .swagger-ui .nt7-m {
    margin-top: -16rem;
  }
}
@media screen and (min-width: 60em) {
  .swagger-ui .na1-l {
    margin: -0.25rem;
  }
  .swagger-ui .na2-l {
    margin: -0.5rem;
  }
  .swagger-ui .na3-l {
    margin: -1rem;
  }
  .swagger-ui .na4-l {
    margin: -2rem;
  }
  .swagger-ui .na5-l {
    margin: -4rem;
  }
  .swagger-ui .na6-l {
    margin: -8rem;
  }
  .swagger-ui .na7-l {
    margin: -16rem;
  }
  .swagger-ui .nl1-l {
    margin-left: -0.25rem;
  }
  .swagger-ui .nl2-l {
    margin-left: -0.5rem;
  }
  .swagger-ui .nl3-l {
    margin-left: -1rem;
  }
  .swagger-ui .nl4-l {
    margin-left: -2rem;
  }
  .swagger-ui .nl5-l {
    margin-left: -4rem;
  }
  .swagger-ui .nl6-l {
    margin-left: -8rem;
  }
  .swagger-ui .nl7-l {
    margin-left: -16rem;
  }
  .swagger-ui .nr1-l {
    margin-right: -0.25rem;
  }
  .swagger-ui .nr2-l {
    margin-right: -0.5rem;
  }
  .swagger-ui .nr3-l {
    margin-right: -1rem;
  }
  .swagger-ui .nr4-l {
    margin-right: -2rem;
  }
  .swagger-ui .nr5-l {
    margin-right: -4rem;
  }
  .swagger-ui .nr6-l {
    margin-right: -8rem;
  }
  .swagger-ui .nr7-l {
    margin-right: -16rem;
  }
  .swagger-ui .nb1-l {
    margin-bottom: -0.25rem;
  }
  .swagger-ui .nb2-l {
    margin-bottom: -0.5rem;
  }
  .swagger-ui .nb3-l {
    margin-bottom: -1rem;
  }
  .swagger-ui .nb4-l {
    margin-bottom: -2rem;
  }
  .swagger-ui .nb5-l {
    margin-bottom: -4rem;
  }
  .swagger-ui .nb6-l {
    margin-bottom: -8rem;
  }
  .swagger-ui .nb7-l {
    margin-bottom: -16rem;
  }
  .swagger-ui .nt1-l {
    margin-top: -0.25rem;
  }
  .swagger-ui .nt2-l {
    margin-top: -0.5rem;
  }
  .swagger-ui .nt3-l {
    margin-top: -1rem;
  }
  .swagger-ui .nt4-l {
    margin-top: -2rem;
  }
  .swagger-ui .nt5-l {
    margin-top: -4rem;
  }
  .swagger-ui .nt6-l {
    margin-top: -8rem;
  }
  .swagger-ui .nt7-l {
    margin-top: -16rem;
  }
}
.swagger-ui .collapse {
  border-collapse: collapse;
  border-spacing: 0;
}

.swagger-ui .striped--light-silver:nth-child(odd) {
  background-color: #aaa;
}

.swagger-ui .striped--moon-gray:nth-child(odd) {
  background-color: #ccc;
}

.swagger-ui .striped--light-gray:nth-child(odd) {
  background-color: #eee;
}

.swagger-ui .striped--near-white:nth-child(odd) {
  background-color: #f4f4f4;
}

.swagger-ui .stripe-light:nth-child(odd) {
  background-color: hsla(0, 0%, 100%, 0.1);
}

.swagger-ui .stripe-dark:nth-child(odd) {
  background-color: rgba(0, 0, 0, 0.1);
}

.swagger-ui .strike {
  text-decoration: line-through;
}

.swagger-ui .underline {
  text-decoration: underline;
}

.swagger-ui .no-underline {
  text-decoration: none;
}

@media screen and (min-width: 30em) {
  .swagger-ui .strike-ns {
    text-decoration: line-through;
  }
  .swagger-ui .underline-ns {
    text-decoration: underline;
  }
  .swagger-ui .no-underline-ns {
    text-decoration: none;
  }
}
@media screen and (min-width: 30em) and (max-width: 60em) {
  .swagger-ui .strike-m {
    text-decoration: line-through;
  }
  .swagger-ui .underline-m {
    text-decoration: underline;
  }
  .swagger-ui .no-underline-m {
    text-decoration: none;
  }
}
@media screen and (min-width: 60em) {
  .swagger-ui .strike-l {
    text-decoration: line-through;
  }
  .swagger-ui .underline-l {
    text-decoration: underline;
  }
  .swagger-ui .no-underline-l {
    text-decoration: none;
  }
}
.swagger-ui .tl {
  text-align: left;
}

.swagger-ui .tr {
  text-align: right;
}

.swagger-ui .tc {
  text-align: center;
}

.swagger-ui .tj {
  text-align: justify;
}

@media screen and (min-width: 30em) {
  .swagger-ui .tl-ns {
    text-align: left;
  }
  .swagger-ui .tr-ns {
    text-align: right;
  }
  .swagger-ui .tc-ns {
    text-align: center;
  }
  .swagger-ui .tj-ns {
    text-align: justify;
  }
}
@media screen and (min-width: 30em) and (max-width: 60em) {
  .swagger-ui .tl-m {
    text-align: left;
  }
  .swagger-ui .tr-m {
    text-align: right;
  }
  .swagger-ui .tc-m {
    text-align: center;
  }
  .swagger-ui .tj-m {
    text-align: justify;
  }
}
@media screen and (min-width: 60em) {
  .swagger-ui .tl-l {
    text-align: left;
  }
  .swagger-ui .tr-l {
    text-align: right;
  }
  .swagger-ui .tc-l {
    text-align: center;
  }
  .swagger-ui .tj-l {
    text-align: justify;
  }
}
.swagger-ui .ttc {
  text-transform: capitalize;
}

.swagger-ui .ttl {
  text-transform: lowercase;
}

.swagger-ui .ttu {
  text-transform: uppercase;
}

.swagger-ui .ttn {
  text-transform: none;
}

@media screen and (min-width: 30em) {
  .swagger-ui .ttc-ns {
    text-transform: capitalize;
  }
  .swagger-ui .ttl-ns {
    text-transform: lowercase;
  }
  .swagger-ui .ttu-ns {
    text-transform: uppercase;
  }
  .swagger-ui .ttn-ns {
    text-transform: none;
  }
}
@media screen and (min-width: 30em) and (max-width: 60em) {
  .swagger-ui .ttc-m {
    text-transform: capitalize;
  }
  .swagger-ui .ttl-m {
    text-transform: lowercase;
  }
  .swagger-ui .ttu-m {
    text-transform: uppercase;
  }
  .swagger-ui .ttn-m {
    text-transform: none;
  }
}
@media screen and (min-width: 60em) {
  .swagger-ui .ttc-l {
    text-transform: capitalize;
  }
  .swagger-ui .ttl-l {
    text-transform: lowercase;
  }
  .swagger-ui .ttu-l {
    text-transform: uppercase;
  }
  .swagger-ui .ttn-l {
    text-transform: none;
  }
}
.swagger-ui .f-6, .swagger-ui .f-headline {
  font-size: 6rem;
}

.swagger-ui .f-5, .swagger-ui .f-subheadline {
  font-size: 5rem;
}

.swagger-ui .f1 {
  font-size: 3rem;
}

.swagger-ui .f2 {
  font-size: 2.25rem;
}

.swagger-ui .f3 {
  font-size: 1.5rem;
}

.swagger-ui .f4 {
  font-size: 1.25rem;
}

.swagger-ui .f5 {
  font-size: 1rem;
}

.swagger-ui .f6 {
  font-size: 0.88rem;
}

.swagger-ui .f7 {
  font-size: 0.75rem;
}

@media screen and (min-width: 30em) {
  .swagger-ui .f-6-ns, .swagger-ui .f-headline-ns {
    font-size: 6rem;
  }
  .swagger-ui .f-5-ns, .swagger-ui .f-subheadline-ns {
    font-size: 5rem;
  }
  .swagger-ui .f1-ns {
    font-size: 3rem;
  }
  .swagger-ui .f2-ns {
    font-size: 2.25rem;
  }
  .swagger-ui .f3-ns {
    font-size: 1.5rem;
  }
  .swagger-ui .f4-ns {
    font-size: 1.25rem;
  }
  .swagger-ui .f5-ns {
    font-size: 1rem;
  }
  .swagger-ui .f6-ns {
    font-size: 0.88rem;
  }
  .swagger-ui .f7-ns {
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 30em) and (max-width: 60em) {
  .swagger-ui .f-6-m, .swagger-ui .f-headline-m {
    font-size: 6rem;
  }
  .swagger-ui .f-5-m, .swagger-ui .f-subheadline-m {
    font-size: 5rem;
  }
  .swagger-ui .f1-m {
    font-size: 3rem;
  }
  .swagger-ui .f2-m {
    font-size: 2.25rem;
  }
  .swagger-ui .f3-m {
    font-size: 1.5rem;
  }
  .swagger-ui .f4-m {
    font-size: 1.25rem;
  }
  .swagger-ui .f5-m {
    font-size: 1rem;
  }
  .swagger-ui .f6-m {
    font-size: 0.88rem;
  }
  .swagger-ui .f7-m {
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 60em) {
  .swagger-ui .f-6-l, .swagger-ui .f-headline-l {
    font-size: 6rem;
  }
  .swagger-ui .f-5-l, .swagger-ui .f-subheadline-l {
    font-size: 5rem;
  }
  .swagger-ui .f1-l {
    font-size: 3rem;
  }
  .swagger-ui .f2-l {
    font-size: 2.25rem;
  }
  .swagger-ui .f3-l {
    font-size: 1.5rem;
  }
  .swagger-ui .f4-l {
    font-size: 1.25rem;
  }
  .swagger-ui .f5-l {
    font-size: 1rem;
  }
  .swagger-ui .f6-l {
    font-size: 0.88rem;
  }
  .swagger-ui .f7-l {
    font-size: 0.75rem;
  }
}
.swagger-ui .measure {
  max-width: 30em;
}

.swagger-ui .measure-wide {
  max-width: 34em;
}

.swagger-ui .measure-narrow {
  max-width: 20em;
}

.swagger-ui .indent {
  margin-bottom: 0;
  margin-top: 0;
  text-indent: 1em;
}

.swagger-ui .small-caps {
  font-feature-settings: "smcp";
  font-variant: small-caps;
}

.swagger-ui .truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media screen and (min-width: 30em) {
  .swagger-ui .measure-ns {
    max-width: 30em;
  }
  .swagger-ui .measure-wide-ns {
    max-width: 34em;
  }
  .swagger-ui .measure-narrow-ns {
    max-width: 20em;
  }
  .swagger-ui .indent-ns {
    margin-bottom: 0;
    margin-top: 0;
    text-indent: 1em;
  }
  .swagger-ui .small-caps-ns {
    font-feature-settings: "smcp";
    font-variant: small-caps;
  }
  .swagger-ui .truncate-ns {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
@media screen and (min-width: 30em) and (max-width: 60em) {
  .swagger-ui .measure-m {
    max-width: 30em;
  }
  .swagger-ui .measure-wide-m {
    max-width: 34em;
  }
  .swagger-ui .measure-narrow-m {
    max-width: 20em;
  }
  .swagger-ui .indent-m {
    margin-bottom: 0;
    margin-top: 0;
    text-indent: 1em;
  }
  .swagger-ui .small-caps-m {
    font-feature-settings: "smcp";
    font-variant: small-caps;
  }
  .swagger-ui .truncate-m {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
@media screen and (min-width: 60em) {
  .swagger-ui .measure-l {
    max-width: 30em;
  }
  .swagger-ui .measure-wide-l {
    max-width: 34em;
  }
  .swagger-ui .measure-narrow-l {
    max-width: 20em;
  }
  .swagger-ui .indent-l {
    margin-bottom: 0;
    margin-top: 0;
    text-indent: 1em;
  }
  .swagger-ui .small-caps-l {
    font-feature-settings: "smcp";
    font-variant: small-caps;
  }
  .swagger-ui .truncate-l {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
.swagger-ui .overflow-container {
  overflow-y: scroll;
}

.swagger-ui .center {
  margin-left: auto;
  margin-right: auto;
}

.swagger-ui .mr-auto {
  margin-right: auto;
}

.swagger-ui .ml-auto {
  margin-left: auto;
}

@media screen and (min-width: 30em) {
  .swagger-ui .center-ns {
    margin-left: auto;
    margin-right: auto;
  }
  .swagger-ui .mr-auto-ns {
    margin-right: auto;
  }
  .swagger-ui .ml-auto-ns {
    margin-left: auto;
  }
}
@media screen and (min-width: 30em) and (max-width: 60em) {
  .swagger-ui .center-m {
    margin-left: auto;
    margin-right: auto;
  }
  .swagger-ui .mr-auto-m {
    margin-right: auto;
  }
  .swagger-ui .ml-auto-m {
    margin-left: auto;
  }
}
@media screen and (min-width: 60em) {
  .swagger-ui .center-l {
    margin-left: auto;
    margin-right: auto;
  }
  .swagger-ui .mr-auto-l {
    margin-right: auto;
  }
  .swagger-ui .ml-auto-l {
    margin-left: auto;
  }
}
.swagger-ui .clip {
  clip: rect(0.08em 0.08em 0.08em 0.08em);
  clip: rect(0.08em, 0.08em, 0.08em, 0.08em);
  position: fixed !important;
  _position: absolute !important;
}

@media screen and (min-width: 30em) {
  .swagger-ui .clip-ns {
    clip: rect(0.08em 0.08em 0.08em 0.08em);
    clip: rect(0.08em, 0.08em, 0.08em, 0.08em);
    position: fixed !important;
    _position: absolute !important;
  }
}
@media screen and (min-width: 30em) and (max-width: 60em) {
  .swagger-ui .clip-m {
    clip: rect(0.08em 0.08em 0.08em 0.08em);
    clip: rect(0.08em, 0.08em, 0.08em, 0.08em);
    position: fixed !important;
    _position: absolute !important;
  }
}
@media screen and (min-width: 60em) {
  .swagger-ui .clip-l {
    clip: rect(0.08em 0.08em 0.08em 0.08em);
    clip: rect(0.08em, 0.08em, 0.08em, 0.08em);
    position: fixed !important;
    _position: absolute !important;
  }
}
.swagger-ui .ws-normal {
  white-space: normal;
}

.swagger-ui .nowrap {
  white-space: nowrap;
}

.swagger-ui .pre {
  white-space: pre;
  overflow: scroll;
}

@media screen and (min-width: 30em) {
  .swagger-ui .ws-normal-ns {
    white-space: normal;
  }
  .swagger-ui .nowrap-ns {
    white-space: nowrap;
  }
  .swagger-ui .pre-ns {
    white-space: pre;
  }
}
@media screen and (min-width: 30em) and (max-width: 60em) {
  .swagger-ui .ws-normal-m {
    white-space: normal;
  }
  .swagger-ui .nowrap-m {
    white-space: nowrap;
  }
  .swagger-ui .pre-m {
    white-space: pre;
  }
}
@media screen and (min-width: 60em) {
  .swagger-ui .ws-normal-l {
    white-space: normal;
  }
  .swagger-ui .nowrap-l {
    white-space: nowrap;
  }
  .swagger-ui .pre-l {
    white-space: pre;
  }
}
.swagger-ui .v-base {
  vertical-align: baseline;
}

.swagger-ui .v-mid {
  vertical-align: middle;
}

.swagger-ui .v-top {
  vertical-align: top;
}

.swagger-ui .v-btm {
  vertical-align: bottom;
}

@media screen and (min-width: 30em) {
  .swagger-ui .v-base-ns {
    vertical-align: baseline;
  }
  .swagger-ui .v-mid-ns {
    vertical-align: middle;
  }
  .swagger-ui .v-top-ns {
    vertical-align: top;
  }
  .swagger-ui .v-btm-ns {
    vertical-align: bottom;
  }
}
@media screen and (min-width: 30em) and (max-width: 60em) {
  .swagger-ui .v-base-m {
    vertical-align: baseline;
  }
  .swagger-ui .v-mid-m {
    vertical-align: middle;
  }
  .swagger-ui .v-top-m {
    vertical-align: top;
  }
  .swagger-ui .v-btm-m {
    vertical-align: bottom;
  }
}
@media screen and (min-width: 60em) {
  .swagger-ui .v-base-l {
    vertical-align: baseline;
  }
  .swagger-ui .v-mid-l {
    vertical-align: middle;
  }
  .swagger-ui .v-top-l {
    vertical-align: top;
  }
  .swagger-ui .v-btm-l {
    vertical-align: bottom;
  }
}
.swagger-ui .dim {
  opacity: 1;
  transition: opacity 0.15s ease-in;
}

.swagger-ui .dim:focus, .swagger-ui .dim:hover {
  opacity: 0.5;
  transition: opacity 0.15s ease-in;
}

.swagger-ui .dim:active {
  opacity: 0.8;
  transition: opacity 0.15s ease-out;
}

.swagger-ui .glow {
  transition: opacity 0.15s ease-in;
}

.swagger-ui .glow:focus, .swagger-ui .glow:hover {
  opacity: 1;
  transition: opacity 0.15s ease-in;
}

.swagger-ui .hide-child .child {
  opacity: 0;
  transition: opacity 0.15s ease-in;
}

.swagger-ui .hide-child:active .child, .swagger-ui .hide-child:focus .child, .swagger-ui .hide-child:hover .child {
  opacity: 1;
  transition: opacity 0.15s ease-in;
}

.swagger-ui .underline-hover:focus, .swagger-ui .underline-hover:hover {
  text-decoration: underline;
}

.swagger-ui .grow {
  -moz-osx-font-smoothing: grayscale;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: transform 0.25s ease-out;
}

.swagger-ui .grow:focus, .swagger-ui .grow:hover {
  transform: scale(1.05);
}

.swagger-ui .grow:active {
  transform: scale(0.9);
}

.swagger-ui .grow-large {
  -moz-osx-font-smoothing: grayscale;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: transform 0.25s ease-in-out;
}

.swagger-ui .grow-large:focus, .swagger-ui .grow-large:hover {
  transform: scale(1.2);
}

.swagger-ui .grow-large:active {
  transform: scale(0.95);
}

.swagger-ui .pointer:hover {
  cursor: pointer;
}

.swagger-ui .shadow-hover {
  cursor: pointer;
  position: relative;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.swagger-ui .shadow-hover:after {
  border-radius: inherit;
  box-shadow: 0 0 1.33em 0.17em rgba(0, 0, 0, 0.2);
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
  z-index: -1;
}

.swagger-ui .shadow-hover:focus:after, .swagger-ui .shadow-hover:hover:after {
  opacity: 1;
}

.swagger-ui .bg-animate, .swagger-ui .bg-animate:focus, .swagger-ui .bg-animate:hover {
  transition: background-color 0.15s ease-in-out;
}

.swagger-ui .z-0 {
  z-index: 0;
}

.swagger-ui .z-1 {
  z-index: 1;
}

.swagger-ui .z-2 {
  z-index: 2;
}

.swagger-ui .z-3 {
  z-index: 3;
}

.swagger-ui .z-4 {
  z-index: 4;
}

.swagger-ui .z-5 {
  z-index: 5;
}

.swagger-ui .z-999 {
  z-index: 999;
}

.swagger-ui .z-9999 {
  z-index: 9999;
}

.swagger-ui .z-max {
  z-index: 2147483647;
}

.swagger-ui .z-inherit {
  z-index: inherit;
}

.swagger-ui .z-initial {
  z-index: auto;
}

.swagger-ui .z-unset {
  z-index: unset;
}

.swagger-ui .nested-copy-line-height ol, .swagger-ui .nested-copy-line-height p, .swagger-ui .nested-copy-line-height ul {
  line-height: 1.5;
}

.swagger-ui .nested-headline-line-height h1, .swagger-ui .nested-headline-line-height h2, .swagger-ui .nested-headline-line-height h3, .swagger-ui .nested-headline-line-height h4, .swagger-ui .nested-headline-line-height h5, .swagger-ui .nested-headline-line-height h6 {
  line-height: 1.25;
}

.swagger-ui .nested-list-reset ol, .swagger-ui .nested-list-reset ul {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
}

.swagger-ui .nested-copy-indent p + p {
  margin-bottom: 0;
  margin-top: 0;
  text-indent: 0.1em;
}

.swagger-ui .nested-copy-seperator p + p {
  margin-top: 1.5em;
}

.swagger-ui .nested-img img {
  display: block;
  max-width: 100%;
  width: 100%;
}

.swagger-ui .nested-links a {
  color: #357edd;
  transition: color 0.15s ease-in;
}

.swagger-ui .nested-links a:focus, .swagger-ui .nested-links a:hover {
  color: #96ccff;
  transition: color 0.15s ease-in;
}

.swagger-ui .wrapper {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 121.7em;
  padding: 0 1.67em;
  width: 100%;
}

.swagger-ui .opblock-tag-section {
  display: flex;
  flex-direction: column;
}

.swagger-ui .try-out.btn-group {
  display: flex;
  flex: 0.1 2 auto;
  padding: 0;
}

.swagger-ui .try-out__btn {
  margin-left: 1.25rem;
}

.swagger-ui .opblock-tag {
  align-items: center;
  border-bottom: 0.08em solid rgba(59, 65, 81, 0.3);
  cursor: pointer;
  display: flex;
  padding: 0.83em 1.67em 0.83em 0.83em;
  transition: all 0.2s;
  color: #3b4151;
  font-family: sans-serif;
  font-size: 2em;
  margin: 0 0 0.42em;
}

.swagger-ui .opblock-tag:hover {
  background: rgba(0, 0, 0, 0.02);
}

.swagger-ui .opblock-tag.no-desc span {
  flex: 1;
}

.swagger-ui .opblock-tag svg {
  transition: all 0.4s;
}

.swagger-ui .opblock-tag small {
  color: #3b4151;
  flex: 1;
  font-family: sans-serif;
  font-size: 1.17em;
  font-weight: 400;
  padding: 0 0.83em;
}

.swagger-ui .parameter__type {
  color: #3b4151;
  font-family: monospace;
  font-size: 1em;
  font-weight: 600;
  padding: 0.42em 0;
}

.swagger-ui .parameter-controls {
  margin-top: 0.75em;
}

.swagger-ui .examples__title {
  display: block;
  font-size: 1.1em;
  font-weight: 700;
  margin-bottom: 0.75em;
}

.swagger-ui .examples__section {
  margin-top: 1.5em;
}

.swagger-ui .examples__section-header {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.swagger-ui .examples-select {
  display: inline-block;
  margin-bottom: 0.75em;
}

.swagger-ui .examples-select .examples-select-element {
  width: 100%;
}

.swagger-ui .examples-select__section-label {
  font-size: 0.9rem;
  font-weight: 700;
  margin-right: 0.5rem;
}

.swagger-ui .example__section {
  margin-top: 1.5em;
}

.swagger-ui .example__section-header {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.swagger-ui .view-line-link {
  cursor: pointer;
  margin: 0 0.42em;
  position: relative;
  top: 0.25em;
  transition: all 0.5s;
  width: 1.67em;
}

.swagger-ui .opblock {
  border: 0.08em solid #000;
  border-radius: 0.33em;
  box-shadow: 0 0 0.25em rgba(0, 0, 0, 0.19);
  margin: 0 0 1.25em;
}

.swagger-ui .opblock .tab-header {
  display: flex;
  flex: 1;
}

.swagger-ui .opblock .tab-header .tab-item {
  cursor: pointer;
  padding: 0 3.33em;
}

.swagger-ui .opblock .tab-header .tab-item:first-of-type {
  padding: 0 3.33em 0 0;
}

.swagger-ui .opblock .tab-header .tab-item.active h4 span {
  position: relative;
}

.swagger-ui .opblock .tab-header .tab-item.active h4 span:after {
  background: grey;
  bottom: -1.25em;
  content: "";
  height: 0.33em;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 120%;
}

.swagger-ui .opblock.is-open .opblock-summary {
  border-bottom: 0.08em solid #000;
}

.swagger-ui .opblock .opblock-section-header {
  align-items: center;
  background: hsla(0, 0%, 100%, 0.8);
  box-shadow: 0 0.08em 0.17em rgba(0, 0, 0, 0.1);
  display: flex;
  min-height: 4.17em;
  padding: 0.67em 1.67em;
}

.swagger-ui .opblock .opblock-section-header > label {
  align-items: center;
  color: #3b4151;
  display: flex;
  font-family: sans-serif;
  font-size: 1em;
  font-weight: 700;
  margin: 0 0 0 auto;
}

.swagger-ui .opblock .opblock-section-header > label > span {
  padding: 0 0.83em 0 0;
}

.swagger-ui .opblock .opblock-section-header h4 {
  color: #3b4151;
  flex: 1;
  font-family: sans-serif;
  font-size: 1.17em;
  margin: 0;
}

.swagger-ui .opblock .opblock-summary-method {
  background: #000;
  border-radius: 0.25em;
  color: #fff;
  font-family: sans-serif;
  font-size: 1.17em;
  font-weight: 700;
  min-width: 6.67em;
  padding: 0.5em 0;
  text-align: center;
  text-shadow: 0 0.08em 0 rgba(0, 0, 0, 0.1);
}

.swagger-ui .opblock .opblock-summary-operation-id, .swagger-ui .opblock .opblock-summary-path, .swagger-ui .opblock .opblock-summary-path__deprecated {
  align-items: center;
  color: #3b4151;
  display: flex;
  font-family: monospace;
  font-size: 1.33em;
  font-weight: 600;
  padding: 0 0.83em;
  word-break: break-word;
}

@media (max-width: 64em) {
  .swagger-ui .opblock .opblock-summary-operation-id, .swagger-ui .opblock .opblock-summary-path, .swagger-ui .opblock .opblock-summary-path__deprecated {
    font-size: 1em;
  }
}
.swagger-ui .opblock .opblock-summary-path {
  flex-shrink: 0;
  max-width: calc(100% - 9.17em - 15rem);
}

.swagger-ui .opblock .opblock-summary-path__deprecated {
  text-decoration: line-through;
}

.swagger-ui .opblock .opblock-summary-operation-id {
  font-size: 1.17em;
}

.swagger-ui .opblock .opblock-summary-description {
  color: #3b4151;
  flex: 1 1 auto;
  font-family: sans-serif;
  font-size: 1.08em;
  word-break: break-word;
}

.swagger-ui .opblock .opblock-summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  padding: 0.42em;
}

.swagger-ui .opblock .opblock-summary .view-line-link {
  cursor: pointer;
  margin: 0;
  position: relative;
  top: 0.17em;
  transition: all 0.5s;
  width: 0;
}

.swagger-ui .opblock .opblock-summary:hover .view-line-link {
  margin: 0 0.42em;
  width: 1.5em;
}

.swagger-ui .opblock.opblock-post {
  background: rgba(73, 204, 144, 0.1);
  border-color: #49cc90;
}

.swagger-ui .opblock.opblock-post .opblock-summary-method {
  background: #49cc90;
}

.swagger-ui .opblock.opblock-post .opblock-summary {
  border-color: #49cc90;
}

.swagger-ui .opblock.opblock-post .tab-header .tab-item.active h4 span:after {
  background: #49cc90;
}

.swagger-ui .opblock.opblock-put {
  background: rgba(252, 161, 48, 0.1);
  border-color: #fca130;
}

.swagger-ui .opblock.opblock-put .opblock-summary-method {
  background: #fca130;
}

.swagger-ui .opblock.opblock-put .opblock-summary {
  border-color: #fca130;
}

.swagger-ui .opblock.opblock-put .tab-header .tab-item.active h4 span:after {
  background: #fca130;
}

.swagger-ui .opblock.opblock-delete {
  background: rgba(249, 62, 62, 0.1);
  border-color: #f93e3e;
}

.swagger-ui .opblock.opblock-delete .opblock-summary-method {
  background: #f93e3e;
}

.swagger-ui .opblock.opblock-delete .opblock-summary {
  border-color: #f93e3e;
}

.swagger-ui .opblock.opblock-delete .tab-header .tab-item.active h4 span:after {
  background: #f93e3e;
}

.swagger-ui .opblock.opblock-get {
  background: rgba(97, 175, 254, 0.1);
  border-color: #61affe;
}

.swagger-ui .opblock.opblock-get .opblock-summary-method {
  background: #61affe;
}

.swagger-ui .opblock.opblock-get .opblock-summary {
  border-color: #61affe;
}

.swagger-ui .opblock.opblock-get .tab-header .tab-item.active h4 span:after {
  background: #61affe;
}

.swagger-ui .opblock.opblock-patch {
  background: rgba(80, 227, 194, 0.1);
  border-color: #50e3c2;
}

.swagger-ui .opblock.opblock-patch .opblock-summary-method {
  background: #50e3c2;
}

.swagger-ui .opblock.opblock-patch .opblock-summary {
  border-color: #50e3c2;
}

.swagger-ui .opblock.opblock-patch .tab-header .tab-item.active h4 span:after {
  background: #50e3c2;
}

.swagger-ui .opblock.opblock-head {
  background: rgba(144, 18, 254, 0.1);
  border-color: #9012fe;
}

.swagger-ui .opblock.opblock-head .opblock-summary-method {
  background: #9012fe;
}

.swagger-ui .opblock.opblock-head .opblock-summary {
  border-color: #9012fe;
}

.swagger-ui .opblock.opblock-head .tab-header .tab-item.active h4 span:after {
  background: #9012fe;
}

.swagger-ui .opblock.opblock-options {
  background: rgba(13, 90, 167, 0.1);
  border-color: #0d5aa7;
}

.swagger-ui .opblock.opblock-options .opblock-summary-method {
  background: #0d5aa7;
}

.swagger-ui .opblock.opblock-options .opblock-summary {
  border-color: #0d5aa7;
}

.swagger-ui .opblock.opblock-options .tab-header .tab-item.active h4 span:after {
  background: #0d5aa7;
}

.swagger-ui .opblock.opblock-deprecated {
  background: hsla(0, 0%, 92%, 0.1);
  border-color: #ebebeb;
  opacity: 0.6;
}

.swagger-ui .opblock.opblock-deprecated .opblock-summary-method {
  background: #ebebeb;
}

.swagger-ui .opblock.opblock-deprecated .opblock-summary {
  border-color: #ebebeb;
}

.swagger-ui .opblock.opblock-deprecated .tab-header .tab-item.active h4 span:after {
  background: #ebebeb;
}

.swagger-ui .opblock .opblock-schemes {
  padding: 0.67em 1.67em;
}

.swagger-ui .opblock .opblock-schemes .schemes-title {
  padding: 0 0.83em 0 0;
}

.swagger-ui .filter .operation-filter-input {
  border: 0.17em solid #d8dde7;
  margin: 1.67em 0;
  padding: 0.83em;
  width: 100%;
}

.swagger-ui .download-url-wrapper .failed, .swagger-ui .filter .failed {
  color: red;
}

.swagger-ui .download-url-wrapper .loading, .swagger-ui .filter .loading {
  color: #aaa;
}

.swagger-ui .model-example {
  margin-top: 1em;
}

.swagger-ui .tab {
  display: flex;
  list-style: none;
  padding: 0;
}

.swagger-ui .tab li {
  color: #3b4151;
  cursor: pointer;
  font-family: sans-serif;
  font-size: 1em;
  min-width: 5em;
  padding: 0;
}

.swagger-ui .tab li:first-of-type {
  padding-left: 0;
  padding-right: 1em;
  position: relative;
}

.swagger-ui .tab li:first-of-type:after {
  background: rgba(0, 0, 0, 0.2);
  content: "";
  height: 100%;
  position: absolute;
  right: 0.5em;
  top: 0;
  width: 0.08em;
}

.swagger-ui .tab li.active {
  font-weight: 700;
}

.swagger-ui .tab li button.tablinks {
  background: none;
  border: 0;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  padding: 0;
}

.swagger-ui .opblock-description-wrapper, .swagger-ui .opblock-external-docs-wrapper, .swagger-ui .opblock-title_normal {
  color: #3b4151;
  font-family: sans-serif;
  font-size: 1em;
  margin: 0 0 0.42em;
  padding: 1.25em 1.67em;
}

.swagger-ui .opblock-description-wrapper h4, .swagger-ui .opblock-external-docs-wrapper h4, .swagger-ui .opblock-title_normal h4 {
  color: #3b4151;
  font-family: sans-serif;
  font-size: 1em;
  margin: 0 0 0.42em;
}

.swagger-ui .opblock-description-wrapper p, .swagger-ui .opblock-external-docs-wrapper p, .swagger-ui .opblock-title_normal p {
  color: #3b4151;
  font-family: sans-serif;
  font-size: 1.17em;
  margin: 0;
}

.swagger-ui .opblock-external-docs-wrapper h4 {
  padding-left: 0;
}

.swagger-ui .execute-wrapper {
  padding: 1.67em;
  text-align: right;
}

.swagger-ui .execute-wrapper .btn {
  padding: 0.67em 3.33em;
  width: 100%;
}

.swagger-ui .body-param-options {
  display: flex;
  flex-direction: column;
}

.swagger-ui .body-param-options .body-param-edit {
  padding: 0.83em 0;
}

.swagger-ui .body-param-options label {
  padding: 0.67em 0;
}

.swagger-ui .body-param-options label select {
  margin: 0.25em 0 0;
}

.swagger-ui .responses-inner {
  padding: 1.67em;
}

.swagger-ui .responses-inner h4, .swagger-ui .responses-inner h5 {
  color: #3b4151;
  font-family: sans-serif;
  font-size: 1em;
  margin: 0.83em 0 0.42em;
}

.swagger-ui .responses-inner .curl {
  white-space: normal;
}

.swagger-ui .response-col_status {
  color: #3b4151;
  font-family: sans-serif;
  font-size: 1.17em;
}

.swagger-ui .response-col_status .response-undocumented {
  color: #909090;
  font-family: monospace;
  font-size: 0.92em;
  font-weight: 600;
}

.swagger-ui .response-col_links {
  color: #3b4151;
  font-family: sans-serif;
  max-width: 40em;
  padding-left: 2em;
  min-width: 6em;
}

.swagger-ui .response-col_links .response-undocumented {
  color: #909090;
  font-family: monospace;
  font-size: 0.92em;
  font-weight: 600;
}

.swagger-ui .response-col_links .operation-link {
  margin-bottom: 1.5em;
}

.swagger-ui .response-col_links .operation-link .description {
  margin-bottom: 0.5em;
}

.swagger-ui .opblock-body .opblock-loading-animation {
  display: block;
  margin: 3em auto;
}

.swagger-ui .opblock-body pre.microlight {
  word-wrap: break-word;
  background: #333;
  border-radius: 0.33em;
  color: #fff;
  font-family: monospace;
  font-size: 1em;
  font-weight: 600;
  hyphens: auto;
  margin: 0;
  padding: 0.83em;
  white-space: pre-wrap;
  word-break: break-all;
  word-break: break-word;
}

.swagger-ui .opblock-body pre.microlight .headerline {
  display: block;
}

.swagger-ui .highlight-code {
  position: relative;
}

.swagger-ui .highlight-code > .microlight {
  max-height: 33.33em;
  min-height: 6em;
  overflow-y: auto;
}

.swagger-ui .highlight-code > .microlight code {
  white-space: pre-wrap !important;
  word-break: break-all;
}

.swagger-ui .curl-command {
  position: relative;
}

.swagger-ui .download-contents {
  background: #7d8293;
  border-radius: 0.33em;
  bottom: 0.83em;
  color: #fff;
  cursor: pointer;
  font-family: sans-serif;
  font-size: 1.17em;
  font-weight: 600;
  height: 2.5em;
  padding: 0.42em;
  position: absolute;
  right: 0.83em;
  text-align: center;
}

.swagger-ui .scheme-container {
  background: #fff;
  box-shadow: 0 0.08em 0.17em 0 rgba(0, 0, 0, 0.15);
  margin: 0 0 1.67em;
  padding: 2.5em 0;
}

.swagger-ui .scheme-container .schemes {
  align-items: flex-end;
  display: flex;
}

.swagger-ui .scheme-container .schemes > label {
  color: #3b4151;
  display: flex;
  flex-direction: column;
  font-family: sans-serif;
  font-size: 1em;
  font-weight: 700;
  margin: -1.67em 1.25em 0 0;
}

.swagger-ui .scheme-container .schemes > label select {
  min-width: 10.83em;
  text-transform: uppercase;
}

.swagger-ui .loading-container {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 1em;
  min-height: 0.08em;
  padding: 3.33em 0 5em;
}

.swagger-ui .loading-container .loading {
  position: relative;
}

.swagger-ui .loading-container .loading:after {
  color: #3b4151;
  content: "loading";
  font-family: sans-serif;
  font-size: 0.83em;
  font-weight: 700;
  left: 50%;
  position: absolute;
  text-transform: uppercase;
  top: 50%;
  transform: translate(-50%, -50%);
}

.swagger-ui .loading-container .loading:before {
  animation: rotation 1s linear infinite, opacity 0.5s;
  backface-visibility: hidden;
  border: 0.17em solid rgba(85, 85, 85, 0.1);
  border-radius: 100%;
  border-top-color: rgba(0, 0, 0, 0.6);
  content: "";
  display: block;
  height: 5em;
  left: 50%;
  margin: -2.5em;
  opacity: 1;
  position: absolute;
  top: 50%;
  width: 5em;
}
@keyframes rotation {
  to {
    transform: rotate(1turn);
  }
}
.swagger-ui .response-controls {
  display: flex;
  padding-top: 1em;
}

.swagger-ui .response-control-media-type {
  margin-right: 1em;
}

.swagger-ui .response-control-media-type--accept-controller select {
  border-color: green;
}

.swagger-ui .response-control-media-type__accept-message {
  color: green;
  font-size: 0.7em;
}

.swagger-ui .response-control-examples__title, .swagger-ui .response-control-media-type__title {
  display: block;
  font-size: 0.7em;
  margin-bottom: 0.2em;
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}
.swagger-ui .hidden {
  display: none;
}

.swagger-ui .no-margin {
  border: none;
  height: auto;
  margin: 0;
  padding: 0;
}

.swagger-ui .float-right {
  float: right;
}

.swagger-ui .svg-assets {
  height: 0;
  position: absolute;
  width: 0;
}

.swagger-ui section h3 {
  color: #3b4151;
  font-family: sans-serif;
}

.swagger-ui a.nostyle {
  display: inline;
}

.swagger-ui a.nostyle, .swagger-ui a.nostyle:visited {
  color: inherit;
  cursor: pointer;
  text-decoration: inherit;
}

.swagger-ui .fallback {
  color: #aaa;
  padding: 1em;
}

.swagger-ui .version-pragma {
  height: 100%;
  padding: 5em 0;
}

.swagger-ui .version-pragma__message {
  display: flex;
  font-size: 1.2em;
  height: 100%;
  justify-content: center;
  line-height: 1.5em;
  padding: 0 0.6em;
  text-align: center;
}

.swagger-ui .version-pragma__message > div {
  flex: 1;
  max-width: 55ch;
}

.swagger-ui .version-pragma__message code {
  background-color: #dedede;
  padding: 0.33em 0.33em 0.17em;
  white-space: pre;
}

.swagger-ui .opblock-link {
  font-weight: 400;
}

.swagger-ui .opblock-link.shown {
  font-weight: 700;
}

.swagger-ui span.token-string {
  color: #555;
}

.swagger-ui span.token-not-formatted {
  color: #555;
  font-weight: 700;
}

.swagger-ui .btn {
  background: transparent;
  border: 0.17em solid grey;
  border-radius: 0.33em;
  box-shadow: 0 0.08em 0.17em rgba(0, 0, 0, 0.1);
  color: #3b4151;
  font-family: sans-serif;
  font-size: 1.17em;
  font-weight: 700;
  padding: 0.42em 1.92em;
  transition: all 0.3s;
}

.swagger-ui .btn.btn-sm {
  font-size: 1em;
  padding: 0.33em 1.92em;
}

.swagger-ui .btn[disabled] {
  cursor: not-allowed;
  opacity: 0.3;
}

.swagger-ui .btn:hover {
  box-shadow: 0 0 0.42em rgba(0, 0, 0, 0.3);
}

.swagger-ui .btn.cancel {
  background-color: transparent;
  border-color: #ff6060;
  color: #ff6060;
  font-family: sans-serif;
}

.swagger-ui .btn.authorize {
  background-color: transparent;
  border-color: #49cc90;
  color: #49cc90;
  display: inline;
  line-height: 1;
}

.swagger-ui .btn.authorize span {
  float: left;
  padding: 0.33em 1.67em 0 0;
}

.swagger-ui .btn.authorize svg {
  fill: #49cc90;
}

.swagger-ui .btn.execute {
  background-color: #4990e2;
  border-color: #4990e2;
  color: #fff;
}

.swagger-ui .btn-group {
  display: flex;
  padding: 2.5em;
}

.swagger-ui .btn-group .btn {
  flex: 1;
}

.swagger-ui .btn-group .btn:first-child {
  border-radius: 0.33em 0 0 0.33em;
}

.swagger-ui .btn-group .btn:last-child {
  border-radius: 0 0.33em 0.33em 0;
}

.swagger-ui .authorization__btn {
  background: none;
  border: none;
  padding: 0 0.83em;
}

.swagger-ui .authorization__btn.locked {
  opacity: 1;
}

.swagger-ui .authorization__btn.unlocked {
  opacity: 0.4;
}

.swagger-ui .model-box-control, .swagger-ui .models-control, .swagger-ui .opblock-summary-control {
  all: inherit;
  border-bottom: 0;
  cursor: pointer;
  flex: 1;
  padding: 0;
}

.swagger-ui .model-box-control:focus, .swagger-ui .models-control:focus, .swagger-ui .opblock-summary-control:focus {
  outline: auto;
}

.swagger-ui .expand-methods, .swagger-ui .expand-operation {
  background: none;
  border: none;
}

.swagger-ui .expand-methods svg, .swagger-ui .expand-operation svg {
  height: 1.67em;
  width: 1.67em;
}

.swagger-ui .expand-methods {
  padding: 0 0.83em;
}

.swagger-ui .expand-methods:hover svg {
  fill: #404040;
}

.swagger-ui .expand-methods svg {
  fill: #707070;
  transition: all 0.3s;
}

.swagger-ui button {
  cursor: pointer;
}

.swagger-ui button.invalid {
  animation: shake 0.4s 1;
  background: #feebeb;
  border-color: #f93e3e;
}

.swagger-ui .copy-to-clipboard {
  background: #7d8293;
  border: none;
  border-radius: 0.33em;
  bottom: 0.83em;
  height: 2.5em;
  position: absolute;
  right: 8.33em;
  width: 2.5em;
}

.swagger-ui .copy-to-clipboard button {
  background: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" aria-hidden="true"><path fill="%23fff" fill-rule="evenodd" d="M2 13h4v1H2v-1zm5-6H2v1h5V7zm2 3V8l-3 3 3 3v-2h5v-2H9zM4.5 9H2v1h2.5V9zM2 12h2.5v-1H2v1zm9 1h1v2c-.02.28-.11.52-.3.7-.19.18-.42.28-.7.3H1c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h3c0-1.11.89-2 2-2 1.11 0 2 .89 2 2h3c.55 0 1 .45 1 1v5h-1V6H1v9h10v-2zM2 5h8c0-.55-.45-1-1-1H8c-.55 0-1-.45-1-1s-.45-1-1-1-1 .45-1 1-.45 1-1 1H3c-.55 0-1 .45-1 1z"/></svg>') 50% no-repeat;
  border: none;
  height: 2.08em;
  padding-left: 2.08em;
}

.swagger-ui .curl-command .copy-to-clipboard {
  bottom: 0.42em;
  height: 1.67em;
  right: 0.83em;
  width: 1.67em;
}

.swagger-ui .curl-command .copy-to-clipboard button {
  height: 1.5em;
  padding-left: 1.5em;
}

.swagger-ui select {
  appearance: none;
  background: #f7f7f7 url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M13.418 7.859a.695.695 0 0 1 .978 0 .68.68 0 0 1 0 .969l-3.908 3.83a.697.697 0 0 1-.979 0l-3.908-3.83a.68.68 0 0 1 0-.969.695.695 0 0 1 .978 0L10 11l3.418-3.141z"/></svg>') right 10px center no-repeat;
  background-size: 1.67em;
  border: 0.17em solid #41444e;
  border-radius: 0.33em;
  box-shadow: 0 0.08em 0.17em 0 rgba(0, 0, 0, 0.25);
  color: #3b4151;
  font-family: sans-serif;
  font-size: 1.17em;
  font-weight: 700;
  padding: 0.42em 3.33em 0.42em 0.83em;
}

.swagger-ui select[multiple] {
  background: #f7f7f7;
  margin: 0.42em 0;
  padding: 0.42em;
}

.swagger-ui select.invalid {
  animation: shake 0.4s 1;
  background: #feebeb;
  border-color: #f93e3e;
}

.swagger-ui .opblock-body select {
  min-width: 19.17em;
}

@media (max-width: 64em) {
  .swagger-ui .opblock-body select {
    min-width: 15em;
  }
}
.swagger-ui label {
  color: #3b4151;
  font-family: sans-serif;
  font-size: 1em;
  font-weight: 700;
  margin: 0 0 0.42em;
}

@media (max-width: 64em) {
  .swagger-ui input[type=email], .swagger-ui input[type=file], .swagger-ui input[type=password], .swagger-ui input[type=search], .swagger-ui input[type=text] {
    max-width: 14.58em;
  }
}
.swagger-ui input[type=email], .swagger-ui input[type=file], .swagger-ui input[type=password], .swagger-ui input[type=search], .swagger-ui input[type=text], .swagger-ui textarea {
  background: #fff;
  border: 0.08em solid #d9d9d9;
  border-radius: 0.33em;
  margin: 0.42em 0;
  min-width: 8.33em;
  padding: 0.67em 0.83em;
}

.swagger-ui input[type=email].invalid, .swagger-ui input[type=file].invalid, .swagger-ui input[type=password].invalid, .swagger-ui input[type=search].invalid, .swagger-ui input[type=text].invalid, .swagger-ui textarea.invalid {
  animation: shake 0.4s 1;
  background: #feebeb;
  border-color: #f93e3e;
}

.swagger-ui input[disabled], .swagger-ui select[disabled], .swagger-ui textarea[disabled] {
  background-color: #fafafa;
  color: #888;
  cursor: not-allowed;
}

.swagger-ui select[disabled] {
  border-color: #888;
}

.swagger-ui textarea[disabled] {
  background-color: #41444e;
  color: #fff;
}
@keyframes shake {
  10%, 90% {
    transform: translate3d(-0.08em, 0, 0);
  }
  20%, 80% {
    transform: translate3d(0.17em, 0, 0);
  }
  30%, 50%, 70% {
    transform: translate3d(-0.33em, 0, 0);
  }
  40%, 60% {
    transform: translate3d(0.33em, 0, 0);
  }
}
.swagger-ui textarea {
  background: hsla(0, 0%, 100%, 0.8);
  border: none;
  border-radius: 0.33em;
  color: #3b4151;
  font-family: monospace;
  font-size: 1em;
  font-weight: 600;
  min-height: 23.33em;
  outline: none;
  padding: 0.83em;
  width: 100%;
  overflow: auto;
}

.swagger-ui textarea:focus {
  border: 0.17em solid #61affe;
}

.swagger-ui textarea.curl {
  background: #41444e;
  border-radius: 0.33em;
  color: #fff;
  font-family: monospace;
  font-size: 1em;
  font-weight: 600;
  margin: 0;
  min-height: 8.33em;
  padding: 0.83em;
  resize: none;
}

.swagger-ui .checkbox {
  color: #303030;
  padding: 0.42em 0 0.83em;
  transition: opacity 0.5s;
}

.swagger-ui .checkbox label {
  display: flex;
}

.swagger-ui .checkbox p {
  color: #3b4151;
  font-family: monospace;
  font-style: italic;
  font-weight: 400 !important;
  font-weight: 600;
  margin: 0 !important;
}

.swagger-ui .checkbox input[type=checkbox] {
  display: none;
}

.swagger-ui .checkbox input[type=checkbox] + label > .item {
  background: #e8e8e8;
  border-radius: 0.08em;
  box-shadow: 0 0 0 0.17em #e8e8e8;
  cursor: pointer;
  display: inline-block;
  flex: none;
  height: 1.33em;
  margin: 0 0.67em 0 0;
  padding: 0.42em;
  position: relative;
  top: 0.25em;
  width: 1.33em;
}

.swagger-ui .checkbox input[type=checkbox] + label > .item:active {
  transform: scale(0.9);
}

.swagger-ui .checkbox input[type=checkbox]:checked + label > .item {
  background: #e8e8e8 url('data:image/svg+xml;charset=utf-8,<svg width="10" height="8" viewBox="3 7 10 8" xmlns="http://www.w3.org/2000/svg"><path fill="%2341474E" fill-rule="evenodd" d="M6.333 15 3 11.667l1.333-1.334 2 2L11.667 7 13 8.333z"/></svg>') 50% no-repeat;
}

.swagger-ui .dialog-ux {
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}

.swagger-ui .dialog-ux .backdrop-ux {
  background: rgba(0, 0, 0, 0.8);
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
}

.swagger-ui .dialog-ux .modal-ux {
  background: #fff;
  border: 0.08em solid #ebebeb;
  border-radius: 0.33em;
  box-shadow: 0 0.83em 2.5em 0 rgba(0, 0, 0, 0.2);
  left: 50%;
  max-width: 54.17em;
  min-width: 25em;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 9999;
}

.swagger-ui .dialog-ux .modal-ux-content {
  max-height: 45em;
  overflow-y: auto;
  padding: 1.67em;
}

.swagger-ui .dialog-ux .modal-ux-content p {
  color: #41444e;
  color: #3b4151;
  font-family: sans-serif;
  font-size: 1em;
  margin: 0 0 0.42em;
}

.swagger-ui .dialog-ux .modal-ux-content h4 {
  color: #3b4151;
  font-family: sans-serif;
  font-size: 1.5em;
  font-weight: 600;
  margin: 1.25em 0 0;
}

.swagger-ui .dialog-ux .modal-ux-header {
  align-items: center;
  border-bottom: 0.08em solid #ebebeb;
  display: flex;
  padding: 1em 0;
}

.swagger-ui .dialog-ux .modal-ux-header .close-modal {
  appearance: none;
  background: none;
  border: none;
  padding: 0 0.83em;
}

.swagger-ui .dialog-ux .modal-ux-header h3 {
  color: #3b4151;
  flex: 1;
  font-family: sans-serif;
  font-size: 1.67em;
  font-weight: 600;
  margin: 0;
  padding: 0 1.67em;
}

.swagger-ui .model {
  color: #3b4151;
  font-family: monospace;
  font-size: 1em;
  font-weight: 300;
  font-weight: 600;
}

.swagger-ui .model .deprecated span, .swagger-ui .model .deprecated td {
  color: #a0a0a0 !important;
}

.swagger-ui .model .deprecated > td:first-of-type {
  text-decoration: line-through;
}

.swagger-ui .model-toggle {
  cursor: pointer;
  display: inline-block;
  font-size: 0.83em;
  margin: auto 0.3em;
  position: relative;
  top: 0.5em;
  transform: rotate(90deg);
  transform-origin: 50% 50%;
  transition: transform 0.15s ease-in;
}

.swagger-ui .model-toggle.collapsed {
  transform: rotate(0deg);
}

.swagger-ui .model-toggle:after {
  background: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"><path d="M10 6 8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"/></svg>') 50% no-repeat;
  background-size: 100%;
  content: "";
  display: block;
  height: 1.67em;
  width: 1.67em;
}

.swagger-ui .model-jump-to-path {
  cursor: pointer;
  position: relative;
}

.swagger-ui .model-jump-to-path .view-line-link {
  cursor: pointer;
  position: absolute;
  top: -0.4em;
}

.swagger-ui .model-title:hover .model-hint {
  visibility: visible;
}

.swagger-ui .model-hint {
  background: rgba(0, 0, 0, 0.7);
  border-radius: 0.33em;
  color: #ebebeb;
  padding: 0.1em 0.5em;
  position: absolute;
  top: -1.8em;
  visibility: hidden;
  white-space: nowrap;
}

.swagger-ui .model p {
  margin: 0 0 1em;
}

.swagger-ui .model .property {
  color: #999;
  font-style: italic;
}

.swagger-ui .model .property.primitive {
  color: #6b6b6b;
}

.swagger-ui table.model tr.description {
  color: #666;
  font-weight: 400;
}

.swagger-ui table.model tr.description td:first-child, .swagger-ui table.model tr.property-row.required td:first-child {
  font-weight: 700;
}

.swagger-ui table.model tr.property-row td {
  vertical-align: top;
}

.swagger-ui table.model tr.property-row td:first-child {
  padding-right: 0.2em;
}

.swagger-ui table.model tr.property-row .star {
  color: red;
}

.swagger-ui table.model tr.extension {
  color: #777;
}

.swagger-ui table.model tr.extension td:last-child {
  vertical-align: top;
}

.swagger-ui section.models {
  border: 0.08em solid rgba(59, 65, 81, 0.3);
  border-radius: 0.33em;
  margin: 2.5em 0;
}

.swagger-ui section.models .pointer {
  cursor: pointer;
}

.swagger-ui section.models.is-open {
  padding: 0 0 1.67em;
}

.swagger-ui section.models.is-open h4 {
  border-bottom: 0.08em solid rgba(59, 65, 81, 0.3);
  margin: 0 0 0.42em;
}

.swagger-ui section.models h4 {
  align-items: center;
  color: #606060;
  cursor: pointer;
  display: flex;
  font-family: sans-serif;
  font-size: 1.33em;
  margin: 0;
  padding: 0.83em 1.67em 0.83em 0.83em;
  transition: all 0.2s;
}

.swagger-ui section.models h4 svg {
  transition: all 0.4s;
}

.swagger-ui section.models h4 span {
  flex: 1;
}

.swagger-ui section.models h4:hover {
  background: rgba(0, 0, 0, 0.02);
}

.swagger-ui section.models h5 {
  color: #707070;
  font-family: sans-serif;
  font-size: 1.33em;
  margin: 0 0 0.83em;
}

.swagger-ui section.models .model-jump-to-path {
  position: relative;
  top: 0.42em;
}

.swagger-ui section.models .model-container {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 0.33em;
  margin: 0 1.67em 1.25em;
  position: relative;
  transition: all 0.5s;
}

.swagger-ui section.models .model-container:hover {
  background: rgba(0, 0, 0, 0.07);
}

.swagger-ui section.models .model-container:first-of-type {
  margin: 1.67em;
}

.swagger-ui section.models .model-container:last-of-type {
  margin: 0 1.67em;
}

.swagger-ui section.models .model-container .models-jump-to-path {
  opacity: 0.65;
  position: absolute;
  right: 0.42em;
  top: 0.67em;
}

.swagger-ui section.models .model-box {
  background: none;
}

.swagger-ui .model-box {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 0.33em;
  display: inline-block;
  padding: 0.83em;
}

.swagger-ui .model-box .model-jump-to-path {
  position: relative;
  top: 0.33em;
}

.swagger-ui .model-box.deprecated {
  opacity: 0.5;
}

.swagger-ui .model-title {
  color: #505050;
  font-family: sans-serif;
  font-size: 1.33em;
  position: relative;
}

.swagger-ui .model-title img {
  bottom: 0;
  margin-left: 1em;
  position: relative;
}

.swagger-ui .model-deprecated-warning {
  color: #f93e3e;
  font-family: sans-serif;
  font-size: 1.33em;
  font-weight: 600;
  margin-right: 1em;
}

.swagger-ui span > span.model .brace-close {
  padding: 0 0 0 0.83em;
}

.swagger-ui .prop-name {
  display: inline-block;
  margin-right: 1em;
}

.swagger-ui .prop-type {
  color: #55a;
}

.swagger-ui .prop-enum {
  display: block;
}

.swagger-ui .prop-format {
  color: #606060;
}

.swagger-ui .servers > label {
  color: #3b4151;
  font-family: sans-serif;
  font-size: 1em;
  margin: -1.67em 1.25em 0 0;
}

.swagger-ui .servers > label select {
  max-width: 100%;
  min-width: 10.83em;
}

.swagger-ui .servers h4.message {
  padding-bottom: 2em;
}

.swagger-ui .servers table tr {
  width: 30em;
}

.swagger-ui .servers table td {
  display: inline-block;
  max-width: 15em;
  padding-bottom: 0.83em;
  padding-top: 0.83em;
  vertical-align: middle;
}

.swagger-ui .servers table td:first-of-type {
  padding-right: 1em;
}

.swagger-ui .servers table td input {
  height: 100%;
  width: 100%;
}

.swagger-ui .servers .computed-url {
  margin: 2em 0;
}

.swagger-ui .servers .computed-url code {
  display: inline-block;
  font-size: 1.33em;
  margin: 0 1em;
  padding: 0.33em;
}

.swagger-ui .servers-title {
  font-size: 1em;
  font-weight: 700;
}

.swagger-ui .operation-servers h4.message {
  margin-bottom: 2em;
}

.swagger-ui table {
  border-collapse: collapse;
  padding: 0 0.83em;
  width: 100%;
}

.swagger-ui table.model tbody tr td {
  padding: 0;
  vertical-align: top;
}

.swagger-ui table.model tbody tr td:first-of-type {
  padding: 0 0 0 2em;
  width: 14.5em;
}

.swagger-ui table.headers td {
  color: #3b4151;
  font-family: monospace;
  font-size: 1em;
  font-weight: 300;
  font-weight: 600;
  vertical-align: middle;
}

.swagger-ui table.headers .header-example {
  color: #999;
  font-style: italic;
}

.swagger-ui table tbody tr td {
  padding: 0.83em 0 0;
  vertical-align: top;
}

.swagger-ui table tbody tr td:first-of-type {
  min-width: 6em;
  padding: 0.83em 0;
}

.swagger-ui table thead tr td, .swagger-ui table thead tr th {
  border-bottom: 0.08em solid rgba(59, 65, 81, 0.2);
  color: #3b4151;
  font-family: sans-serif;
  font-size: 1em;
  font-weight: 700;
  padding: 1em 0;
  text-align: left;
}

.swagger-ui .parameters-col_description {
  margin-bottom: 2em;
  width: 99%;
}

.swagger-ui .parameters-col_description input[type=text] {
  max-width: 28.33em;
  width: 100%;
}

.swagger-ui .parameters-col_description select {
  border-width: 0.08em;
}

.swagger-ui .parameter__name {
  color: #3b4151;
  font-family: sans-serif;
  font-size: 1.33em;
  font-weight: 400;
  margin-right: 0.75em;
}

.swagger-ui .parameter__name.required {
  font-weight: 700;
}

.swagger-ui .parameter__name.required span {
  color: red;
}

.swagger-ui .parameter__name.required:after {
  color: rgba(255, 0, 0, 0.6);
  content: "required";
  font-size: 0.83em;
  padding: 0.42em;
  position: relative;
  top: -0.5em;
}

.swagger-ui .parameter__extension, .swagger-ui .parameter__in {
  color: grey;
  font-family: monospace;
  font-size: 1em;
  font-style: italic;
  font-weight: 600;
}

.swagger-ui .parameter__deprecated {
  color: red;
  font-family: monospace;
  font-size: 1em;
  font-style: italic;
  font-weight: 600;
}

.swagger-ui .parameter__empty_value_toggle {
  display: block;
  font-size: 1.08em;
  padding-bottom: 1em;
  padding-top: 0.42em;
}

.swagger-ui .parameter__empty_value_toggle input {
  margin-right: 0.58em;
}

.swagger-ui .parameter__empty_value_toggle.disabled {
  opacity: 0.7;
}

.swagger-ui .table-container {
  padding: 1.67em;
}

.swagger-ui .response-col_description {
  width: 99%;
}

.swagger-ui .response__extension {
  color: grey;
  font-family: monospace;
  font-size: 1em;
  font-style: italic;
  font-weight: 600;
}

.swagger-ui .topbar {
  background-color: #1b1b1b;
  padding: 0.83em 0;
}

.swagger-ui .topbar .topbar-wrapper, .swagger-ui .topbar a {
  align-items: center;
  display: flex;
}

.swagger-ui .topbar a {
  color: #fff;
  flex: 1;
  font-family: sans-serif;
  font-size: 1.5em;
  font-weight: 700;
  max-width: 25em;
  text-decoration: none;
}

.swagger-ui .topbar a span {
  margin: 0;
  padding: 0 0.83em;
}

.swagger-ui .topbar .download-url-wrapper {
  display: flex;
  flex: 3;
  justify-content: flex-end;
}

.swagger-ui .topbar .download-url-wrapper input[type=text] {
  border: 0.17em solid #62a03f;
  border-radius: 0.33em 0 0 0.33em;
  margin: 0;
  outline: none;
  width: 100%;
}

.swagger-ui .topbar .download-url-wrapper .select-label {
  align-items: center;
  color: #f0f0f0;
  display: flex;
  margin: 0;
  max-width: 50em;
  width: 100%;
}

.swagger-ui .topbar .download-url-wrapper .select-label span {
  flex: 1;
  font-size: 1.33em;
  padding: 0 0.83em 0 0;
  text-align: right;
}

.swagger-ui .topbar .download-url-wrapper .select-label select {
  border: 0.17em solid #62a03f;
  box-shadow: none;
  flex: 2;
  outline: none;
  width: 100%;
}

.swagger-ui .topbar .download-url-wrapper .download-url-button {
  background: #62a03f;
  border: none;
  border-radius: 0 0.33em 0.33em 0;
  color: #fff;
  font-family: sans-serif;
  font-size: 1.33em;
  font-weight: 700;
  padding: 0.33em 2.5em;
}

.swagger-ui .info {
  margin: 4.17em 0;
  display: none;
}

.swagger-ui .info.failed-config {
  margin-left: auto;
  margin-right: auto;
  max-width: 73.33em;
  text-align: center;
}

.swagger-ui .info hgroup.main {
  margin: 0 0 1.67em;
}

.swagger-ui .info hgroup.main a {
  font-size: 1em;
}

.swagger-ui .info pre {
  font-size: 1.17em;
}

.swagger-ui .info li, .swagger-ui .info p, .swagger-ui .info table {
  color: #3b4151;
  font-family: sans-serif;
  font-size: 1.17em;
}

.swagger-ui .info h1, .swagger-ui .info h2, .swagger-ui .info h3, .swagger-ui .info h4, .swagger-ui .info h5 {
  color: #3b4151;
  font-family: sans-serif;
}

.swagger-ui .info a {
  color: #4990e2;
  font-family: sans-serif;
  font-size: 1.17em;
  transition: all 0.4s;
}

.swagger-ui .info a:hover {
  color: #1f69c0;
}

.swagger-ui .info > div {
  margin: 0 0 0.42em;
}

.swagger-ui .info .base-url {
  color: #3b4151;
  font-family: monospace;
  font-size: 1em;
  font-weight: 300 !important;
  font-weight: 600;
  margin: 0;
}

.swagger-ui .info .title {
  color: #3b4151;
  font-family: sans-serif;
  font-size: 3em;
  margin: 0;
}

.swagger-ui .info .title small {
  background: #7d8492;
  border-radius: 4.75em;
  display: inline-block;
  font-size: 0.83em;
  margin: 0 0 0 0.42em;
  padding: 0.17em 0.33em;
  position: relative;
  top: -0.42em;
  vertical-align: super;
}

.swagger-ui .info .title small.version-stamp {
  background-color: #89bf04;
}

.swagger-ui .info .title small pre {
  color: #fff;
  font-family: sans-serif;
  margin: 0;
  padding: 0;
}

.swagger-ui .auth-btn-wrapper {
  display: flex;
  justify-content: center;
  padding: 0.83em 0;
}

.swagger-ui .auth-btn-wrapper .btn-done {
  margin-right: 1em;
}

.swagger-ui .auth-wrapper {
  display: flex;
  flex: 1;
  justify-content: flex-end;
}

.swagger-ui .auth-wrapper .authorize {
  margin-right: 0.83em;
  padding-right: 1.67em;
}

.swagger-ui .auth-container {
  border-bottom: 0.08em solid #ebebeb;
  margin: 0 0 0.83em;
  padding: 0.83em 1.67em;
}

.swagger-ui .auth-container:last-of-type {
  border: 0;
  margin: 0;
  padding: 0.83em 1.67em;
}

.swagger-ui .auth-container h4 {
  margin: 0.42em 0 1.25em !important;
}

.swagger-ui .auth-container .wrapper {
  margin: 0;
  padding: 0;
}

.swagger-ui .auth-container input[type=password], .swagger-ui .auth-container input[type=text] {
  min-width: 19.17em;
}

.swagger-ui .auth-container .errors {
  background-color: #fee;
  border-radius: 0.33em;
  color: red;
  color: #3b4151;
  font-family: monospace;
  font-size: 1em;
  font-weight: 600;
  margin: 1em;
  padding: 0.83em;
}

.swagger-ui .auth-container .errors b {
  margin-right: 1em;
  text-transform: capitalize;
}

.swagger-ui .scopes h2 {
  color: #3b4151;
  font-family: sans-serif;
  font-size: 1.17em;
}

.swagger-ui .scopes h2 a {
  color: #4990e2;
  cursor: pointer;
  font-size: 1em;
  padding-left: 0.83em;
  text-decoration: underline;
}

.swagger-ui .scope-def {
  padding: 0 0 1.67em;
}

.swagger-ui .errors-wrapper {
  animation: scaleUp 0.5s;
  background: rgba(249, 62, 62, 0.1);
  border: 0.17em solid #f93e3e;
  border-radius: 0.33em;
  margin: 1.67em;
  padding: 0.83em 1.67em;
}

.swagger-ui .errors-wrapper .error-wrapper {
  margin: 0 0 0.83em;
}

.swagger-ui .errors-wrapper .errors h4 {
  color: #3b4151;
  font-family: monospace;
  font-size: 1.17em;
  font-weight: 600;
  margin: 0;
}

.swagger-ui .errors-wrapper .errors small {
  color: #606060;
}

.swagger-ui .errors-wrapper .errors .message {
  white-space: pre-line;
}

.swagger-ui .errors-wrapper .errors .message.thrown {
  max-width: 100%;
}

.swagger-ui .errors-wrapper .errors .error-line {
  cursor: pointer;
  text-decoration: underline;
}

.swagger-ui .errors-wrapper hgroup {
  align-items: center;
  display: flex;
}

.swagger-ui .errors-wrapper hgroup h4 {
  color: #3b4151;
  flex: 1;
  font-family: sans-serif;
  font-size: 1.67em;
  margin: 0;
}
@keyframes scaleUp {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.swagger-ui .Resizer.vertical.disabled {
  display: none;
}

.swagger-ui .markdown p, .swagger-ui .markdown pre, .swagger-ui .renderedMarkdown p, .swagger-ui .renderedMarkdown pre {
  margin: 1em auto;
  word-break: break-all;
  word-break: break-word;
}

.swagger-ui .markdown pre, .swagger-ui .renderedMarkdown pre {
  background: none;
  color: #000;
  font-weight: 400;
  padding: 0;
  white-space: pre-wrap;
}

.swagger-ui .markdown code, .swagger-ui .renderedMarkdown code {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 0.33em;
  color: #9012fe;
  font-family: monospace;
  font-size: 1.17em;
  font-weight: 600;
  padding: 0.42em 0.58em;
}

.swagger-ui .markdown pre > code, .swagger-ui .renderedMarkdown pre > code {
  display: block;
}


.ql-container {
  box-sizing: border-box;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1.08em;
  height: 100%;
  margin: 0em;
  position: relative;
}

.ql-container.ql-disabled .ql-tooltip {
  visibility: hidden;
}

.ql-container.ql-disabled .ql-editor ul[data-checked] > li::before {
  pointer-events: none;
}

.ql-clipboard {
  left: -8333.33em;
  height: 0.08em;
  overflow-y: hidden;
  position: absolute;
  top: 50%;
}

.ql-clipboard p {
  margin: 0;
  padding: 0;
}

.ql-editor {
  outline: none;
  overflow-y: scroll;
  tab-size: 4;
  text-align: left;
  white-space: pre-wrap;
  line-height: 1.5em;
}

.ql-editor.ql-blank::before {
  color: var(--grayColor400);
  content: attr(data-placeholder);
  left: 1.1em;
  pointer-events: none;
  position: absolute;
  font-size: 1.17em;
  font-weight: 300;
  text-align: left;
  margin-left: -1em;
}

.ql-editor p,
.ql-editor ol,
.ql-editor ul,
.ql-editor pre,
.ql-editor blockquote,
.ql-editor h1,
.ql-editor h2,
.ql-editor h3,
.ql-editor h4,
.ql-editor h5,
.ql-editor h6 {
  margin: 0;
  padding: 0;
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  word-wrap: break-word;
}

.ql-mention-list {
  background-color: var(--bgColor10) !important;
  list-style-type: none;
  margin-top: 0;
  padding: 0em;
  z-index: 100;
  border-radius: 1em;
  border: 0.08em solid var(--micBackgroundColor);
  padding: 1em;
  max-height: 16rem;
  overflow-y: scroll;
}

.ql-mention-list .ql-mention-list-item {
  cursor: pointer;
  padding: 0.25em;
  height: 3em;
  width: 100%;
  border-radius: 1em;
  display: flex;
  align-items: center;
  font-size: 0.88rem;
}

.ql-mention-list .ql-mention-list-item.selected {
  background-color: var(--bgColor100) !important;
  border-radius: 0.5em;
}

.ql-editor .mention {
  padding: 0.4em 1em;
  border-radius: 2em;
  background-color: var(--micBackgroundColor);
  line-height: 2.5;
  color: #fff;
}

.gpt-input .suggestion-parent .ql-mention-list-container {
  bottom: 90% !important;
  left: 0 !important;
  min-width: 10em;
  top: unset !important;
  z-index: 20;
}
.gpt-input .suggestion-parent .ql-editor {
  height: 100%;
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  top: -1em;
}
@charset "UTF-8";
:root {
  --jexcel-border-color:#000;
}

.jexcel_container {
  display: inline-block;
  padding-right: 0.17em;
  box-sizing: border-box;
  overscroll-behavior: contain;
  outline: none;
}

.jexcel_container.fullscreen {
  position: fixed;
  top: 0em;
  left: 0em;
  width: 100%;
  height: 100%;
  z-index: 21;
}

.jexcel_container.fullscreen .jexcel_content {
  overflow: auto;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
}

.jexcel_container.fullscreen.with-toolbar {
  height: calc(100% - 3.83em);
}

.jexcel_content {
  display: inline-block;
  box-sizing: border-box;
  padding-right: 0.25em;
  padding-bottom: 0.25em;
  position: relative;
  scrollbar-width: thin;
  scrollbar-color: #666 transparent;
}

@supports (-moz-appearance: none) {
  .jexcel_content {
    padding-right: 0.83em;
  }
}
.jexcel_content::-webkit-scrollbar {
  width: 0.67em;
  height: 0.67em;
}

.jexcel_content::-webkit-scrollbar-track {
  background: #eee;
}

.jexcel_content::-webkit-scrollbar-thumb {
  background: #666;
}

.jexcel {
  border-collapse: separate;
  table-layout: fixed;
  white-space: nowrap;
  empty-cells: show;
  border: 0em;
  background-color: #fff;
  width: 0;
  border-top: 0.08em solid transparent;
  border-left: 0.08em solid transparent;
  border-right: 0.08em solid #ccc;
  border-bottom: 0.08em solid #ccc;
}

.jexcel > thead > tr > td {
  border-top: 0.08em solid #ccc;
  border-left: 0.08em solid #ccc;
  border-right: 0.08em solid transparent;
  border-bottom: 0.08em solid transparent;
  background-color: #f3f3f3;
  padding: 0.17em;
  cursor: pointer;
  box-sizing: border-box;
  overflow: hidden;
  position: sticky;
  top: 0;
  z-index: 2;
}

.jexcel_container.with-toolbar .jexcel > thead > tr > td {
  top: 3.5em;
}

.jexcel > thead > tr > td.dragging {
  background-color: #fff;
  opacity: 0.5;
}

.jexcel > thead > tr > td.selected {
  background-color: #dcdcdc;
}

.jexcel > thead > tr > td.arrow-up {
  background-repeat: no-repeat;
  background-position: center right 0.42em;
  background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='none' d='M0 0h24v24H0V0z'/%3E%3Cpath d='M7 14l5-5 5 5H7z' fill='gray'/%3E%3C/svg%3E");
  text-decoration: underline;
}

.jexcel > thead > tr > td.arrow-down {
  background-repeat: no-repeat;
  background-position: center right 0.42em;
  background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='none' d='M0 0h24v24H0V0z'/%3E%3Cpath d='M7 10l5 5 5-5H7z' fill='gray'/%3E%3C/svg%3E");
  text-decoration: underline;
}

.jexcel > tbody > tr > td:first-child {
  position: relative;
  background-color: #f3f3f3;
  text-align: center;
}

.jexcel > tbody.resizable > tr > td:first-child::before {
  content: " ";
  width: 100%;
  height: 0.25em;
  position: absolute;
  bottom: 0em;
  left: 0em;
  cursor: row-resize;
}

.jexcel > tbody.draggable > tr > td:first-child::after {
  content: " ";
  width: 0.25em;
  height: 100%;
  position: absolute;
  top: 0em;
  right: 0em;
  cursor: move;
}

.jexcel > tbody > tr.dragging > td {
  background-color: #eee;
  opacity: 0.5;
}

.jexcel > tbody > tr > td {
  border-top: 0.08em solid #ccc;
  border-left: 0.08em solid #ccc;
  border-right: 0.08em solid transparent;
  border-bottom: 0.08em solid transparent;
  padding: 0.33em;
  white-space: nowrap;
  box-sizing: border-box;
  line-height: 1em;
}

.jexcel_overflow > tbody > tr > td {
  overflow: hidden;
}

.jexcel > tbody > tr > td:last-child {
  overflow: hidden;
}

.jexcel > tbody > tr > td > img {
  display: inline-block;
  max-width: 8.33em;
}

.jexcel > tbody > tr > td.readonly {
  color: rgba(0, 0, 0, 0.3);
}

.jexcel > tbody > tr.selected > td:first-child {
  background-color: #dcdcdc;
}

.jexcel > tbody > tr > td > select,
.jexcel > tbody > tr > td > input,
.jexcel > tbody > tr > td > textarea {
  border: 0em;
  border-radius: 0em;
  outline: 0em;
  width: 100%;
  margin: 0em;
  padding: 0em;
  padding-right: 0.17em;
  background-color: transparent;
  box-sizing: border-box;
}

.jexcel > tbody > tr > td > textarea {
  resize: none;
  padding-top: 0.5em !important;
}

.jexcel > tbody > tr > td > input[type=checkbox] {
  width: 1em;
  margin-top: 0.17em;
}

.jexcel > tbody > tr > td > input[type=radio] {
  width: 1em;
  margin-top: 0.17em;
}

.jexcel > tbody > tr > td > select {
  appearance: none;
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 40%;
  background-image: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSdibGFjaycgaGVpZ2h0PScyNCcgdmlld0JveD0nMCAwIDI0IDI0JyB3aWR0aD0nMjQnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2Zyc+PHBhdGggZD0nTTcgMTBsNSA1IDUtNXonLz48cGF0aCBkPSdNMCAwaDI0djI0SDB6JyBmaWxsPSdub25lJy8+PC9zdmc+);
}

.jexcel > tbody > tr > td.jexcel_dropdown {
  background-repeat: no-repeat;
  background-position: top 50% right 0.42em;
  background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='none' d='M0 0h24v24H0V0z'/%3E%3Cpath d='M7 10l5 5 5-5H7z' fill='lightgray'/%3E%3C/svg%3E");
  text-overflow: ellipsis;
  overflow-x: hidden;
}

.jexcel > tbody > tr > td.jexcel_dropdown.jexcel_comments {
  background: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='none' d='M0 0h24v24H0V0z'/%3E%3Cpath d='M7 10l5 5 5-5H7z' fill='lightgray'/%3E%3C/svg%3E") top 50% right 5px no-repeat, url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAACXBIWXMAAAsTAAALEwEAmpwYAAAFuGlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDUgNzkuMTYzNDk5LCAyMDE4LzA4LzEzLTE2OjQwOjIyICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdEV2dD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlRXZlbnQjIiB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxOSAoV2luZG93cykiIHhtcDpDcmVhdGVEYXRlPSIyMDE5LTAxLTMxVDE4OjU1OjA4WiIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAxOS0wMS0zMVQxODo1NTowOFoiIHhtcDpNb2RpZnlEYXRlPSIyMDE5LTAxLTMxVDE4OjU1OjA4WiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDphMTlhZDJmOC1kMDI2LTI1NDItODhjOS1iZTRkYjkyMmQ0MmQiIHhtcE1NOkRvY3VtZW50SUQ9ImFkb2JlOmRvY2lkOnBob3Rvc2hvcDpkOGI5NDUyMS00ZjEwLWQ5NDktYjUwNC0wZmU1N2I3Nzk1MDEiIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDplMzdjYmE1ZS1hYTMwLWNkNDUtYTAyNS1lOWYxZjk2MzUzOGUiIGRjOmZvcm1hdD0iaW1hZ2UvcG5nIiBwaG90b3Nob3A6Q29sb3JNb2RlPSIzIj4gPHhtcE1NOkhpc3Rvcnk+IDxyZGY6U2VxPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0iY3JlYXRlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDplMzdjYmE1ZS1hYTMwLWNkNDUtYTAyNS1lOWYxZjk2MzUzOGUiIHN0RXZ0OndoZW49IjIwMTktMDEtMzFUMTg6NTU6MDhaIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxOSAoV2luZG93cykiLz4gPHJkZjpsaSBzdEV2dDphY3Rpb249InNhdmVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOmExOWFkMmY4LWQwMjYtMjU0Mi04OGM5LWJlNGRiOTIyZDQyZCIgc3RFdnQ6d2hlbj0iMjAxOS0wMS0zMVQxODo1NTowOFoiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE5IChXaW5kb3dzKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4En6MDAAAAX0lEQVQYlX3KOw6AIBBAwS32RpJADXfx0pTET+ERZJ8F8RODFtONsG0QAoh0CSDM82dqodaBdQXnfoLZQM7gPai+wjNNE8R4pTuAYNZSKZASqL7CMy0LxNgJp30fKYUDi3+vIqb/+rUAAAAASUVORK5CYII=") top right no-repeat;
}

.jexcel > tbody > tr > td > .color {
  width: 90%;
  height: 0.83em;
  margin: auto;
}

.jexcel > tbody > tr > td > a {
  text-decoration: underline;
}

.jexcel > tbody > tr > td.highlight > a {
  color: blue;
  cursor: pointer;
}

.jexcel > tfoot > tr > td {
  border-top: 0.08em solid #ccc;
  border-left: 0.08em solid #ccc;
  border-right: 0.08em solid transparent;
  border-bottom: 0.08em solid transparent;
  background-color: #f3f3f3;
  padding: 0.17em;
  cursor: pointer;
  box-sizing: border-box;
  overflow: hidden;
}

.jexcel .highlight {
  background-color: rgba(0, 0, 0, 0.05);
}

.jexcel .highlight-top {
  border-top: 0.08em solid #000; /* var(--jexcel-border-color);*/
  box-shadow: 0em -0.08em #ccc;
}

.jexcel .highlight-left {
  border-left: 0.08em solid #000; /* var(--jexcel-border-color);*/
  box-shadow: -0.08em 0em #ccc;
}

.jexcel .highlight-right {
  border-right: 0.08em solid #000; /* var(--jexcel-border-color);*/
}

.jexcel .highlight-bottom {
  border-bottom: 0.08em solid #000; /* var(--jexcel-border-color);*/
}

.jexcel .highlight-top.highlight-left {
  box-shadow: -0.08em -0.08em #ccc;
  -webkit-box-shadow: -0.08em -0.08em #ccc;
  -moz-box-shadow: -0.08em -0.08em #ccc;
}

.jexcel .highlight-selected {
  background-color: rgba(0, 0, 0, 0);
}

.jexcel .selection {
  background-color: rgba(0, 0, 0, 0.05);
}

.jexcel .selection-left {
  border-left: 0.08em dotted #000;
}

.jexcel .selection-right {
  border-right: 0.08em dotted #000;
}

.jexcel .selection-top {
  border-top: 0.08em dotted #000;
}

.jexcel .selection-bottom {
  border-bottom: 0.08em dotted #000;
}

.jexcel_corner {
  position: absolute;
  background-color: rgb(0, 0, 0);
  height: 0.08em;
  width: 0.08em;
  border: 0.08em solid rgb(255, 255, 255);
  top: -166.67em;
  left: -166.67em;
  cursor: crosshair;
  box-sizing: initial;
  z-index: 20;
  padding: 0.17em;
}

.jexcel .editor {
  outline: 0em solid transparent;
  white-space: nowrap;
  text-align: left;
  padding: 0em;
  box-sizing: border-box;
  overflow: visible !important;
}

.jexcel .editor > input {
  padding-left: 0.33em;
}

.jexcel .editor .jupload {
  position: fixed;
  top: 100%;
  z-index: 40;
  -webkit-user-select: none;
          user-select: none;
  -webkit-font-smoothing: antialiased;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  border-radius: 0.33em;
  box-shadow: 0 0.67em 0.83em 0.08em rgba(0, 0, 0, 0.14), 0 0.25em 1.17em 0.17em rgba(0, 0, 0, 0.12), 0 0.42em 0.42em -0.25em rgba(0, 0, 0, 0.2);
  padding: 0.83em;
  background-color: #fff;
  width: 25em;
  min-height: 18.75em;
  margin-top: 0.17em;
}

.jexcel .editor .jupload img {
  width: 100%;
  height: auto;
}

.jexcel .editor .jexcel_richtext {
  position: fixed;
  top: 100%;
  z-index: 40;
  -webkit-user-select: none;
          user-select: none;
  -webkit-font-smoothing: antialiased;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  box-shadow: 0 0.67em 0.83em 0.08em rgba(0, 0, 0, 0.14), 0 0.25em 1.17em 0.17em rgba(0, 0, 0, 0.12), 0 0.42em 0.42em -0.25em rgba(0, 0, 0, 0.2);
  padding: 0.83em;
  background-color: #fff;
  min-width: 23.33em;
  max-width: 25.83em;
  margin-top: 0.17em;
  text-align: left;
}

.jexcel .editor .jclose:after {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0.83em;
  content: "close";
  font-size: 2em;
  width: 2em;
  height: 2em;
  line-height: 2em;
  cursor: pointer;
  text-shadow: 0em 0em 0.42em #fff;
}

.jexcel, .jexcel td, .jexcel_corner {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
}

.jexcel_textarea {
  position: absolute;
  top: -83.25em;
  left: -83.25em;
  width: 0.08em;
  height: 0.08em;
}

.jexcel .dragline {
  position: absolute;
}

.jexcel .dragline div {
  position: relative;
  top: -0.5em;
  height: 0.42em;
  width: 1.83em;
}

.jexcel .dragline div:hover {
  cursor: move;
}

.jexcel .onDrag {
  background-color: rgba(0, 0, 0, 0.6);
}

.jexcel .error {
  border: 0.08em solid red;
}

.jexcel thead td.resizing {
  border-right-style: dotted !important;
  border-right-color: red !important;
}

.jexcel tbody tr.resizing > td {
  border-bottom-style: dotted !important;
  border-bottom-color: red !important;
}

.jexcel tbody td.resizing {
  border-right-style: dotted !important;
  border-right-color: red !important;
}

.jexcel .jdropdown-header {
  border: 0em !important;
  outline: none !important;
  width: 100% !important;
  height: 100% !important;
  padding: 0em !important;
  padding-left: 0.67em !important;
}

.jexcel .jdropdown-container {
  margin-top: 0.08em;
}

.jexcel .jdropdown-container-header {
  padding: 0em;
  margin: 0em;
  height: inherit;
}

.jexcel .jdropdown-picker {
  border: 0em !important;
  padding: 0em !important;
  width: inherit;
  height: inherit;
}

.jexcel .jexcel_comments {
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAACXBIWXMAAAsTAAALEwEAmpwYAAAFuGlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDUgNzkuMTYzNDk5LCAyMDE4LzA4LzEzLTE2OjQwOjIyICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdEV2dD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlRXZlbnQjIiB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxOSAoV2luZG93cykiIHhtcDpDcmVhdGVEYXRlPSIyMDE5LTAxLTMxVDE4OjU1OjA4WiIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAxOS0wMS0zMVQxODo1NTowOFoiIHhtcDpNb2RpZnlEYXRlPSIyMDE5LTAxLTMxVDE4OjU1OjA4WiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDphMTlhZDJmOC1kMDI2LTI1NDItODhjOS1iZTRkYjkyMmQ0MmQiIHhtcE1NOkRvY3VtZW50SUQ9ImFkb2JlOmRvY2lkOnBob3Rvc2hvcDpkOGI5NDUyMS00ZjEwLWQ5NDktYjUwNC0wZmU1N2I3Nzk1MDEiIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDplMzdjYmE1ZS1hYTMwLWNkNDUtYTAyNS1lOWYxZjk2MzUzOGUiIGRjOmZvcm1hdD0iaW1hZ2UvcG5nIiBwaG90b3Nob3A6Q29sb3JNb2RlPSIzIj4gPHhtcE1NOkhpc3Rvcnk+IDxyZGY6U2VxPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0iY3JlYXRlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDplMzdjYmE1ZS1hYTMwLWNkNDUtYTAyNS1lOWYxZjk2MzUzOGUiIHN0RXZ0OndoZW49IjIwMTktMDEtMzFUMTg6NTU6MDhaIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxOSAoV2luZG93cykiLz4gPHJkZjpsaSBzdEV2dDphY3Rpb249InNhdmVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOmExOWFkMmY4LWQwMjYtMjU0Mi04OGM5LWJlNGRiOTIyZDQyZCIgc3RFdnQ6d2hlbj0iMjAxOS0wMS0zMVQxODo1NTowOFoiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE5IChXaW5kb3dzKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4En6MDAAAAX0lEQVQYlX3KOw6AIBBAwS32RpJADXfx0pTET+ERZJ8F8RODFtONsG0QAoh0CSDM82dqodaBdQXnfoLZQM7gPai+wjNNE8R4pTuAYNZSKZASqL7CMy0LxNgJp30fKYUDi3+vIqb/+rUAAAAASUVORK5CYII=");
  background-repeat: no-repeat;
  background-position: top right;
}

.jexcel .sp-replacer {
  margin: 0.17em;
  border: 0em;
}

.jexcel > thead > tr.jexcel_filter > td > input {
  border: 0em;
  width: 100%;
  outline: none;
}

.jexcel_about {
  float: right;
  font-size: 0.7em;
  padding: 0.17em;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: none;
}

.jexcel_about a {
  color: #ccc;
  text-decoration: none;
}

.jexcel_about img {
  display: none;
}

.jexcel_filter {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.33em;
}

.jexcel_filter > div {
  padding: 0.67em;
  align-items: center;
}

.jexcel_pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.jexcel_pagination > div {
  display: flex;
  padding: 0.83em;
}

.jexcel_pagination > div:last-child {
  padding-right: 0.83em;
  padding-top: 0.83em;
}

.jexcel_pagination > div > div {
  text-align: center;
  width: 3em;
  height: 3em;
  line-height: 2.83em;
  border: 0.08em solid #ccc;
  box-sizing: border-box;
  margin-left: 0.17em;
  cursor: pointer;
}

.jexcel_page {
  font-size: 0.8em;
}

.jexcel_page_selected {
  font-weight: bold;
  background-color: #f3f3f3;
}

.jexcel_toolbar {
  display: flex;
  background-color: #f3f3f3;
  border: 0.08em solid #ccc;
  padding: 0.33em;
  margin: 0em 0.17em 0.33em 0.08em;
  position: sticky;
  top: 0em;
  z-index: 21;
}

.jexcel_toolbar:empty {
  display: none;
}

.jexcel_toolbar i.jexcel_toolbar_item {
  width: 2em;
  height: 2em;
  padding: 0.33em;
  cursor: pointer;
  display: inline-block;
}

.jexcel_toolbar i.jexcel_toolbar_item:hover {
  background-color: #ddd;
}

.jexcel_toolbar select.jexcel_toolbar_item {
  margin-left: 0.17em;
  margin-right: 0.17em;
  display: inline-block;
  border: 0em;
  background-color: transparent;
  padding-right: 0.83em;
}

.jexcel .dragging-left {
  background-repeat: no-repeat;
  background-position: top 50% left 0em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M14 7l-5 5 5 5V7z'/%3E%3Cpath fill='none' d='M24 0v24H0V0h24z'/%3E%3C/svg%3E");
}

.jexcel .dragging-right {
  background-repeat: no-repeat;
  background-position: top 50% right 0em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M10 17l5-5-5-5v10z'/%3E%3Cpath fill='none' d='M0 24V0h24v24H0z'/%3E%3C/svg%3E");
}

.jexcel_tabs .jexcel_tab {
  display: none;
}

.jexcel_tabs .jexcel_tab_link {
  display: inline-block;
  padding: 0.83em;
  padding-left: 1.67em;
  padding-right: 1.67em;
  margin-right: 0.42em;
  margin-bottom: 0.42em;
  background-color: #f3f3f3;
  cursor: pointer;
}

.jexcel_tabs .jexcel_tab_link.selected {
  background-color: #ddd;
}

.jexcel_hidden_index > tbody > tr > td:first-child,
.jexcel_hidden_index > thead > tr > td:first-child,
.jexcel_hidden_index > tfoot > tr > td:first-child,
.jexcel_hidden_index > colgroup > col:first-child {
  display: none;
}

.jexcel .jrating {
  display: inline-flex;
}

.jexcel .jrating > div {
  zoom: 0.55;
}

.jexcel .copying-top {
  border-top: 0.08em dashed #000;
}

.jexcel .copying-left {
  border-left: 0.08em dashed #000;
}

.jexcel .copying-right {
  border-right: 0.08em dashed #000;
}

.jexcel .copying-bottom {
  border-bottom: 0.08em dashed #000;
}

.jexcel .jexcel_column_filter {
  background-repeat: no-repeat;
  background-position: top 50% right 0.42em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='gray' width='18px' height='18px'%3E%3Cpath d='M10 18h4v-2h-4v2zM3 6v2h18V6H3zm3 7h12v-2H6v2z'/%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E");
  text-overflow: ellipsis;
  overflow: hidden;
  padding: 0em;
  padding-left: 0.5em;
  padding-right: 1.67em;
}

.jexcel thead .jexcel_freezed, .jexcel tfoot .jexcel_freezed {
  left: 0em;
  z-index: 3 !important;
  box-shadow: 0.17em 0em 0.17em 0.02em #ccc !important;
  -webkit-box-shadow: 0.17em 0em 0.17em 0.02em #ccc !important;
  -moz-box-shadow: 0.17em 0em 0.17em 0.02em #ccc !important;
}

.jexcel tbody .jexcel_freezed {
  position: relative;
  background-color: #fff;
  box-shadow: 0.08em 0.08em 0.08em 0.08em #ccc !important;
  -webkit-box-shadow: 0.17em 0.33em 0.33em 0.01em #ccc !important;
  -moz-box-shadow: 0.17em 0.33em 0.33em 0.01em #ccc !important;
}

.red {
  color: red;
}
/**
 * (c) jSuites Javascript Web Components
 *
 * Website: https://jsuites.net
 * Description: Create amazing web based applications.
 *
 * MIT License
 *
 */
:root {
  --button-color: #298BA8;
  --active-color: #007aff;
  --safe-area-top: env(safe-area-inset-top);
  --safe-area-bottom: env(safe-area-inset-bottom);
}

[data-visible=false] {
  display: none;
}

div[data-before]:before {
  content: attr(data-before);
}

.unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.jreadonly {
  pointer-events: none;
}

.jdragging {
  opacity: 0.2;
  filter: alpha(opacity=20);
}

.jupload.input {
  position: relative;
  box-sizing: border-box;
  background-size: initial;
  height: 2.75em;
  min-height: initial;
  padding: 0.5em;
  padding-right: 2.5em;
}

.jupload.input:before {
  content: "save";
  font-size: 1.5em;
  color: #000;
  position: absolute;
  right: 0.42em;
}

.jupload:empty:before {
  z-index: 0;
}

.jupload img {
  width: 100%;
}

.jupload.input img {
  width: initial;
  max-width: 100%;
  height: 100%;
}

.jupload[data-multiple] {
  padding: 0.83em;
}

.jupload[data-multiple] img {
  height: 5.83em;
  width: 8.33em;
  object-fit: cover;
  margin-right: 0.42em;
  margin-bottom: 0.42em;
}

.jupload {
  position: relative;
  border: 0.08em dotted #eee;
  cursor: pointer;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  min-height: 15em;
}

.jupload:not(.input):before {
  content: "\e2c3";
  font-size: 7.5em;
  color: #eee;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: -1;
}

.jupload-item {
  padding-right: 1.83em;
  border-radius: 0.08em;
  display: inline-block;
  position: relative;
}

.jphoto {
  position: relative;
  border: 0.08em dotted #eee;
  cursor: pointer;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jphoto:empty:before {
  content: "\e2c3";
  font-size: 7.5em;
  color: #eee;
  width: 100%;
  height: 100%;
  text-align: center;
}

.jremove {
  opacity: 0.2;
  filter: alpha(opacity=20);
}

.round img {
  border-radius: 83.33em;
}

.jtooltip {
  position: fixed;
  top: 0.83em;
  left: 0.83em;
  z-index: 5;
  font-family: initial;
  font-size: 1em;
  color: #000;
  background-color: #fff;
  border: 0.08em solid black;
  padding: 0.67em;
  margin: 0.83em;
  display: block;
  animation: fadeIn 0.5s;
  pointer-events: none;
}

.jtooltip:empty {
  display: none;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/** Animations **/
.fade-in {
  animation: fade-in 2s forwards;
}

.fade-out {
  animation: fade-out 1s forwards;
}

.slide-left-in {
  position: relative;
  animation: slide-left-in 0.4s forwards;
}

.slide-left-out {
  position: relative;
  animation: slide-left-out 0.4s forwards;
}

.slide-right-in {
  position: relative;
  animation: slide-right-in 0.4s forwards;
}

.slide-right-out {
  position: relative;
  animation: slide-right-out 0.4s forwards;
}

.slide-top-in {
  position: relative;
  animation: slide-top-in 0.4s forwards;
}

.slide-top-out {
  position: relative;
  animation: slide-top-out 0.2s forwards;
}

.slide-bottom-in {
  position: relative;
  animation: slide-bottom-in 0.4s forwards;
}

.slide-bottom-out {
  position: relative;
  animation: slide-bottom-out 0.1s forwards;
}

.slide-left-in > div {
  -webkit-transform: translateZ(0em);
  -webkit-transform: translate3d(0, 0, 0);
}

.slide-left-out > div {
  -webkit-transform: translateZ(0em);
  -webkit-transform: translate3d(0, 0, 0);
}

.slide-right-in > div {
  -webkit-transform: translateZ(0em);
  -webkit-transform: translate3d(0, 0, 0);
}

.slide-right-out > div {
  -webkit-transform: translateZ(0em);
  -webkit-transform: translate3d(0, 0, 0);
}

.spin {
  animation: spin 2s infinite linear;
}

/** Fadein and Fadeout **/
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100;
  }
}
@keyframes fade-out {
  0% {
    opacity: 100;
  }
  100% {
    opacity: 0;
  }
}
/** Keyframes Left to Right **/
@keyframes slide-left-in {
  0% {
    left: -100%;
  }
  100% {
    left: 0%;
  }
}
@keyframes slide-left-out {
  0% {
    left: 0%;
  }
  100% {
    left: -100%;
  }
}
/** Keyframes Right to Left **/
@keyframes slide-right-in {
  0% {
    left: 100%;
  }
  100% {
    left: 0%;
  }
}
@keyframes slide-right-out {
  0% {
    left: 0%;
  }
  100% {
    left: 100%;
  }
}
/** Keyframes Top to Bottom **/
@keyframes slide-top-in {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes slide-top-out {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-100%);
  }
}
/** Keyframes Bottom to Top **/
@keyframes slide-bottom-in {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes slide-bottom-out {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(100%);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.jcalendar {
  position: absolute;
  z-index: 9000;
  display: none;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  min-width: 23.33em;
}

.jcalendar.jcalendar-focus {
  display: block;
}

.jcalendar .jcalendar-backdrop {
  position: fixed;
  top: 0em;
  left: 0em;
  z-index: 9000;
  min-width: 100%;
  min-height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  border: 0em;
  padding: 0em;
  display: none;
}

.jcalendar .jcalendar-container {
  position: relative;
  box-sizing: border-box;
}

.jcalendar .jcalendar-content {
  position: absolute;
  z-index: 9001;
  box-shadow: 0.08em 0.08em 0.42em 0em rgba(0, 0, 0, 0.39);
  background-color: #fff;
}

.jcalendar-header {
  text-align: center;
}

.jcalendar-header span {
  margin-right: 0.33em;
  font-size: 1.1em;
  font-weight: bold;
}

.jcalendar-prev {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M15.41 16.59L10.83 12l4.58-4.59L14 6l-6 6 6 6 1.41-1.41z' fill='%23000' /%3E%3Cpath fill='none' d='M0 0h24v24H0V0z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
}

.jcalendar-next {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z' fill='%23000' /%3E%3Cpath fill='none' d='M0 0h24v24H0V0z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
}

.jcalendar-weekday {
  font-weight: 600;
  background-color: #fcfcfc;
  padding: 1.17em;
}

.jcalendar-table {
  padding: 0.83em;
}

.jcalendar-table > table {
  width: 100%;
  background-color: #fff;
}

.jcalendar-table > table > thead {
  cursor: pointer;
}

.jcalendar-table thead td {
  padding: 0.83em;
  height: 3.33em;
}

.jcalendar-table > table > tbody > tr {
  height: 2.83em;
}

.jcalendar-table > table > tbody td {
  box-sizing: border-box;
  cursor: pointer;
  padding: 0.75em;
  font-size: 0.9em;
}

.jcalendar-table tfoot td {
  padding: 0.83em;
}

.jcalendar-months td, .jcalendar-years td {
  height: 2em;
}

.jcalendar-input {
  padding-right: 1.5em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='gray'%3E%3Cpath d='M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V8h16v13z'/%3E%3Cpath fill='none' d='M0 0h24v24H0z'/%3E%3C/svg%3E");
  background-position: top 50% right 0.42em;
  background-repeat: no-repeat;
  box-sizing: border-box;
}

.jcalendar-done {
  box-shadow: 0.08em 0.08em 0.42em 0em rgba(0, 0, 0, 0.39);
  background-color: #fff;
}

.jcalendar-update {
  border: 0.08em solid #ccc;
  background-color: #fff;
  border-radius: 0.33em;
  padding: 0.42em;
  width: 100%;
}

.jcalendar-container select {
  width: 4.58em;
  display: inline-block;
  border: 0em;
  padding: 0.33em;
  text-align: center;
  font-size: 1.1em;
  -webkit-user-select: none;
          user-select: none;
  margin-right: 0.83em;
}

.jcalendar-container select:first-child {
  margin-right: 0.17em;
}

.jcalendar-selected {
  background-color: #eee;
}

.jcalendar-reset, .jcalendar-confirm {
  text-transform: uppercase;
  cursor: pointer;
  color: var(--active-color);
}

.jcalendar-controls {
  padding: 1.25em;
  box-sizing: border-box;
  vertical-align: middle;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.jcalendar-controls div {
  font-weight: bold;
}

.jcalendar-fullsize {
  position: fixed;
  width: 100%;
  top: 0em;
  left: 0em;
}

.jcalendar-fullsize .jcalendar-content {
  position: fixed;
  width: 100%;
  left: 0em;
  bottom: 0em;
}

.jcalendar-focus.jcalendar-fullsize .jcalendar-backdrop {
  display: block;
}

.jcalendar-sunday {
  color: red;
}

.jcalendar-disabled {
  color: #ccc;
}

.jcalendar-time {
  display: flex;
}

.jcalendar_warning {
  color: red;
}

.jcalendar-hide-controls .jcalendar-controls {
  display: none;
}

.jcolor {
  display: none;
  outline: none;
  position: absolute;
}

.jcolor-input {
  padding-right: 2em !important;
  background: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black' width='18px' height='18px'%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M12 3c-4.97 0-9 4.03-9 9s4.03 9 9 9c.83 0 1.5-.67 1.5-1.5 0-.39-.15-.74-.39-1.01-.23-.26-.38-.61-.38-.99 0-.83.67-1.5 1.5-1.5H16c2.76 0 5-2.24 5-5 0-4.42-4.03-8-9-8zm-5.5 9c-.83 0-1.5-.67-1.5-1.5S5.67 9 6.5 9 8 9.67 8 10.5 7.33 12 6.5 12zm3-4C8.67 8 8 7.33 8 6.5S8.67 5 9.5 5s1.5.67 1.5 1.5S10.33 8 9.5 8zm5 0c-.83 0-1.5-.67-1.5-1.5S13.67 5 14.5 5s1.5.67 1.5 1.5S15.33 8 14.5 8zm3 4c-.83 0-1.5-.67-1.5-1.5S16.67 9 17.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z'/%3E%3C/svg%3E") top 50% right 4px no-repeat, content-box;
  box-sizing: border-box;
}

.jcolor-content {
  position: absolute;
  z-index: 9000;
  -webkit-user-select: none;
          user-select: none;
  -webkit-font-smoothing: antialiased;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  border-radius: 0.33em;
  box-shadow: 0 0.67em 0.83em 0.08em rgba(0, 0, 0, 0.14), 0 0.25em 1.17em 0.17em rgba(0, 0, 0, 0.12), 0 0.42em 0.42em -0.25em rgba(0, 0, 0, 0.2);
  background-color: #fff;
  box-sizing: border-box;
  min-width: 21.67em;
}

.jmodal .jcolor-content {
  position: fixed;
}

.jcolor-controls {
  display: flex;
  padding: 0.83em;
  border-bottom: 0.08em solid #eee;
  margin-bottom: 0.42em;
}

.jcolor-controls div {
  flex: 1;
  font-size: 1em;
  color: var(--active-color);
  text-transform: uppercase;
  font-weight: bold;
  box-sizing: border-box;
}

.jcolor-content table {
  border-collapse: collapse;
  box-sizing: border-box;
}

.jcolor-focus {
  display: block;
}

.jcolor table {
  width: 100%;
  height: 100%;
  min-height: 13.33em;
}

.jcolor td {
  padding: 0.58em;
}

.jcolor-selected {
  background-repeat: no-repeat;
  background-size: 1.33em;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z' fill='white'/%3E%3C/svg%3E");
}

.jcolor-fullscreen {
  position: fixed;
  left: 0em;
  bottom: 0em;
  width: 100%;
  max-height: 24.17em;
  border-radius: 0em;
  box-sizing: border-box;
}

.jcolor-fullscreen .jcolor-controls {
  padding: 1.25em;
  box-shadow: 0.08em 0em 0.08em 0em rgba(0, 0, 0, 0.39);
}

.jcolor-reset {
  text-align: left;
}

.jcolor-close {
  text-align: right;
}

.jcolor-backdrop {
  position: fixed;
  top: 0em;
  left: 0em;
  min-width: 100%;
  min-height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  border: 0em;
  padding: 0em;
  z-index: 8000;
  display: none;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */ /* Konqueror HTML */ /* Firefox */ /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
   supported by Chrome and Opera */
}

.jcolor-content .jtabs-content {
  padding: 0.58em;
}

.jcolor-grid tr:first-child > td:first-child {
  border-top-left-radius: 0.25em;
}

.jcolor-grid tr:first-child > td:last-child {
  border-top-right-radius: 0.25em;
}

.jcolor-grid tr:last-child > td:first-child {
  border-bottom-left-radius: 0.25em;
}

.jcolor-grid tr:last-child > td:last-child {
  border-bottom-right-radius: 0.25em;
}

.jcolor-hsl {
  box-sizing: border-box;
}

.jcolor-hsl > div {
  height: 100%;
  position: relative;
}

.jcolor-hsl canvas {
  display: block;
  border-radius: 0.33em;
  -webkit-user-drag: none;
}

.jcolor-point {
  height: 0.42em;
  width: 0.42em;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.jcolor-sliders {
  padding: 0.83em 1.67em 0.83em 0.83em;
}

.jcolor-sliders input {
  -webkit-appearance: none;
  height: 1em;
  width: 80%;
  background: #d3d3d3;
  opacity: 1;
  border-radius: 2.5em;
  outline: none;
}

.jcolor-sliders-input-subcontainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.jcolor-sliders-input-container {
  margin-top: 0.33em;
  line-height: 0.8em;
  text-align: left;
}

.jcolor-sliders-input-container > label {
  font-size: 0.83em;
  text-transform: uppercase;
  color: #bbbbbd;
}

.jcolor-sliders-input-subcontainer > input {
  border: 0em;
  padding: 0.08em;
}

.jcolor-sliders-input-container input::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 1em;
  width: 1em;
  border-radius: 50%;
  background: #000;
  border: 0.17em solid #fff;
  cursor: pointer;
}

.jcolor-sliders-input-container input::-moz-range-thumb {
  -webkit-appearance: none;
  height: 1em;
  width: 1em;
  border-radius: 50%;
  background: #000;
  border: 0.17em solid #fff;
  cursor: pointer;
}

.jcolor-sliders-final-color {
  padding: 0.5em;
  -webkit-user-select: all;
          user-select: all;
  margin-top: 0.83em;
  text-align: center;
}

.jcolor-sliders-final-color > div:nth-child(2) {
  width: 5.92em;
  text-transform: uppercase;
}

.jcolor .jtabs .jtabs-headers-container .jtabs-controls {
  display: none !important;
}

.jcolor .jtabs .jtabs-headers-container {
  display: flex !important;
  justify-content: center;
  padding: 0.33em;
}

.jcolor .jtabs-headers > div:not(.jtabs-border) {
  padding: 0.17em !important;
  padding-left: 1.25em !important;
  padding-right: 1.25em !important;
  font-size: 0.8em;
}

.jcontextmenu {
  position: fixed;
  z-index: 10000;
  background: #fff;
  color: #555;
  font-size: 0.92em;
  -webkit-user-select: none;
  user-select: none;
  box-shadow: 0.17em 0.17em 0.17em 0em rgb(143, 144, 145);
  border: 0.08em solid #C6C6C6;
  padding: 0em;
  padding-top: 0.33em;
  padding-bottom: 0.33em;
  margin: 0em;
  outline: none;
  display: none;
}

.jcontextmenu.jcontextmenu-focus {
  display: inline-block;
}

.jcontextmenu > div {
  box-sizing: border-box;
  display: flex;
  padding: 0.67em 0.67em 0.67em 2.67em;
  width: 20.83em;
  position: relative;
  cursor: default;
  font-size: 0.92em;
  font-family: sans-serif;
  text-align: left;
  align-items: center;
}

.jcontextmenu > div::before {
  content: attr(data-icon);
  font-size: 1.25em;
  position: absolute;
  left: 0.75em;
  line-height: 2em;
}

.jcontextmenu > div.header {
  display: none;
}

.jcontextmenu > div a {
  color: #555;
  text-decoration: none;
  flex: 1;
  cursor: pointer;
}

.jcontextmenu > div span {
  margin-right: 0.83em;
}

.jcontextmenu .jcontextmenu-disabled a {
  color: #ccc;
}

.jcontextmenu .jcontextmenu-disabled::before {
  color: #ccc;
}

.jcontextmenu > div:hover {
  background: #ebebeb;
}

.jcontextmenu hr {
  border: 0.08em solid #e9e9e9;
  border-bottom: 0;
  margin-top: 0.42em;
  margin-bottom: 0.42em;
}

.jcontextmenu > hr:hover {
  background: transparent;
}

.jcontextmenu .jcontextmenu {
  top: 0.33em;
  left: 99%;
  opacity: 0;
  position: absolute;
}

.jcontextmenu > div:hover > .jcontextmenu {
  display: block;
  opacity: 1;
  transform: translate(0, 0) scale(1);
  pointer-events: auto;
}

@media only screen and (max-width: 35em) {
  .jcontextmenu {
    top: initial !important;
    left: 0em !important;
    bottom: 0em !important;
    width: 100vw;
    height: 21.67em;
    overflow: scroll;
    animation: slide-bottom-in 0.4s forwards;
    padding-top: 0em;
  }
  .jcontextmenu div {
    width: 100%;
    text-align: center;
    border-bottom: 0.08em solid #ccc;
    padding: 1.25em;
  }
  .jcontextmenu > div.header {
    background-color: lightgray;
    padding: 0.42em;
    top: 0em;
    position: sticky;
    z-index: 2;
  }
  .jcontextmenu > div.header > a.title {
    text-align: left;
  }
  .jcontextmenu > div.header > a.close {
    text-align: right;
  }
  .jcontextmenu a {
    font-size: 1.4em;
    text-transform: uppercase;
  }
  .jcontextmenu span {
    display: none;
  }
  .jcontextmenu hr {
    display: none;
  }
}
.jdropdown {
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  box-sizing: border-box;
  background: #fff;
  -webkit-tap-highlight-color: transparent;
  display: inline-block;
}

.jdropdown-backdrop {
  position: fixed;
  top: 0em;
  left: 0em;
  min-width: 100%;
  min-height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  border: 0em;
  padding: 0em;
  z-index: 8000;
  display: none;
}

.jdropdown[disabled] {
  opacity: 0.5;
  pointer-events: none;
}

.jdropdown-focus {
  position: relative;
}

.jdropdown-focus .jdropdown-container {
  transform: translate3d(0, 0, 0);
}

.jdropdown-default.jdropdown-focus .jdropdown-header {
  outline: auto 0.42em -webkit-focus-ring-color;
}

.jdropdown-default.jdropdown-focus .jdropdown-header.jdropdown-add {
  background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='gray' width='24px' height='24px'%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-2 10h-4v4h-2v-4H7v-2h4V7h2v4h4v2z'/%3E%3C/svg%3E");
}

.jdropdown-container-header {
  padding: 0em;
  margin: 0em;
  position: relative;
  box-sizing: border-box;
}

.jdropdown-header {
  width: 100%;
  appearance: none;
  background-repeat: no-repeat;
  background-position: top 50% right 0.42em;
  background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='none' d='M0 0h24v24H0V0z'/%3E%3Cpath d='M7 10l5 5 5-5H7z' fill='gray'/%3E%3C/svg%3E");
  text-overflow: ellipsis;
  cursor: pointer;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2.5em !important;
}

.jdropdown-insert-button {
  font-size: 1.4em;
  text-transform: uppercase;
  position: absolute;
  right: 2.5em;
  top: 0.33em;
  display: none;
}

.jdropdown-container {
  min-width: inherit;
  transform: translate3d(-833.33em, 0, 0);
  position: absolute;
  z-index: 9001;
}

.jdropdown-close {
  display: none;
  font-size: 1em;
  color: var(--active-color);
  text-transform: uppercase;
  text-align: right;
  padding: 1.25em;
  font-weight: bold;
}

.jdropdown-content {
  min-width: inherit;
  margin: 0em;
  box-sizing: border-box;
}

.jdropdown-item {
  white-space: nowrap;
  text-align: left;
  text-overflow: ellipsis;
  overflow-x: hidden;
  color: #000;
  display: flex;
  align-items: center;
}

.jdropdown-description {
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 1.5em;
}

.jdropdown-image {
  margin-right: 0.83em;
  width: 2.67em;
  height: 2.67em;
  border-radius: 1.67em;
}

.jdropdown-image-small {
  width: 2em;
  height: 2em;
}

.jdropdown-icon {
  margin-right: 0.83em;
  font-size: 2.5em;
  margin-left: -0.42em;
}

.jdropdown-icon-small {
  font-size: 2em;
  margin-left: 0em;
}

.jdropdown-title {
  font-size: 0.7em;
  text-overflow: ellipsis;
  overflow-x: hidden;
  display: block;
}

/** Default visual **/
.jdropdown-default .jdropdown-header {
  border: 0.08em solid #ccc;
  padding: 0.42em;
  padding-left: 0.83em;
  padding-right: 1.33em;
}

.jdropdown-default .jdropdown-container {
  background-color: #fff;
}

.jdropdown-default.jdropdown-focus.jdropdown-insert .jdropdown-header {
  padding-right: 4.17em;
}

.jdropdown-default.jdropdown-focus.jdropdown-insert .jdropdown-insert-button {
  display: block;
}

.jdropdown-default .jdropdown-content {
  min-width: inherit;
  border: 0.08em solid #8fb1e3;
  margin: 0em;
  background-color: #fff;
  box-sizing: border-box;
  min-height: 0.83em;
  max-height: 17.92em;
  overflow-y: auto;
}

.jdropdown-default .jdropdown-item {
  padding: 0.33em;
  padding-left: 0.67em;
  padding-right: 3.33em;
}

.jdropdown-default .jdropdown-item:hover {
  background-color: #1f93ff;
  color: #fff;
}

.jdropdown-default .jdropdown-cursor {
  background-color: #eee;
}

.jdropdown-default .jdropdown-selected {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIiAvPjxwYXRoIGQ9Ik05IDE2LjE3TDQuODMgMTJsLTEuNDIgMS40MUw5IDE5IDIxIDdsLTEuNDEtMS40MXoiIGZpbGw9IndoaXRlIiAvPjwvc3ZnPgo=");
  background-repeat: no-repeat;
  background-position: top 50% right 0.42em;
  background-color: #1f93ff;
  color: #fff;
}

.jdropdown-default .jdropdown-group {
  margin-top: 0.42em;
}

.jdropdown-default .jdropdown-group .jdropdown-item {
  padding-left: 1.33em;
}

.jdropdown-default .jdropdown-group-name {
  padding-left: 0.67em;
  font-weight: bold;
  text-align: left;
}

.jdropdown-default .jdropdown-reset_ {
  content: "x";
  position: absolute;
  top: 0;
  right: 0;
  margin: 0.42em;
  margin-right: 0.83em;
  font-size: 1em;
  width: 1em;
  cursor: pointer;
  text-shadow: 0em 0em 0.42em #fff;
  display: none;
  line-height: 1.8em;
}

.jdropdown-default.jdropdown-focus .jdropdown-reset_ {
  display: block;
}

/** Default render for mobile **/
.jdropdown-picker.jdropdown-focus .jdropdown-backdrop {
  display: block;
}

.jdropdown-picker .jdropdown-header {
  outline: none;
}

.jdropdown-picker .jdropdown-container {
  position: fixed;
  bottom: 0em;
  left: 0em;
  border-bottom: 0.08em solid #e6e6e8;
  width: 100%;
  background-color: #fff;
  box-sizing: border-box;
}

.jdropdown-picker .jdropdown-close {
  box-shadow: 0em -0.08em 0.42em 0em rgba(0, 0, 0, 0.39);
  background-color: #fff;
  display: block;
}

.jdropdown-picker .jdropdown-content {
  overflow-y: scroll;
  height: 23.33em;
  background-color: #fafafa;
  border-top: 0.08em solid #e6e6e8;
}

.jdropdown-picker .jdropdown-group-name {
  font-size: 1em;
  text-transform: uppercase;
  padding-top: 0.83em;
  padding-bottom: 0.83em;
  display: block;
  border-bottom: 0.08em solid #e6e6e8;
  padding-left: 1.67em;
  padding-right: 1.67em;
  text-align: center;
  font-weight: bold;
}

.jdropdown-picker .jdropdown-item {
  font-size: 1em;
  text-transform: uppercase;
  padding-top: 0.83em;
  padding-bottom: 0.83em;
  border-bottom: 0.08em solid #e6e6e8;
  padding-left: 1.67em;
  padding-right: 1.67em;
}

.jdropdown-picker .jdropdown-selected {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIiAvPjxwYXRoIGQ9Ik05IDE2LjE3TDQuODMgMTJsLTEuNDIgMS40MUw5IDE5IDIxIDdsLTEuNDEtMS40MXoiIGZpbGw9IndoaXRlIiAvPjwvc3ZnPgo=");
  background-repeat: no-repeat;
  background-position: top 50% right 1.25em;
  background-color: #1f93ff;
  color: #fff;
}

.jdropdown-picker .jdropdown-cursor {
  background-color: #1f93ff;
  color: #fff;
}

/** Default render for mobile searchbar **/
.jdropdown-searchbar.jdropdown-focus {
  position: fixed;
  top: 0em !important;
  left: 0em !important;
  width: 100% !important;
  height: 100% !important;
  background-color: #fafafa;
  padding: 0em;
  z-index: 9001;
  overflow-y: scroll;
  will-change: scroll-position;
  -webkit-overflow-scrolling: touch;
}

.jdropdown-searchbar.jdropdown-focus .jdropdown-container-header {
  position: fixed;
  top: 0em;
  left: 0em;
  z-index: 9002;
  padding: 0.83em;
  background-color: #fff;
  box-shadow: 0 0.08em 0.17em rgba(0, 0, 0, 0.1);
  width: 100%;
}

.jdropdown-searchbar.jdropdown-focus .jdropdown-header {
  border: 0em;
  background-repeat: no-repeat;
  background-position-x: 0%;
  background-position-y: 40%;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMTUuNSAxNGgtLjc5bC0uMjgtLjI3QzE1LjQxIDEyLjU5IDE2IDExLjExIDE2IDkuNSAxNiA1LjkxIDEzLjA5IDMgOS41IDNTMyA1LjkxIDMgOS41IDUuOTEgMTYgOS41IDE2YzEuNjEgMCAzLjA5LS41OSA0LjIzLTEuNTdsLjI3LjI4di43OWw1IDQuOTlMMjAuNDkgMTlsLTQuOTktNXptLTYgMEM3LjAxIDE0IDUgMTEuOTkgNSA5LjVTNy4wMSA1IDkuNSA1IDE0IDcuMDEgMTQgOS41IDExLjk5IDE0IDkuNSAxNHoiIGZpbGw9IiNlNmU2ZTgiLz48cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIi8+PC9zdmc+);
  padding-left: 2.5em !important;
  padding-right: 5em !important;
}

.jdropdown-searchbar.jdropdown-focus .jdropdown-close {
  display: block;
}

.jdropdown-searchbar .jdropdown-header {
  outline: none;
}

.jdropdown-searchbar .jdropdown-container {
  margin-top: 3.33em;
  width: 100%;
}

.jdropdown-searchbar .jdropdown-close {
  position: fixed;
  top: 0em;
  right: 0em;
}

.jdropdown-searchbar .jdropdown-content {
  margin-top: 0.83em;
}

.jdropdown-searchbar .jdropdown-group {
  margin-top: 0.83em;
  margin-bottom: 1.25em;
  background-color: #fff;
}

.jdropdown-searchbar .jdropdown-group-name {
  border-top: 0.08em solid #e6e6e8;
  border-bottom: 0.08em solid #e6e6e8;
  padding: 0.83em;
  padding-left: 1em;
  font-weight: bold;
}

.jdropdown-searchbar .jdropdown-group-arrow {
  float: right;
  width: 2em;
  height: 2em;
  background-repeat: no-repeat;
}

.jdropdown-searchbar .jdropdown-group-arrow-down {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNNy40MSA4LjU5TDEyIDEzLjE3bDQuNTktNC41OEwxOCAxMGwtNiA2LTYtNiAxLjQxLTEuNDF6Ii8+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgyNHYyNEgwVjB6Ii8+PC9zdmc+);
}

.jdropdown-searchbar .jdropdown-group-arrow-up {
  background-image: url(data:image/svg+xml;base64,CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTcuNDEgMTUuNDFMMTIgMTAuODNsNC41OSA0LjU4TDE4IDE0bC02LTYtNiA2eiIvPjxwYXRoIGQ9Ik0wIDBoMjR2MjRIMHoiIGZpbGw9Im5vbmUiLz48L3N2Zz4=);
}

.jdropdown-searchbar .jdropdown-item {
  padding-top: 0.83em;
  padding-bottom: 0.83em;
  border-bottom: 0.08em solid #e6e6e8;
  padding-left: 1.25em;
  padding-right: 3.33em;
  background-color: #fff;
  font-size: 0.9em;
}

.jdropdown-searchbar .jdropdown-description {
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: calc(100% - 1.67em);
}

.jdropdown-searchbar .jdropdown-content > .jdropdown-item:first-child {
  border-top: 0.08em solid #e6e6e8;
}

.jdropdown-searchbar .jdropdown-selected {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTkgMTYuMTdMNC44MyAxMmwtMS40MiAxLjQxTDkgMTkgMjEgN2wtMS40MS0xLjQxeiIgZmlsbD0iIzAwN2FmZiIvPjwvc3ZnPg==");
  background-repeat: no-repeat;
  background-position: top 50% right 1.25em;
}

/** List render **/
.jdropdown-list .jdropdown-container {
  display: block;
}

.jdropdown-list .jdropdown-header {
  display: none;
}

.jdropdown-list .jdropdown-group {
  background-color: #fff;
}

.jdropdown-list .jdropdown-group-name {
  border-bottom: 0.08em solid #e6e6e8;
  padding-top: 0.83em;
  padding-bottom: 0.83em;
  font-weight: bold;
}

.jdropdown-list .jdropdown-item {
  padding-top: 0.83em;
  padding-bottom: 0.83em;
  border-bottom: 0.08em solid #e6e6e8;
  padding-left: 0.83em;
  padding-right: 3.33em;
  background-color: #fff;
}

.jdropdown-list .jdropdown-selected {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTkgMTYuMTdMNC44MyAxMmwtMS40MiAxLjQxTDkgMTkgMjEgN2wtMS40MS0xLjQxeiIgZmlsbD0iIzAwN2FmZiIvPjwvc3ZnPg==");
  background-repeat: no-repeat;
  background-position: top 50% right 0.83em;
}

@media only screen and (max-width: 66.67em) {
  .jdropdown-list {
    width: 100% !important;
    border: 0em;
    padding: 0em;
  }
  .jdropdown-list .jdropdown-container {
    min-width: 100%;
  }
  .jdropdown-searchbar.jdropdown-focus .jdropdown-description {
    text-transform: uppercase;
  }
}
.app .jdropdown-item {
  text-transform: uppercase;
}

.jdropdown-create-container {
  margin: 0.83em;
  border: 0.08em solid #ccc;
  border-radius: 0.17em;
  padding: 0.5em;
}

.jdropdown-color {
  background-color: #fff;
  border: 0.08em solid transparent;
  border-radius: 1em;
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
}

.jdropdown-item[data-disabled] {
  opacity: 0.5;
  pointer-events: none;
}

.jeditor-container {
  border: 0.08em solid #ccc;
  box-sizing: border-box;
}

.jeditor-container.with-margin {
  background-color: #f2f2f2;
  max-width: 100em;
}

.jeditor-dragging {
  border: 0.08em dashed #000;
}

.jeditor {
  outline: none;
  word-break: break-word;
}

.jeditor-container.with-margin .jeditor {
  background-color: #fff;
  margin: 6.67em;
  min-height: 66.67em;
  padding: 6.67em;
  max-width: 66.67em;
}

.jeditor[data-placeholder]:empty:before {
  content: attr(data-placeholder);
  color: lightgray;
}

/** Snippet **/
.jsnippet {
  margin-top: 1.25em;
  cursor: pointer;
  border: 0.08em solid #ccc;
  position: relative;
}

.jsnippet:focus {
  outline: none;
}

.jsnippet img {
  width: 100%;
}

.jsnippet .jsnippet-title {
  padding: 1.25em;
  font-size: 1.4em;
}

.jsnippet .jsnippet-description {
  padding-left: 1.25em;
  padding-right: 1.25em;
  font-size: 1em;
}

.jsnippet .jsnippet-host {
  padding: 1.25em;
  text-transform: uppercase;
  font-size: 0.8em;
  color: #777;
  text-align: right;
}

.jsnippet .jsnippet-url {
  display: none;
}

.jeditor .jsnippet:after {
  content: "close";
  font-size: 2em;
  width: 2em;
  height: 2em;
  line-height: 2em;
  cursor: pointer;
  text-shadow: 0em 0em 0.17em #fff;
  position: absolute;
  top: 1em;
  right: 1em;
}

.jsnippet * {
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
}

.jeditor img {
  border: 0.17em solid transparent;
  box-sizing: border-box;
}

.jeditor img.resizing {
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
}

.jeditor img:focus {
  border: 0.17em solid #0096FD;
  outline: #0096FD;
}

.jeditor .pdf {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 512 512' style='enable-background:new 0 0 512 512;' xml:space='preserve'%3E%3Cpath style='fill:%23C30B15;' d='M511.344,274.266C511.77,268.231,512,262.143,512,256C512,114.615,397.385,0,256,0S0,114.615,0,256 c0,117.769,79.53,216.949,187.809,246.801L511.344,274.266z'/%3E%3Cpath style='fill:%2385080E;' d='M511.344,274.266L314.991,77.913L119.096,434.087l68.714,68.714C209.522,508.787,232.385,512,256,512 C391.243,512,501.976,407.125,511.344,274.266z'/%3E%3Cpolygon style='fill:%23FFFFFF;' points='278.328,333.913 255.711,77.913 119.096,77.913 119.096,311.652 '/%3E%3Cpolygon style='fill:%23E8E6E6;' points='392.904,311.652 392.904,155.826 337.252,133.565 314.991,77.913 255.711,77.913 256.067,333.913 '/%3E%3Cpolygon style='fill:%23FFFFFF;' points='314.991,155.826 314.991,77.913 392.904,155.826 '/%3E%3Crect x='119.096' y='311.652' style='fill:%23FC0F1A;' width='273.809' height='122.435'/%3E%3Cg%3E%3Cpath style='fill:%23FFFFFF;' d='M204.871,346.387c13.547,0,21.341,6.659,21.341,18.465c0,12.412-7.795,19.601-21.341,19.601h-9.611 v14.909h-13.471v-52.975L204.871,346.387L204.871,346.387z M195.26,373.858h8.93c5.904,0,9.308-2.952,9.308-8.552 c0-5.525-3.406-8.324-9.308-8.324h-8.93V373.858z'/%3E%3Cpath style='fill:%23FFFFFF;' d='M257.928,346.387c16.649,0,28.152,10.746,28.152,26.487c0,15.666-11.655,26.488-28.683,26.488 h-22.25v-52.975H257.928z M248.619,388.615h9.611c8.249,0,14.151-6.357,14.151-15.665c0-9.384-6.205-15.817-14.757-15.817h-9.006 V388.615z'/%3E%3Cpath style='fill:%23FFFFFF;' d='M308.563,356.982v12.26h23.763v10.596h-23.763v19.525h-13.471v-52.975h39.277v10.595h-25.806 V356.982z'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: cover;
  width: 5em;
  height: 5em;
}

.jeditor-toolbar {
  width: fit-content;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0.83em;
}

.toolbar-on-top .jeditor-toolbar {
  width: initial;
  margin: 0em;
  box-shadow: 0.08em 0.08em 0.17em rgba(0, 0, 0, 0.1);
  display: block;
}

.toolbar-on-top .jeditor {
  padding: 1.25em;
}

.toolbar-on-top .jtoolbar .material-icons {
  font-size: 2em;
  transform: initial;
  margin: 0.33em;
}

.toolbar-on-top .jtoolbar .jpicker-header {
  font-size: 1em;
  margin-top: 0.33em;
  margin-bottom: 0.33em;
}

.jeditor table {
  border-collapse: collapse;
}

.jeditor table td {
  border: 0.08em solid #bbb;
  height: 2em;
}

.jeditor table td:focus {
  border: 0.08em solid blue;
}

.jeditor .line-break {
  border-top: 0.08em dashed #ccc;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.jeditor .line-break:before {
  content: "New page";
  background-color: #fff;
  color: #ccc;
  margin: -1em;
  padding: 0.5em;
  position: absolute;
}

.jloading {
  position: fixed;
  z-index: 10001;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
}

.jloading::after {
  content: "";
  display: block;
  margin: 0 auto;
  margin-top: 50vh;
  width: 3.33em;
  height: 3.33em;
  border-style: solid;
  border-color: white;
  border-top-color: transparent;
  border-width: 0.33em;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.jloading.spin {
  background-color: transparent;
}

.jloading.spin::after {
  margin: 0 auto;
  margin-top: 6.67em;
  border-color: #aaa;
  border-top-color: transparent;
}

.jmodal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 60%;
  height: 60%;
  -webkit-box-shadow: 0 0.17em 1em rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0.17em 1em rgba(0, 0, 0, 0.2);
  border: 0.08em solid #ccc;
  background-color: #fff;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  z-index: 9002;
  border-radius: 0.33em;
  display: flex;
  flex-direction: column;
}

.jmodal_title {
  padding: 1.67em;
  height: 5.83em;
  box-sizing: border-box;
  font-size: 1.4em;
  background-color: #fff;
  border-radius: 0.67em 0.67em 0em 0em;
  pointer-events: none;
  display: flex;
  align-items: center;
  border-bottom: 0.08em solid #eee;
}

.jmodal_title > div {
  font-size: 1.4em;
}

.jmodal_title[data-icon]:before {
  content: attr(data-icon);
  width: 2em;
  height: 2em;
  font-size: 2em;
  margin-right: 0.83em;
  line-height: 2em;
}

.jmodal_content {
  padding: 1.67em;
  overflow-y: auto;
  height: 100%;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: #333 transparent;
}

.jmodal_title:empty {
  display: none;
}

.jmodal_title:empty + .jmodal_content {
  height: 100%;
}

.jmodal_content::-webkit-scrollbar {
  width: 1em;
  height: 1em;
}

.jmodal_content::-webkit-scrollbar-track {
  border: 0.08em solid #fff;
  background: #eee;
}

.jmodal_content::-webkit-scrollbar-thumb {
  border: 0.08em solid #fff;
  background: #888;
}

.jmodal:after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E");
  position: absolute;
  top: 0;
  right: 0;
  margin: 2.08em;
  font-size: 2em;
  width: 2em;
  height: 2em;
  cursor: pointer;
  text-shadow: 0em 0em 0.42em #fff;
}

.jmodal_fullscreen {
  width: 100% !important;
  height: 100% !important;
  top: 0em;
  left: 0em;
  transform: none;
  border: 0em;
  border-radius: 0em;
}

.jmodal_backdrop {
  position: fixed;
  top: 0em;
  left: 0em;
  min-width: 100%;
  min-height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  border: 0em;
  padding: 0em;
  z-index: 8000;
  display: none;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */ /* Konqueror HTML */ /* Firefox */ /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
   supported by Chrome and Opera */
}

.jmodal_content .jcalendar .jcalendar-content,
.jmodal_content .jdropdown-container {
  position: fixed;
}

.jnotification {
  position: fixed;
  z-index: 10000;
  box-sizing: border-box;
  padding: 0.83em;
  bottom: 0em;
}

.jnotification-container {
  box-shadow: 0em 0.17em 1.25em -0.42em rgba(0, 0, 0, 0.7);
  border-radius: 0.67em;
  background: linear-gradient(0deg, rgb(92, 92, 92) 0%, rgb(77, 77, 77) 100%);
  color: #fff;
  width: 26.67em;
  margin: 2.5em;
  padding: 1.67em;
}

.jnotification-close {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E");
  font-size: 1.67em;
  width: 1.67em;
  height: 1.67em;
  cursor: pointer;
}

.jnotification-title {
  font-weight: bold;
}

.jnotification-header:empty {
  display: none;
}

.jnotification-image {
  margin-right: 0.42em;
}

.jnotification-image:empty {
  display: none;
}

.jnotification-image img {
  width: 2em;
}

.jnotification-name {
  text-transform: uppercase;
  font-size: 0.9em;
  flex: 1;
  letter-spacing: 0.1em;
}

.jnotification-error .jnotification-container {
  background: rgb(182, 38, 6);
  background: linear-gradient(0deg, rgb(170, 41, 13) 0%, rgb(149, 11, 11) 100%);
}

@media (max-width: 66.67em) {
  .jnotification {
    top: calc(0em + var(--safe-area-top));
    width: 100%;
  }
  .jnotification-container {
    background: rgba(255, 255, 255, 0.95);
    border: 0.08em solid #eee;
    color: #444;
    margin: 0em;
    width: initial;
  }
  .jnotification-error .jnotification-container {
    background: rgba(255, 255, 255, 0.95);
    color: #790909;
  }
  .jnotification-close {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E");
  }
}
.jnotification-header {
  display: flex;
  padding-bottom: 0.42em;
  justify-content: flex-start;
  align-items: center;
}

.jpicker {
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  -webkit-user-select: none;
  user-select: none;
  outline: none;
  position: relative;
}

.jpicker-header {
  background-repeat: no-repeat;
  background-position: top 50% right 0.42em;
  background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='none' d='M0 0h24v24H0V0z'/%3E%3Cpath d='M7 10l5 5 5-5H7z' fill='gray'/%3E%3C/svg%3E");
  text-overflow: ellipsis;
  cursor: pointer;
  box-sizing: border-box;
  text-align: left;
  outline: none;
  line-height: 2em;
  padding: 0.17em;
  padding-left: 1em;
  padding-right: 2.92em;
  border-radius: 0.33em;
}

.jpicker-header:hover {
  background-color: #f2f2f2;
}

.jpicker-content {
  position: absolute;
  top: 0;
  display: none;
  box-shadow: 0 0.33em 0.42em 0 rgba(0, 0, 0, 0.14), 0 0.08em 0.83em 0 rgba(0, 0, 0, 0.12), 0 0.17em 0.33em -0.08em rgba(0, 0, 0, 0.2);
  border-radius: 0.33em;
  background-color: #fff;
  padding: 0.33em;
  z-index: 50;
  text-align: left;
  max-height: 16.67em;
  scrollbar-width: thin;
  scrollbar-color: #333 transparent;
}

.jpicker-content::-webkit-scrollbar {
  width: 0.67em;
}

.jpicker-content::-webkit-scrollbar-track {
  background: #eee;
}

.jpicker-content::-webkit-scrollbar-thumb {
  background: #888;
}

.jpicker-content > div {
  padding: 0.5em;
  padding-left: 1.25em;
  padding-right: 1.25em;
}

.jpicker-focus > .jpicker-content {
  display: block;
}

.jpicker-content > div:hover {
  background-color: #efefef;
}

.jpicker-content > div:empty {
  opacity: 0;
}

.jpicker-header > i, .jpicker-header > div {
  display: block;
}

.jpicker-focus > .jpicker-content.jpicker-columns {
  display: flex !important;
  justify-content: center;
  flex-wrap: wrap;
}

.jpicker-focus .jpicker-content.jpicker-grid {
  display: inline-grid;
}

.jprogressbar {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  background: #fff;
  -webkit-tap-highlight-color: transparent;
  display: inline-block;
  box-sizing: border-box;
  cursor: pointer;
  border: 0.08em solid #ccc;
  position: relative;
}

.jprogressbar::before {
  content: attr(data-value);
  position: absolute;
  margin: 0.42em;
  margin-left: 0.83em;
}

.jprogressbar-header::placeholder {
  color: #000;
}

.jprogressbar:focus {
  outline: auto 0.42em -webkit-focus-ring-color;
}

.jprogressbar > div {
  background-color: #eee;
  background-color: red;
  box-sizing: border-box;
  height: 2.58em;
}

.jrating {
  display: flex;
}

.jrating > div {
  width: 2em;
  height: 2em;
  line-height: 2em;
  background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z' fill='gray'/%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E");
}

.jrating .jrating-over {
  background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E");
  opacity: 0.7;
}

.jrating .jrating-selected {
  background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='red'%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E");
}

.jsearch {
  position: relative;
  display: none;
  -webkit-user-select: none;
  user-select: none;
}

.jsearch_container {
  position: absolute;
  border-radius: 0.33em;
  padding: 0.67em 0;
  box-shadow: 0 0.17em 0.33em rgba(0, 0, 0, 0.2);
  transition: opacity 0.218s;
  background: #fff;
  border: 0.08em solid rgba(0, 0, 0, 0.2);
  cursor: pointer;
  margin: 0;
  min-width: 25em;
  outline: none;
  width: auto;
  -webkit-user-select: none;
  user-select: none;
}

.jsearch_container:empty:after {
  content: attr(data-placeholder);
}

.jsearch_container > div {
  color: #333;
  cursor: pointer;
  display: flex;
  padding: 0.42em 0.83em;
  align-items: center;
  -webkit-user-select: none;
  user-select: none;
}

.jsearch_container > div:hover {
  background-color: #e8eaed;
}

.jsearch_container > div > img {
  width: 2.67em;
  height: 2.67em;
  -webkit-user-select: none;
          user-select: none;
  border-radius: 1.33em;
  margin-right: 0.17em;
}

.jsearch_container > div > div {
  overflow: hidden;
  text-overflow: ellipsis;
  margin-left: 0.17em;
  max-width: 25em;
  white-space: nowrap;
  -webkit-user-select: none;
          user-select: none;
}

.jsearch_container .selected {
  background-color: #e8eaed;
}

.jslider {
  outline: none;
}

.jslider img {
  width: 8.33em;
}

.jslider-left::before {
  position: fixed;
  left: 1.25em;
  top: 50%;
  content: "arrow_back_ios";
  color: #fff;
  width: 2.5em;
  height: 2.5em;
  font-size: 2.5em;
  /* before it was 0em 0em 0em #000 */
  text-shadow: 0em 0em 0.5em rgb(56, 56, 56);
  text-align: center;
  cursor: pointer;
}

.jslider-right::after {
  position: fixed;
  right: 1.25em;
  top: 50%;
  content: "arrow_forward_ios";
  color: #fff;
  width: 2.5em;
  height: 2.5em;
  font-size: 2.5em;
  /* before it was 0em 0em 0em #000 */
  text-shadow: 0em 0em 0.5em rgb(56, 56, 56);
  text-align: center;
  cursor: pointer;
}

.jslider-close {
  width: 2em;
  height: 2em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E");
  position: fixed;
  top: 1.25em;
  right: 1.25em;
  cursor: pointer;
  z-index: 3000;
  display: block !important;
}

.jslider-counter {
  height: 2em;
  background-color: transparent;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1.25em;
  cursor: pointer;
  z-index: 3000;
  display: flex;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.jslider-caption {
  position: fixed;
  max-width: 90vw;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  top: 1.25em;
  left: 1.25em;
  z-index: 3000;
  color: #FFF;
  font-size: 1rem;
  display: block !important;
}

.jslider-counter div {
  width: 0.83em;
  height: 0.83em;
  background: #fff;
  border-radius: 50%;
  margin: 0em 0.42em;
  display: block !important;
}

.jslider-counter .jslider-counter-focus {
  background-color: cornflowerblue;
  pointer-events: none;
}

.jslider-focus {
  width: 100% !important;
  height: 100% !important;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  max-height: 100%;
  z-index: 2000;
  margin: 0em;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.8);
  transition-duration: 0.05s;
  display: flex;
  align-items: center;
}

.jslider-focus img {
  width: 50vw;
  height: auto;
  box-sizing: border-box;
  margin: 0 auto;
  vertical-align: middle;
  display: none;
}

.jslider-focus img.jslider-vertical {
  width: auto;
  /* before it was 50vh */
  height: 80vh;
}

@media only screen and (max-width: 48em) {
  .jslider-focus img.jslider-vertical {
    width: 99vw !important;
    height: auto !important;
  }
  .jslider-focus img {
    width: 100vw !important;
    height: auto !important;
  }
}
.jslider-grid {
  display: grid;
  grid-gap: 0.08em;
  position: relative;
}

.jslider-grid[data-number="2"] {
  grid-template-columns: 1fr 50%;
}

.jslider-grid[data-number="3"] {
  grid-template-columns: 1fr 33%;
}

.jslider-grid[data-number="4"] {
  grid-template-columns: 1fr 25%;
}

.jslider-grid img {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jslider-grid[data-total]:after {
  content: attr(data-total) "+";
  font-size: 1.5em;
  position: absolute;
  color: #fff;
  right: 1.25em;
  bottom: 0.5em;
}

.jslider-grid img:first-child {
  -ms-grid-column: 1;
  -ms-grid-row: 1;
  grid-column: 1;
  grid-row: 1;
  display: block;
}

.jslider-grid[data-number="2"] img:nth-child(2) {
  -ms-grid-column: 2;
  -ms-grid-row: 1;
  grid-column: 2;
  grid-row: 1;
  display: block;
}

.jslider-grid[data-number="3"] img:first-child {
  -ms-grid-column: 1/2;
  -ms-grid-row: 1/4;
  grid-column: 1/2;
  grid-row: 1/4;
}

.jslider-grid[data-number="3"] img:nth-child(2) {
  -ms-grid-column: 2;
  -ms-grid-row: 1;
  grid-column: 2;
  grid-row: 1;
  display: block;
}

.jslider-grid[data-number="3"] img:nth-child(3) {
  -ms-grid-column: 2;
  -ms-grid-row: 2;
  grid-column: 2;
  grid-row: 2;
  display: block;
}

.jslider-grid[data-number="4"] img:first-child {
  -ms-grid-column: 1/2;
  -ms-grid-row: 1/4;
  grid-column: 1/2;
  grid-row: 1/4;
}

.jslider-grid[data-number="4"] img:nth-child(2) {
  -ms-grid-column: 2;
  -ms-grid-row: 1;
  grid-column: 2;
  grid-row: 1;
  display: block;
}

.jslider-grid[data-number="4"] img:nth-child(3) {
  -ms-grid-column: 2;
  -ms-grid-row: 2;
  grid-column: 2;
  grid-row: 2;
  display: block;
}

.jslider-grid[data-number="4"] img:nth-child(4) {
  -ms-grid-column: 2;
  -ms-grid-row: 3;
  grid-column: 2;
  grid-row: 3;
  display: block;
}

.jtabs {
  max-width: 100vw;
  position: relative;
}

.jtabs .jtabs-headers-container {
  display: flex;
  align-items: center;
}

.jtabs .jtabs-headers {
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.jtabs .jtabs-headers > div:not(.jtabs-border) {
  padding: 0.67em;
  padding-left: 1.67em;
  padding-right: 1.67em;
  margin-left: 0.08em;
  margin-right: 0.08em;
  background-color: #f1f1f1;
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
}

.jtabs .jtabs-headers > div.jtabs-selected {
  background-color: #e8e8e8;
  color: #000;
}

.jtabs .jtabs-headers > div > div {
  color: #555;
  width: 100%;
  overflow: hidden;
}

.jtabs .jtabs-headers i {
  display: block;
  margin: auto;
}

.jtabs .jtabs-content {
  box-sizing: border-box;
}

.jtabs .jtabs-content > div {
  display: none;
  box-sizing: border-box;
}

.jtabs .jtabs-content > div.jtabs-selected {
  display: block;
}

.jtabs .jtabs-border {
  position: absolute;
  height: 0.17em;
  background-color: #888;
  transform-origin: left;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: color, left, transform;
  display: none;
}

.jtabs-animation .jtabs-border {
  display: initial;
}

.jtabs .jtabs-controls {
  margin: 0.25em;
  margin-left: 0.83em;
  display: flex;
  min-width: 6.83em;
}

.jtabs .jtabs-controls > div {
  cursor: pointer;
  background-position: center;
  background-repeat: no-repeat;
  width: 2em;
  height: 2em;
  line-height: 2em;
}

.jtabs .jtabs-prev {
  margin-left: 0.83em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='gray' width='18px' height='18px'%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z'/%3E%3C/svg%3E");
}

.jtabs .jtabs-prev.disabled {
  margin-left: 0.83em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='lightgray' width='18px' height='18px'%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z'/%3E%3C/svg%3E");
}

.jtabs .jtabs-next {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='gray' width='18px' height='18px'%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z'/%3E%3C/svg%3E");
}

.jtabs .jtabs-next.disabled {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='lightgray' width='18px' height='18px'%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z'/%3E%3C/svg%3E");
}

.jtabs .jtabs-add {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24' viewBox='0 0 24 24' width='24'%3E%3Cpath d='M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-2 10h-4v4h-2v-4H7v-2h4V7h2v4h4v2z' fill='%23bbbbbb'/%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E");
}

/** Modern skin **/
.jtabs.jtabs-modern .jtabs-headers > div:not(.jtabs-border) {
  padding: 0.33em;
  padding-left: 0.83em;
  padding-right: 0.83em;
  background-color: #fff;
}

.jtabs.jtabs-modern .jtabs-headers > .jtabs-selected {
  color: #000;
}

.jtabs.jtabs-modern .jtabs-headers > .jtabs-selected .material-icons {
  color: #000;
}

.jtabs.jtabs-modern .jtabs-headers {
  background: #EEEEEF !important;
  padding: 0.17em;
  border-radius: 0.33em;
}

.jtabs.jtabs-modern .jtabs-headers .jtabs-border {
  border-color: #EEEEEF !important;
}

.jtabs.jtabs-modern .jtabs-border {
  background-color: rgba(194, 197, 188, 0.884);
}

.jtags {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  padding: 0.08em;
  border: 0.08em solid #ccc;
  position: relative;
}

.jtags.jtags-empty:not(.jtags-focus)::before {
  position: absolute;
  margin: 0.25em;
  color: #ccc;
  content: attr(data-placeholder);
  top: 0em;
  margin-left: 0.5em;
}

.jtags > div {
  padding: 0.42em;
  padding-left: 0.83em;
  padding-right: 1.83em;
  position: relative;
  border-radius: 0.08em;
  margin: 0.17em;
  display: block;
  outline: none;
}

.jtags > div:empty:before {
  content: " ";
  white-space: pre;
}

.jtags > div::after {
  content: "x";
  position: absolute;
  top: 0.5em;
  right: 0.33em;
  width: 1em;
  height: 1em;
  cursor: pointer;
  font-size: 0.92em;
  display: none;
}

.jtags_label {
  background-color: #eeeeee !important;
}

.jtags_label::after {
  display: inline-block !important;
}

.jtags_error::after {
  color: #fff !important;
}

.jtags_error {
  background-color: #d93025 !important;
  color: #fff;
}

.jtoolbar-container {
  border-radius: 0.17em;
  margin-bottom: 0.42em;
  box-shadow: 0 0.33em 0.42em 0 rgba(0, 0, 0, 0.14), 0 0.08em 0.83em 0 rgba(0, 0, 0, 0.12), 0 0.17em 0.33em -0.08em rgba(0, 0, 0, 0.2);
  display: inline-flex !important;
}

.jtoolbar {
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  padding: 0.33em;
  -webkit-user-select: none;
  user-select: none;
  font-size: 1.08em;
}

.jtoolbar-disabled {
  pointer-events: none;
  opacity: 0.4;
}

.jtoolbar-mobile {
  display: flex;
  position: fixed;
  bottom: 0;
  margin: 0;
  left: 0;
  width: 100%;
  background: #f7f7f8;
  z-index: 1;
  box-sizing: border-box;
  box-shadow: 0 -0.08em 0.17em rgba(0, 0, 0, 0.1);
  border-radius: 0em;
}

.jtoolbar > div {
  display: inline-flex;
  align-items: center;
  box-sizing: border-box;
  vertical-align: middle;
  justify-content: space-evenly;
}

.jtoolbar-mobile > div {
  display: flex;
  width: 100%;
}

.jtoolbar .jtoolbar-item {
  text-align: center;
  margin: auto;
  padding: 0.17em;
  padding-left: 0.33em;
  padding-right: 0.33em;
}

.jtoolbar-mobile .jtoolbar-item {
  position: relative;
  flex: 1;
}

.jtoolbar .jtoolbar-divisor {
  width: 0.17em;
  height: 1.5em;
  padding: 0em;
  margin-left: 0.33em;
  margin-right: 0.33em;
  background-color: #ddd;
}

.jtoolbar .jtoolbar-label {
  padding-left: 0.67em;
  padding-right: 0.67em;
}

.jtoolbar-mobile a {
  text-decoration: none;
  display: inline-block;
}

.jtoolbar-mobile i {
  display: inline-flex !important;
  color: #929292;
}

.jtoolbar-mobile span {
  font-size: 0.7em;
  display: block;
  color: #929292;
}

.jtoolbar-mobile .jtoolbar-selected a, .jtoolbar-mobile .jtoolbar-selected i, .jtoolbar-mobile .jtoolbar-selected span {
  color: var(--active-color) !important;
  background-color: transparent;
}

.jtoolbar-item {
  -webkit-user-select: none;
  user-select: none;
}

.jtoolbar-item i {
  display: block;
  color: #333;
}

.jtoolbar-item:hover {
  background-color: #f2f2f2;
}

.jtoolbar .jpicker {
  padding-left: 0em;
  padding-right: 0em;
}

.jtoolbar .jpicker-header {
  height: 2em;
  line-height: 2em;
  padding: 0em;
  padding-right: 1.67em;
  padding-left: 0.67em;
  background-position: top 50% right 0em;
  display: flex;
  align-items: center;
  font-size: 0.9em;
}

.jtoolbar .jpicker-content > div {
  padding: 0.5em;
}

.jtoolbar-active {
  background-color: #eee;
}

.jtoolbar .fa {
  width: 1.5em;
  height: 1.5em;
  display: block;
  line-height: 1.5em;
  font-size: 1.17em;
}

.jtoolbar .material-icons {
  font-size: 1.5em;
  width: 2em;
  height: 2em;
  display: block;
  line-height: 2em;
  transform: rotate(0.03deg);
  text-align: center;
}

.jtoolbar .jtoolbar-arrow {
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black' width='18px' height='18px'%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z'/%3E%3C/svg%3E");
  width: 2em;
  height: 1.33em;
  margin-left: 0.33em;
  border-left: 0.08em solid #f2f2f2;
}

.jtoolbar-floating {
  position: absolute;
  display: none;
  box-shadow: 0 0.33em 0.42em 0 rgba(0, 0, 0, 0.14), 0 0.08em 0.83em 0 rgba(0, 0, 0, 0.12), 0 0.17em 0.33em -0.08em rgba(0, 0, 0, 0.2);
  border-radius: 0.33em;
  background-color: #fff;
  padding: 0.33em;
  z-index: 50;
  text-align: left;
  margin-right: 1.67em;
}

.jtoolbar-floating .jtoolbar-divisor {
  display: none;
}

.jtoolbar-arrow-selected .jtoolbar-floating {
  display: flex;
  flex-wrap: wrap;
}
@charset "UTF-8";
/*!
 * Bootstrap Icons v1.13.1 (https://icons.getbootstrap.com/)
 * Copyright 2019-2024 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/icons/blob/main/LICENSE)
 */
@font-face {
  font-display: block;
  font-family: "bootstrap-icons";
  src: url('bootstrap-icons.154365acf3010d96.woff2?24e3eb84d0bcaf83d77f904c78ac1f47') format("woff2"), url('bootstrap-icons.ac1a99b3d05d8232.woff?24e3eb84d0bcaf83d77f904c78ac1f47') format("woff");
}
.bi::before,
[class^=bi-]::before,
[class*=" bi-"]::before {
  display: inline-block;
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.bi-123::before {
  content: "\f67f";
}

.bi-alarm-fill::before {
  content: "\f101";
}

.bi-alarm::before {
  content: "\f102";
}

.bi-align-bottom::before {
  content: "\f103";
}

.bi-align-center::before {
  content: "\f104";
}

.bi-align-end::before {
  content: "\f105";
}

.bi-align-middle::before {
  content: "\f106";
}

.bi-align-start::before {
  content: "\f107";
}

.bi-align-top::before {
  content: "\f108";
}

.bi-alt::before {
  content: "\f109";
}

.bi-app-indicator::before {
  content: "\f10a";
}

.bi-app::before {
  content: "\f10b";
}

.bi-archive-fill::before {
  content: "\f10c";
}

.bi-archive::before {
  content: "\f10d";
}

.bi-arrow-90deg-down::before {
  content: "\f10e";
}

.bi-arrow-90deg-left::before {
  content: "\f10f";
}

.bi-arrow-90deg-right::before {
  content: "\f110";
}

.bi-arrow-90deg-up::before {
  content: "\f111";
}

.bi-arrow-bar-down::before {
  content: "\f112";
}

.bi-arrow-bar-left::before {
  content: "\f113";
}

.bi-arrow-bar-right::before {
  content: "\f114";
}

.bi-arrow-bar-up::before {
  content: "\f115";
}

.bi-arrow-clockwise::before {
  content: "\f116";
}

.bi-arrow-counterclockwise::before {
  content: "\f117";
}

.bi-arrow-down-circle-fill::before {
  content: "\f118";
}

.bi-arrow-down-circle::before {
  content: "\f119";
}

.bi-arrow-down-left-circle-fill::before {
  content: "\f11a";
}

.bi-arrow-down-left-circle::before {
  content: "\f11b";
}

.bi-arrow-down-left-square-fill::before {
  content: "\f11c";
}

.bi-arrow-down-left-square::before {
  content: "\f11d";
}

.bi-arrow-down-left::before {
  content: "\f11e";
}

.bi-arrow-down-right-circle-fill::before {
  content: "\f11f";
}

.bi-arrow-down-right-circle::before {
  content: "\f120";
}

.bi-arrow-down-right-square-fill::before {
  content: "\f121";
}

.bi-arrow-down-right-square::before {
  content: "\f122";
}

.bi-arrow-down-right::before {
  content: "\f123";
}

.bi-arrow-down-short::before {
  content: "\f124";
}

.bi-arrow-down-square-fill::before {
  content: "\f125";
}

.bi-arrow-down-square::before {
  content: "\f126";
}

.bi-arrow-down-up::before {
  content: "\f127";
}

.bi-arrow-down::before {
  content: "\f128";
}

.bi-arrow-left-circle-fill::before {
  content: "\f129";
}

.bi-arrow-left-circle::before {
  content: "\f12a";
}

.bi-arrow-left-right::before {
  content: "\f12b";
}

.bi-arrow-left-short::before {
  content: "\f12c";
}

.bi-arrow-left-square-fill::before {
  content: "\f12d";
}

.bi-arrow-left-square::before {
  content: "\f12e";
}

.bi-arrow-left::before {
  content: "\f12f";
}

.bi-arrow-repeat::before {
  content: "\f130";
}

.bi-arrow-return-left::before {
  content: "\f131";
}

.bi-arrow-return-right::before {
  content: "\f132";
}

.bi-arrow-right-circle-fill::before {
  content: "\f133";
}

.bi-arrow-right-circle::before {
  content: "\f134";
}

.bi-arrow-right-short::before {
  content: "\f135";
}

.bi-arrow-right-square-fill::before {
  content: "\f136";
}

.bi-arrow-right-square::before {
  content: "\f137";
}

.bi-arrow-right::before {
  content: "\f138";
}

.bi-arrow-up-circle-fill::before {
  content: "\f139";
}

.bi-arrow-up-circle::before {
  content: "\f13a";
}

.bi-arrow-up-left-circle-fill::before {
  content: "\f13b";
}

.bi-arrow-up-left-circle::before {
  content: "\f13c";
}

.bi-arrow-up-left-square-fill::before {
  content: "\f13d";
}

.bi-arrow-up-left-square::before {
  content: "\f13e";
}

.bi-arrow-up-left::before {
  content: "\f13f";
}

.bi-arrow-up-right-circle-fill::before {
  content: "\f140";
}

.bi-arrow-up-right-circle::before {
  content: "\f141";
}

.bi-arrow-up-right-square-fill::before {
  content: "\f142";
}

.bi-arrow-up-right-square::before {
  content: "\f143";
}

.bi-arrow-up-right::before {
  content: "\f144";
}

.bi-arrow-up-short::before {
  content: "\f145";
}

.bi-arrow-up-square-fill::before {
  content: "\f146";
}

.bi-arrow-up-square::before {
  content: "\f147";
}

.bi-arrow-up::before {
  content: "\f148";
}

.bi-arrows-angle-contract::before {
  content: "\f149";
}

.bi-arrows-angle-expand::before {
  content: "\f14a";
}

.bi-arrows-collapse::before {
  content: "\f14b";
}

.bi-arrows-expand::before {
  content: "\f14c";
}

.bi-arrows-fullscreen::before {
  content: "\f14d";
}

.bi-arrows-move::before {
  content: "\f14e";
}

.bi-aspect-ratio-fill::before {
  content: "\f14f";
}

.bi-aspect-ratio::before {
  content: "\f150";
}

.bi-asterisk::before {
  content: "\f151";
}

.bi-at::before {
  content: "\f152";
}

.bi-award-fill::before {
  content: "\f153";
}

.bi-award::before {
  content: "\f154";
}

.bi-back::before {
  content: "\f155";
}

.bi-backspace-fill::before {
  content: "\f156";
}

.bi-backspace-reverse-fill::before {
  content: "\f157";
}

.bi-backspace-reverse::before {
  content: "\f158";
}

.bi-backspace::before {
  content: "\f159";
}

.bi-badge-3d-fill::before {
  content: "\f15a";
}

.bi-badge-3d::before {
  content: "\f15b";
}

.bi-badge-4k-fill::before {
  content: "\f15c";
}

.bi-badge-4k::before {
  content: "\f15d";
}

.bi-badge-8k-fill::before {
  content: "\f15e";
}

.bi-badge-8k::before {
  content: "\f15f";
}

.bi-badge-ad-fill::before {
  content: "\f160";
}

.bi-badge-ad::before {
  content: "\f161";
}

.bi-badge-ar-fill::before {
  content: "\f162";
}

.bi-badge-ar::before {
  content: "\f163";
}

.bi-badge-cc-fill::before {
  content: "\f164";
}

.bi-badge-cc::before {
  content: "\f165";
}

.bi-badge-hd-fill::before {
  content: "\f166";
}

.bi-badge-hd::before {
  content: "\f167";
}

.bi-badge-tm-fill::before {
  content: "\f168";
}

.bi-badge-tm::before {
  content: "\f169";
}

.bi-badge-vo-fill::before {
  content: "\f16a";
}

.bi-badge-vo::before {
  content: "\f16b";
}

.bi-badge-vr-fill::before {
  content: "\f16c";
}

.bi-badge-vr::before {
  content: "\f16d";
}

.bi-badge-wc-fill::before {
  content: "\f16e";
}

.bi-badge-wc::before {
  content: "\f16f";
}

.bi-bag-check-fill::before {
  content: "\f170";
}

.bi-bag-check::before {
  content: "\f171";
}

.bi-bag-dash-fill::before {
  content: "\f172";
}

.bi-bag-dash::before {
  content: "\f173";
}

.bi-bag-fill::before {
  content: "\f174";
}

.bi-bag-plus-fill::before {
  content: "\f175";
}

.bi-bag-plus::before {
  content: "\f176";
}

.bi-bag-x-fill::before {
  content: "\f177";
}

.bi-bag-x::before {
  content: "\f178";
}

.bi-bag::before {
  content: "\f179";
}

.bi-bar-chart-fill::before {
  content: "\f17a";
}

.bi-bar-chart-line-fill::before {
  content: "\f17b";
}

.bi-bar-chart-line::before {
  content: "\f17c";
}

.bi-bar-chart-steps::before {
  content: "\f17d";
}

.bi-bar-chart::before {
  content: "\f17e";
}

.bi-basket-fill::before {
  content: "\f17f";
}

.bi-basket::before {
  content: "\f180";
}

.bi-basket2-fill::before {
  content: "\f181";
}

.bi-basket2::before {
  content: "\f182";
}

.bi-basket3-fill::before {
  content: "\f183";
}

.bi-basket3::before {
  content: "\f184";
}

.bi-battery-charging::before {
  content: "\f185";
}

.bi-battery-full::before {
  content: "\f186";
}

.bi-battery-half::before {
  content: "\f187";
}

.bi-battery::before {
  content: "\f188";
}

.bi-bell-fill::before {
  content: "\f189";
}

.bi-bell::before {
  content: "\f18a";
}

.bi-bezier::before {
  content: "\f18b";
}

.bi-bezier2::before {
  content: "\f18c";
}

.bi-bicycle::before {
  content: "\f18d";
}

.bi-binoculars-fill::before {
  content: "\f18e";
}

.bi-binoculars::before {
  content: "\f18f";
}

.bi-blockquote-left::before {
  content: "\f190";
}

.bi-blockquote-right::before {
  content: "\f191";
}

.bi-book-fill::before {
  content: "\f192";
}

.bi-book-half::before {
  content: "\f193";
}

.bi-book::before {
  content: "\f194";
}

.bi-bookmark-check-fill::before {
  content: "\f195";
}

.bi-bookmark-check::before {
  content: "\f196";
}

.bi-bookmark-dash-fill::before {
  content: "\f197";
}

.bi-bookmark-dash::before {
  content: "\f198";
}

.bi-bookmark-fill::before {
  content: "\f199";
}

.bi-bookmark-heart-fill::before {
  content: "\f19a";
}

.bi-bookmark-heart::before {
  content: "\f19b";
}

.bi-bookmark-plus-fill::before {
  content: "\f19c";
}

.bi-bookmark-plus::before {
  content: "\f19d";
}

.bi-bookmark-star-fill::before {
  content: "\f19e";
}

.bi-bookmark-star::before {
  content: "\f19f";
}

.bi-bookmark-x-fill::before {
  content: "\f1a0";
}

.bi-bookmark-x::before {
  content: "\f1a1";
}

.bi-bookmark::before {
  content: "\f1a2";
}

.bi-bookmarks-fill::before {
  content: "\f1a3";
}

.bi-bookmarks::before {
  content: "\f1a4";
}

.bi-bookshelf::before {
  content: "\f1a5";
}

.bi-bootstrap-fill::before {
  content: "\f1a6";
}

.bi-bootstrap-reboot::before {
  content: "\f1a7";
}

.bi-bootstrap::before {
  content: "\f1a8";
}

.bi-border-all::before {
  content: "\f1a9";
}

.bi-border-bottom::before {
  content: "\f1aa";
}

.bi-border-center::before {
  content: "\f1ab";
}

.bi-border-inner::before {
  content: "\f1ac";
}

.bi-border-left::before {
  content: "\f1ad";
}

.bi-border-middle::before {
  content: "\f1ae";
}

.bi-border-outer::before {
  content: "\f1af";
}

.bi-border-right::before {
  content: "\f1b0";
}

.bi-border-style::before {
  content: "\f1b1";
}

.bi-border-top::before {
  content: "\f1b2";
}

.bi-border-width::before {
  content: "\f1b3";
}

.bi-border::before {
  content: "\f1b4";
}

.bi-bounding-box-circles::before {
  content: "\f1b5";
}

.bi-bounding-box::before {
  content: "\f1b6";
}

.bi-box-arrow-down-left::before {
  content: "\f1b7";
}

.bi-box-arrow-down-right::before {
  content: "\f1b8";
}

.bi-box-arrow-down::before {
  content: "\f1b9";
}

.bi-box-arrow-in-down-left::before {
  content: "\f1ba";
}

.bi-box-arrow-in-down-right::before {
  content: "\f1bb";
}

.bi-box-arrow-in-down::before {
  content: "\f1bc";
}

.bi-box-arrow-in-left::before {
  content: "\f1bd";
}

.bi-box-arrow-in-right::before {
  content: "\f1be";
}

.bi-box-arrow-in-up-left::before {
  content: "\f1bf";
}

.bi-box-arrow-in-up-right::before {
  content: "\f1c0";
}

.bi-box-arrow-in-up::before {
  content: "\f1c1";
}

.bi-box-arrow-left::before {
  content: "\f1c2";
}

.bi-box-arrow-right::before {
  content: "\f1c3";
}

.bi-box-arrow-up-left::before {
  content: "\f1c4";
}

.bi-box-arrow-up-right::before {
  content: "\f1c5";
}

.bi-box-arrow-up::before {
  content: "\f1c6";
}

.bi-box-seam::before {
  content: "\f1c7";
}

.bi-box::before {
  content: "\f1c8";
}

.bi-braces::before {
  content: "\f1c9";
}

.bi-bricks::before {
  content: "\f1ca";
}

.bi-briefcase-fill::before {
  content: "\f1cb";
}

.bi-briefcase::before {
  content: "\f1cc";
}

.bi-brightness-alt-high-fill::before {
  content: "\f1cd";
}

.bi-brightness-alt-high::before {
  content: "\f1ce";
}

.bi-brightness-alt-low-fill::before {
  content: "\f1cf";
}

.bi-brightness-alt-low::before {
  content: "\f1d0";
}

.bi-brightness-high-fill::before {
  content: "\f1d1";
}

.bi-brightness-high::before {
  content: "\f1d2";
}

.bi-brightness-low-fill::before {
  content: "\f1d3";
}

.bi-brightness-low::before {
  content: "\f1d4";
}

.bi-broadcast-pin::before {
  content: "\f1d5";
}

.bi-broadcast::before {
  content: "\f1d6";
}

.bi-brush-fill::before {
  content: "\f1d7";
}

.bi-brush::before {
  content: "\f1d8";
}

.bi-bucket-fill::before {
  content: "\f1d9";
}

.bi-bucket::before {
  content: "\f1da";
}

.bi-bug-fill::before {
  content: "\f1db";
}

.bi-bug::before {
  content: "\f1dc";
}

.bi-building::before {
  content: "\f1dd";
}

.bi-bullseye::before {
  content: "\f1de";
}

.bi-calculator-fill::before {
  content: "\f1df";
}

.bi-calculator::before {
  content: "\f1e0";
}

.bi-calendar-check-fill::before {
  content: "\f1e1";
}

.bi-calendar-check::before {
  content: "\f1e2";
}

.bi-calendar-date-fill::before {
  content: "\f1e3";
}

.bi-calendar-date::before {
  content: "\f1e4";
}

.bi-calendar-day-fill::before {
  content: "\f1e5";
}

.bi-calendar-day::before {
  content: "\f1e6";
}

.bi-calendar-event-fill::before {
  content: "\f1e7";
}

.bi-calendar-event::before {
  content: "\f1e8";
}

.bi-calendar-fill::before {
  content: "\f1e9";
}

.bi-calendar-minus-fill::before {
  content: "\f1ea";
}

.bi-calendar-minus::before {
  content: "\f1eb";
}

.bi-calendar-month-fill::before {
  content: "\f1ec";
}

.bi-calendar-month::before {
  content: "\f1ed";
}

.bi-calendar-plus-fill::before {
  content: "\f1ee";
}

.bi-calendar-plus::before {
  content: "\f1ef";
}

.bi-calendar-range-fill::before {
  content: "\f1f0";
}

.bi-calendar-range::before {
  content: "\f1f1";
}

.bi-calendar-week-fill::before {
  content: "\f1f2";
}

.bi-calendar-week::before {
  content: "\f1f3";
}

.bi-calendar-x-fill::before {
  content: "\f1f4";
}

.bi-calendar-x::before {
  content: "\f1f5";
}

.bi-calendar::before {
  content: "\f1f6";
}

.bi-calendar2-check-fill::before {
  content: "\f1f7";
}

.bi-calendar2-check::before {
  content: "\f1f8";
}

.bi-calendar2-date-fill::before {
  content: "\f1f9";
}

.bi-calendar2-date::before {
  content: "\f1fa";
}

.bi-calendar2-day-fill::before {
  content: "\f1fb";
}

.bi-calendar2-day::before {
  content: "\f1fc";
}

.bi-calendar2-event-fill::before {
  content: "\f1fd";
}

.bi-calendar2-event::before {
  content: "\f1fe";
}

.bi-calendar2-fill::before {
  content: "\f1ff";
}

.bi-calendar2-minus-fill::before {
  content: "\f200";
}

.bi-calendar2-minus::before {
  content: "\f201";
}

.bi-calendar2-month-fill::before {
  content: "\f202";
}

.bi-calendar2-month::before {
  content: "\f203";
}

.bi-calendar2-plus-fill::before {
  content: "\f204";
}

.bi-calendar2-plus::before {
  content: "\f205";
}

.bi-calendar2-range-fill::before {
  content: "\f206";
}

.bi-calendar2-range::before {
  content: "\f207";
}

.bi-calendar2-week-fill::before {
  content: "\f208";
}

.bi-calendar2-week::before {
  content: "\f209";
}

.bi-calendar2-x-fill::before {
  content: "\f20a";
}

.bi-calendar2-x::before {
  content: "\f20b";
}

.bi-calendar2::before {
  content: "\f20c";
}

.bi-calendar3-event-fill::before {
  content: "\f20d";
}

.bi-calendar3-event::before {
  content: "\f20e";
}

.bi-calendar3-fill::before {
  content: "\f20f";
}

.bi-calendar3-range-fill::before {
  content: "\f210";
}

.bi-calendar3-range::before {
  content: "\f211";
}

.bi-calendar3-week-fill::before {
  content: "\f212";
}

.bi-calendar3-week::before {
  content: "\f213";
}

.bi-calendar3::before {
  content: "\f214";
}

.bi-calendar4-event::before {
  content: "\f215";
}

.bi-calendar4-range::before {
  content: "\f216";
}

.bi-calendar4-week::before {
  content: "\f217";
}

.bi-calendar4::before {
  content: "\f218";
}

.bi-camera-fill::before {
  content: "\f219";
}

.bi-camera-reels-fill::before {
  content: "\f21a";
}

.bi-camera-reels::before {
  content: "\f21b";
}

.bi-camera-video-fill::before {
  content: "\f21c";
}

.bi-camera-video-off-fill::before {
  content: "\f21d";
}

.bi-camera-video-off::before {
  content: "\f21e";
}

.bi-camera-video::before {
  content: "\f21f";
}

.bi-camera::before {
  content: "\f220";
}

.bi-camera2::before {
  content: "\f221";
}

.bi-capslock-fill::before {
  content: "\f222";
}

.bi-capslock::before {
  content: "\f223";
}

.bi-card-checklist::before {
  content: "\f224";
}

.bi-card-heading::before {
  content: "\f225";
}

.bi-card-image::before {
  content: "\f226";
}

.bi-card-list::before {
  content: "\f227";
}

.bi-card-text::before {
  content: "\f228";
}

.bi-caret-down-fill::before {
  content: "\f229";
}

.bi-caret-down-square-fill::before {
  content: "\f22a";
}

.bi-caret-down-square::before {
  content: "\f22b";
}

.bi-caret-down::before {
  content: "\f22c";
}

.bi-caret-left-fill::before {
  content: "\f22d";
}

.bi-caret-left-square-fill::before {
  content: "\f22e";
}

.bi-caret-left-square::before {
  content: "\f22f";
}

.bi-caret-left::before {
  content: "\f230";
}

.bi-caret-right-fill::before {
  content: "\f231";
}

.bi-caret-right-square-fill::before {
  content: "\f232";
}

.bi-caret-right-square::before {
  content: "\f233";
}

.bi-caret-right::before {
  content: "\f234";
}

.bi-caret-up-fill::before {
  content: "\f235";
}

.bi-caret-up-square-fill::before {
  content: "\f236";
}

.bi-caret-up-square::before {
  content: "\f237";
}

.bi-caret-up::before {
  content: "\f238";
}

.bi-cart-check-fill::before {
  content: "\f239";
}

.bi-cart-check::before {
  content: "\f23a";
}

.bi-cart-dash-fill::before {
  content: "\f23b";
}

.bi-cart-dash::before {
  content: "\f23c";
}

.bi-cart-fill::before {
  content: "\f23d";
}

.bi-cart-plus-fill::before {
  content: "\f23e";
}

.bi-cart-plus::before {
  content: "\f23f";
}

.bi-cart-x-fill::before {
  content: "\f240";
}

.bi-cart-x::before {
  content: "\f241";
}

.bi-cart::before {
  content: "\f242";
}

.bi-cart2::before {
  content: "\f243";
}

.bi-cart3::before {
  content: "\f244";
}

.bi-cart4::before {
  content: "\f245";
}

.bi-cash-stack::before {
  content: "\f246";
}

.bi-cash::before {
  content: "\f247";
}

.bi-cast::before {
  content: "\f248";
}

.bi-chat-dots-fill::before {
  content: "\f249";
}

.bi-chat-dots::before {
  content: "\f24a";
}

.bi-chat-fill::before {
  content: "\f24b";
}

.bi-chat-left-dots-fill::before {
  content: "\f24c";
}

.bi-chat-left-dots::before {
  content: "\f24d";
}

.bi-chat-left-fill::before {
  content: "\f24e";
}

.bi-chat-left-quote-fill::before {
  content: "\f24f";
}

.bi-chat-left-quote::before {
  content: "\f250";
}

.bi-chat-left-text-fill::before {
  content: "\f251";
}

.bi-chat-left-text::before {
  content: "\f252";
}

.bi-chat-left::before {
  content: "\f253";
}

.bi-chat-quote-fill::before {
  content: "\f254";
}

.bi-chat-quote::before {
  content: "\f255";
}

.bi-chat-right-dots-fill::before {
  content: "\f256";
}

.bi-chat-right-dots::before {
  content: "\f257";
}

.bi-chat-right-fill::before {
  content: "\f258";
}

.bi-chat-right-quote-fill::before {
  content: "\f259";
}

.bi-chat-right-quote::before {
  content: "\f25a";
}

.bi-chat-right-text-fill::before {
  content: "\f25b";
}

.bi-chat-right-text::before {
  content: "\f25c";
}

.bi-chat-right::before {
  content: "\f25d";
}

.bi-chat-square-dots-fill::before {
  content: "\f25e";
}

.bi-chat-square-dots::before {
  content: "\f25f";
}

.bi-chat-square-fill::before {
  content: "\f260";
}

.bi-chat-square-quote-fill::before {
  content: "\f261";
}

.bi-chat-square-quote::before {
  content: "\f262";
}

.bi-chat-square-text-fill::before {
  content: "\f263";
}

.bi-chat-square-text::before {
  content: "\f264";
}

.bi-chat-square::before {
  content: "\f265";
}

.bi-chat-text-fill::before {
  content: "\f266";
}

.bi-chat-text::before {
  content: "\f267";
}

.bi-chat::before {
  content: "\f268";
}

.bi-check-all::before {
  content: "\f269";
}

.bi-check-circle-fill::before {
  content: "\f26a";
}

.bi-check-circle::before {
  content: "\f26b";
}

.bi-check-square-fill::before {
  content: "\f26c";
}

.bi-check-square::before {
  content: "\f26d";
}

.bi-check::before {
  content: "\f26e";
}

.bi-check2-all::before {
  content: "\f26f";
}

.bi-check2-circle::before {
  content: "\f270";
}

.bi-check2-square::before {
  content: "\f271";
}

.bi-check2::before {
  content: "\f272";
}

.bi-chevron-bar-contract::before {
  content: "\f273";
}

.bi-chevron-bar-down::before {
  content: "\f274";
}

.bi-chevron-bar-expand::before {
  content: "\f275";
}

.bi-chevron-bar-left::before {
  content: "\f276";
}

.bi-chevron-bar-right::before {
  content: "\f277";
}

.bi-chevron-bar-up::before {
  content: "\f278";
}

.bi-chevron-compact-down::before {
  content: "\f279";
}

.bi-chevron-compact-left::before {
  content: "\f27a";
}

.bi-chevron-compact-right::before {
  content: "\f27b";
}

.bi-chevron-compact-up::before {
  content: "\f27c";
}

.bi-chevron-contract::before {
  content: "\f27d";
}

.bi-chevron-double-down::before {
  content: "\f27e";
}

.bi-chevron-double-left::before {
  content: "\f27f";
}

.bi-chevron-double-right::before {
  content: "\f280";
}

.bi-chevron-double-up::before {
  content: "\f281";
}

.bi-chevron-down::before {
  content: "\f282";
}

.bi-chevron-expand::before {
  content: "\f283";
}

.bi-chevron-left::before {
  content: "\f284";
}

.bi-chevron-right::before {
  content: "\f285";
}

.bi-chevron-up::before {
  content: "\f286";
}

.bi-circle-fill::before {
  content: "\f287";
}

.bi-circle-half::before {
  content: "\f288";
}

.bi-circle-square::before {
  content: "\f289";
}

.bi-circle::before {
  content: "\f28a";
}

.bi-clipboard-check::before {
  content: "\f28b";
}

.bi-clipboard-data::before {
  content: "\f28c";
}

.bi-clipboard-minus::before {
  content: "\f28d";
}

.bi-clipboard-plus::before {
  content: "\f28e";
}

.bi-clipboard-x::before {
  content: "\f28f";
}

.bi-clipboard::before {
  content: "\f290";
}

.bi-clock-fill::before {
  content: "\f291";
}

.bi-clock-history::before {
  content: "\f292";
}

.bi-clock::before {
  content: "\f293";
}

.bi-cloud-arrow-down-fill::before {
  content: "\f294";
}

.bi-cloud-arrow-down::before {
  content: "\f295";
}

.bi-cloud-arrow-up-fill::before {
  content: "\f296";
}

.bi-cloud-arrow-up::before {
  content: "\f297";
}

.bi-cloud-check-fill::before {
  content: "\f298";
}

.bi-cloud-check::before {
  content: "\f299";
}

.bi-cloud-download-fill::before {
  content: "\f29a";
}

.bi-cloud-download::before {
  content: "\f29b";
}

.bi-cloud-drizzle-fill::before {
  content: "\f29c";
}

.bi-cloud-drizzle::before {
  content: "\f29d";
}

.bi-cloud-fill::before {
  content: "\f29e";
}

.bi-cloud-fog-fill::before {
  content: "\f29f";
}

.bi-cloud-fog::before {
  content: "\f2a0";
}

.bi-cloud-fog2-fill::before {
  content: "\f2a1";
}

.bi-cloud-fog2::before {
  content: "\f2a2";
}

.bi-cloud-hail-fill::before {
  content: "\f2a3";
}

.bi-cloud-hail::before {
  content: "\f2a4";
}

.bi-cloud-haze-fill::before {
  content: "\f2a6";
}

.bi-cloud-haze::before {
  content: "\f2a7";
}

.bi-cloud-haze2-fill::before {
  content: "\f2a8";
}

.bi-cloud-lightning-fill::before {
  content: "\f2a9";
}

.bi-cloud-lightning-rain-fill::before {
  content: "\f2aa";
}

.bi-cloud-lightning-rain::before {
  content: "\f2ab";
}

.bi-cloud-lightning::before {
  content: "\f2ac";
}

.bi-cloud-minus-fill::before {
  content: "\f2ad";
}

.bi-cloud-minus::before {
  content: "\f2ae";
}

.bi-cloud-moon-fill::before {
  content: "\f2af";
}

.bi-cloud-moon::before {
  content: "\f2b0";
}

.bi-cloud-plus-fill::before {
  content: "\f2b1";
}

.bi-cloud-plus::before {
  content: "\f2b2";
}

.bi-cloud-rain-fill::before {
  content: "\f2b3";
}

.bi-cloud-rain-heavy-fill::before {
  content: "\f2b4";
}

.bi-cloud-rain-heavy::before {
  content: "\f2b5";
}

.bi-cloud-rain::before {
  content: "\f2b6";
}

.bi-cloud-slash-fill::before {
  content: "\f2b7";
}

.bi-cloud-slash::before {
  content: "\f2b8";
}

.bi-cloud-sleet-fill::before {
  content: "\f2b9";
}

.bi-cloud-sleet::before {
  content: "\f2ba";
}

.bi-cloud-snow-fill::before {
  content: "\f2bb";
}

.bi-cloud-snow::before {
  content: "\f2bc";
}

.bi-cloud-sun-fill::before {
  content: "\f2bd";
}

.bi-cloud-sun::before {
  content: "\f2be";
}

.bi-cloud-upload-fill::before {
  content: "\f2bf";
}

.bi-cloud-upload::before {
  content: "\f2c0";
}

.bi-cloud::before {
  content: "\f2c1";
}

.bi-clouds-fill::before {
  content: "\f2c2";
}

.bi-clouds::before {
  content: "\f2c3";
}

.bi-cloudy-fill::before {
  content: "\f2c4";
}

.bi-cloudy::before {
  content: "\f2c5";
}

.bi-code-slash::before {
  content: "\f2c6";
}

.bi-code-square::before {
  content: "\f2c7";
}

.bi-code::before {
  content: "\f2c8";
}

.bi-collection-fill::before {
  content: "\f2c9";
}

.bi-collection-play-fill::before {
  content: "\f2ca";
}

.bi-collection-play::before {
  content: "\f2cb";
}

.bi-collection::before {
  content: "\f2cc";
}

.bi-columns-gap::before {
  content: "\f2cd";
}

.bi-columns::before {
  content: "\f2ce";
}

.bi-command::before {
  content: "\f2cf";
}

.bi-compass-fill::before {
  content: "\f2d0";
}

.bi-compass::before {
  content: "\f2d1";
}

.bi-cone-striped::before {
  content: "\f2d2";
}

.bi-cone::before {
  content: "\f2d3";
}

.bi-controller::before {
  content: "\f2d4";
}

.bi-cpu-fill::before {
  content: "\f2d5";
}

.bi-cpu::before {
  content: "\f2d6";
}

.bi-credit-card-2-back-fill::before {
  content: "\f2d7";
}

.bi-credit-card-2-back::before {
  content: "\f2d8";
}

.bi-credit-card-2-front-fill::before {
  content: "\f2d9";
}

.bi-credit-card-2-front::before {
  content: "\f2da";
}

.bi-credit-card-fill::before {
  content: "\f2db";
}

.bi-credit-card::before {
  content: "\f2dc";
}

.bi-crop::before {
  content: "\f2dd";
}

.bi-cup-fill::before {
  content: "\f2de";
}

.bi-cup-straw::before {
  content: "\f2df";
}

.bi-cup::before {
  content: "\f2e0";
}

.bi-cursor-fill::before {
  content: "\f2e1";
}

.bi-cursor-text::before {
  content: "\f2e2";
}

.bi-cursor::before {
  content: "\f2e3";
}

.bi-dash-circle-dotted::before {
  content: "\f2e4";
}

.bi-dash-circle-fill::before {
  content: "\f2e5";
}

.bi-dash-circle::before {
  content: "\f2e6";
}

.bi-dash-square-dotted::before {
  content: "\f2e7";
}

.bi-dash-square-fill::before {
  content: "\f2e8";
}

.bi-dash-square::before {
  content: "\f2e9";
}

.bi-dash::before {
  content: "\f2ea";
}

.bi-diagram-2-fill::before {
  content: "\f2eb";
}

.bi-diagram-2::before {
  content: "\f2ec";
}

.bi-diagram-3-fill::before {
  content: "\f2ed";
}

.bi-diagram-3::before {
  content: "\f2ee";
}

.bi-diamond-fill::before {
  content: "\f2ef";
}

.bi-diamond-half::before {
  content: "\f2f0";
}

.bi-diamond::before {
  content: "\f2f1";
}

.bi-dice-1-fill::before {
  content: "\f2f2";
}

.bi-dice-1::before {
  content: "\f2f3";
}

.bi-dice-2-fill::before {
  content: "\f2f4";
}

.bi-dice-2::before {
  content: "\f2f5";
}

.bi-dice-3-fill::before {
  content: "\f2f6";
}

.bi-dice-3::before {
  content: "\f2f7";
}

.bi-dice-4-fill::before {
  content: "\f2f8";
}

.bi-dice-4::before {
  content: "\f2f9";
}

.bi-dice-5-fill::before {
  content: "\f2fa";
}

.bi-dice-5::before {
  content: "\f2fb";
}

.bi-dice-6-fill::before {
  content: "\f2fc";
}

.bi-dice-6::before {
  content: "\f2fd";
}

.bi-disc-fill::before {
  content: "\f2fe";
}

.bi-disc::before {
  content: "\f2ff";
}

.bi-discord::before {
  content: "\f300";
}

.bi-display-fill::before {
  content: "\f301";
}

.bi-display::before {
  content: "\f302";
}

.bi-distribute-horizontal::before {
  content: "\f303";
}

.bi-distribute-vertical::before {
  content: "\f304";
}

.bi-door-closed-fill::before {
  content: "\f305";
}

.bi-door-closed::before {
  content: "\f306";
}

.bi-door-open-fill::before {
  content: "\f307";
}

.bi-door-open::before {
  content: "\f308";
}

.bi-dot::before {
  content: "\f309";
}

.bi-download::before {
  content: "\f30a";
}

.bi-droplet-fill::before {
  content: "\f30b";
}

.bi-droplet-half::before {
  content: "\f30c";
}

.bi-droplet::before {
  content: "\f30d";
}

.bi-earbuds::before {
  content: "\f30e";
}

.bi-easel-fill::before {
  content: "\f30f";
}

.bi-easel::before {
  content: "\f310";
}

.bi-egg-fill::before {
  content: "\f311";
}

.bi-egg-fried::before {
  content: "\f312";
}

.bi-egg::before {
  content: "\f313";
}

.bi-eject-fill::before {
  content: "\f314";
}

.bi-eject::before {
  content: "\f315";
}

.bi-emoji-angry-fill::before {
  content: "\f316";
}

.bi-emoji-angry::before {
  content: "\f317";
}

.bi-emoji-dizzy-fill::before {
  content: "\f318";
}

.bi-emoji-dizzy::before {
  content: "\f319";
}

.bi-emoji-expressionless-fill::before {
  content: "\f31a";
}

.bi-emoji-expressionless::before {
  content: "\f31b";
}

.bi-emoji-frown-fill::before {
  content: "\f31c";
}

.bi-emoji-frown::before {
  content: "\f31d";
}

.bi-emoji-heart-eyes-fill::before {
  content: "\f31e";
}

.bi-emoji-heart-eyes::before {
  content: "\f31f";
}

.bi-emoji-laughing-fill::before {
  content: "\f320";
}

.bi-emoji-laughing::before {
  content: "\f321";
}

.bi-emoji-neutral-fill::before {
  content: "\f322";
}

.bi-emoji-neutral::before {
  content: "\f323";
}

.bi-emoji-smile-fill::before {
  content: "\f324";
}

.bi-emoji-smile-upside-down-fill::before {
  content: "\f325";
}

.bi-emoji-smile-upside-down::before {
  content: "\f326";
}

.bi-emoji-smile::before {
  content: "\f327";
}

.bi-emoji-sunglasses-fill::before {
  content: "\f328";
}

.bi-emoji-sunglasses::before {
  content: "\f329";
}

.bi-emoji-wink-fill::before {
  content: "\f32a";
}

.bi-emoji-wink::before {
  content: "\f32b";
}

.bi-envelope-fill::before {
  content: "\f32c";
}

.bi-envelope-open-fill::before {
  content: "\f32d";
}

.bi-envelope-open::before {
  content: "\f32e";
}

.bi-envelope::before {
  content: "\f32f";
}

.bi-eraser-fill::before {
  content: "\f330";
}

.bi-eraser::before {
  content: "\f331";
}

.bi-exclamation-circle-fill::before {
  content: "\f332";
}

.bi-exclamation-circle::before {
  content: "\f333";
}

.bi-exclamation-diamond-fill::before {
  content: "\f334";
}

.bi-exclamation-diamond::before {
  content: "\f335";
}

.bi-exclamation-octagon-fill::before {
  content: "\f336";
}

.bi-exclamation-octagon::before {
  content: "\f337";
}

.bi-exclamation-square-fill::before {
  content: "\f338";
}

.bi-exclamation-square::before {
  content: "\f339";
}

.bi-exclamation-triangle-fill::before {
  content: "\f33a";
}

.bi-exclamation-triangle::before {
  content: "\f33b";
}

.bi-exclamation::before {
  content: "\f33c";
}

.bi-exclude::before {
  content: "\f33d";
}

.bi-eye-fill::before {
  content: "\f33e";
}

.bi-eye-slash-fill::before {
  content: "\f33f";
}

.bi-eye-slash::before {
  content: "\f340";
}

.bi-eye::before {
  content: "\f341";
}

.bi-eyedropper::before {
  content: "\f342";
}

.bi-eyeglasses::before {
  content: "\f343";
}

.bi-facebook::before {
  content: "\f344";
}

.bi-file-arrow-down-fill::before {
  content: "\f345";
}

.bi-file-arrow-down::before {
  content: "\f346";
}

.bi-file-arrow-up-fill::before {
  content: "\f347";
}

.bi-file-arrow-up::before {
  content: "\f348";
}

.bi-file-bar-graph-fill::before {
  content: "\f349";
}

.bi-file-bar-graph::before {
  content: "\f34a";
}

.bi-file-binary-fill::before {
  content: "\f34b";
}

.bi-file-binary::before {
  content: "\f34c";
}

.bi-file-break-fill::before {
  content: "\f34d";
}

.bi-file-break::before {
  content: "\f34e";
}

.bi-file-check-fill::before {
  content: "\f34f";
}

.bi-file-check::before {
  content: "\f350";
}

.bi-file-code-fill::before {
  content: "\f351";
}

.bi-file-code::before {
  content: "\f352";
}

.bi-file-diff-fill::before {
  content: "\f353";
}

.bi-file-diff::before {
  content: "\f354";
}

.bi-file-earmark-arrow-down-fill::before {
  content: "\f355";
}

.bi-file-earmark-arrow-down::before {
  content: "\f356";
}

.bi-file-earmark-arrow-up-fill::before {
  content: "\f357";
}

.bi-file-earmark-arrow-up::before {
  content: "\f358";
}

.bi-file-earmark-bar-graph-fill::before {
  content: "\f359";
}

.bi-file-earmark-bar-graph::before {
  content: "\f35a";
}

.bi-file-earmark-binary-fill::before {
  content: "\f35b";
}

.bi-file-earmark-binary::before {
  content: "\f35c";
}

.bi-file-earmark-break-fill::before {
  content: "\f35d";
}

.bi-file-earmark-break::before {
  content: "\f35e";
}

.bi-file-earmark-check-fill::before {
  content: "\f35f";
}

.bi-file-earmark-check::before {
  content: "\f360";
}

.bi-file-earmark-code-fill::before {
  content: "\f361";
}

.bi-file-earmark-code::before {
  content: "\f362";
}

.bi-file-earmark-diff-fill::before {
  content: "\f363";
}

.bi-file-earmark-diff::before {
  content: "\f364";
}

.bi-file-earmark-easel-fill::before {
  content: "\f365";
}

.bi-file-earmark-easel::before {
  content: "\f366";
}

.bi-file-earmark-excel-fill::before {
  content: "\f367";
}

.bi-file-earmark-excel::before {
  content: "\f368";
}

.bi-file-earmark-fill::before {
  content: "\f369";
}

.bi-file-earmark-font-fill::before {
  content: "\f36a";
}

.bi-file-earmark-font::before {
  content: "\f36b";
}

.bi-file-earmark-image-fill::before {
  content: "\f36c";
}

.bi-file-earmark-image::before {
  content: "\f36d";
}

.bi-file-earmark-lock-fill::before {
  content: "\f36e";
}

.bi-file-earmark-lock::before {
  content: "\f36f";
}

.bi-file-earmark-lock2-fill::before {
  content: "\f370";
}

.bi-file-earmark-lock2::before {
  content: "\f371";
}

.bi-file-earmark-medical-fill::before {
  content: "\f372";
}

.bi-file-earmark-medical::before {
  content: "\f373";
}

.bi-file-earmark-minus-fill::before {
  content: "\f374";
}

.bi-file-earmark-minus::before {
  content: "\f375";
}

.bi-file-earmark-music-fill::before {
  content: "\f376";
}

.bi-file-earmark-music::before {
  content: "\f377";
}

.bi-file-earmark-person-fill::before {
  content: "\f378";
}

.bi-file-earmark-person::before {
  content: "\f379";
}

.bi-file-earmark-play-fill::before {
  content: "\f37a";
}

.bi-file-earmark-play::before {
  content: "\f37b";
}

.bi-file-earmark-plus-fill::before {
  content: "\f37c";
}

.bi-file-earmark-plus::before {
  content: "\f37d";
}

.bi-file-earmark-post-fill::before {
  content: "\f37e";
}

.bi-file-earmark-post::before {
  content: "\f37f";
}

.bi-file-earmark-ppt-fill::before {
  content: "\f380";
}

.bi-file-earmark-ppt::before {
  content: "\f381";
}

.bi-file-earmark-richtext-fill::before {
  content: "\f382";
}

.bi-file-earmark-richtext::before {
  content: "\f383";
}

.bi-file-earmark-ruled-fill::before {
  content: "\f384";
}

.bi-file-earmark-ruled::before {
  content: "\f385";
}

.bi-file-earmark-slides-fill::before {
  content: "\f386";
}

.bi-file-earmark-slides::before {
  content: "\f387";
}

.bi-file-earmark-spreadsheet-fill::before {
  content: "\f388";
}

.bi-file-earmark-spreadsheet::before {
  content: "\f389";
}

.bi-file-earmark-text-fill::before {
  content: "\f38a";
}

.bi-file-earmark-text::before {
  content: "\f38b";
}

.bi-file-earmark-word-fill::before {
  content: "\f38c";
}

.bi-file-earmark-word::before {
  content: "\f38d";
}

.bi-file-earmark-x-fill::before {
  content: "\f38e";
}

.bi-file-earmark-x::before {
  content: "\f38f";
}

.bi-file-earmark-zip-fill::before {
  content: "\f390";
}

.bi-file-earmark-zip::before {
  content: "\f391";
}

.bi-file-earmark::before {
  content: "\f392";
}

.bi-file-easel-fill::before {
  content: "\f393";
}

.bi-file-easel::before {
  content: "\f394";
}

.bi-file-excel-fill::before {
  content: "\f395";
}

.bi-file-excel::before {
  content: "\f396";
}

.bi-file-fill::before {
  content: "\f397";
}

.bi-file-font-fill::before {
  content: "\f398";
}

.bi-file-font::before {
  content: "\f399";
}

.bi-file-image-fill::before {
  content: "\f39a";
}

.bi-file-image::before {
  content: "\f39b";
}

.bi-file-lock-fill::before {
  content: "\f39c";
}

.bi-file-lock::before {
  content: "\f39d";
}

.bi-file-lock2-fill::before {
  content: "\f39e";
}

.bi-file-lock2::before {
  content: "\f39f";
}

.bi-file-medical-fill::before {
  content: "\f3a0";
}

.bi-file-medical::before {
  content: "\f3a1";
}

.bi-file-minus-fill::before {
  content: "\f3a2";
}

.bi-file-minus::before {
  content: "\f3a3";
}

.bi-file-music-fill::before {
  content: "\f3a4";
}

.bi-file-music::before {
  content: "\f3a5";
}

.bi-file-person-fill::before {
  content: "\f3a6";
}

.bi-file-person::before {
  content: "\f3a7";
}

.bi-file-play-fill::before {
  content: "\f3a8";
}

.bi-file-play::before {
  content: "\f3a9";
}

.bi-file-plus-fill::before {
  content: "\f3aa";
}

.bi-file-plus::before {
  content: "\f3ab";
}

.bi-file-post-fill::before {
  content: "\f3ac";
}

.bi-file-post::before {
  content: "\f3ad";
}

.bi-file-ppt-fill::before {
  content: "\f3ae";
}

.bi-file-ppt::before {
  content: "\f3af";
}

.bi-file-richtext-fill::before {
  content: "\f3b0";
}

.bi-file-richtext::before {
  content: "\f3b1";
}

.bi-file-ruled-fill::before {
  content: "\f3b2";
}

.bi-file-ruled::before {
  content: "\f3b3";
}

.bi-file-slides-fill::before {
  content: "\f3b4";
}

.bi-file-slides::before {
  content: "\f3b5";
}

.bi-file-spreadsheet-fill::before {
  content: "\f3b6";
}

.bi-file-spreadsheet::before {
  content: "\f3b7";
}

.bi-file-text-fill::before {
  content: "\f3b8";
}

.bi-file-text::before {
  content: "\f3b9";
}

.bi-file-word-fill::before {
  content: "\f3ba";
}

.bi-file-word::before {
  content: "\f3bb";
}

.bi-file-x-fill::before {
  content: "\f3bc";
}

.bi-file-x::before {
  content: "\f3bd";
}

.bi-file-zip-fill::before {
  content: "\f3be";
}

.bi-file-zip::before {
  content: "\f3bf";
}

.bi-file::before {
  content: "\f3c0";
}

.bi-files-alt::before {
  content: "\f3c1";
}

.bi-files::before {
  content: "\f3c2";
}

.bi-film::before {
  content: "\f3c3";
}

.bi-filter-circle-fill::before {
  content: "\f3c4";
}

.bi-filter-circle::before {
  content: "\f3c5";
}

.bi-filter-left::before {
  content: "\f3c6";
}

.bi-filter-right::before {
  content: "\f3c7";
}

.bi-filter-square-fill::before {
  content: "\f3c8";
}

.bi-filter-square::before {
  content: "\f3c9";
}

.bi-filter::before {
  content: "\f3ca";
}

.bi-flag-fill::before {
  content: "\f3cb";
}

.bi-flag::before {
  content: "\f3cc";
}

.bi-flower1::before {
  content: "\f3cd";
}

.bi-flower2::before {
  content: "\f3ce";
}

.bi-flower3::before {
  content: "\f3cf";
}

.bi-folder-check::before {
  content: "\f3d0";
}

.bi-folder-fill::before {
  content: "\f3d1";
}

.bi-folder-minus::before {
  content: "\f3d2";
}

.bi-folder-plus::before {
  content: "\f3d3";
}

.bi-folder-symlink-fill::before {
  content: "\f3d4";
}

.bi-folder-symlink::before {
  content: "\f3d5";
}

.bi-folder-x::before {
  content: "\f3d6";
}

.bi-folder::before {
  content: "\f3d7";
}

.bi-folder2-open::before {
  content: "\f3d8";
}

.bi-folder2::before {
  content: "\f3d9";
}

.bi-fonts::before {
  content: "\f3da";
}

.bi-forward-fill::before {
  content: "\f3db";
}

.bi-forward::before {
  content: "\f3dc";
}

.bi-front::before {
  content: "\f3dd";
}

.bi-fullscreen-exit::before {
  content: "\f3de";
}

.bi-fullscreen::before {
  content: "\f3df";
}

.bi-funnel-fill::before {
  content: "\f3e0";
}

.bi-funnel::before {
  content: "\f3e1";
}

.bi-gear-fill::before {
  content: "\f3e2";
}

.bi-gear-wide-connected::before {
  content: "\f3e3";
}

.bi-gear-wide::before {
  content: "\f3e4";
}

.bi-gear::before {
  content: "\f3e5";
}

.bi-gem::before {
  content: "\f3e6";
}

.bi-geo-alt-fill::before {
  content: "\f3e7";
}

.bi-geo-alt::before {
  content: "\f3e8";
}

.bi-geo-fill::before {
  content: "\f3e9";
}

.bi-geo::before {
  content: "\f3ea";
}

.bi-gift-fill::before {
  content: "\f3eb";
}

.bi-gift::before {
  content: "\f3ec";
}

.bi-github::before {
  content: "\f3ed";
}

.bi-globe::before {
  content: "\f3ee";
}

.bi-globe2::before {
  content: "\f3ef";
}

.bi-google::before {
  content: "\f3f0";
}

.bi-graph-down::before {
  content: "\f3f1";
}

.bi-graph-up::before {
  content: "\f3f2";
}

.bi-grid-1x2-fill::before {
  content: "\f3f3";
}

.bi-grid-1x2::before {
  content: "\f3f4";
}

.bi-grid-3x2-gap-fill::before {
  content: "\f3f5";
}

.bi-grid-3x2-gap::before {
  content: "\f3f6";
}

.bi-grid-3x2::before {
  content: "\f3f7";
}

.bi-grid-3x3-gap-fill::before {
  content: "\f3f8";
}

.bi-grid-3x3-gap::before {
  content: "\f3f9";
}

.bi-grid-3x3::before {
  content: "\f3fa";
}

.bi-grid-fill::before {
  content: "\f3fb";
}

.bi-grid::before {
  content: "\f3fc";
}

.bi-grip-horizontal::before {
  content: "\f3fd";
}

.bi-grip-vertical::before {
  content: "\f3fe";
}

.bi-hammer::before {
  content: "\f3ff";
}

.bi-hand-index-fill::before {
  content: "\f400";
}

.bi-hand-index-thumb-fill::before {
  content: "\f401";
}

.bi-hand-index-thumb::before {
  content: "\f402";
}

.bi-hand-index::before {
  content: "\f403";
}

.bi-hand-thumbs-down-fill::before {
  content: "\f404";
}

.bi-hand-thumbs-down::before {
  content: "\f405";
}

.bi-hand-thumbs-up-fill::before {
  content: "\f406";
}

.bi-hand-thumbs-up::before {
  content: "\f407";
}

.bi-handbag-fill::before {
  content: "\f408";
}

.bi-handbag::before {
  content: "\f409";
}

.bi-hash::before {
  content: "\f40a";
}

.bi-hdd-fill::before {
  content: "\f40b";
}

.bi-hdd-network-fill::before {
  content: "\f40c";
}

.bi-hdd-network::before {
  content: "\f40d";
}

.bi-hdd-rack-fill::before {
  content: "\f40e";
}

.bi-hdd-rack::before {
  content: "\f40f";
}

.bi-hdd-stack-fill::before {
  content: "\f410";
}

.bi-hdd-stack::before {
  content: "\f411";
}

.bi-hdd::before {
  content: "\f412";
}

.bi-headphones::before {
  content: "\f413";
}

.bi-headset::before {
  content: "\f414";
}

.bi-heart-fill::before {
  content: "\f415";
}

.bi-heart-half::before {
  content: "\f416";
}

.bi-heart::before {
  content: "\f417";
}

.bi-heptagon-fill::before {
  content: "\f418";
}

.bi-heptagon-half::before {
  content: "\f419";
}

.bi-heptagon::before {
  content: "\f41a";
}

.bi-hexagon-fill::before {
  content: "\f41b";
}

.bi-hexagon-half::before {
  content: "\f41c";
}

.bi-hexagon::before {
  content: "\f41d";
}

.bi-hourglass-bottom::before {
  content: "\f41e";
}

.bi-hourglass-split::before {
  content: "\f41f";
}

.bi-hourglass-top::before {
  content: "\f420";
}

.bi-hourglass::before {
  content: "\f421";
}

.bi-house-door-fill::before {
  content: "\f422";
}

.bi-house-door::before {
  content: "\f423";
}

.bi-house-fill::before {
  content: "\f424";
}

.bi-house::before {
  content: "\f425";
}

.bi-hr::before {
  content: "\f426";
}

.bi-hurricane::before {
  content: "\f427";
}

.bi-image-alt::before {
  content: "\f428";
}

.bi-image-fill::before {
  content: "\f429";
}

.bi-image::before {
  content: "\f42a";
}

.bi-images::before {
  content: "\f42b";
}

.bi-inbox-fill::before {
  content: "\f42c";
}

.bi-inbox::before {
  content: "\f42d";
}

.bi-inboxes-fill::before {
  content: "\f42e";
}

.bi-inboxes::before {
  content: "\f42f";
}

.bi-info-circle-fill::before {
  content: "\f430";
}

.bi-info-circle::before {
  content: "\f431";
}

.bi-info-square-fill::before {
  content: "\f432";
}

.bi-info-square::before {
  content: "\f433";
}

.bi-info::before {
  content: "\f434";
}

.bi-input-cursor-text::before {
  content: "\f435";
}

.bi-input-cursor::before {
  content: "\f436";
}

.bi-instagram::before {
  content: "\f437";
}

.bi-intersect::before {
  content: "\f438";
}

.bi-journal-album::before {
  content: "\f439";
}

.bi-journal-arrow-down::before {
  content: "\f43a";
}

.bi-journal-arrow-up::before {
  content: "\f43b";
}

.bi-journal-bookmark-fill::before {
  content: "\f43c";
}

.bi-journal-bookmark::before {
  content: "\f43d";
}

.bi-journal-check::before {
  content: "\f43e";
}

.bi-journal-code::before {
  content: "\f43f";
}

.bi-journal-medical::before {
  content: "\f440";
}

.bi-journal-minus::before {
  content: "\f441";
}

.bi-journal-plus::before {
  content: "\f442";
}

.bi-journal-richtext::before {
  content: "\f443";
}

.bi-journal-text::before {
  content: "\f444";
}

.bi-journal-x::before {
  content: "\f445";
}

.bi-journal::before {
  content: "\f446";
}

.bi-journals::before {
  content: "\f447";
}

.bi-joystick::before {
  content: "\f448";
}

.bi-justify-left::before {
  content: "\f449";
}

.bi-justify-right::before {
  content: "\f44a";
}

.bi-justify::before {
  content: "\f44b";
}

.bi-kanban-fill::before {
  content: "\f44c";
}

.bi-kanban::before {
  content: "\f44d";
}

.bi-key-fill::before {
  content: "\f44e";
}

.bi-key::before {
  content: "\f44f";
}

.bi-keyboard-fill::before {
  content: "\f450";
}

.bi-keyboard::before {
  content: "\f451";
}

.bi-ladder::before {
  content: "\f452";
}

.bi-lamp-fill::before {
  content: "\f453";
}

.bi-lamp::before {
  content: "\f454";
}

.bi-laptop-fill::before {
  content: "\f455";
}

.bi-laptop::before {
  content: "\f456";
}

.bi-layer-backward::before {
  content: "\f457";
}

.bi-layer-forward::before {
  content: "\f458";
}

.bi-layers-fill::before {
  content: "\f459";
}

.bi-layers-half::before {
  content: "\f45a";
}

.bi-layers::before {
  content: "\f45b";
}

.bi-layout-sidebar-inset-reverse::before {
  content: "\f45c";
}

.bi-layout-sidebar-inset::before {
  content: "\f45d";
}

.bi-layout-sidebar-reverse::before {
  content: "\f45e";
}

.bi-layout-sidebar::before {
  content: "\f45f";
}

.bi-layout-split::before {
  content: "\f460";
}

.bi-layout-text-sidebar-reverse::before {
  content: "\f461";
}

.bi-layout-text-sidebar::before {
  content: "\f462";
}

.bi-layout-text-window-reverse::before {
  content: "\f463";
}

.bi-layout-text-window::before {
  content: "\f464";
}

.bi-layout-three-columns::before {
  content: "\f465";
}

.bi-layout-wtf::before {
  content: "\f466";
}

.bi-life-preserver::before {
  content: "\f467";
}

.bi-lightbulb-fill::before {
  content: "\f468";
}

.bi-lightbulb-off-fill::before {
  content: "\f469";
}

.bi-lightbulb-off::before {
  content: "\f46a";
}

.bi-lightbulb::before {
  content: "\f46b";
}

.bi-lightning-charge-fill::before {
  content: "\f46c";
}

.bi-lightning-charge::before {
  content: "\f46d";
}

.bi-lightning-fill::before {
  content: "\f46e";
}

.bi-lightning::before {
  content: "\f46f";
}

.bi-link-45deg::before {
  content: "\f470";
}

.bi-link::before {
  content: "\f471";
}

.bi-linkedin::before {
  content: "\f472";
}

.bi-list-check::before {
  content: "\f473";
}

.bi-list-nested::before {
  content: "\f474";
}

.bi-list-ol::before {
  content: "\f475";
}

.bi-list-stars::before {
  content: "\f476";
}

.bi-list-task::before {
  content: "\f477";
}

.bi-list-ul::before {
  content: "\f478";
}

.bi-list::before {
  content: "\f479";
}

.bi-lock-fill::before {
  content: "\f47a";
}

.bi-lock::before {
  content: "\f47b";
}

.bi-mailbox::before {
  content: "\f47c";
}

.bi-mailbox2::before {
  content: "\f47d";
}

.bi-map-fill::before {
  content: "\f47e";
}

.bi-map::before {
  content: "\f47f";
}

.bi-markdown-fill::before {
  content: "\f480";
}

.bi-markdown::before {
  content: "\f481";
}

.bi-mask::before {
  content: "\f482";
}

.bi-megaphone-fill::before {
  content: "\f483";
}

.bi-megaphone::before {
  content: "\f484";
}

.bi-menu-app-fill::before {
  content: "\f485";
}

.bi-menu-app::before {
  content: "\f486";
}

.bi-menu-button-fill::before {
  content: "\f487";
}

.bi-menu-button-wide-fill::before {
  content: "\f488";
}

.bi-menu-button-wide::before {
  content: "\f489";
}

.bi-menu-button::before {
  content: "\f48a";
}

.bi-menu-down::before {
  content: "\f48b";
}

.bi-menu-up::before {
  content: "\f48c";
}

.bi-mic-fill::before {
  content: "\f48d";
}

.bi-mic-mute-fill::before {
  content: "\f48e";
}

.bi-mic-mute::before {
  content: "\f48f";
}

.bi-mic::before {
  content: "\f490";
}

.bi-minecart-loaded::before {
  content: "\f491";
}

.bi-minecart::before {
  content: "\f492";
}

.bi-moisture::before {
  content: "\f493";
}

.bi-moon-fill::before {
  content: "\f494";
}

.bi-moon-stars-fill::before {
  content: "\f495";
}

.bi-moon-stars::before {
  content: "\f496";
}

.bi-moon::before {
  content: "\f497";
}

.bi-mouse-fill::before {
  content: "\f498";
}

.bi-mouse::before {
  content: "\f499";
}

.bi-mouse2-fill::before {
  content: "\f49a";
}

.bi-mouse2::before {
  content: "\f49b";
}

.bi-mouse3-fill::before {
  content: "\f49c";
}

.bi-mouse3::before {
  content: "\f49d";
}

.bi-music-note-beamed::before {
  content: "\f49e";
}

.bi-music-note-list::before {
  content: "\f49f";
}

.bi-music-note::before {
  content: "\f4a0";
}

.bi-music-player-fill::before {
  content: "\f4a1";
}

.bi-music-player::before {
  content: "\f4a2";
}

.bi-newspaper::before {
  content: "\f4a3";
}

.bi-node-minus-fill::before {
  content: "\f4a4";
}

.bi-node-minus::before {
  content: "\f4a5";
}

.bi-node-plus-fill::before {
  content: "\f4a6";
}

.bi-node-plus::before {
  content: "\f4a7";
}

.bi-nut-fill::before {
  content: "\f4a8";
}

.bi-nut::before {
  content: "\f4a9";
}

.bi-octagon-fill::before {
  content: "\f4aa";
}

.bi-octagon-half::before {
  content: "\f4ab";
}

.bi-octagon::before {
  content: "\f4ac";
}

.bi-option::before {
  content: "\f4ad";
}

.bi-outlet::before {
  content: "\f4ae";
}

.bi-paint-bucket::before {
  content: "\f4af";
}

.bi-palette-fill::before {
  content: "\f4b0";
}

.bi-palette::before {
  content: "\f4b1";
}

.bi-palette2::before {
  content: "\f4b2";
}

.bi-paperclip::before {
  content: "\f4b3";
}

.bi-paragraph::before {
  content: "\f4b4";
}

.bi-patch-check-fill::before {
  content: "\f4b5";
}

.bi-patch-check::before {
  content: "\f4b6";
}

.bi-patch-exclamation-fill::before {
  content: "\f4b7";
}

.bi-patch-exclamation::before {
  content: "\f4b8";
}

.bi-patch-minus-fill::before {
  content: "\f4b9";
}

.bi-patch-minus::before {
  content: "\f4ba";
}

.bi-patch-plus-fill::before {
  content: "\f4bb";
}

.bi-patch-plus::before {
  content: "\f4bc";
}

.bi-patch-question-fill::before {
  content: "\f4bd";
}

.bi-patch-question::before {
  content: "\f4be";
}

.bi-pause-btn-fill::before {
  content: "\f4bf";
}

.bi-pause-btn::before {
  content: "\f4c0";
}

.bi-pause-circle-fill::before {
  content: "\f4c1";
}

.bi-pause-circle::before {
  content: "\f4c2";
}

.bi-pause-fill::before {
  content: "\f4c3";
}

.bi-pause::before {
  content: "\f4c4";
}

.bi-peace-fill::before {
  content: "\f4c5";
}

.bi-peace::before {
  content: "\f4c6";
}

.bi-pen-fill::before {
  content: "\f4c7";
}

.bi-pen::before {
  content: "\f4c8";
}

.bi-pencil-fill::before {
  content: "\f4c9";
}

.bi-pencil-square::before {
  content: "\f4ca";
}

.bi-pencil::before {
  content: "\f4cb";
}

.bi-pentagon-fill::before {
  content: "\f4cc";
}

.bi-pentagon-half::before {
  content: "\f4cd";
}

.bi-pentagon::before {
  content: "\f4ce";
}

.bi-people-fill::before {
  content: "\f4cf";
}

.bi-people::before {
  content: "\f4d0";
}

.bi-percent::before {
  content: "\f4d1";
}

.bi-person-badge-fill::before {
  content: "\f4d2";
}

.bi-person-badge::before {
  content: "\f4d3";
}

.bi-person-bounding-box::before {
  content: "\f4d4";
}

.bi-person-check-fill::before {
  content: "\f4d5";
}

.bi-person-check::before {
  content: "\f4d6";
}

.bi-person-circle::before {
  content: "\f4d7";
}

.bi-person-dash-fill::before {
  content: "\f4d8";
}

.bi-person-dash::before {
  content: "\f4d9";
}

.bi-person-fill::before {
  content: "\f4da";
}

.bi-person-lines-fill::before {
  content: "\f4db";
}

.bi-person-plus-fill::before {
  content: "\f4dc";
}

.bi-person-plus::before {
  content: "\f4dd";
}

.bi-person-square::before {
  content: "\f4de";
}

.bi-person-x-fill::before {
  content: "\f4df";
}

.bi-person-x::before {
  content: "\f4e0";
}

.bi-person::before {
  content: "\f4e1";
}

.bi-phone-fill::before {
  content: "\f4e2";
}

.bi-phone-landscape-fill::before {
  content: "\f4e3";
}

.bi-phone-landscape::before {
  content: "\f4e4";
}

.bi-phone-vibrate-fill::before {
  content: "\f4e5";
}

.bi-phone-vibrate::before {
  content: "\f4e6";
}

.bi-phone::before {
  content: "\f4e7";
}

.bi-pie-chart-fill::before {
  content: "\f4e8";
}

.bi-pie-chart::before {
  content: "\f4e9";
}

.bi-pin-angle-fill::before {
  content: "\f4ea";
}

.bi-pin-angle::before {
  content: "\f4eb";
}

.bi-pin-fill::before {
  content: "\f4ec";
}

.bi-pin::before {
  content: "\f4ed";
}

.bi-pip-fill::before {
  content: "\f4ee";
}

.bi-pip::before {
  content: "\f4ef";
}

.bi-play-btn-fill::before {
  content: "\f4f0";
}

.bi-play-btn::before {
  content: "\f4f1";
}

.bi-play-circle-fill::before {
  content: "\f4f2";
}

.bi-play-circle::before {
  content: "\f4f3";
}

.bi-play-fill::before {
  content: "\f4f4";
}

.bi-play::before {
  content: "\f4f5";
}

.bi-plug-fill::before {
  content: "\f4f6";
}

.bi-plug::before {
  content: "\f4f7";
}

.bi-plus-circle-dotted::before {
  content: "\f4f8";
}

.bi-plus-circle-fill::before {
  content: "\f4f9";
}

.bi-plus-circle::before {
  content: "\f4fa";
}

.bi-plus-square-dotted::before {
  content: "\f4fb";
}

.bi-plus-square-fill::before {
  content: "\f4fc";
}

.bi-plus-square::before {
  content: "\f4fd";
}

.bi-plus::before {
  content: "\f4fe";
}

.bi-power::before {
  content: "\f4ff";
}

.bi-printer-fill::before {
  content: "\f500";
}

.bi-printer::before {
  content: "\f501";
}

.bi-puzzle-fill::before {
  content: "\f502";
}

.bi-puzzle::before {
  content: "\f503";
}

.bi-question-circle-fill::before {
  content: "\f504";
}

.bi-question-circle::before {
  content: "\f505";
}

.bi-question-diamond-fill::before {
  content: "\f506";
}

.bi-question-diamond::before {
  content: "\f507";
}

.bi-question-octagon-fill::before {
  content: "\f508";
}

.bi-question-octagon::before {
  content: "\f509";
}

.bi-question-square-fill::before {
  content: "\f50a";
}

.bi-question-square::before {
  content: "\f50b";
}

.bi-question::before {
  content: "\f50c";
}

.bi-rainbow::before {
  content: "\f50d";
}

.bi-receipt-cutoff::before {
  content: "\f50e";
}

.bi-receipt::before {
  content: "\f50f";
}

.bi-reception-0::before {
  content: "\f510";
}

.bi-reception-1::before {
  content: "\f511";
}

.bi-reception-2::before {
  content: "\f512";
}

.bi-reception-3::before {
  content: "\f513";
}

.bi-reception-4::before {
  content: "\f514";
}

.bi-record-btn-fill::before {
  content: "\f515";
}

.bi-record-btn::before {
  content: "\f516";
}

.bi-record-circle-fill::before {
  content: "\f517";
}

.bi-record-circle::before {
  content: "\f518";
}

.bi-record-fill::before {
  content: "\f519";
}

.bi-record::before {
  content: "\f51a";
}

.bi-record2-fill::before {
  content: "\f51b";
}

.bi-record2::before {
  content: "\f51c";
}

.bi-reply-all-fill::before {
  content: "\f51d";
}

.bi-reply-all::before {
  content: "\f51e";
}

.bi-reply-fill::before {
  content: "\f51f";
}

.bi-reply::before {
  content: "\f520";
}

.bi-rss-fill::before {
  content: "\f521";
}

.bi-rss::before {
  content: "\f522";
}

.bi-rulers::before {
  content: "\f523";
}

.bi-save-fill::before {
  content: "\f524";
}

.bi-save::before {
  content: "\f525";
}

.bi-save2-fill::before {
  content: "\f526";
}

.bi-save2::before {
  content: "\f527";
}

.bi-scissors::before {
  content: "\f528";
}

.bi-screwdriver::before {
  content: "\f529";
}

.bi-search::before {
  content: "\f52a";
}

.bi-segmented-nav::before {
  content: "\f52b";
}

.bi-server::before {
  content: "\f52c";
}

.bi-share-fill::before {
  content: "\f52d";
}

.bi-share::before {
  content: "\f52e";
}

.bi-shield-check::before {
  content: "\f52f";
}

.bi-shield-exclamation::before {
  content: "\f530";
}

.bi-shield-fill-check::before {
  content: "\f531";
}

.bi-shield-fill-exclamation::before {
  content: "\f532";
}

.bi-shield-fill-minus::before {
  content: "\f533";
}

.bi-shield-fill-plus::before {
  content: "\f534";
}

.bi-shield-fill-x::before {
  content: "\f535";
}

.bi-shield-fill::before {
  content: "\f536";
}

.bi-shield-lock-fill::before {
  content: "\f537";
}

.bi-shield-lock::before {
  content: "\f538";
}

.bi-shield-minus::before {
  content: "\f539";
}

.bi-shield-plus::before {
  content: "\f53a";
}

.bi-shield-shaded::before {
  content: "\f53b";
}

.bi-shield-slash-fill::before {
  content: "\f53c";
}

.bi-shield-slash::before {
  content: "\f53d";
}

.bi-shield-x::before {
  content: "\f53e";
}

.bi-shield::before {
  content: "\f53f";
}

.bi-shift-fill::before {
  content: "\f540";
}

.bi-shift::before {
  content: "\f541";
}

.bi-shop-window::before {
  content: "\f542";
}

.bi-shop::before {
  content: "\f543";
}

.bi-shuffle::before {
  content: "\f544";
}

.bi-signpost-2-fill::before {
  content: "\f545";
}

.bi-signpost-2::before {
  content: "\f546";
}

.bi-signpost-fill::before {
  content: "\f547";
}

.bi-signpost-split-fill::before {
  content: "\f548";
}

.bi-signpost-split::before {
  content: "\f549";
}

.bi-signpost::before {
  content: "\f54a";
}

.bi-sim-fill::before {
  content: "\f54b";
}

.bi-sim::before {
  content: "\f54c";
}

.bi-skip-backward-btn-fill::before {
  content: "\f54d";
}

.bi-skip-backward-btn::before {
  content: "\f54e";
}

.bi-skip-backward-circle-fill::before {
  content: "\f54f";
}

.bi-skip-backward-circle::before {
  content: "\f550";
}

.bi-skip-backward-fill::before {
  content: "\f551";
}

.bi-skip-backward::before {
  content: "\f552";
}

.bi-skip-end-btn-fill::before {
  content: "\f553";
}

.bi-skip-end-btn::before {
  content: "\f554";
}

.bi-skip-end-circle-fill::before {
  content: "\f555";
}

.bi-skip-end-circle::before {
  content: "\f556";
}

.bi-skip-end-fill::before {
  content: "\f557";
}

.bi-skip-end::before {
  content: "\f558";
}

.bi-skip-forward-btn-fill::before {
  content: "\f559";
}

.bi-skip-forward-btn::before {
  content: "\f55a";
}

.bi-skip-forward-circle-fill::before {
  content: "\f55b";
}

.bi-skip-forward-circle::before {
  content: "\f55c";
}

.bi-skip-forward-fill::before {
  content: "\f55d";
}

.bi-skip-forward::before {
  content: "\f55e";
}

.bi-skip-start-btn-fill::before {
  content: "\f55f";
}

.bi-skip-start-btn::before {
  content: "\f560";
}

.bi-skip-start-circle-fill::before {
  content: "\f561";
}

.bi-skip-start-circle::before {
  content: "\f562";
}

.bi-skip-start-fill::before {
  content: "\f563";
}

.bi-skip-start::before {
  content: "\f564";
}

.bi-slack::before {
  content: "\f565";
}

.bi-slash-circle-fill::before {
  content: "\f566";
}

.bi-slash-circle::before {
  content: "\f567";
}

.bi-slash-square-fill::before {
  content: "\f568";
}

.bi-slash-square::before {
  content: "\f569";
}

.bi-slash::before {
  content: "\f56a";
}

.bi-sliders::before {
  content: "\f56b";
}

.bi-smartwatch::before {
  content: "\f56c";
}

.bi-snow::before {
  content: "\f56d";
}

.bi-snow2::before {
  content: "\f56e";
}

.bi-snow3::before {
  content: "\f56f";
}

.bi-sort-alpha-down-alt::before {
  content: "\f570";
}

.bi-sort-alpha-down::before {
  content: "\f571";
}

.bi-sort-alpha-up-alt::before {
  content: "\f572";
}

.bi-sort-alpha-up::before {
  content: "\f573";
}

.bi-sort-down-alt::before {
  content: "\f574";
}

.bi-sort-down::before {
  content: "\f575";
}

.bi-sort-numeric-down-alt::before {
  content: "\f576";
}

.bi-sort-numeric-down::before {
  content: "\f577";
}

.bi-sort-numeric-up-alt::before {
  content: "\f578";
}

.bi-sort-numeric-up::before {
  content: "\f579";
}

.bi-sort-up-alt::before {
  content: "\f57a";
}

.bi-sort-up::before {
  content: "\f57b";
}

.bi-soundwave::before {
  content: "\f57c";
}

.bi-speaker-fill::before {
  content: "\f57d";
}

.bi-speaker::before {
  content: "\f57e";
}

.bi-speedometer::before {
  content: "\f57f";
}

.bi-speedometer2::before {
  content: "\f580";
}

.bi-spellcheck::before {
  content: "\f581";
}

.bi-square-fill::before {
  content: "\f582";
}

.bi-square-half::before {
  content: "\f583";
}

.bi-square::before {
  content: "\f584";
}

.bi-stack::before {
  content: "\f585";
}

.bi-star-fill::before {
  content: "\f586";
}

.bi-star-half::before {
  content: "\f587";
}

.bi-star::before {
  content: "\f588";
}

.bi-stars::before {
  content: "\f589";
}

.bi-stickies-fill::before {
  content: "\f58a";
}

.bi-stickies::before {
  content: "\f58b";
}

.bi-sticky-fill::before {
  content: "\f58c";
}

.bi-sticky::before {
  content: "\f58d";
}

.bi-stop-btn-fill::before {
  content: "\f58e";
}

.bi-stop-btn::before {
  content: "\f58f";
}

.bi-stop-circle-fill::before {
  content: "\f590";
}

.bi-stop-circle::before {
  content: "\f591";
}

.bi-stop-fill::before {
  content: "\f592";
}

.bi-stop::before {
  content: "\f593";
}

.bi-stoplights-fill::before {
  content: "\f594";
}

.bi-stoplights::before {
  content: "\f595";
}

.bi-stopwatch-fill::before {
  content: "\f596";
}

.bi-stopwatch::before {
  content: "\f597";
}

.bi-subtract::before {
  content: "\f598";
}

.bi-suit-club-fill::before {
  content: "\f599";
}

.bi-suit-club::before {
  content: "\f59a";
}

.bi-suit-diamond-fill::before {
  content: "\f59b";
}

.bi-suit-diamond::before {
  content: "\f59c";
}

.bi-suit-heart-fill::before {
  content: "\f59d";
}

.bi-suit-heart::before {
  content: "\f59e";
}

.bi-suit-spade-fill::before {
  content: "\f59f";
}

.bi-suit-spade::before {
  content: "\f5a0";
}

.bi-sun-fill::before {
  content: "\f5a1";
}

.bi-sun::before {
  content: "\f5a2";
}

.bi-sunglasses::before {
  content: "\f5a3";
}

.bi-sunrise-fill::before {
  content: "\f5a4";
}

.bi-sunrise::before {
  content: "\f5a5";
}

.bi-sunset-fill::before {
  content: "\f5a6";
}

.bi-sunset::before {
  content: "\f5a7";
}

.bi-symmetry-horizontal::before {
  content: "\f5a8";
}

.bi-symmetry-vertical::before {
  content: "\f5a9";
}

.bi-table::before {
  content: "\f5aa";
}

.bi-tablet-fill::before {
  content: "\f5ab";
}

.bi-tablet-landscape-fill::before {
  content: "\f5ac";
}

.bi-tablet-landscape::before {
  content: "\f5ad";
}

.bi-tablet::before {
  content: "\f5ae";
}

.bi-tag-fill::before {
  content: "\f5af";
}

.bi-tag::before {
  content: "\f5b0";
}

.bi-tags-fill::before {
  content: "\f5b1";
}

.bi-tags::before {
  content: "\f5b2";
}

.bi-telegram::before {
  content: "\f5b3";
}

.bi-telephone-fill::before {
  content: "\f5b4";
}

.bi-telephone-forward-fill::before {
  content: "\f5b5";
}

.bi-telephone-forward::before {
  content: "\f5b6";
}

.bi-telephone-inbound-fill::before {
  content: "\f5b7";
}

.bi-telephone-inbound::before {
  content: "\f5b8";
}

.bi-telephone-minus-fill::before {
  content: "\f5b9";
}

.bi-telephone-minus::before {
  content: "\f5ba";
}

.bi-telephone-outbound-fill::before {
  content: "\f5bb";
}

.bi-telephone-outbound::before {
  content: "\f5bc";
}

.bi-telephone-plus-fill::before {
  content: "\f5bd";
}

.bi-telephone-plus::before {
  content: "\f5be";
}

.bi-telephone-x-fill::before {
  content: "\f5bf";
}

.bi-telephone-x::before {
  content: "\f5c0";
}

.bi-telephone::before {
  content: "\f5c1";
}

.bi-terminal-fill::before {
  content: "\f5c2";
}

.bi-terminal::before {
  content: "\f5c3";
}

.bi-text-center::before {
  content: "\f5c4";
}

.bi-text-indent-left::before {
  content: "\f5c5";
}

.bi-text-indent-right::before {
  content: "\f5c6";
}

.bi-text-left::before {
  content: "\f5c7";
}

.bi-text-paragraph::before {
  content: "\f5c8";
}

.bi-text-right::before {
  content: "\f5c9";
}

.bi-textarea-resize::before {
  content: "\f5ca";
}

.bi-textarea-t::before {
  content: "\f5cb";
}

.bi-textarea::before {
  content: "\f5cc";
}

.bi-thermometer-half::before {
  content: "\f5cd";
}

.bi-thermometer-high::before {
  content: "\f5ce";
}

.bi-thermometer-low::before {
  content: "\f5cf";
}

.bi-thermometer-snow::before {
  content: "\f5d0";
}

.bi-thermometer-sun::before {
  content: "\f5d1";
}

.bi-thermometer::before {
  content: "\f5d2";
}

.bi-three-dots-vertical::before {
  content: "\f5d3";
}

.bi-three-dots::before {
  content: "\f5d4";
}

.bi-toggle-off::before {
  content: "\f5d5";
}

.bi-toggle-on::before {
  content: "\f5d6";
}

.bi-toggle2-off::before {
  content: "\f5d7";
}

.bi-toggle2-on::before {
  content: "\f5d8";
}

.bi-toggles::before {
  content: "\f5d9";
}

.bi-toggles2::before {
  content: "\f5da";
}

.bi-tools::before {
  content: "\f5db";
}

.bi-tornado::before {
  content: "\f5dc";
}

.bi-trash-fill::before {
  content: "\f5dd";
}

.bi-trash::before {
  content: "\f5de";
}

.bi-trash2-fill::before {
  content: "\f5df";
}

.bi-trash2::before {
  content: "\f5e0";
}

.bi-tree-fill::before {
  content: "\f5e1";
}

.bi-tree::before {
  content: "\f5e2";
}

.bi-triangle-fill::before {
  content: "\f5e3";
}

.bi-triangle-half::before {
  content: "\f5e4";
}

.bi-triangle::before {
  content: "\f5e5";
}

.bi-trophy-fill::before {
  content: "\f5e6";
}

.bi-trophy::before {
  content: "\f5e7";
}

.bi-tropical-storm::before {
  content: "\f5e8";
}

.bi-truck-flatbed::before {
  content: "\f5e9";
}

.bi-truck::before {
  content: "\f5ea";
}

.bi-tsunami::before {
  content: "\f5eb";
}

.bi-tv-fill::before {
  content: "\f5ec";
}

.bi-tv::before {
  content: "\f5ed";
}

.bi-twitch::before {
  content: "\f5ee";
}

.bi-twitter::before {
  content: "\f5ef";
}

.bi-type-bold::before {
  content: "\f5f0";
}

.bi-type-h1::before {
  content: "\f5f1";
}

.bi-type-h2::before {
  content: "\f5f2";
}

.bi-type-h3::before {
  content: "\f5f3";
}

.bi-type-italic::before {
  content: "\f5f4";
}

.bi-type-strikethrough::before {
  content: "\f5f5";
}

.bi-type-underline::before {
  content: "\f5f6";
}

.bi-type::before {
  content: "\f5f7";
}

.bi-ui-checks-grid::before {
  content: "\f5f8";
}

.bi-ui-checks::before {
  content: "\f5f9";
}

.bi-ui-radios-grid::before {
  content: "\f5fa";
}

.bi-ui-radios::before {
  content: "\f5fb";
}

.bi-umbrella-fill::before {
  content: "\f5fc";
}

.bi-umbrella::before {
  content: "\f5fd";
}

.bi-union::before {
  content: "\f5fe";
}

.bi-unlock-fill::before {
  content: "\f5ff";
}

.bi-unlock::before {
  content: "\f600";
}

.bi-upc-scan::before {
  content: "\f601";
}

.bi-upc::before {
  content: "\f602";
}

.bi-upload::before {
  content: "\f603";
}

.bi-vector-pen::before {
  content: "\f604";
}

.bi-view-list::before {
  content: "\f605";
}

.bi-view-stacked::before {
  content: "\f606";
}

.bi-vinyl-fill::before {
  content: "\f607";
}

.bi-vinyl::before {
  content: "\f608";
}

.bi-voicemail::before {
  content: "\f609";
}

.bi-volume-down-fill::before {
  content: "\f60a";
}

.bi-volume-down::before {
  content: "\f60b";
}

.bi-volume-mute-fill::before {
  content: "\f60c";
}

.bi-volume-mute::before {
  content: "\f60d";
}

.bi-volume-off-fill::before {
  content: "\f60e";
}

.bi-volume-off::before {
  content: "\f60f";
}

.bi-volume-up-fill::before {
  content: "\f610";
}

.bi-volume-up::before {
  content: "\f611";
}

.bi-vr::before {
  content: "\f612";
}

.bi-wallet-fill::before {
  content: "\f613";
}

.bi-wallet::before {
  content: "\f614";
}

.bi-wallet2::before {
  content: "\f615";
}

.bi-watch::before {
  content: "\f616";
}

.bi-water::before {
  content: "\f617";
}

.bi-whatsapp::before {
  content: "\f618";
}

.bi-wifi-1::before {
  content: "\f619";
}

.bi-wifi-2::before {
  content: "\f61a";
}

.bi-wifi-off::before {
  content: "\f61b";
}

.bi-wifi::before {
  content: "\f61c";
}

.bi-wind::before {
  content: "\f61d";
}

.bi-window-dock::before {
  content: "\f61e";
}

.bi-window-sidebar::before {
  content: "\f61f";
}

.bi-window::before {
  content: "\f620";
}

.bi-wrench::before {
  content: "\f621";
}

.bi-x-circle-fill::before {
  content: "\f622";
}

.bi-x-circle::before {
  content: "\f623";
}

.bi-x-diamond-fill::before {
  content: "\f624";
}

.bi-x-diamond::before {
  content: "\f625";
}

.bi-x-octagon-fill::before {
  content: "\f626";
}

.bi-x-octagon::before {
  content: "\f627";
}

.bi-x-square-fill::before {
  content: "\f628";
}

.bi-x-square::before {
  content: "\f629";
}

.bi-x::before {
  content: "\f62a";
}

.bi-youtube::before {
  content: "\f62b";
}

.bi-zoom-in::before {
  content: "\f62c";
}

.bi-zoom-out::before {
  content: "\f62d";
}

.bi-bank::before {
  content: "\f62e";
}

.bi-bank2::before {
  content: "\f62f";
}

.bi-bell-slash-fill::before {
  content: "\f630";
}

.bi-bell-slash::before {
  content: "\f631";
}

.bi-cash-coin::before {
  content: "\f632";
}

.bi-check-lg::before {
  content: "\f633";
}

.bi-coin::before {
  content: "\f634";
}

.bi-currency-bitcoin::before {
  content: "\f635";
}

.bi-currency-dollar::before {
  content: "\f636";
}

.bi-currency-euro::before {
  content: "\f637";
}

.bi-currency-exchange::before {
  content: "\f638";
}

.bi-currency-pound::before {
  content: "\f639";
}

.bi-currency-yen::before {
  content: "\f63a";
}

.bi-dash-lg::before {
  content: "\f63b";
}

.bi-exclamation-lg::before {
  content: "\f63c";
}

.bi-file-earmark-pdf-fill::before {
  content: "\f63d";
}

.bi-file-earmark-pdf::before {
  content: "\f63e";
}

.bi-file-pdf-fill::before {
  content: "\f63f";
}

.bi-file-pdf::before {
  content: "\f640";
}

.bi-gender-ambiguous::before {
  content: "\f641";
}

.bi-gender-female::before {
  content: "\f642";
}

.bi-gender-male::before {
  content: "\f643";
}

.bi-gender-trans::before {
  content: "\f644";
}

.bi-headset-vr::before {
  content: "\f645";
}

.bi-info-lg::before {
  content: "\f646";
}

.bi-mastodon::before {
  content: "\f647";
}

.bi-messenger::before {
  content: "\f648";
}

.bi-piggy-bank-fill::before {
  content: "\f649";
}

.bi-piggy-bank::before {
  content: "\f64a";
}

.bi-pin-map-fill::before {
  content: "\f64b";
}

.bi-pin-map::before {
  content: "\f64c";
}

.bi-plus-lg::before {
  content: "\f64d";
}

.bi-question-lg::before {
  content: "\f64e";
}

.bi-recycle::before {
  content: "\f64f";
}

.bi-reddit::before {
  content: "\f650";
}

.bi-safe-fill::before {
  content: "\f651";
}

.bi-safe2-fill::before {
  content: "\f652";
}

.bi-safe2::before {
  content: "\f653";
}

.bi-sd-card-fill::before {
  content: "\f654";
}

.bi-sd-card::before {
  content: "\f655";
}

.bi-skype::before {
  content: "\f656";
}

.bi-slash-lg::before {
  content: "\f657";
}

.bi-translate::before {
  content: "\f658";
}

.bi-x-lg::before {
  content: "\f659";
}

.bi-safe::before {
  content: "\f65a";
}

.bi-apple::before {
  content: "\f65b";
}

.bi-microsoft::before {
  content: "\f65d";
}

.bi-windows::before {
  content: "\f65e";
}

.bi-behance::before {
  content: "\f65c";
}

.bi-dribbble::before {
  content: "\f65f";
}

.bi-line::before {
  content: "\f660";
}

.bi-medium::before {
  content: "\f661";
}

.bi-paypal::before {
  content: "\f662";
}

.bi-pinterest::before {
  content: "\f663";
}

.bi-signal::before {
  content: "\f664";
}

.bi-snapchat::before {
  content: "\f665";
}

.bi-spotify::before {
  content: "\f666";
}

.bi-stack-overflow::before {
  content: "\f667";
}

.bi-strava::before {
  content: "\f668";
}

.bi-wordpress::before {
  content: "\f669";
}

.bi-vimeo::before {
  content: "\f66a";
}

.bi-activity::before {
  content: "\f66b";
}

.bi-easel2-fill::before {
  content: "\f66c";
}

.bi-easel2::before {
  content: "\f66d";
}

.bi-easel3-fill::before {
  content: "\f66e";
}

.bi-easel3::before {
  content: "\f66f";
}

.bi-fan::before {
  content: "\f670";
}

.bi-fingerprint::before {
  content: "\f671";
}

.bi-graph-down-arrow::before {
  content: "\f672";
}

.bi-graph-up-arrow::before {
  content: "\f673";
}

.bi-hypnotize::before {
  content: "\f674";
}

.bi-magic::before {
  content: "\f675";
}

.bi-person-rolodex::before {
  content: "\f676";
}

.bi-person-video::before {
  content: "\f677";
}

.bi-person-video2::before {
  content: "\f678";
}

.bi-person-video3::before {
  content: "\f679";
}

.bi-person-workspace::before {
  content: "\f67a";
}

.bi-radioactive::before {
  content: "\f67b";
}

.bi-webcam-fill::before {
  content: "\f67c";
}

.bi-webcam::before {
  content: "\f67d";
}

.bi-yin-yang::before {
  content: "\f67e";
}

.bi-bandaid-fill::before {
  content: "\f680";
}

.bi-bandaid::before {
  content: "\f681";
}

.bi-bluetooth::before {
  content: "\f682";
}

.bi-body-text::before {
  content: "\f683";
}

.bi-boombox::before {
  content: "\f684";
}

.bi-boxes::before {
  content: "\f685";
}

.bi-dpad-fill::before {
  content: "\f686";
}

.bi-dpad::before {
  content: "\f687";
}

.bi-ear-fill::before {
  content: "\f688";
}

.bi-ear::before {
  content: "\f689";
}

.bi-envelope-check-fill::before {
  content: "\f68b";
}

.bi-envelope-check::before {
  content: "\f68c";
}

.bi-envelope-dash-fill::before {
  content: "\f68e";
}

.bi-envelope-dash::before {
  content: "\f68f";
}

.bi-envelope-exclamation-fill::before {
  content: "\f691";
}

.bi-envelope-exclamation::before {
  content: "\f692";
}

.bi-envelope-plus-fill::before {
  content: "\f693";
}

.bi-envelope-plus::before {
  content: "\f694";
}

.bi-envelope-slash-fill::before {
  content: "\f696";
}

.bi-envelope-slash::before {
  content: "\f697";
}

.bi-envelope-x-fill::before {
  content: "\f699";
}

.bi-envelope-x::before {
  content: "\f69a";
}

.bi-explicit-fill::before {
  content: "\f69b";
}

.bi-explicit::before {
  content: "\f69c";
}

.bi-git::before {
  content: "\f69d";
}

.bi-infinity::before {
  content: "\f69e";
}

.bi-list-columns-reverse::before {
  content: "\f69f";
}

.bi-list-columns::before {
  content: "\f6a0";
}

.bi-meta::before {
  content: "\f6a1";
}

.bi-nintendo-switch::before {
  content: "\f6a4";
}

.bi-pc-display-horizontal::before {
  content: "\f6a5";
}

.bi-pc-display::before {
  content: "\f6a6";
}

.bi-pc-horizontal::before {
  content: "\f6a7";
}

.bi-pc::before {
  content: "\f6a8";
}

.bi-playstation::before {
  content: "\f6a9";
}

.bi-plus-slash-minus::before {
  content: "\f6aa";
}

.bi-projector-fill::before {
  content: "\f6ab";
}

.bi-projector::before {
  content: "\f6ac";
}

.bi-qr-code-scan::before {
  content: "\f6ad";
}

.bi-qr-code::before {
  content: "\f6ae";
}

.bi-quora::before {
  content: "\f6af";
}

.bi-quote::before {
  content: "\f6b0";
}

.bi-robot::before {
  content: "\f6b1";
}

.bi-send-check-fill::before {
  content: "\f6b2";
}

.bi-send-check::before {
  content: "\f6b3";
}

.bi-send-dash-fill::before {
  content: "\f6b4";
}

.bi-send-dash::before {
  content: "\f6b5";
}

.bi-send-exclamation-fill::before {
  content: "\f6b7";
}

.bi-send-exclamation::before {
  content: "\f6b8";
}

.bi-send-fill::before {
  content: "\f6b9";
}

.bi-send-plus-fill::before {
  content: "\f6ba";
}

.bi-send-plus::before {
  content: "\f6bb";
}

.bi-send-slash-fill::before {
  content: "\f6bc";
}

.bi-send-slash::before {
  content: "\f6bd";
}

.bi-send-x-fill::before {
  content: "\f6be";
}

.bi-send-x::before {
  content: "\f6bf";
}

.bi-send::before {
  content: "\f6c0";
}

.bi-steam::before {
  content: "\f6c1";
}

.bi-terminal-dash::before {
  content: "\f6c3";
}

.bi-terminal-plus::before {
  content: "\f6c4";
}

.bi-terminal-split::before {
  content: "\f6c5";
}

.bi-ticket-detailed-fill::before {
  content: "\f6c6";
}

.bi-ticket-detailed::before {
  content: "\f6c7";
}

.bi-ticket-fill::before {
  content: "\f6c8";
}

.bi-ticket-perforated-fill::before {
  content: "\f6c9";
}

.bi-ticket-perforated::before {
  content: "\f6ca";
}

.bi-ticket::before {
  content: "\f6cb";
}

.bi-tiktok::before {
  content: "\f6cc";
}

.bi-window-dash::before {
  content: "\f6cd";
}

.bi-window-desktop::before {
  content: "\f6ce";
}

.bi-window-fullscreen::before {
  content: "\f6cf";
}

.bi-window-plus::before {
  content: "\f6d0";
}

.bi-window-split::before {
  content: "\f6d1";
}

.bi-window-stack::before {
  content: "\f6d2";
}

.bi-window-x::before {
  content: "\f6d3";
}

.bi-xbox::before {
  content: "\f6d4";
}

.bi-ethernet::before {
  content: "\f6d5";
}

.bi-hdmi-fill::before {
  content: "\f6d6";
}

.bi-hdmi::before {
  content: "\f6d7";
}

.bi-usb-c-fill::before {
  content: "\f6d8";
}

.bi-usb-c::before {
  content: "\f6d9";
}

.bi-usb-fill::before {
  content: "\f6da";
}

.bi-usb-plug-fill::before {
  content: "\f6db";
}

.bi-usb-plug::before {
  content: "\f6dc";
}

.bi-usb-symbol::before {
  content: "\f6dd";
}

.bi-usb::before {
  content: "\f6de";
}

.bi-boombox-fill::before {
  content: "\f6df";
}

.bi-displayport::before {
  content: "\f6e1";
}

.bi-gpu-card::before {
  content: "\f6e2";
}

.bi-memory::before {
  content: "\f6e3";
}

.bi-modem-fill::before {
  content: "\f6e4";
}

.bi-modem::before {
  content: "\f6e5";
}

.bi-motherboard-fill::before {
  content: "\f6e6";
}

.bi-motherboard::before {
  content: "\f6e7";
}

.bi-optical-audio-fill::before {
  content: "\f6e8";
}

.bi-optical-audio::before {
  content: "\f6e9";
}

.bi-pci-card::before {
  content: "\f6ea";
}

.bi-router-fill::before {
  content: "\f6eb";
}

.bi-router::before {
  content: "\f6ec";
}

.bi-thunderbolt-fill::before {
  content: "\f6ef";
}

.bi-thunderbolt::before {
  content: "\f6f0";
}

.bi-usb-drive-fill::before {
  content: "\f6f1";
}

.bi-usb-drive::before {
  content: "\f6f2";
}

.bi-usb-micro-fill::before {
  content: "\f6f3";
}

.bi-usb-micro::before {
  content: "\f6f4";
}

.bi-usb-mini-fill::before {
  content: "\f6f5";
}

.bi-usb-mini::before {
  content: "\f6f6";
}

.bi-cloud-haze2::before {
  content: "\f6f7";
}

.bi-device-hdd-fill::before {
  content: "\f6f8";
}

.bi-device-hdd::before {
  content: "\f6f9";
}

.bi-device-ssd-fill::before {
  content: "\f6fa";
}

.bi-device-ssd::before {
  content: "\f6fb";
}

.bi-displayport-fill::before {
  content: "\f6fc";
}

.bi-mortarboard-fill::before {
  content: "\f6fd";
}

.bi-mortarboard::before {
  content: "\f6fe";
}

.bi-terminal-x::before {
  content: "\f6ff";
}

.bi-arrow-through-heart-fill::before {
  content: "\f700";
}

.bi-arrow-through-heart::before {
  content: "\f701";
}

.bi-badge-sd-fill::before {
  content: "\f702";
}

.bi-badge-sd::before {
  content: "\f703";
}

.bi-bag-heart-fill::before {
  content: "\f704";
}

.bi-bag-heart::before {
  content: "\f705";
}

.bi-balloon-fill::before {
  content: "\f706";
}

.bi-balloon-heart-fill::before {
  content: "\f707";
}

.bi-balloon-heart::before {
  content: "\f708";
}

.bi-balloon::before {
  content: "\f709";
}

.bi-box2-fill::before {
  content: "\f70a";
}

.bi-box2-heart-fill::before {
  content: "\f70b";
}

.bi-box2-heart::before {
  content: "\f70c";
}

.bi-box2::before {
  content: "\f70d";
}

.bi-braces-asterisk::before {
  content: "\f70e";
}

.bi-calendar-heart-fill::before {
  content: "\f70f";
}

.bi-calendar-heart::before {
  content: "\f710";
}

.bi-calendar2-heart-fill::before {
  content: "\f711";
}

.bi-calendar2-heart::before {
  content: "\f712";
}

.bi-chat-heart-fill::before {
  content: "\f713";
}

.bi-chat-heart::before {
  content: "\f714";
}

.bi-chat-left-heart-fill::before {
  content: "\f715";
}

.bi-chat-left-heart::before {
  content: "\f716";
}

.bi-chat-right-heart-fill::before {
  content: "\f717";
}

.bi-chat-right-heart::before {
  content: "\f718";
}

.bi-chat-square-heart-fill::before {
  content: "\f719";
}

.bi-chat-square-heart::before {
  content: "\f71a";
}

.bi-clipboard-check-fill::before {
  content: "\f71b";
}

.bi-clipboard-data-fill::before {
  content: "\f71c";
}

.bi-clipboard-fill::before {
  content: "\f71d";
}

.bi-clipboard-heart-fill::before {
  content: "\f71e";
}

.bi-clipboard-heart::before {
  content: "\f71f";
}

.bi-clipboard-minus-fill::before {
  content: "\f720";
}

.bi-clipboard-plus-fill::before {
  content: "\f721";
}

.bi-clipboard-pulse::before {
  content: "\f722";
}

.bi-clipboard-x-fill::before {
  content: "\f723";
}

.bi-clipboard2-check-fill::before {
  content: "\f724";
}

.bi-clipboard2-check::before {
  content: "\f725";
}

.bi-clipboard2-data-fill::before {
  content: "\f726";
}

.bi-clipboard2-data::before {
  content: "\f727";
}

.bi-clipboard2-fill::before {
  content: "\f728";
}

.bi-clipboard2-heart-fill::before {
  content: "\f729";
}

.bi-clipboard2-heart::before {
  content: "\f72a";
}

.bi-clipboard2-minus-fill::before {
  content: "\f72b";
}

.bi-clipboard2-minus::before {
  content: "\f72c";
}

.bi-clipboard2-plus-fill::before {
  content: "\f72d";
}

.bi-clipboard2-plus::before {
  content: "\f72e";
}

.bi-clipboard2-pulse-fill::before {
  content: "\f72f";
}

.bi-clipboard2-pulse::before {
  content: "\f730";
}

.bi-clipboard2-x-fill::before {
  content: "\f731";
}

.bi-clipboard2-x::before {
  content: "\f732";
}

.bi-clipboard2::before {
  content: "\f733";
}

.bi-emoji-kiss-fill::before {
  content: "\f734";
}

.bi-emoji-kiss::before {
  content: "\f735";
}

.bi-envelope-heart-fill::before {
  content: "\f736";
}

.bi-envelope-heart::before {
  content: "\f737";
}

.bi-envelope-open-heart-fill::before {
  content: "\f738";
}

.bi-envelope-open-heart::before {
  content: "\f739";
}

.bi-envelope-paper-fill::before {
  content: "\f73a";
}

.bi-envelope-paper-heart-fill::before {
  content: "\f73b";
}

.bi-envelope-paper-heart::before {
  content: "\f73c";
}

.bi-envelope-paper::before {
  content: "\f73d";
}

.bi-filetype-aac::before {
  content: "\f73e";
}

.bi-filetype-ai::before {
  content: "\f73f";
}

.bi-filetype-bmp::before {
  content: "\f740";
}

.bi-filetype-cs::before {
  content: "\f741";
}

.bi-filetype-css::before {
  content: "\f742";
}

.bi-filetype-csv::before {
  content: "\f743";
}

.bi-filetype-doc::before {
  content: "\f744";
}

.bi-filetype-docx::before {
  content: "\f745";
}

.bi-filetype-exe::before {
  content: "\f746";
}

.bi-filetype-gif::before {
  content: "\f747";
}

.bi-filetype-heic::before {
  content: "\f748";
}

.bi-filetype-html::before {
  content: "\f749";
}

.bi-filetype-java::before {
  content: "\f74a";
}

.bi-filetype-jpg::before {
  content: "\f74b";
}

.bi-filetype-js::before {
  content: "\f74c";
}

.bi-filetype-jsx::before {
  content: "\f74d";
}

.bi-filetype-key::before {
  content: "\f74e";
}

.bi-filetype-m4p::before {
  content: "\f74f";
}

.bi-filetype-md::before {
  content: "\f750";
}

.bi-filetype-mdx::before {
  content: "\f751";
}

.bi-filetype-mov::before {
  content: "\f752";
}

.bi-filetype-mp3::before {
  content: "\f753";
}

.bi-filetype-mp4::before {
  content: "\f754";
}

.bi-filetype-otf::before {
  content: "\f755";
}

.bi-filetype-pdf::before {
  content: "\f756";
}

.bi-filetype-php::before {
  content: "\f757";
}

.bi-filetype-png::before {
  content: "\f758";
}

.bi-filetype-ppt::before {
  content: "\f75a";
}

.bi-filetype-psd::before {
  content: "\f75b";
}

.bi-filetype-py::before {
  content: "\f75c";
}

.bi-filetype-raw::before {
  content: "\f75d";
}

.bi-filetype-rb::before {
  content: "\f75e";
}

.bi-filetype-sass::before {
  content: "\f75f";
}

.bi-filetype-scss::before {
  content: "\f760";
}

.bi-filetype-sh::before {
  content: "\f761";
}

.bi-filetype-svg::before {
  content: "\f762";
}

.bi-filetype-tiff::before {
  content: "\f763";
}

.bi-filetype-tsx::before {
  content: "\f764";
}

.bi-filetype-ttf::before {
  content: "\f765";
}

.bi-filetype-txt::before {
  content: "\f766";
}

.bi-filetype-wav::before {
  content: "\f767";
}

.bi-filetype-woff::before {
  content: "\f768";
}

.bi-filetype-xls::before {
  content: "\f76a";
}

.bi-filetype-xml::before {
  content: "\f76b";
}

.bi-filetype-yml::before {
  content: "\f76c";
}

.bi-heart-arrow::before {
  content: "\f76d";
}

.bi-heart-pulse-fill::before {
  content: "\f76e";
}

.bi-heart-pulse::before {
  content: "\f76f";
}

.bi-heartbreak-fill::before {
  content: "\f770";
}

.bi-heartbreak::before {
  content: "\f771";
}

.bi-hearts::before {
  content: "\f772";
}

.bi-hospital-fill::before {
  content: "\f773";
}

.bi-hospital::before {
  content: "\f774";
}

.bi-house-heart-fill::before {
  content: "\f775";
}

.bi-house-heart::before {
  content: "\f776";
}

.bi-incognito::before {
  content: "\f777";
}

.bi-magnet-fill::before {
  content: "\f778";
}

.bi-magnet::before {
  content: "\f779";
}

.bi-person-heart::before {
  content: "\f77a";
}

.bi-person-hearts::before {
  content: "\f77b";
}

.bi-phone-flip::before {
  content: "\f77c";
}

.bi-plugin::before {
  content: "\f77d";
}

.bi-postage-fill::before {
  content: "\f77e";
}

.bi-postage-heart-fill::before {
  content: "\f77f";
}

.bi-postage-heart::before {
  content: "\f780";
}

.bi-postage::before {
  content: "\f781";
}

.bi-postcard-fill::before {
  content: "\f782";
}

.bi-postcard-heart-fill::before {
  content: "\f783";
}

.bi-postcard-heart::before {
  content: "\f784";
}

.bi-postcard::before {
  content: "\f785";
}

.bi-search-heart-fill::before {
  content: "\f786";
}

.bi-search-heart::before {
  content: "\f787";
}

.bi-sliders2-vertical::before {
  content: "\f788";
}

.bi-sliders2::before {
  content: "\f789";
}

.bi-trash3-fill::before {
  content: "\f78a";
}

.bi-trash3::before {
  content: "\f78b";
}

.bi-valentine::before {
  content: "\f78c";
}

.bi-valentine2::before {
  content: "\f78d";
}

.bi-wrench-adjustable-circle-fill::before {
  content: "\f78e";
}

.bi-wrench-adjustable-circle::before {
  content: "\f78f";
}

.bi-wrench-adjustable::before {
  content: "\f790";
}

.bi-filetype-json::before {
  content: "\f791";
}

.bi-filetype-pptx::before {
  content: "\f792";
}

.bi-filetype-xlsx::before {
  content: "\f793";
}

.bi-1-circle-fill::before {
  content: "\f796";
}

.bi-1-circle::before {
  content: "\f797";
}

.bi-1-square-fill::before {
  content: "\f798";
}

.bi-1-square::before {
  content: "\f799";
}

.bi-2-circle-fill::before {
  content: "\f79c";
}

.bi-2-circle::before {
  content: "\f79d";
}

.bi-2-square-fill::before {
  content: "\f79e";
}

.bi-2-square::before {
  content: "\f79f";
}

.bi-3-circle-fill::before {
  content: "\f7a2";
}

.bi-3-circle::before {
  content: "\f7a3";
}

.bi-3-square-fill::before {
  content: "\f7a4";
}

.bi-3-square::before {
  content: "\f7a5";
}

.bi-4-circle-fill::before {
  content: "\f7a8";
}

.bi-4-circle::before {
  content: "\f7a9";
}

.bi-4-square-fill::before {
  content: "\f7aa";
}

.bi-4-square::before {
  content: "\f7ab";
}

.bi-5-circle-fill::before {
  content: "\f7ae";
}

.bi-5-circle::before {
  content: "\f7af";
}

.bi-5-square-fill::before {
  content: "\f7b0";
}

.bi-5-square::before {
  content: "\f7b1";
}

.bi-6-circle-fill::before {
  content: "\f7b4";
}

.bi-6-circle::before {
  content: "\f7b5";
}

.bi-6-square-fill::before {
  content: "\f7b6";
}

.bi-6-square::before {
  content: "\f7b7";
}

.bi-7-circle-fill::before {
  content: "\f7ba";
}

.bi-7-circle::before {
  content: "\f7bb";
}

.bi-7-square-fill::before {
  content: "\f7bc";
}

.bi-7-square::before {
  content: "\f7bd";
}

.bi-8-circle-fill::before {
  content: "\f7c0";
}

.bi-8-circle::before {
  content: "\f7c1";
}

.bi-8-square-fill::before {
  content: "\f7c2";
}

.bi-8-square::before {
  content: "\f7c3";
}

.bi-9-circle-fill::before {
  content: "\f7c6";
}

.bi-9-circle::before {
  content: "\f7c7";
}

.bi-9-square-fill::before {
  content: "\f7c8";
}

.bi-9-square::before {
  content: "\f7c9";
}

.bi-airplane-engines-fill::before {
  content: "\f7ca";
}

.bi-airplane-engines::before {
  content: "\f7cb";
}

.bi-airplane-fill::before {
  content: "\f7cc";
}

.bi-airplane::before {
  content: "\f7cd";
}

.bi-alexa::before {
  content: "\f7ce";
}

.bi-alipay::before {
  content: "\f7cf";
}

.bi-android::before {
  content: "\f7d0";
}

.bi-android2::before {
  content: "\f7d1";
}

.bi-box-fill::before {
  content: "\f7d2";
}

.bi-box-seam-fill::before {
  content: "\f7d3";
}

.bi-browser-chrome::before {
  content: "\f7d4";
}

.bi-browser-edge::before {
  content: "\f7d5";
}

.bi-browser-firefox::before {
  content: "\f7d6";
}

.bi-browser-safari::before {
  content: "\f7d7";
}

.bi-c-circle-fill::before {
  content: "\f7da";
}

.bi-c-circle::before {
  content: "\f7db";
}

.bi-c-square-fill::before {
  content: "\f7dc";
}

.bi-c-square::before {
  content: "\f7dd";
}

.bi-capsule-pill::before {
  content: "\f7de";
}

.bi-capsule::before {
  content: "\f7df";
}

.bi-car-front-fill::before {
  content: "\f7e0";
}

.bi-car-front::before {
  content: "\f7e1";
}

.bi-cassette-fill::before {
  content: "\f7e2";
}

.bi-cassette::before {
  content: "\f7e3";
}

.bi-cc-circle-fill::before {
  content: "\f7e6";
}

.bi-cc-circle::before {
  content: "\f7e7";
}

.bi-cc-square-fill::before {
  content: "\f7e8";
}

.bi-cc-square::before {
  content: "\f7e9";
}

.bi-cup-hot-fill::before {
  content: "\f7ea";
}

.bi-cup-hot::before {
  content: "\f7eb";
}

.bi-currency-rupee::before {
  content: "\f7ec";
}

.bi-dropbox::before {
  content: "\f7ed";
}

.bi-escape::before {
  content: "\f7ee";
}

.bi-fast-forward-btn-fill::before {
  content: "\f7ef";
}

.bi-fast-forward-btn::before {
  content: "\f7f0";
}

.bi-fast-forward-circle-fill::before {
  content: "\f7f1";
}

.bi-fast-forward-circle::before {
  content: "\f7f2";
}

.bi-fast-forward-fill::before {
  content: "\f7f3";
}

.bi-fast-forward::before {
  content: "\f7f4";
}

.bi-filetype-sql::before {
  content: "\f7f5";
}

.bi-fire::before {
  content: "\f7f6";
}

.bi-google-play::before {
  content: "\f7f7";
}

.bi-h-circle-fill::before {
  content: "\f7fa";
}

.bi-h-circle::before {
  content: "\f7fb";
}

.bi-h-square-fill::before {
  content: "\f7fc";
}

.bi-h-square::before {
  content: "\f7fd";
}

.bi-indent::before {
  content: "\f7fe";
}

.bi-lungs-fill::before {
  content: "\f7ff";
}

.bi-lungs::before {
  content: "\f800";
}

.bi-microsoft-teams::before {
  content: "\f801";
}

.bi-p-circle-fill::before {
  content: "\f804";
}

.bi-p-circle::before {
  content: "\f805";
}

.bi-p-square-fill::before {
  content: "\f806";
}

.bi-p-square::before {
  content: "\f807";
}

.bi-pass-fill::before {
  content: "\f808";
}

.bi-pass::before {
  content: "\f809";
}

.bi-prescription::before {
  content: "\f80a";
}

.bi-prescription2::before {
  content: "\f80b";
}

.bi-r-circle-fill::before {
  content: "\f80e";
}

.bi-r-circle::before {
  content: "\f80f";
}

.bi-r-square-fill::before {
  content: "\f810";
}

.bi-r-square::before {
  content: "\f811";
}

.bi-repeat-1::before {
  content: "\f812";
}

.bi-repeat::before {
  content: "\f813";
}

.bi-rewind-btn-fill::before {
  content: "\f814";
}

.bi-rewind-btn::before {
  content: "\f815";
}

.bi-rewind-circle-fill::before {
  content: "\f816";
}

.bi-rewind-circle::before {
  content: "\f817";
}

.bi-rewind-fill::before {
  content: "\f818";
}

.bi-rewind::before {
  content: "\f819";
}

.bi-train-freight-front-fill::before {
  content: "\f81a";
}

.bi-train-freight-front::before {
  content: "\f81b";
}

.bi-train-front-fill::before {
  content: "\f81c";
}

.bi-train-front::before {
  content: "\f81d";
}

.bi-train-lightrail-front-fill::before {
  content: "\f81e";
}

.bi-train-lightrail-front::before {
  content: "\f81f";
}

.bi-truck-front-fill::before {
  content: "\f820";
}

.bi-truck-front::before {
  content: "\f821";
}

.bi-ubuntu::before {
  content: "\f822";
}

.bi-unindent::before {
  content: "\f823";
}

.bi-unity::before {
  content: "\f824";
}

.bi-universal-access-circle::before {
  content: "\f825";
}

.bi-universal-access::before {
  content: "\f826";
}

.bi-virus::before {
  content: "\f827";
}

.bi-virus2::before {
  content: "\f828";
}

.bi-wechat::before {
  content: "\f829";
}

.bi-yelp::before {
  content: "\f82a";
}

.bi-sign-stop-fill::before {
  content: "\f82b";
}

.bi-sign-stop-lights-fill::before {
  content: "\f82c";
}

.bi-sign-stop-lights::before {
  content: "\f82d";
}

.bi-sign-stop::before {
  content: "\f82e";
}

.bi-sign-turn-left-fill::before {
  content: "\f82f";
}

.bi-sign-turn-left::before {
  content: "\f830";
}

.bi-sign-turn-right-fill::before {
  content: "\f831";
}

.bi-sign-turn-right::before {
  content: "\f832";
}

.bi-sign-turn-slight-left-fill::before {
  content: "\f833";
}

.bi-sign-turn-slight-left::before {
  content: "\f834";
}

.bi-sign-turn-slight-right-fill::before {
  content: "\f835";
}

.bi-sign-turn-slight-right::before {
  content: "\f836";
}

.bi-sign-yield-fill::before {
  content: "\f837";
}

.bi-sign-yield::before {
  content: "\f838";
}

.bi-ev-station-fill::before {
  content: "\f839";
}

.bi-ev-station::before {
  content: "\f83a";
}

.bi-fuel-pump-diesel-fill::before {
  content: "\f83b";
}

.bi-fuel-pump-diesel::before {
  content: "\f83c";
}

.bi-fuel-pump-fill::before {
  content: "\f83d";
}

.bi-fuel-pump::before {
  content: "\f83e";
}

.bi-0-circle-fill::before {
  content: "\f83f";
}

.bi-0-circle::before {
  content: "\f840";
}

.bi-0-square-fill::before {
  content: "\f841";
}

.bi-0-square::before {
  content: "\f842";
}

.bi-rocket-fill::before {
  content: "\f843";
}

.bi-rocket-takeoff-fill::before {
  content: "\f844";
}

.bi-rocket-takeoff::before {
  content: "\f845";
}

.bi-rocket::before {
  content: "\f846";
}

.bi-stripe::before {
  content: "\f847";
}

.bi-subscript::before {
  content: "\f848";
}

.bi-superscript::before {
  content: "\f849";
}

.bi-trello::before {
  content: "\f84a";
}

.bi-envelope-at-fill::before {
  content: "\f84b";
}

.bi-envelope-at::before {
  content: "\f84c";
}

.bi-regex::before {
  content: "\f84d";
}

.bi-text-wrap::before {
  content: "\f84e";
}

.bi-sign-dead-end-fill::before {
  content: "\f84f";
}

.bi-sign-dead-end::before {
  content: "\f850";
}

.bi-sign-do-not-enter-fill::before {
  content: "\f851";
}

.bi-sign-do-not-enter::before {
  content: "\f852";
}

.bi-sign-intersection-fill::before {
  content: "\f853";
}

.bi-sign-intersection-side-fill::before {
  content: "\f854";
}

.bi-sign-intersection-side::before {
  content: "\f855";
}

.bi-sign-intersection-t-fill::before {
  content: "\f856";
}

.bi-sign-intersection-t::before {
  content: "\f857";
}

.bi-sign-intersection-y-fill::before {
  content: "\f858";
}

.bi-sign-intersection-y::before {
  content: "\f859";
}

.bi-sign-intersection::before {
  content: "\f85a";
}

.bi-sign-merge-left-fill::before {
  content: "\f85b";
}

.bi-sign-merge-left::before {
  content: "\f85c";
}

.bi-sign-merge-right-fill::before {
  content: "\f85d";
}

.bi-sign-merge-right::before {
  content: "\f85e";
}

.bi-sign-no-left-turn-fill::before {
  content: "\f85f";
}

.bi-sign-no-left-turn::before {
  content: "\f860";
}

.bi-sign-no-parking-fill::before {
  content: "\f861";
}

.bi-sign-no-parking::before {
  content: "\f862";
}

.bi-sign-no-right-turn-fill::before {
  content: "\f863";
}

.bi-sign-no-right-turn::before {
  content: "\f864";
}

.bi-sign-railroad-fill::before {
  content: "\f865";
}

.bi-sign-railroad::before {
  content: "\f866";
}

.bi-building-add::before {
  content: "\f867";
}

.bi-building-check::before {
  content: "\f868";
}

.bi-building-dash::before {
  content: "\f869";
}

.bi-building-down::before {
  content: "\f86a";
}

.bi-building-exclamation::before {
  content: "\f86b";
}

.bi-building-fill-add::before {
  content: "\f86c";
}

.bi-building-fill-check::before {
  content: "\f86d";
}

.bi-building-fill-dash::before {
  content: "\f86e";
}

.bi-building-fill-down::before {
  content: "\f86f";
}

.bi-building-fill-exclamation::before {
  content: "\f870";
}

.bi-building-fill-gear::before {
  content: "\f871";
}

.bi-building-fill-lock::before {
  content: "\f872";
}

.bi-building-fill-slash::before {
  content: "\f873";
}

.bi-building-fill-up::before {
  content: "\f874";
}

.bi-building-fill-x::before {
  content: "\f875";
}

.bi-building-fill::before {
  content: "\f876";
}

.bi-building-gear::before {
  content: "\f877";
}

.bi-building-lock::before {
  content: "\f878";
}

.bi-building-slash::before {
  content: "\f879";
}

.bi-building-up::before {
  content: "\f87a";
}

.bi-building-x::before {
  content: "\f87b";
}

.bi-buildings-fill::before {
  content: "\f87c";
}

.bi-buildings::before {
  content: "\f87d";
}

.bi-bus-front-fill::before {
  content: "\f87e";
}

.bi-bus-front::before {
  content: "\f87f";
}

.bi-ev-front-fill::before {
  content: "\f880";
}

.bi-ev-front::before {
  content: "\f881";
}

.bi-globe-americas::before {
  content: "\f882";
}

.bi-globe-asia-australia::before {
  content: "\f883";
}

.bi-globe-central-south-asia::before {
  content: "\f884";
}

.bi-globe-europe-africa::before {
  content: "\f885";
}

.bi-house-add-fill::before {
  content: "\f886";
}

.bi-house-add::before {
  content: "\f887";
}

.bi-house-check-fill::before {
  content: "\f888";
}

.bi-house-check::before {
  content: "\f889";
}

.bi-house-dash-fill::before {
  content: "\f88a";
}

.bi-house-dash::before {
  content: "\f88b";
}

.bi-house-down-fill::before {
  content: "\f88c";
}

.bi-house-down::before {
  content: "\f88d";
}

.bi-house-exclamation-fill::before {
  content: "\f88e";
}

.bi-house-exclamation::before {
  content: "\f88f";
}

.bi-house-gear-fill::before {
  content: "\f890";
}

.bi-house-gear::before {
  content: "\f891";
}

.bi-house-lock-fill::before {
  content: "\f892";
}

.bi-house-lock::before {
  content: "\f893";
}

.bi-house-slash-fill::before {
  content: "\f894";
}

.bi-house-slash::before {
  content: "\f895";
}

.bi-house-up-fill::before {
  content: "\f896";
}

.bi-house-up::before {
  content: "\f897";
}

.bi-house-x-fill::before {
  content: "\f898";
}

.bi-house-x::before {
  content: "\f899";
}

.bi-person-add::before {
  content: "\f89a";
}

.bi-person-down::before {
  content: "\f89b";
}

.bi-person-exclamation::before {
  content: "\f89c";
}

.bi-person-fill-add::before {
  content: "\f89d";
}

.bi-person-fill-check::before {
  content: "\f89e";
}

.bi-person-fill-dash::before {
  content: "\f89f";
}

.bi-person-fill-down::before {
  content: "\f8a0";
}

.bi-person-fill-exclamation::before {
  content: "\f8a1";
}

.bi-person-fill-gear::before {
  content: "\f8a2";
}

.bi-person-fill-lock::before {
  content: "\f8a3";
}

.bi-person-fill-slash::before {
  content: "\f8a4";
}

.bi-person-fill-up::before {
  content: "\f8a5";
}

.bi-person-fill-x::before {
  content: "\f8a6";
}

.bi-person-gear::before {
  content: "\f8a7";
}

.bi-person-lock::before {
  content: "\f8a8";
}

.bi-person-slash::before {
  content: "\f8a9";
}

.bi-person-up::before {
  content: "\f8aa";
}

.bi-scooter::before {
  content: "\f8ab";
}

.bi-taxi-front-fill::before {
  content: "\f8ac";
}

.bi-taxi-front::before {
  content: "\f8ad";
}

.bi-amd::before {
  content: "\f8ae";
}

.bi-database-add::before {
  content: "\f8af";
}

.bi-database-check::before {
  content: "\f8b0";
}

.bi-database-dash::before {
  content: "\f8b1";
}

.bi-database-down::before {
  content: "\f8b2";
}

.bi-database-exclamation::before {
  content: "\f8b3";
}

.bi-database-fill-add::before {
  content: "\f8b4";
}

.bi-database-fill-check::before {
  content: "\f8b5";
}

.bi-database-fill-dash::before {
  content: "\f8b6";
}

.bi-database-fill-down::before {
  content: "\f8b7";
}

.bi-database-fill-exclamation::before {
  content: "\f8b8";
}

.bi-database-fill-gear::before {
  content: "\f8b9";
}

.bi-database-fill-lock::before {
  content: "\f8ba";
}

.bi-database-fill-slash::before {
  content: "\f8bb";
}

.bi-database-fill-up::before {
  content: "\f8bc";
}

.bi-database-fill-x::before {
  content: "\f8bd";
}

.bi-database-fill::before {
  content: "\f8be";
}

.bi-database-gear::before {
  content: "\f8bf";
}

.bi-database-lock::before {
  content: "\f8c0";
}

.bi-database-slash::before {
  content: "\f8c1";
}

.bi-database-up::before {
  content: "\f8c2";
}

.bi-database-x::before {
  content: "\f8c3";
}

.bi-database::before {
  content: "\f8c4";
}

.bi-houses-fill::before {
  content: "\f8c5";
}

.bi-houses::before {
  content: "\f8c6";
}

.bi-nvidia::before {
  content: "\f8c7";
}

.bi-person-vcard-fill::before {
  content: "\f8c8";
}

.bi-person-vcard::before {
  content: "\f8c9";
}

.bi-sina-weibo::before {
  content: "\f8ca";
}

.bi-tencent-qq::before {
  content: "\f8cb";
}

.bi-wikipedia::before {
  content: "\f8cc";
}

.bi-alphabet-uppercase::before {
  content: "\f2a5";
}

.bi-alphabet::before {
  content: "\f68a";
}

.bi-amazon::before {
  content: "\f68d";
}

.bi-arrows-collapse-vertical::before {
  content: "\f690";
}

.bi-arrows-expand-vertical::before {
  content: "\f695";
}

.bi-arrows-vertical::before {
  content: "\f698";
}

.bi-arrows::before {
  content: "\f6a2";
}

.bi-ban-fill::before {
  content: "\f6a3";
}

.bi-ban::before {
  content: "\f6b6";
}

.bi-bing::before {
  content: "\f6c2";
}

.bi-cake::before {
  content: "\f6e0";
}

.bi-cake2::before {
  content: "\f6ed";
}

.bi-cookie::before {
  content: "\f6ee";
}

.bi-copy::before {
  content: "\f759";
}

.bi-crosshair::before {
  content: "\f769";
}

.bi-crosshair2::before {
  content: "\f794";
}

.bi-emoji-astonished-fill::before {
  content: "\f795";
}

.bi-emoji-astonished::before {
  content: "\f79a";
}

.bi-emoji-grimace-fill::before {
  content: "\f79b";
}

.bi-emoji-grimace::before {
  content: "\f7a0";
}

.bi-emoji-grin-fill::before {
  content: "\f7a1";
}

.bi-emoji-grin::before {
  content: "\f7a6";
}

.bi-emoji-surprise-fill::before {
  content: "\f7a7";
}

.bi-emoji-surprise::before {
  content: "\f7ac";
}

.bi-emoji-tear-fill::before {
  content: "\f7ad";
}

.bi-emoji-tear::before {
  content: "\f7b2";
}

.bi-envelope-arrow-down-fill::before {
  content: "\f7b3";
}

.bi-envelope-arrow-down::before {
  content: "\f7b8";
}

.bi-envelope-arrow-up-fill::before {
  content: "\f7b9";
}

.bi-envelope-arrow-up::before {
  content: "\f7be";
}

.bi-feather::before {
  content: "\f7bf";
}

.bi-feather2::before {
  content: "\f7c4";
}

.bi-floppy-fill::before {
  content: "\f7c5";
}

.bi-floppy::before {
  content: "\f7d8";
}

.bi-floppy2-fill::before {
  content: "\f7d9";
}

.bi-floppy2::before {
  content: "\f7e4";
}

.bi-gitlab::before {
  content: "\f7e5";
}

.bi-highlighter::before {
  content: "\f7f8";
}

.bi-marker-tip::before {
  content: "\f802";
}

.bi-nvme-fill::before {
  content: "\f803";
}

.bi-nvme::before {
  content: "\f80c";
}

.bi-opencollective::before {
  content: "\f80d";
}

.bi-pci-card-network::before {
  content: "\f8cd";
}

.bi-pci-card-sound::before {
  content: "\f8ce";
}

.bi-radar::before {
  content: "\f8cf";
}

.bi-send-arrow-down-fill::before {
  content: "\f8d0";
}

.bi-send-arrow-down::before {
  content: "\f8d1";
}

.bi-send-arrow-up-fill::before {
  content: "\f8d2";
}

.bi-send-arrow-up::before {
  content: "\f8d3";
}

.bi-sim-slash-fill::before {
  content: "\f8d4";
}

.bi-sim-slash::before {
  content: "\f8d5";
}

.bi-sourceforge::before {
  content: "\f8d6";
}

.bi-substack::before {
  content: "\f8d7";
}

.bi-threads-fill::before {
  content: "\f8d8";
}

.bi-threads::before {
  content: "\f8d9";
}

.bi-transparency::before {
  content: "\f8da";
}

.bi-twitter-x::before {
  content: "\f8db";
}

.bi-type-h4::before {
  content: "\f8dc";
}

.bi-type-h5::before {
  content: "\f8dd";
}

.bi-type-h6::before {
  content: "\f8de";
}

.bi-backpack-fill::before {
  content: "\f8df";
}

.bi-backpack::before {
  content: "\f8e0";
}

.bi-backpack2-fill::before {
  content: "\f8e1";
}

.bi-backpack2::before {
  content: "\f8e2";
}

.bi-backpack3-fill::before {
  content: "\f8e3";
}

.bi-backpack3::before {
  content: "\f8e4";
}

.bi-backpack4-fill::before {
  content: "\f8e5";
}

.bi-backpack4::before {
  content: "\f8e6";
}

.bi-brilliance::before {
  content: "\f8e7";
}

.bi-cake-fill::before {
  content: "\f8e8";
}

.bi-cake2-fill::before {
  content: "\f8e9";
}

.bi-duffle-fill::before {
  content: "\f8ea";
}

.bi-duffle::before {
  content: "\f8eb";
}

.bi-exposure::before {
  content: "\f8ec";
}

.bi-gender-neuter::before {
  content: "\f8ed";
}

.bi-highlights::before {
  content: "\f8ee";
}

.bi-luggage-fill::before {
  content: "\f8ef";
}

.bi-luggage::before {
  content: "\f8f0";
}

.bi-mailbox-flag::before {
  content: "\f8f1";
}

.bi-mailbox2-flag::before {
  content: "\f8f2";
}

.bi-noise-reduction::before {
  content: "\f8f3";
}

.bi-passport-fill::before {
  content: "\f8f4";
}

.bi-passport::before {
  content: "\f8f5";
}

.bi-person-arms-up::before {
  content: "\f8f6";
}

.bi-person-raised-hand::before {
  content: "\f8f7";
}

.bi-person-standing-dress::before {
  content: "\f8f8";
}

.bi-person-standing::before {
  content: "\f8f9";
}

.bi-person-walking::before {
  content: "\f8fa";
}

.bi-person-wheelchair::before {
  content: "\f8fb";
}

.bi-shadows::before {
  content: "\f8fc";
}

.bi-suitcase-fill::before {
  content: "\f8fd";
}

.bi-suitcase-lg-fill::before {
  content: "\f8fe";
}

.bi-suitcase-lg::before {
  content: "\f8ff";
}

.bi-suitcase::before {
  content: "豈";
}

.bi-suitcase2-fill::before {
  content: "更";
}

.bi-suitcase2::before {
  content: "車";
}

.bi-vignette::before {
  content: "賈";
}

.bi-bluesky::before {
  content: "\f7f9";
}

.bi-tux::before {
  content: "滑";
}

.bi-beaker-fill::before {
  content: "串";
}

.bi-beaker::before {
  content: "句";
}

.bi-flask-fill::before {
  content: "龜";
}

.bi-flask-florence-fill::before {
  content: "龜";
}

.bi-flask-florence::before {
  content: "契";
}

.bi-flask::before {
  content: "金";
}

.bi-leaf-fill::before {
  content: "喇";
}

.bi-leaf::before {
  content: "奈";
}

.bi-measuring-cup-fill::before {
  content: "懶";
}

.bi-measuring-cup::before {
  content: "癩";
}

.bi-unlock2-fill::before {
  content: "羅";
}

.bi-unlock2::before {
  content: "蘿";
}

.bi-battery-low::before {
  content: "螺";
}

.bi-anthropic::before {
  content: "裸";
}

.bi-apple-music::before {
  content: "邏";
}

.bi-claude::before {
  content: "樂";
}

.bi-openai::before {
  content: "洛";
}

.bi-perplexity::before {
  content: "烙";
}

.bi-css::before {
  content: "珞";
}

.bi-javascript::before {
  content: "落";
}

.bi-typescript::before {
  content: "酪";
}

.bi-fork-knife::before {
  content: "駱";
}

.bi-globe-americas-fill::before {
  content: "亂";
}

.bi-globe-asia-australia-fill::before {
  content: "卵";
}

.bi-globe-central-south-asia-fill::before {
  content: "欄";
}

.bi-globe-europe-africa-fill::before {
  content: "爛";
}
/*!
 * Quill Editor v2.0.3
 * https://quilljs.com
 * Copyright (c) 2017-2024, Slab
 * Copyright (c) 2014, Jason Chen
 * Copyright (c) 2013, salesforce.com
 */
.ql-container{box-sizing:border-box;font-family:Helvetica,Arial,sans-serif;font-size:13px;height:100%;margin:0;position:relative}.ql-container.ql-disabled .ql-tooltip{visibility:hidden}.ql-container:not(.ql-disabled) li[data-list=checked] > .ql-ui,.ql-container:not(.ql-disabled) li[data-list=unchecked] > .ql-ui{cursor:pointer}.ql-clipboard{left:-100000px;height:1px;overflow-y:hidden;position:absolute;top:50%}.ql-clipboard p{margin:0;padding:0}.ql-editor{box-sizing:border-box;counter-reset:list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;line-height:1.42;height:100%;outline:none;overflow-y:auto;padding:12px 15px;tab-size:4;-moz-tab-size:4;text-align:left;white-space:pre-wrap;word-wrap:break-word}.ql-editor > *{cursor:text}.ql-editor p,.ql-editor ol,.ql-editor pre,.ql-editor blockquote,.ql-editor h1,.ql-editor h2,.ql-editor h3,.ql-editor h4,.ql-editor h5,.ql-editor h6{margin:0;padding:0}@supports (counter-set:none){.ql-editor p,.ql-editor h1,.ql-editor h2,.ql-editor h3,.ql-editor h4,.ql-editor h5,.ql-editor h6{counter-set:list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9}}@supports not (counter-set:none){.ql-editor p,.ql-editor h1,.ql-editor h2,.ql-editor h3,.ql-editor h4,.ql-editor h5,.ql-editor h6{counter-reset:list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9}}.ql-editor table{border-collapse:collapse}.ql-editor td{border:1px solid #000;padding:2px 5px}.ql-editor ol{padding-left:1.5em}.ql-editor li{list-style-type:none;padding-left:1.5em;position:relative}.ql-editor li > .ql-ui:before{display:inline-block;margin-left:-1.5em;margin-right:.3em;text-align:right;white-space:nowrap;width:1.2em}.ql-editor li[data-list=checked] > .ql-ui,.ql-editor li[data-list=unchecked] > .ql-ui{color:#777}.ql-editor li[data-list=bullet] > .ql-ui:before{content:'\2022'}.ql-editor li[data-list=checked] > .ql-ui:before{content:'\2611'}.ql-editor li[data-list=unchecked] > .ql-ui:before{content:'\2610'}@supports (counter-set:none){.ql-editor li[data-list]{counter-set:list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9}}@supports not (counter-set:none){.ql-editor li[data-list]{counter-reset:list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9}}.ql-editor li[data-list=ordered]{counter-increment:list-0}.ql-editor li[data-list=ordered] > .ql-ui:before{content:counter(list-0, decimal) '. '}.ql-editor li[data-list=ordered].ql-indent-1{counter-increment:list-1}.ql-editor li[data-list=ordered].ql-indent-1 > .ql-ui:before{content:counter(list-1, lower-alpha) '. '}@supports (counter-set:none){.ql-editor li[data-list].ql-indent-1{counter-set:list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9}}@supports not (counter-set:none){.ql-editor li[data-list].ql-indent-1{counter-reset:list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9}}.ql-editor li[data-list=ordered].ql-indent-2{counter-increment:list-2}.ql-editor li[data-list=ordered].ql-indent-2 > .ql-ui:before{content:counter(list-2, lower-roman) '. '}@supports (counter-set:none){.ql-editor li[data-list].ql-indent-2{counter-set:list-3 list-4 list-5 list-6 list-7 list-8 list-9}}@supports not (counter-set:none){.ql-editor li[data-list].ql-indent-2{counter-reset:list-3 list-4 list-5 list-6 list-7 list-8 list-9}}.ql-editor li[data-list=ordered].ql-indent-3{counter-increment:list-3}.ql-editor li[data-list=ordered].ql-indent-3 > .ql-ui:before{content:counter(list-3, decimal) '. '}@supports (counter-set:none){.ql-editor li[data-list].ql-indent-3{counter-set:list-4 list-5 list-6 list-7 list-8 list-9}}@supports not (counter-set:none){.ql-editor li[data-list].ql-indent-3{counter-reset:list-4 list-5 list-6 list-7 list-8 list-9}}.ql-editor li[data-list=ordered].ql-indent-4{counter-increment:list-4}.ql-editor li[data-list=ordered].ql-indent-4 > .ql-ui:before{content:counter(list-4, lower-alpha) '. '}@supports (counter-set:none){.ql-editor li[data-list].ql-indent-4{counter-set:list-5 list-6 list-7 list-8 list-9}}@supports not (counter-set:none){.ql-editor li[data-list].ql-indent-4{counter-reset:list-5 list-6 list-7 list-8 list-9}}.ql-editor li[data-list=ordered].ql-indent-5{counter-increment:list-5}.ql-editor li[data-list=ordered].ql-indent-5 > .ql-ui:before{content:counter(list-5, lower-roman) '. '}@supports (counter-set:none){.ql-editor li[data-list].ql-indent-5{counter-set:list-6 list-7 list-8 list-9}}@supports not (counter-set:none){.ql-editor li[data-list].ql-indent-5{counter-reset:list-6 list-7 list-8 list-9}}.ql-editor li[data-list=ordered].ql-indent-6{counter-increment:list-6}.ql-editor li[data-list=ordered].ql-indent-6 > .ql-ui:before{content:counter(list-6, decimal) '. '}@supports (counter-set:none){.ql-editor li[data-list].ql-indent-6{counter-set:list-7 list-8 list-9}}@supports not (counter-set:none){.ql-editor li[data-list].ql-indent-6{counter-reset:list-7 list-8 list-9}}.ql-editor li[data-list=ordered].ql-indent-7{counter-increment:list-7}.ql-editor li[data-list=ordered].ql-indent-7 > .ql-ui:before{content:counter(list-7, lower-alpha) '. '}@supports (counter-set:none){.ql-editor li[data-list].ql-indent-7{counter-set:list-8 list-9}}@supports not (counter-set:none){.ql-editor li[data-list].ql-indent-7{counter-reset:list-8 list-9}}.ql-editor li[data-list=ordered].ql-indent-8{counter-increment:list-8}.ql-editor li[data-list=ordered].ql-indent-8 > .ql-ui:before{content:counter(list-8, lower-roman) '. '}@supports (counter-set:none){.ql-editor li[data-list].ql-indent-8{counter-set:list-9}}@supports not (counter-set:none){.ql-editor li[data-list].ql-indent-8{counter-reset:list-9}}.ql-editor li[data-list=ordered].ql-indent-9{counter-increment:list-9}.ql-editor li[data-list=ordered].ql-indent-9 > .ql-ui:before{content:counter(list-9, decimal) '. '}.ql-editor .ql-indent-1:not(.ql-direction-rtl){padding-left:3em}.ql-editor li.ql-indent-1:not(.ql-direction-rtl){padding-left:4.5em}.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right{padding-right:3em}.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right{padding-right:4.5em}.ql-editor .ql-indent-2:not(.ql-direction-rtl){padding-left:6em}.ql-editor li.ql-indent-2:not(.ql-direction-rtl){padding-left:7.5em}.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right{padding-right:6em}.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right{padding-right:7.5em}.ql-editor .ql-indent-3:not(.ql-direction-rtl){padding-left:9em}.ql-editor li.ql-indent-3:not(.ql-direction-rtl){padding-left:10.5em}.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right{padding-right:9em}.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right{padding-right:10.5em}.ql-editor .ql-indent-4:not(.ql-direction-rtl){padding-left:12em}.ql-editor li.ql-indent-4:not(.ql-direction-rtl){padding-left:13.5em}.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right{padding-right:12em}.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right{padding-right:13.5em}.ql-editor .ql-indent-5:not(.ql-direction-rtl){padding-left:15em}.ql-editor li.ql-indent-5:not(.ql-direction-rtl){padding-left:16.5em}.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right{padding-right:15em}.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right{padding-right:16.5em}.ql-editor .ql-indent-6:not(.ql-direction-rtl){padding-left:18em}.ql-editor li.ql-indent-6:not(.ql-direction-rtl){padding-left:19.5em}.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right{padding-right:18em}.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right{padding-right:19.5em}.ql-editor .ql-indent-7:not(.ql-direction-rtl){padding-left:21em}.ql-editor li.ql-indent-7:not(.ql-direction-rtl){padding-left:22.5em}.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right{padding-right:21em}.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right{padding-right:22.5em}.ql-editor .ql-indent-8:not(.ql-direction-rtl){padding-left:24em}.ql-editor li.ql-indent-8:not(.ql-direction-rtl){padding-left:25.5em}.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right{padding-right:24em}.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right{padding-right:25.5em}.ql-editor .ql-indent-9:not(.ql-direction-rtl){padding-left:27em}.ql-editor li.ql-indent-9:not(.ql-direction-rtl){padding-left:28.5em}.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right{padding-right:27em}.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right{padding-right:28.5em}.ql-editor li.ql-direction-rtl{padding-right:1.5em}.ql-editor li.ql-direction-rtl > .ql-ui:before{margin-left:.3em;margin-right:-1.5em;text-align:left}.ql-editor table{table-layout:fixed;width:100%}.ql-editor table td{outline:none}.ql-editor .ql-code-block-container{font-family:monospace}.ql-editor .ql-video{display:block;max-width:100%}.ql-editor .ql-video.ql-align-center{margin:0 auto}.ql-editor .ql-video.ql-align-right{margin:0 0 0 auto}.ql-editor .ql-bg-black{background-color:#000}.ql-editor .ql-bg-red{background-color:#e60000}.ql-editor .ql-bg-orange{background-color:#f90}.ql-editor .ql-bg-yellow{background-color:#ff0}.ql-editor .ql-bg-green{background-color:#008a00}.ql-editor .ql-bg-blue{background-color:#06c}.ql-editor .ql-bg-purple{background-color:#93f}.ql-editor .ql-color-white{color:#fff}.ql-editor .ql-color-red{color:#e60000}.ql-editor .ql-color-orange{color:#f90}.ql-editor .ql-color-yellow{color:#ff0}.ql-editor .ql-color-green{color:#008a00}.ql-editor .ql-color-blue{color:#06c}.ql-editor .ql-color-purple{color:#93f}.ql-editor .ql-font-serif{font-family:Georgia,Times New Roman,serif}.ql-editor .ql-font-monospace{font-family:Monaco,Courier New,monospace}.ql-editor .ql-size-small{font-size:.75em}.ql-editor .ql-size-large{font-size:1.5em}.ql-editor .ql-size-huge{font-size:2.5em}.ql-editor .ql-direction-rtl{direction:rtl;text-align:inherit}.ql-editor .ql-align-center{text-align:center}.ql-editor .ql-align-justify{text-align:justify}.ql-editor .ql-align-right{text-align:right}.ql-editor .ql-ui{position:absolute}.ql-editor.ql-blank::before{color:rgba(0,0,0,0.6);content:attr(data-placeholder);font-style:italic;left:15px;pointer-events:none;position:absolute;right:15px}
/*!
 * Quill Editor v2.0.3
 * https://quilljs.com
 * Copyright (c) 2017-2024, Slab
 * Copyright (c) 2014, Jason Chen
 * Copyright (c) 2013, salesforce.com
 */
.ql-container{box-sizing:border-box;font-family:Helvetica,Arial,sans-serif;font-size:13px;height:100%;margin:0;position:relative}.ql-container.ql-disabled .ql-tooltip{visibility:hidden}.ql-container:not(.ql-disabled) li[data-list=checked] > .ql-ui,.ql-container:not(.ql-disabled) li[data-list=unchecked] > .ql-ui{cursor:pointer}.ql-clipboard{left:-100000px;height:1px;overflow-y:hidden;position:absolute;top:50%}.ql-clipboard p{margin:0;padding:0}.ql-editor{box-sizing:border-box;counter-reset:list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;line-height:1.42;height:100%;outline:none;overflow-y:auto;padding:12px 15px;tab-size:4;-moz-tab-size:4;text-align:left;white-space:pre-wrap;word-wrap:break-word}.ql-editor > *{cursor:text}.ql-editor p,.ql-editor ol,.ql-editor pre,.ql-editor blockquote,.ql-editor h1,.ql-editor h2,.ql-editor h3,.ql-editor h4,.ql-editor h5,.ql-editor h6{margin:0;padding:0}@supports (counter-set:none){.ql-editor p,.ql-editor h1,.ql-editor h2,.ql-editor h3,.ql-editor h4,.ql-editor h5,.ql-editor h6{counter-set:list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9}}@supports not (counter-set:none){.ql-editor p,.ql-editor h1,.ql-editor h2,.ql-editor h3,.ql-editor h4,.ql-editor h5,.ql-editor h6{counter-reset:list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9}}.ql-editor table{border-collapse:collapse}.ql-editor td{border:1px solid #000;padding:2px 5px}.ql-editor ol{padding-left:1.5em}.ql-editor li{list-style-type:none;padding-left:1.5em;position:relative}.ql-editor li > .ql-ui:before{display:inline-block;margin-left:-1.5em;margin-right:.3em;text-align:right;white-space:nowrap;width:1.2em}.ql-editor li[data-list=checked] > .ql-ui,.ql-editor li[data-list=unchecked] > .ql-ui{color:#777}.ql-editor li[data-list=bullet] > .ql-ui:before{content:'\2022'}.ql-editor li[data-list=checked] > .ql-ui:before{content:'\2611'}.ql-editor li[data-list=unchecked] > .ql-ui:before{content:'\2610'}@supports (counter-set:none){.ql-editor li[data-list]{counter-set:list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9}}@supports not (counter-set:none){.ql-editor li[data-list]{counter-reset:list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9}}.ql-editor li[data-list=ordered]{counter-increment:list-0}.ql-editor li[data-list=ordered] > .ql-ui:before{content:counter(list-0, decimal) '. '}.ql-editor li[data-list=ordered].ql-indent-1{counter-increment:list-1}.ql-editor li[data-list=ordered].ql-indent-1 > .ql-ui:before{content:counter(list-1, lower-alpha) '. '}@supports (counter-set:none){.ql-editor li[data-list].ql-indent-1{counter-set:list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9}}@supports not (counter-set:none){.ql-editor li[data-list].ql-indent-1{counter-reset:list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9}}.ql-editor li[data-list=ordered].ql-indent-2{counter-increment:list-2}.ql-editor li[data-list=ordered].ql-indent-2 > .ql-ui:before{content:counter(list-2, lower-roman) '. '}@supports (counter-set:none){.ql-editor li[data-list].ql-indent-2{counter-set:list-3 list-4 list-5 list-6 list-7 list-8 list-9}}@supports not (counter-set:none){.ql-editor li[data-list].ql-indent-2{counter-reset:list-3 list-4 list-5 list-6 list-7 list-8 list-9}}.ql-editor li[data-list=ordered].ql-indent-3{counter-increment:list-3}.ql-editor li[data-list=ordered].ql-indent-3 > .ql-ui:before{content:counter(list-3, decimal) '. '}@supports (counter-set:none){.ql-editor li[data-list].ql-indent-3{counter-set:list-4 list-5 list-6 list-7 list-8 list-9}}@supports not (counter-set:none){.ql-editor li[data-list].ql-indent-3{counter-reset:list-4 list-5 list-6 list-7 list-8 list-9}}.ql-editor li[data-list=ordered].ql-indent-4{counter-increment:list-4}.ql-editor li[data-list=ordered].ql-indent-4 > .ql-ui:before{content:counter(list-4, lower-alpha) '. '}@supports (counter-set:none){.ql-editor li[data-list].ql-indent-4{counter-set:list-5 list-6 list-7 list-8 list-9}}@supports not (counter-set:none){.ql-editor li[data-list].ql-indent-4{counter-reset:list-5 list-6 list-7 list-8 list-9}}.ql-editor li[data-list=ordered].ql-indent-5{counter-increment:list-5}.ql-editor li[data-list=ordered].ql-indent-5 > .ql-ui:before{content:counter(list-5, lower-roman) '. '}@supports (counter-set:none){.ql-editor li[data-list].ql-indent-5{counter-set:list-6 list-7 list-8 list-9}}@supports not (counter-set:none){.ql-editor li[data-list].ql-indent-5{counter-reset:list-6 list-7 list-8 list-9}}.ql-editor li[data-list=ordered].ql-indent-6{counter-increment:list-6}.ql-editor li[data-list=ordered].ql-indent-6 > .ql-ui:before{content:counter(list-6, decimal) '. '}@supports (counter-set:none){.ql-editor li[data-list].ql-indent-6{counter-set:list-7 list-8 list-9}}@supports not (counter-set:none){.ql-editor li[data-list].ql-indent-6{counter-reset:list-7 list-8 list-9}}.ql-editor li[data-list=ordered].ql-indent-7{counter-increment:list-7}.ql-editor li[data-list=ordered].ql-indent-7 > .ql-ui:before{content:counter(list-7, lower-alpha) '. '}@supports (counter-set:none){.ql-editor li[data-list].ql-indent-7{counter-set:list-8 list-9}}@supports not (counter-set:none){.ql-editor li[data-list].ql-indent-7{counter-reset:list-8 list-9}}.ql-editor li[data-list=ordered].ql-indent-8{counter-increment:list-8}.ql-editor li[data-list=ordered].ql-indent-8 > .ql-ui:before{content:counter(list-8, lower-roman) '. '}@supports (counter-set:none){.ql-editor li[data-list].ql-indent-8{counter-set:list-9}}@supports not (counter-set:none){.ql-editor li[data-list].ql-indent-8{counter-reset:list-9}}.ql-editor li[data-list=ordered].ql-indent-9{counter-increment:list-9}.ql-editor li[data-list=ordered].ql-indent-9 > .ql-ui:before{content:counter(list-9, decimal) '. '}.ql-editor .ql-indent-1:not(.ql-direction-rtl){padding-left:3em}.ql-editor li.ql-indent-1:not(.ql-direction-rtl){padding-left:4.5em}.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right{padding-right:3em}.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right{padding-right:4.5em}.ql-editor .ql-indent-2:not(.ql-direction-rtl){padding-left:6em}.ql-editor li.ql-indent-2:not(.ql-direction-rtl){padding-left:7.5em}.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right{padding-right:6em}.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right{padding-right:7.5em}.ql-editor .ql-indent-3:not(.ql-direction-rtl){padding-left:9em}.ql-editor li.ql-indent-3:not(.ql-direction-rtl){padding-left:10.5em}.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right{padding-right:9em}.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right{padding-right:10.5em}.ql-editor .ql-indent-4:not(.ql-direction-rtl){padding-left:12em}.ql-editor li.ql-indent-4:not(.ql-direction-rtl){padding-left:13.5em}.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right{padding-right:12em}.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right{padding-right:13.5em}.ql-editor .ql-indent-5:not(.ql-direction-rtl){padding-left:15em}.ql-editor li.ql-indent-5:not(.ql-direction-rtl){padding-left:16.5em}.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right{padding-right:15em}.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right{padding-right:16.5em}.ql-editor .ql-indent-6:not(.ql-direction-rtl){padding-left:18em}.ql-editor li.ql-indent-6:not(.ql-direction-rtl){padding-left:19.5em}.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right{padding-right:18em}.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right{padding-right:19.5em}.ql-editor .ql-indent-7:not(.ql-direction-rtl){padding-left:21em}.ql-editor li.ql-indent-7:not(.ql-direction-rtl){padding-left:22.5em}.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right{padding-right:21em}.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right{padding-right:22.5em}.ql-editor .ql-indent-8:not(.ql-direction-rtl){padding-left:24em}.ql-editor li.ql-indent-8:not(.ql-direction-rtl){padding-left:25.5em}.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right{padding-right:24em}.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right{padding-right:25.5em}.ql-editor .ql-indent-9:not(.ql-direction-rtl){padding-left:27em}.ql-editor li.ql-indent-9:not(.ql-direction-rtl){padding-left:28.5em}.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right{padding-right:27em}.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right{padding-right:28.5em}.ql-editor li.ql-direction-rtl{padding-right:1.5em}.ql-editor li.ql-direction-rtl > .ql-ui:before{margin-left:.3em;margin-right:-1.5em;text-align:left}.ql-editor table{table-layout:fixed;width:100%}.ql-editor table td{outline:none}.ql-editor .ql-code-block-container{font-family:monospace}.ql-editor .ql-video{display:block;max-width:100%}.ql-editor .ql-video.ql-align-center{margin:0 auto}.ql-editor .ql-video.ql-align-right{margin:0 0 0 auto}.ql-editor .ql-bg-black{background-color:#000}.ql-editor .ql-bg-red{background-color:#e60000}.ql-editor .ql-bg-orange{background-color:#f90}.ql-editor .ql-bg-yellow{background-color:#ff0}.ql-editor .ql-bg-green{background-color:#008a00}.ql-editor .ql-bg-blue{background-color:#06c}.ql-editor .ql-bg-purple{background-color:#93f}.ql-editor .ql-color-white{color:#fff}.ql-editor .ql-color-red{color:#e60000}.ql-editor .ql-color-orange{color:#f90}.ql-editor .ql-color-yellow{color:#ff0}.ql-editor .ql-color-green{color:#008a00}.ql-editor .ql-color-blue{color:#06c}.ql-editor .ql-color-purple{color:#93f}.ql-editor .ql-font-serif{font-family:Georgia,Times New Roman,serif}.ql-editor .ql-font-monospace{font-family:Monaco,Courier New,monospace}.ql-editor .ql-size-small{font-size:.75em}.ql-editor .ql-size-large{font-size:1.5em}.ql-editor .ql-size-huge{font-size:2.5em}.ql-editor .ql-direction-rtl{direction:rtl;text-align:inherit}.ql-editor .ql-align-center{text-align:center}.ql-editor .ql-align-justify{text-align:justify}.ql-editor .ql-align-right{text-align:right}.ql-editor .ql-ui{position:absolute}.ql-editor.ql-blank::before{color:rgba(0,0,0,0.6);content:attr(data-placeholder);font-style:italic;left:15px;pointer-events:none;position:absolute;right:15px}.ql-snow.ql-toolbar:after,.ql-snow .ql-toolbar:after{clear:both;content:'';display:table}.ql-snow.ql-toolbar button,.ql-snow .ql-toolbar button{background:none;border:none;cursor:pointer;display:inline-block;float:left;height:24px;padding:3px 5px;width:28px}.ql-snow.ql-toolbar button svg,.ql-snow .ql-toolbar button svg{float:left;height:100%}.ql-snow.ql-toolbar button:active:hover,.ql-snow .ql-toolbar button:active:hover{outline:none}.ql-snow.ql-toolbar input.ql-image[type=file],.ql-snow .ql-toolbar input.ql-image[type=file]{display:none}.ql-snow.ql-toolbar button:hover,.ql-snow .ql-toolbar button:hover,.ql-snow.ql-toolbar button:focus,.ql-snow .ql-toolbar button:focus,.ql-snow.ql-toolbar button.ql-active,.ql-snow .ql-toolbar button.ql-active,.ql-snow.ql-toolbar .ql-picker-label:hover,.ql-snow .ql-toolbar .ql-picker-label:hover,.ql-snow.ql-toolbar .ql-picker-label.ql-active,.ql-snow .ql-toolbar .ql-picker-label.ql-active,.ql-snow.ql-toolbar .ql-picker-item:hover,.ql-snow .ql-toolbar .ql-picker-item:hover,.ql-snow.ql-toolbar .ql-picker-item.ql-selected,.ql-snow .ql-toolbar .ql-picker-item.ql-selected{color:#06c}.ql-snow.ql-toolbar button:hover .ql-fill,.ql-snow .ql-toolbar button:hover .ql-fill,.ql-snow.ql-toolbar button:focus .ql-fill,.ql-snow .ql-toolbar button:focus .ql-fill,.ql-snow.ql-toolbar button.ql-active .ql-fill,.ql-snow .ql-toolbar button.ql-active .ql-fill,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-fill,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-fill,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-fill,.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill,.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-fill,.ql-snow.ql-toolbar button:hover .ql-stroke.ql-fill,.ql-snow .ql-toolbar button:hover .ql-stroke.ql-fill,.ql-snow.ql-toolbar button:focus .ql-stroke.ql-fill,.ql-snow .ql-toolbar button:focus .ql-stroke.ql-fill,.ql-snow.ql-toolbar button.ql-active .ql-stroke.ql-fill,.ql-snow .ql-toolbar button.ql-active .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill{fill:#06c}.ql-snow.ql-toolbar button:hover .ql-stroke,.ql-snow .ql-toolbar button:hover .ql-stroke,.ql-snow.ql-toolbar button:focus .ql-stroke,.ql-snow .ql-toolbar button:focus .ql-stroke,.ql-snow.ql-toolbar button.ql-active .ql-stroke,.ql-snow .ql-toolbar button.ql-active .ql-stroke,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke,.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,.ql-snow.ql-toolbar button:hover .ql-stroke-miter,.ql-snow .ql-toolbar button:hover .ql-stroke-miter,.ql-snow.ql-toolbar button:focus .ql-stroke-miter,.ql-snow .ql-toolbar button:focus .ql-stroke-miter,.ql-snow.ql-toolbar button.ql-active .ql-stroke-miter,.ql-snow .ql-toolbar button.ql-active .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter{stroke:#06c}@media (pointer:coarse){.ql-snow.ql-toolbar button:hover:not(.ql-active),.ql-snow .ql-toolbar button:hover:not(.ql-active){color:#444}.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-fill,.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-fill,.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill{fill:#444}.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke,.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke,.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter{stroke:#444}}.ql-snow{box-sizing:border-box}.ql-snow *{box-sizing:border-box}.ql-snow .ql-hidden{display:none}.ql-snow .ql-out-bottom,.ql-snow .ql-out-top{visibility:hidden}.ql-snow .ql-tooltip{position:absolute;transform:translateY(10px)}.ql-snow .ql-tooltip a{cursor:pointer;text-decoration:none}.ql-snow .ql-tooltip.ql-flip{transform:translateY(-10px)}.ql-snow .ql-formats{display:inline-block;vertical-align:middle}.ql-snow .ql-formats:after{clear:both;content:'';display:table}.ql-snow .ql-stroke{fill:none;stroke:#444;stroke-linecap:round;stroke-linejoin:round;stroke-width:2}.ql-snow .ql-stroke-miter{fill:none;stroke:#444;stroke-miterlimit:10;stroke-width:2}.ql-snow .ql-fill,.ql-snow .ql-stroke.ql-fill{fill:#444}.ql-snow .ql-empty{fill:none}.ql-snow .ql-even{fill-rule:evenodd}.ql-snow .ql-thin,.ql-snow .ql-stroke.ql-thin{stroke-width:1}.ql-snow .ql-transparent{opacity:.4}.ql-snow .ql-direction svg:last-child{display:none}.ql-snow .ql-direction.ql-active svg:last-child{display:inline}.ql-snow .ql-direction.ql-active svg:first-child{display:none}.ql-snow .ql-editor h1{font-size:2em}.ql-snow .ql-editor h2{font-size:1.5em}.ql-snow .ql-editor h3{font-size:1.17em}.ql-snow .ql-editor h4{font-size:1em}.ql-snow .ql-editor h5{font-size:.83em}.ql-snow .ql-editor h6{font-size:.67em}.ql-snow .ql-editor a{text-decoration:underline}.ql-snow .ql-editor blockquote{border-left:4px solid #ccc;margin-bottom:5px;margin-top:5px;padding-left:16px}.ql-snow .ql-editor code,.ql-snow .ql-editor .ql-code-block-container{background-color:#f0f0f0;border-radius:3px}.ql-snow .ql-editor .ql-code-block-container{margin-bottom:5px;margin-top:5px;padding:5px 10px}.ql-snow .ql-editor code{font-size:85%;padding:2px 4px}.ql-snow .ql-editor .ql-code-block-container{background-color:#23241f;color:#f8f8f2;overflow:visible}.ql-snow .ql-editor img{max-width:100%}.ql-snow .ql-picker{color:#444;display:inline-block;float:left;font-size:14px;font-weight:500;height:24px;position:relative;vertical-align:middle}.ql-snow .ql-picker-label{cursor:pointer;display:inline-block;height:100%;padding-left:8px;padding-right:2px;position:relative;width:100%}.ql-snow .ql-picker-label::before{display:inline-block;line-height:22px}.ql-snow .ql-picker-options{background-color:#fff;display:none;min-width:100%;padding:4px 8px;position:absolute;white-space:nowrap}.ql-snow .ql-picker-options .ql-picker-item{cursor:pointer;display:block;padding-bottom:5px;padding-top:5px}.ql-snow .ql-picker.ql-expanded .ql-picker-label{color:#ccc;z-index:2}.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill{fill:#ccc}.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke{stroke:#ccc}.ql-snow .ql-picker.ql-expanded .ql-picker-options{display:block;margin-top:-1px;top:100%;z-index:1}.ql-snow .ql-color-picker,.ql-snow .ql-icon-picker{width:28px}.ql-snow .ql-color-picker .ql-picker-label,.ql-snow .ql-icon-picker .ql-picker-label{padding:2px 4px}.ql-snow .ql-color-picker .ql-picker-label svg,.ql-snow .ql-icon-picker .ql-picker-label svg{right:4px}.ql-snow .ql-icon-picker .ql-picker-options{padding:4px 0}.ql-snow .ql-icon-picker .ql-picker-item{height:24px;width:24px;padding:2px 4px}.ql-snow .ql-color-picker .ql-picker-options{padding:3px 5px;width:152px}.ql-snow .ql-color-picker .ql-picker-item{border:1px solid transparent;float:left;height:16px;margin:2px;padding:0;width:16px}.ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg{position:absolute;margin-top:-9px;right:0;top:50%;width:18px}.ql-snow .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=''])::before,.ql-snow .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=''])::before,.ql-snow .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=''])::before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=''])::before,.ql-snow .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=''])::before,.ql-snow .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=''])::before{content:attr(data-label)}.ql-snow .ql-picker.ql-header{width:98px}.ql-snow .ql-picker.ql-header .ql-picker-label::before,.ql-snow .ql-picker.ql-header .ql-picker-item::before{content:'Normal'}.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="1"]::before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before{content:'Heading 1'}.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="2"]::before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before{content:'Heading 2'}.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="3"]::before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before{content:'Heading 3'}.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="4"]::before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before{content:'Heading 4'}.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="5"]::before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before{content:'Heading 5'}.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="6"]::before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before{content:'Heading 6'}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before{font-size:2em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before{font-size:1.5em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before{font-size:1.17em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before{font-size:1em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before{font-size:.83em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before{font-size:.67em}.ql-snow .ql-picker.ql-font{width:108px}.ql-snow .ql-picker.ql-font .ql-picker-label::before,.ql-snow .ql-picker.ql-font .ql-picker-item::before{content:'Sans Serif'}.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=serif]::before,.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before{content:'Serif'}.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=monospace]::before,.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before{content:'Monospace'}.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before{font-family:Georgia,Times New Roman,serif}.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before{font-family:Monaco,Courier New,monospace}.ql-snow .ql-picker.ql-size{width:98px}.ql-snow .ql-picker.ql-size .ql-picker-label::before,.ql-snow .ql-picker.ql-size .ql-picker-item::before{content:'Normal'}.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=small]::before,.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before{content:'Small'}.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=large]::before,.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before{content:'Large'}.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=huge]::before,.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before{content:'Huge'}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before{font-size:10px}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before{font-size:18px}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before{font-size:32px}.ql-snow .ql-color-picker.ql-background .ql-picker-item{background-color:#fff}.ql-snow .ql-color-picker.ql-color .ql-picker-item{background-color:#000}.ql-code-block-container{position:relative}.ql-code-block-container .ql-ui{right:5px;top:5px}.ql-toolbar.ql-snow{border:1px solid #ccc;box-sizing:border-box;font-family:'Helvetica Neue','Helvetica','Arial',sans-serif;padding:8px}.ql-toolbar.ql-snow .ql-formats{margin-right:15px}.ql-toolbar.ql-snow .ql-picker-label{border:1px solid transparent}.ql-toolbar.ql-snow .ql-picker-options{border:1px solid transparent;box-shadow:rgba(0,0,0,0.2) 0 2px 8px}.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label{border-color:#ccc}.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options{border-color:#ccc}.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-selected,.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item:hover{border-color:#000}.ql-toolbar.ql-snow + .ql-container.ql-snow{border-top:0}.ql-snow .ql-tooltip{background-color:#fff;border:1px solid #ccc;box-shadow:0 0 5px #ddd;color:#444;padding:5px 12px;white-space:nowrap}.ql-snow .ql-tooltip::before{content:"Visit URL:";line-height:26px;margin-right:8px}.ql-snow .ql-tooltip input[type=text]{display:none;border:1px solid #ccc;font-size:13px;height:26px;margin:0;padding:3px 5px;width:170px}.ql-snow .ql-tooltip a.ql-preview{display:inline-block;max-width:200px;overflow-x:hidden;text-overflow:ellipsis;vertical-align:top}.ql-snow .ql-tooltip a.ql-action::after{border-right:1px solid #ccc;content:'Edit';margin-left:16px;padding-right:8px}.ql-snow .ql-tooltip a.ql-remove::before{content:'Remove';margin-left:8px}.ql-snow .ql-tooltip a{line-height:26px}.ql-snow .ql-tooltip.ql-editing a.ql-preview,.ql-snow .ql-tooltip.ql-editing a.ql-remove{display:none}.ql-snow .ql-tooltip.ql-editing input[type=text]{display:inline-block}.ql-snow .ql-tooltip.ql-editing a.ql-action::after{border-right:0;content:'Save';padding-right:0}.ql-snow .ql-tooltip[data-mode=link]::before{content:"Enter link:"}.ql-snow .ql-tooltip[data-mode=formula]::before{content:"Enter formula:"}.ql-snow .ql-tooltip[data-mode=video]::before{content:"Enter video:"}.ql-snow a{color:#06c}.ql-container.ql-snow{border:1px solid #ccc}
.ql-toolbar .ql-picker:not(.ql-color-picker):not(.ql-icon-picker).ql-table-up{width:28px}.ql-toolbar .ql-picker:not(.ql-color-picker):not(.ql-icon-picker).ql-table-up .ql-picker-label{padding:2px 4px}.ql-toolbar .ql-picker:not(.ql-color-picker):not(.ql-icon-picker).ql-table-up .ql-picker-label svg{position:static;margin-top:0}.ql-toolbar .ql-picker.ql-expanded .ql-picker-options{z-index:1}.ql-editor .ql-table{display:table;border-collapse:collapse;table-layout:fixed;width:auto}.ql-editor .ql-table[data-full]{width:100%}.ql-editor .ql-table-wrapper{width:100%;overflow:auto;scrollbar-width:none}.ql-editor .ql-table-caption{position:relative;word-break:break-word;outline:0}.ql-editor .ql-table-caption .ql-table-caption--switch{display:flex;align-items:center;justify-content:center;padding:2px;border-radius:4px;border:1px solid #0003;font-size:12px;cursor:pointer;background-color:#fff}.ql-editor .ql-table-caption .ql-table-caption--switch:hover{background-color:#eee}.ql-editor .ql-table-cell{padding:8px 12px;border-color:transparent;font-size:14px;outline:0;overflow:auto}.ql-editor .ql-table-cell-inner{display:inline-block;min-width:100%;word-break:break-word;outline:0;counter-reset:list-0}.ql-editor .ql-table col{border-collapse:separate;text-indent:initial;display:table-column;table-layout:fixed}.ql-editor .ql-table tr+tr td,.ql-editor .ql-table tr+tr th{border-top:none}.ql-editor .ql-table td,.ql-editor .ql-table th{border:1px solid #a1a1aa}.ql-editor .ql-table td+td,.ql-editor .ql-table td+th,.ql-editor .ql-table th+td,.ql-editor .ql-table th+th{border-left:none}.table-up-toolbox{position:absolute;top:0;left:0;width:100%;height:100%;overflow:hidden;pointer-events:none}.table-up-toolbox *{pointer-events:all}.table-up-tooltip{position:absolute;z-index:20;padding:.25rem .75rem;border-radius:.25rem;font-size:.75rem;color:#fff;white-space:nowrap;background-color:#303133;transition:opacity .15s linear}.table-up-tooltip.transparent{opacity:0}.table-up-tooltip.hidden{display:none}.table-up-button{--table-btn-color:#606266;--table-btn-bg-hover:#f3f4f6;--table-btn-color-border:#dcdfe6;--table-btn-border:0.0625rem solid var(--table-btn-color-border);--table-btn-confirm-color-border:#409eff;--table-btn-confirm-bg:#409eff;--table-btn-confirm-hover:#79bbff;--table-btn-confirm-outline-focus-visible:0.125rem solid #a0cfff;box-sizing:border-box;display:inline-flex;height:2rem;line-height:1;margin:0;padding:.5rem 1rem;border-radius:.25rem;border:var(--table-btn-border);color:var(--table-btn-color);background-color:transparent;font-size:.875rem;cursor:pointer}.table-up-button+.table-up-button{margin-left:.375rem}.table-up-button:hover{background-color:var(--table-btn-bg-hover)}.table-up-button.confirm{border-color:var(--table-btn-confirm-color-border);background-color:var(--table-btn-confirm-bg);color:#fff}.table-up-button.confirm:hover{border-color:var(--table-btn-confirm-hover);background-color:var(--table-btn-confirm-hover)}.table-up-button.confirm:focus-visible{outline:var(--table-btn-confirm-outline-focus-visible);outline-offset:.0625rem}.table-up-dialog{--dialog-bg:rgba(0, 0, 0, 0.5);--dialog-color-border:#ebeef5;--dialog-color-boxshadow:rgba(0, 0, 0, 0.12);--dialog-border:0.0625rem solid var(--dialog-color-border);--dialog-boxshadow:0 0 0.75rem var(--dialog-color-boxshadow);position:fixed;top:0;right:0;bottom:0;left:0;z-index:2000;height:100%;background-color:var(--dialog-bg);overflow:auto}.table-up-dialog__overlay{position:fixed;top:0;right:0;bottom:0;left:0;padding:1rem;overflow:auto;text-align:center}.table-up-dialog__overlay::after{content:'';display:inline-block;height:100%;width:0;vertical-align:middle}.table-up-dialog__content{display:inline-block;max-width:50vw;width:100%;vertical-align:middle;background-color:#fff;border-radius:.25rem;border:var(--dialog-border);font-size:1.125rem;box-shadow:var(--dialog-boxshadow);text-align:left;overflow:hidden;box-sizing:border-box}.table-up-color-picker{--color-picker-bg-color:#ffffff;box-sizing:border-box;display:inline-flex;flex-direction:column;width:16.75rem;padding:.5rem;border-radius:.375rem;background:var(--color-picker-bg-color);box-shadow:0 0 .375rem #b2b5b8}.table-up-color-picker__content{box-sizing:border-box;width:100%;height:11.75rem;padding-top:.5rem}.table-up-color-picker__selector{width:14.375rem;height:9.375rem;position:absolute}.table-up-color-picker__background{width:100%;height:100%;background:linear-gradient(to top,#000 0,rgba(0,0,0,0) 100%),linear-gradient(to right,#fff 0,rgba(255,255,255,0) 100%)}.table-up-color-picker__background-handle{box-sizing:border-box;position:absolute;border:.0625rem solid #fff;cursor:pointer;top:0;left:14.375rem;border-radius:100%;width:.625rem;height:.625rem;transform:translate(-.3125rem,-.3125rem)}.table-up-color-picker__hue{width:.75rem;height:9.375rem;margin-left:15rem;position:absolute;background:linear-gradient(0deg,red 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red)}.table-up-color-picker__hue-handle{box-sizing:border-box;position:absolute;border:.0625rem solid #fff;cursor:pointer;background-color:#fff;box-shadow:0 0 .125rem #0009;left:0;width:1rem;height:.625rem;transform:translate(-.125rem,-.3125rem)}.table-up-color-picker__alpha{width:14.375rem;height:.75rem;position:absolute;margin-top:10rem;background:linear-gradient(45deg,#ccc 25%,transparent 25%),linear-gradient(135deg,#ccc 25%,transparent 25%),linear-gradient(45deg,transparent 75%,#ccc 75%),linear-gradient(135deg,transparent 75%,#ccc 75%);background-size:.75rem .75rem;background-position:0 0,.375rem 0,.375rem -.375rem,0 .375rem}.table-up-color-picker__alpha-bg{position:relative;height:100%;background:linear-gradient(to right,rgba(255,255,255,0) 0,#fff 100%)}.table-up-color-picker__alpha-handle{box-sizing:border-box;position:absolute;border:.0625rem solid #fff;cursor:pointer;background-color:#fff;box-shadow:0 0 .125rem #0009;top:0;width:.625rem;height:1rem;transform:translate(-.3125rem,-.125rem)}.table-up-color-picker__action{box-sizing:border-box;display:flex;align-items:center;gap:.375rem;width:100%;padding-top:.5rem;border-top:.0625rem solid #e9ecef}.table-up-color-picker__action-item{flex:1;display:inline-flex;align-items:center;font-size:.75rem}.table-up-color-picker__input{box-sizing:border-box;width:100%;height:1.375rem;margin-left:.125rem;padding:.125rem 0 .125rem .25rem;background-color:#fff;border:.0625rem solid #ced4da;border-radius:.25rem;outline:0;color:#405057}.table-up-tooltip .table-up-color-picker{--color-picker-bg-color:transparent;box-shadow:none;width:15.75rem;padding:.5rem 0}.ql-container .table-up-selection{--select-color:#0589f340;display:none;position:absolute;overflow:hidden;pointer-events:none}.ql-container .table-up-selection__line{position:absolute;background-color:var(--select-color);pointer-events:none}.table-up-resize-line__col,.table-up-resize-line__row{position:absolute;z-index:0}.table-up-resize-line__col.is-hidden,.table-up-resize-line__row.is-hidden{display:none}.table-up-resize-line__col::after,.table-up-resize-line__col::before,.table-up-resize-line__row::after,.table-up-resize-line__row::before{content:'';display:block;position:absolute;top:0;z-index:1}.table-up-resize-line__row{height:.0625rem;cursor:ns-resize}.table-up-resize-line__row::after,.table-up-resize-line__row::before{width:100%;height:.5rem}.table-up-resize-line__row::before{transform:translateY(-.5rem)}.table-up-resize-line__col{width:.0625rem;cursor:ew-resize}.table-up-resize-line__col::after,.table-up-resize-line__col::before{height:100%;width:.5rem}.table-up-resize-line__col::before{transform:translateX(-.5rem)}.table-up-resize-box{position:absolute;z-index:0}.table-up-resize-box.is-hidden{display:none}.table-up-resize-box.is-caption-bottom .table-up-resize-box__corner{border-top-width:0;border-bottom-width:.0625rem;border-top-left-radius:0;border-bottom-left-radius:50%}.table-up-resize-box.is-align-right .table-up-resize-box__col-separator{left:-.125rem}.table-up-resize-box.is-align-right .table-up-resize-box__corner{border-left-width:0;border-right-width:.0625rem;border-top-left-radius:0;border-top-right-radius:50%}.table-up-resize-box.is-align-right.is-caption-bottom .table-up-resize-box__corner{border-top-right-radius:0;border-bottom-left-radius:0;border-bottom-right-radius:50%}.table-up-resize-box__col,.table-up-resize-box__row{position:absolute;top:0;left:0;overflow:hidden}.table-up-resize-box__col-wrapper,.table-up-resize-box__row-wrapper{display:flex}.table-up-resize-box__col-header,.table-up-resize-box__row-header{position:relative;flex-shrink:0;background-color:#f3f4f5;border:.0625rem solid #ccc}.table-up-resize-box__col-wrapper{height:100%}.table-up-resize-box__col-header{height:100%;cursor:pointer;border-right-color:transparent}.table-up-resize-box__col-header:last-child{border-right-color:#ccc}.table-up-resize-box__col-separator{position:absolute;top:0;bottom:0;right:-.125rem;width:.125rem;cursor:ew-resize;z-index:0}.table-up-resize-box__col-separator::after{right:-.375rem}.table-up-resize-box__col-separator::before{left:-.375rem}.table-up-resize-box__col-separator::after,.table-up-resize-box__col-separator::before{content:'';position:absolute;top:0;display:block;width:.5rem;height:100%;z-index:1}.table-up-resize-box__row-wrapper{flex-direction:column;width:100%}.table-up-resize-box__row-header{width:100%;cursor:pointer;border-bottom-color:transparent}.table-up-resize-box__row-header:last-child{border-bottom-color:#ccc}.table-up-resize-box__row-separator{position:absolute;left:0;right:0;bottom:-.125rem;height:.125rem;cursor:ns-resize;z-index:0}.table-up-resize-box__row-separator::after{bottom:-.375rem}.table-up-resize-box__row-separator::before{top:-.375rem}.table-up-resize-box__row-separator::after,.table-up-resize-box__row-separator::before{content:'';position:absolute;left:0;display:block;width:100%;height:.5rem;z-index:1}.table-up-resize-box__corner{position:absolute;top:0;left:0;background-color:#f3f4f5;border:.0625rem solid #ccc;border-right-width:0;border-bottom-width:0;border-top-left-radius:50%;cursor:pointer}.table-up-drag-line{position:fixed;z-index:0;background-color:#409eff}.table-up-drag-line.is-col{width:.125rem;cursor:ew-resize}.table-up-drag-line.is-row{height:.125rem;cursor:ns-resize}.table-up-scale{position:absolute;top:0;left:0;overflow:hidden;pointer-events:none}.table-up-scale__block{position:absolute;top:0;left:0;transform:translate(-100%,-100%);width:.75rem;height:.75rem;background-color:#f1f5f9;border:.0625rem solid grey;cursor:nwse-resize;pointer-events:all}.table-up-scale.is-align-right .table-up-scale__block{cursor:nesw-resize}.table-up-scale.is-hidden{display:none}.table-up-scrollbar{position:absolute;z-index:1;transition:opacity .15s linear}.table-up-scrollbar__container{position:relative}.table-up-scrollbar.is-transparent{opacity:0}.table-up-scrollbar.is-vertical{top:.125rem;bottom:.125rem;left:-.5rem;width:.375rem}.table-up-scrollbar.is-vertical .table-up-scrollbar__thumb{width:100%}.table-up-scrollbar.is-horizontal{bottom:.125rem;left:.125rem;right:.125rem;height:.375rem}.table-up-scrollbar.is-horizontal .table-up-scrollbar__thumb{height:100%}.table-up-scrollbar__thumb{border-radius:.3125rem;background-color:#d2d2d2;cursor:pointer}.table-up-scrollbar__thumb:hover{background-color:#a1a1aa}.table-up-scrollbar--origin.ql-container .ql-table-wrapper{scrollbar-width:inherit}.table-up-align,.table-up-menu{position:absolute;z-index:1;display:none;align-items:center;padding:.25rem;border-radius:.375rem;box-shadow:0 0 .5rem rgba(0,0,0,.5);background-color:#fff;font-size:.875rem}.table-up-align__item,.table-up-menu__item{position:relative;display:inline-flex;align-items:center;justify-content:center;padding:.25rem;border-radius:.25rem;cursor:pointer}.table-up-align__item:hover,.table-up-menu__item:hover{background-color:#eee}.table-up-align__item.is-break,.table-up-menu__item.is-break{align-self:stretch;width:.0625rem;padding:0;margin:.125rem .25rem;background-color:#a3a3a3;cursor:default}.table-up-align .icon,.table-up-menu .icon{display:flex;flex-shrink:0;font-size:1.25rem}.table-up-align span,.table-up-menu span{text-wrap:nowrap}.table-up-menu.is-contextmenu{flex-direction:column;padding:.25rem .5rem;max-height:21.875rem;overflow-y:auto;overflow-x:hidden}.table-up-menu.is-contextmenu .table-up-menu__item{display:flex;justify-content:flex-start;width:100%;gap:.25rem;cursor:pointer}.table-up-menu.is-contextmenu .is-break{width:100%;height:.0625rem;flex-shrink:0;margin:.25rem 0;background-color:#a3a3a3}.table-up-align--active{display:flex}.table-up-align .icon{width:1.25rem;height:1.25rem}.table-up-color-map{display:flex;flex-direction:column}.table-up-color-map--used{display:flex;align-items:center;justify-content:center;flex-direction:row-reverse;margin-top:.25rem;padding-top:.25rem;border-top:.0625rem solid #ccc}.table-up-color-map__content{display:flex;flex-direction:column}.table-up-color-map__content-row{display:flex;align-items:center;justify-content:center;gap:.25rem}.table-up-color-map__item{width:.875rem;height:.875rem;margin:.125rem;border:.0625rem solid #a3a3a3;cursor:pointer}.table-up-color-map__btn{display:flex;align-items:center;justify-content:center;flex:1;height:1.25rem;padding:0 .375rem;color:#303133;background-color:#fff;cursor:pointer}.table-up-color-map__btn:hover{background-color:#edeeef}
.table-up-input__item{--input-height:2rem;--input-inner-height:calc(var(--input-height) - 0.125rem);--input-color-text:#606266;--input-color-boxshaow:#dcdfe6;--input-color-focus:#409eff;--input-color-error:#f56c6c;--input-boxshaow:0 0 0 0.0625rem var(--input-color-boxshaow) inset;--input-boxshaow-focus:0 0 0 0.0625rem var(--input-color-focus) inset;--input-boxshaow-error:0 0 0 0.0625rem var(--input-color-error) inset;display:flex;align-items:center}.table-up-input__item+.table-up-input__item{margin-top:1.125rem}.table-up-input__label{width:5rem;flex-shrink:0}.table-up-input__input{box-sizing:border-box;position:relative;display:flex;flex-wrap:wrap;width:100%;height:var(--input-height);line-height:var(--input-height);padding:.0625rem .5rem;border-radius:.25rem;box-shadow:var(--input-boxshaow);transition:box-shadow .2s linear}.table-up-input__input.focus{box-shadow:var(--input-boxshaow-focus)}.table-up-input__input input{width:100%;height:var(--input-inner-height);line-height:var(--input-inner-height);flex-grow:1;font-size:.875rem;color:var(--input-color-text);outline:0;border:0;padding:0}.table-up-input__input.error{box-shadow:var(--input-boxshaow-error)}.table-up-input__error-tip{position:absolute;top:100%;left:0;font-size:.75rem;color:var(--input-color-error);line-height:1rem}.ql-snow .table-up-select-box{--select-box-color-bg-hover:#f5f5f5;--select-box-color-bg-active:#e0f2fe;--select-box-custom-color-text:#0d0d0d;--select-box-custom-color-bg:transparent;--select-box-custom-color-bg-hover:#ebebeb}.table-up-select-box{--select-box-color-border:#e5e7eb;--select-box-border:0.0625rem solid var(--select-box-color-border);--select-box-color-active:#0ea5e9;--select-box-color-bg-hover:#f5f5f5;--select-box-color-bg-active:transparent;--select-box-custom-color-text:#f5f5f5;--select-box-custom-color-bg:transparent;--select-box-custom-color-bg-hover:#2c2c2c}.table-up-select-box__block{display:flex;width:10rem;flex-wrap:wrap;align-items:center;justify-content:center}.table-up-select-box__item{margin:.125rem;height:1rem;width:1rem;border:var(--select-box-border)}.table-up-select-box__item.active{border-color:var(--select-box-color-active);background-color:var(--select-box-color-bg-active)}.table-up-select-box__custom{padding:.5rem;color:var(--select-box-custom-color-text);background-color:var(--select-box-custom-color-bg);font-size:1rem;text-align:center;cursor:pointer}.table-up-select-box__custom:hover{background-color:var(--select-box-custom-color-bg-hover)}.table-up-creator{padding:1.5rem}.table-up-creator__input{display:flex;flex-direction:column;width:100%}.table-up-creator__control{margin-top:1rem;text-align:right}.table-up-creator__checkbox{--check-color:#212121;--checked-color:#506eec;display:flex;align-items:center;margin-top:.25rem;cursor:pointer;font-size:.75rem;-webkit-user-select:none;user-select:none}.table-up-creator__checkbox input{appearance:none;width:1.125rem;height:1.125rem;border:.0625rem solid var(--check-color);border-radius:.3125rem;background-color:transparent;display:inline-block;position:relative;margin-right:.625rem;cursor:pointer}.table-up-creator__checkbox input:before{content:'';background-color:var(--checked-color);display:block;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%) scale(0);width:.625rem;height:.625rem;border-radius:.1875rem;transition:all .2s ease-in-out}.table-up-creator__checkbox input:checked:before{transform:translate(-50%,-50%) scale(1)}
