/**
 * Copyright (c) 2014 The xterm.js authors. All rights reserved.
 * Copyright (c) 2012-2013, Christopher Jeffrey (MIT License)
 * https://github.com/chjj/term.js
 * @license MIT
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 *
 * Originally forked from (with the author's permission):
 *   Fabrice Bellard's javascript vt100 for jslinux:
 *   http://bellard.org/jslinux/
 *   Copyright (c) 2011 Fabrice Bellard
 *   The original design remains. The terminal itself
 *   has been extended to include xterm CSI codes, among
 *   other features.
 */

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

.xterm {
    cursor: text;
    position: relative;
    user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.xterm-dim {
    opacity: 0.5;
}

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

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

.xterm-screen .xterm-decoration-container .xterm-decoration {
	z-index: 6;
	position: absolute;
}

.xterm-decoration-overview-ruler {
    z-index: 7;
    position: absolute;
    top: 0;
    right: 0;
    pointer-events: none;
}

.xterm-decoration-top {
    z-index: 2;
    position: relative;
}

/*! jQuery UI - v1.13.3 - 2024-04-26
* https://jqueryui.com
* Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
* To view and modify this theme, visit https://jqueryui.com/themeroller/?ffDefault=Arial%2CHelvetica%2Csans-serif&fsDefault=1em&fwDefault=normal&cornerRadius=3px&bgColorHeader=e9e9e9&bgTextureHeader=flat&borderColorHeader=dddddd&fcHeader=333333&iconColorHeader=444444&bgColorContent=ffffff&bgTextureContent=flat&borderColorContent=dddddd&fcContent=333333&iconColorContent=444444&bgColorDefault=f6f6f6&bgTextureDefault=flat&borderColorDefault=c5c5c5&fcDefault=454545&iconColorDefault=777777&bgColorHover=ededed&bgTextureHover=flat&borderColorHover=cccccc&fcHover=2b2b2b&iconColorHover=555555&bgColorActive=007fff&bgTextureActive=flat&borderColorActive=003eff&fcActive=ffffff&iconColorActive=ffffff&bgColorHighlight=fffa90&bgTextureHighlight=flat&borderColorHighlight=dad55e&fcHighlight=777620&iconColorHighlight=777620&bgColorError=fddfdf&bgTextureError=flat&borderColorError=f1a899&fcError=5f3f3f&iconColorError=cc0000&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=666666&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=5px&offsetTopShadow=0px&offsetLeftShadow=0px&cornerRadiusShadow=8px
* Copyright OpenJS Foundation and other contributors; Licensed MIT */

/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
	display: none;
}
.ui-helper-hidden-accessible {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.ui-helper-reset {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	line-height: 1.3;
	text-decoration: none;
	font-size: 100%;
	list-style: none;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
	content: "";
	display: table;
	border-collapse: collapse;
}
.ui-helper-clearfix:after {
	clear: both;
}
.ui-helper-zfix {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	opacity: 0;
	-ms-filter: "alpha(opacity=0)"; /* support: IE8 */
}

.ui-front {
	z-index: 100;
}


/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
	cursor: default !important;
	pointer-events: none;
}


/* Icons
----------------------------------*/
.ui-icon {
	display: inline-block;
	vertical-align: middle;
	margin-top: -.25em;
	position: relative;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
}

.ui-widget-icon-block {
	left: 50%;
	margin-left: -8px;
	display: block;
}

/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.ui-accordion .ui-accordion-header {
	display: block;
	cursor: pointer;
	position: relative;
	margin: 2px 0 0 0;
	padding: .5em .5em .5em .7em;
	font-size: 100%;
}
.ui-accordion .ui-accordion-content {
	padding: 1em 2.2em;
	border-top: 0;
	overflow: auto;
}
.ui-autocomplete {
	position: absolute;
	top: 0;
	left: 0;
	cursor: default;
}
.ui-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: block;
	outline: 0;
}
.ui-menu .ui-menu {
	position: absolute;
}
.ui-menu .ui-menu-item {
	margin: 0;
	cursor: pointer;
	/* support: IE10, see #8844 */
	list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}
.ui-menu .ui-menu-item-wrapper {
	position: relative;
	padding: 3px 1em 3px .4em;
}
.ui-menu .ui-menu-divider {
	margin: 5px 0;
	height: 0;
	font-size: 0;
	line-height: 0;
	border-width: 1px 0 0 0;
}
.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
	margin: -1px;
}

/* icon support */
.ui-menu-icons {
	position: relative;
}
.ui-menu-icons .ui-menu-item-wrapper {
	padding-left: 2em;
}

/* left-aligned */
.ui-menu .ui-icon {
	position: absolute;
	top: 0;
	bottom: 0;
	left: .2em;
	margin: auto 0;
}

/* right-aligned */
.ui-menu .ui-menu-icon {
	left: auto;
	right: 0;
}
.ui-button {
	padding: .4em 1em;
	display: inline-block;
	position: relative;
	line-height: normal;
	margin-right: .1em;
	cursor: pointer;
	vertical-align: middle;
	text-align: center;
	user-select: none;

	/* Support: IE <= 11 */
	overflow: visible;
}

.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
	text-decoration: none;
}

/* to make room for the icon, a width needs to be set here */
.ui-button-icon-only {
	width: 2em;
	box-sizing: border-box;
	text-indent: -9999px;
	white-space: nowrap;
}

/* no icon support for input elements */
input.ui-button.ui-button-icon-only {
	text-indent: 0;
}

/* button icon element(s) */
.ui-button-icon-only .ui-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -8px;
	margin-left: -8px;
}

.ui-button.ui-icon-notext .ui-icon {
	padding: 0;
	width: 2.1em;
	height: 2.1em;
	text-indent: -9999px;
	white-space: nowrap;

}

input.ui-button.ui-icon-notext .ui-icon {
	width: auto;
	height: auto;
	text-indent: 0;
	white-space: normal;
	padding: .4em 1em;
}

/* workarounds */
/* Support: Firefox 5 - 40 */
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
	border: 0;
	padding: 0;
}
.ui-controlgroup {
	vertical-align: middle;
	display: inline-block;
}
.ui-controlgroup > .ui-controlgroup-item {
	float: left;
	margin-left: 0;
	margin-right: 0;
}
.ui-controlgroup > .ui-controlgroup-item:focus,
.ui-controlgroup > .ui-controlgroup-item.ui-visual-focus {
	z-index: 9999;
}
.ui-controlgroup-vertical > .ui-controlgroup-item {
	display: block;
	float: none;
	width: 100%;
	margin-top: 0;
	margin-bottom: 0;
	text-align: left;
}
.ui-controlgroup-vertical .ui-controlgroup-item {
	box-sizing: border-box;
}
.ui-controlgroup .ui-controlgroup-label {
	padding: .4em 1em;
}
.ui-controlgroup .ui-controlgroup-label span {
	font-size: 80%;
}
.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item {
	border-left: none;
}
.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item {
	border-top: none;
}
.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content {
	border-right: none;
}
.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content {
	border-bottom: none;
}

/* Spinner specific style fixes */
.ui-controlgroup-vertical .ui-spinner-input {

	/* Support: IE8 only, Android < 4.4 only */
	width: 75%;
	width: calc( 100% - 2.4em );
}
.ui-controlgroup-vertical .ui-spinner .ui-spinner-up {
	border-top-style: solid;
}

.ui-checkboxradio-label .ui-icon-background {
	box-shadow: inset 1px 1px 1px #ccc;
	border-radius: .12em;
	border: none;
}
.ui-checkboxradio-radio-label .ui-icon-background {
	width: 16px;
	height: 16px;
	border-radius: 1em;
	overflow: visible;
	border: none;
}
.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,
.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {
	background-image: none;
	width: 8px;
	height: 8px;
	border-width: 4px;
	border-style: solid;
}
.ui-checkboxradio-disabled {
	pointer-events: none;
}
.ui-datepicker {
	width: 17em;
	padding: .2em .2em 0;
	display: none;
}
.ui-datepicker .ui-datepicker-header {
	position: relative;
	padding: .2em 0;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	position: absolute;
	top: 2px;
	width: 1.8em;
	height: 1.8em;
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
	top: 1px;
}
.ui-datepicker .ui-datepicker-prev {
	left: 2px;
}
.ui-datepicker .ui-datepicker-next {
	right: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
	left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
	right: 1px;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -8px;
	top: 50%;
	margin-top: -8px;
}
.ui-datepicker .ui-datepicker-title {
	margin: 0 2.3em;
	line-height: 1.8em;
	text-align: center;
}
.ui-datepicker .ui-datepicker-title select {
	font-size: 1em;
	margin: 1px 0;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
	width: 45%;
}
.ui-datepicker table {
	width: 100%;
	font-size: .9em;
	border-collapse: collapse;
	margin: 0 0 .4em;
}
.ui-datepicker th {
	padding: .7em .3em;
	text-align: center;
	font-weight: bold;
	border: 0;
}
.ui-datepicker td {
	border: 0;
	padding: 1px;
}
.ui-datepicker td span,
.ui-datepicker td a {
	display: block;
	padding: .2em;
	text-align: right;
	text-decoration: none;
}
.ui-datepicker .ui-datepicker-buttonpane {
	background-image: none;
	margin: .7em 0 0 0;
	padding: 0 .2em;
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
	float: right;
	margin: .5em .2em .4em;
	cursor: pointer;
	padding: .2em .6em .3em .6em;
	width: auto;
	overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
	float: left;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
	width: auto;
}
.ui-datepicker-multi .ui-datepicker-group {
	float: left;
}
.ui-datepicker-multi .ui-datepicker-group table {
	width: 95%;
	margin: 0 auto .4em;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
	width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
	width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
	width: 25%;
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
	border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
	clear: left;
}
.ui-datepicker-row-break {
	clear: both;
	width: 100%;
	font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
	direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
	right: 2px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next {
	left: 2px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
	right: 1px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
	left: 1px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
	clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
	float: left;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
	float: right;
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
	border-right-width: 0;
	border-left-width: 1px;
}

/* Icons */
.ui-datepicker .ui-icon {
	display: block;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
	left: .5em;
	top: .3em;
}
.ui-dialog {
	position: absolute;
	top: 0;
	left: 0;
	padding: .2em;
	outline: 0;
}
.ui-dialog .ui-dialog-titlebar {
	padding: .4em 1em;
	position: relative;
}
.ui-dialog .ui-dialog-title {
	float: left;
	margin: .1em 0;
	white-space: nowrap;
	width: 90%;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ui-dialog .ui-dialog-titlebar-close {
	position: absolute;
	right: .3em;
	top: 50%;
	width: 20px;
	margin: -10px 0 0 0;
	padding: 1px;
	height: 20px;
}
.ui-dialog .ui-dialog-content {
	position: relative;
	border: 0;
	padding: .5em 1em;
	background: none;
	overflow: auto;
}
.ui-dialog .ui-dialog-buttonpane {
	text-align: left;
	border-width: 1px 0 0 0;
	background-image: none;
	margin-top: .5em;
	padding: .3em 1em .5em .4em;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
	float: right;
}
.ui-dialog .ui-dialog-buttonpane button {
	margin: .5em .4em .5em 0;
	cursor: pointer;
}
.ui-dialog .ui-resizable-n {
	height: 2px;
	top: 0;
}
.ui-dialog .ui-resizable-e {
	width: 2px;
	right: 0;
}
.ui-dialog .ui-resizable-s {
	height: 2px;
	bottom: 0;
}
.ui-dialog .ui-resizable-w {
	width: 2px;
	left: 0;
}
.ui-dialog .ui-resizable-se,
.ui-dialog .ui-resizable-sw,
.ui-dialog .ui-resizable-ne,
.ui-dialog .ui-resizable-nw {
	width: 7px;
	height: 7px;
}
.ui-dialog .ui-resizable-se {
	right: 0;
	bottom: 0;
}
.ui-dialog .ui-resizable-sw {
	left: 0;
	bottom: 0;
}
.ui-dialog .ui-resizable-ne {
	right: 0;
	top: 0;
}
.ui-dialog .ui-resizable-nw {
	left: 0;
	top: 0;
}
.ui-draggable .ui-dialog-titlebar {
	cursor: move;
}
.ui-draggable-handle {
	touch-action: none;
}
.ui-resizable {
	position: relative;
}
.ui-resizable-handle {
	position: absolute;
	font-size: 0.1px;
	display: block;
	touch-action: none;
}
.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
	display: none;
}
.ui-resizable-n {
	cursor: n-resize;
	height: 7px;
	width: 100%;
	top: -5px;
	left: 0;
}
.ui-resizable-s {
	cursor: s-resize;
	height: 7px;
	width: 100%;
	bottom: -5px;
	left: 0;
}
.ui-resizable-e {
	cursor: e-resize;
	width: 7px;
	right: -5px;
	top: 0;
	height: 100%;
}
.ui-resizable-w {
	cursor: w-resize;
	width: 7px;
	left: -5px;
	top: 0;
	height: 100%;
}
.ui-resizable-se {
	cursor: se-resize;
	width: 12px;
	height: 12px;
	right: 1px;
	bottom: 1px;
}
.ui-resizable-sw {
	cursor: sw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	bottom: -5px;
}
.ui-resizable-nw {
	cursor: nw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	top: -5px;
}
.ui-resizable-ne {
	cursor: ne-resize;
	width: 9px;
	height: 9px;
	right: -5px;
	top: -5px;
}
.ui-progressbar {
	height: 2em;
	text-align: left;
	overflow: hidden;
}
.ui-progressbar .ui-progressbar-value {
	margin: -1px;
	height: 100%;
}
.ui-progressbar .ui-progressbar-overlay {
	background: url("data:image/gif;base64,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");
	height: 100%;
	-ms-filter: "alpha(opacity=25)"; /* support: IE8 */
	opacity: 0.25;
}
.ui-progressbar-indeterminate .ui-progressbar-value {
	background-image: none;
}
.ui-selectable {
	touch-action: none;
}
.ui-selectable-helper {
	position: absolute;
	z-index: 100;
	border: 1px dotted black;
}
.ui-selectmenu-menu {
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	display: none;
}
.ui-selectmenu-menu .ui-menu {
	overflow: auto;
	overflow-x: hidden;
	padding-bottom: 1px;
}
.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
	font-size: 1em;
	font-weight: bold;
	line-height: 1.5;
	padding: 2px 0.4em;
	margin: 0.5em 0 0 0;
	height: auto;
	border: 0;
}
.ui-selectmenu-open {
	display: block;
}
.ui-selectmenu-text {
	display: block;
	margin-right: 20px;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ui-selectmenu-button.ui-button {
	text-align: left;
	white-space: nowrap;
	width: 14em;
}
.ui-selectmenu-icon.ui-icon {
	float: right;
	margin-top: 0;
}
.ui-slider {
	position: relative;
	text-align: left;
}
.ui-slider .ui-slider-handle {
	position: absolute;
	z-index: 2;
	width: 1.2em;
	height: 1.2em;
	cursor: pointer;
	touch-action: none;
}
.ui-slider .ui-slider-range {
	position: absolute;
	z-index: 1;
	font-size: .7em;
	display: block;
	border: 0;
	background-position: 0 0;
}

/* support: IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
	filter: inherit;
}

.ui-slider-horizontal {
	height: .8em;
}
.ui-slider-horizontal .ui-slider-handle {
	top: -.3em;
	margin-left: -.6em;
}
.ui-slider-horizontal .ui-slider-range {
	top: 0;
	height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
	left: 0;
}
.ui-slider-horizontal .ui-slider-range-max {
	right: 0;
}

.ui-slider-vertical {
	width: .8em;
	height: 100px;
}
.ui-slider-vertical .ui-slider-handle {
	left: -.3em;
	margin-left: 0;
	margin-bottom: -.6em;
}
.ui-slider-vertical .ui-slider-range {
	left: 0;
	width: 100%;
}
.ui-slider-vertical .ui-slider-range-min {
	bottom: 0;
}
.ui-slider-vertical .ui-slider-range-max {
	top: 0;
}
.ui-sortable-handle {
	touch-action: none;
}
.ui-spinner {
	position: relative;
	display: inline-block;
	overflow: hidden;
	padding: 0;
	vertical-align: middle;
}
.ui-spinner-input {
	border: none;
	background: none;
	color: inherit;
	padding: .222em 0;
	margin: .2em 0;
	vertical-align: middle;
	margin-left: .4em;
	margin-right: 2em;
}
.ui-spinner-button {
	width: 1.6em;
	height: 50%;
	font-size: .5em;
	padding: 0;
	margin: 0;
	text-align: center;
	position: absolute;
	cursor: default;
	display: block;
	overflow: hidden;
	right: 0;
}
/* more specificity required here to override default borders */
.ui-spinner a.ui-spinner-button {
	border-top-style: none;
	border-bottom-style: none;
	border-right-style: none;
}
.ui-spinner-up {
	top: 0;
}
.ui-spinner-down {
	bottom: 0;
}
.ui-tabs {
	position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
	padding: .2em;
}
.ui-tabs .ui-tabs-nav {
	margin: 0;
	padding: .2em .2em 0;
}
.ui-tabs .ui-tabs-nav li {
	list-style: none;
	float: left;
	position: relative;
	top: 0;
	margin: 1px .2em 0 0;
	border-bottom-width: 0;
	padding: 0;
	white-space: nowrap;
}
.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
	float: left;
	padding: .5em 1em;
	text-decoration: none;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active {
	margin-bottom: -1px;
	padding-bottom: 1px;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
	cursor: text;
}
.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
	cursor: pointer;
}
.ui-tabs .ui-tabs-panel {
	display: block;
	border-width: 0;
	padding: 1em 1.4em;
	background: none;
}
.ui-tooltip {
	padding: 8px;
	position: absolute;
	z-index: 9999;
	max-width: 300px;
}
body .ui-tooltip {
	border-width: 2px;
}
/* Component containers
----------------------------------*/
.ui-widget {
	font-family: Arial,Helvetica,sans-serif;
	font-size: 1em;
}
.ui-widget .ui-widget {
	font-size: 1em;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
	font-family: Arial,Helvetica,sans-serif;
	font-size: 1em;
}
.ui-widget.ui-widget-content {
	border: 1px solid #c5c5c5;
}
.ui-widget-content {
	border: 1px solid #dddddd;
	background: #ffffff;
	color: #333333;
}
.ui-widget-content a {
	color: #333333;
}
.ui-widget-header {
	border: 1px solid #dddddd;
	background: #e9e9e9;
	color: #333333;
	font-weight: bold;
}
.ui-widget-header a {
	color: #333333;
}

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,

/* We use html here because we need a greater specificity to make sure disabled
works properly when clicked or hovered */
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
	border: 1px solid #c5c5c5;
	background: #f6f6f6;
	font-weight: normal;
	color: #454545;
}
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button {
	color: #454545;
	text-decoration: none;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
	border: 1px solid #cccccc;
	background: #ededed;
	font-weight: normal;
	color: #2b2b2b;
}
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited,
a.ui-button:hover,
a.ui-button:focus {
	color: #2b2b2b;
	text-decoration: none;
}

.ui-visual-focus {
	box-shadow: 0 0 3px 1px rgb(94, 158, 214);
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
	border: 1px solid #003eff;
	background: #007fff;
	font-weight: normal;
	color: #ffffff;
}
.ui-icon-background,
.ui-state-active .ui-icon-background {
	border: #003eff;
	background-color: #ffffff;
}
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
	color: #ffffff;
	text-decoration: none;
}

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
	border: 1px solid #dad55e;
	background: #fffa90;
	color: #777620;
}
.ui-state-checked {
	border: 1px solid #dad55e;
	background: #fffa90;
}
.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
	color: #777620;
}
.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
	border: 1px solid #f1a899;
	background: #fddfdf;
	color: #5f3f3f;
}
.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
	color: #5f3f3f;
}
.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
	color: #5f3f3f;
}
.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
	font-weight: bold;
}
.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
	opacity: .7;
	-ms-filter: "alpha(opacity=70)"; /* support: IE8 */
	font-weight: normal;
}
.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
	opacity: .35;
	-ms-filter: "alpha(opacity=35)"; /* support: IE8 */
	background-image: none;
}
.ui-state-disabled .ui-icon {
	-ms-filter: "alpha(opacity=35)"; /* support: IE8 - See #6059 */
}

/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
	width: 16px;
	height: 16px;
}
.ui-icon,
.ui-widget-content .ui-icon {
	background-image: url(data:image/png;base64,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);
}
.ui-widget-header .ui-icon {
	background-image: url(data:image/png;base64,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);
}
.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon,
.ui-button:hover .ui-icon,
.ui-button:focus .ui-icon {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAADwCAQAAABFnnJAAAAAIGNIUk0AAHomAACAhAAA+gAAAIDoAAB1MAAA6mAAADqYAAAXcJy6UTwAAAACYktHRABVsYyGSQAAAAd0SU1FB+gEGg8tB0n1qgUAABqFSURBVHja7Z17jCRHfcc/bTuxCPHZIcQ+7POdsBJsApjcrq2IRyQs5Mwm0iWAfM7cogAB59aB8BS5XZxd/+E9zM6SGD9wdGfZBFnaR+4cILYUz2KMkQknwOwdzzgkwWYPhzv4I4Tjj8hBuPNHv6q669XdMzuz0/U97c1M/6qq6/Htqur6/epXwV48moyzBp0Bj8HCE6Dh8ASQ0SakPehMbCY8AUS0WQFWmkSBXhNg8M9Pm7ByzBVgHzoKJCkPvow9hEwAcwcYpv9MsD0/+vhhfPe2Nozt3kkjVitB1PyrMQVMKY9QHyESoBcd4L4aKSRxk+ewPOrEhYCAVWCVgMCQcp0yDh2CdB0gKWLyHOgQQqF6RETpBJXiJ0+Z7v62e4c18+6asq2MWwhZD2DuAF1hegbtw0d0d1MTmlOp92yahiAx5Xr9zJAhKL0SaH6KTM9gVqlVnx17CuZn05x3cx+YpWzrZ7YUyhPAjHDgVdNmpTLBzENQkvLgy9hD9JoAWx1tVkapee3wBGg4/Epgw+EJ0HB4AjQcngANhydAw+EJ0HB4AjQc3h4gH3fQ+d9klLEHcLMIsClj2kZ7APMd7M1Txx7Arg6P8j5SJClnD+CmATNXob6B9mm+u6Zta35b6iu5T33qI2MNULQHiKBfDU9CmfRterkttos9gCl35rvb45sRxmknnyMB2R5A9V3GqlMvoA5jfz5d7AFMz59b3vT0Ca3WBmXutCVQRRlkUrgOuz2AiVy2/icpuVcHGzD4yqlrDzDo/G8yvDq44fALQQ2HJ0DD4QnQcHgCNByeAA2HJ0DD4QnQcJwz6AwMHcIBrvLXXystnf9z6kXvSyUMMgehNQfVVUH2mAMouTwEhGDU9bv4BwgrSMqi6j1s+Y+aPjCmYidH1dhuJXAJVSLuWVIAW/EDhwLo4wcOFeRShNCg7HHJX2CQyZ/l7pFI7DVgLqGZQKElNtgeYin/4hDgWnydtY69koIedPChURNpG0Xr5CBMYwdKqXh31V2Sx0ufh9AgN6edlc78GIi5DKDsJDB0eHpsoVzYWe0Zd2vcwCF1UwO5pFu1BkyPoEva9jooyMu8BmZdnEsotczcBdoZbE7D1sW6ddG2J8h2d5dJZFXYKW6XSzko0wO4dZ31ZrmBYy/TrzwGxg7WLd3AIUxVmIdp8wCojHuOJtDgMOgcbOX7V4jrVwIbDk+AhsMToOHwBGg4PAEaDk+AhsMToOGQN4cmzlIHB7s/8H7CpQZcNKLV4tn2RrvepRQyAiQbo1zcvVergN6hWlq2nLvVgMnVbKaNa5eOHekpk3/6MrQr10CYyyWg3hxq3sLpotFuK671jgK6tNxcQ+jz71YDunu0c9tr26ViZyWw9UD1tqYXNujKW8Nc3KnbtmDrNoi6WdLYc6BLx+7C3Z5zN4f0ao1BsWmDnNy2sTxrHNX+xFBK2aww1imsg2KYsgRwr4CgRFy3HJir0OX+9r39+vvbYtsIYK8DcwPaCWAmkIYA5d4CsgqoorIIhDTUqYfSp+n+VZDlu+ocwnT3fbE0GcHVHgRM909iqucAtpQz3w2m/c35XJa0BzBVgDyBMRXfnDlTEU1piEWzm32pmsBOQFMJVnMOJFZLp+AGU/OupsfeuOWSskOAmzlVaHURYR4F68R2q151OdzG4PombaZ0qh9qY58DKOH9A4hoW09MGjl4AjQcfim44fAEaDg8ARoOT4CGwxOg4fAE6DUGqc6ugLw9gA0mfZVL0ds19d39Rv3cBZbF7iEre9EewASTxtxllTDR2O1z2GCqR93NVebt4YF1+6u9gXXxTakPCNlCkJgtu7ff4mKjuDWy2unfrgvNYNLY2WIH2nDiVZ2207R5NHSSupd0U6CeA+iMDsz6qmxoqGK0ED05drMpvQ+DEFddX1Diquq+qvvbdzYPJTICyIrC8gfIRwesJ81XPn5ApsurtoE6C1PXBUW1+7qFqOPjow/ICCAqCqtw2HaSgF3ZWnd0DIQeRN1DyJ+qEL15ilV3kHuPoeknxCFgNc2UqgOPOvjI3EuNVaM9gIu23+4ewozMFkBtUmGu+mwQ0nsXSUIGJaViiKoGNX2BWhuom8aAi7JUNwnshbLVzWqx6kTTZRKJIQdb8DAZrw6WMTRd82bBrwTKaFjzewI0Hp4ADYcnQMPhCdBweAI0HMNHgNawLJI2A3kCuOmyTSqb0EmqC9GiuymvYoP2gzA0KOcu3k0VM1EjP10SkrSM4aq6rM8wQieA14FMAPMqtXm1O3mqW3SVFAjThVL13r2o659IQ3Q18ZNv1Zyqi71PeY3lCCIjgOzuvYhMH65zmR4QxM2/pryXuWuPuv41Jgx7Z5O7q+8vWxTkU3FzH9E4JL6Csyoze7y2abKS5q8+jq85uXJW7/7XO1VPjNky+QgdAV8HCQGSqjWZTIF4aIIa9Y9E0fUf8t3zeZAPQijmcEW6d0DDtoDqkXkLF6tM72DEfuqF67ESOnlEgbAwj0gUwWqv/HJ+euVWvgEo8xaQVbHOJs92JJNJPpFKu0BQ6AcC4e6qgchsTyS7j/BIIZ8XYDtwxGR2Wfcki7U0bZfXyMDxWoJV/KxfiWEzCDHPATx6jmE7OdR3z5uM4dMFeGwqPAEaDk+AhsMToOEYJQLMpisNs31J/zLG4n+XDbqovUNEgENxxW1wqHJKj1o0/TaEPCFZC5RtxFnm0+/zytiztehxGU9xLeuscy1PKSkwa839/li6X3MPvdwWE+7N/TPfIW2laB0g5CGeBM5nSgicvZIdSq8f5kZN0tki0VH2OrhzzodY4kmhCWGZN0uVO58LP8fBEnI5h6rc7eew9HuKe6TfY1zLAuPAOjM8wnFtDajv4eJMWn/yp+1Q7ChEVvO2MqZLfgkBFgH4vBR8TUi8SJCT7NJU71FQUiBkPP2+riji17hK+C0TINIETKay/BaxkDmJAnPMaz0Y6Da+jUu/8zkcY51xdgAv58OMawhwCoAXVdxhFJIsaQfOEjGEmQB5igeQLQQlTd/NB4jxJHCCn/BpQ/bH4k/94uI2Q+xlnpQIkMdhoVAhh6W+CuAgpBSY42CuR8gqUF+R23gs/X6NMg87uIiA5xty+ZcGmbkHNKvjA0Uq5SiWNP/f8EHxcrYS2LUkcIKfFMLIWXhhrMsLFfY8EX7dkP4kXzPe/3EyZfVhHi8QIKNAsfOP0Mp9FnN3nTGnM/wTdwLvYUYZ/zTwtPC9iDnm07/NRdL89/E8mQKuS8Gq5s/jBQCcxXPaEBcAaCYoth4goQAc5nFtmAC0k7yrc595bOMT8be3K6SX0AEWgBk67CkMAXlNatVtpnYvCbYQn+RthWtR8x/lecC7AOJBv4QuoNj8+QJeYE3jV9Jv4wWZrQeAy+KGf5zLeEohn+UpDgGPM6vpA8z4Vd6TfsujzS4eZD8zwNmEzPB8g0HJHAeVjbRL+NNhDBtsId6qIMAUh4G9HI3nUYtMR4LqyqAiv59vjXNn/DmukNl6gKjRIwqoXsNmJbmqF9iR+1RVEcwQPefyELOLBRDeCxY0w0CE+Rpd/HrNEGqbjnsgpgAIzW8iwJzwvdjpFJv/8/yN9KsIc5do7gHmFK95ZeSQDFHZZ76K7gFCfon5witgRIn8lU6udLZJHtwg/BWxnL7lwHLFEHokFJCaf5jsAWaBlwq/n6zUjddFCIrm72XqEQaj9t7PYbn5h4kAHgPBKOkCPCrAE6Dh8ARoODwBGg5PgNHCY4I+wwkyAVoOG7P1cDl50w2zSo36nKDLLr7lHyKU/uUtG47k5EcU9xW15fv7IAf4gqV+Orn1hTJ4XfzPjCWWWEp+iK+BLbrMAfMK2/wN3hivQD3KI7yYKaU692n2Akd5MVfllLXg/u6b6Pbl8HPcEl+NUrtZoe87mv7aW4jvqo+PVvgW+iJPwgTAkqTuBuhwgAm6wATd/Ps6LbrAUa7nCHtBuX/iB+wAnuFSQ+0uxYtJy3ye+0QCRM0fadOKFAjZl9tZU/b08Gg/4ad4E5/iTTzEHk0FzXKQQ0wVdHri1k/VHVyOb/8vLuFHXMQz7ND4OJihQ0jANAtaOWCQf4UzbON3lfKk+peByZI1mEiPpup2UX6koIQ/yvWK+x9iimXup5vYW4jq4GQ5dZ65So5axC1das3hLXyfDU5winV+qAwxyzw7uJFn+rAO+DQX8z0u5Htcwve1oaK19BmjHFmnLuEMx7XqmuTpm1RKJ6Ra022QU6/c/YbDFYA/AM7jLQC0WMsI8IS0mj7PHE9o1aY6rGFz5nwzD7GHz/L7fIHXKYzLZpnnMFN9aX54Mf/Kb/Mf/Bbf5G0Klcq7gcRYaloRP5EDBvk2xjSGL0tSw+fX8jscSNOPtsguKu+ixjX8C68Rfn9JYdLyDmAnsAfB3iohwNUkxhTR58G+NMEtfJ//5suc4stsFKRJ888Z7x0a9OETqXsaVQ/0HV7Kt/lNvs3LsklQijZ3kuj7pxXKn0x+Nr8wyLM5gIxs7I3wxZJ1N5ErU76HeK1UK6/V3j/3gIqTwOTpVdukjbOfG3lHbM5RZGcoxS2OsEWzzaAgNzW/fF5RMY8hGQHWlPJ38CFmuI0P8BH+jo9J8skCJWSVUF151vz5qV+GVm4IWDPIddJniNTdefkSk/HYn7PldCeAm5f+FslQUHYOETWw/ulP3gISqN4CJlIXNWqCyCi+p3yQvzXmro48IDQ2v30anVFA9QZwG+/jAa4HjnAdt/MBSbrEJA/xMybzcfNOorJ3+bI4SkhIly5hbBmsL6IudVPnP8/Nwq+bC/3JFFHH343LMKWQm37DPm3z1ZcvW5s/MtKKOvYJUpMtCWtMgGYD/c/5RDzvv55P8HNFiD1MspyP66oOnq6xPOFRBh0oMflzRzREFSjo7QEaDq8LaDg8ARoOT4CGwxOg4WgeASK1seqdppOqct/tkM55yqtDdzy8DSIBptMKqP4aUt0/QF20CNPtWse1Vg2fi9//DxQo8FEOcA/38E7eyZ28rxAzqp0H41/nAefF/yLcxMcJuYVbCPk4NxXim91X5K0Z8vYMRbktRNHTgyyPkb0GTrPASR4G3sa5qdqzmIjtlG3ol9X7EpPM0GGaBcWiSnTnE4xxnN2aXCQLsjdwL8WVwlel38/wHcVa6Am+yhQzdOJ05OVwuzo8Wb3vKhXJ5rVXlfvMbi5EkBrKzCtcfoZMCDFSdXamDl6IV4mPcy7PFva9DAMmgQWuZBKYLBDgBLuB3Wnzn1CkcFH8qd6e+hS/zE+B8/k/pfyr3MgUL0h1+uX7yavj9csQ1arnLPPprkLVI7TGg4IVRbGHiyh4pfC9iD/lFwD8ILkgDgEPA8fZzQk+Wbpo7kfKmGIrO6kUkZ5tUvguYixu8qT5izr5Fq835uF/+SkAP+UNCukxpgiBdtz8xWXdceGfGvOa71H+54F5xhhnXGlR0GIPcIhIsVuE2d13QJcZdrCLS7k0sxmS9wZGzT+m9BQU5r5VU/aYsmhDJ376YVnZP40JT7+q+buSzUN+rf07nBEc4RwrxH8NHeAAO9Hp9LZxpnSZMlySfj4I/JEixF8BkQ5jikjvJyMko1Xx8ZkFfgj8grPZwa08Gl3O5gAhz3JuXHUb7Kxg8oUxhJvBk+kOopZeNUf5Rtz9QdEuTm5+VQNO8yfCr7u5z3B3FcEi1xjR4HFG6QJnQhq182P8DdL1kPsKcwBRWXyCD5WeA9wEsRXGUla72RAww7k8y1c5xAY7FV1s5mhd7XJdvKoKEeT+maWqOyzEjZd9F5E0fzQQ7MhGOSAzeFtkgkD5/HZ4gN3xv2LzwwIneAh4lGimUcQan+ULnMe5SnOsOYuDjQu4gHu5gF+L/zdjt+JaMge4EvUDtYuz2cUudgE3JSGyISDyfxF1gjNDOAWMNkfP0OGbLCg2R0fN/wxjsW1s3gtA1PymidutXMd/Ahcrmh/gEaYJWeejdNmttfx7SJP6QcFpxP7C/uPD8eb67P/DuRA7cpvKi14OREsptdWUwjNCWW3gIF8DzWjRTTv+H7AjpzVXz7vVuVfnP5pfPMsfsxYbZmzjZ7m4q/w7T7KqraWQIN0vcLjghewPmY9N8ub451wfc0hhvyC77MuHKDr0U/ov8OpgEXv4a+DDmqd4ifO4O6ZVi2O8ukAxESoCiGZxdjpuCjwBGo7m6QI8JHgCNByeAA1HngCHtP7C7+Lr6SLt17lr0Bn36A3kpeB/43LgdVxRCPdpaX38lbySHbxx0Jn3qA+xB7iDywG4nDtyoe5Kmz9boXuDshc4RRh7zFbhf+IexL7MNIwLUacERdWp+skNB0QCtIAJJiiqGl+tjKu6uj3+U+P8+POAJVcdhcEGLMWVv6SNZwthk4ecSs01ik38Is33LY2MANHzv8YaxT4gW/QU1bR2r7Z5BAQO54JG+2TzFMg2N05qGtAWYolJ7mCcO7QpwHbmY5LoaTxSyBaCovF/gmiD1XeleYDs4dLk7/IIezWuCSJEi6gnFe6SO/E6fbJNOr9ub3fEGgLL3M9bmFSGCLkjNvW6nfdqUzidNn2ZEz22LJIeoBOP/91YZ3V5xVH4aTKf+Sp0gR8r/Ocknb6u+V1xP2vcb5DKnxlcTFhmgdOc5jT06ViqASDpAUQ1SFEl4t4D2BDt4c1vbsyaXd/8g+8BTgnDwulRmQVEPUD2tLeECWB29SvKuKqrHcscP1AcDA/TsX2O6elf1nyXr07STb3wFOXv5XbGuJ33Gnxtb3eSjMwMITk0SiONP2/j/Qrpx3J70LOU9D2DXp1s7/ztThZsIWzykNPcHWvpTmme8aongQwpIgKcUjJa7OZWaOekq+xTxOlwwDh+m+wJbHGHAyNJABcs8Hvpm/8xvmg8MWOU0VgCeIwkvDaw4fAEaDg8ARoOT4CGwxOg4fAEyKNj1Al0rBqDLQaRACEbFhVQ746EGBSe4AmjvGO0VehYLRm2HOQeYCcHrCRQIyNPS5tCh41Y09Bho0AhmX5HFPIjUkoqCuq3lifxruIqQ/ncm9/FqmlLIO8rOMJJVpVLsnpvwqEULyS/ph9VXgB0aLMzurchhSPsLcgjOwNdfLkE+tM6dFLZGbVdOiIrgmoCgPrECRsBIDH2kJVC2a+NuPGwpKAjgD6+nEYvmlgvDRXbr7co1JPAkywarHr0OMli2vyLQgUFLMZXd7HISYcUdLDF3xyMRNNHKBIgaoLyOrkkXosNFgtnbkwTsMgGLaa1jeh25+nKJDD5Hoiki8a4ojQ0hN1SkIcA3difhdCfKDD8MHfyEbK5SnnploS4McResMA55DDCJdfTmIzWzdItCa8Objj8SmDD4QnQcHgCNByeAA2HJ0DDkSeAae+txwgiI0CLzwBwIW/X+NqP9Gyf00g9tiQSArTopu5HL6erbOQZFjnG6+k6LBTnFbJHcp7Aj2yy3EODZCHoOLv5Mq8i5HNcS6h0hxyhxT3stDqTLboqzv+WHSX2W+6hQUSAFl1+zEXAIxxnmh9xoWIPbwic4G7uY4OdmgNMo3AqX9XjsTv1bZxhW8Gfdsg1PMY1gsN1tfyx1Be/Sj7OevyHwl+3hwKRLuBq4FsAXAvAt3g9VxcaeIYrmeReYD9d3qUlgBpXABcDsJ2zFHsRI+cy2zkLeE7xdnJx/HcF8Jwi/e3AS2L5S/zbjSsiAjwBvEK4+or4mowOcD9dbmYXJ9ijTE9vJnGh9OtjsWf7DNt5v0CLovxC3h//meJHYbYr5B5KJHOADXamm6aXmFQ6cYmUwIeY4gauZkrrD1s1BBxB1jrl7Y36LffQICFAdB7Gj/kWr+BC1CcGZNYAi8AB5TlX4WgZTI0+xGPj/iz2E/Rd/n5UbF49bPD2AA2Hny03HJ4ADYcnQMPhCdBwZASwnQdQV77Al1L5lxTn/vVb3u/yDVpeEclbwKcL5+V+RjoPoK7c5mau3/J+l2/Q8so4+2UAd/GWguQKXsjD8fe68tv484L85ZyfahP6Le93+QYtr4FoCMg8/4vbpl6t+CYiL19Nj5Zd1cYPDPFt6edT6Ed8W/lt+TfHPy1tTNPFN8nFXKhLXRJ5V7FqZ9A2V7LZ7t8VYB/q3cF103eJb09f5Q7bNX6AeoNZWOJ3KKRSlB8FYK+2/pKrH+JWerJDS7U1LF/MvByNPIzH3eJ4nE8n1Fw3p28vcNID2WIHWsq5pK7Ln0v6IWbPAtcZc3ATtwrN3xOcUz8JAc8J/5dHaO0RzOhNA+sfAHv+7XFtarIHDLKb+AgfoafN3/shYAl4M9WHgPpdvD5/xRSqdeGm9E35K56/UE4eUUBs/h4MAdEk0HYegJt8BZhkMv4mysWTsEPF1eOC1CbHKEcpl/MfFq5+RZLY5FXrJylfWFl+q9T86ruWRESAY1IGEhxTfBORl7fTCmxr44eG+Lb08yn0I76t/Lb8m+LnnVeVlQNS568udUlE6wBrXMHLc5JV4WSfuvKH+Z3CYZSf4a2bJu93+QYtr4GIAPCPPI+zuDS+eoxl/kIKV1f+D7yQc1Obv2/wgNA8myHvd/kGLa8MbxDScHhtYMPhCdBweAI0HJ4ADYcnQMPhCdBwiMog2+m8wy73qABZGziefltXhq4r9xg6FIeAek23bk2h3pMb1E7BQ0KeALYGXGfdKE/cM+hga0CdL+8EYUVdv4cGeQKMg7EBxxk3yiMPHXqEmA0mTAe+gN2gwqMkikPAeIVU5NjmFOo9vzYCeZSE/siY4Zvl+7eAPqDMeQHDLveoAL8Q1HB4AjQcngANhydAw+EJ0HB4AjQcW5cAbb8g1AvIBKi/zhYyS8hs3/PdZkVyAOFRETIB9sV/g4bt6Y6af3XQ2RwFyARYIdnXN0jYnm7f/D2Eaw8Q0i78lUNY+KdG1Lx6GibN7+cAPYFsEbTCKivKZysAVnN/5eDmvj1p/n1G+aqfA/QKMgFMPcC+tGmSv3IkmC9cKR7p0hbSV6UuN78fBHqAYeoBxOYPtHLf/D2Faw9QH/YjnMo1f1sTzqMUhuktIGA1/itC1fx+DtADyNvD26zSHsrONYw7/fynR014/wANx9bVBXj0BP8PmH2cSu3btugAAAAldEVYdGRhdGU6Y3JlYXRlADIwMjQtMDQtMjZUMTU6NDQ6NTkrMDA6MDDakssZAAAAJXRFWHRkYXRlOm1vZGlmeQAyMDI0LTA0LTI2VDE1OjQ0OjU5KzAwOjAwq89zpQAAACh0RVh0ZGF0ZTp0aW1lc3RhbXAAMjAyNC0wNC0yNlQxNTo0NTowNyswMDowMAvHTH0AAAAZdEVYdFNvZnR3YXJlAEFkb2JlIEltYWdlUmVhZHlxyWU8AAAAAElFTkSuQmCC);
}
.ui-state-active .ui-icon,
.ui-button:active .ui-icon {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAADwCAQAAABFnnJAAAAAIGNIUk0AAHomAACAhAAA+gAAAIDoAAB1MAAA6mAAADqYAAAXcJy6UTwAAAACYktHRAD/h4/MvwAAAAd0SU1FB+gEGg8tB0n1qgUAABg6SURBVHja7V1tjF3HWX6OEykqwcF8uSZxspJ/NAEhS75LJBSEZBSha34EFZXAtSM+GqN1qtKqCMhurLs/wpp274JCUhdpXTmQPze7WheluD9YU5tUpjEW7q4DpTilatq1Q7fmT2n+kCLhlx/naz7e+Tjn3Lv37s48o91773ln5szM+5w5Z953Zk5CiAgZu0ZdgIjRIhIgcEQCyOiA0Bl1IbYSkQAiOlgCsBQSBQZNgNFfPx3Ufa5N1X8UJgrkOY++joMEiaFDRB2CIZSANU7HIoclfZ62Y4xjPzesad01sJ+/POqu4zYKehXNlfMhQMfZPOb0eVpzDi4CuM7uUwN3zu46bqNQpfmrKKFeeh8KwpF3k7L75uyq4zYKehWbKBDO69enB6l/Bfv0AG4lcy0QQA/gG+o/A9TvgP1zcD8DwJHWpN4AngEGEUbfNJ0GBLPfgjoFAUZdxwGGJPoCJHSwhKNYHnUxtg6RAIEjWgIDRyRA4IgECByRAIEjEiBwRAIEjkiAwBHnA6hpR13+rYZm7HR508hpbbcbSs2mWhl8DJcRtsl8AJcvMi/7jjIFV28ANwHcObhyt/kTbY3f8SpdXW9lXvYd6gxyN3+VJq6X2m9KittdXJee9kACAXbIbAB1PoCvx75eE7v7D9/5AB1r2ereoALvAfxDp2YT+9DLHtw5uOjpcwMJ9hlgEGH0jdN0PsCoy7/FIbqDA0c0BAWOSIDAEQkQOCIBAkckQOCIBAgckQCB4+5RF2DsQEhGeO4c9ctQsfx3N0s+lEYYZQnIWYJUSXXK6E45gprLtwCCyEKuCpkB2VnNapKqqHsOV/lT1SfWXNzkqJvarwY+sSqk3SVFcFU/8aiAOX3i0UA+VTBfoT69h60OifJZ7Ry5xN0C9hraCUSO1IDrIpbKL94CfKtPBom7kZIBdPA2Bbjvok1KQEXqhJWKZ+fOkl9e5jKQRW7Pu6yd/TIQS5kAVR8CyePqccXyYWe9a9xPuYlH7jYF+eRbtwVsl6BP3u420ORVhoFlF+cTi5fZu0A3g+15uLpYvy7adQW5zu7zEFkXboq75VIJVHdw6KOA7X3+GsPIOB8gcERLYOCIBAgckQCBIxIgcEQCBI5IgMARCRA4RAJ0QBj18miXrXC48GkBH49ovXTieo26qJ5WWhXjs3iy7vIuvxR+Oddb++O3rMy3Bfj0eYyOd6qqdehYW8C+ME4uZcoWrXncxXTFaVJ9n1huBdQtt08LmGKIqxI5Evm0rd9e7Z0GBNDWTtZt/uobRvtRoD793Fu4+6jALw9OATr05m/SA8k5kzMGTwAtjuwLILh9fQDvdFTvPUmFtH4lKOcimPzxrvPb0rvO70qt33vNpXR5/OGUcunTV94AMOx2rM7lSICqo4CyAep4rBIhDz53kj5t56+Dstz1HrLsZz+aSfMZR0crt0FSuKsTg9SWM7CcSWybXaulrHQLqHIf79TIw/UQ5tOBuktnzsfehfrdwfO47p2W6t6C7A+B9rRyKdMrreLp/U7k2iLCrsQmqas0RTUC+jxB+NOvLgF8cq6UR5wPICJ/cVx8X0BEKIim4MARCRA4IgECRyRA4IgECByRAIPGNhtWqfMBXLB5zH2q3skNUGOK5qWzrU4ax7ordjC73chmK/OxPuXnMNnsfC2NTS1xrpyphlS2xdVLP4JQGoJEZppsYTZ/lbg00pbe5onzcfPYPXKuHNIYZPDU2Ra4iue1p6+T+8jAPwMsGTp5u7+qvDUs1ZhYli7LdHWStj0MyNvXl1Q4yp2XO797ZfNYouwBUjt42YS2VficrPRGZzlXSJtL/ZZAuxdv199CwqZGVw/hn7Ntj4AtRtkDLAt+5jpFWzb6qfMGcHn73ftn2JEIPQjfQ8ifXIzBXMXcGeTeY0zUL98ClotCcR142sETbBMSbJMWjjLf9EYC7NevHUlRAn5Khb3py5uQeXeRPGZSUSrGqDuhZjio8Jxtm6whx7O9MaTZfvw+vm6qKfN5PifHKGIQMwa2NER3sIyx6Zq3CpEAgSOaggNHJEDgiAQIHJEAgSMSIHCMHwHaDe2BEZWgEsDPl21z2ZCX1BSjjdUtGYmPeh+EsUG17eJ9tpNOcKRBeVaRk6RtjVd3y/oSdTyWOxAyAexWaru1O7+q21hlKZBf8wnEpYkl0q7/SBFj1ZA+/1ZvU3Wx91lChLRBhPrfZC23zXdpE1Gb+PXzcs7EytMcTGUgawnZ9e9F6GjybWa1H64vwG91u51J6VybI7hglZt89q7ftqO6RI0nznbI6xvUGkATxClhCXQ1qTBPZfCbEGGeVKYSyDQlgy+ha/sEmeAJKKo/RfnCCLHJTAouJ0b5vHaBg89u9kdwAaQ9R+Szifhd+eXy+Lw2IgJAtVEACaMAfsaNbQDokh8ppKsAEu1Gkghn5x5W7fOJxJ0xovIF+L8wQp4VW34fNMxPEc3QwVJUvY5xmw8wLPVHGDBuBIjYYoyfLyBiSxEJEDgiAQJHJEDg2EkE6BaWhu5Q8j+AVhYOjLqqAwSBQIuZc2SDFmu7FS41dLIQXZMcNd2K6bvO1N2aOafhAIGmiYhoOvtlKwF/jqlMOmU4h1nuSgk6qwT7GQot5Y1/nnrUK4igqrE8biZIufp9xbqyyESSvqLCvkW9ehO75HIJXU3DNXWLpomoRS0imqaWpQX4c+iwtZC/RIyx4l3HIkZqByAsAAD+QeocLgjdxBdwA8CP4ERx7CYmlK4ktxKeA/Ak68qZLL6vMe6ar+DnhN+v4ilJCiQ4VsjUdcaEWcwJv2cxZ1y/a3JmTUq/1RK2sIZJ7Afws/hTTGKdySHBJgDgp1BvhVFaK24NtVkixjhXtDt3/imckX5Lbw/PVb+qRshwA8B1fA+vWYrfyj6fNMa4z5L6VdyQCKDiDERX8hmBiilOAQUFZnFKooPYgOaGvA+vF99/iS3DfrwfCe61lPL3LTLVI8nL+RdQJ0wu1SiWq//P8Ufi4dIbuOrI4Dq+p8WRi/ATmS+PmPk8KX7ckv8xfMV6/ssoXcZncFkjQEmBWZxic2grn3rpft1a0hn8LT4N4OOYYdN/F8C3hO86ZjFX/G0tcvW/jPfJFLjbMwNO/Sp+DACwC3eMMfYAAM6yMlcPkFMAOIPLxjgJYBwDPKp8qrgPf5V9e5qRPoAegHkAM+jhCe0WoHpS6y4zde+S4IrxCn5XO5aq/xzeB+CjAJDd9L0JwPUQagX3OPP4oeLbpCZz9QDAgUzxl3EAbzPyLt7GIoDL6Br6ADt+GB8vvqnoYALnMYUZAHeBMIN7LRNKZnGKVdKE8GdCCy64YvwOQ4ATOAPgSZzLnqMWMJ0K/AmgQuf3vc40n84+JxmZqwdIlZ5S4G1mJN6V5FwvsF/55JoImEF6ncu3mAnMA/hs8XvecBtIMdegi19rGIOf0/FZIKMAIKgfxTCw7RhGuYcwlyT5pcrjbNUOMNhhYD5IKj9Npeiyo20O1Ya5bnnfWHufGGIN+fzzQWBPPDo+7uAugJ8Wft+o1Y03BQE4IVzpg889xWimpkzhjHT1I84HCB47yRcQUQORAIEjEiBwRAIEjkiAnYXXBX+GF2QCtEFwLcw2gwpHRtOhRRfcpI5ZYfg6q0kXlWHvoiJfUeQrzHmnBPnUEOQA8CVH+/TQq91uh7NgRx999ItfQpu0iahLXUrX98phg1qZGeEiTdMiawa5lhkiVuiaIrd7stXQZePPCp5sIqJZ1hCSBz2925CTxpmm6Wzix+DleZzUqKNKeoVBrq2aazLtEK0Qstq1mbxvERHRLWvr5sakPh0niK+ObWdWMGIpQMLLInzsYPzycKK/yf7OGxuoS+kElK4hf9PLV10KJgL9J4FuE+gdMi0wn84k0xY5rPLD1KLDBnne/H3qV27BHCusfEVLvcKef5GI+tQuLYmiOzh3Us5httZGLeJyTt5z+Cf4NjZwHZtYw3fYGF3MYT+ewTtDsAN+C/fjm9iLb+IBfNsYK7Wlz1jlkH3qEt7FutFd089cMcdY6RGp1Uz7rPCzLX7S4wgA/AqA3fhtAEAbF1D0ANe0OXXXKvcAYgdn6gHOE9EFInqdvUK6ROzVP6ge4N8J9A0C/Su1mPN/zNED5HJY5eYeoC+VTr0F9IRSp+hVqt+XJdmXmRY8Tsf1s6un6GZE0Jt/EAR4nj5Mr9Az2V8V9cuz4kwESPcnaWf3S1X+NSL6t+zvhibP62e6h5fykw45n76896bhmYoEUN11+jOATTsi/aTjagbipyxr0SKh4FCPiWEngO6vq6J+tXp2AvDyp+kb9CHaoA/Rf9AnFPkxrXRTA5WX6ocxyCpuW+Um6a3sQVCV9ym/92/UJQAcId8jqO0Zn1ewecr2rNLA3CigXVSdJ4iZgCn+0FG6JnI41O/jcs8pwI0AXqA72YPfCt2hFxgCnKe+ntb39G6Fys+h/DOobdKyXf0qBWY1qWtat11OZH+VRVN536l+1zCwpEDbkLpcC3BWS23sgXzdwdMNzBMRVdADZI/9gJCafp5SD8f5AIEj+gICRyRA4IgECByRAIEjPAKkbmNuTNMrxkYf88hnN3uUsN2eqoUx4XQxRp52jFhdxoy6qZuENhGtZ9/XjaPli0Ud1ZHynxHRGTpDH6GPENEntJRp65zPfu0WQnrkJH2GiJ6n54noM3RSS19aQjlrh7wwn0hdiK/LXTH0hfysnUeu4AYt0iK9Z6GAS73DJEA/K9c0a1RJsZ6pny9Fbg45zpq6fr4IP0OcLXSdFrMS9BkKuex4uZeiTbwZzH6kTN025JPaGruZN4fbjV1MUTirxAgbxdXznlGJoyRAbsviz5GrvfzUc7hoURHRXtpPu2k37ae9rEIWCUTUK3z6tuuLJ4B5DxGitI/oFm2sEwDSLAqdAGmuK4VNliPAb9GxLGRy8Rng7wCs4xCu45Xa9xL9e+U7URFUpD76Y8J3ES1cBwAcAgBcZ3zybTxuLcP/4PsAgO/jg4z0Ck6AAHRwDOr2FSkmhcBjzvA9Lf8cgDm0MIlJdkZBG08AWARwnM3dvt13glXMYD8m8CAexIP5YXlxaKr+ljafDhCXNdXbKVhVaPUJJz0czNT/KvsQ18K6Vf2r0rr8BUX+NbxbLAg9gyta+l9AD8CzeAi8+oH78G7lOpV4oPg8D+BXmRh/DCBdtHoCwDuanFDSSr98ugC+A+D/cBf245O4lB4W3xfwA9yTNd0GHnLsuA+nXH8fQBUpd4ZpzBffZxgK/AsOFt/fKTkOQFU/p8Bp/Kbw6y/xsuXsHMHSrTH+FwDwLrsFzhFpnpX6govfk44TXlbk8nyh63hOmbWVbuGfTpadY7bzJ5wEsAEg9Qtk0vIWMIN78AP8MxaxgYeYLrbcaJ3fcl08ysVIlGCXcmeYz5RXfheRqz+9EezHLUmaq38BR5Cw128Pn8OhLOjqB+ZxHV8AcAnAIWaHIOAC/h5fwm7cw07HmnVssLEHe3AWe/Cj2X87DjHH0ovoIA6Cv6AmcBcmMIEJACeV23XxZOgaBo77KOAW5XNjuUeknuMM67RCK+x0KmSpiXqZy3Zdk5t/qUentBiuYSDRcS3wo4CVbK8w/SFwsQhEz+mjAL8wSgLYQ5vKCdG3SLUD6M/d5tLz5U9HF+9Rm/KJGbu1tEv0PHUsrUQEmsqCGqOVjQLS/+o2dFtgB4gB9ARdpav0hEHap/MFrdq0m6GYbRgI8tlKcstDnA8QOMLzBURIiAQIHJEAgUMlwCJrBQSA03izeHJ4E6dHXfCIwUB+CHwLDwP4Oh7R4r2m2cc/j18bdeEjmkPsAV7CwwCAh/GSEut0of7SQvdBthfYBGU7ZnP476wHcU8xH8dJ6JvC6GmzeXZjAmFM+BZR5md+Sxktrkmj2xxrzLjSbgiyj5LL0GOtdu7lVa4YLjnRZjE+32xQ/m0Uyq8vSQp+yVBxl7HD3TxtZ4x8maRMgWb7aObyF6lFLxpz8KvdDiXAW0RFD6D2AXLFbc2wQqZlYaL6NxhJr/jk1O9WDjLFtzMicPIXs28vWnLYDJMAPVIhKsCfAHznLed0m5mvl6czqd+XAKWlnpPnFnZ9d4ASZgJ0iWiTNmmTxsaQOzgCcAquQwBXyJWkqz9Vu0n949ADbArn3yTsjCAroLwFyGq4yhLgKpOhqwcwBbEH4tOP/hnATcFtGLiq6ZV8gZW+wGToahyz1Hb1ywoe3SggjTNypQ2eAJusgsUmWNKkS0Y1up4BTLK6vcfWhh1GAH938Dx+EY9l36/gH61vzNjJqPsuoDFFnA8QOKI3MHBEAgSOSIDAEQkQOCIBAkckgIoeqLZ0G0IkAGHDMRGDMKhXQowK13DNKu/h2drS7QnFSke0YbHGid4AVZKnaxtz6NFG5gjq0YYlBxCy5U2yfEXKqY67tucwNvc8UuctMP42S6/AN59JhTYCiOn0Zu4VaVLluXIwE8CU3ocANqnd0aNLd4hJ2FRJflqHiwCpCsvfshSEQnmuHEwEMKd3E6Cqis1SbvHlNg38Q+BNLOA3atxPbmIBE0gXJy8INvMEC9nRCSzgpkcOJrjSbw12kjdAY/lOfgZwheCfATYc1TITYDsE8iBIr4F0W4boDVTRw7OWLt4u3YaIBAgc0RIYOCIBAkckQOCIBAgckQCBQyUACS8WjwgAJQHa+DwAYC+eRpuNm1oOLhqkEdsSOQHaWC22H30Yq6ySZ7CAK3gcqx7vtVPNCyuKAWpli+URJmQttk5E/0Qgoi9S+nIEk/GwTRvkfqeI682j3H75w5THYAi5UoluEwj0ReoR6DaZ3k69Tscpdcq2jZnyO9W26DC1sv+HtQXaRIeJshhp4OVklbeKv9ZOs9kPK6TvC3gUwFcBAL8MAPgqHsejuKB0FjM4iGM4C2AKq/ioJrfjEQD3AwD2YRf2afJ9APZhH3YBuMOMTu7P/h4BcIfJfx+AD2TyD8TRjS9SX0Abq/gvvL84eht7cYRVcBuruIkJrOMQ6xShbKd6fbf6P5B+/wVmcWoL5REmZF3BBpWLpvvEb+KSukIXieg4LRpn3fC3APnd4vp8o2HLYzCE/Ev6roDbdJFuExke8sTJED2GAERmAsQwpqF0B0/jw9k+gV/HX4/lPn0RQ0CcDxA44tNy4IgECByRAIEjEiBwlARwvQ+gqXwebxTyN5j3/g1bPuz6jVpeF1mer5GK16TxYlO5a5u5YcuHXb9Ry2uH9OM0cThdRGsqd200OWz5sOs3anmDkN4CHis6BPGVrY8x30So8uXi1bLLxvSJJb0rfzWHYaR31d9Vfnv670ovxTWlt8nFUvC1rojUEFRagxLtlyznCiK+T3wJwFHpyODy90nvzl+MUTV9wuQFS358+jIXXX4OAPCksf3yo8/hkxjMIlUCcTv8ykf85Pl9t7wfq3JSflfNn88Nnr/d+ZM1/+btA+2zmjx/4+9zzBlrhrsHwKESd4T/dbjo6hHsEJej18khET7rpCePtLqjXMbnLLKT+BQ+hfzqHxAGfQvoA3gK9W8Bzbt4c/n0HOp14bb8beUrFU+15CkFRPUP7Bbgeh9AKRehypcodxkvKXLxpVMl1hg5OeWokf4qm56rn6v+YvmrppdvL9Xl+U1AlzceBVyR+JDjCvNNhCrvIN9DrGNMT5b0rvzVHIaR3lV/V/lt6QlyT1VVDkDq/PlaV0XGhJ1uiBm1IWrY8tqh/DpPbxSZv0HzWtSm8tP0ZiF/kzFiDFs+7PqNWl4zxAkhgSN6AwNHJEDgiAQIHJEAgSMSIHBEAgQO0RmkOx1ljLs8ogZkb+Bk8W2Njd1UHjF20G8BzVS35syh2ZWbNM4hQoJKAJcC17BmlU9iTegHdLgUKE6J4kA1ff0RBqgEmASsCpzEpFW+hkkrQQj2CROk+cRkuCZURFSEfguYrJGLnNqeQ7Pr10WgiIoQnUGjfoqPo4ARIHoDA0c0BAWOSIDAEQkQOCIBAkckQOCIBAgc25cAnWgQGgRkAjS3sxG6IHSHXu4OlnB06GcJADIBjmZ/o4br6k7VvzzqYu4EyARYyv5GC9fVHdU/QPj2AISO9lcNzKokFql6zTTM1R+fAQYCeUbQEpaxxF5bCYBl5a8aZr1i5eo/apUvx2eAgUG6KDvZnx6IOtofH69L/OtadOhxxPxhlMNy/hgarQ2kxhMuCLOYY1/WoI8M1Djl1b/ElkG++uMzwGDg2QP4BnMP4JO2ytVvihdDpaCqoOmrHpoQwBY49cebwMAJ0LwHGFbI1a1+xtAwxBlBgWP7+gIiBoL/BxnJfO3m3rs2AAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDI0LTA0LTI2VDE1OjQ0OjU5KzAwOjAw2pLLGQAAACV0RVh0ZGF0ZTptb2RpZnkAMjAyNC0wNC0yNlQxNTo0NDo1OSswMDowMKvPc6UAAAAodEVYdGRhdGU6dGltZXN0YW1wADIwMjQtMDQtMjZUMTU6NDU6MDcrMDA6MDALx0x9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAABJRU5ErkJggg==);
}
.ui-state-highlight .ui-icon,
.ui-button .ui-state-highlight.ui-icon {
	background-image: url(data:image/png;base64,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);
}
.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
	background-image: url(data:image/png;base64,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);
}
.ui-button .ui-icon {
	background-image: url(data:image/png;base64,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);
}

/* positioning */
/* Three classes needed to override `.ui-button:hover .ui-icon` */
.ui-icon-blank.ui-icon-blank.ui-icon-blank {
	background-image: none;
}
.ui-icon-caret-1-n { background-position: 0 0; }
.ui-icon-caret-1-ne { background-position: -16px 0; }
.ui-icon-caret-1-e { background-position: -32px 0; }
.ui-icon-caret-1-se { background-position: -48px 0; }
.ui-icon-caret-1-s { background-position: -65px 0; }
.ui-icon-caret-1-sw { background-position: -80px 0; }
.ui-icon-caret-1-w { background-position: -96px 0; }
.ui-icon-caret-1-nw { background-position: -112px 0; }
.ui-icon-caret-2-n-s { background-position: -128px 0; }
.ui-icon-caret-2-e-w { background-position: -144px 0; }
.ui-icon-triangle-1-n { background-position: 0 -16px; }
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
.ui-icon-triangle-1-e { background-position: -32px -16px; }
.ui-icon-triangle-1-se { background-position: -48px -16px; }
.ui-icon-triangle-1-s { background-position: -65px -16px; }
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
.ui-icon-triangle-1-w { background-position: -96px -16px; }
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
.ui-icon-arrow-1-n { background-position: 0 -32px; }
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
.ui-icon-arrow-1-e { background-position: -32px -32px; }
.ui-icon-arrow-1-se { background-position: -48px -32px; }
.ui-icon-arrow-1-s { background-position: -65px -32px; }
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
.ui-icon-arrow-1-w { background-position: -96px -32px; }
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
.ui-icon-arrowthick-1-n { background-position: 1px -48px; }
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
.ui-icon-arrow-4 { background-position: 0 -80px; }
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
.ui-icon-extlink { background-position: -32px -80px; }
.ui-icon-newwin { background-position: -48px -80px; }
.ui-icon-refresh { background-position: -64px -80px; }
.ui-icon-shuffle { background-position: -80px -80px; }
.ui-icon-transfer-e-w { background-position: -96px -80px; }
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
.ui-icon-folder-collapsed { background-position: 0 -96px; }
.ui-icon-folder-open { background-position: -16px -96px; }
.ui-icon-document { background-position: -32px -96px; }
.ui-icon-document-b { background-position: -48px -96px; }
.ui-icon-note { background-position: -64px -96px; }
.ui-icon-mail-closed { background-position: -80px -96px; }
.ui-icon-mail-open { background-position: -96px -96px; }
.ui-icon-suitcase { background-position: -112px -96px; }
.ui-icon-comment { background-position: -128px -96px; }
.ui-icon-person { background-position: -144px -96px; }
.ui-icon-print { background-position: -160px -96px; }
.ui-icon-trash { background-position: -176px -96px; }
.ui-icon-locked { background-position: -192px -96px; }
.ui-icon-unlocked { background-position: -208px -96px; }
.ui-icon-bookmark { background-position: -224px -96px; }
.ui-icon-tag { background-position: -240px -96px; }
.ui-icon-home { background-position: 0 -112px; }
.ui-icon-flag { background-position: -16px -112px; }
.ui-icon-calendar { background-position: -32px -112px; }
.ui-icon-cart { background-position: -48px -112px; }
.ui-icon-pencil { background-position: -64px -112px; }
.ui-icon-clock { background-position: -80px -112px; }
.ui-icon-disk { background-position: -96px -112px; }
.ui-icon-calculator { background-position: -112px -112px; }
.ui-icon-zoomin { background-position: -128px -112px; }
.ui-icon-zoomout { background-position: -144px -112px; }
.ui-icon-search { background-position: -160px -112px; }
.ui-icon-wrench { background-position: -176px -112px; }
.ui-icon-gear { background-position: -192px -112px; }
.ui-icon-heart { background-position: -208px -112px; }
.ui-icon-star { background-position: -224px -112px; }
.ui-icon-link { background-position: -240px -112px; }
.ui-icon-cancel { background-position: 0 -128px; }
.ui-icon-plus { background-position: -16px -128px; }
.ui-icon-plusthick { background-position: -32px -128px; }
.ui-icon-minus { background-position: -48px -128px; }
.ui-icon-minusthick { background-position: -64px -128px; }
.ui-icon-close { background-position: -80px -128px; }
.ui-icon-closethick { background-position: -96px -128px; }
.ui-icon-key { background-position: -112px -128px; }
.ui-icon-lightbulb { background-position: -128px -128px; }
.ui-icon-scissors { background-position: -144px -128px; }
.ui-icon-clipboard { background-position: -160px -128px; }
.ui-icon-copy { background-position: -176px -128px; }
.ui-icon-contact { background-position: -192px -128px; }
.ui-icon-image { background-position: -208px -128px; }
.ui-icon-video { background-position: -224px -128px; }
.ui-icon-script { background-position: -240px -128px; }
.ui-icon-alert { background-position: 0 -144px; }
.ui-icon-info { background-position: -16px -144px; }
.ui-icon-notice { background-position: -32px -144px; }
.ui-icon-help { background-position: -48px -144px; }
.ui-icon-check { background-position: -64px -144px; }
.ui-icon-bullet { background-position: -80px -144px; }
.ui-icon-radio-on { background-position: -96px -144px; }
.ui-icon-radio-off { background-position: -112px -144px; }
.ui-icon-pin-w { background-position: -128px -144px; }
.ui-icon-pin-s { background-position: -144px -144px; }
.ui-icon-play { background-position: 0 -160px; }
.ui-icon-pause { background-position: -16px -160px; }
.ui-icon-seek-next { background-position: -32px -160px; }
.ui-icon-seek-prev { background-position: -48px -160px; }
.ui-icon-seek-end { background-position: -64px -160px; }
.ui-icon-seek-start { background-position: -80px -160px; }
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first { background-position: -80px -160px; }
.ui-icon-stop { background-position: -96px -160px; }
.ui-icon-eject { background-position: -112px -160px; }
.ui-icon-volume-off { background-position: -128px -160px; }
.ui-icon-volume-on { background-position: -144px -160px; }
.ui-icon-power { background-position: 0 -176px; }
.ui-icon-signal-diag { background-position: -16px -176px; }
.ui-icon-signal { background-position: -32px -176px; }
.ui-icon-battery-0 { background-position: -48px -176px; }
.ui-icon-battery-1 { background-position: -64px -176px; }
.ui-icon-battery-2 { background-position: -80px -176px; }
.ui-icon-battery-3 { background-position: -96px -176px; }
.ui-icon-circle-plus { background-position: 0 -192px; }
.ui-icon-circle-minus { background-position: -16px -192px; }
.ui-icon-circle-close { background-position: -32px -192px; }
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
.ui-icon-circle-zoomin { background-position: -176px -192px; }
.ui-icon-circle-zoomout { background-position: -192px -192px; }
.ui-icon-circle-check { background-position: -208px -192px; }
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
.ui-icon-circlesmall-close { background-position: -32px -208px; }
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
.ui-icon-squaresmall-close { background-position: -80px -208px; }
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }


/* Misc visuals
----------------------------------*/

/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
	border-top-left-radius: 3px;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
	border-top-right-radius: 3px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
	border-bottom-left-radius: 3px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
	border-bottom-right-radius: 3px;
}

/* Overlays */
.ui-widget-overlay {
	background: #aaaaaa;
	opacity: .3;
	-ms-filter: "alpha(opacity=30)"; /* support: IE8 */
}
.ui-widget-shadow {
	box-shadow: 0px 0px 5px #666666;
}

/*!
 * jQuery UI CSS Framework 1.13.3
 * https://jqueryui.com
 *
 * Copyright OpenJS Foundation and other contributors
 * Released under the MIT license.
 * https://jquery.org/license
 *
 * https://api.jqueryui.com/category/theming/
 *
 * To view and modify this theme, visit https://jqueryui.com/themeroller/?ffDefault=Arial%2CHelvetica%2Csans-serif&fsDefault=1em&fwDefault=normal&cornerRadius=3px&bgColorHeader=e9e9e9&bgTextureHeader=flat&borderColorHeader=dddddd&fcHeader=333333&iconColorHeader=444444&bgColorContent=ffffff&bgTextureContent=flat&borderColorContent=dddddd&fcContent=333333&iconColorContent=444444&bgColorDefault=f6f6f6&bgTextureDefault=flat&borderColorDefault=c5c5c5&fcDefault=454545&iconColorDefault=777777&bgColorHover=ededed&bgTextureHover=flat&borderColorHover=cccccc&fcHover=2b2b2b&iconColorHover=555555&bgColorActive=007fff&bgTextureActive=flat&borderColorActive=003eff&fcActive=ffffff&iconColorActive=ffffff&bgColorHighlight=fffa90&bgTextureHighlight=flat&borderColorHighlight=dad55e&fcHighlight=777620&iconColorHighlight=777620&bgColorError=fddfdf&bgTextureError=flat&borderColorError=f1a899&fcError=5f3f3f&iconColorError=cc0000&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=666666&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=5px&offsetTopShadow=0px&offsetLeftShadow=0px&cornerRadiusShadow=8px
 */


/* Component containers
----------------------------------*/
.ui-widget {
	font-family: Arial,Helvetica,sans-serif;
	font-size: 1em;
}
.ui-widget .ui-widget {
	font-size: 1em;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
	font-family: Arial,Helvetica,sans-serif;
	font-size: 1em;
}
.ui-widget.ui-widget-content {
	border: 1px solid #c5c5c5;
}
.ui-widget-content {
	border: 1px solid #dddddd;
	background: #ffffff;
	color: #333333;
}
.ui-widget-content a {
	color: #333333;
}
.ui-widget-header {
	border: 1px solid #dddddd;
	background: #e9e9e9;
	color: #333333;
	font-weight: bold;
}
.ui-widget-header a {
	color: #333333;
}

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,

/* We use html here because we need a greater specificity to make sure disabled
works properly when clicked or hovered */
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
	border: 1px solid #c5c5c5;
	background: #f6f6f6;
	font-weight: normal;
	color: #454545;
}
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button {
	color: #454545;
	text-decoration: none;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
	border: 1px solid #cccccc;
	background: #ededed;
	font-weight: normal;
	color: #2b2b2b;
}
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited,
a.ui-button:hover,
a.ui-button:focus {
	color: #2b2b2b;
	text-decoration: none;
}

.ui-visual-focus {
	box-shadow: 0 0 3px 1px rgb(94, 158, 214);
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
	border: 1px solid #003eff;
	background: #007fff;
	font-weight: normal;
	color: #ffffff;
}
.ui-icon-background,
.ui-state-active .ui-icon-background {
	border: #003eff;
	background-color: #ffffff;
}
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
	color: #ffffff;
	text-decoration: none;
}

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
	border: 1px solid #dad55e;
	background: #fffa90;
	color: #777620;
}
.ui-state-checked {
	border: 1px solid #dad55e;
	background: #fffa90;
}
.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
	color: #777620;
}
.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
	border: 1px solid #f1a899;
	background: #fddfdf;
	color: #5f3f3f;
}
.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
	color: #5f3f3f;
}
.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
	color: #5f3f3f;
}
.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
	font-weight: bold;
}
.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
	opacity: .7;
	-ms-filter: "alpha(opacity=70)"; /* support: IE8 */
	font-weight: normal;
}
.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
	opacity: .35;
	-ms-filter: "alpha(opacity=35)"; /* support: IE8 */
	background-image: none;
}
.ui-state-disabled .ui-icon {
	-ms-filter: "alpha(opacity=35)"; /* support: IE8 - See #6059 */
}

/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
	width: 16px;
	height: 16px;
}
.ui-icon,
.ui-widget-content .ui-icon {
	background-image: url(data:image/png;base64,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);
}
.ui-widget-header .ui-icon {
	background-image: url(data:image/png;base64,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);
}
.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon,
.ui-button:hover .ui-icon,
.ui-button:focus .ui-icon {
	background-image: url(data:image/png;base64,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);
}
.ui-state-active .ui-icon,
.ui-button:active .ui-icon {
	background-image: url(data:image/png;base64,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);
}
.ui-state-highlight .ui-icon,
.ui-button .ui-state-highlight.ui-icon {
	background-image: url(data:image/png;base64,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);
}
.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
	background-image: url(data:image/png;base64,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);
}
.ui-button .ui-icon {
	background-image: url(data:image/png;base64,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);
}

/* positioning */
/* Three classes needed to override `.ui-button:hover .ui-icon` */
.ui-icon-blank.ui-icon-blank.ui-icon-blank {
	background-image: none;
}
.ui-icon-caret-1-n { background-position: 0 0; }
.ui-icon-caret-1-ne { background-position: -16px 0; }
.ui-icon-caret-1-e { background-position: -32px 0; }
.ui-icon-caret-1-se { background-position: -48px 0; }
.ui-icon-caret-1-s { background-position: -65px 0; }
.ui-icon-caret-1-sw { background-position: -80px 0; }
.ui-icon-caret-1-w { background-position: -96px 0; }
.ui-icon-caret-1-nw { background-position: -112px 0; }
.ui-icon-caret-2-n-s { background-position: -128px 0; }
.ui-icon-caret-2-e-w { background-position: -144px 0; }
.ui-icon-triangle-1-n { background-position: 0 -16px; }
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
.ui-icon-triangle-1-e { background-position: -32px -16px; }
.ui-icon-triangle-1-se { background-position: -48px -16px; }
.ui-icon-triangle-1-s { background-position: -65px -16px; }
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
.ui-icon-triangle-1-w { background-position: -96px -16px; }
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
.ui-icon-arrow-1-n { background-position: 0 -32px; }
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
.ui-icon-arrow-1-e { background-position: -32px -32px; }
.ui-icon-arrow-1-se { background-position: -48px -32px; }
.ui-icon-arrow-1-s { background-position: -65px -32px; }
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
.ui-icon-arrow-1-w { background-position: -96px -32px; }
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
.ui-icon-arrowthick-1-n { background-position: 1px -48px; }
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
.ui-icon-arrow-4 { background-position: 0 -80px; }
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
.ui-icon-extlink { background-position: -32px -80px; }
.ui-icon-newwin { background-position: -48px -80px; }
.ui-icon-refresh { background-position: -64px -80px; }
.ui-icon-shuffle { background-position: -80px -80px; }
.ui-icon-transfer-e-w { background-position: -96px -80px; }
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
.ui-icon-folder-collapsed { background-position: 0 -96px; }
.ui-icon-folder-open { background-position: -16px -96px; }
.ui-icon-document { background-position: -32px -96px; }
.ui-icon-document-b { background-position: -48px -96px; }
.ui-icon-note { background-position: -64px -96px; }
.ui-icon-mail-closed { background-position: -80px -96px; }
.ui-icon-mail-open { background-position: -96px -96px; }
.ui-icon-suitcase { background-position: -112px -96px; }
.ui-icon-comment { background-position: -128px -96px; }
.ui-icon-person { background-position: -144px -96px; }
.ui-icon-print { background-position: -160px -96px; }
.ui-icon-trash { background-position: -176px -96px; }
.ui-icon-locked { background-position: -192px -96px; }
.ui-icon-unlocked { background-position: -208px -96px; }
.ui-icon-bookmark { background-position: -224px -96px; }
.ui-icon-tag { background-position: -240px -96px; }
.ui-icon-home { background-position: 0 -112px; }
.ui-icon-flag { background-position: -16px -112px; }
.ui-icon-calendar { background-position: -32px -112px; }
.ui-icon-cart { background-position: -48px -112px; }
.ui-icon-pencil { background-position: -64px -112px; }
.ui-icon-clock { background-position: -80px -112px; }
.ui-icon-disk { background-position: -96px -112px; }
.ui-icon-calculator { background-position: -112px -112px; }
.ui-icon-zoomin { background-position: -128px -112px; }
.ui-icon-zoomout { background-position: -144px -112px; }
.ui-icon-search { background-position: -160px -112px; }
.ui-icon-wrench { background-position: -176px -112px; }
.ui-icon-gear { background-position: -192px -112px; }
.ui-icon-heart { background-position: -208px -112px; }
.ui-icon-star { background-position: -224px -112px; }
.ui-icon-link { background-position: -240px -112px; }
.ui-icon-cancel { background-position: 0 -128px; }
.ui-icon-plus { background-position: -16px -128px; }
.ui-icon-plusthick { background-position: -32px -128px; }
.ui-icon-minus { background-position: -48px -128px; }
.ui-icon-minusthick { background-position: -64px -128px; }
.ui-icon-close { background-position: -80px -128px; }
.ui-icon-closethick { background-position: -96px -128px; }
.ui-icon-key { background-position: -112px -128px; }
.ui-icon-lightbulb { background-position: -128px -128px; }
.ui-icon-scissors { background-position: -144px -128px; }
.ui-icon-clipboard { background-position: -160px -128px; }
.ui-icon-copy { background-position: -176px -128px; }
.ui-icon-contact { background-position: -192px -128px; }
.ui-icon-image { background-position: -208px -128px; }
.ui-icon-video { background-position: -224px -128px; }
.ui-icon-script { background-position: -240px -128px; }
.ui-icon-alert { background-position: 0 -144px; }
.ui-icon-info { background-position: -16px -144px; }
.ui-icon-notice { background-position: -32px -144px; }
.ui-icon-help { background-position: -48px -144px; }
.ui-icon-check { background-position: -64px -144px; }
.ui-icon-bullet { background-position: -80px -144px; }
.ui-icon-radio-on { background-position: -96px -144px; }
.ui-icon-radio-off { background-position: -112px -144px; }
.ui-icon-pin-w { background-position: -128px -144px; }
.ui-icon-pin-s { background-position: -144px -144px; }
.ui-icon-play { background-position: 0 -160px; }
.ui-icon-pause { background-position: -16px -160px; }
.ui-icon-seek-next { background-position: -32px -160px; }
.ui-icon-seek-prev { background-position: -48px -160px; }
.ui-icon-seek-end { background-position: -64px -160px; }
.ui-icon-seek-start { background-position: -80px -160px; }
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first { background-position: -80px -160px; }
.ui-icon-stop { background-position: -96px -160px; }
.ui-icon-eject { background-position: -112px -160px; }
.ui-icon-volume-off { background-position: -128px -160px; }
.ui-icon-volume-on { background-position: -144px -160px; }
.ui-icon-power { background-position: 0 -176px; }
.ui-icon-signal-diag { background-position: -16px -176px; }
.ui-icon-signal { background-position: -32px -176px; }
.ui-icon-battery-0 { background-position: -48px -176px; }
.ui-icon-battery-1 { background-position: -64px -176px; }
.ui-icon-battery-2 { background-position: -80px -176px; }
.ui-icon-battery-3 { background-position: -96px -176px; }
.ui-icon-circle-plus { background-position: 0 -192px; }
.ui-icon-circle-minus { background-position: -16px -192px; }
.ui-icon-circle-close { background-position: -32px -192px; }
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
.ui-icon-circle-zoomin { background-position: -176px -192px; }
.ui-icon-circle-zoomout { background-position: -192px -192px; }
.ui-icon-circle-check { background-position: -208px -192px; }
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
.ui-icon-circlesmall-close { background-position: -32px -208px; }
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
.ui-icon-squaresmall-close { background-position: -80px -208px; }
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }


/* Misc visuals
----------------------------------*/

/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
	border-top-left-radius: 3px;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
	border-top-right-radius: 3px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
	border-bottom-left-radius: 3px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
	border-bottom-right-radius: 3px;
}

/* Overlays */
.ui-widget-overlay {
	background: #aaaaaa;
	opacity: .3;
	-ms-filter: "alpha(opacity=30)"; /* support: IE8 */
}
.ui-widget-shadow {
	box-shadow: 0px 0px 5px #666666;
}

@charset "UTF-8";
/*!
 * jQuery contextMenu - Plugin for simple contextMenu handling
 *
 * Version: v2.9.2
 *
 * Authors: Björn Brala (SWIS.nl), Rodney Rehm, Addy Osmani (patches for FF)
 * Web: http://swisnl.github.io/jQuery-contextMenu/
 *
 * Copyright (c) 2011-2020 SWIS BV and contributors
 *
 * Licensed under
 *   MIT License http://www.opensource.org/licenses/mit-license
 *
 * Date: 2020-05-13T13:55:37.023Z
 */
@-webkit-keyframes cm-spin {
  0% {
    -webkit-transform: translateY(-50%) rotate(0deg);
            transform: translateY(-50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-50%) rotate(359deg);
            transform: translateY(-50%) rotate(359deg);
  }
}
@-o-keyframes cm-spin {
  0% {
    -webkit-transform: translateY(-50%) rotate(0deg);
         -o-transform: translateY(-50%) rotate(0deg);
            transform: translateY(-50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-50%) rotate(359deg);
         -o-transform: translateY(-50%) rotate(359deg);
            transform: translateY(-50%) rotate(359deg);
  }
}
@keyframes cm-spin {
  0% {
    -webkit-transform: translateY(-50%) rotate(0deg);
         -o-transform: translateY(-50%) rotate(0deg);
            transform: translateY(-50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-50%) rotate(359deg);
         -o-transform: translateY(-50%) rotate(359deg);
            transform: translateY(-50%) rotate(359deg);
  }
}

@font-face {
  font-family: "context-menu-icons";
  font-style: normal; 
  font-weight: normal;

  src: url(data:application/vnd.ms-fontobject;base64,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);
  src: url(data:application/vnd.ms-fontobject;base64,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#iefix) format("embedded-opentype"), url(data:font/woff2;base64,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) format("woff2"), url(data:font/woff;base64,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) format("woff"), url(data:font/ttf;base64,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) format("truetype");
}

.context-menu-icon-add:before {
  content: "\EA01";
}

.context-menu-icon-copy:before {
  content: "\EA02";
}

.context-menu-icon-cut:before {
  content: "\EA03";
}

.context-menu-icon-delete:before {
  content: "\EA04";
}

.context-menu-icon-edit:before {
  content: "\EA05";
}

.context-menu-icon-loading:before {
  content: "\EA06";
}

.context-menu-icon-paste:before {
  content: "\EA07";
}

.context-menu-icon-quit:before {
  content: "\EA08";
}

.context-menu-icon::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2em; 
  font-family: "context-menu-icons";
  font-size: 1em;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  color: #2980b9;
  text-align: center;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.context-menu-icon.context-menu-hover:before {
  color: #fff;
}

.context-menu-icon.context-menu-disabled::before {
  color: #bbb;
}

.context-menu-icon.context-menu-icon-loading:before {
  -webkit-animation: cm-spin 2s infinite;
       -o-animation: cm-spin 2s infinite;
          animation: cm-spin 2s infinite;
}

.context-menu-icon.context-menu-icon--fa {
  display: list-item;
  font-family: inherit;
  line-height: inherit;
}
.context-menu-icon.context-menu-icon--fa::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2em; 
  font-family: FontAwesome;
  font-size: 1em;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  color: #2980b9;
  text-align: center;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.context-menu-icon.context-menu-icon--fa.context-menu-hover:before {
  color: #fff;
}
.context-menu-icon.context-menu-icon--fa.context-menu-disabled::before {
  color: #bbb;
}

.context-menu-icon.context-menu-icon--fa5 {
  display: list-item;
  font-family: inherit;
  line-height: inherit;
}
.context-menu-icon.context-menu-icon--fa5 i, .context-menu-icon.context-menu-icon--fa5 svg {
  position: absolute;
  top: .3em; 
  left: .5em;
  color: #2980b9;
}
.context-menu-icon.context-menu-icon--fa5.context-menu-hover > i, .context-menu-icon.context-menu-icon--fa5.context-menu-hover > svg {
  color: #fff;
}
.context-menu-icon.context-menu-icon--fa5.context-menu-disabled i, .context-menu-icon.context-menu-icon--fa5.context-menu-disabled svg {
  color: #bbb;
}

.context-menu-list {
  position: absolute; 
  display: inline-block;
  min-width: 13em;
  max-width: 26em;
  padding: .25em 0;
  margin: .3em;
  font-family: inherit;
  font-size: inherit;
  list-style-type: none;
  background: #fff;
  border: 1px solid #bebebe;
  border-radius: .2em;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, .5);
          box-shadow: 0 2px 5px rgba(0, 0, 0, .5);
}

.context-menu-item {
  position: relative;
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
  padding: .2em 2em;
  color: #2f2f2f;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; 
  background-color: #fff;
}

.context-menu-separator {
  padding: 0; 
  margin: .35em 0;
  border-bottom: 1px solid #e6e6e6;
}

.context-menu-item > label > input,
.context-menu-item > label > textarea {
  -webkit-user-select: text;
     -moz-user-select: text;
      -ms-user-select: text;
          user-select: text;
}

.context-menu-item.context-menu-hover {
  color: #fff;
  cursor: pointer; 
  background-color: #2980b9;
}

.context-menu-item.context-menu-disabled {
  color: #bbb;
  cursor: default; 
  background-color: #fff;
}

.context-menu-input.context-menu-hover {
  color: #2f2f2f; 
  cursor: default;
}

.context-menu-submenu:after {
  position: absolute;
  top: 50%;
  right: .5em;
  z-index: 1; 
  width: 0;
  height: 0;
  content: '';
  border-color: transparent transparent transparent #2f2f2f;
  border-style: solid;
  border-width: .25em 0 .25em .25em;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}

/**
 * Inputs
 */
.context-menu-item.context-menu-input {
  padding: .3em .6em;
}

/* vertically align inside labels */
.context-menu-input > label > * {
  vertical-align: top;
}

/* position checkboxes and radios as icons */
.context-menu-input > label > input[type="checkbox"],
.context-menu-input > label > input[type="radio"] {
  position: relative;
  top: .12em; 
  margin-right: .4em;
}

.context-menu-input > label {
  margin: 0;
}

.context-menu-input > label,
.context-menu-input > label > input[type="text"],
.context-menu-input > label > textarea,
.context-menu-input > label > select {
  display: block;
  width: 100%; 
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.context-menu-input > label > textarea {
  height: 7em;
}

.context-menu-item > .context-menu-list {
  top: .3em; 
  /* re-positioned by js */
  right: -.3em;
  display: none;
}

.context-menu-item.context-menu-visible > .context-menu-list {
  display: block;
}

.context-menu-accesskey {
  text-decoration: underline;
}

.react-grid-layout {
  position: relative;
  transition: height 200ms ease;
}
.react-grid-item {
  transition: all 200ms ease;
  transition-property: left, top, width, height;
}
.react-grid-item img {
  pointer-events: none;
  -webkit-user-select: none;
          user-select: none;
}
.react-grid-item.cssTransforms {
  transition-property: transform, width, height;
}
.react-grid-item.resizing {
  transition: none;
  z-index: 1;
  will-change: width, height;
}

.react-grid-item.react-draggable-dragging {
  transition: none;
  z-index: 3;
  will-change: transform;
}

.react-grid-item.dropping {
  visibility: hidden;
}

.react-grid-item.react-grid-placeholder {
  background: red;
  opacity: 0.2;
  transition-duration: 100ms;
  z-index: 2;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.react-grid-item.react-grid-placeholder.placeholder-resizing {
  transition: none;
}

.react-grid-item > .react-resizable-handle {
  position: absolute;
  width: 20px;
  height: 20px;
}

.react-grid-item > .react-resizable-handle::after {
  content: "";
  position: absolute;
  right: 3px;
  bottom: 3px;
  width: 5px;
  height: 5px;
  border-right: 2px solid rgba(0, 0, 0, 0.4);
  border-bottom: 2px solid rgba(0, 0, 0, 0.4);
}

.react-resizable-hide > .react-resizable-handle {
  display: none;
}

.react-grid-item > .react-resizable-handle.react-resizable-handle-sw {
  bottom: 0;
  left: 0;
  cursor: sw-resize;
  transform: rotate(90deg);
}
.react-grid-item > .react-resizable-handle.react-resizable-handle-se {
  bottom: 0;
  right: 0;
  cursor: se-resize;
}
.react-grid-item > .react-resizable-handle.react-resizable-handle-nw {
  top: 0;
  left: 0;
  cursor: nw-resize;
  transform: rotate(180deg);
}
.react-grid-item > .react-resizable-handle.react-resizable-handle-ne {
  top: 0;
  right: 0;
  cursor: ne-resize;
  transform: rotate(270deg);
}
.react-grid-item > .react-resizable-handle.react-resizable-handle-w,
.react-grid-item > .react-resizable-handle.react-resizable-handle-e {
  top: 50%;
  margin-top: -10px;
  cursor: ew-resize;
}
.react-grid-item > .react-resizable-handle.react-resizable-handle-w {
  left: 0;
  transform: rotate(135deg);
}
.react-grid-item > .react-resizable-handle.react-resizable-handle-e {
  right: 0;
  transform: rotate(315deg);
}
.react-grid-item > .react-resizable-handle.react-resizable-handle-n,
.react-grid-item > .react-resizable-handle.react-resizable-handle-s {
  left: 50%;
  margin-left: -10px;
  cursor: ns-resize;
}
.react-grid-item > .react-resizable-handle.react-resizable-handle-n {
  top: 0;
  transform: rotate(225deg);
}
.react-grid-item > .react-resizable-handle.react-resizable-handle-s {
  bottom: 0;
  transform: rotate(45deg);
}

.react-resizable {
  position: relative;
}
.react-resizable-handle {
  position: absolute;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-origin: content-box;
  box-sizing: border-box;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2IDYiIHN0eWxlPSJiYWNrZ3JvdW5kLWNvbG9yOiNmZmZmZmYwMCIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSI2cHgiIGhlaWdodD0iNnB4Ij48ZyBvcGFjaXR5PSIwLjMwMiI+PHBhdGggZD0iTSA2IDYgTCAwIDYgTCAwIDQuMiBMIDQgNC4yIEwgNC4yIDQuMiBMIDQuMiAwIEwgNiAwIEwgNiA2IEwgNiA2IFoiIGZpbGw9IiMwMDAwMDAiLz48L2c+PC9zdmc+');
  background-position: bottom right;
  padding: 0 3px 3px 0;
}
.react-resizable-handle-sw {
  bottom: 0;
  left: 0;
  cursor: sw-resize;
  transform: rotate(90deg);
}
.react-resizable-handle-se {
  bottom: 0;
  right: 0;
  cursor: se-resize;
}
.react-resizable-handle-nw {
  top: 0;
  left: 0;
  cursor: nw-resize;
  transform: rotate(180deg);
}
.react-resizable-handle-ne {
  top: 0;
  right: 0;
  cursor: ne-resize;
  transform: rotate(270deg);
}
.react-resizable-handle-w,
.react-resizable-handle-e {
  top: 50%;
  margin-top: -10px;
  cursor: ew-resize;
}
.react-resizable-handle-w {
  left: 0;
  transform: rotate(135deg);
}
.react-resizable-handle-e {
  right: 0;
  transform: rotate(315deg);
}
.react-resizable-handle-n,
.react-resizable-handle-s {
  left: 50%;
  margin-left: -10px;
  cursor: ns-resize;
}
.react-resizable-handle-n {
  top: 0;
  transform: rotate(225deg);
}
.react-resizable-handle-s {
  bottom: 0;
  transform: rotate(45deg);
}
/*-- Chart --*/
.c3 svg {
  font: 10px sans-serif;
  -webkit-tap-highlight-color: transparent; }

.c3 path, .c3 line {
  fill: none;
  stroke: #000; }

.c3 text {
  user-select: none; }

.c3-legend-item-tile,
.c3-xgrid-focus,
.c3-ygrid,
.c3-event-rect,
.c3-bars path {
  shape-rendering: crispEdges; }

.c3-chart-arc path {
  stroke: #fff; }

.c3-chart-arc rect {
  stroke: white;
  stroke-width: 1; }

.c3-chart-arc text {
  fill: #fff;
  font-size: 13px; }

/*-- Axis --*/
/*-- Grid --*/
.c3-grid line {
  stroke: #aaa; }

.c3-grid text {
  fill: #aaa; }

.c3-xgrid, .c3-ygrid {
  stroke-dasharray: 3 3; }

/*-- Text on Chart --*/
.c3-text.c3-empty {
  fill: #808080;
  font-size: 2em; }

/*-- Line --*/
.c3-line {
  stroke-width: 1px; }

/*-- Point --*/
.c3-circle._expanded_ {
  stroke-width: 1px;
  stroke: white; }

.c3-selected-circle {
  fill: white;
  stroke-width: 2px; }

/*-- Bar --*/
.c3-bar {
  stroke-width: 0; }

.c3-bar._expanded_ {
  fill-opacity: 0.75; }

/*-- Focus --*/
.c3-target.c3-focused {
  opacity: 1; }

.c3-target.c3-focused path.c3-line, .c3-target.c3-focused path.c3-step {
  stroke-width: 2px; }

.c3-target.c3-defocused {
  opacity: 0.3 !important; }

/*-- Region --*/
.c3-region {
  fill: steelblue;
  fill-opacity: .1; }

/*-- Brush --*/
.c3-brush .extent {
  fill-opacity: .1; }

/*-- Select - Drag --*/
/*-- Legend --*/
.c3-legend-item {
  font-size: 12px; }

.c3-legend-item-hidden {
  opacity: 0.15; }

.c3-legend-background {
  opacity: 0.75;
  fill: white;
  stroke: lightgray;
  stroke-width: 1; }

/*-- Title --*/
.c3-title {
  font: 14px sans-serif; }

/*-- Tooltip --*/
.c3-tooltip-container {
  z-index: 10; }

.c3-tooltip {
  border-collapse: collapse;
  border-spacing: 0;
  background-color: #fff;
  empty-cells: show;
  box-shadow: 7px 7px 12px -9px #777777;
  opacity: 0.9; }

.c3-tooltip tr {
  border: 1px solid #CCC; }

.c3-tooltip th {
  background-color: #aaa;
  font-size: 14px;
  padding: 2px 5px;
  text-align: left;
  color: #FFF; }

.c3-tooltip td {
  font-size: 13px;
  padding: 3px 6px;
  background-color: #fff;
  border-left: 1px dotted #999; }

.c3-tooltip td > span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 6px; }

.c3-tooltip td.value {
  text-align: right; }

/*-- Area --*/
.c3-area {
  stroke-width: 0;
  opacity: 0.2; }

/*-- Arc --*/
.c3-chart-arcs-title {
  dominant-baseline: middle;
  font-size: 1.3em; }

.c3-chart-arcs .c3-chart-arcs-background {
  fill: #e0e0e0;
  stroke: #FFF; }

.c3-chart-arcs .c3-chart-arcs-gauge-unit {
  fill: #000;
  font-size: 16px; }

.c3-chart-arcs .c3-chart-arcs-gauge-max {
  fill: #777; }

.c3-chart-arcs .c3-chart-arcs-gauge-min {
  fill: #777; }

.c3-chart-arc .c3-gauge-value {
  fill: #000;
  /*  font-size: 28px !important;*/ }

.c3-chart-arc.c3-target g path {
  opacity: 1; }

.c3-chart-arc.c3-target.c3-focused g path {
  opacity: 1; }

.icon13.country_flag,
.icon16.country_flag,
.country_flag {
  display: inline-block;
  background-image:url(/static/images/flag_icons_16x11.c4a1d12e.png);
  background-repeat:no-repeat;
  background-color:transparent;
  background-position: -100px, -100px;
  width:  16px;
  height: 11px;
  border: 0px;
  vertical-align:middle;
}

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

.country_NO { background-position: 0px -0px; }
.country_JP { background-position: 0px -11px; }
.country_MS { background-position: 0px -22px; }
.country_RU { background-position: 0px -33px; }
.country_FJ { background-position: 0px -44px; }
.country_GR { background-position: 0px -55px; }
.country_LT { background-position: 0px -66px; }
.country_BR { background-position: 0px -77px; }
.country_NP { background-position: 0px -88px; }
.country_KP { background-position: 0px -99px; }
.country_GL { background-position: 0px -110px; }
.country_LV { background-position: 0px -121px; }
.country_ID { background-position: 0px -132px; }
.country_PS { background-position: 0px -143px; }
.country_ES { background-position: 0px -154px; }
.country_DJ { background-position: 0px -165px; }
.country_GN { background-position: 0px -176px; }
.country_MW { background-position: 0px -187px; }
.country_TJ { background-position: 0px -198px; }
.country_KI { background-position: 0px -209px; }
.country_TV { background-position: 0px -220px; }
.country_RE { background-position: 0px -231px; }
.country_AE { background-position: 0px -242px; }
.country_BY { background-position: 0px -253px; }
.country_PA { background-position: 0px -264px; }
.country_NE { background-position: 0px -275px; }
.country_PE { background-position: 0px -286px; }
.country_MH { background-position: 0px -297px; }
.country_NU { background-position: 0px -308px; }
.country_TL { background-position: 0px -319px; }
.country_QA { background-position: 0px -330px; }
.country_CZ { background-position: 0px -341px; }
.country_AZ { background-position: 0px -352px; }
.country_CN { background-position: 0px -363px; }
.country_EG { background-position: 0px -374px; }
.country_PF { background-position: 0px -385px; }
.country_ME { background-position: 0px -396px; }
.country_AR { background-position: 0px -407px; }
.country_MY { background-position: 0px -418px; }
.country_YT { background-position: 0px -429px; }
.country_LU { background-position: 0px -440px; }
.country_LR { background-position: 0px -451px; }
.country_LY { background-position: 0px -462px; }
.country_SR { background-position: 0px -473px; }
.country_BS { background-position: 0px -484px; }
.country_ZA { background-position: 0px -495px; }
.country_MP { background-position: 0px -506px; }
.country_NG { background-position: 0px -517px; }
.country_BO { background-position: 0px -528px; }
.country_AU { background-position: 0px -539px; }
.country_SE { background-position: 0px -550px; }
.country_AX { background-position: 0px -561px; }
.country_BB { background-position: 0px -572px; }
.country_CR { background-position: 0px -583px; }
.country_GM { background-position: 0px -594px; }
.country_MD { background-position: 0px -605px; }
.country_GU { background-position: 0px -616px; }
.country_MO { background-position: 0px -627px; }
.country_TH { background-position: 0px -638px; }
.country_GE { background-position: 0px -649px; }
.country_MC { background-position: 0px -660px; }
.country_EE { background-position: 0px -671px; }
.country_LA { background-position: 0px -682px; }
.country_FK { background-position: 0px -693px; }
.country_MX { background-position: 0px -704px; }
.country_BN { background-position: 0px -715px; }
.country_BH { background-position: 0px -726px; }
.country_CO { background-position: 0px -737px; }
.country_KZ { background-position: 0px -748px; }
.country_SJ { background-position: 0px -759px; }
.country_WTF { background-position: 0px -770px; }
.country_TO { background-position: 0px -781px; }
.country_PG { background-position: 0px -792px; }
.country_BG { background-position: 0px -803px; }
.country_BJ { background-position: 0px -814px; }
.country_BI { background-position: 0px -825px; }
.country_OM { background-position: 0px -836px; }
.country_CU { background-position: 0px -847px; }
.country_SV { background-position: 0px -858px; }
.country_BE { background-position: 0px -869px; }
.country_NZ { background-position: 0px -880px; }
.country_SN { background-position: 0px -891px; }
.country_GQ { background-position: 0px -902px; }
.country_PT { background-position: 0px -913px; }
.country_JM { background-position: 0px -924px; }
.country_EC { background-position: 0px -935px; }
.country_PW { background-position: 0px -946px; }
.country_BF { background-position: 0px -957px; }
.country_GA { background-position: 0px -968px; }
.country_ST { background-position: 0px -979px; }
.country_GT { background-position: 0px -990px; }
.country_CF { background-position: 0px -1001px; }
.country_TK { background-position: 0px -1012px; }
.country_ML { background-position: 0px -1023px; }
.country_CV { background-position: 0px -1034px; }
.country_PY { background-position: 0px -1045px; }
.country_CG { background-position: 0px -1056px; }
.country_WF { background-position: 0px -1067px; }
.country_HN { background-position: 0px -1078px; }
.country_KR { background-position: 0px -1089px; }
.country_IT { background-position: 0px -1100px; }
.country_PN { background-position: 0px -1111px; }
.country_SI { background-position: 0px -1122px; }
.country_ER { background-position: 0px -1133px; }
.country_AN { background-position: 0px -1144px; }
.country_MG { background-position: 0px -1155px; }
.country_SZ { background-position: 0px -1166px; }
.country_SB { background-position: 0px -1177px; }
.country_TC { background-position: 0px -1188px; }
.country_TN { background-position: 0px -1199px; }
.country_MR { background-position: 0px -1210px; }
.country_KG { background-position: 0px -1221px; }
.country_MN { background-position: 0px -1232px; }
.country_PK { background-position: 0px -1243px; }
.country_MT { background-position: 0px -1254px; }
.country_KW { background-position: 0px -1265px; }
.country_SY { background-position: 0px -1276px; }
.country_TR { background-position: 0px -1287px; }
.country_NR { background-position: 0px -1298px; }
.country_GY { background-position: 0px -1309px; }
.country_VA { background-position: 0px -1320px; }
.country_NC { background-position: 0px -1331px; }
.country_HT { background-position: 0px -1342px; }
.country_CI { background-position: 0px -1353px; }
.country_MU { background-position: 0px -1364px; }
.country_PM { background-position: 0px -1375px; }
.country_NF { background-position: 0px -1386px; }
.country_BM { background-position: 0px -1397px; }
.country_MK { background-position: 0px -1408px; }
.country_LI { background-position: 0px -1419px; }
.country_KE { background-position: 0px -1430px; }
.country_AI { background-position: 0px -1441px; }
.country_SM { background-position: 0px -1452px; }
.country_DK { background-position: 0px -1463px; }
.country_SC { background-position: 0px -1474px; }
.country_UG { background-position: 0px -1485px; }
.country_SO { background-position: 0px -1496px; }
.country_CX { background-position: 0px -1507px; }
.country_IL { background-position: 0px -1518px; }
.country_ZM { background-position: 0px -1529px; }
.country_LC { background-position: 0px -1540px; }
.country_MZ { background-position: 0px -1551px; }
.country_UM { background-position: 0px -1562px; }
.country_FM { background-position: 0px -1573px; }
.country_IE { background-position: 0px -1584px; }
.country_RO { background-position: 0px -1595px; }
.country_VI { background-position: 0px -1606px; }
.country_MV { background-position: 0px -1617px; }
.country_TF { background-position: 0px -1628px; }
.country_AG { background-position: 0px -1639px; }
.country_FI { background-position: 0px -1650px; }
.country_CA { background-position: 0px -1661px; }
.country_MQ { background-position: 0px -1672px; }
.country_VC { background-position: 0px -1683px; }
.country_GW { background-position: 0px -1694px; }
.country_BA { background-position: 0px -1705px; }
.country_MM { background-position: 0px -1716px; }
.country_SK { background-position: 0px -1727px; }
.country_PR { background-position: 0px -1738px; }
.country_CD { background-position: 0px -1749px; }
.country_SD { background-position: 0px -1760px; }
.country_AM { background-position: 0px -1771px; }
.country_VG { background-position: 0px -1782px; }
.country_US { background-position: 0px -1793px; }
.country_UA { background-position: 0px -1804px; }
.country_RW { background-position: 0px -1815px; }
.country_AO { background-position: 0px -1826px; }
.country_CK { background-position: 0px -1837px; }
.country_KH { background-position: 0px -1848px; }
.country_AT { background-position: 0px -1859px; }
.country_YE { background-position: 0px -1870px; }
.country_CM { background-position: 0px -1881px; }
.country_DM { background-position: 0px -1892px; }
.country_SA { background-position: 0px -1903px; }
.country_DE { background-position: 0px -1914px; }
.country_WS { background-position: 0px -1925px; }
.country_FR { background-position: 0px -1936px; }
.country_RS { background-position: 0px -1947px; }
.country_GH { background-position: 0px -1958px; }
.country_BZ { background-position: 0px -1969px; }
.country_IO { background-position: 0px -1980px; }
.country_LS { background-position: 0px -1991px; }
.country_GD { background-position: 0px -2002px; }
.country_LK { background-position: 0px -2013px; }
.country_BD { background-position: 0px -2024px; }
.country_CH { background-position: 0px -2035px; }
.country_HR { background-position: 0px -2046px; }
.country_TD { background-position: 0px -2057px; }
.country_PH { background-position: 0px -2068px; }
.country_UZ { background-position: 0px -2079px; }
.country_TG { background-position: 0px -2090px; }
.country_SG { background-position: 0px -2101px; }
.country_AL { background-position: 0px -2112px; }
.country_CL { background-position: 0px -2123px; }
.country_JO { background-position: 0px -2134px; }
.country_HM { background-position: 0px -2145px; }
.country_VE { background-position: 0px -2156px; }
.country_GI { background-position: 0px -2167px; }
.country_ET { background-position: 0px -2178px; }
.country_TW { background-position: 0px -2189px; }
.country_GB { background-position: 0px -2200px; }
.country_NI { background-position: 0px -2211px; }
.country_LB { background-position: 0px -2222px; }
.country_GF { background-position: 0px -2233px; }
.country_SL { background-position: 0px -2244px; }
.country_BT { background-position: 0px -2255px; }
.country_AF { background-position: 0px -2266px; }
.country_MA { background-position: 0px -2277px; }
.country_PL { background-position: 0px -2288px; }
.country_KN { background-position: 0px -2299px; }
.country_CY { background-position: 0px -2310px; }
.country_AS { background-position: 0px -2321px; }
.country_IR { background-position: 0px -2332px; }
.country_UY { background-position: 0px -2343px; }
.country_SH { background-position: 0px -2354px; }
.country_TM { background-position: 0px -2365px; }
.country_VU { background-position: 0px -2376px; }
.country_FO { background-position: 0px -2387px; }
.country_HK { background-position: 0px -2398px; }
.country_AW { background-position: 0px -2409px; }
.country_BW { background-position: 0px -2420px; }
.country_KM { background-position: 0px -2431px; }
.country_GP { background-position: 0px -2442px; }
.country_HU { background-position: 0px -2453px; }
.country_NL { background-position: 0px -2464px; }
.country_IS { background-position: 0px -2475px; }
.country_EH { background-position: 0px -2486px; }
.country_IQ { background-position: 0px -2497px; }
.country_VN { background-position: 0px -2508px; }
.country_TT { background-position: 0px -2519px; }
.country_ZW { background-position: 0px -2530px; }
.country_DO { background-position: 0px -2541px; }
.country_CS { background-position: 0px -2552px; }
.country_KY { background-position: 0px -2563px; }
.country_IN { background-position: 0px -2574px; }
.country_GS { background-position: 0px -2585px; }
.country_BV { background-position: 0px -2596px; }
.country_CC { background-position: 0px -2607px; }
.country_AD { background-position: 0px -2618px; }
.country_DZ { background-position: 0px -2629px; }
.country_NA { background-position: 0px -2640px; }
.country_TZ { background-position: 0px -2651px; }

/* 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 {
  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-mark {
  background-color: rgba(20, 255, 20, 0.5);
  animation: blink 1.06s steps(1) infinite;
}
.cm-animate-fat-cursor {
  width: auto;
  border: 0;
  animation: blink 1.06s steps(1) infinite;
  background-color: #7e7;
}
@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: -20px;
  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 */
  /* 30px is the magic margin used to hide the element's real scrollbars */
  /* See overflow: hidden in .CodeMirror */
  margin-bottom: -30px; margin-right: -30px;
  padding-bottom: 30px;
  height: 100%;
  outline: none; /* Prevent dragging from highlighting the element */
  position: relative;
}
.CodeMirror-sizer {
  position: relative;
  border-right: 30px 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;
}
.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: -30px;
}
.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 {
  /* 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 {
  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; }

.cm-s-twilight.CodeMirror { background: #141414; color: #f7f7f7; } /**/
.cm-s-twilight .CodeMirror-selected { background: #323232 !important; } /**/
.cm-s-twilight .CodeMirror-line::selection, .cm-s-twilight .CodeMirror-line > span::selection, .cm-s-twilight .CodeMirror-line > span > span::selection { background: rgba(50, 50, 50, 0.99); }
.cm-s-twilight .CodeMirror-line::-moz-selection, .cm-s-twilight .CodeMirror-line > span::-moz-selection, .cm-s-twilight .CodeMirror-line > span > span::-moz-selection { background: rgba(50, 50, 50, 0.99); }

.cm-s-twilight .CodeMirror-gutters { background: #222; border-right: 1px solid #aaa; }
.cm-s-twilight .CodeMirror-guttermarker { color: white; }
.cm-s-twilight .CodeMirror-guttermarker-subtle { color: #aaa; }
.cm-s-twilight .CodeMirror-linenumber { color: #aaa; }
.cm-s-twilight .CodeMirror-cursor { border-left: 1px solid white !important; }

.cm-s-twilight .cm-keyword {  color: #f9ee98; } /**/
.cm-s-twilight .cm-atom { color: #FC0; }
.cm-s-twilight .cm-number { color:  #ca7841; } /**/
.cm-s-twilight .cm-def { color: #8DA6CE; }
.cm-s-twilight span.cm-variable-2, .cm-s-twilight span.cm-tag { color: #607392; } /**/
.cm-s-twilight span.cm-variable-3, .cm-s-twilight span.cm-def { color: #607392; } /**/
.cm-s-twilight .cm-operator { color: #cda869; } /**/
.cm-s-twilight .cm-comment { color:#777; font-style:italic; font-weight:normal; } /**/
.cm-s-twilight .cm-string { color:#8f9d6a; font-style:italic; } /**/
.cm-s-twilight .cm-string-2 { color:#bd6b18 } /*?*/
.cm-s-twilight .cm-meta { background-color:#141414; color:#f7f7f7; } /*?*/
.cm-s-twilight .cm-builtin { color: #cda869; } /*?*/
.cm-s-twilight .cm-tag { color: #997643; } /**/
.cm-s-twilight .cm-attribute { color: #d6bb6d; } /*?*/
.cm-s-twilight .cm-header { color: #FF6400; }
.cm-s-twilight .cm-hr { color: #AEAEAE; }
.cm-s-twilight .cm-link {   color:#ad9361; font-style:italic; text-decoration:none; } /**/
.cm-s-twilight .cm-error { border-bottom: 1px solid red; }

.cm-s-twilight .CodeMirror-activeline-background {background: #27282E !important;}
.cm-s-twilight .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-darker.CodeMirror {
  background-color: #212121;
  color: #EEFFFF;
}

.cm-s-material-darker .CodeMirror-gutters {
  background: #212121;
  color: #545454;
  border: none;
}

.cm-s-material-darker .CodeMirror-guttermarker,
.cm-s-material-darker .CodeMirror-guttermarker-subtle,
.cm-s-material-darker .CodeMirror-linenumber {
  color: #545454;
}

.cm-s-material-darker .CodeMirror-cursor {
  border-left: 1px solid #FFCC00;
}

.cm-s-material-darker div.CodeMirror-selected {
  background: rgba(97, 97, 97, 0.2);
}

.cm-s-material-darker.CodeMirror-focused div.CodeMirror-selected {
  background: rgba(97, 97, 97, 0.2);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.cm-s-material-darker .cm-comment {
  color: #545454;
}

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

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

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

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

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

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

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


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

.cm-s-material-darker .CodeMirror-matchingbracket {
  text-decoration: underline;
  color: white !important;
}
.CodeMirror-merge {
  position: relative;
  border: 1px solid #ddd;
  white-space: pre;
}

.CodeMirror-merge, .CodeMirror-merge .CodeMirror {
  height: 55vh;
}

.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-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,iVBORw0KGgoAAAANSUhEUgAAAAMAAAACCAYAAACddGYaAAAABHNCSVQICAgIfAhkiAAAABlJREFUCJljZGph+s/AwMDwt/ovAxMDEgAASkgEABOuxHkAAAAASUVORK5CYII=);
  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; }

.CodeMirror-pane-background-left { background: #ffe7eb; } 
.CodeMirror-pane-background-right { background: #daf8cf; }
.CodeMirror-hints {
  position: absolute;
  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: 80%;*/
  font-family: monospace;

  max-height: 20em;
  overflow-y: auto;
  width: 50vw;
}

.CodeMirror-hint:not(.divider) {
  margin: 0;
  padding: 2px 8px;
  border-radius: 2px;
  /*white-space: pre;*/
  color: #369;
  cursor: pointer;
}
.CodeMirror-hint:not(.divider):hover {
  text-decoration: underline;
}

li.CodeMirror-hint-active {
  background: #fec;
}

li.CodeMirror-hint.divider {
  color: black;
  padding-left: 0;
}
div.CodeMirror span.CodeMirror-matchingbracket {
  color: red;
  outline:1px solid darkgray;
  font-weight: bold;
  background-color: gold;
}
/* 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-error, .CodeMirror-lint-mark-warning {
  background-position: left bottom;
  background-repeat: repeat-x;
}

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

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

.CodeMirror-lint-marker-error, .CodeMirror-lint-marker-warning {
  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-error, .CodeMirror-lint-message-warning {
  padding-left: 18px;
  background-position: top left;
  background-repeat: no-repeat;
}

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

.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-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%;
}

.croppie-container {
    width: 100%;
    height: 100%;
}
.croppie-container .cr-image {
	z-index: -1;
	position: absolute;
	top: 0;
	left: 0;
	transform-origin: 0 0;
    max-width: none;
}
.croppie-container .cr-boundary {
	position: relative;
	overflow: hidden;
	margin: 0 auto;
	z-index: 1;
    width: 100%;
    height: 100%;
}
.croppie-container .cr-viewport {
	position: absolute;
	border: 2px solid #fff;
	margin: auto;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
    box-shadow: 0 0 2000px 2000px rgba(0, 0, 0, 0.5);
	z-index: 0;
}
.croppie-container .cr-original-image {
    display: none;
}
.croppie-container .cr-vp-circle {
	border-radius: 50%;
}
.croppie-container .cr-overlay {
	z-index: 1;
	position: absolute;
	cursor: move;
}
.croppie-container .cr-slider-wrap {
	width: 75%;
	margin: 15px auto;
	text-align: center;
}
.croppie-result {
	position: relative;
	overflow: hidden;
}
.croppie-result img {
	position: absolute;
}
.croppie-container .cr-image,
.croppie-container .cr-overlay,
.croppie-container .cr-viewport {
  transform: translateZ(0);
}

/*************************************/
/***** STYLING RANGE INPUT ***********/
/*************************************/
/*http://brennaobrien.com/blog/2014/05/style-input-type-range-in-every-browser.html */
/*************************************/

.cr-slider {
    -webkit-appearance: none;/*removes default webkit styles*/
    /*border: 1px solid white; *//*fix for FF unable to apply focus style bug */
    width: 300px;/*required for proper track sizing in FF*/
    max-width: 100%;
}
.cr-slider::-webkit-slider-runnable-track {
    width: 100%;
    height: 3px;
    background: rgba(0, 0, 0, 0.5);
    border: 0;
    border-radius: 3px;
}
.cr-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #ddd;
    margin-top: -6px;
}
.cr-slider:focus {
    outline: none;
}
/*
.cr-slider:focus::-webkit-slider-runnable-track {
    background: #ccc;
}
*/

.cr-slider::-moz-range-track {
    width: 100%;
    height: 3px;
    background: rgba(0, 0, 0, 0.5);
    border: 0;
    border-radius: 3px;
}
.cr-slider::-moz-range-thumb {
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #ddd;
    margin-top: -6px;
}

/*hide the outline behind the border*/
.cr-slider:-moz-focusring{
    outline: 1px solid white;
    outline-offset: -1px;
}

.cr-slider::-ms-track {
    width: 100%;
    height: 5px;
    background: transparent;/*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
    border-color: transparent;/*leave room for the larger thumb to overflow with a transparent border */
    border-width: 6px 0;
    color: transparent;/*remove default tick marks*/
}
.cr-slider::-ms-fill-lower {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}
.cr-slider::-ms-fill-upper {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}
.cr-slider::-ms-thumb {
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #ddd;
    margin-top:1px;
}
.cr-slider:focus::-ms-fill-lower {
    background: rgba(0, 0, 0, 0.5);
}
.cr-slider:focus::-ms-fill-upper {
    background: rgba(0, 0, 0, 0.5);
}
/*******************************************/

/***********************************/
/* Rotation Tools */
/***********************************/
.cr-rotate-controls {
    position: absolute;
    bottom: 5px;
    left: 5px;
    z-index: 1;
}
.cr-rotate-controls button {
    border: 0;
    background: none;
}
.cr-rotate-controls i:before {
    display: inline-block;
    font-style: normal;
    font-weight: 900;
    font-size: 22px;
}
.cr-rotate-l i:before {
    content: '↺';
}
.cr-rotate-r i:before {
    content: '↻';
}

.y-tick {
    stroke: black;
    fill: none;
    stroke-width: 1px;
}

.axis g.tick line {
    stroke: #777;
    fill: none;
    stroke-width: 1px;
}

.line-separator,
.x-axis {
    stroke: #777;
    fill: none;
    stroke-width: 1px;
}

.drop-line:last-child .line-separator {
    display: none;
}

text {
    stroke: none;
    fill: black;
}

/*
  Icon Font: flatuifont
*/

@font-face {
  font-family: "flatuifont";
  src: url(/static/fonts/flatuifont.a19e7ff1.woff) format("woff");
  font-weight: normal;
  font-style: normal;
}


.ffg-12 { font-size:12px;}
.ffg-14 { font-size:14px;}
.ffg-16 { font-size:16px;}
.ffg-18 { font-size:18px;}
.ffg-24 { font-size:24px;}
.ffg-48 { font-size:48px;}


.ffg:before {
  display: inline-block;
  font-family: "flatuifont";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  width: 1em;
  content: '?';
  text-decoration: inherit;
  text-rendering: optimizeLegibility;
  text-transform: none;
}

.ffg.loading:before {
  animation: spin 1s infinite steps(8); /* Chrome, Firefox 16+, IE 10+, Opera */
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.ffg-nbsp:before { content: "\00a0"; }

.ffg-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
}
.ffg-stack .ffg {
  position: absolute;
}
.ffg-stack .ffg-indent {
  left: 0.2em;
}

.ffg-1col:before { content: "\f100"; }
.ffg-2col:before { content: "\f101"; }
.ffg-3col:before { content: "\f102"; }
.ffg-4col:before { content: "\f103"; }
.ffg-acknowledge:before { content: "\f104"; }
.ffg-acs:before { content: "\f105"; }
.ffg-active-directory:before { content: "\f106"; }
.ffg-add:before { content: "\f107"; }
.ffg-address:before { content: "\f108"; }
.ffg-address-explicit-proxy:before { content: "\f109"; }
.ffg-address-explicit-proxy-group:before { content: "\f10a"; }
.ffg-address-fqdn:before { content: "\f10b"; }
.ffg-address-geo:before { content: "\f10c"; }
.ffg-address-geo-graph:before { content: "\f10d"; }
.ffg-address-group:before { content: "\f10e"; }
.ffg-address-iprange:before { content: "\f10f"; }
.ffg-address-ipv4:before { content: "\f110"; }
.ffg-address-ipv6:before { content: "\f111"; }
.ffg-address-mac:before { content: "\f112"; }
.ffg-address-multicast:before { content: "\f113"; }
.ffg-address-nsx:before { content: "\f114"; }
.ffg-address-vip:before { content: "\f115"; }
.ffg-address-vipgroup:before { content: "\f116"; }
.ffg-address-wildcard-fqdn:before { content: "\f117"; }
.ffg-adhoc:before { content: "\f118"; }
.ffg-adhoc-wifi-networks:before { content: "\f119"; }
.ffg-administrator:before { content: "\f11a"; }
.ffg-administrators:before { content: "\f11b"; }
.ffg-adom-folder:before { content: "\f11c"; }
.ffg-advanced:before { content: "\f11d"; }
.ffg-advanced-search:before { content: "\f11e"; }
.ffg-advanced-settings:before { content: "\f11f"; }
.ffg-aggregate:before { content: "\f120"; }
.ffg-alert-triage:before { content: "\f121"; }
.ffg-alladoms:before { content: "\f122"; }
.ffg-amazon:before { content: "\f123"; }
.ffg-amazon-o:before { content: "\f124"; }
.ffg-analytics:before { content: "\f125"; }
.ffg-and:before { content: "\f126"; }
.ffg-android:before { content: "\f127"; }
.ffg-antivirus:before { content: "\f128"; }
.ffg-ap-on-floor:before { content: "\f129"; }
.ffg-application-control:before { content: "\f12a"; }
.ffg-applications:before { content: "\f12b"; }
.ffg-arrow-down:before { content: "\f12c"; }
.ffg-arrow-left:before { content: "\f12d"; }
.ffg-arrow-right:before { content: "\f12e"; }
.ffg-arrow-up:before { content: "\f12f"; }
.ffg-authentication-scheme:before { content: "\f130"; }
.ffg-automation:before { content: "\f131"; }
.ffg-aws:before { content: "\f132"; }
.ffg-aws-lambda:before { content: "\f133"; }
.ffg-azure:before { content: "\f134"; }
.ffg-azure-o:before { content: "\f135"; }
.ffg-azure-o-no-border:before { content: "\f136"; }
.ffg-bell:before { content: "\f137"; }
.ffg-blackberry:before { content: "\f138"; }
.ffg-book:before { content: "\f139"; }
.ffg-bridging:before { content: "\f13a"; }
.ffg-bubbles:before { content: "\f13b"; }
.ffg-ca-certificates:before { content: "\f13c"; }
.ffg-ca-certificates-top:before { content: "\f13d"; }
.ffg-calendar:before { content: "\f13e"; }
.ffg-cancel:before { content: "\f13f"; }
.ffg-case-insensitive:before { content: "\f140"; }
.ffg-case-sensitive:before { content: "\f141"; }
.ffg-certificate:before { content: "\f142"; }
.ffg-certificate-local:before { content: "\f143"; }
.ffg-certificate-local-top:before { content: "\f144"; }
.ffg-certificate-remote:before { content: "\f145"; }
.ffg-certificate-remote-top:before { content: "\f146"; }
.ffg-chart-area:before { content: "\f147"; }
.ffg-chart-bar:before { content: "\f148"; }
.ffg-chart-bubble:before { content: "\f149"; }
.ffg-chart-chord:before { content: "\f14a"; }
.ffg-chart-donut:before { content: "\f14b"; }
.ffg-chart-library:before { content: "\f14c"; }
.ffg-chart-line:before { content: "\f14d"; }
.ffg-chart-map:before { content: "\f14e"; }
.ffg-chart-pie:before { content: "\f14f"; }
.ffg-chart-radar:before { content: "\f150"; }
.ffg-chart-sankey:before { content: "\f151"; }
.ffg-chart-stack-bar:before { content: "\f152"; }
.ffg-chart-table:before { content: "\f153"; }
.ffg-chart-treemap:before { content: "\f154"; }
.ffg-check:before { content: "\f155"; }
.ffg-check-empty:before { content: "\f156"; }
.ffg-check-selected:before { content: "\f157"; }
.ffg-checkered-top-left-bottom-right:before { content: "\f158"; }
.ffg-checkered-top-right-bottom-left:before { content: "\f159"; }
.ffg-chip:before { content: "\f15a"; }
.ffg-circle-thin:before { content: "\f15b"; }
.ffg-cisco:before { content: "\f15c"; }
.ffg-cisco-aci:before { content: "\f15d"; }
.ffg-cli:before { content: "\f15e"; }
.ffg-cli-group:before { content: "\f15f"; }
.ffg-clients-connected:before { content: "\f160"; }
.ffg-clone:before { content: "\f161"; }
.ffg-close:before { content: "\f162"; }
.ffg-cloud:before { content: "\f163"; }
.ffg-cloud-flow:before { content: "\f164"; }
.ffg-cloud-flow-trans:before { content: "\f165"; }
.ffg-cloud-group:before { content: "\f166"; }
.ffg-cloud-o:before { content: "\f167"; }
.ffg-cloud-proxy:before { content: "\f168"; }
.ffg-cloud-proxy-trans:before { content: "\f169"; }
.ffg-cloud-vm:before { content: "\f16a"; }
.ffg-cloud-vm-current:before { content: "\f16b"; }
.ffg-cmgmt-ro-o:before { content: "\f16c"; }
.ffg-cmgmt-rw-o:before { content: "\f16d"; }
.ffg-col-settings:before { content: "\f16e"; }
.ffg-collapse-all:before { content: "\f16f"; }
.ffg-config-status:before { content: "\f170"; }
.ffg-connected:before { content: "\f171"; }
.ffg-connection-down:before { content: "\f172"; }
.ffg-connectors:before { content: "\f173"; }
.ffg-copy:before { content: "\f174"; }
.ffg-correlation-rules:before { content: "\f175"; }
.ffg-cpu:before { content: "\f176"; }
.ffg-crl:before { content: "\f177"; }
.ffg-crl-top:before { content: "\f178"; }
.ffg-csv-format:before { content: "\f179"; }
.ffg-cursor:before { content: "\f17a"; }
.ffg-custom:before { content: "\f17b"; }
.ffg-custom-schedule:before { content: "\f17c"; }
.ffg-custom-view:before { content: "\f17d"; }
.ffg-cut:before { content: "\f17e"; }
.ffg-dashboard:before { content: "\f17f"; }
.ffg-data-leak-prevention:before { content: "\f180"; }
.ffg-dataset:before { content: "\f181"; }
.ffg-delete:before { content: "\f182"; }
.ffg-deselect:before { content: "\f183"; }
.ffg-deselect-all:before { content: "\f184"; }
.ffg-detail:before { content: "\f185"; }
.ffg-device:before { content: "\f186"; }
.ffg-device-dashboard:before { content: "\f187"; }
.ffg-device-group-custom:before { content: "\f188"; }
.ffg-device-lock:before { content: "\f189"; }
.ffg-device-log-settings:before { content: "\f18a"; }
.ffg-device-model:before { content: "\f18b"; }
.ffg-device-total:before { content: "\f18c"; }
.ffg-dial-up:before { content: "\f18d"; }
.ffg-diff:before { content: "\f18e"; }
.ffg-disable:before { content: "\f18f"; }
.ffg-disconnected:before { content: "\f190"; }
.ffg-disk:before { content: "\f191"; }
.ffg-doc-arrows:before { content: "\f192"; }
.ffg-dot:before { content: "\f193"; }
.ffg-dot-round:before { content: "\f194"; }
.ffg-down:before { content: "\f195"; }
.ffg-download:before { content: "\f196"; }
.ffg-download-csv:before { content: "\f197"; }
.ffg-download-pdf:before { content: "\f198"; }
.ffg-drag:before { content: "\f199"; }
.ffg-dynamic-objects:before { content: "\f19a"; }
.ffg-edit:before { content: "\f19b"; }
.ffg-email:before { content: "\f19c"; }
.ffg-emailfilter:before { content: "\f19d"; }
.ffg-ems-antivirus:before { content: "\f19e"; }
.ffg-ems-connection:before { content: "\f19f"; }
.ffg-ems-software-inventory:before { content: "\f1a0"; }
.ffg-ems-vulnerability-scan:before { content: "\f1a1"; }
.ffg-enable:before { content: "\f1a2"; }
.ffg-esxi:before { content: "\f1a3"; }
.ffg-event:before { content: "\f1a4"; }
.ffg-event-monitor:before { content: "\f1a5"; }
.ffg-event-trigger:before { content: "\f1a6"; }
.ffg-eventlog:before { content: "\f1a7"; }
.ffg-exclamation:before { content: "\f1a8"; }
.ffg-exit-full-screen:before { content: "\f1a9"; }
.ffg-expand-all:before { content: "\f1aa"; }
.ffg-expand-arrow:before { content: "\f1ab"; }
.ffg-export:before { content: "\f1ac"; }
.ffg-external-resource-address:before { content: "\f1ad"; }
.ffg-external-resource-category:before { content: "\f1ae"; }
.ffg-external-resource-domain:before { content: "\f1af"; }
.ffg-external-resource-malware:before { content: "\f1b0"; }
.ffg-eye-close:before { content: "\f1b1"; }
.ffg-eye-open:before { content: "\f1b2"; }
.ffg-fabric-device:before { content: "\f1b3"; }
.ffg-facebook:before { content: "\f1b4"; }
.ffg-fan:before { content: "\f1b5"; }
.ffg-faz-collector:before { content: "\f1b6"; }
.ffg-faz-standalone:before { content: "\f1b7"; }
.ffg-fems-logo:before { content: "\f1b8"; }
.ffg-firewall:before { content: "\f1b9"; }
.ffg-fmg-backup-mode:before { content: "\f1ba"; }
.ffg-folder:before { content: "\f1bb"; }
.ffg-folder-group:before { content: "\f1bc"; }
.ffg-folder-open-twotabs:before { content: "\f1bd"; }
.ffg-folder-twotabs:before { content: "\f1be"; }
.ffg-fortiadc:before { content: "\f1bf"; }
.ffg-fortiai:before { content: "\f1c0"; }
.ffg-fortianalyzer:before { content: "\f1c1"; }
.ffg-fortianalyzer-o-no-border:before { content: "\f1c2"; }
.ffg-fortiap:before { content: "\f1c3"; }
.ffg-fortiap-marketing:before { content: "\f1c4"; }
.ffg-fortiauthenticator:before { content: "\f1c5"; }
.ffg-forticache:before { content: "\f1c6"; }
.ffg-forticarrier:before { content: "\f1c7"; }
.ffg-forticasb:before { content: "\f1c8"; }
.ffg-forticlient:before { content: "\f1c9"; }
.ffg-forticlient-ems:before { content: "\f1ca"; }
.ffg-forticlient-o:before { content: "\f1cb"; }
.ffg-forticlient-solid:before { content: "\f1cc"; }
.ffg-forticloud:before { content: "\f1cd"; }
.ffg-fortiddos:before { content: "\f1ce"; }
.ffg-fortideceptor:before { content: "\f1cf"; }
.ffg-fortiextender:before { content: "\f1d0"; }
.ffg-fortifirewall:before { content: "\f1d1"; }
.ffg-fortigate:before { content: "\f1d2"; }
.ffg-fortigate-marketing:before { content: "\f1d3"; }
.ffg-fortigate-marketing-current:before { content: "\f1d4"; }
.ffg-fortigate-marketing-fwf:before { content: "\f1d5"; }
.ffg-fortigate-marketing-fwf-current:before { content: "\f1d6"; }
.ffg-fortigate-marketing-vm:before { content: "\f1d7"; }
.ffg-fortigate-marketing-vm-current:before { content: "\f1d8"; }
.ffg-fortiguard:before { content: "\f1d9"; }
.ffg-fortiguard-dashboard:before { content: "\f1da"; }
.ffg-fortimail:before { content: "\f1db"; }
.ffg-fortimanager:before { content: "\f1dc"; }
.ffg-fortimanager-map:before { content: "\f1dd"; }
.ffg-fortinac:before { content: "\f1de"; }
.ffg-fortinet-grid:before { content: "\f1df"; }
.ffg-fortiproxy:before { content: "\f1e0"; }
.ffg-fortirecorder:before { content: "\f1e1"; }
.ffg-fortisandbox:before { content: "\f1e2"; }
.ffg-fortisoar:before { content: "\f1e3"; }
.ffg-fortiswitch:before { content: "\f1e4"; }
.ffg-fortiswitch-ha:before { content: "\f1e5"; }
.ffg-fortiswitch-marketing:before { content: "\f1e6"; }
.ffg-fortitoken:before { content: "\f1e7"; }
.ffg-fortitoken-revoke:before { content: "\f1e8"; }
.ffg-fortitoken-send:before { content: "\f1e9"; }
.ffg-fortiview:before { content: "\f1ea"; }
.ffg-fortiweb:before { content: "\f1eb"; }
.ffg-fortiwifi:before { content: "\f1ec"; }
.ffg-fortiwlc:before { content: "\f1ed"; }
.ffg-freebsd:before { content: "\f1ee"; }
.ffg-fsso-service:before { content: "\f1ef"; }
.ffg-ftp-server:before { content: "\f1f0"; }
.ffg-full-meshed:before { content: "\f1f1"; }
.ffg-full-screen:before { content: "\f1f2"; }
.ffg-gaming-console:before { content: "\f1f3"; }
.ffg-gcp:before { content: "\f1f4"; }
.ffg-gcp-o:before { content: "\f1f5"; }
.ffg-gcp-o-no-border:before { content: "\f1f6"; }
.ffg-globe:before { content: "\f1f7"; }
.ffg-google:before { content: "\f1f8"; }
.ffg-group:before { content: "\f1f9"; }
.ffg-grouping:before { content: "\f1fa"; }
.ffg-gtp-log:before { content: "\f1fb"; }
.ffg-ha:before { content: "\f1fc"; }
.ffg-hamburger:before { content: "\f1fd"; }
.ffg-heartbeat:before { content: "\f1fe"; }
.ffg-help-o:before { content: "\f1ff"; }
.ffg-help-solid:before { content: "\f200"; }
.ffg-history:before { content: "\f201"; }
.ffg-hook-triangle-left:before { content: "\f202"; }
.ffg-hook-triangle-right-bottom:before { content: "\f203"; }
.ffg-hub:before { content: "\f204"; }
.ffg-ibm-cloud:before { content: "\f205"; }
.ffg-import:before { content: "\f206"; }
.ffg-incidents:before { content: "\f207"; }
.ffg-incidents-add:before { content: "\f208"; }
.ffg-incidents-new:before { content: "\f209"; }
.ffg-insert-above:before { content: "\f20a"; }
.ffg-insert-below:before { content: "\f20b"; }
.ffg-install:before { content: "\f20c"; }
.ffg-interface:before { content: "\f20d"; }
.ffg-interface-filtered:before { content: "\f20e"; }
.ffg-interface-fortilink:before { content: "\f20f"; }
.ffg-interface-modem:before { content: "\f210"; }
.ffg-interface-rj11:before { content: "\f211"; }
.ffg-interface-rj11-half-duplex:before { content: "\f212"; }
.ffg-interface-rj45:before { content: "\f213"; }
.ffg-interface-rj45-half-duplex:before { content: "\f214"; }
.ffg-interface-sfp:before { content: "\f215"; }
.ffg-interface-sfp-half-duplex:before { content: "\f216"; }
.ffg-intrusion-prevention:before { content: "\f217"; }
.ffg-ioc:before { content: "\f218"; }
.ffg-ios:before { content: "\f219"; }
.ffg-ip:before { content: "\f21a"; }
.ffg-ip-pool:before { content: "\f21b"; }
.ffg-ipfix:before { content: "\f21c"; }
.ffg-iphone:before { content: "\f21d"; }
.ffg-ipv6-template:before { content: "\f21e"; }
.ffg-kubernetes:before { content: "\f21f"; }
.ffg-language:before { content: "\f220"; }
.ffg-laptop:before { content: "\f221"; }
.ffg-last:before { content: "\f222"; }
.ffg-launch-portal:before { content: "\f223"; }
.ffg-ldap:before { content: "\f224"; }
.ffg-ldap-address:before { content: "\f225"; }
.ffg-ldap-city:before { content: "\f226"; }
.ffg-ldap-cn:before { content: "\f227"; }
.ffg-ldap-country:before { content: "\f228"; }
.ffg-ldap-dc:before { content: "\f229"; }
.ffg-ldap-organization:before { content: "\f22a"; }
.ffg-ldap-ou:before { content: "\f22b"; }
.ffg-ldap-server:before { content: "\f22c"; }
.ffg-ldap-state:before { content: "\f22d"; }
.ffg-ldap-uid:before { content: "\f22e"; }
.ffg-line-graph:before { content: "\f22f"; }
.ffg-linkedin:before { content: "\f230"; }
.ffg-linux:before { content: "\f231"; }
.ffg-local:before { content: "\f232"; }
.ffg-lock:before { content: "\f233"; }
.ffg-lock-by-user:before { content: "\f234"; }
.ffg-log:before { content: "\f235"; }
.ffg-log-array:before { content: "\f236"; }
.ffg-log-browse:before { content: "\f237"; }
.ffg-log-report:before { content: "\f238"; }
.ffg-log-view:before { content: "\f239"; }
.ffg-logout:before { content: "\f23a"; }
.ffg-logout-o:before { content: "\f23b"; }
.ffg-loopback:before { content: "\f23c"; }
.ffg-mac-os-x:before { content: "\f23d"; }
.ffg-macos:before { content: "\f23e"; }
.ffg-macro-library:before { content: "\f23f"; }
.ffg-mail:before { content: "\f240"; }
.ffg-mail-server:before { content: "\f241"; }
.ffg-malware:before { content: "\f242"; }
.ffg-matrix:before { content: "\f243"; }
.ffg-mesh:before { content: "\f244"; }
.ffg-meta-fields:before { content: "\f245"; }
.ffg-money:before { content: "\f246"; }
.ffg-monitor:before { content: "\f247"; }
.ffg-multiple-devices:before { content: "\f248"; }
.ffg-nav-user:before { content: "\f249"; }
.ffg-network:before { content: "\f24a"; }
.ffg-new:before { content: "\f24b"; }
.ffg-news:before { content: "\f24c"; }
.ffg-next:before { content: "\f24d"; }
.ffg-no:before { content: "\f24e"; }
.ffg-np-accelerated:before { content: "\f24f"; }
.ffg-nuage-networks:before { content: "\f250"; }
.ffg-null:before { content: "\f251"; }
.ffg-nutanix:before { content: "\f252"; }
.ffg-nutanix-small:before { content: "\f253"; }
.ffg-object-selector:before { content: "\f254"; }
.ffg-on-bottom:before { content: "\f255"; }
.ffg-on-left:before { content: "\f256"; }
.ffg-online-help:before { content: "\f257"; }
.ffg-opc:before { content: "\f258"; }
.ffg-opc-o:before { content: "\f259"; }
.ffg-openstack:before { content: "\f25a"; }
.ffg-openstack-text:before { content: "\f25b"; }
.ffg-or:before { content: "\f25c"; }
.ffg-oracle-oci:before { content: "\f25d"; }
.ffg-output-profile:before { content: "\f25e"; }
.ffg-packet-download:before { content: "\f25f"; }
.ffg-paste-above:before { content: "\f260"; }
.ffg-paste-below:before { content: "\f261"; }
.ffg-peer:before { content: "\f262"; }
.ffg-pen:before { content: "\f263"; }
.ffg-pending:before { content: "\f264"; }
.ffg-pin:before { content: "\f265"; }
.ffg-place-ap:before { content: "\f266"; }
.ffg-playbook-monitor:before { content: "\f267"; }
.ffg-playbooks:before { content: "\f268"; }
.ffg-policy-objects:before { content: "\f269"; }
.ffg-policy-package:before { content: "\f26a"; }
.ffg-port:before { content: "\f26b"; }
.ffg-ports:before { content: "\f26c"; }
.ffg-power:before { content: "\f26d"; }
.ffg-printer:before { content: "\f26e"; }
.ffg-profile:before { content: "\f26f"; }
.ffg-profile-antivirus:before { content: "\f270"; }
.ffg-profile-application:before { content: "\f271"; }
.ffg-profile-dlp:before { content: "\f272"; }
.ffg-profile-dos:before { content: "\f273"; }
.ffg-profile-emailfilter:before { content: "\f274"; }
.ffg-profile-ips:before { content: "\f275"; }
.ffg-profile-package:before { content: "\f276"; }
.ffg-profile-proxy-option:before { content: "\f277"; }
.ffg-profile-ssl-ssh-inspection:before { content: "\f278"; }
.ffg-profile-webfilter:before { content: "\f279"; }
.ffg-protected-schedule:before { content: "\f27a"; }
.ffg-purge:before { content: "\f27b"; }
.ffg-quarantine:before { content: "\f27c"; }
.ffg-radio-empty:before { content: "\f27d"; }
.ffg-radio-selected:before { content: "\f27e"; }
.ffg-radius:before { content: "\f27f"; }
.ffg-radius-server:before { content: "\f280"; }
.ffg-ram:before { content: "\f281"; }
.ffg-reboot:before { content: "\f282"; }
.ffg-redo:before { content: "\f283"; }
.ffg-refresh:before { content: "\f284"; }
.ffg-refresh-rectangle:before { content: "\f285"; }
.ffg-regular-search:before { content: "\f286"; }
.ffg-remote:before { content: "\f287"; }
.ffg-remove-all:before { content: "\f288"; }
.ffg-report:before { content: "\f289"; }
.ffg-report-home:before { content: "\f28a"; }
.ffg-reset:before { content: "\f28b"; }
.ffg-responsive:before { content: "\f28c"; }
.ffg-retrieve-diagnostic:before { content: "\f28d"; }
.ffg-ring-network:before { content: "\f28e"; }
.ffg-rogue:before { content: "\f28f"; }
.ffg-rogue-ap:before { content: "\f290"; }
.ffg-rsso:before { content: "\f291"; }
.ffg-run-report:before { content: "\f292"; }
.ffg-salesforce:before { content: "\f293"; }
.ffg-salesforce-o:before { content: "\f294"; }
.ffg-samba-server:before { content: "\f295"; }
.ffg-save:before { content: "\f296"; }
.ffg-schedule:before { content: "\f297"; }
.ffg-schedule-group:before { content: "\f298"; }
.ffg-schedule-recurrence:before { content: "\f299"; }
.ffg-schedule-recurring:before { content: "\f29a"; }
.ffg-schedule-trigger:before { content: "\f29b"; }
.ffg-sd-wan:before { content: "\f29c"; }
.ffg-sdn-conntector:before { content: "\f29d"; }
.ffg-search:before { content: "\f29e"; }
.ffg-search-contextmenu:before { content: "\f29f"; }
.ffg-security:before { content: "\f2a0"; }
.ffg-security-fabric:before { content: "\f2a1"; }
.ffg-select:before { content: "\f2a2"; }
.ffg-select-all:before { content: "\f2a3"; }
.ffg-send-logs:before { content: "\f2a4"; }
.ffg-service:before { content: "\f2a5"; }
.ffg-service-group:before { content: "\f2a6"; }
.ffg-sessions:before { content: "\f2a7"; }
.ffg-settings:before { content: "\f2a8"; }
.ffg-share:before { content: "\f2a9"; }
.ffg-shopping-cart:before { content: "\f2aa"; }
.ffg-shutdown:before { content: "\f2ab"; }
.ffg-siem:before { content: "\f2ac"; }
.ffg-simple-view:before { content: "\f2ad"; }
.ffg-skype:before { content: "\f2ae"; }
.ffg-sms:before { content: "\f2af"; }
.ffg-snmp:before { content: "\f2b0"; }
.ffg-solid:before { content: "\f2b1"; }
.ffg-spinner:before { content: "\f2b2"; }
.ffg-ssh:before { content: "\f2b3"; }
.ffg-ssl:before { content: "\f2b4"; }
.ffg-star:before { content: "\f2b5"; }
.ffg-summary:before { content: "\f2b6"; }
.ffg-support:before { content: "\f2b7"; }
.ffg-supress:before { content: "\f2b8"; }
.ffg-switch:before { content: "\f2b9"; }
.ffg-switch-2:before { content: "\f2ba"; }
.ffg-switch-vdom:before { content: "\f2bb"; }
.ffg-symantec:before { content: "\f2bc"; }
.ffg-syslog:before { content: "\f2bd"; }
.ffg-system-settings:before { content: "\f2be"; }
.ffg-table:before { content: "\f2bf"; }
.ffg-tacacs:before { content: "\f2c0"; }
.ffg-tacacs-server:before { content: "\f2c1"; }
.ffg-tag:before { content: "\f2c2"; }
.ffg-tag-category:before { content: "\f2c3"; }
.ffg-task-manager:before { content: "\f2c4"; }
.ffg-temperature:before { content: "\f2c5"; }
.ffg-templates:before { content: "\f2c6"; }
.ffg-terminal:before { content: "\f2c7"; }
.ffg-third-party-threat-feed:before { content: "\f2c8"; }
.ffg-threats:before { content: "\f2c9"; }
.ffg-timeline:before { content: "\f2ca"; }
.ffg-toggle-off:before { content: "\f2cb"; }
.ffg-toggle-on:before { content: "\f2cc"; }
.ffg-tools:before { content: "\f2cd"; }
.ffg-top-help:before { content: "\f2ce"; }
.ffg-top-message:before { content: "\f2cf"; }
.ffg-top-task:before { content: "\f2d0"; }
.ffg-top-user:before { content: "\f2d1"; }
.ffg-traffic:before { content: "\f2d2"; }
.ffg-traffic-shaper:before { content: "\f2d3"; }
.ffg-traffic-shaper-reverse:before { content: "\f2d4"; }
.ffg-tray-alert:before { content: "\f2d5"; }
.ffg-tray-running:before { content: "\f2d6"; }
.ffg-tree-close-light:before { content: "\f2d7"; }
.ffg-tree-collapsed:before { content: "\f2d8"; }
.ffg-tree-open:before { content: "\f2d9"; }
.ffg-tree-open-light:before { content: "\f2da"; }
.ffg-triangle-down:before { content: "\f2db"; }
.ffg-triangle-right:before { content: "\f2dc"; }
.ffg-twitter:before { content: "\f2dd"; }
.ffg-undo:before { content: "\f2de"; }
.ffg-unlocked:before { content: "\f2df"; }
.ffg-unpin:before { content: "\f2e0"; }
.ffg-unregistered:before { content: "\f2e1"; }
.ffg-up:before { content: "\f2e2"; }
.ffg-upgrade:before { content: "\f2e3"; }
.ffg-usb:before { content: "\f2e4"; }
.ffg-usb-o:before { content: "\f2e5"; }
.ffg-usb-warn-o:before { content: "\f2e6"; }
.ffg-user:before { content: "\f2e7"; }
.ffg-user-o:before { content: "\f2e8"; }
.ffg-user-radius:before { content: "\f2e9"; }
.ffg-user-secret:before { content: "\f2ea"; }
.ffg-users:before { content: "\f2eb"; }
.ffg-validate:before { content: "\f2ec"; }
.ffg-validate-all:before { content: "\f2ed"; }
.ffg-vdom:before { content: "\f2ee"; }
.ffg-vdom-flow:before { content: "\f2ef"; }
.ffg-vdom-flow-transparent:before { content: "\f2f0"; }
.ffg-vdom-proxy:before { content: "\f2f1"; }
.ffg-vdom-proxy-transparent:before { content: "\f2f2"; }
.ffg-video:before { content: "\f2f3"; }
.ffg-view:before { content: "\f2f4"; }
.ffg-view-detail:before { content: "\f2f5"; }
.ffg-virtual-domain:before { content: "\f2f6"; }
.ffg-virtual-ip:before { content: "\f2f7"; }
.ffg-virtual-ip-group:before { content: "\f2f8"; }
.ffg-virtual-machine:before { content: "\f2f9"; }
.ffg-virtual-server-load-balance:before { content: "\f2fa"; }
.ffg-virtual-wan-link:before { content: "\f2fb"; }
.ffg-virtual-wire-pair:before { content: "\f2fc"; }
.ffg-vlan:before { content: "\f2fd"; }
.ffg-vm:before { content: "\f2fe"; }
.ffg-vmware:before { content: "\f2ff"; }
.ffg-vmware-esxi:before { content: "\f300"; }
.ffg-vmware-nsx:before { content: "\f301"; }
.ffg-voip:before { content: "\f302"; }
.ffg-vpn:before { content: "\f303"; }
.ffg-vpn-lock:before { content: "\f304"; }
.ffg-vpn-lock-o:before { content: "\f305"; }
.ffg-vpn-manager:before { content: "\f306"; }
.ffg-vpn-tunnel:before { content: "\f307"; }
.ffg-vpn-wzd-arrow:before { content: "\f308"; }
.ffg-vpn-wzd-device:before { content: "\f309"; }
.ffg-vpn-wzd-interface:before { content: "\f30a"; }
.ffg-vpn-wzd-protected-network:before { content: "\f30b"; }
.ffg-vpn-wzd-vpn:before { content: "\f30c"; }
.ffg-vulnerability-scan:before { content: "\f30d"; }
.ffg-wan-opt:before { content: "\f30e"; }
.ffg-warning:before { content: "\f30f"; }
.ffg-warning-out-of-memory:before { content: "\f310"; }
.ffg-web-server:before { content: "\f311"; }
.ffg-webfilter:before { content: "\f312"; }
.ffg-where-used:before { content: "\f313"; }
.ffg-wifi:before { content: "\f314"; }
.ffg-wifi-bridging:before { content: "\f315"; }
.ffg-wifi-controller:before { content: "\f316"; }
.ffg-wifi-mesh:before { content: "\f317"; }
.ffg-windows13:before { content: "\f318"; }
.ffg-wizard-o:before { content: "\f319"; }
.ffg-yes:before { content: "\f31a"; }


.form-control-hover-effect {
  transition: border 0.25s linear, color 0.25s linear, background-color 0.25s linear, box-shadow 0.25s;
  border-color: rgb(var(--nw-color-form-hover)) !important;
  background-color: rgb(var(--nw-color-form-hover)) !important;
  color: rgb(var(--nw-color-on-form-hover)) !important;
}
.form-control-hover:not([disabled]) {
  transition: border 0.25s linear, color 0.25s linear, background-color 0.25s linear, box-shadow 0.25s;
  border-color: rgb(var(--nw-color-form-hover)) !important;
  background-color: rgb(var(--nw-color-form-hover)) !important;
  color: rgb(var(--nw-color-on-form-hover)) !important;
}
.form-control-hover::placeholder {
  color: rgb(var(--nw-color-green-900));
}
/*
 * Variables definitions.
 *
 * WARNING: Do not put any non-variable instruction here becuase it's
 * imported by themes and other less files which will do unnecessary or wrong
 * overwrites.
 */
/*
 * Please put "()" for all mixins here so the they will not be output to the
 * result.
 */
.color-background {
  color: rgb(var(--nw-color-neutral-1000));
  background-color: rgb(var(--nw-color-neutral-0));
}
.color-msg-yellow {
  color: rgb(var(--nw-color-on-msg-yellow));
  background-color: rgb(var(--nw-color-msg-yellow));
}
.color-msg-red {
  color: rgb(var(--nw-color-on-msg-red));
  background-color: rgb(var(--nw-color-msg-red));
}
.color-msg-blue {
  color: rgb(var(--nw-color-on-msg-blue));
  background-color: rgb(var(--nw-color-msg-blue));
}
.color-msg-cyan {
  color: rgb(var(--nw-color-on-msg-cyan));
  background-color: rgb(var(--nw-color-msg-cyan));
}
.color-msg-orange {
  color: rgb(var(--nw-color-on-msg-orange));
  background-color: rgb(var(--nw-color-msg-orange));
}
.color-msg-gray {
  color: rgb(var(--nw-color-on-msg-gray));
  background-color: rgb(var(--nw-color-msg-gray));
}
.color-msg-green {
  color: rgb(var(--nw-color-on-msg-green));
  background-color: rgb(var(--nw-color-msg-green));
}
.color-msg-purple {
  color: rgb(var(--nw-color-on-msg-purple));
  background-color: rgb(var(--nw-color-msg-purple));
}
/*list table footer style mixin*/
/* menu bar mixin */
/* sprite image small size 16x16 mixn*/
.fi-form-row:hover > label,
.fi-form-row:hover > .control-label {
  text-decoration: underline;
}
.fi-form-row:hover .form-control:not([disabled]),
.fi-form-row:hover .fi-count-textarea:not([disabled]),
.fi-form-row:hover .fi-ctrl > textarea:not([disabled]),
.fi-form-row:hover .select2-choice:not(.select2-container-disabled .select2-choice):not([disabled]),
.fi-form-row:hover .selected-container:not([disabled]),
.fi-form-row:hover .select-widget:not([disabled]),
.fi-form-row:hover .fi-drop-box:not([disabled]) {
  transition: border 0.25s linear, color 0.25s linear, background-color 0.25s linear, box-shadow 0.25s;
  border-color: rgb(var(--nw-color-form-hover)) !important;
  background-color: rgb(var(--nw-color-form-hover)) !important;
  color: rgb(var(--nw-color-on-form-hover)) !important;
}
.fi-form-row:hover .form-control::placeholder,
.fi-form-row:hover .fi-count-textarea::placeholder,
.fi-form-row:hover .fi-ctrl > textarea::placeholder,
.fi-form-row:hover .select2-choice:not(.select2-container-disabled .select2-choice)::placeholder,
.fi-form-row:hover .selected-container::placeholder,
.fi-form-row:hover .select-widget::placeholder,
.fi-form-row:hover .fi-drop-box::placeholder {
  color: rgb(var(--nw-color-green-900));
}
.fi-form-row:hover fi-sselect > [role="button"]:not([aria-disabled="true"]),
.fi-form-row:hover nw-input:not([disabled=true]):not(.no-form-hover)::part(base),
.fi-form-row:hover nw-textarea:not([disabled=true]):not(.no-form-hover)::part(base),
.fi-form-row:hover nw-radio:not([disabled=true]):not(.no-form-hover)::part(input),
.fi-form-row:hover nw-switch:not([disabled=true]):not(.no-form-hover)::part(control),
.fi-form-row:hover nw-checkbox:not([disabled=true]):not(.no-form-hover)::part(input),
.fi-form-row:hover nw-checkbox:not([disabled=true]):not(.no-form-hover)::part(label) {
  transition: border 0.25s linear, color 0.25s linear, background-color 0.25s linear, box-shadow 0.25s;
  border-color: rgb(var(--nw-color-form-hover)) !important;
  background-color: rgb(var(--nw-color-form-hover)) !important;
  color: rgb(var(--nw-color-on-form-hover)) !important;
}
.fi-form-row:hover nw-input:not([disabled=true]):not(.no-form-hover)::part(input),
.fi-form-row:hover nw-textarea:not([disabled=true]):not(.no-form-hover)::part(textarea) {
  color: rgb(var(--nw-color-on-form-hover)) !important;
  --nw-input-autofill-background-color-hover: var(--nw-color-form-hover) !important;
  --nw-input-autofill-color-hover: rgb(var(--nw-color-on-form-hover)) !important;
  transition: box-shadow 0.25s linear;
}
.fi-form-row:hover .select-widget .selected-entries .wp:hover .selected-entry {
  color: rgb(var(--nw-color-neutral-1000));
}
.fi-form-row:hover .select-widget .selected-entries .selected-entry {
  color: #333;
}
.fi-form-row .checkbox label:hover:not([disabled]),
.fi-form-row .checkbox-inline label:hover:not([disabled]),
.fi-form-row label.checkbox-inline:hover:not([disabled]),
.fi-form-row .radio label:hover:not([disabled]),
.fi-form-row .radio-inline label:hover:not([disabled]),
.fi-form-row label.radio-inline:hover:not([disabled]) {
  transition: border 0.25s linear, color 0.25s linear, background-color 0.25s linear, box-shadow 0.25s;
  border-color: rgb(var(--nw-color-form-hover)) !important;
  background-color: rgb(var(--nw-color-form-hover)) !important;
  color: rgb(var(--nw-color-on-form-hover)) !important;
}
.fi-form-row .checkbox label:hover::placeholder,
.fi-form-row .checkbox-inline label:hover::placeholder,
.fi-form-row label.checkbox-inline:hover::placeholder,
.fi-form-row .radio label:hover::placeholder,
.fi-form-row .radio-inline label:hover::placeholder,
.fi-form-row label.radio-inline:hover::placeholder {
  color: rgb(var(--nw-color-green-900));
}
.fi-form-row .checkbox label:hover .icons:before,
.fi-form-row .checkbox-inline label:hover .icons:before,
.fi-form-row label.checkbox-inline:hover .icons:before,
.fi-form-row .radio label:hover .icons:before,
.fi-form-row .radio-inline label:hover .icons:before,
.fi-form-row label.radio-inline:hover .icons:before {
  color: #333 !important;
}
.form-control {
  border: 1px solid rgb(var(--nw-color-border));
  font-family: Lato, Verdana, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.467;
  height: 25px;
  padding: 5px;
  border-radius: 3px;
  box-shadow: none;
  background-color: rgb(var(--nw-color-neutral-0));
  color: rgb(var(--nw-color-neutral-1000));
}
.form-control:focus,
.form-control:active:focus {
  border-color: rgb(var(--nw-color-primary-500)) !important;
  outline: none!important;
  box-shadow: 0 0 0 3px rgb(var(--nw-color-primary-300) / 0.8);
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: rgb(var(--nw-color-neutral-200));
  color: rgb(var(--nw-color-neutral-1000));
  border-color: rgb(var(--nw-color-gray-200));
  cursor: default;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
.form-control.inline {
  display: inline;
}
input.form-control[type="number"] {
  padding-top: 3px;
  padding-bottom: 3px;
}
select.form-control {
  padding-top: 2px;
  padding-bottom: 2px;
}
.checkbox-inline,
radio-inline {
  position: relative;
}
.checkbox-inline.disabled,
radio-inline.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.checkbox,
.radio {
  margin-top: 0;
  margin-bottom: 0;
}
.checkbox label,
.radio label {
  position: relative;
}
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  padding-top: 2px;
}
.form-horizontal .control-label {
  padding-top: 2px;
  text-align: left;
}
.form-horizontal .fi-value-text {
  padding-top: 2px;
}
.form-horizontal .form-inline .form-group {
  margin-left: 0;
  margin-right: 0;
}
.input-group .form-control {
  position: static;
}
.form-group {
  margin-bottom: 5px;
}
.form-group .col-group:not(:first-child) {
  padding-left: 2px;
}
.form-group .col-group:not(:last-child) {
  padding-right: 2px;
}
.input-sm,
.form-group-sm .form-control {
  height: 20px;
  padding: 6px 10px;
  font-size: 0.867rem;
  line-height: 1.462;
  border-radius: 6px;
}
select.input-sm,
select.form-group-sm .form-control {
  height: 20px;
  line-height: 20px;
}
textarea.input-sm,
textarea.form-group-sm .form-control,
select[multiple].input-sm,
select[multiple].form-group-sm .form-control {
  height: auto;
}
.input-lg,
.form-group-lg .form-control {
  height: 30px;
  padding: 10px 15px;
  font-size: 1.133rem;
  line-height: 1.235;
  border-radius: 6px;
}
select.input-lg,
select.form-group-lg .form-control {
  height: 30px;
  line-height: 30px;
}
textarea.input-lg,
textarea.form-group-lg .form-control,
select[multiple].input-lg,
select[multiple].form-group-lg .form-control {
  height: auto;
}
.input-hg,
.form-group-hg .form-control {
  height: 35px;
  padding: 10px 16px;
  font-size: 1.467rem;
  line-height: 1.318;
  border-radius: 6px;
}
select.input-hg,
select.form-group-hg .form-control {
  height: 35px;
  line-height: 35px;
}
textarea.input-hg,
textarea.form-group-hg .form-control,
select[multiple].input-hg,
select[multiple].form-group-hg .form-control {
  height: auto;
}
.form-group .btn,
.form-group .btn-group > .btn {
  line-height: 1.1;
  padding: 5px 10px;
  font-size: 1rem;
  border-radius: 3px;
}
.progress {
  margin-top: 2px;
  margin-bottom: 2px;
  border-radius: 4px;
  overflow: hidden;
  --webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}
.progress-bar-warning {
  color: rgb(var(--nw-color-on-msg-yellow));
  background-color: rgb(var(--nw-color-msg-yellow));
}
.progress-bar {
  float: left;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  --webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  transition: width 0.6s ease;
}
.fi-form {
  padding: 15px;
}
.fi-form .progress {
  margin: 5px 0;
}
.fi-form h3 {
  font-size: 1rem;
  font-weight: bold;
}
.fi-form .group-header {
  cursor: pointer;
}
.fi-form-container {
  height: 100%;
  overflow: auto;
  padding-bottom: 39px;
}
.fi-form-container .form-body {
  height: 100%;
  overflow: auto;
  background-color: white;
}
.fi-form-container .fi-form-footer {
  margin: 0;
  border-radius: 0;
  text-align: center;
  padding: 5px;
  background-color: #fff;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
}
.fi-form-container .fi-form-footer .btn {
  min-width: 9rem;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 1rem;
}
.fi-form-container .fi-form-footer .btn:focus,
.fi-form-container .fi-form-footer .btn:active:focus {
  border-color: rgb(var(--nw-color-primary-500)) !important;
  outline: none!important;
  box-shadow: 0 0 0 3px rgb(var(--nw-color-primary-300) / 0.8);
}
.fi-form-container .fi-form-footer .btn + .btn {
  margin-left: 0.375rem;
  margin-bottom: 0;
}
.white-bg {
  background-color: #fff;
}
.input-calendar .btn-calendar {
  cursor: pointer;
}
form.ng-invalid {
  border: none;
}
form .debug {
  width: 400px;
  height: 100%;
  overflow-y: auto;
}
.select2-container-active .select2-choice,
.select2-container-multi.select2-container-active .select2-choices {
  box-shadow: none;
  transition: inherit;
}
.pass-input-wrapper {
  position: relative;
}
.input-group .pass-input-wrapper {
  float: left;
  width: 100%;
  border-radius: 3px;
  border: 1px solid rgb(var(--nw-color-border));
}
.input-group .pass-input-wrapper .form-control {
  border: 0;
  background-color: transparent;
}
.input-group .pass-input-wrapper:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
input[type='password']::-ms-reveal {
  display: none;
}
/**
 * form related
 **/
form {
  width: 100%;
}
.form-label-text {
  font-size: 1rem !important;
  font-weight: normal !important;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-top: 1px;
  margin-bottom: 1px;
}
.form-field-optional-text {
  font-size: 0.9rem;
  padding-top: 3px;
}
.fi-meta-fields .form-field-optional-text {
  padding-left: 3px;
}
a {
  color: rgb(var(--nw-color-link));
  background-color: transparent;
  text-decoration: none;
  box-sizing: border-box;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}
.list-group-item-danger {
  color: #a94442;
  background-color: #f2dcdc;
}
.list-group {
  padding-left: 0;
  margin-bottom: 20px;
}
.list-group-item {
  background-color: rgb(var(--nw-color-neutral-0));
  border-color: rgb(var(--nw-color-border));
  pisition: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  border: 1px solid #ddd;
  box-sizing: border-box;
}
pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  box-sizing: border-box;
  font-size: 13px;
  word-break: break-all;
  word-wrap: break-word;
  color: #333333;
  background-color: #f5f5f5;
  border: 1px solid #cccc;
  border-radius: 4px;
}
pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
  box-size: border-box;
}
code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px;
  box-sizing: border-box;
  /* word-break: break-all; */
  /* word-wrap: break-word; */
}
a:hover,
a:focus {
  text-decoration: underline;
}
a:active,
a:hover {
  outline: 0;
}
.pull-right {
  float: right;
}
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid rgb(var(--nw-color-border));
}
*:before,
*:after {
  box-sizing: border-box;
}

.form-control-hover-effect {
  transition: border 0.25s linear, color 0.25s linear, background-color 0.25s linear, box-shadow 0.25s;
  border-color: rgb(var(--nw-color-form-hover)) !important;
  background-color: rgb(var(--nw-color-form-hover)) !important;
  color: rgb(var(--nw-color-on-form-hover)) !important;
}
.form-control-hover:not([disabled]) {
  transition: border 0.25s linear, color 0.25s linear, background-color 0.25s linear, box-shadow 0.25s;
  border-color: rgb(var(--nw-color-form-hover)) !important;
  background-color: rgb(var(--nw-color-form-hover)) !important;
  color: rgb(var(--nw-color-on-form-hover)) !important;
}
.form-control-hover::placeholder {
  color: rgb(var(--nw-color-green-900));
}
.open > .dropdown-toggle.form-group .btn-default {
  background-color: rgb(var(--nw-color-primary));
  color: rgb(var(--nw-color-neutral-0));
  border-color: rgb(var(--nw-color-border));
}
.form-control.select2-container.select2-dropdown-open,
.select2-drop.select2-drop-above.select2-drop-active,
.select2-container-active .select2-choice,
.select2-container-active .select2-choices,
.select2-dropdown-open.select2-drop-above .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choices,
.select2-drop-active {
  border-color: rgb(var(--nw-color-border)) !important;
}
.select2-container-active .select2-choice:focus,
.select2-container-active .select2-choices:focus,
.select2-container-active .select2-choice:active:focus,
.select2-container-active .select2-choices:active:focus {
  border-color: rgb(var(--nw-color-primary-500)) !important;
  outline: none!important;
  box-shadow: 0 0 0 3px rgb(var(--nw-color-primary-500) / 0.8);
}
.dashboard-wrapper .dvm-dashboard-tab > div > ul.nav-tabs > li > a#add-board {
  background-color: rgb(var(--nw-color-primary));
}
.dashboard-wrapper .dvm-dashboard-tab > div > ul.nav-tabs > li.active > a {
  background-color: rgb(var(--nw-color-primary));
}
.dashboard-wrapper .dvm-dashboard-tab > div > ul.nav-tabs > li.active:hover > a {
  background-color: rgb(var(--nw-color-primary));
}
.dashboard-wrapper .dvm-dashboard-tab > div .tab-content .tab-pane .board-action-row .action-link {
  color: rgb(var(--nw-color-link));
}
.dashboard-wrapper .dvm-dashboard-tab > div .tab-content .tab-pane .board-action-row .action-link:hover {
  background-color: transparent;
}
.tw-dark nw-checkbox[checked]::part(control) {
  border-color: white;
  background-color: white;
  color: rgb(var(--nw-color-primary-400));
}
.tw-dark nw-checkbox[checked]::part(control)::after {
  border-color: white;
}
nw-card::part(base) {
  outline: none;
}

/*
 * Variables definitions.
 *
 * WARNING: Do not put any non-variable instruction here becuase it's
 * imported by themes and other less files which will do unnecessary or wrong
 * overwrites.
 */
/* start of Loading spinner */
.fi-spinner-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(var(--nw-color-neutral-200));
  z-index: 10;
}
.fi-spinner-container.fadeout {
  opacity: 0;
  transition: opacity 1s ease-in;
}
.fi-spinner-container .fi-spinner {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
}
div.fi-spinner-container > .ffg.ffg-spinner.loading,
.ffg.ffg-spinner.loading {
  color: rgb(var(--nw-color-primary));
}
div.fi-loader-bar > .bar {
  background-color: rgb(var(--nw-color-primary));
}
.flipped .fi-spinner-container {
  transform: rotateY(180deg);
}
.fi-loader-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
.fi-loader-bar > .bar {
  height: 4/14rem;
  transition: opacity 0.5s ease-in;
}
[fi-spin-button] {
  position: relative;
  min-width: 5rem;
}
[fi-spin-button] .ffg.ffg-spinner.loading {
  color: #fff;
  top: 0;
  bottom: 0;
  left: 4/14rem;
  margin: auto 0;
  position: absolute;
  height: 1rem;
  width: 1rem;
}

.color-orange {
  color: rgb(var(--nw-color-warning-500)) !important;
}
.color-green {
  color: rgb(var(--nw-color-success-500));
}
.color-grey {
  color: rgb(var(--nw-color-neutral-500));
}
.color-red {
  color: rgb(var(--nw-color-danger-500));
}
.color-yellow {
  color: #FFCC00;
}
.color-blue {
  color: rgb(var(--nw-color-info-500));
}
.color-black {
  color: #000;
}
.color-white {
  color: #fff;
}
.color-light-grey {
  color: #9E9E9E;
}
.color-info {
  color: rgb(var(--nw-color-info));
}
.color-unset {
  color: unset !important;
}
.bg-color-red {
  background-color: #FF0000 !important;
}
.bg-color-green {
  background-color: #83BB21 !important;
}
.fill-on-background {
  fill: rgb(var(--nw-color-neutral-1000));
}
.fill-on-primary {
  fill: rgb(var(--nw-color-neutral-0));
}
.color-success {
  color: rgb(var(--nw-color-success));
}
.color-error {
  color: rgb(var(--nw-color-danger));
}
.color-warning {
  color: rgb(var(--nw-color-warning));
}
.color-info {
  color: rgb(var(--nw-color-info));
}
.color-default {
  color: rgb(var(--nw-color-neutral-1000));
}
/***
 * Color options in the color picker
 * using in policy objects and cross all FMG modules
 ***/
.clr-opt-1 {
  color: rgb(var(--nw-color-neutral-1000));
}
.clr-opt-2 {
  color: #2196F3;
}
.clr-opt-3 {
  color: #4CAF50;
}
.clr-opt-4 {
  color: #E57373;
}
.clr-opt-5 {
  color: #EF9A9A;
}
.clr-opt-6 {
  color: #FF5722;
}
.clr-opt-7 {
  color: #F4511E;
}
.clr-opt-8 {
  color: #EF6C00;
}
.clr-opt-9 {
  color: #F57F17;
}
.clr-opt-10 {
  color: #FFCA28;
}
.clr-opt-11 {
  color: #FFB300;
}
.clr-opt-12 {
  color: #388E3C;
}
.clr-opt-13 {
  color: #7CB342;
}
.clr-opt-14 {
  color: #81C784;
}
.clr-opt-15 {
  color: #43A047;
}
.clr-opt-16 {
  color: #689F38;
}
.clr-opt-17 {
  color: #039BE5;
}
.clr-opt-18 {
  color: #03A9F4;
}
.clr-opt-19 {
  color: #2196F3;
}
.clr-opt-20 {
  color: #7986CB;
}
.clr-opt-21 {
  color: #B39DDB;
}
.clr-opt-22 {
  color: #CE93D8;
}
.clr-opt-23 {
  color: #F48FB1;
}
.clr-opt-24 {
  color: #F06292;
}
.clr-opt-25 {
  color: #FE615C;
}
.clr-opt-26 {
  color: #BDBDBD;
}
.clr-opt-27 {
  color: #949494;
}
.clr-opt-28 {
  color: #FFA726;
}
.clr-opt-29 {
  color: #9E9D24;
}
.clr-opt-30 {
  color: #9FA8DA;
}
.clr-opt-31 {
  color: #E1BEE7;
}
.clr-opt-32 {
  color: #A1887F;
}
.clr-icon-container {
  padding: 2px;
}
/***
 used by icon_color_picker.js
*/
.bg-clr-opt-1 {
  background-color: rgb(var(--nw-color-neutral-1000));
  color: rgb(var(--nw-color-neutral-0));
}
.bg-clr-opt-2 {
  background-color: #2196F3;
  color: #222;
}
.bg-clr-opt-3 {
  background-color: #4CAF50;
  color: #222;
}
.bg-clr-opt-4 {
  background-color: #E57373;
  color: #222;
}
.bg-clr-opt-5 {
  background-color: #EF9A9A;
  color: #222;
}
.bg-clr-opt-6 {
  background-color: #FF5722;
  color: #222;
}
.bg-clr-opt-7 {
  background-color: #F4511E;
  color: #222;
}
.bg-clr-opt-8 {
  background-color: #EF6C00;
  color: #222;
}
.bg-clr-opt-9 {
  background-color: #F57F17;
  color: #222;
}
.bg-clr-opt-10 {
  background-color: #FFCA28;
  color: #222;
}
.bg-clr-opt-11 {
  background-color: #FFB300;
  color: #222;
}
.bg-clr-opt-12 {
  background-color: #388E3C;
  color: #222;
}
.bg-clr-opt-13 {
  background-color: #7CB342;
  color: #222;
}
.bg-clr-opt-14 {
  background-color: #81C784;
  color: #222;
}
.bg-clr-opt-15 {
  background-color: #43A047;
  color: #222;
}
.bg-clr-opt-16 {
  background-color: #689F38;
  color: #222;
}
.bg-clr-opt-17 {
  background-color: #039BE5;
  color: #222;
}
.bg-clr-opt-18 {
  background-color: #03A9F4;
  color: #222;
}
.bg-clr-opt-19 {
  background-color: #2196F3;
  color: #222;
}
.bg-clr-opt-20 {
  background-color: #7986CB;
  color: #222;
}
.bg-clr-opt-21 {
  background-color: #B39DDB;
  color: #222;
}
.bg-clr-opt-22 {
  background-color: #CE93D8;
  color: #222;
}
.bg-clr-opt-23 {
  background-color: #F48FB1;
  color: #222;
}
.bg-clr-opt-24 {
  background-color: #F06292;
  color: #222;
}
.bg-clr-opt-25 {
  background-color: #FE615C;
  color: #222;
}
.bg-clr-opt-26 {
  background-color: #BDBDBD;
  color: #222;
}
.bg-clr-opt-27 {
  background-color: #949494;
  color: #222;
}
.bg-clr-opt-28 {
  background-color: #FFA726;
  color: #222;
}
.bg-clr-opt-29 {
  background-color: #9E9D24;
  color: #222;
}
.bg-clr-opt-30 {
  background-color: #9FA8DA;
  color: #222;
}
.bg-clr-opt-31 {
  background-color: #E1BEE7;
  color: #222;
}
.bg-clr-opt-32 {
  background-color: #A1887F;
  color: #222;
}
span.fi-popularity {
  color: #F0AD4E;
}
.fill-white {
  fill: #fff;
}
.fill-on-background {
  fill: rgb(var(--nw-color-neutral-1000));
}

.app_icon {
background: url("/app_logos96/small_sprite.png") no-repeat scroll transparent;
display: inline-block;
height: 96px;
overflow: hidden;
vertical-align: middle;
width: 96px;
}
.app10854 { background-position: -192px -0px; }
.app108855300 { background-position: -288px -0px; }
.app109051905 { background-position: -384px -0px; }
.app109051906 { background-position: -480px -0px; }
.app109051907 { background-position: -576px -0px; }
.app109051908 { background-position: -672px -0px; }
.app109051909 { background-position: -768px -0px; }
.app109051910 { background-position: -864px -0px; }
.app109051912 { background-position: -960px -0px; }
.app11203 { background-position: -1056px -0px; }
.app11421 { background-position: -1152px -0px; }
.app11768 { background-position: -1248px -0px; }
.app11836 { background-position: -1344px -0px; }
.app11933 { background-position: -1440px -0px; }
.app12162 { background-position: -1536px -0px; }
.app6 { background-position: -1536px -0px; }
.app12183 { background-position: -1632px -0px; }
.app12215 { background-position: -1728px -0px; }
.app7 { background-position: -1728px -0px; }
.app12290 { background-position: -1824px -0px; }
.app12360 { background-position: -1920px -0px; }
.app9 { background-position: -1920px -0px; }
.app12418 { background-position: -2016px -0px; }
.app4 { background-position: -2016px -0px; }
.app12447 { background-position: -2112px -0px; }
.app1 { background-position: -2112px -0px; }
.app12457 { background-position: -2208px -0px; }
.app12503 { background-position: -2304px -0px; }
.app12753 { background-position: -2400px -0px; }
.app10 { background-position: -2400px -0px; }
.app12897 { background-position: -2496px -0px; }
.app8 { background-position: -2496px -0px; }
.app13586 { background-position: -2592px -0px; }
.app13624 { background-position: -2688px -0px; }
.app14576 { background-position: -2784px -0px; }
.app14797 { background-position: -2880px -0px; }
.app14904 { background-position: -2976px -0px; }
.app14969 { background-position: -3072px -0px; }
.app152305667 { background-position: -3168px -0px; }
.app15510 { background-position: -3264px -0px; }
.app15511 { background-position: -3360px -0px; }
.app15565 { background-position: -3456px -0px; }
.app15701 { background-position: -3552px -0px; }
.app15722 { background-position: -3648px -0px; }
.app15815 { background-position: -3744px -0px; }
.app15816 { background-position: -0px -96px; }
.app15817 { background-position: -96px -96px; }
.app15819 { background-position: -192px -96px; }
.app15832 { background-position: -288px -96px; }
.app15837 { background-position: -384px -96px; }
.app15839 { background-position: -480px -96px; }
.app15843 { background-position: -576px -96px; }
.app15849 { background-position: -672px -96px; }
.app15851 { background-position: -768px -96px; }
.app15859 { background-position: -864px -96px; }
.app15861 { background-position: -960px -96px; }
.app15867 { background-position: -1056px -96px; }
.app15878 { background-position: -1152px -96px; }
.app15886 { background-position: -1248px -96px; }
.app15887 { background-position: -1344px -96px; }
.app15888 { background-position: -1440px -96px; }
.app15890 { background-position: -1536px -96px; }
.app15891 { background-position: -1632px -96px; }
.app15896 { background-position: -1728px -96px; }
.app15897 { background-position: -1824px -96px; }
.app15921 { background-position: -1920px -96px; }
.app15924 { background-position: -2016px -96px; }
.app15930 { background-position: -2112px -96px; }
.app15951 { background-position: -2208px -96px; }
.app15962 { background-position: -2304px -96px; }
.app15963 { background-position: -2400px -96px; }
.app15964 { background-position: -2496px -96px; }
.app15968 { background-position: -2592px -96px; }
.app15969 { background-position: -2688px -96px; }
.app15970 { background-position: -2784px -96px; }
.app15973 { background-position: -2880px -96px; }
.app15985 { background-position: -2976px -96px; }
.app15997 { background-position: -3072px -96px; }
.app15999 { background-position: -3168px -96px; }
.app16001 { background-position: -3264px -96px; }
.app16003 { background-position: -3360px -96px; }
.app16009 { background-position: -3456px -96px; }
.app16013 { background-position: -3552px -96px; }
.app16018 { background-position: -3648px -96px; }
.app16025 { background-position: -3744px -96px; }
.app16029 { background-position: -0px -192px; }
.app16031 { background-position: -96px -192px; }
.app16035 { background-position: -192px -192px; }
.app16040 { background-position: -288px -192px; }
.app16041 { background-position: -384px -192px; }
.app16042 { background-position: -480px -192px; }
.app16049 { background-position: -576px -192px; }
.app16051 { background-position: -672px -192px; }
.app16053 { background-position: -768px -192px; }
.app16055 { background-position: -864px -192px; }
.app16056 { background-position: -960px -192px; }
.app16060 { background-position: -1056px -192px; }
.app16062 { background-position: -1152px -192px; }
.app16067 { background-position: -1248px -192px; }
.app16071 { background-position: -1344px -192px; }
.app16072 { background-position: -1440px -192px; }
.app16078 { background-position: -1536px -192px; }
.app16080 { background-position: -1632px -192px; }
.app16086 { background-position: -1728px -192px; }
.app16089 { background-position: -1824px -192px; }
.app16091 { background-position: -1920px -192px; }
.app16092 { background-position: -2016px -192px; }
.app16094 { background-position: -2112px -192px; }
.app16095 { background-position: -2208px -192px; }
.app16096 { background-position: -2304px -192px; }
.app16097 { background-position: -2400px -192px; }
.app16100 { background-position: -2496px -192px; }
.app16105 { background-position: -2592px -192px; }
.app16107 { background-position: -2688px -192px; }
.app16129 { background-position: -2784px -192px; }
.app16131 { background-position: -2880px -192px; }
.app16133 { background-position: -2976px -192px; }
.app16134 { background-position: -3072px -192px; }
.app16135 { background-position: -3168px -192px; }
.app16136 { background-position: -3264px -192px; }
.app16137 { background-position: -3360px -192px; }
.app16150 { background-position: -3456px -192px; }
.app16151 { background-position: -3552px -192px; }
.app16152 { background-position: -3648px -192px; }
.app16153 { background-position: -3744px -192px; }
.app16162 { background-position: -0px -288px; }
.app16167 { background-position: -96px -288px; }
.app16169 { background-position: -192px -288px; }
.app16170 { background-position: -288px -288px; }
.app16171 { background-position: -384px -288px; }
.app16174 { background-position: -480px -288px; }
.app16175 { background-position: -576px -288px; }
.app16177 { background-position: -672px -288px; }
.app16178 { background-position: -768px -288px; }
.app16179 { background-position: -864px -288px; }
.app16180 { background-position: -960px -288px; }
.app16182 { background-position: -1056px -288px; }
.app16187 { background-position: -1152px -288px; }
.app16190 { background-position: -1248px -288px; }
.app16191 { background-position: -1344px -288px; }
.app16192 { background-position: -1440px -288px; }
.app16197 { background-position: -1536px -288px; }
.app16205 { background-position: -1632px -288px; }
.app16220 { background-position: -1728px -288px; }
.app16222 { background-position: -1824px -288px; }
.app16225 { background-position: -1920px -288px; }
.app16304 { background-position: -2016px -288px; }
.app16305 { background-position: -2112px -288px; }
.app16329 { background-position: -2208px -288px; }
.app16331 { background-position: -2304px -288px; }
.app16338 { background-position: -2400px -288px; }
.app16342 { background-position: -2496px -288px; }
.app16348 { background-position: -2592px -288px; }
.app16349 { background-position: -2688px -288px; }
.app16350 { background-position: -2784px -288px; }
.app16354 { background-position: -2880px -288px; }
.app16355 { background-position: -2976px -288px; }
.app16356 { background-position: -3072px -288px; }
.app16393 { background-position: -3168px -288px; }
.app16395 { background-position: -3264px -288px; }
.app16419 { background-position: -3360px -288px; }
.app16420 { background-position: -3456px -288px; }
.app16424 { background-position: -3552px -288px; }
.app16431 { background-position: -3648px -288px; }
.app16442 { background-position: -3744px -288px; }
.app16446 { background-position: -0px -384px; }
.app16450 { background-position: -96px -384px; }
.app16467 { background-position: -192px -384px; }
.app16469 { background-position: -288px -384px; }
.app16470 { background-position: -384px -384px; }
.app16474 { background-position: -480px -384px; }
.app16475 { background-position: -576px -384px; }
.app16477 { background-position: -672px -384px; }
.app16478 { background-position: -768px -384px; }
.app16481 { background-position: -864px -384px; }
.app16486 { background-position: -960px -384px; }
.app16487 { background-position: -1056px -384px; }
.app16488 { background-position: -1152px -384px; }
.app16490 { background-position: -1248px -384px; }
.app16491 { background-position: -1344px -384px; }
.app16492 { background-position: -1440px -384px; }
.app16497 { background-position: -1536px -384px; }
.app16499 { background-position: -1632px -384px; }
.app16503 { background-position: -1728px -384px; }
.app16507 { background-position: -1824px -384px; }
.app16513 { background-position: -1920px -384px; }
.app16517 { background-position: -2016px -384px; }
.app16518 { background-position: -2112px -384px; }
.app16519 { background-position: -2208px -384px; }
.app16523 { background-position: -2304px -384px; }
.app16528 { background-position: -2400px -384px; }
.app16530 { background-position: -2496px -384px; }
.app16531 { background-position: -2592px -384px; }
.app16533 { background-position: -2688px -384px; }
.app16535 { background-position: -2784px -384px; }
.app16537 { background-position: -2880px -384px; }
.app16538 { background-position: -2976px -384px; }
.app16539 { background-position: -3072px -384px; }
.app16541 { background-position: -3168px -384px; }
.app16546 { background-position: -3264px -384px; }
.app16549 { background-position: -3360px -384px; }
.app16554 { background-position: -3456px -384px; }
.app16557 { background-position: -3552px -384px; }
.app16579 { background-position: -3648px -384px; }
.app16588 { background-position: -3744px -384px; }
.app16590 { background-position: -0px -480px; }
.app16593 { background-position: -96px -480px; }
.app16595 { background-position: -192px -480px; }
.app16604 { background-position: -288px -480px; }
.app16607 { background-position: -384px -480px; }
.app16616 { background-position: -480px -480px; }
.app16618 { background-position: -576px -480px; }
.app16620 { background-position: -672px -480px; }
.app16623 { background-position: -768px -480px; }
.app16633 { background-position: -864px -480px; }
.app16637 { background-position: -960px -480px; }
.app16643 { background-position: -1056px -480px; }
.app16646 { background-position: -1152px -480px; }
.app16648 { background-position: -1248px -480px; }
.app16653 { background-position: -1344px -480px; }
.app16654 { background-position: -1440px -480px; }
.app16655 { background-position: -1536px -480px; }
.app16660 { background-position: -1632px -480px; }
.app16661 { background-position: -1728px -480px; }
.app16662 { background-position: -1824px -480px; }
.app16664 { background-position: -1920px -480px; }
.app16665 { background-position: -2016px -480px; }
.app16666 { background-position: -2112px -480px; }
.app16669 { background-position: -2208px -480px; }
.app16676 { background-position: -2304px -480px; }
.app16679 { background-position: -2400px -480px; }
.app16683 { background-position: -2496px -480px; }
.app16684 { background-position: -2592px -480px; }
.app16686 { background-position: -2688px -480px; }
.app16687 { background-position: -2784px -480px; }
.app16688 { background-position: -2880px -480px; }
.app16690 { background-position: -2976px -480px; }
.app16691 { background-position: -3072px -480px; }
.app16692 { background-position: -3168px -480px; }
.app16695 { background-position: -3264px -480px; }
.app16698 { background-position: -3360px -480px; }
.app16700 { background-position: -3456px -480px; }
.app16704 { background-position: -3552px -480px; }
.app16706 { background-position: -3648px -480px; }
.app16707 { background-position: -3744px -480px; }
.app16709 { background-position: -0px -576px; }
.app16711 { background-position: -96px -576px; }
.app16723 { background-position: -192px -576px; }
.app16727 { background-position: -288px -576px; }
.app16761 { background-position: -384px -576px; }
.app16763 { background-position: -480px -576px; }
.app16766 { background-position: -576px -576px; }
.app16767 { background-position: -672px -576px; }
.app16771 { background-position: -768px -576px; }
.app16774 { background-position: -864px -576px; }
.app16777 { background-position: -960px -576px; }
.app16778 { background-position: -1056px -576px; }
.app16783 { background-position: -1152px -576px; }
.app16784 { background-position: -1248px -576px; }
.app16786 { background-position: -1344px -576px; }
.app16787 { background-position: -1440px -576px; }
.app16789 { background-position: -1536px -576px; }
.app16791 { background-position: -1632px -576px; }
.app16792 { background-position: -1728px -576px; }
.app16793 { background-position: -1824px -576px; }
.app16799 { background-position: -1920px -576px; }
.app16802 { background-position: -2016px -576px; }
.app16803 { background-position: -2112px -576px; }
.app16804 { background-position: -2208px -576px; }
.app16807 { background-position: -2304px -576px; }
.app16814 { background-position: -2400px -576px; }
.app16831 { background-position: -2496px -576px; }
.app16832 { background-position: -2592px -576px; }
.app16837 { background-position: -2688px -576px; }
.app16862 { background-position: -2784px -576px; }
.app16907 { background-position: -2880px -576px; }
.app16908 { background-position: -2976px -576px; }
.app16909 { background-position: -3072px -576px; }
.app16911 { background-position: -3168px -576px; }
.app16920 { background-position: -3264px -576px; }
.app16936 { background-position: -3360px -576px; }
.app16940 { background-position: -3456px -576px; }
.app16941 { background-position: -3552px -576px; }
.app16942 { background-position: -3648px -576px; }
.app16946 { background-position: -3744px -576px; }
.app16955 { background-position: -0px -672px; }
.app16958 { background-position: -96px -672px; }
.app16966 { background-position: -192px -672px; }
.app16967 { background-position: -288px -672px; }
.app16968 { background-position: -384px -672px; }
.app16973 { background-position: -480px -672px; }
.app16983 { background-position: -576px -672px; }
.app16985 { background-position: -672px -672px; }
.app16986 { background-position: -768px -672px; }
.app16999 { background-position: -864px -672px; }
.app17004 { background-position: -960px -672px; }
.app17006 { background-position: -1056px -672px; }
.app17007 { background-position: -1152px -672px; }
.app17008 { background-position: -1248px -672px; }
.app17009 { background-position: -1344px -672px; }
.app17010 { background-position: -1440px -672px; }
.app17019 { background-position: -1536px -672px; }
.app17020 { background-position: -1632px -672px; }
.app17038 { background-position: -1728px -672px; }
.app17039 { background-position: -1824px -672px; }
.app17040 { background-position: -1920px -672px; }
.app17041 { background-position: -2016px -672px; }
.app17042 { background-position: -2112px -672px; }
.app17045 { background-position: -2208px -672px; }
.app17072 { background-position: -2304px -672px; }
.app17078 { background-position: -2400px -672px; }
.app17141 { background-position: -2496px -672px; }
.app17143 { background-position: -2592px -672px; }
.app17144 { background-position: -2688px -672px; }
.app17147 { background-position: -2784px -672px; }
.app17149 { background-position: -2880px -672px; }
.app17154 { background-position: -2976px -672px; }
.app17162 { background-position: -3072px -672px; }
.app17168 { background-position: -3168px -672px; }
.app17172 { background-position: -3264px -672px; }
.app17174 { background-position: -3360px -672px; }
.app17179 { background-position: -3456px -672px; }
.app17182 { background-position: -3552px -672px; }
.app17191 { background-position: -3648px -672px; }
.app17193 { background-position: -3744px -672px; }
.app17194 { background-position: -0px -768px; }
.app17196 { background-position: -96px -768px; }
.app17197 { background-position: -192px -768px; }
.app17204 { background-position: -288px -768px; }
.app17209 { background-position: -384px -768px; }
.app17210 { background-position: -480px -768px; }
.app17236 { background-position: -576px -768px; }
.app17244 { background-position: -672px -768px; }
.app17324 { background-position: -768px -768px; }
.app17333 { background-position: -864px -768px; }
.app17354 { background-position: -960px -768px; }
.app17396 { background-position: -1056px -768px; }
.app17399 { background-position: -1152px -768px; }
.app17405 { background-position: -1248px -768px; }
.app17409 { background-position: -1344px -768px; }
.app17419 { background-position: -1440px -768px; }
.app17458 { background-position: -1536px -768px; }
.app17459 { background-position: -1632px -768px; }
.app17466 { background-position: -1728px -768px; }
.app17476 { background-position: -1824px -768px; }
.app17482 { background-position: -1920px -768px; }
.app17498 { background-position: -2016px -768px; }
.app17521 { background-position: -2112px -768px; }
.app17534 { background-position: -2208px -768px; }
.app17535 { background-position: -2304px -768px; }
.app17538 { background-position: -2400px -768px; }
.app17550 { background-position: -2496px -768px; }
.app17567 { background-position: -2592px -768px; }
.app17573 { background-position: -2688px -768px; }
.app17588 { background-position: -2784px -768px; }
.app17599 { background-position: -2880px -768px; }
.app17603 { background-position: -2976px -768px; }
.app17678 { background-position: -3072px -768px; }
.app17693 { background-position: -3168px -768px; }
.app17727 { background-position: -3264px -768px; }
.app17731 { background-position: -3360px -768px; }
.app17735 { background-position: -3456px -768px; }
.app17840 { background-position: -3552px -768px; }
.app17850 { background-position: -3648px -768px; }
.app17869 { background-position: -3744px -768px; }
.app17896 { background-position: -0px -864px; }
.app17901 { background-position: -96px -864px; }
.app17917 { background-position: -192px -864px; }
.app17945 { background-position: -288px -864px; }
.app18007 { background-position: -384px -864px; }
.app18033 { background-position: -480px -864px; }
.app18090 { background-position: -576px -864px; }
.app18095 { background-position: -672px -864px; }
.app18096 { background-position: -768px -864px; }
.app18119 { background-position: -864px -864px; }
.app18139 { background-position: -960px -864px; }
.app18148 { background-position: -1056px -864px; }
.app18155 { background-position: -1152px -864px; }
.app18167 { background-position: -1248px -864px; }
.app18175 { background-position: -1344px -864px; }
.app18215 { background-position: -1440px -864px; }
.app18216 { background-position: -1536px -864px; }
.app18218 { background-position: -1632px -864px; }
.app18288 { background-position: -1728px -864px; }
.app19796 { background-position: -1824px -864px; }
.app20922 { background-position: -1920px -864px; }
.app20923 { background-position: -2016px -864px; }
.app20942 { background-position: -2112px -864px; }
.app21114 { background-position: -2208px -864px; }
.app21668 { background-position: -2304px -864px; }
.app22922 { background-position: -2400px -864px; }
.app22933 { background-position: -2496px -864px; }
.app23094 { background-position: -2592px -864px; }
.app23217 { background-position: -2688px -864px; }
.app23257 { background-position: -2784px -864px; }
.app23260 { background-position: -2880px -864px; }
.app23345 { background-position: -2976px -864px; }
.app23382 { background-position: -3072px -864px; }
.app23397 { background-position: -3168px -864px; }
.app23398 { background-position: -3264px -864px; }
.app23399 { background-position: -3360px -864px; }
.app23432 { background-position: -3456px -864px; }
.app23662 { background-position: -3552px -864px; }
.app23689 { background-position: -3648px -864px; }
.app23698 { background-position: -3744px -864px; }
.app23756 { background-position: -0px -960px; }
.app23758 { background-position: -96px -960px; }
.app2 { background-position: -96px -960px; }
.app23813 { background-position: -192px -960px; }
.app23829 { background-position: -288px -960px; }
.app23919 { background-position: -384px -960px; }
.app23971 { background-position: -480px -960px; }
.app23973 { background-position: -576px -960px; }
.app24006 { background-position: -672px -960px; }
.app24009 { background-position: -768px -960px; }
.app24218 { background-position: -864px -960px; }
.app24256 { background-position: -960px -960px; }
.app24265 { background-position: -1056px -960px; }
.app24284 { background-position: -1152px -960px; }
.app24305 { background-position: -1248px -960px; }
.app24318 { background-position: -1344px -960px; }
.app24424 { background-position: -1440px -960px; }
.app24426 { background-position: -1536px -960px; }
.app24429 { background-position: -1632px -960px; }
.app24468 { background-position: -1728px -960px; }
.app24471 { background-position: -1824px -960px; }
.app24473 { background-position: -1920px -960px; }
.app24484 { background-position: -2016px -960px; }
.app24530 { background-position: -2112px -960px; }
.app24531 { background-position: -2208px -960px; }
.app24532 { background-position: -2304px -960px; }
.app24533 { background-position: -2400px -960px; }
.app24534 { background-position: -2496px -960px; }
.app24559 { background-position: -2592px -960px; }
.app24561 { background-position: -2688px -960px; }
.app24623 { background-position: -2784px -960px; }
.app24626 { background-position: -2880px -960px; }
.app24630 { background-position: -2976px -960px; }
.app24646 { background-position: -3072px -960px; }
.app24703 { background-position: -3168px -960px; }
.app24727 { background-position: -3264px -960px; }
.app24730 { background-position: -3360px -960px; }
.app24731 { background-position: -3456px -960px; }
.app24734 { background-position: -3552px -960px; }
.app24735 { background-position: -3648px -960px; }
.app24739 { background-position: -3744px -960px; }
.app24744 { background-position: -0px -1056px; }
.app24747 { background-position: -96px -1056px; }
.app24750 { background-position: -192px -1056px; }
.app24755 { background-position: -288px -1056px; }
.app24767 { background-position: -384px -1056px; }
.app24800 { background-position: -480px -1056px; }
.app24810 { background-position: -576px -1056px; }
.app24817 { background-position: -672px -1056px; }
.app24818 { background-position: -768px -1056px; }
.app24882 { background-position: -864px -1056px; }
.app24887 { background-position: -960px -1056px; }
.app24888 { background-position: -1056px -1056px; }
.app24889 { background-position: -1152px -1056px; }
.app24912 { background-position: -1248px -1056px; }
.app24923 { background-position: -1344px -1056px; }
.app24924 { background-position: -1440px -1056px; }
.app24937 { background-position: -1536px -1056px; }
.app24939 { background-position: -1632px -1056px; }
.app24968 { background-position: -1728px -1056px; }
.app24969 { background-position: -1824px -1056px; }
.app24970 { background-position: -1920px -1056px; }
.app25039 { background-position: -2016px -1056px; }
.app25056 { background-position: -2112px -1056px; }
.app25069 { background-position: -2208px -1056px; }
.app25076 { background-position: -2304px -1056px; }
.app25077 { background-position: -2400px -1056px; }
.app25078 { background-position: -2496px -1056px; }
.app25089 { background-position: -2592px -1056px; }
.app25143 { background-position: -2688px -1056px; }
.app25147 { background-position: -2784px -1056px; }
.app25174 { background-position: -2880px -1056px; }
.app25192 { background-position: -2976px -1056px; }
.app25195 { background-position: -3072px -1056px; }
.app25196 { background-position: -3168px -1056px; }
.app25198 { background-position: -3264px -1056px; }
.app25238 { background-position: -3360px -1056px; }
.app25241 { background-position: -3456px -1056px; }
.app25242 { background-position: -3552px -1056px; }
.app25282 { background-position: -3648px -1056px; }
.app25360 { background-position: -3744px -1056px; }
.app25363 { background-position: -0px -1152px; }
.app25378 { background-position: -96px -1152px; }
.app25447 { background-position: -192px -1152px; }
.app25452 { background-position: -288px -1152px; }
.app25453 { background-position: -384px -1152px; }
.app25455 { background-position: -480px -1152px; }
.app25456 { background-position: -576px -1152px; }
.app25457 { background-position: -672px -1152px; }
.app25459 { background-position: -768px -1152px; }
.app25465 { background-position: -864px -1152px; }
.app25471 { background-position: -960px -1152px; }
.app25561 { background-position: -1056px -1152px; }
.app25562 { background-position: -1152px -1152px; }
.app25564 { background-position: -1248px -1152px; }
.app25565 { background-position: -1344px -1152px; }
.app25566 { background-position: -1440px -1152px; }
.app25622 { background-position: -1536px -1152px; }
.app25627 { background-position: -1632px -1152px; }
.app25636 { background-position: -1728px -1152px; }
.app25644 { background-position: -1824px -1152px; }
.app25649 { background-position: -1920px -1152px; }
.app25654 { background-position: -2016px -1152px; }
.app25670 { background-position: -2112px -1152px; }
.app25704 { background-position: -2208px -1152px; }
.app25798 { background-position: -2304px -1152px; }
.app25887 { background-position: -2400px -1152px; }
.app25903 { background-position: -2496px -1152px; }
.app25906 { background-position: -2592px -1152px; }
.app25936 { background-position: -2688px -1152px; }
.app25939 { background-position: -2784px -1152px; }
.app25950 { background-position: -2880px -1152px; }
.app25952 { background-position: -2976px -1152px; }
.app25953 { background-position: -3072px -1152px; }
.app25958 { background-position: -3168px -1152px; }
.app25959 { background-position: -3264px -1152px; }
.app25960 { background-position: -3360px -1152px; }
.app26013 { background-position: -3456px -1152px; }
.app26035 { background-position: -3552px -1152px; }
.app26038 { background-position: -3648px -1152px; }
.app26054 { background-position: -3744px -1152px; }
.app26061 { background-position: -0px -1248px; }
.app26178 { background-position: -96px -1248px; }
.app26185 { background-position: -192px -1248px; }
.app26193 { background-position: -288px -1248px; }
.app26282 { background-position: -384px -1248px; }
.app26283 { background-position: -480px -1248px; }
.app26286 { background-position: -576px -1248px; }
.app26346 { background-position: -672px -1248px; }
.app26352 { background-position: -768px -1248px; }
.app26363 { background-position: -864px -1248px; }
.app26376 { background-position: -960px -1248px; }
.app26377 { background-position: -1056px -1248px; }
.app26380 { background-position: -1152px -1248px; }
.app26399 { background-position: -1248px -1248px; }
.app26525 { background-position: -1344px -1248px; }
.app26583 { background-position: -1440px -1248px; }
.app26617 { background-position: -1536px -1248px; }
.app26628 { background-position: -1632px -1248px; }
.app26630 { background-position: -1728px -1248px; }
.app26631 { background-position: -1824px -1248px; }
.app26633 { background-position: -1920px -1248px; }
.app26683 { background-position: -2016px -1248px; }
.app26728 { background-position: -2112px -1248px; }
.app26793 { background-position: -2208px -1248px; }
.app26806 { background-position: -2304px -1248px; }
.app26873 { background-position: -2400px -1248px; }
.app26875 { background-position: -2496px -1248px; }
.app26886 { background-position: -2592px -1248px; }
.app26914 { background-position: -2688px -1248px; }
.app26951 { background-position: -2784px -1248px; }
.app26966 { background-position: -2880px -1248px; }
.app27009 { background-position: -2976px -1248px; }
.app27025 { background-position: -3072px -1248px; }
.app27048 { background-position: -3168px -1248px; }
.app27081 { background-position: -3264px -1248px; }
.app27082 { background-position: -3360px -1248px; }
.app27103 { background-position: -3456px -1248px; }
.app27104 { background-position: -3552px -1248px; }
.app27147 { background-position: -3648px -1248px; }
.app27209 { background-position: -3744px -1248px; }
.app27210 { background-position: -0px -1344px; }
.app27238 { background-position: -96px -1344px; }
.app27302 { background-position: -192px -1344px; }
.app27304 { background-position: -288px -1344px; }
.app27314 { background-position: -384px -1344px; }
.app27410 { background-position: -480px -1344px; }
.app27414 { background-position: -576px -1344px; }
.app27459 { background-position: -672px -1344px; }
.app27505 { background-position: -768px -1344px; }
.app27506 { background-position: -864px -1344px; }
.app27507 { background-position: -960px -1344px; }
.app27509 { background-position: -1056px -1344px; }
.app27510 { background-position: -1152px -1344px; }
.app27528 { background-position: -1248px -1344px; }
.app27538 { background-position: -1344px -1344px; }
.app27604 { background-position: -1440px -1344px; }
.app27609 { background-position: -1536px -1344px; }
.app27700 { background-position: -1632px -1344px; }
.app27728 { background-position: -1728px -1344px; }
.app27750 { background-position: -1824px -1344px; }
.app27754 { background-position: -1920px -1344px; }
.app27775 { background-position: -2016px -1344px; }
.app27776 { background-position: -2112px -1344px; }
.app27821 { background-position: -2208px -1344px; }
.app27839 { background-position: -2304px -1344px; }
.app27922 { background-position: -2400px -1344px; }
.app27937 { background-position: -2496px -1344px; }
.app27946 { background-position: -2592px -1344px; }
.app27947 { background-position: -2688px -1344px; }
.app27948 { background-position: -2784px -1344px; }
.app28046 { background-position: -2880px -1344px; }
.app28057 { background-position: -2976px -1344px; }
.app28076 { background-position: -3072px -1344px; }
.app28106 { background-position: -3168px -1344px; }
.app28125 { background-position: -3264px -1344px; }
.app28247 { background-position: -3360px -1344px; }
.app28283 { background-position: -3456px -1344px; }
.app28391 { background-position: -3552px -1344px; }
.app28428 { background-position: -3648px -1344px; }
.app28469 { background-position: -3744px -1344px; }
.app28493 { background-position: -0px -1440px; }
.app28511 { background-position: -96px -1440px; }
.app28554 { background-position: -192px -1440px; }
.app28570 { background-position: -288px -1440px; }
.app28571 { background-position: -384px -1440px; }
.app28572 { background-position: -480px -1440px; }
.app28587 { background-position: -576px -1440px; }
.app28588 { background-position: -672px -1440px; }
.app28597 { background-position: -768px -1440px; }
.app28605 { background-position: -864px -1440px; }
.app28844 { background-position: -960px -1440px; }
.app28845 { background-position: -1056px -1440px; }
.app28875 { background-position: -1152px -1440px; }
.app28877 { background-position: -1248px -1440px; }
.app28885 { background-position: -1344px -1440px; }
.app28887 { background-position: -1440px -1440px; }
.app28889 { background-position: -1536px -1440px; }
.app29025 { background-position: -1632px -1440px; }
.app29081 { background-position: -1728px -1440px; }
.app29100 { background-position: -1824px -1440px; }
.app29143 { background-position: -1920px -1440px; }
.app29210 { background-position: -2016px -1440px; }
.app29248 { background-position: -2112px -1440px; }
.app29283 { background-position: -2208px -1440px; }
.app29309 { background-position: -2304px -1440px; }
.app29350 { background-position: -2400px -1440px; }
.app29355 { background-position: -2496px -1440px; }
.app29410 { background-position: -2592px -1440px; }
.app29600 { background-position: -2688px -1440px; }
.app29610 { background-position: -2784px -1440px; }
.app29810 { background-position: -2880px -1440px; }
.app29858 { background-position: -2976px -1440px; }
.app29867 { background-position: -3072px -1440px; }
.app29880 { background-position: -3168px -1440px; }
.app30028 { background-position: -3264px -1440px; }
.app30032 { background-position: -3360px -1440px; }
.app30036 { background-position: -3456px -1440px; }
.app30059 { background-position: -3552px -1440px; }
.app30061 { background-position: -3648px -1440px; }
.app30073 { background-position: -3744px -1440px; }
.app30075 { background-position: -0px -1536px; }
.app30079 { background-position: -96px -1536px; }
.app30090 { background-position: -192px -1536px; }
.app30093 { background-position: -288px -1536px; }
.app30097 { background-position: -384px -1536px; }
.app30098 { background-position: -480px -1536px; }
.app30127 { background-position: -576px -1536px; }
.app30138 { background-position: -672px -1536px; }
.app30139 { background-position: -768px -1536px; }
.app30141 { background-position: -864px -1536px; }
.app30147 { background-position: -960px -1536px; }
.app30156 { background-position: -1056px -1536px; }
.app30158 { background-position: -1152px -1536px; }
.app30159 { background-position: -1248px -1536px; }
.app30161 { background-position: -1344px -1536px; }
.app30164 { background-position: -1440px -1536px; }
.app30165 { background-position: -1536px -1536px; }
.app30169 { background-position: -1632px -1536px; }
.app30175 { background-position: -1728px -1536px; }
.app30176 { background-position: -1824px -1536px; }
.app30184 { background-position: -1920px -1536px; }
.app30185 { background-position: -2016px -1536px; }
.app30188 { background-position: -2112px -1536px; }
.app30191 { background-position: -2208px -1536px; }
.app30192 { background-position: -2304px -1536px; }
.app30197 { background-position: -2400px -1536px; }
.app30201 { background-position: -2496px -1536px; }
.app30203 { background-position: -2592px -1536px; }
.app30207 { background-position: -2688px -1536px; }
.app30209 { background-position: -2784px -1536px; }
.app30210 { background-position: -2880px -1536px; }
.app30212 { background-position: -2976px -1536px; }
.app30213 { background-position: -3072px -1536px; }
.app30220 { background-position: -3168px -1536px; }
.app30222 { background-position: -3264px -1536px; }
.app30233 { background-position: -3360px -1536px; }
.app30238 { background-position: -3456px -1536px; }
.app30254 { background-position: -3552px -1536px; }
.app30256 { background-position: -3648px -1536px; }
.app30269 { background-position: -3744px -1536px; }
.app30273 { background-position: -0px -1632px; }
.app30274 { background-position: -96px -1632px; }
.app30295 { background-position: -192px -1632px; }
.app30340 { background-position: -288px -1632px; }
.app30341 { background-position: -384px -1632px; }
.app30415 { background-position: -480px -1632px; }
.app30436 { background-position: -576px -1632px; }
.app30447 { background-position: -672px -1632px; }
.app30452 { background-position: -768px -1632px; }
.app30531 { background-position: -864px -1632px; }
.app30536 { background-position: -960px -1632px; }
.app30588 { background-position: -1056px -1632px; }
.app30620 { background-position: -1152px -1632px; }
.app30707 { background-position: -1248px -1632px; }
.app30708 { background-position: -1344px -1632px; }
.app30709 { background-position: -1440px -1632px; }
.app30712 { background-position: -1536px -1632px; }
.app30719 { background-position: -1632px -1632px; }
.app30728 { background-position: -1728px -1632px; }
.app30734 { background-position: -1824px -1632px; }
.app30795 { background-position: -1920px -1632px; }
.app30796 { background-position: -2016px -1632px; }
.app30953 { background-position: -2112px -1632px; }
.app30955 { background-position: -2208px -1632px; }
.app30958 { background-position: -2304px -1632px; }
.app30966 { background-position: -2400px -1632px; }
.app31013 { background-position: -2496px -1632px; }
.app31019 { background-position: -2592px -1632px; }
.app31021 { background-position: -2688px -1632px; }
.app31030 { background-position: -2784px -1632px; }
.app31037 { background-position: -2880px -1632px; }
.app31076 { background-position: -2976px -1632px; }
.app31077 { background-position: -3072px -1632px; }
.app31078 { background-position: -3168px -1632px; }
.app31079 { background-position: -3264px -1632px; }
.app31104 { background-position: -3360px -1632px; }
.app31158 { background-position: -3456px -1632px; }
.app31160 { background-position: -3552px -1632px; }
.app31161 { background-position: -3648px -1632px; }
.app31167 { background-position: -3744px -1632px; }
.app31175 { background-position: -0px -1728px; }
.app31182 { background-position: -96px -1728px; }
.app31197 { background-position: -192px -1728px; }
.app31200 { background-position: -288px -1728px; }
.app31201 { background-position: -384px -1728px; }
.app31205 { background-position: -480px -1728px; }
.app31232 { background-position: -576px -1728px; }
.app31251 { background-position: -672px -1728px; }
.app31252 { background-position: -768px -1728px; }
.app31279 { background-position: -864px -1728px; }
.app31281 { background-position: -960px -1728px; }
.app31287 { background-position: -1056px -1728px; }
.app31290 { background-position: -1152px -1728px; }
.app31291 { background-position: -1248px -1728px; }
.app31295 { background-position: -1344px -1728px; }
.app31349 { background-position: -1440px -1728px; }
.app31364 { background-position: -1536px -1728px; }
.app31372 { background-position: -1632px -1728px; }
.app31374 { background-position: -1728px -1728px; }
.app31379 { background-position: -1824px -1728px; }
.app31380 { background-position: -1920px -1728px; }
.app31458 { background-position: -2016px -1728px; }
.app31486 { background-position: -2112px -1728px; }
.app31529 { background-position: -2208px -1728px; }
.app31531 { background-position: -2304px -1728px; }
.app31554 { background-position: -2400px -1728px; }
.app31563 { background-position: -2496px -1728px; }
.app31594 { background-position: -2592px -1728px; }
.app31605 { background-position: -2688px -1728px; }
.app31608 { background-position: -2784px -1728px; }
.app31614 { background-position: -2880px -1728px; }
.app31615 { background-position: -2976px -1728px; }
.app31617 { background-position: -3072px -1728px; }
.app31635 { background-position: -3168px -1728px; }
.app31645 { background-position: -3264px -1728px; }
.app31667 { background-position: -3360px -1728px; }
.app31753 { background-position: -3456px -1728px; }
.app31832 { background-position: -3552px -1728px; }
.app31845 { background-position: -3648px -1728px; }
.app31846 { background-position: -3744px -1728px; }
.app31847 { background-position: -0px -1824px; }
.app31848 { background-position: -96px -1824px; }
.app31858 { background-position: -192px -1824px; }
.app31870 { background-position: -288px -1824px; }
.app31908 { background-position: -384px -1824px; }
.app31910 { background-position: -480px -1824px; }
.app31929 { background-position: -576px -1824px; }
.app31933 { background-position: -672px -1824px; }
.app31935 { background-position: -768px -1824px; }
.app31936 { background-position: -864px -1824px; }
.app31944 { background-position: -960px -1824px; }
.app31988 { background-position: -1056px -1824px; }
.app31989 { background-position: -1152px -1824px; }
.app31990 { background-position: -1248px -1824px; }
.app32003 { background-position: -1344px -1824px; }
.app32014 { background-position: -1440px -1824px; }
.app32121 { background-position: -1536px -1824px; }
.app32122 { background-position: -1632px -1824px; }
.app32123 { background-position: -1728px -1824px; }
.app32149 { background-position: -1824px -1824px; }
.app32165 { background-position: -1920px -1824px; }
.app32166 { background-position: -2016px -1824px; }
.app32171 { background-position: -2112px -1824px; }
.app32242 { background-position: -2208px -1824px; }
.app32246 { background-position: -2304px -1824px; }
.app32257 { background-position: -2400px -1824px; }
.app32259 { background-position: -2496px -1824px; }
.app32261 { background-position: -2592px -1824px; }
.app32262 { background-position: -2688px -1824px; }
.app32280 { background-position: -2784px -1824px; }
.app32282 { background-position: -2880px -1824px; }
.app32295 { background-position: -2976px -1824px; }
.app32317 { background-position: -3072px -1824px; }
.app32342 { background-position: -3168px -1824px; }
.app32343 { background-position: -3264px -1824px; }
.app32357 { background-position: -3360px -1824px; }
.app32417 { background-position: -3456px -1824px; }
.app32442 { background-position: -3552px -1824px; }
.app32559 { background-position: -3648px -1824px; }
.app32640 { background-position: -3744px -1824px; }
.app32641 { background-position: -0px -1920px; }
.app32642 { background-position: -96px -1920px; }
.app32752 { background-position: -192px -1920px; }
.app32793 { background-position: -288px -1920px; }
.app32816 { background-position: -384px -1920px; }
.app32817 { background-position: -480px -1920px; }
.app32818 { background-position: -576px -1920px; }
.app32842 { background-position: -672px -1920px; }
.app32843 { background-position: -768px -1920px; }
.app32844 { background-position: -864px -1920px; }
.app32948 { background-position: -960px -1920px; }
.app33000 { background-position: -1056px -1920px; }
.app33002 { background-position: -1152px -1920px; }
.app33048 { background-position: -1248px -1920px; }
.app33053 { background-position: -1344px -1920px; }
.app33104 { background-position: -1440px -1920px; }
.app33113 { background-position: -1536px -1920px; }
.app33114 { background-position: -1632px -1920px; }
.app33115 { background-position: -1728px -1920px; }
.app33116 { background-position: -1824px -1920px; }
.app33117 { background-position: -1920px -1920px; }
.app33118 { background-position: -2016px -1920px; }
.app33119 { background-position: -2112px -1920px; }
.app33120 { background-position: -2208px -1920px; }
.app33121 { background-position: -2304px -1920px; }
.app33122 { background-position: -2400px -1920px; }
.app33123 { background-position: -2496px -1920px; }
.app33124 { background-position: -2592px -1920px; }
.app33125 { background-position: -2688px -1920px; }
.app33129 { background-position: -2784px -1920px; }
.app33136 { background-position: -2880px -1920px; }
.app33178 { background-position: -2976px -1920px; }
.app33182 { background-position: -3072px -1920px; }
.app33238 { background-position: -3168px -1920px; }
.app33284 { background-position: -3264px -1920px; }
.app33312 { background-position: -3360px -1920px; }
.app33313 { background-position: -3456px -1920px; }
.app33321 { background-position: -3552px -1920px; }
.app33487 { background-position: -3648px -1920px; }
.app33494 { background-position: -3744px -1920px; }
.app33561 { background-position: -0px -2016px; }
.app33571 { background-position: -96px -2016px; }
.app33661 { background-position: -192px -2016px; }
.app33684 { background-position: -288px -2016px; }
.app33728 { background-position: -384px -2016px; }
.app33759 { background-position: -480px -2016px; }
.app33760 { background-position: -576px -2016px; }
.app33764 { background-position: -672px -2016px; }
.app33866 { background-position: -768px -2016px; }
.app33881 { background-position: -864px -2016px; }
.app33907 { background-position: -960px -2016px; }
.app33940 { background-position: -1056px -2016px; }
.app33988 { background-position: -1152px -2016px; }
.app34004 { background-position: -1248px -2016px; }
.app34038 { background-position: -1344px -2016px; }
.app34039 { background-position: -1440px -2016px; }
.app34040 { background-position: -1536px -2016px; }
.app34041 { background-position: -1632px -2016px; }
.app34050 { background-position: -1728px -2016px; }
.app34051 { background-position: -1824px -2016px; }
.app34060 { background-position: -1920px -2016px; }
.app34111 { background-position: -2016px -2016px; }
.app34114 { background-position: -2112px -2016px; }
.app34164 { background-position: -2208px -2016px; }
.app34165 { background-position: -2304px -2016px; }
.app34201 { background-position: -2400px -2016px; }
.app34205 { background-position: -2496px -2016px; }
.app34256 { background-position: -2592px -2016px; }
.app34301 { background-position: -2688px -2016px; }
.app34305 { background-position: -2784px -2016px; }
.app34339 { background-position: -2880px -2016px; }
.app34391 { background-position: -2976px -2016px; }
.app34397 { background-position: -3072px -2016px; }
.app34421 { background-position: -3168px -2016px; }
.app34425 { background-position: -3264px -2016px; }
.app34426 { background-position: -3360px -2016px; }
.app34435 { background-position: -3456px -2016px; }
.app34455 { background-position: -3552px -2016px; }
.app34491 { background-position: -3648px -2016px; }
.app34499 { background-position: -3744px -2016px; }
.app34527 { background-position: -0px -2112px; }
.app34554 { background-position: -96px -2112px; }
.app34560 { background-position: -192px -2112px; }
.app34613 { background-position: -288px -2112px; }
.app34638 { background-position: -384px -2112px; }
.app34646 { background-position: -480px -2112px; }
.app34647 { background-position: -576px -2112px; }
.app34736 { background-position: -672px -2112px; }
.app34742 { background-position: -768px -2112px; }
.app34757 { background-position: -864px -2112px; }
.app34791 { background-position: -960px -2112px; }
.app34815 { background-position: -1056px -2112px; }
.app34816 { background-position: -1152px -2112px; }
.app34859 { background-position: -1248px -2112px; }
.app34860 { background-position: -1344px -2112px; }
.app34881 { background-position: -1440px -2112px; }
.app34927 { background-position: -1536px -2112px; }
.app34938 { background-position: -1632px -2112px; }
.app34950 { background-position: -1728px -2112px; }
.app34951 { background-position: -1824px -2112px; }
.app34964 { background-position: -1920px -2112px; }
.app34993 { background-position: -2016px -2112px; }
.app34998 { background-position: -2112px -2112px; }
.app35003 { background-position: -2208px -2112px; }
.app35013 { background-position: -2304px -2112px; }
.app35014 { background-position: -2400px -2112px; }
.app35031 { background-position: -2496px -2112px; }
.app35047 { background-position: -2592px -2112px; }
.app35141 { background-position: -2688px -2112px; }
.app35151 { background-position: -2784px -2112px; }
.app35163 { background-position: -2880px -2112px; }
.app35169 { background-position: -2976px -2112px; }
.app35170 { background-position: -3072px -2112px; }
.app35172 { background-position: -3168px -2112px; }
.app35175 { background-position: -3264px -2112px; }
.app35191 { background-position: -3360px -2112px; }
.app35196 { background-position: -3456px -2112px; }
.app35197 { background-position: -3552px -2112px; }
.app35202 { background-position: -3648px -2112px; }
.app35229 { background-position: -3744px -2112px; }
.app35244 { background-position: -0px -2208px; }
.app35246 { background-position: -96px -2208px; }
.app35263 { background-position: -192px -2208px; }
.app35269 { background-position: -288px -2208px; }
.app35284 { background-position: -384px -2208px; }
.app35285 { background-position: -480px -2208px; }
.app35297 { background-position: -576px -2208px; }
.app35298 { background-position: -672px -2208px; }
.app35305 { background-position: -768px -2208px; }
.app35325 { background-position: -864px -2208px; }
.app35348 { background-position: -960px -2208px; }
.app35360 { background-position: -1056px -2208px; }
.app35418 { background-position: -1152px -2208px; }
.app35419 { background-position: -1248px -2208px; }
.app35420 { background-position: -1344px -2208px; }
.app35421 { background-position: -1440px -2208px; }
.app35432 { background-position: -1536px -2208px; }
.app35433 { background-position: -1632px -2208px; }
.app35434 { background-position: -1728px -2208px; }
.app35444 { background-position: -1824px -2208px; }
.app35459 { background-position: -1920px -2208px; }
.app35517 { background-position: -2016px -2208px; }
.app35523 { background-position: -2112px -2208px; }
.app35563 { background-position: -2208px -2208px; }
.app35583 { background-position: -2304px -2208px; }
.app35584 { background-position: -2400px -2208px; }
.app35585 { background-position: -2496px -2208px; }
.app35586 { background-position: -2592px -2208px; }
.app35598 { background-position: -2688px -2208px; }
.app35599 { background-position: -2784px -2208px; }
.app35600 { background-position: -2880px -2208px; }
.app35617 { background-position: -2976px -2208px; }
.app35635 { background-position: -3072px -2208px; }
.app35641 { background-position: -3168px -2208px; }
.app35656 { background-position: -3264px -2208px; }
.app35657 { background-position: -3360px -2208px; }
.app35658 { background-position: -3456px -2208px; }
.app35659 { background-position: -3552px -2208px; }
.app35678 { background-position: -3648px -2208px; }
.app35692 { background-position: -3744px -2208px; }
.app35699 { background-position: -0px -2304px; }
.app35702 { background-position: -96px -2304px; }
.app35704 { background-position: -192px -2304px; }
.app35705 { background-position: -288px -2304px; }
.app35707 { background-position: -384px -2304px; }
.app35728 { background-position: -480px -2304px; }
.app35737 { background-position: -576px -2304px; }
.app35741 { background-position: -672px -2304px; }
.app35748 { background-position: -768px -2304px; }
.app35757 { background-position: -864px -2304px; }
.app35758 { background-position: -960px -2304px; }
.app35760 { background-position: -1056px -2304px; }
.app35762 { background-position: -1152px -2304px; }
.app35763 { background-position: -1248px -2304px; }
.app35764 { background-position: -1344px -2304px; }
.app35793 { background-position: -1440px -2304px; }
.app35796 { background-position: -1536px -2304px; }
.app35797 { background-position: -1632px -2304px; }
.app35798 { background-position: -1728px -2304px; }
.app35799 { background-position: -1824px -2304px; }
.app35800 { background-position: -1920px -2304px; }
.app35801 { background-position: -2016px -2304px; }
.app35812 { background-position: -2112px -2304px; }
.app35813 { background-position: -2208px -2304px; }
.app35814 { background-position: -2304px -2304px; }
.app35815 { background-position: -2400px -2304px; }
.app35824 { background-position: -2496px -2304px; }
.app35825 { background-position: -2592px -2304px; }
.app35828 { background-position: -2688px -2304px; }
.app35894 { background-position: -2784px -2304px; }
.app35938 { background-position: -2880px -2304px; }
.app35943 { background-position: -2976px -2304px; }
.app35944 { background-position: -3072px -2304px; }
.app35963 { background-position: -3168px -2304px; }
.app35966 { background-position: -3264px -2304px; }
.app35967 { background-position: -3360px -2304px; }
.app35968 { background-position: -3456px -2304px; }
.app35969 { background-position: -3552px -2304px; }
.app35970 { background-position: -3648px -2304px; }
.app35971 { background-position: -3744px -2304px; }
.app35972 { background-position: -0px -2400px; }
.app35973 { background-position: -96px -2400px; }
.app35977 { background-position: -192px -2400px; }
.app35978 { background-position: -288px -2400px; }
.app35979 { background-position: -384px -2400px; }
.app35980 { background-position: -480px -2400px; }
.app35981 { background-position: -576px -2400px; }
.app35982 { background-position: -672px -2400px; }
.app35983 { background-position: -768px -2400px; }
.app35984 { background-position: -864px -2400px; }
.app36005 { background-position: -960px -2400px; }
.app36006 { background-position: -1056px -2400px; }
.app36007 { background-position: -1152px -2400px; }
.app36008 { background-position: -1248px -2400px; }
.app36027 { background-position: -1344px -2400px; }
.app36029 { background-position: -1440px -2400px; }
.app36031 { background-position: -1536px -2400px; }
.app36045 { background-position: -1632px -2400px; }
.app36048 { background-position: -1728px -2400px; }
.app36049 { background-position: -1824px -2400px; }
.app36050 { background-position: -1920px -2400px; }
.app36051 { background-position: -2016px -2400px; }
.app36052 { background-position: -2112px -2400px; }
.app36053 { background-position: -2208px -2400px; }
.app36054 { background-position: -2304px -2400px; }
.app36055 { background-position: -2400px -2400px; }
.app36056 { background-position: -2496px -2400px; }
.app36072 { background-position: -2592px -2400px; }
.app36075 { background-position: -2688px -2400px; }
.app36077 { background-position: -2784px -2400px; }
.app36078 { background-position: -2880px -2400px; }
.app36079 { background-position: -2976px -2400px; }
.app36080 { background-position: -3072px -2400px; }
.app36081 { background-position: -3168px -2400px; }
.app36098 { background-position: -3264px -2400px; }
.app36109 { background-position: -3360px -2400px; }
.app36116 { background-position: -3456px -2400px; }
.app36117 { background-position: -3552px -2400px; }
.app36119 { background-position: -3648px -2400px; }
.app36134 { background-position: -3744px -2400px; }
.app36136 { background-position: -0px -2496px; }
.app36137 { background-position: -96px -2496px; }
.app36139 { background-position: -192px -2496px; }
.app36167 { background-position: -288px -2496px; }
.app36171 { background-position: -384px -2496px; }
.app36173 { background-position: -480px -2496px; }
.app36185 { background-position: -576px -2496px; }
.app36186 { background-position: -672px -2496px; }
.app36191 { background-position: -768px -2496px; }
.app36192 { background-position: -864px -2496px; }
.app36194 { background-position: -960px -2496px; }
.app36202 { background-position: -1056px -2496px; }
.app36203 { background-position: -1152px -2496px; }
.app36205 { background-position: -1248px -2496px; }
.app36206 { background-position: -1344px -2496px; }
.app36207 { background-position: -1440px -2496px; }
.app36208 { background-position: -1536px -2496px; }
.app36209 { background-position: -1632px -2496px; }
.app36217 { background-position: -1728px -2496px; }
.app36222 { background-position: -1824px -2496px; }
.app36232 { background-position: -1920px -2496px; }
.app36233 { background-position: -2016px -2496px; }
.app36237 { background-position: -2112px -2496px; }
.app36238 { background-position: -2208px -2496px; }
.app36240 { background-position: -2304px -2496px; }
.app36244 { background-position: -2400px -2496px; }
.app36249 { background-position: -2496px -2496px; }
.app36297 { background-position: -2592px -2496px; }
.app36302 { background-position: -2688px -2496px; }
.app36313 { background-position: -2784px -2496px; }
.app36315 { background-position: -2880px -2496px; }
.app36316 { background-position: -2976px -2496px; }
.app36326 { background-position: -3072px -2496px; }
.app36327 { background-position: -3168px -2496px; }
.app36370 { background-position: -3264px -2496px; }
.app36371 { background-position: -3360px -2496px; }
.app36375 { background-position: -3456px -2496px; }
.app36376 { background-position: -3552px -2496px; }
.app36381 { background-position: -3648px -2496px; }
.app36384 { background-position: -3744px -2496px; }
.app36387 { background-position: -0px -2592px; }
.app36390 { background-position: -96px -2592px; }
.app36410 { background-position: -192px -2592px; }
.app36441 { background-position: -288px -2592px; }
.app36442 { background-position: -384px -2592px; }
.app36443 { background-position: -480px -2592px; }
.app36445 { background-position: -576px -2592px; }
.app36446 { background-position: -672px -2592px; }
.app36448 { background-position: -768px -2592px; }
.app36449 { background-position: -864px -2592px; }
.app36460 { background-position: -960px -2592px; }
.app36462 { background-position: -1056px -2592px; }
.app36463 { background-position: -1152px -2592px; }
.app36468 { background-position: -1248px -2592px; }
.app36481 { background-position: -1344px -2592px; }
.app36482 { background-position: -1440px -2592px; }
.app36483 { background-position: -1536px -2592px; }
.app36484 { background-position: -1632px -2592px; }
.app36486 { background-position: -1728px -2592px; }
.app36487 { background-position: -1824px -2592px; }
.app36488 { background-position: -1920px -2592px; }
.app36489 { background-position: -2016px -2592px; }
.app36504 { background-position: -2112px -2592px; }
.app36510 { background-position: -2208px -2592px; }
.app36511 { background-position: -2304px -2592px; }
.app36536 { background-position: -2400px -2592px; }
.app36557 { background-position: -2496px -2592px; }
.app36574 { background-position: -2592px -2592px; }
.app36575 { background-position: -2688px -2592px; }
.app36576 { background-position: -2784px -2592px; }
.app36577 { background-position: -2880px -2592px; }
.app36578 { background-position: -2976px -2592px; }
.app36591 { background-position: -3072px -2592px; }
.app36596 { background-position: -3168px -2592px; }
.app36614 { background-position: -3264px -2592px; }
.app36615 { background-position: -3360px -2592px; }
.app36629 { background-position: -3456px -2592px; }
.app36635 { background-position: -3552px -2592px; }
.app36648 { background-position: -3648px -2592px; }
.app36653 { background-position: -3744px -2592px; }
.app36656 { background-position: -0px -2688px; }
.app36660 { background-position: -96px -2688px; }
.app36666 { background-position: -192px -2688px; }
.app36718 { background-position: -288px -2688px; }
.app36721 { background-position: -384px -2688px; }
.app36722 { background-position: -480px -2688px; }
.app36723 { background-position: -576px -2688px; }
.app36730 { background-position: -672px -2688px; }
.app36740 { background-position: -768px -2688px; }
.app36741 { background-position: -864px -2688px; }
.app36742 { background-position: -960px -2688px; }
.app36743 { background-position: -1056px -2688px; }
.app36774 { background-position: -1152px -2688px; }
.app36790 { background-position: -1248px -2688px; }
.app36817 { background-position: -1344px -2688px; }
.app36818 { background-position: -1440px -2688px; }
.app36823 { background-position: -1536px -2688px; }
.app36853 { background-position: -1632px -2688px; }
.app36854 { background-position: -1728px -2688px; }
.app36869 { background-position: -1824px -2688px; }
.app36891 { background-position: -1920px -2688px; }
.app36900 { background-position: -2016px -2688px; }
.app36931 { background-position: -2112px -2688px; }
.app36953 { background-position: -2208px -2688px; }
.app36960 { background-position: -2304px -2688px; }
.app36963 { background-position: -2400px -2688px; }
.app36975 { background-position: -2496px -2688px; }
.app36998 { background-position: -2592px -2688px; }
.app36999 { background-position: -2688px -2688px; }
.app37000 { background-position: -2784px -2688px; }
.app37052 { background-position: -2880px -2688px; }
.app37053 { background-position: -2976px -2688px; }
.app37054 { background-position: -3072px -2688px; }
.app37055 { background-position: -3168px -2688px; }
.app37056 { background-position: -3264px -2688px; }
.app37057 { background-position: -3360px -2688px; }
.app37065 { background-position: -3456px -2688px; }
.app37084 { background-position: -3552px -2688px; }
.app37085 { background-position: -3648px -2688px; }
.app37095 { background-position: -3744px -2688px; }
.app37172 { background-position: -0px -2784px; }
.app37186 { background-position: -96px -2784px; }
.app37197 { background-position: -192px -2784px; }
.app37206 { background-position: -288px -2784px; }
.app37212 { background-position: -384px -2784px; }
.app37253 { background-position: -480px -2784px; }
.app37261 { background-position: -576px -2784px; }
.app37299 { background-position: -672px -2784px; }
.app37306 { background-position: -768px -2784px; }
.app37323 { background-position: -864px -2784px; }
.app37332 { background-position: -960px -2784px; }
.app37364 { background-position: -1056px -2784px; }
.app37371 { background-position: -1152px -2784px; }
.app37402 { background-position: -1248px -2784px; }
.app37403 { background-position: -1344px -2784px; }
.app37454 { background-position: -1440px -2784px; }
.app37455 { background-position: -1536px -2784px; }
.app37464 { background-position: -1632px -2784px; }
.app37481 { background-position: -1728px -2784px; }
.app37485 { background-position: -1824px -2784px; }
.app37499 { background-position: -1920px -2784px; }
.app37500 { background-position: -2016px -2784px; }
.app37518 { background-position: -2112px -2784px; }
.app37535 { background-position: -2208px -2784px; }
.app37536 { background-position: -2304px -2784px; }
.app37537 { background-position: -2400px -2784px; }
.app37543 { background-position: -2496px -2784px; }
.app37585 { background-position: -2592px -2784px; }
.app37591 { background-position: -2688px -2784px; }
.app37602 { background-position: -2784px -2784px; }
.app37606 { background-position: -2880px -2784px; }
.app37619 { background-position: -2976px -2784px; }
.app37644 { background-position: -3072px -2784px; }
.app37659 { background-position: -3168px -2784px; }
.app37676 { background-position: -3264px -2784px; }
.app37695 { background-position: -3360px -2784px; }
.app37706 { background-position: -3456px -2784px; }
.app37718 { background-position: -3552px -2784px; }
.app37721 { background-position: -3648px -2784px; }
.app37722 { background-position: -3744px -2784px; }
.app37738 { background-position: -0px -2880px; }
.app37763 { background-position: -96px -2880px; }
.app37845 { background-position: -192px -2880px; }
.app37846 { background-position: -288px -2880px; }
.app37934 { background-position: -384px -2880px; }
.app37952 { background-position: -480px -2880px; }
.app37958 { background-position: -576px -2880px; }
.app37985 { background-position: -672px -2880px; }
.app37994 { background-position: -768px -2880px; }
.app38003 { background-position: -864px -2880px; }
.app38005 { background-position: -960px -2880px; }
.app38016 { background-position: -1056px -2880px; }
.app38037 { background-position: -1152px -2880px; }
.app38038 { background-position: -1248px -2880px; }
.app38042 { background-position: -1344px -2880px; }
.app38044 { background-position: -1440px -2880px; }
.app38049 { background-position: -1536px -2880px; }
.app38051 { background-position: -1632px -2880px; }
.app38063 { background-position: -1728px -2880px; }
.app38064 { background-position: -1824px -2880px; }
.app38075 { background-position: -1920px -2880px; }
.app38098 { background-position: -2016px -2880px; }
.app38100 { background-position: -2112px -2880px; }
.app38104 { background-position: -2208px -2880px; }
.app38109 { background-position: -2304px -2880px; }
.app38131 { background-position: -2400px -2880px; }
.app38150 { background-position: -2496px -2880px; }
.app38163 { background-position: -2592px -2880px; }
.app38164 { background-position: -2688px -2880px; }
.app38174 { background-position: -2784px -2880px; }
.app38223 { background-position: -2880px -2880px; }
.app38247 { background-position: -2976px -2880px; }
.app38259 { background-position: -3072px -2880px; }
.app38266 { background-position: -3168px -2880px; }
.app38269 { background-position: -3264px -2880px; }
.app38291 { background-position: -3360px -2880px; }
.app38314 { background-position: -3456px -2880px; }
.app38321 { background-position: -3552px -2880px; }
.app38324 { background-position: -3648px -2880px; }
.app38327 { background-position: -3744px -2880px; }
.app38332 { background-position: -0px -2976px; }
.app38336 { background-position: -96px -2976px; }
.app38337 { background-position: -192px -2976px; }
.app38338 { background-position: -288px -2976px; }
.app38340 { background-position: -384px -2976px; }
.app38343 { background-position: -480px -2976px; }
.app38344 { background-position: -576px -2976px; }
.app38346 { background-position: -672px -2976px; }
.app38350 { background-position: -768px -2976px; }
.app38382 { background-position: -864px -2976px; }
.app38386 { background-position: -960px -2976px; }
.app38387 { background-position: -1056px -2976px; }
.app38394 { background-position: -1152px -2976px; }
.app38419 { background-position: -1248px -2976px; }
.app38463 { background-position: -1344px -2976px; }
.app38466 { background-position: -1440px -2976px; }
.app38467 { background-position: -1536px -2976px; }
.app38468 { background-position: -1632px -2976px; }
.app38471 { background-position: -1728px -2976px; }
.app38472 { background-position: -1824px -2976px; }
.app38473 { background-position: -1920px -2976px; }
.app38474 { background-position: -2016px -2976px; }
.app38483 { background-position: -2112px -2976px; }
.app38500 { background-position: -2208px -2976px; }
.app38507 { background-position: -2304px -2976px; }
.app38509 { background-position: -2400px -2976px; }
.app38512 { background-position: -2496px -2976px; }
.app38514 { background-position: -2592px -2976px; }
.app38517 { background-position: -2688px -2976px; }
.app38521 { background-position: -2784px -2976px; }
.app38522 { background-position: -2880px -2976px; }
.app38540 { background-position: -2976px -2976px; }
.app38542 { background-position: -3072px -2976px; }
.app38547 { background-position: -3168px -2976px; }
.app38550 { background-position: -3264px -2976px; }
.app38569 { background-position: -3360px -2976px; }
.app38570 { background-position: -3456px -2976px; }
.app38574 { background-position: -3552px -2976px; }
.app38575 { background-position: -3648px -2976px; }
.app38614 { background-position: -3744px -2976px; }
.app38645 { background-position: -0px -3072px; }
.app38653 { background-position: -96px -3072px; }
.app38654 { background-position: -192px -3072px; }
.app38670 { background-position: -288px -3072px; }
.app38683 { background-position: -384px -3072px; }
.app38685 { background-position: -480px -3072px; }
.app38690 { background-position: -576px -3072px; }
.app38708 { background-position: -672px -3072px; }
.app38709 { background-position: -768px -3072px; }
.app38725 { background-position: -864px -3072px; }
.app38726 { background-position: -960px -3072px; }
.app38732 { background-position: -1056px -3072px; }
.app38734 { background-position: -1152px -3072px; }
.app38759 { background-position: -1248px -3072px; }
.app38766 { background-position: -1344px -3072px; }
.app38768 { background-position: -1440px -3072px; }
.app38778 { background-position: -1536px -3072px; }
.app38782 { background-position: -1632px -3072px; }
.app38797 { background-position: -1728px -3072px; }
.app38817 { background-position: -1824px -3072px; }
.app38834 { background-position: -1920px -3072px; }
.app38845 { background-position: -2016px -3072px; }
.app38846 { background-position: -2112px -3072px; }
.app38848 { background-position: -2208px -3072px; }
.app38849 { background-position: -2304px -3072px; }
.app38853 { background-position: -2400px -3072px; }
.app38854 { background-position: -2496px -3072px; }
.app38855 { background-position: -2592px -3072px; }
.app38857 { background-position: -2688px -3072px; }
.app38860 { background-position: -2784px -3072px; }
.app38862 { background-position: -2880px -3072px; }
.app38878 { background-position: -2976px -3072px; }
.app38879 { background-position: -3072px -3072px; }
.app38900 { background-position: -3168px -3072px; }
.app38902 { background-position: -3264px -3072px; }
.app38903 { background-position: -3360px -3072px; }
.app38904 { background-position: -3456px -3072px; }
.app38905 { background-position: -3552px -3072px; }
.app38910 { background-position: -3648px -3072px; }
.app38923 { background-position: -3744px -3072px; }
.app38924 { background-position: -0px -3168px; }
.app38929 { background-position: -96px -3168px; }
.app38942 { background-position: -192px -3168px; }
.app38943 { background-position: -288px -3168px; }
.app38944 { background-position: -384px -3168px; }
.app38952 { background-position: -480px -3168px; }
.app38953 { background-position: -576px -3168px; }
.app38958 { background-position: -672px -3168px; }
.app38959 { background-position: -768px -3168px; }
.app38960 { background-position: -864px -3168px; }
.app38964 { background-position: -960px -3168px; }
.app38966 { background-position: -1056px -3168px; }
.app38974 { background-position: -1152px -3168px; }
.app38975 { background-position: -1248px -3168px; }
.app38981 { background-position: -1344px -3168px; }
.app38990 { background-position: -1440px -3168px; }
.app38991 { background-position: -1536px -3168px; }
.app38992 { background-position: -1632px -3168px; }
.app38993 { background-position: -1728px -3168px; }
.app38994 { background-position: -1824px -3168px; }
.app38995 { background-position: -1920px -3168px; }
.app38996 { background-position: -2016px -3168px; }
.app38997 { background-position: -2112px -3168px; }
.app38999 { background-position: -2208px -3168px; }
.app39004 { background-position: -2304px -3168px; }
.app39017 { background-position: -2400px -3168px; }
.app39018 { background-position: -2496px -3168px; }
.app39019 { background-position: -2592px -3168px; }
.app39020 { background-position: -2688px -3168px; }
.app39021 { background-position: -2784px -3168px; }
.app39053 { background-position: -2880px -3168px; }
.app39057 { background-position: -2976px -3168px; }
.app39062 { background-position: -3072px -3168px; }
.app39071 { background-position: -3168px -3168px; }
.app39073 { background-position: -3264px -3168px; }
.app39077 { background-position: -3360px -3168px; }
.app39082 { background-position: -3456px -3168px; }
.app39083 { background-position: -3552px -3168px; }
.app39100 { background-position: -3648px -3168px; }
.app39101 { background-position: -3744px -3168px; }
.app39107 { background-position: -0px -3264px; }
.app39109 { background-position: -96px -3264px; }
.app39111 { background-position: -192px -3264px; }
.app39112 { background-position: -288px -3264px; }
.app39113 { background-position: -384px -3264px; }
.app39157 { background-position: -480px -3264px; }
.app39158 { background-position: -576px -3264px; }
.app39159 { background-position: -672px -3264px; }
.app39164 { background-position: -768px -3264px; }
.app39171 { background-position: -864px -3264px; }
.app39172 { background-position: -960px -3264px; }
.app39174 { background-position: -1056px -3264px; }
.app39187 { background-position: -1152px -3264px; }
.app39188 { background-position: -1248px -3264px; }
.app39191 { background-position: -1344px -3264px; }
.app39194 { background-position: -1440px -3264px; }
.app39201 { background-position: -1536px -3264px; }
.app39203 { background-position: -1632px -3264px; }
.app39210 { background-position: -1728px -3264px; }
.app39211 { background-position: -1824px -3264px; }
.app39212 { background-position: -1920px -3264px; }
.app39213 { background-position: -2016px -3264px; }
.app39233 { background-position: -2112px -3264px; }
.app39243 { background-position: -2208px -3264px; }
.app39244 { background-position: -2304px -3264px; }
.app39280 { background-position: -2400px -3264px; }
.app39283 { background-position: -2496px -3264px; }
.app39284 { background-position: -2592px -3264px; }
.app39304 { background-position: -2688px -3264px; }
.app39309 { background-position: -2784px -3264px; }
.app39340 { background-position: -2880px -3264px; }
.app39350 { background-position: -2976px -3264px; }
.app39380 { background-position: -3072px -3264px; }
.app39381 { background-position: -3168px -3264px; }
.app39393 { background-position: -3264px -3264px; }
.app39449 { background-position: -3360px -3264px; }
.app39454 { background-position: -3456px -3264px; }
.app39458 { background-position: -3552px -3264px; }
.app39467 { background-position: -3648px -3264px; }
.app39505 { background-position: -3744px -3264px; }
.app39506 { background-position: -0px -3360px; }
.app39523 { background-position: -96px -3360px; }
.app39537 { background-position: -192px -3360px; }
.app39541 { background-position: -288px -3360px; }
.app39546 { background-position: -384px -3360px; }
.app39547 { background-position: -480px -3360px; }
.app39549 { background-position: -576px -3360px; }
.app39590 { background-position: -672px -3360px; }
.app39591 { background-position: -768px -3360px; }
.app39592 { background-position: -864px -3360px; }
.app39621 { background-position: -960px -3360px; }
.app39630 { background-position: -1056px -3360px; }
.app39632 { background-position: -1152px -3360px; }
.app39637 { background-position: -1248px -3360px; }
.app39651 { background-position: -1344px -3360px; }
.app39676 { background-position: -1440px -3360px; }
.app39684 { background-position: -1536px -3360px; }
.app39696 { background-position: -1632px -3360px; }
.app39712 { background-position: -1728px -3360px; }
.app39771 { background-position: -1824px -3360px; }
.app39945 { background-position: -1920px -3360px; }
.app39999 { background-position: -2016px -3360px; }
.app40012 { background-position: -2112px -3360px; }
.app40123 { background-position: -2208px -3360px; }
.app40175 { background-position: -2304px -3360px; }
.app40269 { background-position: -2400px -3360px; }
.app40304 { background-position: -2496px -3360px; }
.app40316 { background-position: -2592px -3360px; }
.app40317 { background-position: -2688px -3360px; }
.app40318 { background-position: -2784px -3360px; }
.app40319 { background-position: -2880px -3360px; }
.app40389 { background-position: -2976px -3360px; }
.app40424 { background-position: -3072px -3360px; }
.app40469 { background-position: -3168px -3360px; }
.app40470 { background-position: -3264px -3360px; }
.app40471 { background-position: -3360px -3360px; }
.app40489 { background-position: -3456px -3360px; }
.app40503 { background-position: -3552px -3360px; }
.app40565 { background-position: -3648px -3360px; }
.app40642 { background-position: -3744px -3360px; }
.app40661 { background-position: -0px -3456px; }
.app40698 { background-position: -96px -3456px; }
.app40702 { background-position: -192px -3456px; }
.app40766 { background-position: -288px -3456px; }
.app40768 { background-position: -384px -3456px; }
.app40776 { background-position: -480px -3456px; }
.app40791 { background-position: -576px -3456px; }
.app40793 { background-position: -672px -3456px; }
.app40796 { background-position: -768px -3456px; }
.app40818 { background-position: -864px -3456px; }
.app40821 { background-position: -960px -3456px; }
.app40823 { background-position: -1056px -3456px; }
.app40842 { background-position: -1152px -3456px; }
.app40858 { background-position: -1248px -3456px; }
.app40860 { background-position: -1344px -3456px; }
.app40861 { background-position: -1440px -3456px; }
.app40862 { background-position: -1536px -3456px; }
.app40866 { background-position: -1632px -3456px; }
.app40933 { background-position: -1728px -3456px; }
.app40934 { background-position: -1824px -3456px; }
.app40935 { background-position: -1920px -3456px; }
.app40981 { background-position: -2016px -3456px; }
.app40982 { background-position: -2112px -3456px; }
.app40984 { background-position: -2208px -3456px; }
.app40985 { background-position: -2304px -3456px; }
.app40986 { background-position: -2400px -3456px; }
.app40987 { background-position: -2496px -3456px; }
.app40988 { background-position: -2592px -3456px; }
.app41060 { background-position: -2688px -3456px; }
.app41061 { background-position: -2784px -3456px; }
.app41062 { background-position: -2880px -3456px; }
.app41063 { background-position: -2976px -3456px; }
.app41064 { background-position: -3072px -3456px; }
.app41065 { background-position: -3168px -3456px; }
.app41066 { background-position: -3264px -3456px; }
.app41067 { background-position: -3360px -3456px; }
.app41099 { background-position: -3456px -3456px; }
.app41100 { background-position: -3552px -3456px; }
.app41101 { background-position: -3648px -3456px; }
.app41102 { background-position: -3744px -3456px; }
.app41103 { background-position: -0px -3552px; }
.app41104 { background-position: -96px -3552px; }
.app41105 { background-position: -192px -3552px; }
.app41106 { background-position: -288px -3552px; }
.app41145 { background-position: -384px -3552px; }
.app41146 { background-position: -480px -3552px; }
.app41147 { background-position: -576px -3552px; }
.app41148 { background-position: -672px -3552px; }
.app41149 { background-position: -768px -3552px; }
.app41150 { background-position: -864px -3552px; }
.app41151 { background-position: -960px -3552px; }
.app41152 { background-position: -1056px -3552px; }
.app41153 { background-position: -1152px -3552px; }
.app41154 { background-position: -1248px -3552px; }
.app41155 { background-position: -1344px -3552px; }
.app41156 { background-position: -1440px -3552px; }
.app41157 { background-position: -1536px -3552px; }
.app41158 { background-position: -1632px -3552px; }
.app41159 { background-position: -1728px -3552px; }
.app41206 { background-position: -1824px -3552px; }
.app41207 { background-position: -1920px -3552px; }
.app41208 { background-position: -2016px -3552px; }
.app41209 { background-position: -2112px -3552px; }
.app41210 { background-position: -2208px -3552px; }
.app41212 { background-position: -2304px -3552px; }
.app41213 { background-position: -2400px -3552px; }
.app41214 { background-position: -2496px -3552px; }
.app41215 { background-position: -2592px -3552px; }
.app41216 { background-position: -2688px -3552px; }
.app41217 { background-position: -2784px -3552px; }
.app41218 { background-position: -2880px -3552px; }
.app41219 { background-position: -2976px -3552px; }
.app41220 { background-position: -3072px -3552px; }
.app41221 { background-position: -3168px -3552px; }
.app41222 { background-position: -3264px -3552px; }
.app41223 { background-position: -3360px -3552px; }
.app41224 { background-position: -3456px -3552px; }
.app41226 { background-position: -3552px -3552px; }
.app41227 { background-position: -3648px -3552px; }
.app41228 { background-position: -3744px -3552px; }
.app41229 { background-position: -0px -3648px; }
.app41230 { background-position: -96px -3648px; }
.app41231 { background-position: -192px -3648px; }
.app41232 { background-position: -288px -3648px; }
.app41233 { background-position: -384px -3648px; }
.app41234 { background-position: -480px -3648px; }
.app41235 { background-position: -576px -3648px; }
.app41392 { background-position: -672px -3648px; }
.app41468 { background-position: -768px -3648px; }
.app41469 { background-position: -864px -3648px; }
.app41470 { background-position: -960px -3648px; }
.app41471 { background-position: -1056px -3648px; }
.app41475 { background-position: -1152px -3648px; }
.app41516 { background-position: -1248px -3648px; }
.app41598 { background-position: -1344px -3648px; }
.app41600 { background-position: -1440px -3648px; }
.app41601 { background-position: -1536px -3648px; }
.app41614 { background-position: -1632px -3648px; }
.app41644 { background-position: -1728px -3648px; }
.app41660 { background-position: -1824px -3648px; }
.app41678 { background-position: -1920px -3648px; }
.app41680 { background-position: -2016px -3648px; }
.app41681 { background-position: -2112px -3648px; }
.app41683 { background-position: -2208px -3648px; }
.app41689 { background-position: -2304px -3648px; }
.app41691 { background-position: -2400px -3648px; }
.app41692 { background-position: -2496px -3648px; }
.app41694 { background-position: -2592px -3648px; }
.app41698 { background-position: -2688px -3648px; }
.app41701 { background-position: -2784px -3648px; }
.app41702 { background-position: -2880px -3648px; }
.app41703 { background-position: -2976px -3648px; }
.app41717 { background-position: -3072px -3648px; }
.app41718 { background-position: -3168px -3648px; }
.app41733 { background-position: -3264px -3648px; }
.app41785 { background-position: -3360px -3648px; }
.app41814 { background-position: -3456px -3648px; }
.app41908 { background-position: -3552px -3648px; }
.app41999 { background-position: -3648px -3648px; }
.app42000 { background-position: -3744px -3648px; }
.app42001 { background-position: -0px -3744px; }
.app42004 { background-position: -96px -3744px; }
.app42006 { background-position: -192px -3744px; }
.app42233 { background-position: -288px -3744px; }
.app42297 { background-position: -384px -3744px; }
.app42300 { background-position: -480px -3744px; }
.app42312 { background-position: -576px -3744px; }
.app42313 { background-position: -672px -3744px; }
.app42324 { background-position: -768px -3744px; }
.app42333 { background-position: -864px -3744px; }
.app42334 { background-position: -960px -3744px; }
.app42358 { background-position: -1056px -3744px; }
.app42496 { background-position: -1152px -3744px; }
.app42498 { background-position: -1248px -3744px; }
.app42500 { background-position: -1344px -3744px; }
.app42501 { background-position: -1440px -3744px; }
.app42533 { background-position: -1536px -3744px; }
.app42537 { background-position: -1632px -3744px; }
.app42620 { background-position: -1728px -3744px; }
.app42640 { background-position: -1824px -3744px; }
.app42644 { background-position: -1920px -3744px; }
.app42658 { background-position: -2016px -3744px; }
.app42662 { background-position: -2112px -3744px; }
.app42669 { background-position: -2208px -3744px; }
.app42670 { background-position: -2304px -3744px; }
.app42766 { background-position: -2400px -3744px; }
.app42768 { background-position: -2496px -3744px; }
.app42769 { background-position: -2592px -3744px; }
.app42770 { background-position: -2688px -3744px; }
.app42774 { background-position: -2784px -3744px; }
.app42806 { background-position: -2880px -3744px; }
.app42831 { background-position: -2976px -3744px; }
.app42837 { background-position: -3072px -3744px; }
.app42850 { background-position: -3168px -3744px; }
.app42899 { background-position: -3264px -3744px; }
.app42903 { background-position: -3360px -3744px; }
.app42904 { background-position: -3456px -3744px; }
.app43043 { background-position: -3552px -3744px; }
.app43044 { background-position: -3648px -3744px; }
.app43045 { background-position: -3744px -3744px; }
.app43046 { background-position: -0px -3840px; }
.app43047 { background-position: -96px -3840px; }
.app43048 { background-position: -192px -3840px; }
.app43049 { background-position: -288px -3840px; }
.app43050 { background-position: -384px -3840px; }
.app43051 { background-position: -480px -3840px; }
.app43053 { background-position: -576px -3840px; }
.app43054 { background-position: -672px -3840px; }
.app43055 { background-position: -768px -3840px; }
.app43056 { background-position: -864px -3840px; }
.app43057 { background-position: -960px -3840px; }
.app43058 { background-position: -1056px -3840px; }
.app43060 { background-position: -1152px -3840px; }
.app43062 { background-position: -1248px -3840px; }
.app43063 { background-position: -1344px -3840px; }
.app43064 { background-position: -1440px -3840px; }
.app43065 { background-position: -1536px -3840px; }
.app43066 { background-position: -1632px -3840px; }
.app43067 { background-position: -1728px -3840px; }
.app43068 { background-position: -1824px -3840px; }
.app43069 { background-position: -1920px -3840px; }
.app43070 { background-position: -2016px -3840px; }
.app43071 { background-position: -2112px -3840px; }
.app43072 { background-position: -2208px -3840px; }
.app43074 { background-position: -2304px -3840px; }
.app43077 { background-position: -2400px -3840px; }
.app43079 { background-position: -2496px -3840px; }
.app43080 { background-position: -2592px -3840px; }
.app43084 { background-position: -2688px -3840px; }
.app43085 { background-position: -2784px -3840px; }
.app43087 { background-position: -2880px -3840px; }
.app43088 { background-position: -2976px -3840px; }
.app43089 { background-position: -3072px -3840px; }
.app43090 { background-position: -3168px -3840px; }
.app43091 { background-position: -3264px -3840px; }
.app43092 { background-position: -3360px -3840px; }
.app43093 { background-position: -3456px -3840px; }
.app43094 { background-position: -3552px -3840px; }
.app43095 { background-position: -3648px -3840px; }
.app43096 { background-position: -3744px -3840px; }
.app43186 { background-position: -0px -3936px; }
.app43190 { background-position: -96px -3936px; }
.app43273 { background-position: -192px -3936px; }
.app43276 { background-position: -288px -3936px; }
.app43277 { background-position: -384px -3936px; }
.app43278 { background-position: -480px -3936px; }
.app43279 { background-position: -576px -3936px; }
.app43280 { background-position: -672px -3936px; }
.app43281 { background-position: -768px -3936px; }
.app43287 { background-position: -864px -3936px; }
.app43288 { background-position: -960px -3936px; }
.app43289 { background-position: -1056px -3936px; }
.app43292 { background-position: -1152px -3936px; }
.app43294 { background-position: -1248px -3936px; }
.app43295 { background-position: -1344px -3936px; }
.app43296 { background-position: -1440px -3936px; }
.app43297 { background-position: -1536px -3936px; }
.app43298 { background-position: -1632px -3936px; }
.app43299 { background-position: -1728px -3936px; }
.app43300 { background-position: -1824px -3936px; }
.app43301 { background-position: -1920px -3936px; }
.app43302 { background-position: -2016px -3936px; }
.app43303 { background-position: -2112px -3936px; }
.app43304 { background-position: -2208px -3936px; }
.app43305 { background-position: -2304px -3936px; }
.app43306 { background-position: -2400px -3936px; }
.app43307 { background-position: -2496px -3936px; }
.app43308 { background-position: -2592px -3936px; }
.app43309 { background-position: -2688px -3936px; }
.app43312 { background-position: -2784px -3936px; }
.app43313 { background-position: -2880px -3936px; }
.app43315 { background-position: -2976px -3936px; }
.app43316 { background-position: -3072px -3936px; }
.app43322 { background-position: -3168px -3936px; }
.app43323 { background-position: -3264px -3936px; }
.app43324 { background-position: -3360px -3936px; }
.app43325 { background-position: -3456px -3936px; }
.app43326 { background-position: -3552px -3936px; }
.app43327 { background-position: -3648px -3936px; }
.app43328 { background-position: -3744px -3936px; }
.app43329 { background-position: -0px -4032px; }
.app43330 { background-position: -96px -4032px; }
.app43331 { background-position: -192px -4032px; }
.app43332 { background-position: -288px -4032px; }
.app43333 { background-position: -384px -4032px; }
.app43334 { background-position: -480px -4032px; }
.app43335 { background-position: -576px -4032px; }
.app43345 { background-position: -672px -4032px; }
.app43346 { background-position: -768px -4032px; }
.app43347 { background-position: -864px -4032px; }
.app43349 { background-position: -960px -4032px; }
.app43351 { background-position: -1056px -4032px; }
.app43355 { background-position: -1152px -4032px; }
.app43425 { background-position: -1248px -4032px; }
.app43426 { background-position: -1344px -4032px; }
.app43427 { background-position: -1440px -4032px; }
.app43440 { background-position: -1536px -4032px; }
.app43448 { background-position: -1632px -4032px; }
.app43449 { background-position: -1728px -4032px; }
.app43454 { background-position: -1824px -4032px; }
.app43462 { background-position: -1920px -4032px; }
.app43463 { background-position: -2016px -4032px; }
.app43464 { background-position: -2112px -4032px; }
.app43465 { background-position: -2208px -4032px; }
.app43467 { background-position: -2304px -4032px; }
.app43468 { background-position: -2400px -4032px; }
.app43520 { background-position: -2496px -4032px; }
.app43526 { background-position: -2592px -4032px; }
.app43528 { background-position: -2688px -4032px; }
.app43531 { background-position: -2784px -4032px; }
.app43539 { background-position: -2880px -4032px; }
.app43540 { background-position: -2976px -4032px; }
.app43541 { background-position: -3072px -4032px; }
.app43566 { background-position: -3168px -4032px; }
.app43582 { background-position: -3264px -4032px; }
.app43584 { background-position: -3360px -4032px; }
.app43590 { background-position: -3456px -4032px; }
.app43592 { background-position: -3552px -4032px; }
.app43597 { background-position: -3648px -4032px; }
.app43605 { background-position: -3744px -4032px; }
.app43611 { background-position: -0px -4128px; }
.app43625 { background-position: -96px -4128px; }
.app43691 { background-position: -192px -4128px; }
.app43708 { background-position: -288px -4128px; }
.app43712 { background-position: -384px -4128px; }
.app43713 { background-position: -480px -4128px; }
.app43714 { background-position: -576px -4128px; }
.app43729 { background-position: -672px -4128px; }
.app43738 { background-position: -768px -4128px; }
.app43753 { background-position: -864px -4128px; }
.app43816 { background-position: -960px -4128px; }
.app43839 { background-position: -1056px -4128px; }
.app43847 { background-position: -1152px -4128px; }
.app43928 { background-position: -1248px -4128px; }
.app43941 { background-position: -1344px -4128px; }
.app43947 { background-position: -1440px -4128px; }
.app43950 { background-position: -1536px -4128px; }
.app43958 { background-position: -1632px -4128px; }
.app43959 { background-position: -1728px -4128px; }
.app43965 { background-position: -1824px -4128px; }
.app43966 { background-position: -1920px -4128px; }
.app43967 { background-position: -2016px -4128px; }
.app43969 { background-position: -2112px -4128px; }

@font-face {
  font-family: Lato;
  font-style: normal;
  font-weight: 400;
  src: url(/static/fonts/lato-regular.1d2ca94d.woff) format('woff');
}
html {
  font-size: 15px;
}
body {
  margin: 0;
}
.fafm-app-icon {
  background-image: url(/static/images/small_sprite.82aad174.png);
  background-color: transparent;
  background-repeat: no-repeat;
  display: inline-block;
  height: 96px;
  overflow: hidden;
  vertical-align: middle;
  width: 96px;
}
.fafm-app-icon-container {
  --fafm-app-icon-size: 16;
  height: calc(var(--fafm-app-icon-size) * 1px);
  width: calc(var(--fafm-app-icon-size) * 1px);
  display: inline-block;
  position: relative;
  vertical-align: middle;
  overflow: hidden;
}
.fafm-app-icon-container .fafm-app-icon {
  position: absolute;
  transform-origin: 0 0;
  transform: scale(calc(var(--fafm-app-icon-size) / 96));
}
.fafm-app-icon-container.large-icon {
  --fafm-app-icon-size: 64;
}
@keyframes resizeanim {
  from {
    opacity: 0;
  }
  to {
    opacity: 0;
  }
}
body {
  min-height: 100vh;
}
#id_spinner {
  transition: opacity 800ms ease-in;
}
#id_layout_main {
  transition: opacity 500ms ease-out;
  background-position: 100% 100%;
  font-family: Lato, Verdana, Helvetica, Arial, sans-serif;
  color: rgb(var(--nw-color-neutral-1000));
}
.resize-triggers {
  animation: 1ms resizeanim;
  visibility: hidden;
  opacity: 0;
}
.resize-triggers,
.resize-triggers > div,
.contract-trigger:before {
  content: ' ';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  z-index: -1;
}
.resize-triggers > div {
  background: #eee;
  overflow: auto;
}
.contract-trigger:before {
  width: 200%;
  height: 200%;
}
.fi-search-highlight {
  background-color: yellow !important;
  box-shadow: 0px 0px 0.1em 0px rgba(0, 0, 0, 0.15);
  color: #000;
}
.fi-box-shadow-grey {
  box-shadow: 1px 2px 6px 0 rgba(0, 0, 0, 0.2);
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-thumb {
  background: rgb(var(--nw-color-neutral-400));
  border-radius: 5px;
  min-height: 9px;
  border: 1px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
}
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
}
@-moz-document url-prefix() {
  * {
    scrollbar-width: auto;
    /* thin | auto */
    scrollbar-color: rgb(var(--nw-color-neutral-400)) transparent;
    /* thumb color | track color */
  }
}
text {
  fill: rgb(var(--nw-color-neutral-1000));
}
* {
  box-sizing: border-box;
}
*:before,
*:after {
  box-sizing: border-box;
}

.nw-core-icon {
  line-height: normal;
  width: 1em;
  height: 1em;
}

.nw-spinner {
  position: relative;
  box-sizing: border-box;
  --track-color: rgb(var(--nw-color-neutral-300));
  --indicator-color: rgb(var(--nw-color-primary-500));
  --stroke-width: 2px;
  display: inline-flex;
}
.nw-spinner *,
.nw-spinner *::before,
.nw-spinner *::after {
  box-sizing: inherit;
}
.nw-spinner *::-webkit-scrollbar {
  width: 15px;
  height: 15px;
}
.nw-spinner *::-webkit-scrollbar-thumb {
  background: #a3a3a3;
  border-radius: 7px;
  min-height: 30px;
  border: 3px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
}
.nw-spinner *::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
}
.nw-spinner * {
  scrollbar-face-color: #a3a3a3;
  scrollbar-track-color: rgba(0, 0, 0, 0);
}
.nw-spinner .spinner {
  width: 1em;
  height: 1em;
  /*flex: 1 1 auto;*/
  border: none;
  color: var(--indicator-color);
  animation: spin 2s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.nw-button {
  /* When disabled, prevent mouse events from bubbling up */
  /* Clicks on icons shouldn't prevent the button from gaining focus */
  /*
  * Standard buttons
  */
  /* Default */
  /* Primary */
  /* Secondary */
  /* Success */
  /* Neutral */
  /* Warning */
  /* Danger */
  /*
  * Text buttons
  */
  /*
  * Circle modifier
  */
  /*
  * Caret modifier
  */
  /*
  * Loading modifier
  */
  /*
  * Spacing
  */
}
.nw-button:focus {
  outline: none;
}
.nw-button.nw--disabled * {
  pointer-events: none;
}
.nw-button .nw-core-icon {
  pointer-events: none;
}
.nw-button .button__prefix,
.nw-button .button__suffix {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
.nw-button .button--loading {
  cursor: wait;
  position: relative;
  padding-left: 18px;
}
.nw-button .button--loading .nw-spinner {
  --indicator-color: currentColor;
  position: absolute;
  font-size: 1em;
  height: 1em;
  width: 1em;
  top: calc(50% - 0.5em);
  left: 0.2rem;
}
/*
 * Button groups support a variety of button types (e.g. buttons with tooltips, buttons as dropdown triggers, etc.).
 * This means buttons aren't always direct descendants of the button group, thus we can't target them with the
 * ::slotted selector. To work around this, the button group component does some magic to add these special classes to
 * buttons and we style them here instead.
 */
/* All except the first */
/* Add a visual separator between solid buttons */
/* Bump focused buttons up so their focus ring isn't clipped */

.nw-switch {
  --height: 14px;
  --thumb-size: 12px;
  --width: 20px;
  /* Hover */
  /* Focus */
  /* Checked */
  /* increase contrast because under all themes primary-color is used as background. */
  /* Checked + hover */
  /* Checked + focus */
}
.nw-switch .switch__input {
  width: var(--width);
  height: var(--height);
}
.nw-switch .switch__control {
  width: var(--width);
  height: var(--height);
}
.nw-switch .switch__control .switch__thumb {
  width: var(--thumb-size);
  height: var(--thumb-size);
}
.nw-switch .switch__label {
  line-height: var(--height);
}
.nw-switch .switch__control {
  background-color: rgba(var(--nw-color-neutral-800) / 70%);
  border: solid var(--nw-input-border-width) rgba(var(--nw-color-neutral-800) / 70%);
  border-radius: var(--height);
  transition: var(--nw-transition-fast) border-color, var(--nw-transition-fast) background-color;
}
.nw-switch .switch__control .switch__thumb {
  background-color: rgb(var(--nw-color-neutral-0));
  border-radius: 50%;
  border: solid var(--nw-input-border-width) rgba(var(--nw-color-neutral-800) / 70%);
  transform: translateX(calc((var(--width) - var(--height)) / -2));
  transition: var(--nw-transition-fast) transform ease, var(--nw-transition-fast) background-color, var(--nw-transition-fast) border-color, var(--nw-transition-fast) box-shadow;
}
.nw-switch:not(.nw--checked):not(.nw--disabled) .switch__control:hover {
  background-color: rgba(var(--nw-color-neutral-800) / 70%);
  border-color: rgba(var(--nw-color-neutral-800) / 70%);
}
.nw-switch:not(.nw--checked):not(.nw--disabled) .switch__control:hover .switch__thumb {
  background-color: rgb(var(--nw-color-neutral-0));
  border-color: rgba(var(--nw-color-neutral-800) / 70%);
}
.nw-switch:not(.nw--checked):not(.nw--disabled) .switch__input:focus-visible ~ .switch__control {
  background-color: rgba(var(--nw-color-neutral-800) / 70%);
  border-color: rgba(var(--nw-color-neutral-800) / 70%);
}
.nw-switch:not(.nw--checked):not(.nw--disabled) .switch__input:focus-visible ~ .switch__control .switch__thumb {
  background-color: rgb(var(--nw-color-neutral-0));
  border-color: rgb(var(--nw-color-primary-500));
  box-shadow: 0 0 0 var(--nw-focus-ring-width) rgb(var(--nw-color-primary-400) / var(--nw-focus-ring-alpha));
}
.nw-switch.nw--checked .switch__control {
  background-color: rgb(var(--nw-color-primary-500));
  border-color: rgb(var(--nw-color-primary-500));
}
.nw-switch.nw--checked .switch__control .switch__thumb {
  background-color: rgb(var(--nw-color-neutral-0));
  border-color: rgb(var(--nw-color-primary-500));
  transform: translateX(calc((var(--width) - var(--height)) / 2));
}
.nw-switch.nw--checked:not(.nw--disabled) .switch__control:hover {
  background-color: rgb(var(--nw-color-primary-500));
  border-color: rgb(var(--nw-color-primary-500));
}
.nw-switch.nw--checked:not(.nw--disabled) .switch__control:hover .switch__thumb {
  background-color: rgb(var(--nw-color-neutral-0));
  border-color: rgb(var(--nw-color-primary-500));
}
.nw-switch.nw--checked:not(.nw--disabled) .switch__input:focus-visible ~ .switch__control {
  background-color: rgb(var(--nw-color-primary-500));
  border-color: rgb(var(--nw-color-primary-500));
}
.nw-switch.nw--checked:not(.nw--disabled) .switch__input:focus-visible ~ .switch__control .switch__thumb {
  background-color: rgb(var(--nw-color-neutral-0));
  border-color: rgb(var(--nw-color-primary-500));
  box-shadow: 0 0 0 var(--nw-focus-ring-width) rgb(var(--nw-color-primary-500) / var(--nw-focus-ring-alpha));
}
.np-theme-neutrino .nw-switch.nw--checked .switch__control,
.np-theme-neutrino .nw-switch.nw--checked:not(.nw--disabled) .switch__control:hover {
  border-color: rgb(var(--nw-color-red));
  background-color: rgb(var(--nw-color-red));
}
.np-theme-neutrino .nw-switch.nw--checked .switch__thumb,
.np-theme-neutrino .nw-switch.nw--checked:not(.nw--disabled) .switch__control:hover .switch__thumb {
  border-color: rgb(var(--nw-color-red));
}

.nw-checkbox {
  /* Checked/indeterminate + hover */
}
.nw-checkbox .checkbox__control {
  transition: var(--nw-transition-fast) border-color, var(--nw-transition-fast) background-color, var(--nw-transition-fast) color, var(--nw-transition-fast) box-shadow;
}

.nw-radio {
  position: relative;
  box-sizing: border-box;
  /* Hover */
  /* Focus */
  /* Checked */
  /* radio check ripple effect */
  /* Checked + hover */
  /* Checked + focus */
  /* When the control isn't checked, hide the circle for Windows High Contrast mode a11y */
}
.nw-radio *,
.nw-radio *::before,
.nw-radio *::after {
  box-sizing: inherit;
}
.nw-radio *::-webkit-scrollbar {
  width: 15px;
  height: 15px;
}
.nw-radio *::-webkit-scrollbar-thumb {
  background: #a3a3a3;
  border-radius: 7px;
  min-height: 30px;
  border: 3px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
}
.nw-radio *::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
}
.nw-radio * {
  scrollbar-face-color: #a3a3a3;
  scrollbar-track-color: rgba(0, 0, 0, 0);
}
.nw-radio .nw-core-radio {
  display: inline-flex;
  align-items: center;
  font-family: var(--nw-input-font-family);
  font-size: var(--nw-input-font-size-medium);
  font-weight: var(--nw-input-font-weight);
  color: rgb(var(--nw-input-color));
  vertical-align: middle;
  margin-right: 1rem;
}
.nw-radio .radio__icon {
  display: inline-flex;
  width: var(--nw-toggle-size);
  height: var(--nw-toggle-size);
}
.nw-radio .radio__icon svg {
  width: 100%;
  height: 100%;
  color: rgb(var(--nw-color-primary-500));
}
.nw-radio .radio__control {
  flex: 0 0 auto;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--nw-toggle-size);
  height: var(--nw-toggle-size);
  border: solid 2px rgb(var(--nw-color-neutral-600));
  border-radius: 50%;
  background-color: rgb(var(--nw-input-background-color));
  color: transparent;
  transition: var(--nw-transition-fast) border-color, var(--nw-transition-fast) background-color, var(--nw-transition-fast) color, var(--nw-transition-fast) box-shadow;
}
.nw-radio .radio__control input[type='radio'] {
  position: absolute;
  opacity: 0;
  padding: 0;
  margin: 0;
  pointer-events: none;
  -webkit-appearance: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgb(var(--nw-color-primary-300));
  transition: opacity 0.3s, transform 0.2s;
  outline: none;
}
.nw-radio .nw-core-radio:not(.radio--checked):not(.nw--disabled) .radio__control:hover {
  border-color: rgb(var(--nw-input-border-color-hover));
  background-color: rgb(var(--nw-input-background-color-hover));
}
.nw-radio .nw-core-radio input[type='radio']:hover {
  opacity: 0.3;
}
.nw-radio .nw-core-radio input[type='radio']:active {
  opacity: 1;
  transform: scale(0);
  transition: transform 0s, opacity 0s;
}
.nw-radio .nw-core-radio:not(.radio--checked) input[type='radio'] {
  background-color: rgb(var(--nw-color-neutral-300));
}
.nw-radio .nw-core-radio.radio--focused:not(.radio--checked):not(.nw--disabled) .radio__control {
  border-color: rgb(var(--nw-input-border-color-focus));
  background-color: rgb(var(--nw-input-background-color-focus));
  box-shadow: 0 0 0 var(--nw-focus-ring-width) rgb(var(--nw-color-primary-400) / var(--nw-focus-ring-alpha));
}
.nw-radio .radio--checked .radio__control {
  color: rgb(var(--nw-color-neutral-0));
  border-color: rgb(var(--nw-color-primary-500));
  /* background-color: rgb(var(--nw-color-primary-600));*/
}
.nw-radio .radio--checked .radio__control:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgb(var(--nw-color-primary-300));
  border-radius: 50%;
  visibility: visible;
  animation: nwRadioEffect 0.36s ease-in-out;
  animation-fill-mode: both;
  content: '';
}
@keyframes nwRadioEffect {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(2.3);
    opacity: 0;
  }
}
.nw-radio .nw-core-radio.radio--checked:not(.nw--disabled) .radio__control:hover {
  border-color: rgb(var(--nw-color-primary-400));
  /* background-color: rgb(var(--nw-color-primary-500)); */
}
.nw-radio .nw-core-radio.radio--checked:not(.nw--disabled).radio--focused .radio__control {
  border-color: rgb(var(--nw-color-primary-400));
  /* background-color: rgb(var(--nw-color-primary-500)); */
  box-shadow: 0 0 0 var(--nw-focus-ring-width) rgb(var(--nw-color-primary-400) / var(--nw-focus-ring-alpha));
}
.nw-radio .nw-core-radio:not(.radio--checked) svg circle {
  opacity: 0;
}
.nw-radio .radio__label {
  line-height: var(--nw-toggle-size);
  margin-left: 0.5em;
  user-select: none;
}

.nw-radio-button-group {
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
}
.nw-radio-button-group *,
.nw-radio-button-group *::before,
.nw-radio-button-group *::after {
  box-sizing: inherit;
}
.nw-radio-button-group *::-webkit-scrollbar {
  width: 15px;
  height: 15px;
}
.nw-radio-button-group *::-webkit-scrollbar-thumb {
  background: #a3a3a3;
  border-radius: 7px;
  min-height: 30px;
  border: 3px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
}
.nw-radio-button-group *::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
}
.nw-radio-button-group * {
  scrollbar-face-color: #a3a3a3;
  scrollbar-track-color: rgba(0, 0, 0, 0);
}
.nw-radio-button-group.vertical {
  flex-direction: column;
}
.nw-radio-button-group.vertical .nw-button {
  margin-top: -1px;
}
.nw-radio-button-group.horizontal {
  flex-wrap: nowrap;
}
.nw-radio-button-group.horizontal .nw-button {
  margin-left: -1px;
}
.nw-radio-button-group .nw-button .radio__input {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
.nw-radio-button-group .nw-button .button--primary .nw-core-icon {
  color: rgb(var(--nw-color-on-primary)) !important;
}
.nw-radio-button-group .nw-button:hover,
.nw-radio-button-group .nw-button:focus-within {
  position: relative;
  z-index: 1;
}

.nw-radio-image label {
  background-color: rgb(var(--nw-color-black) / 0.5);
}
.nw-radio-image .nw-core-icon {
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.6));
}

.nw-progress-bar {
  position: relative;
  box-sizing: border-box;
  --height: 16px;
  --track-color: rgb(var(--nw-color-neutral-300));
  --indicator-color: rgb(var(--nw-color-primary-500));
  --label-color: rgb(var(--nw-color-on-primary));
  display: block;
  /* Indeterminate */
}
.nw-progress-bar *,
.nw-progress-bar *::before,
.nw-progress-bar *::after {
  box-sizing: inherit;
}
.nw-progress-bar *::-webkit-scrollbar {
  width: 15px;
  height: 15px;
}
.nw-progress-bar *::-webkit-scrollbar-thumb {
  background: #a3a3a3;
  border-radius: 7px;
  min-height: 30px;
  border: 3px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
}
.nw-progress-bar *::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
}
.nw-progress-bar * {
  scrollbar-face-color: #a3a3a3;
  scrollbar-track-color: rgba(0, 0, 0, 0);
}
.nw-progress-bar .nw-core-progress-bar {
  position: relative;
  background-color: var(--track-color);
  height: var(--height);
  border-radius: var(--nw-border-radius-pill);
  overflow: hidden;
}
.nw-progress-bar .nw-core-progress-bar.simple {
  display: flex;
  background: inherit;
  border-radius: inherit;
  box-shadow: inherit;
  overflow: hidden;
  height: auto;
}
.nw-progress-bar .progress-bar__text {
  line-height: initial;
  white-space: nowrap;
}
.nw-progress-bar .progress-bar__indicator-container {
  width: 100%;
  height: 100%;
}
.nw-progress-bar .progress-bar__indicator {
  height: 100%;
  font-family: var(--nw-font-sans);
  font-size: 12px;
  font-weight: var(--nw-font-weight-normal);
  background-color: var(--indicator-color);
  color: var(--label-color);
  text-align: center;
  line-height: var(--height);
  white-space: nowrap;
  overflow: hidden;
  transition: 400ms width, 400ms background-color;
  user-select: none;
}
.nw-progress-bar .progress-bar__indicator.simple {
  height: 10px;
  border-radius: inherit;
  box-shadow: inherit;
  margin-top: 4px;
  margin-left: 8px;
  overflow: hidden;
  flex: 1;
}
.nw-progress-bar .progress-bar--indeterminate .progress-bar__indicator {
  position: absolute;
  animation: indeterminate 2.5s infinite cubic-bezier(0.37, 0, 0.63, 1);
}
@keyframes indeterminate {
  0% {
    left: -50%;
    width: 50%;
  }
  75%,
  100% {
    left: 100%;
    width: 50%;
  }
}

.nw-progress-ring {
  position: relative;
  box-sizing: border-box;
  --track-color: rgb(var(--nw-color-neutral-300));
  --indicator-color: rgb(var(--nw-color-primary-500));
  --speed: 2s;
  display: inline-flex;
  /* Indeterminate */
}
.nw-progress-ring *,
.nw-progress-ring *::before,
.nw-progress-ring *::after {
  box-sizing: inherit;
}
.nw-progress-ring *::-webkit-scrollbar {
  width: 15px;
  height: 15px;
}
.nw-progress-ring *::-webkit-scrollbar-thumb {
  background: #a3a3a3;
  border-radius: 7px;
  min-height: 30px;
  border: 3px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
}
.nw-progress-ring *::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
}
.nw-progress-ring * {
  scrollbar-face-color: #a3a3a3;
  scrollbar-track-color: rgba(0, 0, 0, 0);
}
.nw-progress-ring .nw-core-progress-ring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.nw-progress-ring .progress-ring__image {
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}
.nw-progress-ring .progress-ring__track {
  stroke: var(--track-color);
}
.nw-progress-ring .progress-ring__indicator {
  stroke: var(--indicator-color);
  transition: 0.35s stroke-dashoffset, 0.35s stroke;
}
.nw-progress-ring .progress-ring__label {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  user-select: none;
}
.nw-progress-ring .progress-ring--indeterminate .progress-ring__indicator {
  position: absolute;
  stroke-linecap: round;
  stroke-dasharray: 150% 75%;
  animation: ring-spin var(--speed) cubic-bezier(0.37, 0, 0.63, 1) infinite;
  transform-origin: 50% 50%;
}
@keyframes ring-spin {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(450deg);
  }
  100% {
    transform: rotate(1080deg);
  }
}

.input__prefix .nw-iconbutton,
.input__suffix .nw-iconbutton {
  padding-top: 2px;
  padding-bottom: 2px;
}

.nw-alert {
  position: relative;
  box-sizing: border-box;
  display: contents;
  /* For better DX, we'll reset the margin here so the base part can inherit it */
  margin: 0;
}
.nw-alert *,
.nw-alert *::before,
.nw-alert *::after {
  box-sizing: inherit;
}
.nw-alert *::-webkit-scrollbar {
  width: 15px;
  height: 15px;
}
.nw-alert *::-webkit-scrollbar-thumb {
  background: #a3a3a3;
  border-radius: 7px;
  min-height: 30px;
  border: 3px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
}
.nw-alert *::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
}
.nw-alert * {
  scrollbar-face-color: #a3a3a3;
  scrollbar-track-color: rgba(0, 0, 0, 0);
}
.nw-alert .nw-core-alert {
  position: relative;
  display: flex;
  align-items: center;
  background-color: rgb(var(--nw-color-neutral-100));
  border: solid 1px rgb(var(--nw-color-neutral-200));
  font-family: var(--nw-font-sans);
  font-size: var(--nw-font-size-medium);
  font-weight: var(--nw-font-weight-normal);
  color: rgb(var(--nw-color-neutral-700));
  padding: var(--nw-spacing-x-large);
  transition: opacity 0.25s ease;
}
.nw-alert .alert__icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  font-size: var(--nw-font-size-large);
  margin-right: var(--nw-spacing-x-large);
}
.nw-alert .alert--primary {
  color: rgb(var(--nw-color-primary-800));
  border-color: rgb(var(--nw-color-primary-200));
  background-color: rgb(var(--nw-color-primary-100));
}
.nw-alert .alert--primary .alert__icon {
  color: rgb(var(--nw-color-primary-800));
}
.nw-alert .alert--info {
  color: rgb(var(--nw-color-info-800));
  border-color: rgb(var(--nw-color-info-200));
  background-color: rgb(var(--nw-color-info-100));
}
.nw-alert .alert--info .alert__icon {
  color: rgb(var(--nw-color-info-800));
}
.nw-alert .alert--success {
  color: rgb(var(--nw-color-success-900));
  border-color: rgb(var(--nw-color-success-200));
  background-color: rgb(var(--nw-color-success-100));
}
.nw-alert .alert--success .alert__icon {
  color: rgb(var(--nw-color-success-900));
}
.nw-alert .alert--neutral .alert__icon {
  color: rgb(var(--nw-color-neutral-700));
}
.nw-alert .alert--caution {
  color: rgb(var(--nw-color-caution-800));
  border-color: rgb(var(--nw-color-caution-200));
  background-color: rgb(var(--nw-color-caution-100));
}
.nw-alert .alert--caution .alert__icon {
  color: rgb(var(--nw-color-caution-800));
}
.nw-alert .alert--warning {
  color: rgb(var(--nw-color-warning-800));
  border-color: rgb(var(--nw-color-warning-200));
  background-color: rgb(var(--nw-color-warning-100));
}
.nw-alert .alert--warning .alert__icon {
  color: rgb(var(--nw-color-warning-800));
}
.nw-alert .alert--danger {
  color: rgb(var(--nw-color-danger-900));
  border-color: rgb(var(--nw-color-danger-200));
  background-color: rgb(var(--nw-color-danger-100));
}
.nw-alert .alert--danger .alert__icon {
  color: rgb(var(--nw-color-danger-900));
}
.nw-alert .alert--critical {
  color: rgb(var(--nw-color-danger-950));
  border-color: rgb(var(--nw-color-danger-300));
  background-color: rgb(var(--nw-color-danger-200));
}
.nw-alert .alert--critical .alert__icon {
  color: rgb(var(--nw-color-danger-950));
}
.nw-alert .alert__message {
  flex: 1 1 auto;
  padding: 0;
  overflow: hidden;
}
.nw-alert .alert__close {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  font-size: var(--nw-font-size-large);
  padding-right: var(--nw-spacing-medium);
}
.nw-alert .alert--hide {
  opacity: 0;
  height: 0;
}
.nw-alert .nw-core-alert.alert--hide {
  padding: 0;
}

.nw-badge {
  position: relative;
  box-sizing: border-box;
  font-family: var(--nw-font-sans);
}
.nw-badge *,
.nw-badge *::before,
.nw-badge *::after {
  box-sizing: inherit;
}
.nw-badge *::-webkit-scrollbar {
  width: 15px;
  height: 15px;
}
.nw-badge *::-webkit-scrollbar-thumb {
  background: #a3a3a3;
  border-radius: 7px;
  min-height: 30px;
  border: 3px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
}
.nw-badge *::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
}
.nw-badge * {
  scrollbar-face-color: #a3a3a3;
  scrollbar-track-color: rgba(0, 0, 0, 0);
}
.nw-badge .nw-core-badge {
  font-size: var(--nw-font-size-x-small);
  font-weight: var(--nw-font-weight-semibold);
  letter-spacing: var(--nw-letter-spacing-normal);
  box-sizing: content-box;
}
.nw-badge .nw-core-badge .nw-core-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.nw-badge .nw-core-badge .nw-core-icon svg {
  border-radius: var(--nw-border-radius-circle);
}
.nw-badge .nw-core-badge .nw-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nw-badge .badge-content {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.nw-badge .badge--warning .nw-core-icon,
.nw-badge .badge--danger .nw-core-icon,
.nw-badge .badge--success .nw-core-icon {
  font-size: 0.8rem;
}
.nw-badge .badge--pill {
  border-radius: var(--nw-border-radius-pill);
}
.nw-badge .badge--pure--icon .nw-core-icon {
  font-size: 0.8rem;
}
.nw-badge .badge-info-icon .badge--pure--icon .nw-core-icon {
  font-size: 0.86666667rem;
}
.nw-badge .badge--size-small {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 0.85rem;
  height: 0.85rem;
}
.nw-badge .badge--size-small.badge-pill span {
  padding: 0 2px;
}
.nw-badge .badge--size-small .badge-text {
  font-size: 0.73333333rem;
}
.nw-badge .badge--size-small .nw-core-icon {
  font-size: 0.55rem;
}
.nw-badge .badge--size-medium {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 1rem;
  height: 1rem;
}
.nw-badge .badge--size-medium .badge-text {
  font-size: 0.71rem;
}
.nw-badge .badge--size-medium .nw-core-icon {
  font-size: 0.6rem;
}
.nw-badge .badge--size-large {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 1.25rem;
  height: 1.25rem;
}
.nw-badge .badge--size-large .badge-text {
  font-size: 1rem;
}
.nw-badge .badge--size-large .nw-core-icon {
  font-size: 0.86666667rem;
}
.nw-badge .badge--size-x-large {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 1.5rem;
  height: 1.5rem;
}
.nw-badge .badge--size-x-large .badge-text {
  font-size: 1.25rem;
}
.nw-badge .badge--size-x-large .nw-core-icon {
  font-size: 1rem;
}
.nw-badge .badge--size-medium .badge--anchor .badge-text {
  font-size: 0.86666667rem;
}
.nw-badge .badge--success .nw-core-icon,
.nw-badge .badge--warning .nw-core-icon {
  font-size: 0.6rem;
}
.nw-badge .badge--spinner {
  background-color: rgb(var(--nw-color-neutral-100));
}
.nw-badge .nw-spinner {
  height: 100%;
}
.nw-badge .badge--pulse {
  animation: pulse 1.5s infinite;
  font-size: 0.77rem;
}
.nw-badge .badge--circle {
  font-size: 0.73rem;
}
.nw-badge.badge-info-icon-wrapper {
  display: inline-flex;
}
.nw-badge.badge-info-icon-wrapper .nw-core-icon {
  position: absolute;
}
.nw-badge.badge-info-icon-wrapper .badge--size-medium {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 0.86666667rem;
  height: 0.86666667rem;
}
.nw-badge.badge-info-icon-wrapper .badge--size-medium .nw-core-icon {
  top: 0.13333333rem;
  left: 0.13333333rem;
}
.nw-badge.badge-info-icon-wrapper .badge--size-large .nw-core-icon {
  top: 0.13333333rem;
  left: 0.2rem;
}
.nw-badge.badge-info-icon-wrapper .badge--size-x-large .nw-core-icon {
  top: 0.2rem;
  left: 0.26666667rem;
}
.nw-badge .badge--pulse.badge--primary {
  --pulse-color: rgb(var(--nw-color-primary-500));
}
.nw-badge .badge--pulse.nw--disabled {
  --pulse-color: rgb(var(--nw-color-neutral-500));
}
.nw-badge .badge--pulse.badge--success {
  --pulse-color: rgb(var(--nw-color-success-500));
}
.nw-badge .badge--pulse.badge--neutral {
  --pulse-color: rgb(var(--nw-color-neutral-500));
}
.nw-badge .badge--pulse.badge--warning {
  --pulse-color: rgb(var(--nw-color-warning-500));
}
.nw-badge .badge--pulse.badge--danger {
  --pulse-color: rgb(var(--nw-color-danger-500));
}
.nw-badge .badge--pulse.badge--caution {
  --pulse-color: rgb(var(--nw-color-warning-600));
}
.nw-badge .badge--size-small .badge-text {
  font-size: 0.64rem;
}
.nw-badge .badge--size-medium .badge-icon-text {
  font-size: 0.71rem;
  padding-bottom: 2px;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 var(--pulse-color);
  }
  70% {
    box-shadow: 0 0 0 0.5em transparent;
  }
  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}

.nw-textarea {
  position: relative;
  box-sizing: border-box;
  display: block;
  /* Help text */
  /*
   * Size modifiers
   */
  /*
   * Resize types
   */
}
.nw-textarea *,
.nw-textarea *::before,
.nw-textarea *::after {
  box-sizing: inherit;
}
.nw-textarea *::-webkit-scrollbar {
  width: 15px;
  height: 15px;
}
.nw-textarea *::-webkit-scrollbar-thumb {
  background: #a3a3a3;
  border-radius: 7px;
  min-height: 30px;
  border: 3px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
}
.nw-textarea *::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
}
.nw-textarea * {
  scrollbar-face-color: #a3a3a3;
  scrollbar-track-color: rgba(0, 0, 0, 0);
}
.nw-textarea .nw-form-control .form-control__label {
  display: none;
}
.nw-textarea .nw-form-control .form-control__help-text {
  display: none;
}
.nw-textarea .form-control--has-help-text .form-control__help-text {
  display: block;
  color: rgb(var(--nw-input-help-text-color));
}
.nw-textarea .form-control--has-help-text .form-control__help-text ::slotted(*) {
  margin-top: var(--nw-spacing-xxx-small);
}
.nw-textarea .form-control--has-help-text.form-control--small .form-control__help-text {
  font-size: var(--nw-input-help-text-font-size-small);
}
.nw-textarea .form-control--has-help-text.form-control--medium .form-control__help-text {
  font-size: var(--nw-input-help-text-font-size-medium);
}
.nw-textarea .form-control--has-help-text.form-control--large .form-control__help-text {
  font-size: var(--nw-input-help-text-font-size-large);
}
.nw-textarea .textarea {
  position: relative;
  width: 100%;
  font-family: var(--nw-input-font-family);
  font-weight: var(--nw-input-font-weight);
  line-height: var(--nw-line-height-normal);
  letter-spacing: var(--nw-input-letter-spacing);
  background-color: rgb(var(--nw-color-panel-200));
  border: solid var(--nw-input-border-width) rgb(var(--nw-color-border));
  vertical-align: middle;
  transition: var(--nw-transition-fast) color, var(--nw-transition-fast) border, var(--nw-transition-fast) box-shadow;
  cursor: text;
}
.nw-textarea .textarea.nw--disabled {
  background-color: rgb(var(--nw-color-neutral-100));
  border-color: rgb(var(--nw-input-border-color-disabled));
  opacity: 0.5;
  cursor: not-allowed;
}
.nw-textarea .textarea.nw--disabled .textarea__control {
  color: rgb(var(--nw-input-color-disabled));
}
.nw-textarea .textarea.nw--disabled .textarea__control::placeholder {
  color: rgb(var(--nw-input-placeholder-color-disabled));
}
.nw-textarea .textarea__control {
  flex: 1 1 auto;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.4;
  color: rgb(var(--nw-input-color));
  border: none;
  background: none;
  box-shadow: none;
  -webkit-appearance: none;
}
.nw-textarea .textarea__control::-webkit-search-decoration,
.nw-textarea .textarea__control::-webkit-search-cancel-button,
.nw-textarea .textarea__control::-webkit-search-results-button,
.nw-textarea .textarea__control::-webkit-search-results-decoration {
  -webkit-appearance: none;
}
.nw-textarea .textarea__control::placeholder {
  color: rgb(var(--nw-input-placeholder-color));
  user-select: none;
}
.nw-textarea .textarea__control:focus {
  outline: none;
}
.nw-textarea .textarea--small {
  border-radius: var(--nw-input-border-radius-small);
  font-size: var(--nw-input-font-size-small);
}
.nw-textarea .textarea--small .textarea__control {
  padding: 0.5em var(--nw-input-spacing-small);
}
.nw-textarea .textarea--medium {
  border-radius: var(--nw-input-border-radius-medium);
  font-size: var(--nw-input-font-size-medium);
}
.nw-textarea .textarea--medium .textarea__control {
  padding: 0.5em var(--nw-input-spacing-medium);
}
.nw-textarea .textarea--large {
  border-radius: var(--nw-input-border-radius-large);
  font-size: var(--nw-input-font-size-large);
}
.nw-textarea .textarea--large .textarea__control {
  padding: 0.5em var(--nw-input-spacing-large);
}
.nw-textarea .textarea--resize-none .textarea__control {
  resize: none;
}
.nw-textarea .textarea--resize-vertical .textarea__control {
  resize: vertical;
}
.nw-textarea .textarea--resize-auto .textarea__control {
  height: auto;
  resize: none;
}
.nw-textarea .textarea-counter {
  text-align: right;
  font-size: 1rem;
}

.nw-form-control .form-control__label {
  display: none;
}
.nw-form-control .form-control__help-text {
  display: none;
}
/* Label */
.form-control--has-label .form-control__label {
  display: inline-block;
  color: var(--nw-input-label-color);
  margin-bottom: var(--nw-spacing-xxx-small);
}
.form-control--has-label .form-control--flex {
  display: flex;
}
.form-control--has-label .form-control--flex1 {
  flex: 1;
}
.form-control--has-label .form-control--ml5 {
  margin-left: 5px;
}
.form-control--has-label .form-control--mr5 {
  margin-right: 5px;
}
.form-control__label--hidden {
  border: 0;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  display: none;
}
.form-control--has-label.form-control--small .form-control__label {
  font-size: var(--nw-input-label-font-size-small);
}
.form-control--has-label.form-control--medium .form-control__label {
  font-size: var(--nw-input-label-font-size-medium);
}
.form-control--has-label.form-control--large .form-control_label {
  font-size: var(--nw-input-label-font-size-large);
}
/* Help text */
.form-control--has-help-text .form-control__help-text {
  display: block;
  color: rgb(var(--nw-input-help-text-color));
}
.form-control--has-help-text .form-control__help-text ::slotted(*) {
  margin-top: var(--nw-spacing-xxx-small);
}
.form-control--has-help-text.form-control--small .form-control__help-text {
  font-size: var(--nw-input-help-text-font-size-small);
}
.form-control--has-help-text.form-control--medium .form-control__help-text {
  font-size: var(--nw-input-help-text-font-size-medium);
}
.form-control--has-help-text.form-control--large .form-control__help-text {
  font-size: var(--nw-input-help-text-font-size-large);
}

.nw-floating-ui {
  max-height: calc(100vh - 20px);
  max-width: 100%;
  overflow: auto;
  border: 1px solid rgb(var(--nw-color-border));
  background-color: rgb(var(--nw-color-panel-50));
  color: rgb(var(--nw-color-neutral-1000));
  box-shadow: 0 3px 6px rgba(var(--nw-color-neutral-1000) / 0.23), 0 3px 6px rgba(var(--nw-color-neutral-1000) / 0.36);
  z-index: var(--nw-z-index-dialog);
}

.nw-drawer {
  --size: 80%;
  --overlay-z-index: 1;
  display: contents;
}
.nw-drawer .nw-core-drawer {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}
.nw-drawer .drawer--contained {
  position: absolute;
  z-index: initial;
}
.nw-drawer .drawer--fixed {
  position: fixed;
  z-index: var(--nw-z-index-drawer);
}
.nw-drawer .drawer__panel {
  position: absolute;
  display: flex;
  flex-direction: column;
  z-index: calc(var(--overlay-z-index) + 1);
  max-width: 100%;
  max-height: 100%;
  box-shadow: var(--nw-shadow-x-large);
  transition: width var(--nw-transition-medium), height var(--nw-transition-medium) linear, var(--nw-transition-medium) transform;
  pointer-events: all;
}
.nw-drawer .drawer__panel:focus {
  outline: none;
}
.nw-drawer .drawer--top .drawer__panel {
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  width: 100%;
  height: var(--size);
}
.nw-drawer .drawer--top .drawer__panel.drawer__panel-resizable {
  padding-bottom: 12px;
}
.nw-drawer .drawer--end .drawer__panel {
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  width: var(--size);
  height: 100%;
}
.nw-drawer .drawer--end .drawer__panel.drawer__panel-resizable {
  padding-left: 12px;
}
.nw-drawer .drawer--bottom .drawer__panel {
  top: auto;
  right: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--size);
}
.nw-drawer .drawer--bottom .drawer__panel.drawer__panel-resizable {
  padding-top: 12px;
}
.nw-drawer .drawer--start .drawer__panel {
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  width: var(--size);
  height: 100%;
}
.nw-drawer .drawer--start .drawer__panel.drawer__panel-resizable {
  padding-right: 12px;
}
.nw-drawer .drawer__panel.drawer__panel-resizable {
  box-sizing: border-box;
}
.nw-drawer .drawer__overlay {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgb(var(--nw-color-neutral-1000) / 0.5);
  pointer-events: all;
}
.nw-drawer .drawer--contained .drawer__overlay {
  position: absolute;
  z-index: var(--overlay-z-index);
}
.nw-drawer .drawer__resizer {
  background-color: rgb(var(--nw-color-neutral-100));
  position: absolute;
}
.nw-drawer .drawer__resizer .drawer__resizer__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
}
.nw-drawer .drawer__resizer.drawer__resizer--top,
.nw-drawer .drawer__resizer.drawer__resizer--bottom {
  height: 12px;
  width: 100%;
  cursor: ns-resize;
}
.nw-drawer .drawer__resizer.drawer__resizer--top .drawer__resizer__icon {
  top: 40%;
  transform: translate(-50%, -50%) rotate(90deg);
}
.nw-drawer .drawer__resizer.drawer__resizer--bottom .drawer__resizer__icon {
  top: 40%;
  transform: translate(-50%, -50%) rotate(90deg);
}
.nw-drawer .drawer__resizer.drawer__resizer--left,
.nw-drawer .drawer__resizer.drawer__resizer--right {
  height: 100%;
  width: 12px;
  cursor: ew-resize;
}
.nw-drawer .drawer__resizer.drawer__resizer--left .drawer__resizer__icon {
  left: 40%;
  transform: translate(-50%, -50%);
}
.nw-drawer .drawer__resizer.drawer__resizer--right .drawer__resizer__icon {
  left: 40%;
  transform: translate(-50%, -50%);
}
.nw-drawer .drawer__resizer.drawer__resizer--top {
  bottom: 0px;
}
.nw-drawer .drawer__resizer.drawer__resizer--left {
  right: 0px;
}
.nw-drawer .drawer__resizer.drawer__resizer--bottom {
  top: 0px;
}
.nw-drawer .drawer__resizer.drawer__resizer--right {
  left: 0px;
}

.nw-dropdown.dropdown__panel div[role='dialog'] {
  max-height: 75vh;
  font-family: var(--nw-font-sans);
  font-size: var(--nw-font-size-medium);
  font-weight: var(--nw-font-weight-normal);
  color: var(--color);
  background-color: rgb(var(--nw-color-panel-50));
  pointer-events: all;
  border: solid 1px rgb(var(--nw-color-border-300));
  border-radius: var(--nw-border-radius-medium);
  box-shadow: none;
  overflow: auto;
  overscroll-behavior: none;
}

.nw-dialog {
  --width: 31rem;
  --height: '';
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: var(--nw-z-index-dialog);
}
.nw-dialog__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 2;
  width: var(--width);
  height: var(--height);
  max-width: calc(100% - var(--nw-spacing-xx-large));
  max-height: calc(100% - var(--nw-spacing-xx-large));
  border-radius: var(--nw-border-radius-medium);
  border: 1px solid rgb(var(--nw-color-neutral-300));
  transition: width var(--nw-transition-medium), height var(--nw-transition-medium) linear;
}
.nw-dialog__panel:focus {
  outline: none;
}
/* Ensure there's enough vertical padding for phones that don't update vh when chrome appears (e.g. iPhone) */
@media screen and (max-width: 420px) {
  .nw-dialog__panel {
    max-height: 80vh;
  }
}
.nw-dialog--open .nw-dialog__panel {
  opacity: 1;
  transform: none;
}
.nw-dialog__overlay {
  background-color: rgb(var(--nw-color-neutral-1000) / 0.5);
}

.nw-ip-range {
  position: relative;
  box-sizing: border-box;
}
.nw-ip-range *,
.nw-ip-range *::before,
.nw-ip-range *::after {
  box-sizing: inherit;
}
.nw-ip-range *::-webkit-scrollbar {
  width: 15px;
  height: 15px;
}
.nw-ip-range *::-webkit-scrollbar-thumb {
  background: #a3a3a3;
  border-radius: 7px;
  min-height: 30px;
  border: 3px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
}
.nw-ip-range *::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
}
.nw-ip-range * {
  scrollbar-face-color: #a3a3a3;
  scrollbar-track-color: rgba(0, 0, 0, 0);
}
.nw-ip-range.widget-error:not(.nw--disabled).input--focused > .input__control {
  box-shadow: rgba(var(--nw-color-danger-600) / 60%) 0px 1px 7px 0px, rgba(var(--nw-color-danger-600) / 60%) 0px 0px 3px 0px;
}
.nw-ip-range .help-block {
  padding-top: 0.25rem;
  color: rgb(var(--nw-color-danger-500));
}

.progress-tracker {
  display: flex;
  margin: auto;
  padding: 0;
  list-style: none;
  text-align: center;
}
.progress-tracker .progress-step {
  flex: 1;
  min-width: 30px;
}
.progress-tracker .progress-step:last-child .progress-marker .path {
  display: none;
}
.progress-tracker .progress-step .progress-marker {
  display: block;
  position: relative;
}
.progress-tracker .progress-step .progress-marker .marker {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: rgb(var(--nw-color-primary-500));
  border-radius: 50%;
  border: solid 4px rgb(var(--nw-color-neutral-300));
}
.progress-tracker .progress-step .progress-marker .path {
  right: -50%;
  display: block;
  position: absolute;
  top: 15px;
  height: 4px;
  background-color: rgb(var(--nw-color-neutral-300));
  width: calc(100% - 50px);
  margin-left: 25px;
  margin-right: 25px;
  border-radius: 5px;
}
.progress-tracker .progress-step .progress-name {
  display: block;
  padding: 15px 10px;
}
.progress-tracker .progress-step.is-current .progress-marker .marker,
.progress-tracker .progress-step.is-complete .progress-marker .marker {
  color: rgb(var(--nw-color-neutral-0));
  background: rgb(var(--nw-color-primary-500));
  border-color: rgb(var(--nw-color-primary-500));
}
.progress-tracker .progress-step.is-complete .progress-marker .marker {
  cursor: pointer;
}
.progress-tracker .progress-step.is-complete .progress-marker .marker:hover {
  background: rgb(var(--nw-color-primary-400));
  border-color: rgb(var(--nw-color-primary-400));
}
.progress-tracker .progress-step.is-complete .progress-marker .path {
  background: rgb(var(--nw-color-primary-400));
}

.nw-resizer-container {
  height: 100%;
  width: 100%;
  display: flex;
}
.nw-resizer-container.horizontal {
  flex-direction: row;
}
.nw-resizer-container.vertical {
  flex-direction: column;
}
.nw-resizer-container .slot-w-handle {
  position: relative;
  display: flex;
}
.nw-resizer-container .slot-w-handle.horizontal {
  border-top: 0;
  border-bottom: 0;
  border-left: 0;
  border-right: 1px;
  border-style: solid;
  border-color: rgb(var(--nw-color-neutral-300));
}
.nw-resizer-container .slot-w-handle.vertical {
  flex-direction: column;
  border-top: 0;
  border-bottom: 1px;
  border-left: 0;
  border-right: 0;
  border-style: solid;
  border-color: rgb(var(--nw-color-neutral-300));
}
.nw-resizer-container .slot-grow {
  flex-grow: 1;
}
.nw-resizer-handle {
  position: absolute;
}
.nw-resizer-handle.active {
  background-color: rgb(var(--nw-color-primary));
}
.nw-resizer-handle.vertical {
  width: 100%;
  bottom: 0px;
}
.nw-resizer-handle.vertical.resizer-handle-enabled {
  height: 2px;
  cursor: ns-resize;
}
.nw-resizer-handle.horizontal {
  height: 100%;
  right: 0px;
}
.nw-resizer-handle.horizontal.resizer-handle-enabled {
  width: 2px;
  cursor: ew-resize;
}

.nw-avatar {
  display: inline-block;
  --avatar-font-size: 1rem;
}
.nw-avatar .nw-core-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: rgb(var(--nw-color-neutral-100));
  font-family: var(--nw-font-sans);
  font-size: var(--avatar-font-size);
  font-weight: var(--nw-font-weight-normal);
  overflow: hidden;
  user-select: none;
  vertical-align: middle;
}
.nw-avatar .nw-core-avatar.avatar--xsmall {
  width: 1.5rem;
  height: 1.5rem;
}
.nw-avatar .nw-core-avatar.avatar--small {
  width: 2rem;
  height: 2rem;
}
.nw-avatar .nw-core-avatar.avatar--medium {
  width: 3.6rem;
  height: 3.6rem;
}
.nw-avatar .nw-core-avatar.avatar--large {
  width: 5.33rem;
  height: 5.33rem;
}
.nw-avatar .avatar--circle {
  border-radius: var(--nw-border-radius-circle);
}
.nw-avatar .avatar--rounded {
  border-radius: var(--nw-border-radius-medium);
}
.nw-avatar .avatar--square {
  border-radius: 0;
}
.nw-avatar .avatar--bordered {
  border-radius: var(--nw-border-radius-circle);
  border: solid 2px rgb(var(--nw-color-neutral-0));
}
.nw-avatar .avatar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.nw-avatar .avatar__icon .icon-xsmall {
  width: calc(var(--avatar-font-size) * 0.8);
  height: calc(var(--avatar-font-size) * 0.8);
}
.nw-avatar .avatar__icon .icon-small {
  width: 1rem;
  height: 1rem;
}
.nw-avatar .avatar__icon .icon-medium {
  width: 1.75rem;
  height: 1.75rem;
}
.nw-avatar .avatar__icon .icon-large {
  width: 3.33rem;
  height: 3.33rem;
}
.nw-avatar .avatar__initials {
  line-height: 1;
  text-transform: uppercase;
  color: rgb(var(--nw-color-primary-500));
}
.nw-avatar .avatar__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nw-treeitem .nw-iconbutton {
  font-size: 0.8rem;
  padding: 1px 2px;
}
.nw-treeitem > * {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nw-treeitem .indent-line::before {
  left: 0.5rem;
  border-right: 1px solid rgb(var(--nw-color-neutral-300));
}
.nw-treeitem .branch-line::before {
  left: 0.5rem;
  border-right: 1px solid rgb(var(--nw-color-neutral-300));
}
.nw-treeitem .branch-line::after {
  left: 0.5rem;
  border-bottom: 1px solid rgb(var(--nw-color-neutral-300));
}
.nw-treeitem .leaf-line.show {
  border-bottom: 1px solid rgb(var(--nw-color-neutral-300));
}

.nw-stack {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.nw-stack .nw-core-icon svg {
  position: absolute;
}
/* Stack icon on the bottom right */
.nw-stack-br {
  position: absolute;
  bottom: -0.25em;
  right: -0.25em;
  height: 0.75em;
  width: 0.75em;
  border-radius: 9999px;
  border: 1px solid rgb(var(--nw-color-neutral-0));
  background-color: rgb(var(--nw-color-neutral-0));
}
.nw-stack-tr {
  position: absolute;
  top: -0.25em;
  right: -0.25em;
  height: 0.5em;
  width: 0.5em;
  border-radius: 9999px;
  background-color: rgb(var(--nw-color-neutral-0));
  padding: 0.075em;
}

.nw-panel-border {
  outline: 1px solid rgb(var(--nw-input-border-color));
}
.nw-panel-border .nw-panel-border {
  outline: none;
}

.nw-gap-small {
  display: flex;
  gap: 0.25rem;
}
.nw-gap-medium {
  display: flex;
  gap: 0.5rem;
}
.nw-gap-large {
  display: flex;
  gap: 0.75rem;
}

.np-label {
  flex-shrink: 0;
}
.np-label nw-badge {
  margin-left: 0.125rem;
}

.np-section-title {
  display: block;
  padding: 0.5rem 1rem;
  background-color: rgb(var(--nw-color-header-300));
}
.np-theme-dark-matter .np-section-title {
  background-color: rgb(var(--nw-color-header-200));
}
.np-section-tooltip-trigger {
  margin-left: 0.5rem;
}
.np-section-tooltip-trigger::part(base) {
  background-color: rgb(var(--nw-color-gray-600));
}
.np-section-tooltip {
  max-width: 20rem;
}
.np-section-body {
  padding: 1rem;
  box-sizing: border-box;
}
.np-section-body--md {
  width: 58%;
}
.np-section-body--lg {
  width: 80%;
}
.np-section-body--full {
  width: 100%;
}
.np-section-title nw-badge {
  margin-left: 0.125rem;
}

.np-body--default {
  padding: 1rem;
  flex-grow: 1;
  flex-basis: 0px;
  overflow-y: auto;
}

@media (min-width: 768px) {
  .np-section {
    min-width: 43rem;
  }
  .np-section .np-row {
    gap: 1rem;
  }
  .np-section .np-row > .np-col-rest {
    flex-grow: 1;
    flex-basis: 0;
    min-width: 14rem;
  }
  .np-section .np-row > .np-col-ind-1 {
    margin-left: 1rem;
  }
  .np-section .np-row > .np-col-ind-2 {
    margin-left: 2rem;
  }
  .np-section .np-row > .np-col-xs {
    width: 6rem;
  }
  .np-section .np-row > .np-col-xs.np-col-ind-1 {
    width: 5rem;
  }
  .np-section .np-row > .np-col-xs.np-col-ind-2 {
    width: 4rem;
  }
  .np-section .np-row > .np-col-sm {
    width: 13rem;
  }
  .np-section .np-row > .np-col-sm.np-col-ind-1 {
    width: 12rem;
  }
  .np-section .np-row > .np-col-sm.np-col-ind-2 {
    width: 11rem;
  }
  .np-section .np-row > .np-col-md {
    width: 20rem;
  }
  .np-section .np-row > .np-col-md.np-col-ind-1 {
    width: 19rem;
  }
  .np-section .np-row > .np-col-md.np-col-ind-2 {
    width: 18rem;
  }
  .np-section .np-row > .np-col-lg {
    width: 27rem;
  }
  .np-section .np-row > .np-col-lg.np-col-ind-1 {
    width: 26rem;
  }
  .np-section .np-row > .np-col-lg.np-col-ind-2 {
    width: 25rem;
  }
  .np-section .np-row > .np-col-xl {
    width: 34rem;
  }
  .np-section .np-row > .np-col-xl.np-col-ind-1 {
    width: 33rem;
  }
  .np-section .np-row > .np-col-xl.np-col-ind-2 {
    width: 32rem;
  }
  .np-section .np-row.hover-effect:hover > label {
    text-decoration: underline;
  }
}
@media (max-width: 1279px) {
  .np-section-body {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .np-row {
    flex-wrap: wrap;
  }
  .np-row > .np-col {
    width: 100%;
  }
}
.np-section > nw-details::part(base) {
  border: 0;
}
.np-section > nw-details::part(content) {
  padding: 0;
}
.np-section > nw-details::part(header) {
  padding: 0.5rem 1rem;
  gap: 0.5rem;
  background-color: rgb(var(--nw-color-header-300));
  margin-bottom: 0.5rem;
}
.np-section > nw-details::part(summary) {
  flex-grow: 0;
}
.np-section .section-tooltip::part(base) {
  background-color: rgb(var(--nw-color-neutral-0));
  border-color: rgb(var(--nw-color-neutral-1000));
  box-shadow: 2px 2px 8px rgb(var(--nw-color-neutral-1000));
}
.np-theme-dark-matter .np-section > nw-details::part(header) {
  background-color: rgb(var(--nw-color-header-200));
}
.np-subsection > nw-details::part(base) {
  border: 0;
}
.np-subsection > nw-details::part(content) {
  padding: 0;
}
.np-subsection > nw-details::part(header) {
  padding: 0.5rem 0rem;
  gap: 0.5rem;
  background-color: rgb(var(--nw-color-transparent));
  font-weight: bold;
}
.np-subsection > nw-details::part(summary) {
  flex-grow: 0;
}
.nw-dialog .np-body,
.nw-drawer .np-body {
  padding: 1rem;
}
.nw-dialog .np-footer,
.nw-drawer .np-footer {
  padding: 10px 15px;
}
.nw-dialog .np-footer .nw-button,
.nw-drawer .np-footer .nw-button {
  min-width: 8rem;
}
.nw-drawer .np-header {
  height: 36px;
  padding: 7.5px 15px;
}
.nw-dialog .np-header {
  height: 45px;
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
}
.nw-dialog .np-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-action-dropdown .trigger-btn[aria-expanded='true']:not(.disabled) {
  background-color: rgb(var(--nw-color-panel-50));
  color: rgb(var(--nw-color-neutral-1000));
  border-color: rgb(var(--nw-color-border-300));
  border-bottom-color: transparent;
}
.header-action-dropdown .trigger-btn[aria-expanded='true']:not(.disabled):hover {
  background-color: rgb(var(--nw-color-neutral-100));
}
.header-action-dropdown:last-child .trigger-btn {
  margin-right: 1px;
}
.header-action-dropdown-dd {
  border-top: none !important;
}
.header-action-dropdown-dd nw-menu {
  --nw-panel-border-color: var(--nw-color-neutral-300);
}

.prolayout-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgb(var(--nw-color-navbar));
  color: rgb(var(--nw-color-on-navbar));
}

.prolayout-header-baserow,
.prolayout-header-suppliment {
  height: 2.75rem;
  width: 100%;
  display: flex;
  align-items: center;
}

.prolayout-header-suppliment {
  overflow: hidden;
}

.nw-pro-layout-menu-item-action-dropdown-container {
  border: solid 1px rgb(var(--nw-color-neutral-800));
  background-color: rgb(var(--nw-panel-background-color));
  color: rgb(var(--nw-color-neutral-1000));
  box-shadow: var(--nw-shadow-large);
  overflow: auto;
  overscroll-behavior: none;
  max-height: 75vh;
  z-index: 901;
}

ul.nw-pro-layout-nav .nw-pro-menu-item.disabled:hover .menu-label-right {
  background-color: rgb(var(--nw-color-neutral-200) / 0.5);
}
ul.nw-pro-layout-nav .nw-pro-menu-item.disabled:hover .menu-label-right.is-app-side-menu {
  background-color: rgb(var(--nw-color-sidebar-expanded-hover) / 0.5);
}
ul.nw-pro-layout-nav .nw-pro-menu-item:focus {
  outline: 1px auto rgb(var(--nw-color-primary));
}
ul.nw-pro-layout-nav .nw-pro-menu-item:focus.active {
  outline: 1px auto rgb(var(--nw-color-primary-300));
}
ul.nw-pro-layout-nav .nw-pro-menu-item .fav-icon:hover {
  transform: rotate(10deg);
}
ul.nw-pro-layout-nav div.layout-nav-entry.nw-pro-layout-nav__expanded > div .nw-pro-menu-item .expanded-icon {
  transform: rotate(90deg);
}
@-moz-document url-prefix() {
  ul.nw-pro-layout-nav .nw-pro-menu-item:focus {
    outline: 1px auto rgb(var(--nw-color-primary));
    outline-offset: -1px;
    outline-style: solid;
  }
  ul.nw-pro-layout-nav .nw-pro-menu-item:focus.active {
    outline: 1px auto rgb(var(--nw-color-primary-300));
    outline-style: solid;
  }
}

*.nwp-layout__collapsed-nav-popup.nw-floating-ui {
  max-height: 95vh;
  font-family: var(--nw-font-sans);
  font-size: var(--nw-font-size-medium);
  font-weight: var(--nw-font-weight-normal);
  pointer-events: all;
  box-shadow: none;
  overflow: auto;
  border: solid 1px rgb(var(--nw-color-primary));
  border-left: 0;
  background-color: rgb(var(--item-bg-color));
}
*.nwp-layout__collapsed-nav-popup.nw-floating-ui .menu-label,
*.nwp-layout__collapsed-nav-popup.nw-floating-ui .menu-label .tw-overflow-hidden {
  overflow: unset;
}
*.nwp-layout__collapsed-nav-popup.nw-floating-ui *::-webkit-scrollbar-track {
  background: rgb(var(--item-bg-color));
}
*.nwp-layout__collapsed-nav-popup.nw-floating-ui .nwp-layout__collapsed-nav-scroll > .nw-pro-layout-nav > * {
  border-left: solid 1px rgb(var(--nw-color-primary));
}
*.nwp-layout__collapsed-nav-popup.nw-floating-ui .layout-nav-entry {
  background-color: rgb(var(--item-bg-color));
}
*.nwp-layout__collapsed-nav-popup.nw-floating-ui .nwp-layout__collapsed-nav-header .nw-pro-menu-item > * {
  background-color: rgb(var(--item-bg-color));
  border-color: rgb(var(--item-bg-color));
  color: rgb(var(--nw-color-neutral-1000));
}
*.nwp-layout__collapsed-nav-popup.nw-floating-ui .nwp-layout__collapsed-nav-header .nw-pro-menu-item .expanded-icon {
  display: none;
}
*.nwp-layout__collapsed-nav-popup.nw-floating-ui .nw-pro-menu-item.nwp-layout__menu-item--clickable > * {
  background-color: rgb(var(--item-bg-color));
  border-color: rgb(var(--item-bg-color));
  color: rgb(var(--nw-color-link));
}
*.nwp-layout__collapsed-nav-popup.nw-floating-ui .nw-pro-menu-item.nwp-layout__menu-item--clickable.disabled .menu-label-right {
  background-color: rgb(var(--item-bg-color) / 0.5);
  border-color: rgb(var(--item-bg-color) / 0.5);
}
*.nwp-layout__collapsed-nav-popup.nw-floating-ui .nw-pro-menu-item.nwp-layout__menu-item--clickable.disabled:hover .menu-label-right {
  background-color: rgb(var(--item-hover-bg-color) / 0.5);
  border-color: rgb(var(--item-hover-bg-color) / 0.5);
}
*.nwp-layout__collapsed-nav-popup.nw-floating-ui .nw-pro-menu-item.nwp-layout__menu-item--clickable:not(.active):hover > * {
  background-color: rgb(var(--item-hover-bg-color));
  border-color: rgb(var(--item-hover-bg-color));
  color: rgb(var(--nw-color-neutral-1000));
}
*.nwp-layout__collapsed-nav-popup.nw-floating-ui .nw-pro-menu-item.nwp-layout__menu-item--clickable.active > * {
  background-color: rgb(var(--nw-color-primary));
  border-color: rgb(var(--nw-color-primary));
  color: rgb(var(--nw-color-on-primary));
}
*.nwp-layout__collapsed-nav-popup.nw-floating-ui .nw-pro-menu-item.nwp-layout__menu-item--clickable.active:hover > * {
  background-color: rgb(var(--nw-color-primary-600));
  border-color: rgb(var(--nw-color-primary-600));
}
*.nwp-layout__collapsed-nav-popup.nw-floating-ui .nw-pro-menu-item.nwp-layout__menu-item--clickable:not(.active).is-expanded > :first-child {
  background-color: rgb(var(--nw-color-primary));
  border-color: rgb(var(--nw-color-primary));
}
*.nwp-layout__collapsed-nav-popup.nw-floating-ui .nw-pro-menu-item.nwp-layout__menu-item--clickable:not(.active).is-expanded:hover > :first-child {
  background-color: rgb(var(--nw-color-primary-600));
  border-color: rgb(var(--nw-color-primary-600));
}
.nwp-layout__collapsed-menu-item--open-color {
  background-color: rgb(var(--nw-color-neutral-50));
}
*.nwp-layout__collapsed-nav-popup.nw-floating-ui {
  --item-bg-color: var(--nw-color-neutral-50);
  --item-hover-bg-color: var(--nw-color-neutral-100);
}
.nw-dark .nwp-layout__collapsed-menu-item--open-color {
  background-color: rgb(var(--nw-color-neutral-300));
}
.nw-dark *.nwp-layout__collapsed-nav-popup.nw-floating-ui {
  --item-bg-color: var(--nw-color-neutral-300);
  --item-hover-bg-color: var(--nw-color-neutral-400);
}
.nw-dark-contrast .nwp-layout__collapsed-menu-item--open-color {
  background-color: rgb(var(--nw-color-neutral-100));
}
.nw-dark-contrast *.nwp-layout__collapsed-nav-popup.nw-floating-ui {
  --item-bg-color: var(--nw-color-neutral-100);
  --item-hover-bg-color: var(--nw-color-neutral-300);
}
ul.nw-pro-layout-nav .nw-pro-menu-item.nwp-layout__collapsed-menu-item {
  outline: none;
}

.nwp-layout__vmenu .menu-content::-webkit-scrollbar {
  width: 8px;
  height: 15px;
}
.nwp-layout__vmenu .menu-content::-webkit-scrollbar-thumb {
  background: rgb(var(--nw-color-neutral-400));
  border-radius: 5px;
  min-height: 9px;
  border: 1px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
}
.nwp-layout__vmenu .menu-content::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
}
.nwp-layout__vmenu--collapsed-animation .menu-label-center,
.nwp-layout__vmenu--collapsed-animation .menu-footer > *,
.nwp-layout__vmenu--collapsed-animation .nw-pro-layout-nav__expanded ul {
  transition-timing-function: ease-in-out;
  transition-duration: 500ms;
}
.nwp-layout__vmenu--collapsed-animation .nw-pro-menu-item.active > *:not(:first-child) {
  transition-timing-function: ease-in-out;
  transition-duration: 200ms;
}
.nwp-layout__vmenu--collapsed-animation .menu-label-center,
.nwp-layout__vmenu--collapsed-animation .menu-footer > * {
  transition-property: opacity;
}
.nwp-layout__vmenu--collapsed-animation .nw-pro-layout-nav__expanded ul {
  transition-property: max-height;
}
.nwp-layout__vmenu--collapsed-animation .nw-pro-menu-item.active > *:not(:first-child) {
  transition-property: background-color, color, border-color;
}
.nwp-layout__vmenu--collapsed-animation.collapsed .menu-label-center,
.nwp-layout__vmenu--collapsed-animation.collapsed .menu-footer > * {
  opacity: 0;
}
.nwp-layout__vmenu--collapsed-animation.collapsed .nw-pro-layout-nav__expanded ul {
  max-height: 0 !important;
}
.nwp-layout__vmenu--collapsed-animation.collapsed .nw-pro-menu-item.active > *:not(:first-child) {
  background-color: rgb(var(--nw-color-sidebar-expanded));
  color: rgb(var(--nw-color-on-sidebar));
  border-color: transparent;
}
.nwp-layout__vmenu--w-none {
  width: 0px;
}
.nwp-layout__vmenu--w-mini {
  width: 3.5rem;
}

.nwp-hmenu {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  min-height: 2.75rem;
  max-height: 4rem;
  width: 100%;
  overflow: hidden;
  background-color: rgb(var(--nw-color-neutral-50));
  border-bottom: 1px solid rgb(var(--nw-color-neutral-300));
  transition-property: width, height, opacity;
  transition-duration: 400ms;
  transition-timing-function: ease-in-out;
}
.nwp-hmenu .nwp-hmenu-menu-item,
.nwp-hmenu .nwp-hmenu-button,
.nwp-hmenu .nwp-hmenu-action-dropdown,
.nwp-hmenu .nwp-hmenu-more-items-dropdown,
.nwp-hmenu .nwp-hmenu-action-button,
.nwp-hmenu .nw-button {
  display: flex;
  align-items: center;
  height: 100%;
  min-height: 2.75rem;
  max-width: 30rem;
  border: none;
  border-right: 1px solid rgb(var(--nw-color-neutral-300));
  width: 100%;
  padding: 0 0.8rem;
}
.nwp-hmenu .nwp-hmenu-menu-item.active,
.nwp-hmenu .nwp-hmenu-button.active,
.nwp-hmenu .nwp-hmenu-action-dropdown.active,
.nwp-hmenu .nwp-hmenu-more-items-dropdown.active,
.nwp-hmenu .nwp-hmenu-action-button.active,
.nwp-hmenu .nw-button.active {
  color: rgb(var(--nw-color-on-sidebar-active));
}
.nwp-hmenu .nwp-hmenu-menu-item.active:hover,
.nwp-hmenu .nwp-hmenu-button.active:hover,
.nwp-hmenu .nwp-hmenu-action-dropdown.active:hover,
.nwp-hmenu .nwp-hmenu-more-items-dropdown.active:hover,
.nwp-hmenu .nwp-hmenu-action-button.active:hover,
.nwp-hmenu .nw-button.active:hover {
  background-color: rgb(var(--nw-color-primary-600));
}
.nwp-hmenu .nwp-hmenu-menu-item.active:focus,
.nwp-hmenu .nwp-hmenu-button.active:focus,
.nwp-hmenu .nwp-hmenu-action-dropdown.active:focus,
.nwp-hmenu .nwp-hmenu-more-items-dropdown.active:focus,
.nwp-hmenu .nwp-hmenu-action-button.active:focus,
.nwp-hmenu .nw-button.active:focus {
  outline: 1px auto rgb(var(--nw-color-primary-300));
}
.nwp-hmenu .nwp-hmenu-menu-item:not(.active):hover,
.nwp-hmenu .nwp-hmenu-button:not(.active):hover,
.nwp-hmenu .nwp-hmenu-action-dropdown:not(.active):hover,
.nwp-hmenu .nwp-hmenu-more-items-dropdown:not(.active):hover,
.nwp-hmenu .nwp-hmenu-action-button:not(.active):hover,
.nwp-hmenu .nw-button:not(.active):hover {
  color: rgb(var(--nw-color-on-sidebar-expanded-hover));
  background-color: rgb(var(--nw-color-sidebar-expanded-hover));
}
.nwp-hmenu .nwp-hmenu-menu-item:not(.active):focus,
.nwp-hmenu .nwp-hmenu-button:not(.active):focus,
.nwp-hmenu .nwp-hmenu-action-dropdown:not(.active):focus,
.nwp-hmenu .nwp-hmenu-more-items-dropdown:not(.active):focus,
.nwp-hmenu .nwp-hmenu-action-button:not(.active):focus,
.nwp-hmenu .nw-button:not(.active):focus {
  outline: 1px auto rgb(var(--nw-color-primary));
}
.nwp-hmenu .nw-button {
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
}
.nwp-hmenu .nw-button .button__label {
  line-height: 1rem;
  max-width: 30rem;
}
.nwp-hmenu .nw-button .button__label .nw-core-icon {
  margin-right: 0.25rem;
}
.nwp-hmenu:not(.collapse-menu-items) .nw-button .nw-core-icon.hide-label {
  display: none;
}
.nwp-hmenu .nwp-hmenu-util-action {
  margin-left: auto;
  border-left: 1px solid rgb(var(--nw-color-neutral-300));
  background-color: rgb(var(--nw-color-neutral-0));
  border-right: none;
}
.nwp-hmenu .nwp-hmenu-menu-item-label {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.nwp-hmenu-dropdown-content .nw-pro-layout-menu {
  color: rgb(var(--nw-color-neutral-1000));
  background-color: rgb(var(--nw-color-panel-50));
}
.nwp-hmenu-dropdown-content .nw-pro-layout-menu .layout-nav-entry {
  background-color: rgb(var(--nw-color-panel-50));
}
.nwp-hmenu-dropdown-content .nw-pro-layout-menu .layout-nav-entry .nw-pro-menu-item:not(.active):hover {
  background-color: rgb(var(--nw-color-panel-50-hover));
}
.nwp-hmenu-dropdown-content .nw-pro-layout-menu .layout-nav-entry .nw-pro-menu-item:not(.active):hover .menu-label-left,
.nwp-hmenu-dropdown-content .nw-pro-layout-menu .layout-nav-entry .nw-pro-menu-item:not(.active):hover .menu-label,
.nwp-hmenu-dropdown-content .nw-pro-layout-menu .layout-nav-entry .nw-pro-menu-item:not(.active):hover .menu-label-right {
  background-color: rgb(var(--nw-color-panel-50-hover));
}
@-moz-document url-prefix() {
  .nwp-hmenu .nw-button.active .nw-button:focus,
  .nwp-hmenu .nwp-hmenu-menu-item.active .nw-button:focus,
  .nwp-hmenu .nwp-hmenu-button.active .nw-button:focus,
  .nwp-hmenu .nwp-hmenu-action-dropdown.active .nw-button:focus,
  .nwp-hmenu .nwp-hmenu-more-items-dropdown.active .nw-button:focus,
  .nwp-hmenu .nwp-hmenu-action-button.active .nw-button:focus {
    outline: 1px solid rgb(var(--nw-color-primary-300));
    outline-offset: -0.9px;
  }
  .nwp-hmenu .nw-button:not(.active) .nw-button:focus,
  .nwp-hmenu .nwp-hmenu-menu-item:not(.active) .nw-button:focus,
  .nwp-hmenu .nwp-hmenu-button:not(.active) .nw-button:focus,
  .nwp-hmenu .nwp-hmenu-action-dropdown:not(.active) .nw-button:focus,
  .nwp-hmenu .nwp-hmenu-more-items-dropdown:not(.active) .nw-button:focus,
  .nwp-hmenu .nwp-hmenu-action-button:not(.active) .nw-button:focus {
    outline: 1px solid rgb(var(--nw-color-primary));
    outline-offset: -0.9px;
  }
}

.nw-pro-header-action-btn {
  color: rgb(var(--nw-color-on-navbar));
}
.nw-pro-layout-menu,
.nw-pro-layout-menu * {
  box-sizing: content-box;
}

.np-toolkit-modal--fit-height .np-body--default {
  flex: 1 1 auto;
}

.nw-notification {
  z-index: 1000;
}
.nw-notification-top,
.nw-notification-topLeft,
.nw-notification-topRight {
  top: 30px;
  flex-direction: column;
}
.nw-notification-top {
  inset: 30px auto auto 50%;
  transform: translateX(-50%);
}
.nw-notification-topRight {
  right: 0;
}
/* to leave space for minimized modal */
.nw-notification-bottom,
.nw-notification-bottomLeft,
.nw-notification-bottomRight {
  bottom: 35px;
  flex-direction: column-reverse;
}
.nw-notification-bottom {
  inset: auto auto 35px 50%;
  transform: translateX(-50%);
}
.nw-notification-bottomRight {
  right: 0;
}
.nw-notification .alert--primary {
  background-color: rgb(var(--nw-color-primary-500));
}
.nw-notification .alert--primary,
.nw-notification .alert--primary.alert__icon {
  color: rgb(var(--nw-color-on-primary));
}
.nw-notification .alert--success {
  background-color: rgb(var(--nw-color-success-500));
}
.nw-notification .alert--success,
.nw-notification .alert--success.alert__icon {
  color: rgb(var(--nw-color-on-msg-green));
}
.nw-notification .alert--neutral {
  background-color: rgb(var(--nw-color-neutral-500));
}
.nw-notification .alert--neutral,
.nw-notification .alert--neutral.alert__icon {
  color: rgb(var(--nw-color-on-msg-gray));
}
.nw-notification .alert--warning {
  background-color: rgb(var(--nw-color-warning-500));
}
.nw-notification .alert--warning,
.nw-notification .alert--warning.alert__icon {
  color: rgb(var(--nw-color-on-msg-orange));
}
.nw-notification .alert--danger {
  background-color: rgb(var(--nw-color-danger-500));
}
.nw-notification .alert--danger,
.nw-notification .alert--danger.alert__icon {
  color: rgb(var(--nw-color-on-msg-red));
}
/* Button inside Notification should have clear border */
.nw-notification nw-button::part(base) {
  border-color: rgb(var(--nw-color-neutral-0));
}

.nw-gap-small {
  display: flex;
  gap: 0.25rem;
}
.nw-gap-medium {
  display: flex;
  gap: 0.5rem;
}
.nw-gap-large {
  display: flex;
  gap: 0.75rem;
}
.nwp-popup-menu {
  box-sizing: border-box;
  background-color: rgb(var(--nw-color-panel-50));
  color: rgb(var(--nw-color-neutral-1000));
  font-size: 1rem;
  outline: none;
  padding: 5px 0;
  text-align: left;
  transition: opacity 250ms ease !important;
  max-width: 80vw;
  opacity: 0;
  pointer-events: none;
  border: solid 1px rgb(var(--nw-color-border-300));
  max-height: 95vh;
  overflow-y: auto;
}
.nwp-popup-menu:empty {
  border: none;
}
.nwp-popup-menu--opened {
  opacity: 1;
  pointer-events: auto;
  z-index: var(--nw-z-index-dialog);
}
.nwp-popup-menu__item {
  box-sizing: border-box;
  min-width: 160px;
  color: rgb(var(--nw-color-neutral-1000));
  background: 0 0;
  border: 0;
  cursor: pointer;
  padding: 0.2rem 1rem;
  text-align: inherit;
  white-space: nowrap;
  align-items: center;
  display: flex;
  gap: 0.5rem;
  width: 100%;
  line-height: 1.7;
  font-size: 1rem;
}
.nwp-popup-menu__item--active {
  text-decoration: none;
  outline: none;
  background-color: rgb(var(--nw-color-panel-50-hover));
}
.nwp-popup-menu__item--disabled {
  opacity: var(--nw-disabled-opacity);
  cursor: not-allowed;
}
.nwp-popup-menu__divider {
  box-sizing: border-box;
  min-width: 0;
  border-bottom: 1px solid rgb(var(--nw-color-neutral-1000));
  cursor: default;
  margin-bottom: 3px;
  padding: 2px 0;
}

.nwp-toolbar {
  background-color: rgb(var(--nw-color-header-100));
  color: rgb(var(--nw-color-neutral-1000));
  padding: 0.35rem 0.7rem;
  border-bottom: 1px solid rgb(var(--nw-color-border-200));
}
.nwp-toolbar .nwp-toolbar__split-button .nw-button:not(:first-child) [type='button'] {
  border-left: 0;
}
.nwp-toolbar [data-label-hidden] nw-icon {
  pointer-events: auto !important;
}
.nwp-toolbar [data-label-hidden] .nw-button {
  gap: 0;
}
.nwp-toolbar__items {
  justify-content: space-between;
}
.nwp-toolbar__items,
.nwp-toolbar__left-items,
.nwp-toolbar__right-items {
  white-space: nowrap;
  display: flex;
  gap: 0.5rem;
}
.nwp-toolbar__search-highlight {
  background-color: yellow !important;
  box-shadow: 0px 0px 0.1em 0px rgba(0, 0, 0, 0.15);
  color: #000;
}

.dashboard-main-container {
  color: rgb(var(--nw-color-neutral-1000));
  background-color: rgb(var(--nw-color-panel-50));
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  overflow: hidden;
  /* Severity Style */
  /* Severity Critical */
}
.dashboard-main-container .dashboard-body-container {
  display: flex;
  height: 100%;
  width: 100%;
  background-color: transparent;
  color: rgb(var(--nw-color-neutral-1000));
  padding: 5px;
  box-sizing: border-box;
  flex-wrap: wrap;
  align-content: flex-start;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
}
.dashboard-main-container .dashboard-body-container .dashboard-empty-message {
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.dashboard-main-container .dashboard-body-container .widget-hide-on-other-expand {
  overflow: hidden;
  width: 0;
  height: 0;
}
.dashboard-main-container .dash-spinner-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 40px;
  height: calc(100% - 40px);
  bottom: 0;
  z-index: 5;
  background-color: rgb(var(--nw-color-neutral-100) / 40%);
}
@keyframes spinner-loading {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.dashboard-main-container .spinner-icon {
  height: 1rem;
  width: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: spinner-loading 1s linear infinite;
}
.dashboard-main-container .dashboard-widget-block {
  margin-bottom: 10px;
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  transition-property: transform, width, height;
}
.dashboard-main-container .dashboard-widget-block.is-dragging {
  background-color: rgb(var(--nw-color-neutral-300));
  position: relative;
}
.dashboard-main-container .dashboard-widget-block-relative {
  position: relative;
}
.dashboard-main-container .pinned-widget-base {
  color: rgb(var(--nw-color-neutral-1000));
  display: flex;
  min-width: 2rem;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.dashboard-main-container .pinned-widget-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.dashboard-main-container .pinned-widget {
  opacity: 0.9;
  color: rgb(var(--nw-color-neutral-0));
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(var(--nw-color-primary-500));
  box-shadow: 0 1px 3px "rgb(var(--nw-color-primary-500), 0.12)", 0 1px 2px "rgb(var(--nw-color-primary-500), 0.24)";
}
.dashboard-main-container .pinned-widget-base .pinned-widget nw-icon-button::part(base) {
  /* color:rgb(var(--nw-color-primary-0)); */
  color: rgb(var(--nw-color-neutral-1000));
}
.dashboard-main-container .pinned-widget nw-icon-button::part(base) {
  color: rgb(var(--nw-color-primary-500));
}
.dashboard-main-container .pinned-widget::part(base) {
  color: rgb(var(--nw-color-neutral-1000));
}
.dashboard-main-container .widget-container-block {
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  padding: 5px;
  height: 100%;
  cursor: unset;
}
.dashboard-main-container .is-dragging-widget {
  position: absolute;
  z-index: 1000;
  top: 0px;
  left: 0px;
}
.dashboard-main-container .toolbar-container .nwp-toolbar {
  background-color: rgb(var(--nw-color-neutral-0));
  color: rgb(var(--nw-color-neutral-1000));
  padding: 0.35rem 5px;
}
.dashboard-main-container .wdidget-container-relative {
  position: relative;
}
.dashboard-main-container .widget-container {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  background-color: rgb(var(--nw-color-panel-200));
  color: rgb(var(--nw-color-neutral-1000));
  height: 100%;
  outline: 1px solid rgb(var(--nw-color-border));
  transition-property: filter;
  box-shadow: 0 1px 3px "rgb(var(--nw-color-neutral-1000), 0.12)", 0 1px 2px "rgb(var(--nw-color-neutral-1000), 0.24)";
}
.dashboard-main-container .widget-container .nwp-toolbar {
  background-color: transparent;
  color: rgb(var(--nw-color-neutral-1000));
  border-bottom: none;
}
.dashboard-main-container .widget-controls .nwp-toolbar {
  padding: 0px;
  height: 100%;
}
.dashboard-main-container .widget-controls .nwp-toolbar > div {
  height: 100%;
}
.dashboard-main-container .widget-container:hover {
  box-shadow: 0 0 0 2px #cecece;
  outline: 2px dashed #939393;
}
.dashboard-main-container .widget-container.outline-disabled:hover {
  outline: none;
}
.dashboard-main-container .dropdown-more {
  align-items: center;
  display: inline-flex;
}
.dashboard-main-container .dropdown-more nw-button::part(base) {
  color: rgb(var(--nw-color-neutral-600));
}
.dashboard-main-container .dropdown-more nw-button {
  padding-right: 0px;
}
.dashboard-main-container .dropdown-more.dropdown-more-disabled nw-button::part(base) {
  cursor: not-allowed;
  color: rgb(var(--nw-color-neutral-800));
  opacity: 0.5;
}
.dashboard-main-container .toolbar-expand.nw-iconbutton {
  height: 100%;
  color: rgb(var(--nw-color-neutral-1000));
}
.dashboard-main-container .toolbar-expand.nw-iconbutton.toolbar-expand-disabled {
  cursor: not-allowed;
  color: rgb(var(--nw-color-neutral-800));
  opacity: 0.5;
}
.dashboard-main-container .widget-header {
  align-items: stretch;
  padding: 0.3em 0.5em;
}
.dashboard-main-container .back-button-container {
  width: 0px;
  overflow: hidden;
  transition: width 0.15s ease-in-out;
}
.dashboard-main-container .widget-title {
  font-size: 1.2em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 32px;
}
.dashboard-main-container .dropdown-more {
  align-items: center;
  display: inline-flex;
}
.dashboard-main-container .widget-title:hover {
  cursor: move;
}
.dashboard-main-container .widget-title-disabled:hover {
  cursor: default;
}
.dashboard-main-container .widget-body {
  overflow: hidden;
  padding: 0.5em;
}
.dashboard-main-container .settings-container {
  position: relative;
  /* Widget Resizer */
}
.dashboard-main-container .settings-container .menu-container {
  position: absolute;
  display: none;
  top: 30px;
  left: -30px;
  z-index: 999;
  transition: max-height 0.5s ease-in-out;
  border: 1px solid rgb(var(--nw-color-neutral-800));
  background-color: rgb(var(--nw-panel-background-color));
  color: rgb(var(--nw-color-neutral-1000));
}
.dashboard-main-container .settings-container .menu-container > div {
  position: relative;
  pointer-events: all;
  box-sizing: border-box;
  max-height: 5000px;
  height: 100%;
}
.dashboard-main-container .settings-container .block-resizer {
  background-color: rgb(var(--nw-color-panel-50));
  color: 1px solid rgb(var(--nw-color-neutral-1000));
  padding: 0.4rem;
  min-width: 93px;
}
.dashboard-main-container .settings-container .block-resizer .block {
  outline: 1px solid rgb(var(--nw-color-neutral-1000));
  width: 20px;
  height: 20px;
  background-color: rgb(var(--nw-color-neutral-0));
}
.dashboard-main-container .settings-container .block-resizer .block.selected {
  background-color: rgb(var(--nw-color-neutral-400));
}
.dashboard-main-container .settings-container .block-resizer .block.hover {
  background-color: rgb(var(--nw-color-primary-500));
}
.dashboard-main-container .dashboard-widget-block.critical .widget-container {
  outline-color: rgb(var(--nw-color-danger-500));
}
.dashboard-main-container .dashboard-widget-block.critical .widget-header {
  background-color: rgb(var(--nw-color-danger-500));
  color: rgb(var(--nw-color-neutral-0));
}
.dashboard-main-container .dashboard-widget-block.critical .widget-header .nw-iconbutton {
  color: rgb(var(--nw-color-neutral-0));
}
.dashboard-main-container .dashboard-widget-block.high .nw-iconbutton {
  color: rgb(var(--nw-color-neutral-0));
}
.dashboard-main-container .widget-controls nw-icon-button::part(base) {
  color: rgb(var(--nw-color-neutral-600));
}
.dashboard-main-container .widget-controls .pinned-widget::part(base) {
  color: rgb(var(--nw-color-neutral-0));
}
.dashboard-main-container .dashboard-widget-block {
  /* Severity High */
}
.dashboard-main-container .dashboard-widget-block.critical .dropdown-more nw-button::part(base) {
  color: rgb(var(--nw-color-white-500));
}
.dashboard-main-container .dashboard-widget-block.critical .pinned-widget-base .widget-header nw-icon-button::part(base) {
  color: rgb(var(--nw-color-white-500));
}
.dashboard-main-container .dashboard-widget-block.critical .dropdown-more nw-button::part(base) {
  color: rgb(var(--nw-color-white-500));
}
.dashboard-main-container .dashboard-widget-block.critical .widget-title {
  opacity: 1;
}
.dashboard-main-container .dashboard-widget-block.critical nw-icon-button::part(base) {
  color: rgb(var(--nw-color-white-500));
}
.dashboard-main-container .dashboard-widget-block.critical .widget-body {
  background-color: rgb(var(--nw-color-danger-700) / 0.2);
  color: rgb(var(--nw-color-neutral-1000));
}
.dashboard-main-container .dashboard-widget-block.critical .widget-container .nwp-toolbar {
  background-color: rgb(var(--nw-color-danger-700) / 0.2);
  color: rgb(var(--nw-color-neutral-0));
}
.dashboard-main-container .dashboard-widget-block.high nw-icon-button::part(base) {
  color: rgb(var(--nw-color-white-500));
}
.dashboard-main-container .dashboard-widget-block.high .widget-container {
  outline-color: rgb(var(--nw-color-warning-500));
}
.dashboard-main-container .dashboard-widget-block.high .widget-header {
  background-color: rgb(var(--nw-color-warning-500));
  color: rgb(var(--nw-color-white-500));
}
.dashboard-main-container .dashboard-widget-block.high .dropdown-more {
  align-items: center;
  display: inline-flex;
}
.dashboard-main-container .dashboard-widget-block.high .dropdown-more nw-button::part(base) {
  color: rgb(var(--nw-color-white-500));
}
.dashboard-main-container .dashboard-widget-block.high .pinned-widget-base .widget-header nw-icon-button::part(base) {
  color: rgb(var(--nw-color-white-500));
}
.dashboard-main-container .dashboard-widget-block.high .widget-title {
  opacity: 1;
}
.dashboard-main-container .dashboard-widget-block.high .widget-body {
  background-color: "rgb(var(--nw-color-warning-500) / 0.2)";
  color: rgb(var(--nw-color-neutral-1000));
}
.dashboard-main-container .dashboard-widget-block.high .widget-container .nwp-toolbar {
  background-color: rgb(var(--nw-color-warning-500));
  color: rgb(var(--nw-color-neutral-0));
}

.nw-pro-grid-dashboard {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: rgb(var(--nw-color-panel-50));
  color: rgb(var(--nw-color-neutral-1000));
}
.nw-pro-grid-dashboard .nw-pro-grid-dashboard-loading {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nw-pro-grid-dashboard .nw-pro-grid-dashboard-layout {
  flex: 1;
  overflow-x: hidden;
}
.nw-pro-grid-dashboard .nw-pro-grid-dashboard-layout .react-resizable-handle::after {
  border-color: rgb(var(--nw-color-neutral-500));
}
.nw-pro-grid-dashboard .nw-pro-grid-dashboard-layout .react-grid-item {
  box-sizing: content-box !important;
}
.nw-pro-grid-dashboard .nw-pro-grid-dashboard-layout .react-grid-item.is-full-screen {
  transform: translate(6px, 6px) !important;
}
.nw-pro-grid-dashboard .nw-pro-grid-dashboard-layout .grid-widget-expanded {
  position: sticky !important;
  top: 0;
  left: 0;
  transform: unset !important;
  width: calc(100% - 12px) !important;
  margin-inline: 6px;
  padding-block: 6px;
  background-color: rgb(var(--nw-color-neutral-100));
  z-index: 1;
}
.nw-pro-grid-dashboard .nw-pro-grid-dashboard-layout .grid-widget-expanded .react-resizable-handle {
  display: none;
}
.nw-pro-grid-dashboard .nw-pro-grid-dashboard-layout .is-full-screen {
  /* to exclude paddings */
  width: calc(100% - 6px) !important;
  height: calc(100% - 6px) !important;
}
.nw-pro-grid-dashboard .nw-pro-grid-dashboard-widget {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: rgb(var(--nw-color-neutral-1000));
  background-color: rgb(var(--nw-color-panel-200));
  outline: 1px solid rgb(var(--nw-color-border));
  border-radius: 2px;
}
.nw-pro-grid-dashboard .nw-pro-grid-dashboard-widget .grid-widget-header {
  height: 20px;
  padding-left: 6px;
  /* padding-inline: 6px; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
}
.nw-pro-grid-dashboard .nw-pro-grid-dashboard-widget .grid-widget-header .grid-widget-header-title {
  font-size: 0.9rem;
  padding-top: 10px;
  color: rgb(var(--nw-color-gray-500));
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.nw-pro-grid-dashboard .nw-pro-grid-dashboard-widget .grid-widget-header .grid-widget-header-right {
  display: none;
}
.nw-pro-grid-dashboard .nw-pro-grid-dashboard-widget .grid-widget-body {
  flex: 1;
  overflow: hidden;
  padding: 6px;
}
.nw-pro-grid-dashboard .nw-pro-grid-dashboard-widget .grid-widget-header:hover .grid-widget-header-right {
  display: flex;
  align-items: center;
}
.nw-pro-grid-dashboard .react-grid-item.react-draggable:not(.grid-widget-expanded) .grid-widget-header {
  cursor: move;
}
.nw-pro-grid-dashboard .react-grid-item.react-grid-placeholder {
  background-color: rgb(var(--nw-color-primary-300));
}
.nw-pro-grid-dashboard .nwp-toolbar {
  border-bottom: none;
}
/* Issue: drag will select text in other widgets */
/* Disabling strict mode and/or using a production build removed the issue */
/* .react-draggable-transparent-selection {
  user-select: none;
} */

.pro-chart-fgt-pie-chart {
  height: 100%;
  width: 100%;
  display: flex;
}
.pro-chart-fgt-pie-chart .chart-host {
  display: flex;
  flex-direction: column;
  flex: 1;
  /* height: 225px;
    max-width: 600px; */
  box-sizing: border-box;
}
.pro-chart-fgt-pie-chart .chart-host:not(.loading) .chart-loading {
  pointer-events: none;
  opacity: 0;
  /* background: nu-theme-color(background, level0, $alpha: 1); */
}
.pro-chart-fgt-pie-chart .chart-host.with-legend:not(.legend-empty) svg.fgt-chart-svg {
  width: 64%;
}
.pro-chart-fgt-pie-chart .chart-host.with-legend.legend-empty .chart-legend {
  position: unset;
  width: 50%;
}
.pro-chart-fgt-pie-chart .chart-host.legend-clickable path {
  cursor: pointer;
}
.pro-chart-fgt-pie-chart .chart-host.legend-clickable .chart-legend-entry {
  cursor: pointer;
}
.pro-chart-fgt-pie-chart .chart-host.legend-clickable .chart-legend-entry:hover {
  background: rgb(var(--nw-color-neutral-200));
}
.pro-chart-fgt-pie-chart path {
  stroke: rgb(var(--nw-color-neutral-0));
  stroke-width: 0.2;
}
.pro-chart-fgt-pie-chart .chart-slice-count {
  pointer-events: none;
}
.pro-chart-fgt-pie-chart .chart-total-count {
  fill: rgb(var(--nw-color-neutral-1000));
}
.pro-chart-fgt-pie-chart .chart-content {
  position: relative;
  flex-grow: 1;
  display: flex;
  justify-content: center;
}
.pro-chart-fgt-pie-chart svg.fgt-chart-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: width 0.3s ease-in-out;
}
.pro-chart-fgt-pie-chart .chart-loading {
  opacity: 1;
  background: rgba(var(--nw-color-neutral-0) / 0.5);
  /* background: nu-theme-color(background, level1, $alpha: 0.5); */
  transition: opacity background 0.5s ease-in-out;
  z-index: 1;
}
.pro-chart-fgt-pie-chart .chart-legend {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  /* width: nu-get-dimension(chart, pie, legend-width); */
  width: 36%;
  margin: 0.5em 0;
  padding: 0 0.5em;
  overflow: hidden;
  box-sizing: border-box;
  transition: right 0.3s ease-in-out;
}
.pro-chart-fgt-pie-chart-legend .chart-legend-more {
  display: flex;
  align-items: center;
  font-size: 0.9em;
  white-space: nowrap;
  padding: 0.1em;
}
.pro-chart-fgt-pie-chart-legend .overflow-chart-legend {
  overflow-y: auto;
}
.pro-chart-fgt-pie-chart-legend .overflow-chart-legend.legend-clickable .chart-legend-entry {
  cursor: pointer;
}
.pro-chart-fgt-pie-chart-legend .overflow-chart-legend.legend-clickable .chart-legend-entry:hover {
  background: rgb(var(--nw-color-neutral-200));
}
.pro-chart-fgt-pie-chart-legend .chart-legend-title {
  padding-bottom: 0.2em;
  margin-bottom: 0.3em;
  /* border-bottom: 1px solid nu-theme-color(border, level3); */
  border-bottom: 1px solid #939393;
}
.pro-chart-fgt-pie-chart-legend .chart-legend-entry {
  display: flex;
  align-items: center;
  font-size: 0.9em;
  white-space: nowrap;
  overflow: hidden;
  padding: 0.1em;
}
.pro-chart-fgt-pie-chart-legend .chart-legend-more {
  display: flex;
  align-items: center;
  font-size: 0.9em;
  white-space: nowrap;
  padding: 0.1em;
}
.pro-chart-fgt-pie-chart-legend .chart-legend-color,
.pro-chart-fgt-pie-chart-legend .chart-legend-color-empty {
  border: 1px solid black;
  height: 0.8em;
  width: 0.8em;
  flex-shrink: 0;
  margin-right: 0.3em;
}
.pro-chart-fgt-pie-chart-legend .chart-legend-color-empty {
  border-color: transparent;
}
.pro-chart-fgt-pie-chart-legend .chart-legend-label {
  flex-grow: 1;
  flex-shrink: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pro-chart-fgt-pie-chart-legend .chart-legend-count {
  margin: 0 0.25em;
  flex-shrink: 0;
}

.pro-chart-2d-chart {
  height: 100%;
  width: 100%;
  /* display: flex; */
  position: relative;
}
.pro-chart-2d-chart .chart-host {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  /* .legend-container {
      rect:not(.chart-legend-color) {
        fill: nu-theme-color(background, level0, $alpha: 0.8);
      }
      text {
        fill: nu-theme-on-color(background);
      }
    } */
}
.pro-chart-2d-chart .chart-host.with-legend:not(.with-bottom-legend) {
  --chart-legend-width: 10rem;
}
.pro-chart-2d-chart .chart-host.with-legend:not(.with-bottom-legend) .svg-container {
  /* 1em for extra buffer between chart and legend*/
  width: calc(100% - 1em - var(--chart-legend-width));
}
.pro-chart-2d-chart .chart-host.with-legend:not(.with-bottom-legend) .chart-legend {
  top: 0;
  width: var(--chart-legend-width);
  margin: 0.5em 0.5em 0.5em 0;
}
.pro-chart-2d-chart .chart-host.with-legend.with-bottom-legend {
  /* font-size(1em) + padding-bottom(0.2em) + margin-bottom(0.3em) */
  --nw-legend-title-height: 1.5em;
  --nw-chart-legend-height: calc(1em + var(--nw-legend-title-height) + 1.1rem * var(--nw-chart-bottom-legend-row-count));
  display: flex;
}
.pro-chart-2d-chart .chart-host.with-legend.with-bottom-legend .svg-container {
  height: calc(100% - var(--nw-chart-legend-height));
}
.pro-chart-2d-chart .chart-host.with-legend.with-bottom-legend .chart-legend {
  left: 0;
  height: var(--nw-chart-legend-height);
  margin-right: 1em;
  display: flex;
  flex-direction: column;
  margin-left: 1em;
}
.pro-chart-2d-chart .chart-host.with-legend.with-bottom-legend .chart-legend .chart-legend-entries-container {
  overflow: auto;
  display: flex;
  flex-flow: row wrap;
}
.pro-chart-2d-chart .chart-host.with-legend.with-bottom-legend .chart-legend .chart-legend-entries-container .chart-legend-label {
  min-width: 5em;
  padding-right: 0.5em;
}
.pro-chart-2d-chart .chart-host:not(.loading) .chart-loading {
  pointer-events: none;
  opacity: 0;
  /* background: nu-theme-color(background, level0, $alpha: 1); */
}
.pro-chart-2d-chart .chart-host.loading .chart-legend {
  display: none;
}
.pro-chart-2d-chart .chart-host.loading .svg-container {
  opacity: 0.4;
}
.pro-chart-2d-chart .chart-host.clickable .chart-legend-entry {
  cursor: pointer;
}
.pro-chart-2d-chart .chart-host.clickable .chart-legend-entry:hover {
  background: rgb(var(--nw-color-neutral-200));
  /* background: nu-theme-color(background, level3); */
}
.pro-chart-2d-chart .chart-host .x-axis .tick text,
.pro-chart-2d-chart .chart-host .y-axis .tick text {
  color: rgba(var(--nw-color-neutral-1000) / 0.8);
  /* color: nu-theme-on-color(background, $alpha: 0.8); */
}
.pro-chart-2d-chart .chart-host .x-axis .tick line,
.pro-chart-2d-chart .chart-host .y-axis .tick line {
  color: rgb(var(--nw-color-neutral-300));
  /* color: nu-theme-color(border, level1); */
}
.pro-chart-2d-chart .chart-host .y-axis .tick:first-of-type line {
  color: rgb(var(--nw-color-neutral-500));
  /* color: nu-theme-color(border, level3); */
  /* color: rgb(147, 147, 147); */
}
.pro-chart-2d-chart .chart-host .axis-label {
  fill: rgb(var(--nw-color-neutral-1000));
  /* fill: nu-theme-on-color(background); */
}
.pro-chart-2d-chart .svg-container {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
  font-weight: normal;
  /* @include nu-normal-font-weight(); */
}
.pro-chart-2d-chart .chart-legend {
  position: absolute;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.pro-chart-2d-chart .chart-legend .chart-legend-title {
  padding-bottom: 0.2em;
  margin-bottom: 0.3em;
  /* border-bottom: 1px solid nu-theme-color(border, level3); */
  border-bottom: 1px solid #939393;
}
.pro-chart-2d-chart .chart-legend .chart-legend-entry {
  display: flex;
  align-items: center;
  font-size: 0.9em;
  white-space: nowrap;
  overflow: hidden;
  padding: 0.1em;
}
.pro-chart-2d-chart .chart-legend .chart-legend-entry.hovered {
  /* @include nu-bold-font-weight(); */
  font-weight: 700;
}
.pro-chart-2d-chart .chart-legend .chart-legend-color {
  border: 1px solid black;
  height: 0.8em;
  width: 0.8em;
  flex-shrink: 0;
  margin-right: 0.3em;
}
.pro-chart-2d-chart .chart-legend .chart-legend-label {
  flex-grow: 1;
  flex-shrink: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pro-chart-fgt-line-chart .chart-host.clickable:not(.areaSelectable) path.dataset {
  cursor: pointer;
}
.pro-chart-fgt-line-chart .chart-host.clickable circle.tooltip-indicator {
  cursor: pointer;
}
.pro-chart-fgt-line-chart .chart-host .vertical-focus-hover-line {
  stroke: rgb(var(--nw-color-primary));
  /* stroke: nu-theme-color(selected, base); */
  stroke-width: 1px;
  stroke-dasharray: 3, 3;
}
.pro-chart-fgt-line-chart .chart-host path.dataset {
  opacity: 1;
  transition: opacity 0.2s, stroke-width 0.2s;
}
.pro-chart-fgt-line-chart .chart-host .with-hovered path.dataset:not(.hovered) {
  opacity: 0.5;
}

.pro-chart-fgt-area-chart .chart-host.clickable:not(.areaSelectable) path.dataset {
  cursor: pointer;
}
.pro-chart-fgt-area-chart .chart-host.clickable circle.tooltip-indicator {
  cursor: pointer;
}
.pro-chart-fgt-area-chart .chart-host .vertical-focus-hover-line {
  stroke: rgb(var(--nw-color-primary));
  /* stroke: nu-theme-color(selected, base); */
  stroke-width: 1px;
  stroke-dasharray: 3, 3;
}
.pro-chart-fgt-area-chart .chart-host path.dataset {
  opacity: 1;
  transition: opacity 0.2s, stroke-width 0.2s;
}
.pro-chart-fgt-area-chart .chart-host .with-hovered path.dataset:not(.hovered) {
  opacity: 0.5;
}

.pro-chart-fgt-stacked-area-chart .chart-host.clickable:not(.areaSelectable) path.dataset {
  cursor: pointer;
}
.pro-chart-fgt-stacked-area-chart .chart-host.clickable circle.tooltip-indicator {
  cursor: pointer;
}
.pro-chart-fgt-stacked-area-chart .chart-host .vertical-focus-hover-line {
  stroke: rgb(var(--nw-color-primary));
  /* stroke: nu-theme-color(selected, base); */
  stroke-width: 1px;
  stroke-dasharray: 3, 3;
}
.pro-chart-fgt-stacked-area-chart .chart-host path.dataset {
  opacity: 1;
  transition: opacity 0.2s, stroke-width 0.2s;
}
.pro-chart-fgt-stacked-area-chart .chart-host .with-hovered path.dataset:not(.hovered) {
  opacity: 0.5;
}

.pro-chart-cluster-tooltip-content-component table.nu-table > thead > tr > th {
  background-color: unset;
  /* border-bottom: 1px solid nu-theme-color(border, level2, $override: table-border); */
  border-bottom: 1px solid rgb(var(--nw-color-neutral-400));
}
.pro-chart-cluster-tooltip-content-component table.nu-table.highlight thead > tr > th,
.pro-chart-cluster-tooltip-content-component table.nu-table.highlight tr.highlight {
  /* @include nu-bold-font-weight(); */
  font-weight: 700;
}
.pro-chart-cluster-tooltip-content-component table.nu-table.highlight > tbody > tr.highlight > td.label-cell:first-of-type:not([colspan]) {
  /* color: nu-theme-on-color(background); */
  color: rgb(var(--nw-color-neutral-1000));
}
.pro-chart-cluster-tooltip-content-component .table-cell-container > td {
  vertical-align: top;
}
.pro-chart-cluster-tooltip-content-component .label-cell {
  display: flex;
  align-items: center;
}
.pro-chart-cluster-tooltip-content-component .label-cell .label-color {
  border: 1px solid black;
  height: 0.7em;
  width: 0.7em;
  margin-right: 0.3em;
}

.pro-chart-fgt-stacked-bar-chart .chart-host.clickable g.dataset {
  cursor: pointer;
}
.pro-chart-fgt-stacked-bar-chart .chart-host .horizontal-hover-line {
  stroke: rgb(var(--nw-color-primary));
  /* stroke: nu-theme-color(selected, base); */
  stroke-width: 1px;
  stroke-dasharray: 3, 3;
}
.pro-chart-fgt-stacked-bar-chart .chart-host g.dataset {
  transition: opacity 0.2s;
}
.pro-chart-fgt-stacked-bar-chart .chart-host g.secondary-tick {
  fill: currentColor;
}
.pro-chart-fgt-stacked-bar-chart .chart-host .with-hovered g.dataset:not(.hovered) {
  opacity: 0.5;
}

.pro-chart-fgt-discrete-heat-map .chart-host.clickable g.dataset {
  cursor: pointer;
}
.pro-chart-fgt-discrete-heat-map .chart-host .horizontal-hover-line {
  stroke: rgb(var(--nw-color-primary));
  /* stroke: nu-theme-color(selected, base); */
  stroke-width: 1px;
  stroke-dasharray: 3, 3;
}
.pro-chart-fgt-discrete-heat-map .chart-host g.dataset {
  transition: opacity 0.2s;
}
.pro-chart-fgt-discrete-heat-map .chart-host .with-hovered g.dataset:not(.hovered) {
  opacity: 0.5;
}

.pro-chart-fgt-sankey-chart .chart-host {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  height: 100%;
}
.pro-chart-fgt-sankey-chart .chart-host .chart-text {
  /* fill: nu-theme-on-color(background); */
  fill: rgb(var(--nw-color-neutral-1000));
}
.pro-chart-fgt-sankey-chart .chart-host .path-text {
  /* fill: nu-theme-on-color(background); */
  fill: rgb(var(--nw-color-neutral-1000));
}
.pro-chart-fgt-sankey-chart .chart-host .node:hover {
  opacity: 80%;
  stroke-width: 1;
}
.pro-chart-fgt-sankey-chart .chart-host .node {
  transition: all 0.2s;
  opacity: 100%;
  stroke-width: 0.2;
}
.pro-chart-fgt-sankey-chart .chart-host .links path {
  opacity: 100%;
}
.pro-chart-fgt-sankey-chart .chart-host.node-clickable g.nodes g {
  cursor: pointer;
}
.pro-chart-fgt-sankey-chart .chart-host.link-clickable g.links g {
  cursor: pointer;
}
.pro-chart-fgt-sankey-chart .chart-content {
  position: relative;
  flex-grow: 1;
}
.pro-chart-fgt-sankey-chart svg.fgt-chart-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: width 0.3s ease-in-out;
}

.pro-chart-fgt-level-summary {
  height: 100%;
  width: 100%;
  position: relative;
  /* Unknown */
  /* Info */
  /* Low */
  /* Medium */
  /* High */
}
.pro-chart-fgt-level-summary:not(.loading) .chart-loading {
  pointer-events: none;
  opacity: 0;
}
.pro-chart-fgt-level-summary.loading .svg-container {
  opacity: 0.4;
}
.pro-chart-fgt-level-summary .svg-container {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
  font-weight: normal;
  display: flex;
  align-items: center;
}
.pro-chart-fgt-level-summary .level-0 {
  fill: rgb(var(--nw-color-msg-gray));
  stroke: rgb(var(--nw-color-msg-gray));
}
.pro-chart-fgt-level-summary .text-level-0 {
  fill: rgb(var(--nw-color-on-msg-gray));
}
.pro-chart-fgt-level-summary .level-1 {
  fill: rgb(var(--nw-color-msg-blue));
  stroke: rgb(var(--nw-color-msg-blue));
}
.pro-chart-fgt-level-summary .text-level-1 {
  fill: rgb(var(--nw-color-on-msg-blue));
}
.pro-chart-fgt-level-summary .level-2 {
  fill: rgb(var(--nw-color-msg-green));
  stroke: rgb(var(--nw-color-msg-green));
}
.pro-chart-fgt-level-summary .text-level-2 {
  fill: rgb(var(--nw-color-on-msg-green));
}
.pro-chart-fgt-level-summary .level-3 {
  fill: rgb(var(--nw-color-msg-yellow));
  stroke: rgb(var(--nw-color-msg-yellow));
}
.pro-chart-fgt-level-summary .text-level-3 {
  fill: rgb(var(--nw-color-on-msg-yellow));
}
.pro-chart-fgt-level-summary .level-4 {
  fill: rgb(var(--nw-color-msg-orange));
  stroke: rgb(var(--nw-color-msg-orange));
}
.pro-chart-fgt-level-summary .text-level-4 {
  fill: rgb(var(--nw-color-on-msg-orange));
}
.pro-chart-fgt-level-summary .level-5 {
  fill: rgb(var(--nw-color-msg-purple));
  stroke: rgb(var(--nw-color-msg-purple));
}
.pro-chart-fgt-level-summary .text-level-5 {
  fill: rgb(var(--nw-color-on-msg-purple));
}
.pro-chart-fgt-level-summary .level-6 {
  fill: rgb(var(--nw-color-msg-red));
  stroke: rgb(var(--nw-color-msg-red));
}
.pro-chart-fgt-level-summary .text-level-6 {
  fill: rgb(var(--nw-color-on-msg-red));
}
.pro-chart-fgt-level-summary.level-summary-ring .host-count,
.pro-chart-fgt-level-summary.level-summary-ring .total-hosts-label,
.pro-chart-fgt-level-summary.level-summary-ring text.status {
  fill: rgb(var(--nw-color-neutral-1000));
}

/* ftnt-icon and fa-icon, ftnt-48px-icons are for Topology */
@font-face {
  font-family: ftnt-icons;
  src: local('☺'), url(/static/fonts/ftnt-icons.woff) format('woff');
}
f-icon[class*=" ftnt-"]:before,
f-icon[class^=ftnt-]:before {
  font-family: ftnt-icons;
}
text.f-icon[class*=" ftnt-"],
text.f-icon[class^=ftnt-] {
  font-family: ftnt-icons;
}
@font-face {
  font-family: fa-icons;
  src: local('☺'), url(/static/fonts/fa-icons.woff) format('woff');
}
f-icon[class*=" fa-"]:before,
f-icon[class^=fa-]:before {
  font-family: fa-icons;
}
text.f-icon[class*=" fa-"],
text.f-icon[class^=fa-] {
  font-family: fa-icons;
}
@font-face {
  font-family: ftnt-48px-icons;
  src: local('☺'), url(/static/fonts/ftnt-48px-icons.woff) format('woff');
}
f-icon[class*=" ftnt-48px-"]:before,
f-icon[class^=ftnt-48px-]:before {
  font-family: ftnt-48px-icons;
}
text.f-icon[class*=" ftnt-48px-"],
text.f-icon[class^=ftnt-48px-] {
  font-family: ftnt-48px-icons;
}
@font-face {
  font-family: fafm-icons;
  src: local('☺'), url(/static/fonts/fafm-icons.woff) format('woff');
}
f-icon[class*=" fafm-"]:before,
f-icon[class^=fafm-]:before {
  font-family: fafm-icons;
}
text.f-icon[class*=" fafm-"],
text.f-icon[class^=fafm-] {
  font-family: fafm-icons;
}
/* end of topology icons */
.f-fabric-topology .no-search-match {
  opacity: 0.3;
}
svg .cursor-pointer {
  cursor: pointer;
}
svg .cursor-default {
  cursor: default;
}
svg g text.pack-child-badge-effect-icon {
  fill: #fff;
}
svg g .pannable {
  cursor: all-scroll;
}
svg path.donut-path:hover {
  fill-opacity: 0.8;
}
.f-fabric-topology {
  height: 100%;
  display: flex;
  -o-box-orient: vertical;
  flex-direction: column;
}
.f-fabric-topology .topology-container {
  position: relative;
  -o-box-flex: 1;
  -ms-box-flex: 1;
  box-flex: 1;
  flex-grow: 1;
  overflow: hidden;
  display: flex;
  -o-box-orient: vertical;
  flex-direction: column;
}
.f-fabric-topology .topology-container .loading-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5);
  transition: background 0.25s;
  z-index: 2;
}
.f-fabric-topology .topology-container .loading-container * {
  transition: opacity 0.25s;
}
.f-fabric-topology .topology-container .loading-container.no-opacity {
  background: #fff;
  transition-property: none;
}
.f-fabric-topology .topology-container .loading-container.no-opacity * {
  transition-property: none;
}
.f-fabric-topology .topology-container .loading-invisible {
  background: rgba(255, 255, 255, 0);
  pointer-events: none;
}
.f-fabric-topology .topology-container .loading-invisible * {
  opacity: 0;
}
.f-fabric-topology .topology-container .topology-menu {
  -o-box-flex: 1;
  box-flex: 1;
  flex: 0 0 90px;
}
.f-fabric-topology .topology-container .topology-view {
  min-height: 0;
}
.f-fabric-topology .topology-container .topology-view f-fopology-renderer {
  display: flex;
}
.f-fabric-topology .search-input-tip-target {
  display: inline-flex;
  -o-box-flex: 1;
  -ms-box-flex: 1;
  box-flex: 1;
  flex-grow: 1;
}
.f-fabric-topology .search-input {
  -o-box-flex: 1;
  -ms-box-flex: 1;
  box-flex: 1;
  flex-grow: 1;
}
.f-fabric-topology .no-search-match {
  opacity: 0.3;
}
.f-fabric-topology f-metrics > div {
  display: flex;
  -o-box-align: baseline;
  align-items: baseline;
}
.f-fabric-topology f-upstream-types > div {
  display: flex;
  -o-box-align: baseline;
  align-items: baseline;
}
.f-fabric-topology f-sidebar-toggle.risk-alert > div > button {
  background-color: #d9534f;
  color: #fff;
}
.f-fabric-topology f-sidebar-toggle.risk-alert > div > button:hover {
  background-color: #d9534f;
}
.f-fabric-topology f-sidebar-toggle.risk-alert > div > button f-icon,
.f-fabric-topology f-sidebar-toggle.risk-alert > div > button f-ng2-icon {
  color: #fff;
}
.f-fabric-topology f-topology-sidebar {
  overflow-y: auto;
}
.f-fabric-topology f-risk-device {
  cursor: pointer;
}
.f-fabric-topology f-risk-device .risk-device {
  position: relative;
  margin: 0.3em;
  margin-bottom: 0;
  width: 100%;
  border: 1px solid #b4b4b4;
  background-color: #fff;
}
.f-fabric-topology f-risk-device .risk-device .drilldown-container {
  position: absolute;
  top: 0.5em;
  right: 0;
}
.f-fabric-topology f-risk-device .risk-device.selected {
  background-color: #ffa;
}
.f-fabric-topology f-risk-device .risk-summary-table {
  margin: 0.5em;
}
.f-fabric-topology svg g text:not(.link-badge-main):not(.number-bubble-badge) {
  fill: rgb(var(--nw-color-neutral-1000));
}
.f-fabric-topology svg g text:not(.link-badge-main):not(.number-bubble-badge).link-badge-effect {
  fill: rgb(var(--nw-color-neutral-0));
}
.f-fabric-topology svg g g.th rect.td {
  fill: rgb(var(--nw-color-neutral-100));
  stroke: rgb(var(--nw-color-border));
  stroke-width: 1px;
}
.f-fabric-topology svg g g.tr rect.td {
  fill: rgb(var(--nw-color-neutral-50));
}
.f-fabric-topology svg g g.th tspan.label.current-fortigate {
  font-weight: 700;
}
.f-fabric-topology svg g g.tr rect.td {
  stroke: rgb(var(--nw-color-border));
  stroke-width: 1px;
}
.f-fabric-topology svg g g.tr text.vdom {
  font-weight: 700;
}
.f-fabric-topology .node-layer .circle-node > text:not(.number-bubble-badge),
.f-fabric-topology .node-layer .square-node > text:not(.number-bubble-badge) {
  fill: #000;
}
.f-fabric-topology .node-layer .circle-node > text.pack-child-badge-effect-icon,
.f-fabric-topology .node-layer .square-node > text.pack-child-badge-effect-icon {
  fill: #fff;
}
.f-fabric-topology .circle-pack > circle {
  fill: rgb(var(--nw-color-neutral-100));
  stroke: rgb(var(--nw-color-border));
}
.f-fabric-topology .square-pack > rect {
  fill: rgb(var(--nw-color-neutral-100));
  stroke: rgb(var(--nw-color-border));
}
.f-fabric-topology .donut-inner-circle {
  fill: rgb(var(--nu-theme-override-text-background, var(--nw-color-neutral-0)));
}
.f-fabric-topology svg g g.group-node text {
  fill: rgb(var(--nw-color-neutral-1000));
}
.f-fabric-topology svg g g.group-node rect {
  stroke: rgb(var(--nw-color-border));
  stroke-width: 1px;
}
.f-fabric-topology svg g g.group-node rect.left-part {
  fill: rgb(var(--nw-color-neutral-50));
}
.f-fabric-topology svg g g.group-node rect.mask {
  fill: rgb(var(--nw-color-neutral-100));
}
.f-fabric-topology svg g g.group-node rect.right-part {
  fill: rgb(var(--nw-color-neutral-100));
}
.f-fabric-topology svg .stroke-highlight {
  opacity: 1;
  -ms-filter: none;
  filter: none;
  stroke-width: 0;
}
.f-fabric-topology svg .stroke-highlight:hover {
  opacity: 0.95;
  stroke-width: 2;
}
.f-fabric-topology svg .severity-none {
  fill: rgb(var(--nu-theme-color-informative-success-base));
  stroke: rgb(var(--nu-theme-color-informative-success-base));
}
.f-fabric-topology svg .severity-none + text {
  fill: rgb(var(--nu-theme-on-color-informative-success));
}
.f-fabric-topology svg .severity-low {
  fill: rgb(var(--nu-theme-color-informative-severity-low-base));
  stroke: rgb(var(--nu-theme-color-informative-severity-low-base));
}
.f-fabric-topology svg .severity-low + text {
  fill: rgb(var(--nu-theme-on-color-informative-severity-low));
}
.f-fabric-topology svg .severity-medium {
  fill: rgb(var(--nu-theme-color-informative-severity-medium-base));
  stroke: rgb(var(--nu-theme-color-informative-severity-medium-base));
}
.f-fabric-topology svg .severity-medium + text {
  fill: rgb(var(--nu-theme-on-color-informative-severity-medium));
}
.f-fabric-topology svg .severity-high {
  fill: rgb(var(--nu-theme-color-informative-severity-high-base));
  stroke: rgb(var(--nu-theme-color-informative-severity-high-base));
}
.f-fabric-topology svg .severity-high + text {
  fill: rgb(var(--nu-theme-on-color-informative-severity-high));
}
.f-fabric-topology svg .severity-critical {
  fill: rgb(var(--nu-theme-color-informative-severity-critical-base));
  stroke: rgb(var(--nu-theme-color-informative-severity-critical-base));
}
.f-fabric-topology svg .severity-critical + text {
  fill: rgb(var(--nu-theme-on-color-informative-severity-critical));
}
.f-fabric-topology svg g.chart-visual-toggle rect {
  fill: rgb(var(--nu-theme-override-text-background, var(--nw-color-neutral-0)));
}
.f-fabric-topology svg g.chart-visual-toggle text {
  opacity: 0.8;
}
.f-fabric-topology svg g.chart-visual-toggle:hover rect {
  fill: rgb(var(--nw-color-neutral-200));
}
.f-fabric-topology svg g.chart-visual-toggle:hover text {
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
.f-fabric-topology svg .spinner {
  animation: spin 1s infinite steps(8);
}
.f-fabric-topology svg path.link-usage.level-normal,
.f-fabric-topology svg use.link-usage.level-normal {
  stroke: rgb(var(--nu-theme-color-informative-success-base));
  stroke-width: 2.5;
}
.f-fabric-topology svg path.link-usage.level-high,
.f-fabric-topology svg use.link-usage.level-high {
  stroke: rgb(var(--nu-theme-color-informative-severity-high-base));
  stroke-width: 4;
}
.f-fabric-topology svg path.link-usage.level-critical,
.f-fabric-topology svg use.link-usage.level-critical {
  stroke: rgb(var(--nu-theme-color-informative-severity-critical-base));
  stroke-width: 5.5;
}
.f-fabric-topology svg g circle.action-taken,
.f-fabric-topology svg g rect.action-taken {
  stroke: #000;
  stroke-width: 2;
}

.np-pro-search-text-filter__search {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0 0.25rem;
}
.np-pro-search-filter__button::part(base) {
  background: transparent !important;
  border: none !important;
}
.np-pro-search-text-filter__list-title {
  border-bottom: 1px solid;
  border-top: 1px solid;
  border-color: rgb(var(--nw-color-border));
  padding: 0.25rem;
  text-align: center;
}
.np-pro-search-text-filter__item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.3rem 0.5rem;
  cursor: pointer;
  color: rgb(var(--nw-color-neutral-1000));
}
.np-pro-search-text-filter__item:hover {
  background-color: rgb(var(--nw-color-primary-100));
}
.np-pro-search-text-filter__item nw-icon {
  min-height: 16px;
  min-width: 16px;
}
.nw-column-suggest-filter__item--checked {
  color: rgb(var(--nw-color-success-500));
}
.np-pro-search-text-filter__item-label {
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.np-pro-search-text-filter__selected-box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  max-width: 330px;
  max-height: 135px;
  overflow-y: auto;
}
@media (max-height: 680px) {
  .np-pro-search-text-filter__selected-box-container {
    max-height: 78px;
  }
}
.np-pro-search-text-filter__selected-box {
  max-width: 140px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  white-space: nowrap;
  border-style: solid;
  border-width: var(--nw-input-border-width);
  border-color: rgb(var(--nw-panel-border-color));
  border-radius: var(--nw-input-height-medium);
  font-family: var(--nw-input-font-family);
  font-size: var(--nw-button-font-size-medium);
  color: rgb(var(--nw-color-neutral-800));
  background-color: rgba(var(--nw-color-primary-500) / 0.2);
  padding: 0px 0px 0px 6px;
  line-height: 1rem;
  height: calc(1.9em - 4px);
}
.np-pro-search-text-filter__selected-box span {
  overflow: hidden;
  text-overflow: ellipsis;
}
.np-pro-search-text-filter__selected-box .nw-iconbutton {
  padding: 0 0 0 2px;
}

.np-pro-search-filter__types {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0 0.25rem;
  width: -moz-fit-content;
  width: fit-content;
}
.np-pro-search-filter__radio--min-size::part(button) {
  min-width: 50px;
}

.np-pro-search-filter__popover {
  border: 1px solid rgb(var(--nw-color-neutral-1000));
  box-shadow: 1px 1px 1px 1px rgba(var(--nw-color-neutral-1000) / 0.25);
}
.np-pro-search-filter__form {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.np-pro-search-filter__form *[class^='np-pro-search'] {
  box-sizing: border-box;
}
.np-pro-search-filter__form-header {
  padding: 0.5rem 0;
  text-align: center;
  background-color: rgb(var(--nw-color-navbar-title));
  color: rgb(var(--nw-color-on-navbar));
}
.nw-dark .np-pro-search-filter__form-header {
  background-color: rgb(var(--nw-color-navbar-title));
  color: rgb(var(--nw-color-on-navbar));
}
.nw-dark-contrast .np-pro-search-filter__form-header {
  background-color: rgb(var(--nw-color-navbar-title));
  color: rgb(var(--nw-color-on-navbar));
}
.np-pro-search-filter__form-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.np-pro-search-filter__form-footer {
  border-top: 1px solid rgb(var(--nw-color-border));
  padding: 0.25rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.np-pro-search-filter__actions-footer {
  justify-content: space-between;
  padding: 0.5rem;
}
.np-pro-search-filter__actions-footer > :first-child {
  display: flex;
  gap: 0.25rem;
}
.np-pro-search-filter__action-button {
  padding: 0 0.25rem;
}
.np-pro-search-filter__action-button .button--text {
  justify-content: flex-start;
}
.np-pro-search-filter__action-button .button__label {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.np-pro-search-filter__row-cell {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.np-pro-search-filter__flex-row-cell {
  display: flex;
  gap: 0.25rem;
}
tr:not(:first-child) .np-pro-search-filter__row-cell {
  padding-top: 0.25rem;
}

/* NwButton style fix */
.nw-pro-search .nw-button {
  line-height: 1rem;
  align-items: center;
}

.nw-pro-search .search-button {
  padding: 3px 0.5em;
  border-color: rgb(var(--nw-color-neutral-200));
  border-width: 1px;
  border-style: solid;
  margin: 0.5em 0 0.5em;
  border-left: none;
}

.nw-pro-search .search-button .nw-iconbutton {
  padding: 0px;
}



/* Advanced Search */
.nw-pro-search .advanced-search-input {
  max-width: 100%;
  position: relative;
}
.nw-pro-search .advanced-search-input .CodeMirror {
  /* by setting an height to auto, codeMirror can be made to automatically resize to fit its content */
  height: auto;
  border-color: rgb(var(--nw-color-neutral-200));
  border-width: 1px;
  border-style: solid;
  flex-grow: 1;
  margin: 0.5em 0 0.5em 0.25em;
  max-width: 100%;
  padding-right: 20px;

  /* Theme support */
  background-color: rgb(var(--nw-color-neutral-0));
  color: rgb(var(--nw-color-neutral-1000));
}

.nw-pro-search .advanced-search-input .CodeMirror .CodeMirror-scroll {
  padding-top: 1px;
}

.nw-pro-search .advanced-search-input .CodeMirror pre.CodeMirror-placeholder {
  color: rgb(var(--nw-color-neutral-500));
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.nw-pro-search .advanced-search-input .CodeMirror span.CodeMirror-matchingbracket {
  background-color: rgb(var(--nw-color-primary-500));
  color: rgb(var(--nw-color-on-primary));
}

.nw-pro-search .advanced-search-input .CodeMirror .CodeMirror-cursor {
  border-color: rgb(var(--nw-color-neutral-1000));
}


.nw-pro-search .advanced-search-input .CodeMirror span.cm-variable {
  color: rgb(var(--nw-color-info-600));
}

.nw-pro-search .advanced-search-input .CodeMirror span.cm-string {
  color: rgb(var(--nw-color-success-700));
}

.nw-pro-search .advanced-search-input .CodeMirror span.cm-keyword {
  color: rgb(var(--nw-color-warning-600));
}

/* CodeMirror hint popover style */
ul.CodeMirror-hints.default {
  background: rgb(var(--nw-color-neutral-0));
  color: rgb(var(--nw-color-neutral-1000));
}

ul.CodeMirror-hints.default .CodeMirror-hint:not(.divider) {
  color: rgb(var(--nw-color-neutral-1000));
}

ul.CodeMirror-hints.default li.CodeMirror-hint-active {
  background-color: rgb(var(--nw-color-neutral-200));
}

ul.CodeMirror-hints.default li.CodeMirror-hint.divider {
  pointer-events: none;
  color: rgb(var(--nw-color-neutral-500));
  font-weight: bold;
}


.nw-pro-search .nw-facet-search-input {
  background-color: rgb(var(--nw-color-neutral-0));
  border-color: rgb(var(--nw-color-neutral-200));
  color: rgb(var(--nw-color-neutral-800));
  line-height: 18px;
  margin: 0.5em 0 0.5em 0.25em;
  min-height: 1.9em;
  max-width: 100%;
  position:relative;
}
.nw-pro-search .nw-facet-search-input-content {
  display: flex;
  align-items: center;
  height:100%;
  white-space: nowrap;
  flex-wrap: wrap;
  max-width: calc(100% - 20px);
}

.nw-pro-search .nw-facet-search-input .filter-add-icon {
  height: calc(1.8em - 4px);
  margin: 1px;
  padding-left: 0.125rem;
}

.nw-pro-search .nw-facet-search-input .filter-add-icon .nw-button {
  height: 100%;
}

.nw-pro-search .nw-facet-search-input .filter-add-icon .nw-core-button {
  height: 100%;
}

.nw-pro-search .nw-facet-search-input .filter-add-icon::part(base) {
  color: rgb(var(--nw-color-primary-500));
  margin: 0 0.2em;
  padding: 0px;
}

.nw-pro-search .nw-facet-search-input .filter-and-or-button .nw-button {
  padding: 0px;
}

.nw-pro-search .filter-wrapper {
  display: flex;
  align-items: center;
}

.nw-pro-search .filter-value-truncate {
  display: inline-block;
  max-width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nw-pro-search-float-container {
  box-shadow: var(--nw-shadow-small);
  border-width: 1px;
  border-color: rgb(var(--nw-color-neutral-400));
  z-index: 9999;
}

.nw-pro-search-float-container .heading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.3em;
  background-color: rgb(var(--nw-color-navbar-title));
  color: rgb(var(--nw-color-on-navbar));
}

.nw-pro-search-float-container nw-input::part(base) {
  box-shadow: var(--nw-shadow-x-small);
}


/* Key Panel */
.nw-pro-search-float-container.key-panel {
  max-height: 50vh;
}

.nw-pro-search-float-container .key-item {
  padding: 4px;
  cursor: pointer;
}

.nw-pro-search-float-container .key-item.history {
  opacity: 0.8;
  font-style: italic;
}

.nw-pro-search-float-container .key-item.history .history-icon {
  font-size: 0.7em;
  margin-right: 0.3em;
}

.nw-pro-search-float-container .key-item.selected {
  background-color: rgb(var(--nw-color-primary-500));
  color: rgb(var(--nw-color-on-primary));
}

/* hovered on but not yet click to select */
.nw-pro-search-float-container .key-item.active {
  background-color: rgb(var(--nw-color-neutral-100));
  color: rgb(var(--nw-color-neutral-800));
}


/* ValuePanel */

.nw-pro-search-float-container.value-panel .operator-container {
  margin: 0.2em;
}

.nw-pro-search-float-container.value-panel .footer {
  text-align: center;
  padding: 0.3em;
  background-color: rgb(var(--nw-color-neutral-100));
  border-top: 1px solid rgb(var(--nw-color-neutral-300));
  margin-top: 0.2em;
}

/* Filter Display */
.nw-pro-search .filter-container {
  height: calc(1.8em - 4px);
  margin: 1px;
}

.nw-pro-search .filter-container .filter-button {
  height: 100%;
  padding-right: 23px;
  background-color: rgba(var(--nw-color-primary-500) / 0.2);
}

.nw-pro-search .clear-icon {
  position: absolute;
  right: 0px;
  display: flex;
  height: 100%;
}
.nw-pro-search .faceted-search-clear-icon {
  position: absolute;
  right: 0;
  display: flex;
  height: 100%;
}
.np-pro-search-filter__button button{
  background-color: rgba(var(--nw-color-primary-500) / 0.2) !important;
}
.np-pro-search-filter__types .button__label{
  width:1rem;
  justify-content: center;
}
.np-pro-search-filter__form-body {
  max-height:50vh;
}

.nw-pro-search-float-container .history-header{
  display: flex;
  justify-content: space-between;
  background-color: rgb(var(--nw-color-neutral-100));
  padding:4px;
  font-size: 1rem;
  height:1.5rem;
  line-height: 1.5rem;
  cursor: pointer;
}
.nw-pro-search-float-container .history-title{
  text-align: center;
}
.nw-pro-search-float-container .history-collapse-icon{
  height: 100%;
  display: flex;
  align-items: center;
}
.nw-pro-search-float-container .history-section{
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  max-height: 0;
}
.nw-pro-search-float-container .history-section.open{
  padding-top:2px;
  max-height: 50vh;
  overflow: auto;
  transition: max-height 0.5s ease-in;
}
.nw-pro-search-float-container .history-section.collapse{
  max-height: 0;
  display: none;
  transition: max-height 0s ease-out;
}
.nw-pro-search-float-container .history-container{
  display: flex;
  flex-direction: column;
}

.nw-pro-search-float-container .filter-button {
  margin:2px 0;
  height: 100%;
  padding-right: 23px;
  color:rgb(var(--nw-color-primary-500));
}
.nw-pro-search-float-container .filter-button .nw-button:hover {
  background-color: rgba(var(--nw-color-primary-500) / 0.2)
}

.faceted-search-multiple-history-filter-container{
  display: flex;
  align-items: center;
  cursor: pointer;
  overflow-x: hidden;
  white-space: nowrap;
  position: relative;
}
.faceted-search-multiple-history-filter-list{
  display: flex;
  overflow-y: auto;
  max-width: 80vw;
  max-height:40vh;
  flex-wrap: wrap;
}

.faceted-search-multiple-history-filter-list .faceted-search-multiple-filter-button{
  width:-moz-fit-content;
  width:fit-content;
}
.faceted-search-history-panel .no-history-found-hint{
  text-align: center;
  padding:5px 0px;
}
.faceted-search-history-panel .history-clear-button{
  text-align: center;
  width:100%;
}

.faceted-search-multiple-history-filter-container:hover{
  background-color: rgba(var(--nw-color-primary-500) / 0.1);
  border-color: rgb(var(--nw-color-primary-500));
}

.faceted-search-multiple-filter-button-container{
  display: flex;
  width:-moz-fit-content;
  width:fit-content;
  margin:2px;
  align-items: center;
}
 .faceted-search-multiple-filter-button{
  /* Follow the nw-core-button style */
  height: 100%;
  padding-right: 23px;
  /* background-color: rgba(var(--nw-color-primary-500) / 0.2); */
  border-radius: var(--nw-input-height-small);
  color: rgb(var(--nw-color-primary-500));
  font-size: var(--nw-button-font-size-small);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: var(--nw-input-font-family);
  text-decoration: none;
  user-select: none;
  white-space: nowrap;
  vertical-align: middle;
  transition: var(--nw-transition-fast) background-color, var(--nw-transition-fast) color, var(--nw-transition-fast) border, var(--nw-transition-fast) box-shadow;
  cursor: inherit;
  box-sizing: border-box;
  padding:2px 6px;
}

.faceted-search-filter-connector{
  margin: 0 0.5rem;
  display: flex;
  align-items: center;
}
.faceted-search-history-panel .multiple-history-filter-wrapper{
  display: flex;
  flex-wrap: wrap;
  max-width: 50vw;
  padding:5px 0;

}
.faceted-search-history-panel .multiple-history-filter-wrapper:hover{
  cursor: pointer;
  background-color: rgba(var(--nw-color-primary-500) / 0.2);
}

.pro-calendar svg {
  color: rgb(var(--nw-color-neutral-1000));
}
.pro-calendar .pro-calendar-day:hover .date {
  background-color: rgb(var(--nw-color-blue-300));
  border-radius: 50%;
  color: rgb(var(--nw-color-neutral-0));
}
.pro-calendar-year-control svg {
  color: rgb(var(--nw-color-sky-800));
}
.pro-calendar-year-control button {
  background: #f0f0f0;
  border: none;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.pro-calendar-year-control span {
  font-size: 1.2em;
}

.typewriter-typing::after {
  content: '';
  position: absolute;
  display: inline-block;
  background-color: rgb(var(--nw-color-neutral-500));
  vertical-align: top;
  width: 0.5rem;
  height: 0.8rem;
  bottom: 0.3rem;
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 4;
  stroke-miterlimit: 10;
  stroke: rgb(var(--nw-color-primary-600));
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.checkmark {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  display: block;
  stroke-width: 4;
  stroke: rgb(var(--nw-color-primary-600));
  stroke-miterlimit: 10;
  animation: scale 0.3s ease-in-out 0.9s both;
}
.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}
@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%,
  100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill {
  100% {
    box-shadow: inset 0 0 0 2rem #fff;
  }
}
.circular-loader {
  transform-origin: center center;
  animation: rotate 2s linear infinite;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  display: block;
}
.loader-path {
  animation: dash 1.5s ease-in-out infinite;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 4;
  stroke-miterlimit: 10;
  stroke: rgb(var(--nw-color-primary-600));
  fill: none;
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124;
  }
}

.message-box-container {
  max-width: 85%;
}
.message-box-container.system {
  width: 85%;
}
.message-box-container.system .message-box {
  width: 85%;
  border-radius: 0 0.7em 0.7em 0.7em;
  background: rgb(var(--nw-color-neutral-0));
  border-color: rgb(var(--nw-color-border));
}
.message-box-container.user .message-box {
  border-radius: 0.7em 0.7em 0 0.7em;
  background: rgb(var(--nw-color-primary-100));
}
.message-box-container .message-box {
  box-shadow: var(--nw-shadow-x-small);
}
.message-box-container .message-box.system {
  width: 85%;
  border-radius: 0 0.7em 0.7em 0.7em;
  background: rgb(var(--nw-color-neutral-0));
}
.message-box-container .message-box.thinking {
  border-radius: 0rem;
}
.message-box-container .message-box.thinking span.thinking-spinner:nth-child(1) {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 0.125rem;
  background: linear-gradient(to right, rgb(var(--nw-color-neutral-100)), rgb(var(--nw-color-primary-600)));
  animation: animate1 2s linear infinite;
}
@keyframes animate1 {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.message-box-container .message-box.thinking span.thinking-spinner:nth-child(2) {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 0.125rem;
  background: linear-gradient(to bottom, rgb(var(--nw-color-neutral-100)), rgb(var(--nw-color-primary-600)));
  animation: animate2 2s linear infinite;
  animation-delay: 1s;
}
@keyframes animate2 {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}
.message-box-container .message-box.thinking span.thinking-spinner:nth-child(3) {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 0.125rem;
  background: linear-gradient(to left, rgb(var(--nw-color-neutral-100)), rgb(var(--nw-color-primary-600)));
  animation: animate3 2s linear infinite;
}
@keyframes animate3 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.message-box-container .message-box.thinking span.thinking-spinner:nth-child(4) {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0.125rem;
  background: linear-gradient(to top, rgb(var(--nw-color-neutral-100)), rgb(var(--nw-color-primary-600)));
  animation: animate4 2s linear infinite;
  animation-delay: 1s;
}
@keyframes animate4 {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(-100%);
  }
}

.suggestion-panel .suggestion {
  animation: fadeIn 0.5s ease-in-out;
  animation-fill-mode: forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.BaseTable__row.nwp-table__section-row.nws-focus-hover {
  border-bottom: 1px solid rgb(var(--nw-color-neutral-100));
}
.nwp-table__row-cell {
  border-bottom: 1px solid var(--cell-border);
}
.nwp-table__row-cell:not(:last-child) {
  border-right: 1px solid var(--cell-border);
}
.nwp-table__row {
  --cell-border: rgb(var(--nw-color-border));
}
.nw-light .row-selected {
  --cell-border: rgb(var(--nw-color-neutral-50));
}
.nwp-table__row--fit-h .nwp-table__row-cell {
  white-space: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-all;
  word-break: break-word;
  hyphens: auto;
}
.BaseTable__row:hover,
.BaseTable__row--hovered {
  /* hover & focus in class "nws-focus-hover"
   1. drop shadow
   2. mouse cursor change to "pointer"
   3. no background color change
  */
  z-index: calc(var(--np-z-index-sticky-column) + 1);
}
.BaseTable__row:hover .nwp-table__row-cell,
.BaseTable__row--hovered .nwp-table__row-cell {
  border-bottom-color: transparent;
}
.nwp-table__row.nws-focus-hover:focus-within:not(:hover) {
  box-shadow: none;
}
.nwp-table__row-cell {
  color: rgb(var(--nw-color-neutral-1000));
  background-color: rgb(var(--nw-color-panel-200));
}
.nwp-table__row-cell button.nws-focus-hover:focus {
  box-shadow: 0 0 0 var(--nw-focus-ring-width) rgb(var(--nw-color-primary-500) / 40%);
  border-color: transparent;
  border-radius: 2px;
}
.nwp-table__row-cell .nw-checkbox .nw-core-checkbox.checkbox--focused .checkbox__control {
  box-shadow: 0 0 0 var(--nw-focus-ring-width) rgb(var(--nw-color-primary-500) / 40%);
}
.nwp-table__row-cell:focus,
.nwp-table__row-cell:focus-within {
  outline: rgb(var(--nw-color-primary-500)) solid 1px;
  outline-offset: -1px;
}
.nwp-table__section-row button.nws-focus-hover:focus {
  box-shadow: 0 0 0 var(--nw-focus-ring-width) rgb(var(--nw-color-white) / 40%);
  border-color: transparent;
  border-radius: 2px;
}
.nwp-table__section-row .nw-checkbox .nw-core-checkbox.checkbox--focused .checkbox__control {
  box-shadow: 0 0 0 var(--nw-focus-ring-width) rgb(var(--nw-color-white) / 40%);
}
.nw-light .row-selected .nwp-table__row-cell {
  color: rgb(var(--nw-color-neutral-1000));
  background-color: rgb(var(--nw-color-primary-200));
}
.nw-dark .nwp-table__row-cell button.nws-focus-hover:focus {
  box-shadow: 0 0 0 var(--nw-focus-ring-width) rgb(var(--nw-color-primary-500) / 80%);
  border-color: transparent;
  border-radius: 2px;
}
.nw-dark .nwp-table__row-cell .nw-checkbox .nw-core-checkbox.checkbox--focused .checkbox__control {
  box-shadow: 0 0 0 var(--nw-focus-ring-width) rgb(var(--nw-color-primary-500) / 80%);
}
.nw-dark .nwp-table__row-cell:focus,
.nw-dark .nwp-table__row-cell:focus-within {
  outline: rgb(var(--nw-color-neutral-1000)) solid 1px;
  outline-offset: -1px;
}
.nw-dark .row-selected .nwp-table__row-cell {
  color: rgb(var(--nw-color-neutral-1000));
  background-color: rgb(var(--nw-color-primary-100));
}
.nw-dark-contrast .nwp-table__row-cell button.nws-focus-hover:focus {
  box-shadow: 0 0 0 var(--nw-focus-ring-width) rgb(var(--nw-color-neutral-1000) / 40%);
  border-color: transparent;
  border-radius: 2px;
}
.nw-dark-contrast .nwp-table__row-cell .nw-checkbox .nw-core-checkbox.checkbox--focused .checkbox__control {
  box-shadow: 0 0 0 var(--nw-focus-ring-width) rgb(var(--nw-color-neutral-1000) / 40%);
}
.nw-dark-contrast .row-selected .nwp-table__row-cell {
  color: rgb(var(--nw-color-neutral-0));
  background-color: rgb(var(--nw-color-primary-600));
}
.nw-dark-contrast .row-selected .nwp-table__row-cell button.nws-focus-hover:focus {
  box-shadow: 0 0 0 var(--nw-focus-ring-width) rgb(var(--nw-color-neutral-0) / 40%);
  border-color: transparent;
  border-radius: 2px;
}
.nw-dark-contrast .row-selected .nwp-table__row-cell .nw-checkbox .nw-core-checkbox.checkbox--focused .checkbox__control {
  box-shadow: 0 0 0 var(--nw-focus-ring-width) rgb(var(--nw-color-neutral-0) / 40%);
}
.nw-dark-contrast .row-selected .nwp-table__row-cell:focus,
.nw-dark-contrast .row-selected .nwp-table__row-cell:focus-within {
  outline: rgb(var(--nw-color-neutral-0)) solid 1px;
  outline-offset: -2px;
}
.nw-dark-contrast .row-selected.BaseTable__row:hover .nwp-table__row-cell,
.nw-dark-contrast .row-selected.BaseTable__row--hovered .nwp-table__row-cell {
  color: rgb(var(--nw-color-neutral-0));
  background-color: rgb(var(--nw-color-primary-500));
}
:root {
  --np-z-index-sticky-column: 1;
}
.BaseTable {
  color: rgb(var(--nw-color-neutral-1000));
  background-color: rgb(var(--nw-color-panel-200));
  position: relative;
  box-sizing: border-box;
}
.BaseTable .BaseTable__body::-webkit-scrollbar-track:vertical {
  border-left: 1px solid rgb(var(--nw-color-border));
}
.nwp-table__expand-icon {
  padding: 0;
}
.BaseTable--disabled {
  opacity: rgb(var(--nw-disabled-opacity));
  pointer-events: none;
}
.BaseTable__table .BaseTable__header,
.BaseTable__table .BaseTable__column-resizer {
  background-color: rgb(var(--nw-color-neutral-50));
}
.BaseTable__table .BaseTable__column-resizer {
  user-select: none;
  touch-action: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 5px;
  cursor: col-resize;
}
.BaseTable__table-main {
  /* outline: 1px solid #eeeeee; */
  left: 0;
}
.BaseTable__table-frozen-left {
  top: 0;
  left: 0;
}
.BaseTable__table-frozen-left .BaseTable__header-row,
.BaseTable__table-frozen-left .BaseTable__row {
  padding-right: 0 !important;
}
.BaseTable__table-frozen-left .BaseTable__body {
  overflow-y: auto !important;
}
.BaseTable__table-frozen-right {
  /* box-shadow: -2px 0 4px 0 #eeeeee; */
  top: 0;
  right: 0;
}
.BaseTable__table-frozen-right .BaseTable__header-row,
.BaseTable__table-frozen-right .BaseTable__row {
  padding-left: 0 !important;
}
.BaseTable__table-frozen-right .BaseTable__body {
  overflow-y: auto !important;
}
.BaseTable .BaseTable__header,
.BaseTable .BaseTable__body {
  outline: none;
  will-change: auto !important;
}
.BaseTable__row {
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
.BaseTable__header-cell,
.nwp-table__row-cell {
  min-width: 0;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 7px;
  box-sizing: border-box;
  white-space: nowrap;
}
.BaseTable__header-cell:hover .BaseTable__column-resizer {
  visibility: visible;
  opacity: 0.5;
}
.BaseTable__header-cell:hover .BaseTable__column-resizer:hover {
  opacity: 1;
}
.BaseTable__header-cell .BaseTable__sort-indicator .sort-icon:before,
.BaseTable__header-cell .BaseTable__sort-indicator .sort-icon:after {
  border: 5px solid transparent;
  content: '';
  display: block;
  height: 0;
  margin-left: 4px;
  top: 50%;
  position: absolute;
  width: 0;
}
.BaseTable__header-cell .BaseTable__sort-indicator .sort-icon:before {
  border-bottom-color: rgb(var(--nw-color-neutral-400));
  margin-top: -12px;
}
.BaseTable__header-cell .BaseTable__sort-indicator .sort-icon.sort-icon--ascending:before {
  border-bottom-color: rgb(var(--nw-color-primary-700));
}
.BaseTable__header-cell .BaseTable__sort-indicator .sort-icon:after {
  border-top-color: rgb(var(--nw-color-neutral-400));
}
.BaseTable__header-cell .BaseTable__sort-indicator .sort-icon.sort-icon--descending:after {
  border-top-color: rgb(var(--nw-color-primary-700));
}
.BaseTable__header-cell--sortable:not(.BaseTable__header-cell--sorting) .BaseTable__sort-indicator .sort-icon.sort-icon--ascending:before {
  border-bottom-color: rgb(var(--nw-color-neutral-400));
}
.BaseTable__header-cell--sortable:not(.BaseTable__header-cell--sorting) .BaseTable__sort-indicator .sort-icon.sort-icon--descending:after {
  border-top-color: rgb(var(--nw-color-neutral-400));
}
.BaseTable__header-cell--sortable:hover {
  /* background-color: #f3f3f3; */
  cursor: pointer;
}
.BaseTable__header-cell--sortable:not(.BaseTable__header-cell--sorting):hover .BaseTable__sort-indicator .sort-icon:after {
  border-top-color: rgb(var(--nw-color-primary-700));
}
.BaseTable__header-cell--sortable.BaseTable__header-cell--sorting:hover .BaseTable__sort-indicator .sort-icon:before {
  border-bottom-color: rgb(var(--nw-color-primary-700));
}
.BaseTable__header-cell--sortable.BaseTable__header-cell--sorting:hover .BaseTable__sort-indicator .sort-icon:after {
  border-top-color: rgb(var(--nw-color-primary-700));
}
.BaseTable__header-cell--resizing .BaseTable__column-resizer {
  visibility: visible;
  opacity: 1;
}
.BaseTable__header-cell--resizing .BaseTable__column-resizer::after {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
  content: '';
  left: -9999px;
}
.BaseTable__header-row--resizing .BaseTable__header-cell {
  background-color: transparent;
  cursor: col-resize;
}
.BaseTable__header-row--resizing .BaseTable__header-cell:not(.BaseTable__header-cell--resizing) .BaseTable__column-resizer {
  visibility: hidden;
}
.BaseTable__column-resizer {
  width: 3px;
  visibility: hidden;
  /* background-color: #cccccc; */
}
.BaseTable__column-resizer:hover {
  visibility: visible;
  opacity: 1;
}
.BaseTable__footer {
  position: relative;
  /*
  NOTE:
  top: -1px;
  z-index: 1;
  so it covers table row's and sticky row cell border-bottom
  */
  top: -1px;
  z-index: var(--np-z-index-sticky-column);
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  /* background-color: #ffffff; */
}
.BaseTable__resizing-line {
  cursor: col-resize;
  position: absolute;
  top: 0;
  /* background-color: #cccccc; */
  width: 3px;
  transform: translateX(-100%);
}
.nwp-table__section-row .nw-iconbutton:not([disabled]),
.nwp-table__section-row .nw-iconbutton:not([disabled]):focus,
.nwp-table__section-row .nw-iconbutton:not([disabled]):hover {
  color: rgb(var(--nw-color-neutral-0));
}
.nwp-table__section-row nw-tag::part(base) {
  color: rgb(var(--nw-color-neutral-1000));
  border-color: rgb(var(--nw-color-neutral-0));
  background-color: rgb(var(--nw-color-neutral-0));
}
.nw-dark .BaseTable .BaseTable__row.nwp-table__section-row {
  color: rgb(var(--nw-color-neutral-1000));
  background-color: rgb(var(--nw-color-primary-400));
}
.nw-dark .BaseTable .BaseTable__row.nwp-table__section-row .nw-iconbutton:not([disabled]),
.nw-dark .BaseTable .BaseTable__row.nwp-table__section-row .nw-iconbutton:not([disabled]):focus,
.nw-dark .BaseTable .BaseTable__row.nwp-table__section-row .nw-iconbutton:not([disabled]):hover {
  color: rgb(var(--nw-color-neutral-1000));
}
.nw-dark .BaseTable .BaseTable__row.nwp-table__section-row nw-tag::part(base) {
  color: rgb(var(--nw-color-neutral-0));
  border-color: rgb(var(--nw-color-on-primary));
  background-color: rgb(var(--nw-color-on-primary));
}
.nw-dark-contrast .BaseTable__table .nwp-table__section-row {
  color: rgb(var(--nw-color-neutral-1000));
  background-color: rgb(var(--nw-color-neutral-200));
}
.nw-dark-contrast .BaseTable__table .nwp-table__section-row nw-tag::part(base) {
  color: rgb(var(--nw-color-neutral-0));
  border-color: rgb(var(--nw-color-neutral-1000));
  background-color: rgb(var(--nw-color-neutral-1000));
}
.nw-dark-contrast .BaseTable .BaseTable__row:not(.row-selected) .nw-iconbutton:not([disabled]),
.nw-dark-contrast .BaseTable .BaseTable__row:not(.row-selected) .nw-iconbutton:not([disabled]):focus,
.nw-dark-contrast .BaseTable .BaseTable__row:not(.row-selected) .nw-iconbutton:not([disabled]):hover {
  color: rgb(var(--nw-color-neutral-1000));
}
.nw-dark-contrast .BaseTable .row-selected .nwp-table__row-cell nw-icon:not(.nw-stack-br),
.nw-dark-contrast .BaseTable__table .BaseTable__row.row-selected .nwp-table__row-cell nw-icon:not(.nw-stack-br) {
  color: rgb(var(--nw-color-neutral-0)) !important;
}
.nw-dark-contrast .BaseTable .row-selected .nwp-table__row-cell .nw-iconbutton:not([disabled]),
.nw-dark-contrast .BaseTable__table .BaseTable__row.row-selected .nwp-table__row-cell .nw-iconbutton:not([disabled]),
.nw-dark-contrast .BaseTable .row-selected .nwp-table__row-cell .nw-iconbutton:not([disabled]):focus,
.nw-dark-contrast .BaseTable__table .BaseTable__row.row-selected .nwp-table__row-cell .nw-iconbutton:not([disabled]):focus,
.nw-dark-contrast .BaseTable .row-selected .nwp-table__row-cell .nw-iconbutton:not([disabled]):hover,
.nw-dark-contrast .BaseTable__table .BaseTable__row.row-selected .nwp-table__row-cell .nw-iconbutton:not([disabled]):hover {
  color: rgb(var(--nw-color-neutral-0)) !important;
}
.nw-dark-contrast .BaseTable .row-selected .nwp-table__row-cell nw-badge::part(base),
.nw-dark-contrast .BaseTable__table .BaseTable__row.row-selected .nwp-table__row-cell nw-badge::part(base) {
  border-color: rgb(var(--nw-color-neutral-0));
  background-color: rgb(var(--nw-color-neutral-0));
  color: rgb(var(--nw-color-primary-600));
}
.nw-dark-contrast .BaseTable .row-selected .nwp-table__row-cell nw-button::part(base),
.nw-dark-contrast .BaseTable__table .BaseTable__row.row-selected .nwp-table__row-cell nw-button::part(base) {
  border-color: rgb(var(--nw-color-neutral-0));
  background-color: rgb(var(--nw-color-neutral-0));
  color: rgb(var(--nw-color-neutral-1000));
}
.nw-dark-contrast .BaseTable .row-selected .nwp-table__row-cell nw-progress-bar::part(indicator),
.nw-dark-contrast .BaseTable__table .BaseTable__row.row-selected .nwp-table__row-cell nw-progress-bar::part(indicator) {
  background-color: rgb(var(--nw-color-neutral-300));
}
.nw-dark-contrast .BaseTable .row-selected .nwp-table__row-cell nw-progress-bar::part(bar),
.nw-dark-contrast .BaseTable__table .BaseTable__row.row-selected .nwp-table__row-cell nw-progress-bar::part(bar) {
  background-color: rgb(var(--nw-color-neutral-0));
}
.nw-dark-contrast .BaseTable .row-selected .nwp-table__row-cell a,
.nw-dark-contrast .BaseTable__table .BaseTable__row.row-selected .nwp-table__row-cell a,
.nw-dark-contrast .BaseTable .row-selected .nwp-table__row-cell div,
.nw-dark-contrast .BaseTable__table .BaseTable__row.row-selected .nwp-table__row-cell div {
  color: rgb(var(--nw-color-neutral-0)) !important;
}
.nw-dark-contrast .BaseTable .row-selected .nwp-table__row-cell .ffg:before,
.nw-dark-contrast .BaseTable__table .BaseTable__row.row-selected .nwp-table__row-cell .ffg:before {
  color: rgb(var(--nw-color-neutral-0)) !important;
}

.nw-table-settings {
  z-index: var(--np-z-index-sticky-column);
}
.nw-table-settings:only-child {
  position: static;
}
.nw-table-settings .nw-button {
  width: 27px;
}
.nw-table-settings__item {
  margin: 0 0.25rem;
  border: none;
  padding: 0.5rem 0.25rem;
  cursor: pointer;
  white-space: nowrap;
  min-width: 13rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: inherit;
  color: inherit;
  background-color: inherit;
}
.nw-table-settings__item:hover {
  background-color: rgb(var(--nw-color-panel-50-hover));
}
.nw-table-settings__item:hover,
.nw-table-settings__item:focus,
.nw-table-settings__item:focus-within {
  z-index: 10;
  position: relative;
}
.nw-table-settings__footer .nw-table-settings__item {
  padding: 0.5rem 0.75rem;
}
.nwp-table__header-rows {
  /* NOTE: update `calHeaderHeight` fn when update border height */
  border-bottom: 1px solid rgb(var(--nw-color-border-200));
}
.nwp-table__header-row {
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
.nwp-table__header-cell {
  border-right: 1px solid rgb(var(--nw-color-border-200));
  position: relative;
  cursor: default;
}
.nwp-table__header-row--reordering .nwp-table__header-cell {
  user-select: none;
  pointer-events: none;
}
.nwp-table__header-cell:last-child {
  border-right: none;
}
.nwp-table__header-cell-center {
  flex-grow: 1;
  height: 100%;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  overflow: hidden;
  white-space: nowrap;
}
.nwp-table__header-row:has(.nw-table-settings) .nwp-table__header-cell:nth-last-child(2) {
  padding-right: calc(27px + 7px);
}
.nwp-table__header-row:has(.nw-table-settings) .nwp-table__header-cell:nth-last-child(2) .BaseTable__column-resizer {
  right: 27px;
}
.nwp-table__header-rows,
.nwp-table__header-cell {
  color: rgb(var(--nw-color-neutral-1000));
  background-color: rgb(var(--nw-color-header-200));
}
.nwp-table__header-cell:focus,
.nwp-table__header-cell:focus-within {
  outline: rgb(var(--nw-color-primary-500)) solid 1px;
  outline-offset: -1px;
}
.nw-dark .nwp-table__header-cell:focus,
.nw-dark .nwp-table__header-cell:focus-within {
  outline: rgb(var(--nw-color-neutral-1000)) solid 1px;
  outline-offset: -1px;
}

.np-base-table__empty-layer {
  position: absolute;
  left: 0;
  right: 0;
  overflow: hidden;
}
.np-base-table__overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: calc(var(--np-z-index-sticky-column) + 1);
}
.np-base-table__overlay > * {
  pointer-events: auto;
}
.nwp-table__cell--bg-highlight {
  background-color: rgb(var(--nw-color-primary-50)) !important;
}
.nwp-table__cell--border-t-highlight {
  border-top: 2px solid rgb(var(--nw-color-primary)) !important;
}
.nwp-table__cell--border-b-highlight {
  border-bottom: 2px solid rgb(var(--nw-color-primary)) !important;
}
.nwp-table__cell--border-l-highlight {
  border-left: 2px solid rgb(var(--nw-color-primary)) !important;
}
.nwp-table__cell--border-r-highlight {
  border-right: 2px solid rgb(var(--nw-color-primary)) !important;
}

.nwp-table__header-cell:hover .nw-column-filter__trigger {
  display: block;
}
.nwp-table__header-cell:has(.nw-column-filter__trigger--active) {
  background-color: rgb(var(--nw-color-primary-100));
}

.np-column-text-filter__search {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0 0.25rem;
}
.np-column-filter__input {
  width: 100%;
}
.np-column-filter__input .nw-input .input__suffix > :last-child {
  margin-right: 0;
  display: flex;
}
.np-column-text-filter__list-title {
  border-bottom: 1px solid;
  border-top: 1px solid;
  border-color: rgb(var(--nw-color-border));
  padding: 0.25rem;
  text-align: center;
}
.np-column-text-filter__item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.3rem 0.5rem;
  cursor: pointer;
  color: rgb(var(--nw-color-neutral-1000));
}
.np-column-text-filter__item:hover {
  background-color: rgb(var(--nw-color-primary-100));
}
.np-column-text-filter__item nw-icon {
  min-height: 16px;
  min-width: 16px;
}
.nw-column-suggest-filter__item--checked {
  color: rgb(var(--nw-color-success-500));
}
.np-column-text-filter__item-label {
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.np-column-text-filter__selected-box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  max-width: 330px;
  max-height: 135px;
  overflow-y: auto;
}
@media (max-height: 680px) {
  .np-column-text-filter__selected-box-container {
    max-height: 78px;
  }
}
.np-column-text-filter__selected-box {
  max-width: 140px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  white-space: nowrap;
  border-style: solid;
  border-width: var(--nw-input-border-width);
  border-color: rgb(var(--nw-panel-border-color));
  border-radius: var(--nw-input-height-medium);
  font-family: var(--nw-input-font-family);
  font-size: var(--nw-button-font-size-medium);
  color: rgb(var(--nw-color-neutral-800));
  background-color: rgba(var(--nw-color-primary-500) / 0.2);
  padding: 0px 6px;
  line-height: 1rem;
  height: calc(1.9em - 4px);
}
.np-column-text-filter__selected-box span {
  overflow: hidden;
  text-overflow: ellipsis;
}
.np-column-text-filter__selected-box .nw-iconbutton {
  padding: 0 0 0 2px;
}

.np-column-filter__types {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0 0.25rem;
  width: -moz-fit-content;
  width: fit-content;
}

.np-column-filter__popover {
  border: 1px solid rgb(var(--nw-color-neutral-1000));
  box-shadow: 1px 1px 1px 1px rgba(var(--nw-color-neutral-1000) / 0.25);
}
.np-column-filter__form {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.np-column-filter__form *[class^='np-column'] {
  box-sizing: border-box;
}
.np-column-filter__form-header {
  padding: 0.5rem 0;
  text-align: center;
  background-color: rgb(var(--nw-color-neutral));
  color: rgb(var(--nw-color-neutral-0));
}
.nw-dark .np-column-filter__form-header {
  background-color: rgb(var(--nw-color-primary-200));
  color: rgb(var(--nw-color-on-primary));
}
.nw-dark-contrast .np-column-filter__form-header {
  background-color: rgb(var(--nw-color-primary-400));
  color: rgb(var(--nw-color-on-primary));
}
.np-column-filter__form-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.np-column-filter__form-footer {
  border-top: 1px solid rgb(var(--nw-color-border));
  padding: 0.25rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.np-column-filter__actions-footer {
  justify-content: space-between;
  padding: 0.5rem;
}
.np-column-filter__actions-footer > :first-child {
  display: flex;
  gap: 0.25rem;
}
.np-column-filter__action-button {
  padding: 0 0.25rem;
}
.np-column-filter__action-button .button--text {
  justify-content: flex-start;
}
.np-column-filter__action-button .button__label {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.np-column-filter__input {
  min-width: 8rem;
  flex-grow: 1;
}
.np-column-filter__row-cell {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.np-column-filter__flex-row-cell {
  display: flex;
  gap: 0.25rem;
}
tr:not(:first-child) .np-column-filter__row-cell {
  padding-top: 0.25rem;
}

.nw-table-settings {
  z-index: var(--np-z-index-sticky-column);
}
.nw-table-settings:only-child {
  position: static;
}
.nw-table-settings .nw-button {
  width: 27px;
}
.nw-table-settings__item {
  margin: 0 0.25rem;
  border: none;
  padding: 0.5rem 0.25rem;
  cursor: pointer;
  white-space: nowrap;
  min-width: 13rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: inherit;
  color: inherit;
  background-color: inherit;
}
.nw-table-settings__item:hover {
  background-color: rgb(var(--nw-color-panel-50-hover));
}
.nw-table-settings__item:hover,
.nw-table-settings__item:focus,
.nw-table-settings__item:focus-within {
  z-index: 10;
  position: relative;
}
.nw-table-settings__footer .nw-table-settings__item {
  padding: 0.5rem 0.75rem;
}

.nwpro_donut_chart_table {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}
.nwpro_donut_chart_table .donut-charts-container {
  display: flex;
  flex-direction: row;
  column-gap: 0.5rem;
}
.nwpro_donut_chart_table .donut-charts-container.chart-show {
  opacity: 1;
  max-height: 400px;
  transition: max-height 0.3s, opacity 0.5s;
  padding: 0.5rem;
}
.nwpro_donut_chart_table .donut-charts-container.chart-hide {
  opacity: 0;
  max-height: 0px;
  transition: max-height 0.3s, opacity 0.5s;
}
.nwpro_donut_chart_table .donut-charts-container .card {
  box-shadow: none;
  outline: 1px solid rgb(var(--nw-color-border));
  background-color: rgb(var(--nw-color-neutral-0));
  max-width: 500px;
  height: 175px;
  flex: 1 1 0;
  position: relative;
}
.nwpro_donut_chart_table .donut-charts-container .chart-title-container {
  position: relative;
  padding: 0.25rem;
  display: flex;
  align-items: center;
}
.nwpro_donut_chart_table .donut-charts-container .chart-title-container.active {
  cursor: pointer;
  color: rgb(var(--nw-color-on-primary));
  background-color: rgb(var(--nw-color-primary));
  border-color: rgb(var(--nw-color-primary));
}
.nwpro_donut_chart_table .donut-charts-container .chart-title-container.active .filter-icon {
  position: absolute;
  right: 0.25rem;
}
.nwpro_donut_chart_table .donut-charts-container .chart-title-container.active:hover,
.nwpro_donut_chart_table .donut-charts-container .chart-title-container.active:focus {
  background-color: rgb(var(--nw-color-primary-400));
}
.nwpro_donut_chart_table .donut-charts-container .chart-title-container .chart-title {
  width: 90%;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nwpro_donut_chart_table .table-container {
  flex: 1;
}
.nwpro_donut_chart_table .table-container.table-expand {
  height: calc(100vh - 45px);
  transition: height 0.3s;
}
.nwpro_donut_chart_table .table-container .nwp-toolbar .right-items .reset-icon {
  top: -0.125rem;
}

/* For general input style. Some inputs does not need the focus one. */
.fi-input-border:not(disabled) {
  outline: none;
  border: 1px solid rgb(var(--nw-color-border));
}
.fi-input-border:not(disabled):hover {
  border-color: rgb(var(--nw-input-border-color-hover));
}
/* For general input focus style */
.fi-input-focused:not(disabled):focus {
  outline: none;
  box-shadow: rgb(var(--nw-color-neutral-1000) / 25%) 0px 1px 7px 0px, rgb(var(--nw-color-neutral-1000) / 25%) 0px 0px 3px 0px;
  border-color: rgb(var(--nw-input-border-color-focus));
}
.tw-dark .treeview-icon {
  color: rgb(var(--nw-color-neutral-1000));
}
.nw-dark-contrast [data-tag='wl-item'][aria-current='true'] nw-icon::part(base),
.nw-dark-contrast [data-tag='wl-item'][aria-selected='true'] nw-icon::part(base),
.nw-dark-contrast [data-tag='wl-item']:hover nw-icon::part(base),
.nw-dark-contrast [data-tag='wl-item'][aria-current='true'] nw-icon-button:not([disabled])::part(base),
.nw-dark-contrast [data-tag='wl-item'][aria-selected='true'] nw-icon-button:not([disabled])::part(base),
.nw-dark-contrast [data-tag='wl-item']:hover nw-icon-button:not([disabled])::part(base),
.nw-dark-contrast [data-tag='wl-item'][aria-current='true'] nw-icon-button:not([disabled])::part(base):focus,
.nw-dark-contrast [data-tag='wl-item'][aria-selected='true'] nw-icon-button:not([disabled])::part(base):focus,
.nw-dark-contrast [data-tag='wl-item']:hover nw-icon-button:not([disabled])::part(base):focus,
.nw-dark-contrast [data-tag='wl-item'][aria-current='true'] nw-icon-button:not([disabled])::part(base):hover,
.nw-dark-contrast [data-tag='wl-item'][aria-selected='true'] nw-icon-button:not([disabled])::part(base):hover,
.nw-dark-contrast [data-tag='wl-item']:hover nw-icon-button:not([disabled])::part(base):hover {
  color: rgb(var(--nw-color-neutral-1000));
}
.widget-error {
  color: rgb(var(--nw-color-danger-500));
}
.help-block {
  padding-top: 0.25rem;
}

.nw-icon-button {
  margin: 0.125rem;
  color: rgb(var(--nw-color-neutral-1000));
}

.nw-spacer {
  display: inline-block;
  width: 1.5rem;
  flex-shrink: 0;
}

.tw-dark .treeview-icon {
  color: rgb(var(--nw-color-neutral-1000));
}

.nw-fl-search-input {
  flex-grow: 1;
  max-width: 100%;
  min-width: 0;
}

.fi-tooltip {
  position: absolute;
  display: none;
  box-shadow: var(--nw-shadow-small);
}

.fi-tooltip.show {
  display: block;
}

.fi-tooltip[data-popper-reference-hidden] {
  visibility: hidden;
  pointer-events: none;
}

.fi-tooltip-fade {
  opacity: 0;
  transition: opacity 0.2s linear;
}

.fi-tooltip-fade.in {
  opacity: 1;
}

.nw-count-textarea {
  display: block;
}
.nw-count-textarea > textarea {
  resize: vertical;
}
.nw-count-textarea > textarea.mono {
  font-family: monospace;
}
.nw-count-textarea .tip {
  text-align: right;
  font-size: 1rem;
}

body {
  font-family: Lato, Verdana, Helvetica, Arial, sans-serif;
  font-size: 1rem;
}
fi-lrselect {
  display: flex;
}
fi-lrselect .fi-lrs-panel {
  width: 100%;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  outline: 2px solid transparent;
  outline-offset: 2px;
  border: 1px solid;
}
fi-lrselect .fi-lrs-panel .fi-lrs-title {
  color: rgb(var(--nw-color-neutral-1000));
  background-color: rgb(var(--nw-color-neutral-200));
  font-weight: bold;
  padding: 0.25rem 0.5rem;
}
fi-lrselect .fi-lrs-panel .fi-lrs-search {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0.25rem;
}
fi-lrselect .fi-lrs-panel .fi-lrs-search .search-input {
  width: 100%;
  border: 1px solid rgb(var(--nw-input-border-color));
  color: rgb(var(--nw-color-neutral-1000));
  background-color: rgb(var(--nw-color-neutral-0));
  padding-left: 24 / 16px;
  padding-right: 22 / 16px;
}
fi-lrselect .fi-lrs-panel .fi-lrs-search .clear-search.hide {
  display: none;
}
fi-lrselect .fi-lrs-panel > .fi-lrs-cont {
  flex-grow: 1;
  position: relative;
  overflow: auto;
}
fi-lrselect .fi-lrs-panel > .fi-lrs-cont .fi-lrs-scroller {
  width: 1px;
  position: absolute;
}
fi-lrselect .fi-lrs-panel > .fi-lrs-cont > ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
fi-lrselect .fi-lrs-panel > .fi-lrs-cont > ul :hover {
  background-color: rgb(var(--nw-color-primary-200));
}
fi-lrselect .fi-lrs-panel > .fi-lrs-cont > ul > li {
  white-space: nowrap;
  position: absolute;
  width: 100%;
  display: flex;
  align-items: center;
  user-select: none;
  outline: 2px solid transparent;
  outline-offset: 2px;
}
fi-lrselect .fi-lrs-panel > .fi-lrs-cont > ul > li > .content .detail {
  font-size: 0.85em;
  color: rgb(var(--nw-color-neutral-1000));
}
fi-lrselect .fi-lrs-panel > .fi-lrs-controls {
  padding: 4 / 16px;
  display: flex;
  align-items: center;
  border-top: 1px solid #eee;
}
fi-lrselect .fi-lrs-panel > .fi-lrs-controls .btn {
  padding: 2px 5px;
  margin-right: 4px;
}
fi-lrselect .fi-lrs-panel > .fi-lrs-controls > .message {
  margin-left: auto;
}
fi-lrselect .btns {
  flex-basis: 40 / 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4 / 16px;
}

*, ::before, ::after {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x:  ;
    --tw-pan-y:  ;
    --tw-pinch-zoom:  ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position:  ;
    --tw-gradient-via-position:  ;
    --tw-gradient-to-position:  ;
    --tw-ordinal:  ;
    --tw-slashed-zero:  ;
    --tw-numeric-figure:  ;
    --tw-numeric-spacing:  ;
    --tw-numeric-fraction:  ;
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur:  ;
    --tw-brightness:  ;
    --tw-contrast:  ;
    --tw-grayscale:  ;
    --tw-hue-rotate:  ;
    --tw-invert:  ;
    --tw-saturate:  ;
    --tw-sepia:  ;
    --tw-drop-shadow:  ;
    --tw-backdrop-blur:  ;
    --tw-backdrop-brightness:  ;
    --tw-backdrop-contrast:  ;
    --tw-backdrop-grayscale:  ;
    --tw-backdrop-hue-rotate:  ;
    --tw-backdrop-invert:  ;
    --tw-backdrop-opacity:  ;
    --tw-backdrop-saturate:  ;
    --tw-backdrop-sepia:  ;
    --tw-contain-size:  ;
    --tw-contain-layout:  ;
    --tw-contain-paint:  ;
    --tw-contain-style:  
}
::backdrop {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x:  ;
    --tw-pan-y:  ;
    --tw-pinch-zoom:  ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position:  ;
    --tw-gradient-via-position:  ;
    --tw-gradient-to-position:  ;
    --tw-ordinal:  ;
    --tw-slashed-zero:  ;
    --tw-numeric-figure:  ;
    --tw-numeric-spacing:  ;
    --tw-numeric-fraction:  ;
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur:  ;
    --tw-brightness:  ;
    --tw-contrast:  ;
    --tw-grayscale:  ;
    --tw-hue-rotate:  ;
    --tw-invert:  ;
    --tw-saturate:  ;
    --tw-sepia:  ;
    --tw-drop-shadow:  ;
    --tw-backdrop-blur:  ;
    --tw-backdrop-brightness:  ;
    --tw-backdrop-contrast:  ;
    --tw-backdrop-grayscale:  ;
    --tw-backdrop-hue-rotate:  ;
    --tw-backdrop-invert:  ;
    --tw-backdrop-opacity:  ;
    --tw-backdrop-saturate:  ;
    --tw-backdrop-sepia:  ;
    --tw-contain-size:  ;
    --tw-contain-layout:  ;
    --tw-contain-paint:  ;
    --tw-contain-style:  
}
.tw-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0
}
.tw-pointer-events-none {
    pointer-events: none
}
.tw-pointer-events-auto {
    pointer-events: auto
}
.tw-visible {
    visibility: visible
}
.tw-invisible {
    visibility: hidden
}
.tw-fixed {
    position: fixed
}
.tw-absolute {
    position: absolute
}
.tw-relative {
    position: relative
}
.tw-sticky {
    position: sticky
}
.tw-inset-0 {
    inset: 0px
}
.tw--top-0 {
    top: -0px
}
.tw--top-0\.5 {
    top: -0.125rem
}
.tw--top-px {
    top: -1px
}
.tw-bottom-0 {
    bottom: 0px
}
.tw-bottom-1 {
    bottom: 0.25rem
}
.tw-bottom-1\/2 {
    bottom: 50%
}
.tw-bottom-10 {
    bottom: 2.5rem
}
.tw-bottom-2 {
    bottom: 0.5rem
}
.tw-bottom-4 {
    bottom: 1rem
}
.tw-bottom-6 {
    bottom: 1.5rem
}
.tw-bottom-\[-14px\] {
    bottom: -14px
}
.tw-left-0 {
    left: 0px
}
.tw-left-1\/2 {
    left: 50%
}
.tw-left-14 {
    left: 3.5rem
}
.tw-left-2 {
    left: 0.5rem
}
.tw-left-4 {
    left: 1rem
}
.tw-left-6 {
    left: 1.5rem
}
.tw-left-\[-3px\] {
    left: -3px
}
.tw-left-\[30\%\] {
    left: 30%
}
.tw-left-\[55px\] {
    left: 55px
}
.tw-left-\[71px\] {
    left: 71px
}
.tw-left-full {
    left: 100%
}
.tw-right-0 {
    right: 0px
}
.tw-right-1 {
    right: 0.25rem
}
.tw-right-1\.5 {
    right: 0.375rem
}
.tw-right-1\/2 {
    right: 50%
}
.tw-right-2 {
    right: 0.5rem
}
.tw-right-3 {
    right: 0.75rem
}
.tw-right-4 {
    right: 1rem
}
.tw-right-5 {
    right: 1.25rem
}
.tw-right-6 {
    right: 1.5rem
}
.tw-right-8 {
    right: 2rem
}
.tw-top-0 {
    top: 0px
}
.tw-top-0\.5 {
    top: 0.125rem
}
.tw-top-1 {
    top: 0.25rem
}
.tw-top-1\/2 {
    top: 50%
}
.tw-top-4 {
    top: 1rem
}
.tw-top-\[-3px\] {
    top: -3px
}
.tw-top-\[-50px\] {
    top: -50px
}
.tw-top-\[-5px\] {
    top: -5px
}
.tw-top-\[40\%\] {
    top: 40%
}
.tw-top-\[45\%\] {
    top: 45%
}
.tw-z-0 {
    z-index: 0
}
.tw-z-10 {
    z-index: 10
}
.tw-z-50 {
    z-index: 50
}
.tw-z-\[1\] {
    z-index: 1
}
.tw-z-\[var\(--nw-z-index-dialog\)\] {
    z-index: var(--nw-z-index-dialog)
}
.tw-z-dropdown {
    z-index: 900
}
.tw-order-1 {
    order: 1
}
.tw-order-2 {
    order: 2
}
.tw-order-3 {
    order: 3
}
.tw-order-4 {
    order: 4
}
.tw-col-span-1 {
    grid-column: span 1 / span 1
}
.tw-col-span-2 {
    grid-column: span 2 / span 2
}
.tw-col-span-3 {
    grid-column: span 3 / span 3
}
.tw-col-span-4 {
    grid-column: span 4 / span 4
}
.tw-col-span-6 {
    grid-column: span 6 / span 6
}
.tw-float-start {
    float: inline-start
}
.tw-float-right {
    float: right
}
.tw-m-0 {
    margin: 0px
}
.tw-m-0\.5 {
    margin: 0.125rem
}
.tw-m-1 {
    margin: 0.25rem
}
.tw-m-2 {
    margin: 0.5rem
}
.tw-m-3 {
    margin: 0.75rem
}
.tw-m-4 {
    margin: 1rem
}
.tw-m-auto {
    margin: auto
}
.tw-mx-0 {
    margin-left: 0px;
    margin-right: 0px
}
.tw-mx-0\.5 {
    margin-left: 0.125rem;
    margin-right: 0.125rem
}
.tw-mx-1 {
    margin-left: 0.25rem;
    margin-right: 0.25rem
}
.tw-mx-1\.5 {
    margin-left: 0.375rem;
    margin-right: 0.375rem
}
.tw-mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem
}
.tw-mx-2\.5 {
    margin-left: 0.625rem;
    margin-right: 0.625rem
}
.tw-mx-4 {
    margin-left: 1rem;
    margin-right: 1rem
}
.tw-mx-6 {
    margin-left: 1.5rem;
    margin-right: 1.5rem
}
.tw-mx-8 {
    margin-left: 2rem;
    margin-right: 2rem
}
.tw-mx-\[4px\] {
    margin-left: 4px;
    margin-right: 4px
}
.tw-mx-auto {
    margin-left: auto;
    margin-right: auto
}
.tw-my-0 {
    margin-top: 0px;
    margin-bottom: 0px
}
.tw-my-1 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem
}
.tw-my-10 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem
}
.tw-my-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem
}
.tw-my-3 {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem
}
.tw-my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem
}
.tw-my-5 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem
}
.tw-my-\[2px\] {
    margin-top: 2px;
    margin-bottom: 2px
}
.tw-my-auto {
    margin-top: auto;
    margin-bottom: auto
}
.-tw-mt-2 {
    margin-top: -0.5rem
}
.tw--ml-1 {
    margin-left: -0.25rem
}
.tw-mb-0 {
    margin-bottom: 0px
}
.tw-mb-1 {
    margin-bottom: 0.25rem
}
.tw-mb-10 {
    margin-bottom: 2.5rem
}
.tw-mb-12 {
    margin-bottom: 3rem
}
.tw-mb-2 {
    margin-bottom: 0.5rem
}
.tw-mb-2\.5 {
    margin-bottom: 0.625rem
}
.tw-mb-3 {
    margin-bottom: 0.75rem
}
.tw-mb-4 {
    margin-bottom: 1rem
}
.tw-mb-5 {
    margin-bottom: 1.25rem
}
.tw-mb-6 {
    margin-bottom: 1.5rem
}
.tw-mb-8 {
    margin-bottom: 2rem
}
.tw-ml-0 {
    margin-left: 0px
}
.tw-ml-0\.5 {
    margin-left: 0.125rem
}
.tw-ml-1 {
    margin-left: 0.25rem
}
.tw-ml-1\.5 {
    margin-left: 0.375rem
}
.tw-ml-2 {
    margin-left: 0.5rem
}
.tw-ml-3 {
    margin-left: 0.75rem
}
.tw-ml-4 {
    margin-left: 1rem
}
.tw-ml-40 {
    margin-left: 10rem
}
.tw-ml-5 {
    margin-left: 1.25rem
}
.tw-ml-6 {
    margin-left: 1.5rem
}
.tw-ml-8 {
    margin-left: 2rem
}
.tw-ml-auto {
    margin-left: auto
}
.tw-mr-1 {
    margin-right: 0.25rem
}
.tw-mr-1\.5 {
    margin-right: 0.375rem
}
.tw-mr-2 {
    margin-right: 0.5rem
}
.tw-mr-2\.5 {
    margin-right: 0.625rem
}
.tw-mr-3 {
    margin-right: 0.75rem
}
.tw-mr-4 {
    margin-right: 1rem
}
.tw-mr-5 {
    margin-right: 1.25rem
}
.tw-mr-6 {
    margin-right: 1.5rem
}
.tw-mr-8 {
    margin-right: 2rem
}
.tw-mr-\[0\.2rem\] {
    margin-right: 0.2rem
}
.tw-mr-\[0\.4rem\] {
    margin-right: 0.4rem
}
.tw-mr-auto {
    margin-right: auto
}
.tw-mr-px {
    margin-right: 1px
}
.tw-mt-0 {
    margin-top: 0px
}
.tw-mt-1 {
    margin-top: 0.25rem
}
.tw-mt-1\.5 {
    margin-top: 0.375rem
}
.tw-mt-10 {
    margin-top: 2.5rem
}
.tw-mt-2 {
    margin-top: 0.5rem
}
.tw-mt-3 {
    margin-top: 0.75rem
}
.tw-mt-4 {
    margin-top: 1rem
}
.tw-mt-5 {
    margin-top: 1.25rem
}
.tw-mt-6 {
    margin-top: 1.5rem
}
.tw-mt-\[0\.5em\] {
    margin-top: 0.5em
}
.tw-mt-\[8rem\] {
    margin-top: 8rem
}
.tw-box-border {
    box-sizing: border-box
}
.tw-box-content {
    box-sizing: content-box
}
.tw-block {
    display: block
}
.tw-inline-block {
    display: inline-block
}
.tw-inline {
    display: inline
}
.tw-flex {
    display: flex
}
.tw-inline-flex {
    display: inline-flex
}
.tw-grid {
    display: grid
}
.tw-contents {
    display: contents
}
.tw-list-item {
    display: list-item
}
.tw-hidden {
    display: none
}
.tw-size-3 {
    width: 0.75rem;
    height: 0.75rem
}
.tw-size-4 {
    width: 1rem;
    height: 1rem
}
.tw-size-full {
    width: 100%;
    height: 100%
}
.\!tw-h-fit {
    height: -moz-fit-content !important;
    height: fit-content !important
}
.tw-h-0 {
    height: 0px
}
.tw-h-0\.5 {
    height: 0.125rem
}
.tw-h-1 {
    height: 0.25rem
}
.tw-h-1\/2 {
    height: 50%
}
.tw-h-1\/4 {
    height: 25%
}
.tw-h-1\/5 {
    height: 20%
}
.tw-h-1\/6 {
    height: 16.666667%
}
.tw-h-10 {
    height: 2.5rem
}
.tw-h-11 {
    height: 2.75rem
}
.tw-h-12 {
    height: 3rem
}
.tw-h-14 {
    height: 3.5rem
}
.tw-h-16 {
    height: 4rem
}
.tw-h-2 {
    height: 0.5rem
}
.tw-h-2\.5 {
    height: 0.625rem
}
.tw-h-2\/4 {
    height: 50%
}
.tw-h-2\/6 {
    height: 33.333333%
}
.tw-h-20 {
    height: 5rem
}
.tw-h-24 {
    height: 6rem
}
.tw-h-28 {
    height: 7rem
}
.tw-h-3 {
    height: 0.75rem
}
.tw-h-4 {
    height: 1rem
}
.tw-h-4\/5 {
    height: 80%
}
.tw-h-4\/6 {
    height: 66.666667%
}
.tw-h-40 {
    height: 10rem
}
.tw-h-48 {
    height: 12rem
}
.tw-h-5 {
    height: 1.25rem
}
.tw-h-5\/6 {
    height: 83.333333%
}
.tw-h-6 {
    height: 1.5rem
}
.tw-h-60 {
    height: 15rem
}
.tw-h-7 {
    height: 1.75rem
}
.tw-h-8 {
    height: 2rem
}
.tw-h-80 {
    height: 20rem
}
.tw-h-9 {
    height: 2.25rem
}
.tw-h-\[1\.4em\] {
    height: 1.4em
}
.tw-h-\[15rem\] {
    height: 15rem
}
.tw-h-\[18rem\] {
    height: 18rem
}
.tw-h-\[20rem\] {
    height: 20rem
}
.tw-h-\[27rem\] {
    height: 27rem
}
.tw-h-\[28rem\] {
    height: 28rem
}
.tw-h-\[6rem\] {
    height: 6rem
}
.tw-h-\[70px\] {
    height: 70px
}
.tw-h-auto {
    height: auto
}
.tw-h-fit {
    height: -moz-fit-content;
    height: fit-content
}
.tw-h-full {
    height: 100%
}
.tw-h-px {
    height: 1px
}
.tw-h-screen {
    height: 100vh
}
.tw-max-h-11 {
    max-height: 2.75rem
}
.tw-max-h-52 {
    max-height: 13rem
}
.tw-max-h-60 {
    max-height: 15rem
}
.tw-max-h-80 {
    max-height: 20rem
}
.tw-max-h-96 {
    max-height: 24rem
}
.tw-max-h-\[calc\(100vh_-_35rem\)\] {
    max-height: calc(100vh - 35rem)
}
.tw-max-h-full {
    max-height: 100%
}
.tw-max-h-screen {
    max-height: 100vh
}
.tw-min-h-0 {
    min-height: 0px
}
.tw-min-h-10 {
    min-height: 2.5rem
}
.tw-min-h-12 {
    min-height: 3rem
}
.tw-min-h-16 {
    min-height: 4rem
}
.tw-min-h-20 {
    min-height: 5rem
}
.tw-min-h-24 {
    min-height: 6rem
}
.tw-min-h-32 {
    min-height: 8rem
}
.tw-min-h-72 {
    min-height: 18rem
}
.tw-min-h-8 {
    min-height: 2rem
}
.tw-min-h-\[1\.6rem\] {
    min-height: 1.6rem
}
.tw-min-h-\[10rem\] {
    min-height: 10rem
}
.tw-min-h-\[15rem\] {
    min-height: 15rem
}
.tw-min-h-\[22\.75rem\] {
    min-height: 22.75rem
}
.tw-min-h-\[40rem\] {
    min-height: 40rem
}
.tw-min-h-\[5rem\] {
    min-height: 5rem
}
.tw-min-h-\[8rem\] {
    min-height: 8rem
}
.tw-min-h-full {
    min-height: 100%
}
.tw-min-h-max {
    min-height: max-content
}
.tw-w-0 {
    width: 0px
}
.tw-w-0\.5 {
    width: 0.125rem
}
.tw-w-1 {
    width: 0.25rem
}
.tw-w-1\/12 {
    width: 8.333333%
}
.tw-w-1\/2 {
    width: 50%
}
.tw-w-1\/3 {
    width: 33.333333%
}
.tw-w-1\/4 {
    width: 25%
}
.tw-w-1\/5 {
    width: 20%
}
.tw-w-1\/6 {
    width: 16.666667%
}
.tw-w-10 {
    width: 2.5rem
}
.tw-w-11\/12 {
    width: 91.666667%
}
.tw-w-12 {
    width: 3rem
}
.tw-w-14 {
    width: 3.5rem
}
.tw-w-16 {
    width: 4rem
}
.tw-w-2\/3 {
    width: 66.666667%
}
.tw-w-2\/4 {
    width: 50%
}
.tw-w-2\/5 {
    width: 40%
}
.tw-w-2\/6 {
    width: 33.333333%
}
.tw-w-20 {
    width: 5rem
}
.tw-w-24 {
    width: 6rem
}
.tw-w-3 {
    width: 0.75rem
}
.tw-w-3\/4 {
    width: 75%
}
.tw-w-3\/5 {
    width: 60%
}
.tw-w-3\/6 {
    width: 50%
}
.tw-w-32 {
    width: 8rem
}
.tw-w-36 {
    width: 9rem
}
.tw-w-4 {
    width: 1rem
}
.tw-w-4\/12 {
    width: 33.333333%
}
.tw-w-4\/5 {
    width: 80%
}
.tw-w-4\/6 {
    width: 66.666667%
}
.tw-w-40 {
    width: 10rem
}
.tw-w-44 {
    width: 11rem
}
.tw-w-48 {
    width: 12rem
}
.tw-w-5\/12 {
    width: 41.666667%
}
.tw-w-52 {
    width: 13rem
}
.tw-w-56 {
    width: 14rem
}
.tw-w-6 {
    width: 1.5rem
}
.tw-w-60 {
    width: 15rem
}
.tw-w-64 {
    width: 16rem
}
.tw-w-66 {
    width: 16.5rem
}
.tw-w-7 {
    width: 1.75rem
}
.tw-w-8 {
    width: 2rem
}
.tw-w-8\/12 {
    width: 66.666667%
}
.tw-w-80 {
    width: 20rem
}
.tw-w-\[1\.4em\] {
    width: 1.4em
}
.tw-w-\[15rem\] {
    width: 15rem
}
.tw-w-\[20rem\] {
    width: 20rem
}
.tw-w-\[250px\] {
    width: 250px
}
.tw-w-\[30rem\] {
    width: 30rem
}
.tw-w-\[33rem\] {
    width: 33rem
}
.tw-w-\[35rem\] {
    width: 35rem
}
.tw-w-\[3px\] {
    width: 3px
}
.tw-w-\[40rem\] {
    width: 40rem
}
.tw-w-\[7px\] {
    width: 7px
}
.tw-w-\[80\%\] {
    width: 80%
}
.tw-w-\[calc\(33\.33\%-10px\)\] {
    width: calc(33.33% - 10px)
}
.tw-w-\[calc\(66\.66\%-6px\)\] {
    width: calc(66.66% - 6px)
}
.tw-w-fit {
    width: -moz-fit-content;
    width: fit-content
}
.tw-w-full {
    width: 100%
}
.tw-w-px {
    width: 1px
}
.tw-min-w-0 {
    min-width: 0px
}
.tw-min-w-1 {
    min-width: 0.25rem
}
.tw-min-w-12 {
    min-width: 3rem
}
.tw-min-w-16 {
    min-width: 4rem
}
.tw-min-w-24 {
    min-width: 6rem
}
.tw-min-w-28 {
    min-width: 7rem
}
.tw-min-w-3 {
    min-width: 0.75rem
}
.tw-min-w-32 {
    min-width: 8rem
}
.tw-min-w-36 {
    min-width: 9rem
}
.tw-min-w-4 {
    min-width: 1rem
}
.tw-min-w-40 {
    min-width: 10rem
}
.tw-min-w-5 {
    min-width: 1.25rem
}
.tw-min-w-6 {
    min-width: 1.5rem
}
.tw-min-w-60 {
    min-width: 15rem
}
.tw-min-w-80 {
    min-width: 20rem
}
.tw-min-w-\[10rem\] {
    min-width: 10rem
}
.tw-min-w-\[15rem\] {
    min-width: 15rem
}
.tw-min-w-\[200px\] {
    min-width: 200px
}
.tw-min-w-\[25rem\] {
    min-width: 25rem
}
.tw-min-w-\[26rem\] {
    min-width: 26rem
}
.tw-min-w-\[30rem\] {
    min-width: 30rem
}
.tw-min-w-\[40rem\] {
    min-width: 40rem
}
.tw-min-w-\[8rem\] {
    min-width: 8rem
}
.tw-min-w-max {
    min-width: max-content
}
.tw-max-w-2xl {
    max-width: 42rem
}
.tw-max-w-48 {
    max-width: 12rem
}
.tw-max-w-64 {
    max-width: 16rem
}
.tw-max-w-72 {
    max-width: 18rem
}
.tw-max-w-9 {
    max-width: 2.25rem
}
.tw-max-w-96 {
    max-width: 24rem
}
.tw-max-w-\[16em\] {
    max-width: 16em
}
.tw-max-w-\[20rem\] {
    max-width: 20rem
}
.tw-max-w-\[30rem\] {
    max-width: 30rem
}
.tw-max-w-\[35\%\] {
    max-width: 35%
}
.tw-max-w-full {
    max-width: 100%
}
.tw-max-w-xl {
    max-width: 36rem
}
.tw-max-w-xs {
    max-width: 20rem
}
.tw-flex-1 {
    flex: 1 1 0%
}
.tw-flex-\[1_0_14\.28\%\] {
    flex: 1 0 14.28%
}
.tw-flex-\[2_2_0\%\] {
    flex: 2 2 0%
}
.tw-flex-\[5_3_0\%\] {
    flex: 5 3 0%
}
.tw-flex-auto {
    flex: 1 1 auto
}
.tw-flex-initial {
    flex: 0 1 auto
}
.tw-flex-none {
    flex: none
}
.tw-flex-shrink-0 {
    flex-shrink: 0
}
.tw-shrink {
    flex-shrink: 1
}
.tw-shrink-0 {
    flex-shrink: 0
}
.tw-flex-grow {
    flex-grow: 1
}
.tw-grow {
    flex-grow: 1
}
.tw-grow-0 {
    flex-grow: 0
}
.tw-basis-0 {
    flex-basis: 0px
}
.tw-basis-1\/2 {
    flex-basis: 50%
}
.tw-basis-6 {
    flex-basis: 1.5rem
}
.tw-basis-auto {
    flex-basis: auto
}
.tw-table-auto {
    table-layout: auto
}
.tw-table-fixed {
    table-layout: fixed
}
.tw-border-collapse {
    border-collapse: collapse
}
.tw-border-spacing-1 {
    --tw-border-spacing-x: 0.25rem;
    --tw-border-spacing-y: 0.25rem;
    border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y)
}
.tw-border-spacing-4 {
    --tw-border-spacing-x: 1rem;
    --tw-border-spacing-y: 1rem;
    border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y)
}
.tw--translate-x-full {
    --tw-translate-x: -100%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}
.tw-translate-x-\[-50\%\] {
    --tw-translate-x: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}
.tw-translate-y-\[-50\%\] {
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}
.tw--rotate-90 {
    --tw-rotate: -90deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}
.tw-scale-\[0\.6\] {
    --tw-scale-x: 0.6;
    --tw-scale-y: 0.6;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}
.tw-transform {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}
@keyframes tw-spin {
    to {
        transform: rotate(360deg)
    }
}
.tw-animate-spin {
    animation: tw-spin 2s linear infinite
}
.tw-cursor-default {
    cursor: default
}
.tw-cursor-ew-resize {
    cursor: ew-resize
}
.tw-cursor-move {
    cursor: move
}
.tw-cursor-not-allowed {
    cursor: not-allowed
}
.tw-cursor-ns-resize {
    cursor: ns-resize
}
.tw-cursor-pointer {
    cursor: pointer
}
.tw-select-none {
    user-select: none
}
.tw-list-inside {
    list-style-position: inside
}
.tw-list-disc {
    list-style-type: disc
}
.tw-list-none {
    list-style-type: none
}
.tw-appearance-none {
    appearance: none
}
.tw-grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr))
}
.tw-grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr))
}
.tw-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
}
.tw-grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr))
}
.tw-grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr))
}
.tw-flex-row {
    flex-direction: row
}
.tw-flex-col {
    flex-direction: column
}
.tw-flex-col-reverse {
    flex-direction: column-reverse
}
.tw-flex-wrap {
    flex-wrap: wrap
}
.tw-flex-wrap-reverse {
    flex-wrap: wrap-reverse
}
.tw-flex-nowrap {
    flex-wrap: nowrap
}
.tw-place-content-center {
    place-content: center
}
.tw-place-items-center {
    place-items: center
}
.tw-content-center {
    align-content: center
}
.tw-items-start {
    align-items: flex-start
}
.tw-items-end {
    align-items: flex-end
}
.tw-items-center {
    align-items: center
}
.tw-items-baseline {
    align-items: baseline
}
.tw-items-stretch {
    align-items: stretch
}
.tw-justify-start {
    justify-content: flex-start
}
.tw-justify-end {
    justify-content: flex-end
}
.tw-justify-center {
    justify-content: center
}
.tw-justify-between {
    justify-content: space-between
}
.tw-justify-evenly {
    justify-content: space-evenly
}
.tw-gap-0 {
    gap: 0px
}
.tw-gap-0\.5 {
    gap: 0.125rem
}
.tw-gap-1 {
    gap: 0.25rem
}
.tw-gap-1\.5 {
    gap: 0.375rem
}
.tw-gap-10 {
    gap: 2.5rem
}
.tw-gap-2 {
    gap: 0.5rem
}
.tw-gap-2\.5 {
    gap: 0.625rem
}
.tw-gap-3 {
    gap: 0.75rem
}
.tw-gap-4 {
    gap: 1rem
}
.tw-gap-5 {
    gap: 1.25rem
}
.tw-gap-6 {
    gap: 1.5rem
}
.tw-gap-8 {
    gap: 2rem
}
.tw-gap-\[0\.3rem\] {
    gap: 0.3rem
}
.tw-gap-x-0 {
    column-gap: 0px
}
.tw-gap-x-0\.5 {
    column-gap: 0.125rem
}
.tw-gap-x-1 {
    column-gap: 0.25rem
}
.tw-gap-x-1\.5 {
    column-gap: 0.375rem
}
.tw-gap-x-2 {
    column-gap: 0.5rem
}
.tw-gap-x-3 {
    column-gap: 0.75rem
}
.tw-gap-x-4 {
    column-gap: 1rem
}
.tw-gap-y-2 {
    row-gap: 0.5rem
}
.tw-gap-y-4 {
    row-gap: 1rem
}
.tw-space-x-1 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(0.25rem * var(--tw-space-x-reverse));
    margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)))
}
.tw-space-x-2 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(0.5rem * var(--tw-space-x-reverse));
    margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)))
}
.tw-space-x-4 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(1rem * var(--tw-space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)))
}
.tw-space-y-1 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.25rem * var(--tw-space-y-reverse))
}
.tw-space-y-2 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse))
}
.tw-space-y-4 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1rem * var(--tw-space-y-reverse))
}
.tw-space-y-px > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1px * var(--tw-space-y-reverse))
}
.tw-place-self-center {
    place-self: center
}
.tw-self-start {
    align-self: flex-start
}
.tw-self-end {
    align-self: flex-end
}
.tw-self-center {
    align-self: center
}
.tw-self-stretch {
    align-self: stretch
}
.tw-overflow-auto {
    overflow: auto
}
.tw-overflow-hidden {
    overflow: hidden
}
.tw-overflow-visible {
    overflow: visible
}
.tw-overflow-scroll {
    overflow: scroll
}
.tw-overflow-x-auto {
    overflow-x: auto
}
.tw-overflow-y-auto {
    overflow-y: auto
}
.tw-overflow-x-hidden {
    overflow-x: hidden
}
.tw-overflow-y-hidden {
    overflow-y: hidden
}
.tw-overflow-x-clip {
    overflow-x: clip
}
.tw-overflow-x-scroll {
    overflow-x: scroll
}
.tw-overflow-y-scroll {
    overflow-y: scroll
}
.tw-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}
.tw-text-ellipsis {
    text-overflow: ellipsis
}
.tw-whitespace-normal {
    white-space: normal
}
.tw-whitespace-nowrap {
    white-space: nowrap
}
.tw-whitespace-pre {
    white-space: pre
}
.tw-whitespace-pre-line {
    white-space: pre-line
}
.tw-whitespace-pre-wrap {
    white-space: pre-wrap
}
.tw-text-nowrap {
    text-wrap: nowrap
}
.tw-break-words {
    overflow-wrap: break-word
}
.tw-break-all {
    word-break: break-all
}
.tw-rounded {
    border-radius: 0.25rem
}
.tw-rounded-2xl {
    border-radius: 1rem
}
.tw-rounded-\[2px\] {
    border-radius: 2px
}
.tw-rounded-full {
    border-radius: 9999px
}
.tw-rounded-lg {
    border-radius: 0.5rem
}
.tw-rounded-md {
    border-radius: 0.375rem
}
.tw-rounded-sm {
    border-radius: 0.125rem
}
.tw-rounded-b-lg {
    border-bottom-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem
}
.tw-rounded-bl-md {
    border-bottom-left-radius: 0.375rem
}
.tw-rounded-tl-md {
    border-top-left-radius: 0.375rem
}
.tw-border {
    border-width: 1px
}
.tw-border-0 {
    border-width: 0px
}
.tw-border-2 {
    border-width: 2px
}
.tw-border-4 {
    border-width: 4px
}
.tw-border-\[1px\] {
    border-width: 1px
}
.tw-border-\[2px\] {
    border-width: 2px
}
.tw-border-\[3px\] {
    border-width: 3px
}
.tw-border-\[5px\] {
    border-width: 5px
}
.tw-border-x-0 {
    border-left-width: 0px;
    border-right-width: 0px
}
.tw-border-x-4 {
    border-left-width: 4px;
    border-right-width: 4px
}
.tw-border-y-0 {
    border-top-width: 0px;
    border-bottom-width: 0px
}
.\!tw-border-r-0 {
    border-right-width: 0px !important
}
.tw-border-b {
    border-bottom-width: 1px
}
.tw-border-b-0 {
    border-bottom-width: 0px
}
.tw-border-b-2 {
    border-bottom-width: 2px
}
.tw-border-b-\[2px\] {
    border-bottom-width: 2px
}
.tw-border-l-0 {
    border-left-width: 0px
}
.tw-border-r {
    border-right-width: 1px
}
.tw-border-r-0 {
    border-right-width: 0px
}
.tw-border-t {
    border-top-width: 1px
}
.tw-border-t-0 {
    border-top-width: 0px
}
.tw-border-solid {
    border-style: solid
}
.tw-border-dashed {
    border-style: dashed
}
.tw-border-none {
    border-style: none
}
.tw-border-\[\#ddd\] {
    border-color: #ddd
}
.tw-border-\[rgb\(var\(--nw-color-border\)\)\] {
    border-color: rgb(var(--nw-color-border))
}
.tw-border-border {
    border-color: rgb(var(--nw-color-border))
}
.tw-border-border-100 {
    border-color: rgb(var(--nw-color-border-100))
}
.tw-border-danger-500 {
    border-color: rgb(var(--nw-color-danger-500))
}
.tw-border-gray-300 {
    border-color: rgb(var(--nw-color-gray-300))
}
.tw-border-gray-400 {
    border-color: rgb(var(--nw-color-gray-400))
}
.tw-border-gray-500 {
    border-color: rgb(var(--nw-color-gray-500))
}
.tw-border-neutral-0 {
    border-color: rgb(var(--nw-color-neutral-0))
}
.tw-border-neutral-100 {
    border-color: rgb(var(--nw-color-neutral-100))
}
.tw-border-neutral-1000 {
    border-color: rgb(var(--nw-color-neutral-1000))
}
.tw-border-neutral-200 {
    border-color: rgb(var(--nw-color-neutral-200))
}
.tw-border-neutral-300 {
    border-color: rgb(var(--nw-color-neutral-300))
}
.tw-border-neutral-400 {
    border-color: rgb(var(--nw-color-neutral-400))
}
.tw-border-neutral-500 {
    border-color: rgb(var(--nw-color-neutral-500))
}
.tw-border-neutral-600 {
    border-color: rgb(var(--nw-color-neutral-600))
}
.tw-border-primary {
    border-color: rgb(var(--nw-color-primary-500))
}
.tw-border-primary-100 {
    border-color: rgb(var(--nw-color-primary-100))
}
.tw-border-primary-300 {
    border-color: rgb(var(--nw-color-primary-300))
}
.tw-border-primary-500 {
    border-color: rgb(var(--nw-color-primary-500))
}
.tw-border-primary-600 {
    border-color: rgb(var(--nw-color-primary-600))
}
.tw-border-red {
    border-color: rgb(var(--nw-color-red-500))
}
.tw-border-red-500 {
    border-color: rgb(var(--nw-color-red-500))
}
.tw-border-success-500 {
    border-color: rgb(var(--nw-color-success-500))
}
.tw-border-transparent {
    border-color: transparent
}
.tw-border-warning-500 {
    border-color: rgb(var(--nw-color-warning-500))
}
.tw-border-b-primary-500 {
    border-bottom-color: rgb(var(--nw-color-primary-500))
}
.tw-border-l-blue-400 {
    border-left-color: rgb(var(--nw-color-blue-400))
}
.tw-border-l-neutral-100 {
    border-left-color: rgb(var(--nw-color-neutral-100))
}
.tw-border-l-orange-400 {
    border-left-color: rgb(var(--nw-color-orange-400))
}
.tw-border-l-primary-400 {
    border-left-color: rgb(var(--nw-color-primary-400))
}
.tw-border-l-purple-400 {
    border-left-color: rgb(var(--nw-color-purple-400))
}
.tw-border-l-red-400 {
    border-left-color: rgb(var(--nw-color-red-400))
}
.\!tw-bg-blue-800 {
    background-color: rgb(var(--nw-color-blue-800)) !important
}
.tw-bg-\[rgb\(var\(--nw-color-gray-50\)\)\] {
    background-color: rgb(var(--nw-color-gray-50))
}
.tw-bg-\[rgb\(var\(--nw-color-neutral-500\)\)\] {
    background-color: rgb(var(--nw-color-neutral-500))
}
.tw-bg-black {
    background-color: rgb(var(--nw-color-black-500))
}
.tw-bg-blue-200 {
    background-color: rgb(var(--nw-color-blue-200))
}
.tw-bg-blue-400 {
    background-color: rgb(var(--nw-color-blue-400))
}
.tw-bg-blue-700 {
    background-color: rgb(var(--nw-color-blue-700))
}
.tw-bg-body-bg {
    background-color: rgb(var(--nw-color-body-bg))
}
.tw-bg-border {
    background-color: rgb(var(--nw-color-border))
}
.tw-bg-caution-100 {
    background-color: rgb(var(--nw-color-caution-100))
}
.tw-bg-danger {
    background-color: rgb(var(--nw-color-danger-500))
}
.tw-bg-danger-400 {
    background-color: rgb(var(--nw-color-danger-400))
}
.tw-bg-danger-500 {
    background-color: rgb(var(--nw-color-danger-500))
}
.tw-bg-danger-600 {
    background-color: rgb(var(--nw-color-danger-600))
}
.tw-bg-footer-100 {
    background-color: rgb(var(--nw-color-footer-100))
}
.tw-bg-gray-100 {
    background-color: rgb(var(--nw-color-gray-100))
}
.tw-bg-gray-300 {
    background-color: rgb(var(--nw-color-gray-300))
}
.tw-bg-gray-400 {
    background-color: rgb(var(--nw-color-gray-400))
}
.tw-bg-gray-50 {
    background-color: rgb(var(--nw-color-gray-50))
}
.tw-bg-gray-500 {
    background-color: rgb(var(--nw-color-gray-500))
}
.tw-bg-gray-700 {
    background-color: rgb(var(--nw-color-gray-700))
}
.tw-bg-green-200 {
    background-color: rgb(var(--nw-color-green-200))
}
.tw-bg-green-500 {
    background-color: rgb(var(--nw-color-green-500))
}
.tw-bg-header-300 {
    background-color: rgb(var(--nw-color-header-300))
}
.tw-bg-info-800 {
    background-color: rgb(var(--nw-color-info-800))
}
.tw-bg-msg-blue {
    background-color: rgb(var(--nw-color-msg-blue))
}
.tw-bg-msg-yellow {
    background-color: rgb(var(--nw-color-msg-yellow))
}
.tw-bg-navbar {
    background-color: rgb(var(--nw-color-navbar))
}
.tw-bg-navbar-title {
    background-color: rgb(var(--nw-color-navbar-title))
}
.tw-bg-neutral-0 {
    background-color: rgb(var(--nw-color-neutral-0))
}
.tw-bg-neutral-100 {
    background-color: rgb(var(--nw-color-neutral-100))
}
.tw-bg-neutral-1000 {
    background-color: rgb(var(--nw-color-neutral-1000))
}
.tw-bg-neutral-200 {
    background-color: rgb(var(--nw-color-neutral-200))
}
.tw-bg-neutral-300 {
    background-color: rgb(var(--nw-color-neutral-300))
}
.tw-bg-neutral-400 {
    background-color: rgb(var(--nw-color-neutral-400))
}
.tw-bg-neutral-50 {
    background-color: rgb(var(--nw-color-neutral-50))
}
.tw-bg-neutral-500 {
    background-color: rgb(var(--nw-color-neutral-500))
}
.tw-bg-orange-400 {
    background-color: rgb(var(--nw-color-orange-400))
}
.tw-bg-panel-100 {
    background-color: rgb(var(--nw-color-panel-100))
}
.tw-bg-panel-200 {
    background-color: rgb(var(--nw-color-panel-200))
}
.tw-bg-primary {
    background-color: rgb(var(--nw-color-primary-500))
}
.tw-bg-primary-100 {
    background-color: rgb(var(--nw-color-primary-100))
}
.tw-bg-primary-200 {
    background-color: rgb(var(--nw-color-primary-200))
}
.tw-bg-primary-300 {
    background-color: rgb(var(--nw-color-primary-300))
}
.tw-bg-primary-400 {
    background-color: rgb(var(--nw-color-primary-400))
}
.tw-bg-primary-500 {
    background-color: rgb(var(--nw-color-primary-500))
}
.tw-bg-primary-600 {
    background-color: rgb(var(--nw-color-primary-600))
}
.tw-bg-primary-700 {
    background-color: rgb(var(--nw-color-primary-700))
}
.tw-bg-purple-400 {
    background-color: rgb(var(--nw-color-purple-400))
}
.tw-bg-red {
    background-color: rgb(var(--nw-color-red-500))
}
.tw-bg-red-200 {
    background-color: rgb(var(--nw-color-red-200))
}
.tw-bg-red-400 {
    background-color: rgb(var(--nw-color-red-400))
}
.tw-bg-red-500 {
    background-color: rgb(var(--nw-color-red-500))
}
.tw-bg-sidebar {
    background-color: rgb(var(--nw-color-sidebar))
}
.tw-bg-sidebar-expanded {
    background-color: rgb(var(--nw-color-sidebar-expanded))
}
.tw-bg-success {
    background-color: rgb(var(--nw-color-success-500))
}
.tw-bg-success-100 {
    background-color: rgb(var(--nw-color-success-100))
}
.tw-bg-success-400 {
    background-color: rgb(var(--nw-color-success-400))
}
.tw-bg-success-500 {
    background-color: rgb(var(--nw-color-success-500))
}
.tw-bg-transparent {
    background-color: transparent
}
.tw-bg-warning-400 {
    background-color: rgb(var(--nw-color-warning-400))
}
.tw-bg-warning-50 {
    background-color: rgb(var(--nw-color-warning-50))
}
.tw-bg-warning-500 {
    background-color: rgb(var(--nw-color-warning-500))
}
.tw-bg-white {
    background-color: rgb(var(--nw-color-white-500))
}
.tw-bg-yellow {
    background-color: rgb(var(--nw-color-yellow-500))
}
.tw-bg-yellow-200 {
    background-color: rgb(var(--nw-color-yellow-200))
}
.tw-bg-wallpaper {
    background-image: var(--nw-bg-wallpaper)
}
.tw-bg-cover {
    background-size: cover
}
.tw-bg-center {
    background-position: center
}
.tw-bg-right-bottom {
    background-position: right bottom
}
.tw-bg-no-repeat {
    background-repeat: no-repeat
}
.tw-fill-current {
    fill: currentColor
}
.tw-object-cover {
    object-fit: cover
}
.tw-p-0 {
    padding: 0px
}
.tw-p-0\.5 {
    padding: 0.125rem
}
.tw-p-1 {
    padding: 0.25rem
}
.tw-p-10 {
    padding: 2.5rem
}
.tw-p-12 {
    padding: 3rem
}
.tw-p-16 {
    padding: 4rem
}
.tw-p-2 {
    padding: 0.5rem
}
.tw-p-2\.5 {
    padding: 0.625rem
}
.tw-p-3 {
    padding: 0.75rem
}
.tw-p-3\.5 {
    padding: 0.875rem
}
.tw-p-4 {
    padding: 1rem
}
.tw-p-5 {
    padding: 1.25rem
}
.tw-p-6 {
    padding: 1.5rem
}
.tw-p-\[0\.3em\] {
    padding: 0.3em
}
.tw-p-\[2px\] {
    padding: 2px
}
.tw-p-\[4px\] {
    padding: 4px
}
.tw-p-\[5px\] {
    padding: 5px
}
.tw-px-0 {
    padding-left: 0px;
    padding-right: 0px
}
.tw-px-0\.5 {
    padding-left: 0.125rem;
    padding-right: 0.125rem
}
.tw-px-1 {
    padding-left: 0.25rem;
    padding-right: 0.25rem
}
.tw-px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem
}
.tw-px-2\.5 {
    padding-left: 0.625rem;
    padding-right: 0.625rem
}
.tw-px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem
}
.tw-px-4 {
    padding-left: 1rem;
    padding-right: 1rem
}
.tw-px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem
}
.tw-px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem
}
.tw-px-8 {
    padding-left: 2rem;
    padding-right: 2rem
}
.tw-px-\[0\.4rem\] {
    padding-left: 0.4rem;
    padding-right: 0.4rem
}
.tw-px-\[2px\] {
    padding-left: 2px;
    padding-right: 2px
}
.tw-px-\[6px\] {
    padding-left: 6px;
    padding-right: 6px
}
.tw-px-px {
    padding-left: 1px;
    padding-right: 1px
}
.tw-py-0 {
    padding-top: 0px;
    padding-bottom: 0px
}
.tw-py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem
}
.tw-py-1\.5 {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem
}
.tw-py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem
}
.tw-py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem
}
.tw-py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem
}
.tw-py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem
}
.tw-py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem
}
.tw-py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem
}
.tw-py-\[0\.2rem\] {
    padding-top: 0.2rem;
    padding-bottom: 0.2rem
}
.tw-py-\[0\.4rem\] {
    padding-top: 0.4rem;
    padding-bottom: 0.4rem
}
.tw-py-\[4px\] {
    padding-top: 4px;
    padding-bottom: 4px
}
.tw-py-px {
    padding-top: 1px;
    padding-bottom: 1px
}
.tw-pb-0 {
    padding-bottom: 0px
}
.tw-pb-1 {
    padding-bottom: 0.25rem
}
.tw-pb-2 {
    padding-bottom: 0.5rem
}
.tw-pb-2\.5 {
    padding-bottom: 0.625rem
}
.tw-pb-4 {
    padding-bottom: 1rem
}
.tw-pb-7 {
    padding-bottom: 1.75rem
}
.tw-pl-0 {
    padding-left: 0px
}
.tw-pl-1 {
    padding-left: 0.25rem
}
.tw-pl-2 {
    padding-left: 0.5rem
}
.tw-pl-2\.5 {
    padding-left: 0.625rem
}
.tw-pl-3 {
    padding-left: 0.75rem
}
.tw-pl-4 {
    padding-left: 1rem
}
.tw-pl-5 {
    padding-left: 1.25rem
}
.tw-pl-6 {
    padding-left: 1.5rem
}
.tw-pl-8 {
    padding-left: 2rem
}
.tw-pr-1 {
    padding-right: 0.25rem
}
.tw-pr-12 {
    padding-right: 3rem
}
.tw-pr-2 {
    padding-right: 0.5rem
}
.tw-pr-3 {
    padding-right: 0.75rem
}
.tw-pr-4 {
    padding-right: 1rem
}
.tw-pr-5 {
    padding-right: 1.25rem
}
.tw-pr-8 {
    padding-right: 2rem
}
.tw-pt-1 {
    padding-top: 0.25rem
}
.tw-pt-2 {
    padding-top: 0.5rem
}
.tw-pt-4 {
    padding-top: 1rem
}
.tw-pt-5 {
    padding-top: 1.25rem
}
.tw-text-left {
    text-align: left
}
.tw-text-center {
    text-align: center
}
.tw-text-right {
    text-align: right
}
.tw-text-justify {
    text-align: justify
}
.tw-align-baseline {
    vertical-align: baseline
}
.tw-align-top {
    vertical-align: top
}
.tw-align-middle {
    vertical-align: middle
}
.tw-align-bottom {
    vertical-align: bottom
}
.tw-align-text-bottom {
    vertical-align: text-bottom
}
.tw-text-2xl {
    font-size: 1.5rem;
    line-height: 2rem
}
.tw-text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem
}
.tw-text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem
}
.tw-text-5xl {
    font-size: 3rem;
    line-height: 1
}
.tw-text-6xl {
    font-size: 3.75rem;
    line-height: 1
}
.tw-text-7xl {
    font-size: 4.5rem;
    line-height: 1
}
.tw-text-8xl {
    font-size: 6rem;
    line-height: 1
}
.tw-text-\[0\.9rem\] {
    font-size: 0.9rem
}
.tw-text-\[2em\] {
    font-size: 2em
}
.tw-text-base {
    font-size: 1rem;
    line-height: 1.4
}
.tw-text-inherit {
    font-size: inherit
}
.tw-text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem
}
.tw-text-sm {
    font-size: 0.8rem;
    line-height: 1.2
}
.tw-text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem
}
.tw-text-xs {
    font-size: 0.75rem;
    line-height: 1rem
}
.tw-font-bold {
    font-weight: 700
}
.tw-font-extrabold {
    font-weight: 800
}
.tw-font-medium {
    font-weight: 500
}
.tw-font-normal {
    font-weight: 400
}
.tw-font-semibold {
    font-weight: 600
}
.tw-uppercase {
    text-transform: uppercase
}
.tw-capitalize {
    text-transform: capitalize
}
.tw-leading-3 {
    line-height: .75rem
}
.tw-leading-4 {
    line-height: 1rem
}
.tw-leading-5 {
    line-height: 1.25rem
}
.tw-leading-6 {
    line-height: 1.5rem
}
.tw-leading-7 {
    line-height: 1.75rem
}
.tw-leading-8 {
    line-height: 2rem
}
.tw-leading-9 {
    line-height: 2.25rem
}
.tw-leading-\[1\.4\] {
    line-height: 1.4
}
.tw-leading-\[var\(--nw-toggle-size\)\] {
    line-height: var(--nw-toggle-size)
}
.tw-leading-loose {
    line-height: 2
}
.tw-leading-normal {
    line-height: 1.5
}
.tw-leading-snug {
    line-height: 1.375
}
.tw-leading-tight {
    line-height: 1.25
}
.\!tw-text-primary-500 {
    color: rgb(var(--nw-color-primary-500)) !important
}
.\!tw-text-white {
    color: rgb(var(--nw-color-white-500)) !important
}
.tw-text-amber {
    color: rgb(var(--nw-color-amber-500))
}
.tw-text-black {
    color: rgb(var(--nw-color-black-500))
}
.tw-text-black-500 {
    color: rgb(var(--nw-color-black-500))
}
.tw-text-blue-100 {
    color: rgb(var(--nw-color-blue-100))
}
.tw-text-blue-700 {
    color: rgb(var(--nw-color-blue-700))
}
.tw-text-caution-800 {
    color: rgb(var(--nw-color-caution-800))
}
.tw-text-current {
    color: currentColor
}
.tw-text-danger {
    color: rgb(var(--nw-color-danger-500))
}
.tw-text-danger-500 {
    color: rgb(var(--nw-color-danger-500))
}
.tw-text-emerald-700 {
    color: rgb(var(--nw-color-emerald-700))
}
.tw-text-gray-500 {
    color: rgb(var(--nw-color-gray-500))
}
.tw-text-gray-600 {
    color: rgb(var(--nw-color-gray-600))
}
.tw-text-gray-700 {
    color: rgb(var(--nw-color-gray-700))
}
.tw-text-gray-800 {
    color: rgb(var(--nw-color-gray-800))
}
.tw-text-green {
    color: rgb(var(--nw-color-green-500))
}
.tw-text-green-500 {
    color: rgb(var(--nw-color-green-500))
}
.tw-text-info {
    color: rgb(var(--nw-color-info-500))
}
.tw-text-link {
    color: rgb(var(--nw-color-link))
}
.tw-text-neutral {
    color: rgb(var(--nw-color-neutral-500))
}
.tw-text-neutral-0 {
    color: rgb(var(--nw-color-neutral-0))
}
.tw-text-neutral-100 {
    color: rgb(var(--nw-color-neutral-100))
}
.tw-text-neutral-1000 {
    color: rgb(var(--nw-color-neutral-1000))
}
.tw-text-neutral-300 {
    color: rgb(var(--nw-color-neutral-300))
}
.tw-text-neutral-400 {
    color: rgb(var(--nw-color-neutral-400))
}
.tw-text-neutral-500 {
    color: rgb(var(--nw-color-neutral-500))
}
.tw-text-neutral-600 {
    color: rgb(var(--nw-color-neutral-600))
}
.tw-text-neutral-700 {
    color: rgb(var(--nw-color-neutral-700))
}
.tw-text-neutral-800 {
    color: rgb(var(--nw-color-neutral-800))
}
.tw-text-neutral-900 {
    color: rgb(var(--nw-color-neutral-900))
}
.tw-text-on-navbar {
    color: rgb(var(--nw-color-on-navbar))
}
.tw-text-on-navbar-hover {
    color: rgb(var(--nw-color-on-navbar-hover))
}
.tw-text-on-primary {
    color: rgb(var(--nw-color-on-primary))
}
.tw-text-on-sidebar {
    color: rgb(var(--nw-color-on-sidebar))
}
.tw-text-on-sidebar-expanded {
    color: rgb(var(--nw-color-on-sidebar-expanded))
}
.tw-text-orange {
    color: rgb(var(--nw-color-orange-500))
}
.tw-text-orange-700 {
    color: rgb(var(--nw-color-orange-700))
}
.tw-text-primary {
    color: rgb(var(--nw-color-primary-500))
}
.tw-text-primary-400 {
    color: rgb(var(--nw-color-primary-400))
}
.tw-text-primary-500 {
    color: rgb(var(--nw-color-primary-500))
}
.tw-text-primary-600 {
    color: rgb(var(--nw-color-primary-600))
}
.tw-text-red {
    color: rgb(var(--nw-color-red-500))
}
.tw-text-red-500 {
    color: rgb(var(--nw-color-red-500))
}
.tw-text-sky-800 {
    color: rgb(var(--nw-color-sky-800))
}
.tw-text-success {
    color: rgb(var(--nw-color-success-500))
}
.tw-text-warning {
    color: rgb(var(--nw-color-warning-500))
}
.tw-text-warning-200 {
    color: rgb(var(--nw-color-warning-200))
}
.tw-text-warning-500 {
    color: rgb(var(--nw-color-warning-500))
}
.tw-text-warning-600 {
    color: rgb(var(--nw-color-warning-600))
}
.tw-text-warning-700 {
    color: rgb(var(--nw-color-warning-700))
}
.tw-text-white {
    color: rgb(var(--nw-color-white-500))
}
.tw-text-yellow {
    color: rgb(var(--nw-color-yellow-500))
}
.tw-underline {
    text-decoration-line: underline
}
.tw-no-underline {
    text-decoration-line: none
}
.tw-opacity-0 {
    opacity: 0
}
.tw-opacity-100 {
    opacity: 1
}
.tw-opacity-30 {
    opacity: 0.3
}
.tw-opacity-40 {
    opacity: 0.4
}
.tw-opacity-50 {
    opacity: 0.5
}
.tw-opacity-60 {
    opacity: 0.6
}
.tw-opacity-70 {
    opacity: 0.7
}
.tw-opacity-95 {
    opacity: 0.95
}
.tw-opacity-\[var\(-nw-disabled-opacity\)\] {
    opacity: var(-nw-disabled-opacity)
}
.tw-shadow-lg {
    --tw-shadow: 0 20px 20px rgb(var(--nw-color-neutral-1000)/19%),0 7px 6px rgb(var(--nw-color-neutral-1000)/23%);
    --tw-shadow-colored: 0 20px 20px var(--tw-shadow-color), 0 7px 6px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}
.tw-shadow-md {
    --tw-shadow: 0 15px 15px rgb(var(--nw-color-neutral-1000)/19%),0 5px 4px rgb(var(--nw-color-neutral-1000)/23%);
    --tw-shadow-colored: 0 15px 15px var(--tw-shadow-color), 0 5px 4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}
.tw-outline-none {
    outline: 2px solid transparent;
    outline-offset: 2px
}
.tw-outline {
    outline-style: solid
}
.tw-outline-0 {
    outline-width: 0px
}
.tw-outline-1 {
    outline-width: 1px
}
.tw-outline-2 {
    outline-width: 2px
}
.tw-outline-offset-0 {
    outline-offset: 0px
}
.tw-outline-border-100 {
    outline-color: rgb(var(--nw-color-border-100))
}
.tw-outline-neutral-0 {
    outline-color: rgb(var(--nw-color-neutral-0))
}
.tw-outline-primary {
    outline-color: rgb(var(--nw-color-primary-500))
}
.tw-backdrop-blur-sm {
    --tw-backdrop-blur: blur(4px);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)
}
.tw-transition {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms
}
.tw-transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms
}
.tw-transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms
}
.tw-transition-max-height {
    transition-property: max-height;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms
}
.tw-transition-opacity {
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms
}
.tw-transition-shadow {
    transition-property: box-shadow;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms
}
.tw-transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms
}
.tw-transition-width {
    transition-property: width;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms
}
.tw-delay-150 {
    transition-delay: 150ms
}
.tw-duration-150 {
    transition-duration: 150ms
}
.tw-duration-200 {
    transition-duration: 200ms
}
.tw-duration-300 {
    transition-duration: 300ms
}
.tw-duration-400 {
    transition-duration: 400ms
}
.tw-ease-in {
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1)
}
.tw-ease-in-out {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1)
}
.tw-ease-out {
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1)
}

/*
 * WARNING: Here we only allows **global** level @apply utility classes and as less as
 * possible.
 *
 * Please do not add @apply here if the class is local to your page. Think
 * about using component if you want to repeat the classes.
 */

.placeholder\:tw-text-neutral-300::placeholder {
    color: rgb(var(--nw-color-neutral-300))
}

.before\:tw-absolute::before {
    content: var(--tw-content);
    position: absolute
}

.before\:tw-relative::before {
    content: var(--tw-content);
    position: relative
}

.before\:tw--bottom-1::before {
    content: var(--tw-content);
    bottom: -0.25rem
}

.before\:tw-right-2::before {
    content: var(--tw-content);
    right: 0.5rem
}

.before\:tw-top-0::before {
    content: var(--tw-content);
    top: 0px
}

.before\:-tw-ml-\[50\%\]::before {
    content: var(--tw-content);
    margin-left: -50%
}

.before\:tw-inline-block::before {
    content: var(--tw-content);
    display: inline-block
}

.before\:tw-h-4::before {
    content: var(--tw-content);
    height: 1rem
}

.before\:tw-h-px::before {
    content: var(--tw-content);
    height: 1px
}

.before\:\!tw-w-fit::before {
    content: var(--tw-content);
    width: -moz-fit-content !important;
    width: fit-content !important
}

.before\:tw-w-1\/2::before {
    content: var(--tw-content);
    width: 50%
}

.before\:tw-bg-neutral-300::before {
    content: var(--tw-content);
    background-color: rgb(var(--nw-color-neutral-300))
}

.before\:tw-align-middle::before {
    content: var(--tw-content);
    vertical-align: middle
}

.before\:tw-content-\[\"\"\]::before {
    --tw-content: "";
    content: var(--tw-content)
}

.before\:tw-content-\[\'\'\]::before {
    --tw-content: '';
    content: var(--tw-content)
}

.after\:tw-absolute::after {
    content: var(--tw-content);
    position: absolute
}

.after\:tw-relative::after {
    content: var(--tw-content);
    position: relative
}

.after\:tw-left-2::after {
    content: var(--tw-content);
    left: 0.5rem
}

.after\:-tw-mr-\[50\%\]::after {
    content: var(--tw-content);
    margin-right: -50%
}

.after\:tw-inline-block::after {
    content: var(--tw-content);
    display: inline-block
}

.after\:tw-h-4::after {
    content: var(--tw-content);
    height: 1rem
}

.after\:tw-h-px::after {
    content: var(--tw-content);
    height: 1px
}

.after\:tw-w-1\/2::after {
    content: var(--tw-content);
    width: 50%
}

.after\:tw-w-2::after {
    content: var(--tw-content);
    width: 0.5rem
}

.after\:tw-self-start::after {
    content: var(--tw-content);
    align-self: flex-start
}

.after\:tw-bg-neutral-300::after {
    content: var(--tw-content);
    background-color: rgb(var(--nw-color-neutral-300))
}

.after\:tw-align-middle::after {
    content: var(--tw-content);
    vertical-align: middle
}

.after\:tw-content-\[\"\"\]::after {
    --tw-content: "";
    content: var(--tw-content)
}

.after\:tw-content-\[\'\'\]::after {
    --tw-content: '';
    content: var(--tw-content)
}

.focus-within\:tw-opacity-100:focus-within {
    opacity: 1
}

.hover\:tw-h-2:hover {
    height: 0.5rem
}

.hover\:tw-h-2\.5:hover {
    height: 0.625rem
}

.hover\:tw-border-\[1px\]:hover {
    border-width: 1px
}

.hover\:tw-border-b-\[1px\]:hover {
    border-bottom-width: 1px
}

.hover\:tw-border-b-\[2px\]:hover {
    border-bottom-width: 2px
}

.hover\:tw-border-neutral-300:hover {
    border-color: rgb(var(--nw-color-neutral-300))
}

.hover\:tw-border-primary-500:hover {
    border-color: rgb(var(--nw-color-primary-500))
}

.hover\:tw-border-b-primary-400:hover {
    border-bottom-color: rgb(var(--nw-color-primary-400))
}

.hover\:tw-border-b-primary-500:hover {
    border-bottom-color: rgb(var(--nw-color-primary-500))
}

.hover\:\!tw-bg-blue-800:hover {
    background-color: rgb(var(--nw-color-blue-800)) !important
}

.hover\:tw-bg-danger-400:hover {
    background-color: rgb(var(--nw-color-danger-400))
}

.hover\:tw-bg-neutral-100:hover {
    background-color: rgb(var(--nw-color-neutral-100))
}

.hover\:tw-bg-neutral-200:hover {
    background-color: rgb(var(--nw-color-neutral-200))
}

.hover\:tw-bg-neutral-400:hover {
    background-color: rgb(var(--nw-color-neutral-400))
}

.hover\:tw-bg-neutral-50:hover {
    background-color: rgb(var(--nw-color-neutral-50))
}

.hover\:tw-bg-primary-100:hover {
    background-color: rgb(var(--nw-color-primary-100))
}

.hover\:tw-bg-primary-200:hover {
    background-color: rgb(var(--nw-color-primary-200))
}

.hover\:tw-bg-primary-400:hover {
    background-color: rgb(var(--nw-color-primary-400))
}

.hover\:tw-bg-primary-50:hover {
    background-color: rgb(var(--nw-color-primary-50))
}

.hover\:tw-bg-primary-500:hover {
    background-color: rgb(var(--nw-color-primary-500))
}

.hover\:tw-bg-primary-600:hover {
    background-color: rgb(var(--nw-color-primary-600))
}

.hover\:tw-bg-primary-700:hover {
    background-color: rgb(var(--nw-color-primary-700))
}

.hover\:tw-bg-success-400:hover {
    background-color: rgb(var(--nw-color-success-400))
}

.hover\:tw-bg-warning-400:hover {
    background-color: rgb(var(--nw-color-warning-400))
}

.hover\:tw-text-emerald-700:hover {
    color: rgb(var(--nw-color-emerald-700))
}

.hover\:tw-text-neutral-1000:hover {
    color: rgb(var(--nw-color-neutral-1000))
}

.hover\:tw-text-neutral-700:hover {
    color: rgb(var(--nw-color-neutral-700))
}

.hover\:tw-text-on-navbar-hover:hover {
    color: rgb(var(--nw-color-on-navbar-hover))
}

.hover\:tw-text-primary-500:hover {
    color: rgb(var(--nw-color-primary-500))
}

.hover\:tw-text-primary-600:hover {
    color: rgb(var(--nw-color-primary-600))
}

.hover\:tw-text-primary-700:hover {
    color: rgb(var(--nw-color-primary-700))
}

.hover\:tw-underline:hover {
    text-decoration-line: underline
}

.hover\:tw-opacity-100:hover {
    opacity: 1
}

.hover\:tw-opacity-40:hover {
    opacity: 0.4
}

.hover\:tw-opacity-70:hover {
    opacity: 0.7
}

.hover\:tw-opacity-80:hover {
    opacity: 0.8
}

.hover\:tw-shadow-md:hover {
    --tw-shadow: 0 15px 15px rgb(var(--nw-color-neutral-1000)/19%),0 5px 4px rgb(var(--nw-color-neutral-1000)/23%);
    --tw-shadow-colored: 0 15px 15px var(--tw-shadow-color), 0 5px 4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.hover\:tw-outline:hover {
    outline-style: solid
}

.hover\:tw-outline-4:hover {
    outline-width: 4px
}

.hover\:tw-outline-offset-1:hover {
    outline-offset: 1px
}

.hover\:tw-outline-primary-500:hover {
    outline-color: rgb(var(--nw-color-primary-500))
}

.focus\:tw-not-sr-only:focus {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal
}

.focus\:tw-fixed:focus {
    position: fixed
}

.focus\:tw-left-0:focus {
    left: 0px
}

.focus\:tw-top-0:focus {
    top: 0px
}

.focus\:tw-m-1:focus {
    margin: 0.25rem
}

.focus\:tw-bg-primary-100:focus {
    background-color: rgb(var(--nw-color-primary-100))
}

.focus\:tw-p-2:focus {
    padding: 0.5rem
}

.focus\:tw-text-neutral-700:focus {
    color: rgb(var(--nw-color-neutral-700))
}

.focus\:tw-text-primary-700:focus {
    color: rgb(var(--nw-color-primary-700))
}

.focus\:tw-opacity-100:focus {
    opacity: 1
}

.focus\:tw-outline-none:focus {
    outline: 2px solid transparent;
    outline-offset: 2px
}

.focus\:tw-outline:focus {
    outline-style: solid
}

.focus\:tw-outline-4:focus {
    outline-width: 4px
}

.focus\:tw-outline-offset-1:focus {
    outline-offset: 1px
}

.focus\:tw-outline-primary-500:focus {
    outline-color: rgb(var(--nw-color-primary-500))
}

.tw-group:hover .group-hover\:tw-block {
    display: block
}

.tw-group:hover .group-hover\:tw-h-2 {
    height: 0.5rem
}

.tw-group:hover .group-hover\:tw-h-2\.5 {
    height: 0.625rem
}

.tw-group:hover .group-hover\:tw-border-neutral-200 {
    border-color: rgb(var(--nw-color-neutral-200))
}

.tw-group:hover .group-hover\:tw-border-primary-600 {
    border-color: rgb(var(--nw-color-primary-600))
}

.tw-group:hover .group-hover\:tw-border-sidebar-expanded-hover {
    border-color: rgb(var(--nw-color-sidebar-expanded-hover))
}

.tw-group:hover .group-hover\:tw-bg-neutral-200 {
    background-color: rgb(var(--nw-color-neutral-200))
}

.tw-group:hover .group-hover\:tw-bg-primary-600 {
    background-color: rgb(var(--nw-color-primary-600))
}

.tw-group:hover .group-hover\:tw-bg-sidebar-expanded-hover {
    background-color: rgb(var(--nw-color-sidebar-expanded-hover))
}

.tw-group:hover .group-hover\:tw-text-neutral-1000 {
    color: rgb(var(--nw-color-neutral-1000))
}

.tw-group:hover .group-hover\:tw-text-on-sidebar-expanded-hover {
    color: rgb(var(--nw-color-on-sidebar-expanded-hover))
}

.tw-group:hover .group-hover\:tw-underline {
    text-decoration-line: underline
}

.tw-group:hover .group-hover\:tw-opacity-100 {
    opacity: 1
}

.tw-group:hover .group-hover\:tw-opacity-60 {
    opacity: 0.6
}

.tw-group:hover .group-hover\:tw-opacity-70 {
    opacity: 0.7
}

.tw-group:hover .group-hover\:tw-shadow-md {
    --tw-shadow: 0 15px 15px rgb(var(--nw-color-neutral-1000)/19%),0 5px 4px rgb(var(--nw-color-neutral-1000)/23%);
    --tw-shadow-colored: 0 15px 15px var(--tw-shadow-color), 0 5px 4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.tw-group:hover .group-hover\:hover\:tw-opacity-100:hover {
    opacity: 1
}

.tw-group:focus .group-focus\:tw-opacity-100 {
    opacity: 1
}

.part-base\:tw-h-2::part(base) {
    height: 0.5rem
}

.part-base\:tw-h-full::part(base) {
    height: 100%
}

.part-base\:tw-w-full::part(base) {
    width: 100%
}

.part-base\:tw-items-start::part(base) {
    align-items: flex-start
}

.part-base\:tw-p-0::part(base) {
    padding: 0px
}

.part-label\:tw-p-0::part(label) {
    padding: 0px
}

.dark\:tw-border:is(.tw-dark *) {
    border-width: 1px
}

.dark\:tw-border-solid:is(.tw-dark *) {
    border-style: solid
}

.dark\:tw-border-primary-600:is(.tw-dark *) {
    border-color: rgb(var(--nw-color-primary-600))
}

.dark\:tw-bg-neutral-100:is(.tw-dark *) {
    background-color: rgb(var(--nw-color-neutral-100))
}

.dark\:tw-text-neutral-0:is(.tw-dark *) {
    color: rgb(var(--nw-color-neutral-0))
}

.dark\:tw-text-neutral-1000:is(.tw-dark *) {
    color: rgb(var(--nw-color-neutral-1000))
}

.dark\:tw-text-neutral-800:is(.tw-dark *) {
    color: rgb(var(--nw-color-neutral-800))
}

.dark\:tw-text-primary-300:is(.tw-dark *) {
    color: rgb(var(--nw-color-primary-300))
}

.dark\:tw-text-primary-600:is(.tw-dark *) {
    color: rgb(var(--nw-color-primary-600))
}

.dark\:placeholder\:tw-text-neutral-400:is(.tw-dark *)::placeholder {
    color: rgb(var(--nw-color-neutral-400))
}

.dark\:hover\:tw-text-neutral-0:hover:is(.tw-dark *) {
    color: rgb(var(--nw-color-neutral-0))
}

@media (min-width: 1024px) {
    .lg\:tw-grid {
        display: grid
    }
    .lg\:tw-grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }
}

.\[\&\:\:part\(overlay\)\]\:tw-bg-primary::part(overlay) {
    background-color: rgb(var(--nw-color-primary-500))
}

.nw-notification .alert__close {
  color: unset;
}

.fi-pro-confirm-modal::part(panel) {
  min-height: 13.125rem;
}

.form-control-hover-effect {
  transition: border 0.25s linear, color 0.25s linear, background-color 0.25s linear, box-shadow 0.25s;
  border-color: rgb(var(--nw-color-form-hover)) !important;
  background-color: rgb(var(--nw-color-form-hover)) !important;
  color: rgb(var(--nw-color-on-form-hover)) !important;
}
.form-control-hover:not([disabled]) {
  transition: border 0.25s linear, color 0.25s linear, background-color 0.25s linear, box-shadow 0.25s;
  border-color: rgb(var(--nw-color-form-hover)) !important;
  background-color: rgb(var(--nw-color-form-hover)) !important;
  color: rgb(var(--nw-color-on-form-hover)) !important;
}
.form-control-hover::placeholder {
  color: rgb(var(--nw-color-green-900));
}
/*
 * Variables definitions.
 *
 * WARNING: Do not put any non-variable instruction here becuase it's
 * imported by themes and other less files which will do unnecessary or wrong
 * overwrites.
 */
.modal-header {
  width: 100%;
  padding: 10px;
  background-color: rgb(var(--nw-color-neutral-200));
  box-sizing: border-box;
}
.fi-container.fi-container-faz-wider {
  width: 100%;
  min-width: 700 / 14rem;
  max-width: 800 / 14rem;
}

.page_modal_container {
  background-color: rgb(var(--nw-color-neutral-0));
}
.pm-header {
  display: flex;
  flex: 0 1 auto;
  width: 100%;
  color: rgb(var(--nw-color-neutral-1000));
  border-bottom: 1px solid rgb(var(--nw-color-neutral-100));
}
.p-header {
  padding: 0.7rem 0.5rem;
  font-weight: bold;
  height: 40px;
}
.m-header {
  padding: 10px;
  font-size: 1.5rem;
}
.pm-body {
  flex: 1 1 auto;
  overflow-y: auto;
  z-index: 1;
}
.pm-footer {
  display: flex;
  border-top: 1px solid #e5e5e5;
}
.pm-footer .btn,
.pm-footer nw-button::part(base) {
  min-width: 135px;
  padding: 5px 10px;
  border-radius: 3px;
  border: none;
  font-size: 1rem;
  align-items: center;
}
.pm-footer .btn:focus,
.pm-footer nw-button::part(base):focus {
  box-shadow: inset 0 0 3px #000000;
  outline: none;
}
.pm-footer .btn:not(:first-of-type),
.pm-footer nw-button:not(:first-of-type) {
  margin-left: 5px;
}
.pm-footer nw-button[type='primary']::part(base) {
  color: rgb(var(--nw-color-neutral-0));
  background-color: rgb(var(--nw-color-primary));
}
.pm-footer nw-button[type='primary']::part(base):active:hover,
.pm-footer nw-button[type='primary']::part(base):active:focus,
.pm-footer nw-button[type='primary']::part(base):focus,
.pm-footer nw-button[type='primary']::part(base):hover {
  color: rgb(var(--nw-color-neutral-0));
  background-color: rgb(var(--nw-color-primary-400));
}
.pm-footer nw-button[type='secondary']::part(base) {
  color: #263238;
  background-color: #cfd8dc;
}
.pm-footer nw-button[type='secondary']::part(base):hover,
.pm-footer nw-button[type='secondary']::part(base):hover:active,
.pm-footer nw-button[type='secondary']::part(base):active,
.pm-footer nw-button[type='secondary']::part(base):focus {
  color: rgb(var(--nw-color-neutral-1000));
  background-color: rgb(var(--nw-color-primary-200));
}
.p-footer {
  padding: 3px;
  flex: 0 1 39px;
  justify-content: center;
}
.m-footer {
  padding: 15px;
  flex: 0 1 59px;
  justify-content: flex-end;
}
.drawer-footer {
  padding: 15px;
}

.lrselect-container fi-lrselect .fi-lrs-panel {
  border-radius: 0;
}

.fi-lrs-title {
  color: rgb(var(--nw-color-neutral-1000));
  background-color: rgb(var(--nw-color-neutral-200));
  font-weight: bold;
}

.select-add {
  display: flex;
  flex-flow: row nowrap;
}
.select-add > fi-sselect,
.select-add > .rc-select-obj-sselect-extra-wrapper {
  flex: 1 1 100px;
}
.select-add nw-icon-button.select-add-button {
  margin-top: 5px;
}

.colorPicker__color-selected {
  outline: 1px;
  outline-style: auto;
  outline-color: rgb(var(--nw-color-primary-500));
}

.dashboard-main-container nw-button.widget-icon-button::part(base) {
  color: rgb(var(--nw-color-neutral-600));
}

span.ftnt-fortiguard-outbreak,
span.ftnt-ips-all,
span.ftnt-ips-application,
span.ftnt-ips-behavior,
span.ftnt-ips-cve,
span.ftnt-ips-vuln-type,
span.ftnt-ips-action,
span.ftnt-ips-status,
span.ftnt-ips-location,
span.ftnt-ips-os,
span.ftnt-ips-popularity,
span.ftnt-ips-protocol,
span.ftnt-ips-risk,
span.ftnt-ips-severity,
span.ftnt-ips-technology,
span.ftnt-ips-vendor,
span.ftnt-profile-antivirus,
span.ftnt-profile-application,
span.ftnt-profile-dlp,
span.ftnt-profile-dnsfilter,
span.ftnt-profile-emailfilter,
span.ftnt-profile-filefilter,
span.ftnt-profile-group,
span.ftnt-profile-icap,
span.ftnt-profile-ips,
span.ftnt-profile-mms,
span.ftnt-profile-protocol-options,
span.ftnt-profile-ssl-ssh-inspection,
span.ftnt-profile-videofilter,
span.ftnt-profile-voip,
span.ftnt-profile-waf,
span.ftnt-profile-webfilter,
span.ftnt-profile-inline-casb,
span.ftnt-profile-virpatch,
span.ftnt-psirt,
span.ftnt-switch-controller-dynamic-port-policy,
span.ftnt-switch-controller-lldp-profile,
span.ftnt-switch-controller-qos-qos-policy,
span.ftnt-switch-controller-security-policy-802-1X,
span.ftnt-switch-controller-security-policy-captive-portal,
span.ftnt-switch-controller-vlan-policy,
span.ftnt-switch-controller-vlans,
span.ftnt-ztna-tag-classification-ip,
span.ftnt-ztna-tag-classification-mac,
span.ftnt-ztna-tag-fabric-ip,
span.ftnt-ztna-tag-fabric-mac,
span.ftnt-ztna-tag-group,
span.ftnt-ztna-tag-ip,
span.ftnt-ztna-tag-mac,
span.ftnt-ztna-tag-merged-ip,
span.ftnt-ztna-tag-merged-mac,
span.ftnt-ztna-tag-outbreak_alert-ip-compromised,
span.ftnt-ztna-tag-outbreak_alert-ip-suspicious,
span.ftnt-ztna-tag-outbreak_alert-mac-compromised,
span.ftnt-ztna-tag-outbreak_alert-mac-suspicious,
span.ftnt-ztna-tag-zero_trust-ip,
span.ftnt-ztna-tag-zero_trust-mac {
  color: #fff;
  text-indent: 0;
  font-size: 10px;
  font-weight: 700;
  vertical-align: 2px;
}
span.ftnt-fortiguard-outbreak::before,
span.ftnt-ips-all::before,
span.ftnt-ips-application::before,
span.ftnt-ips-behavior::before,
span.ftnt-ips-cve::before,
span.ftnt-ips-vuln-type::before,
span.ftnt-ips-action::before,
span.ftnt-ips-status::before,
span.ftnt-ips-location::before,
span.ftnt-ips-os::before,
span.ftnt-ips-popularity::before,
span.ftnt-ips-protocol::before,
span.ftnt-ips-risk::before,
span.ftnt-ips-severity::before,
span.ftnt-ips-technology::before,
span.ftnt-ips-vendor::before,
span.ftnt-profile-antivirus::before,
span.ftnt-profile-application::before,
span.ftnt-profile-dlp::before,
span.ftnt-profile-dnsfilter::before,
span.ftnt-profile-emailfilter::before,
span.ftnt-profile-filefilter::before,
span.ftnt-profile-group::before,
span.ftnt-profile-icap::before,
span.ftnt-profile-ips::before,
span.ftnt-profile-mms::before,
span.ftnt-profile-protocol-options::before,
span.ftnt-profile-ssl-ssh-inspection::before,
span.ftnt-profile-videofilter::before,
span.ftnt-profile-voip::before,
span.ftnt-profile-waf::before,
span.ftnt-profile-webfilter::before,
span.ftnt-profile-inline-casb::before,
span.ftnt-profile-virpatch::before,
span.ftnt-psirt::before,
span.ftnt-switch-controller-dynamic-port-policy::before,
span.ftnt-switch-controller-lldp-profile::before,
span.ftnt-switch-controller-qos-qos-policy::before,
span.ftnt-switch-controller-security-policy-802-1X::before,
span.ftnt-switch-controller-security-policy-captive-portal::before,
span.ftnt-switch-controller-vlan-policy::before,
span.ftnt-switch-controller-vlans::before,
span.ftnt-ztna-tag-classification-ip::before,
span.ftnt-ztna-tag-classification-mac::before,
span.ftnt-ztna-tag-fabric-ip::before,
span.ftnt-ztna-tag-fabric-mac::before,
span.ftnt-ztna-tag-group::before,
span.ftnt-ztna-tag-ip::before,
span.ftnt-ztna-tag-mac::before,
span.ftnt-ztna-tag-merged-ip::before,
span.ftnt-ztna-tag-merged-mac::before,
span.ftnt-ztna-tag-outbreak_alert-ip-compromised::before,
span.ftnt-ztna-tag-outbreak_alert-ip-suspicious::before,
span.ftnt-ztna-tag-outbreak_alert-mac-compromised::before,
span.ftnt-ztna-tag-outbreak_alert-mac-suspicious::before,
span.ftnt-ztna-tag-zero_trust-ip::before,
span.ftnt-ztna-tag-zero_trust-mac::before {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  min-width: 30px;
  padding: 0.3em;
  width: 36px;
  height: 18px;
}
span.ftnt-switch-controller-dynamic-port-policy::before {
  content: 'DPP';
  background-color: #c91e4d;
}
span.ftnt-switch-controller-nac-policy::before {
  content: 'NAC';
  background-color: #b4954b;
}
span.ftnt-switch-controller-security-policy-802-1X::before {
  content: '802.1X';
  background-color: #be9e6f;
}
span.ftnt-switch-controller-vlan-policy::before {
  content: 'VLAN Policy';
  background-color: #33b894;
}
span.ftnt-switch-controller-lldp-profile::before {
  content: 'LLDP';
  background-color: #ff4d00;
}
span.ftnt-switch-controller-qos-qos-policy::before {
  content: 'QoS';
  background-color: #189fba;
}
span.ftnt-profile-antivirus::before {
  content: 'AV';
  background-color: #ff4d00;
}
span.ftnt-profile-webfilter::before {
  content: 'WEB';
  background-color: #189fba;
}
span.ftnt-profile-videofilter::before {
  content: 'VF';
  background-color: #2b6e82;
}
span.ftnt-profile-dnsfilter::before {
  content: 'DNS';
  background-color: #33b894;
}
span.ftnt-profile-waf::before {
  content: 'WAF';
  background-color: #0041c2;
}
span.ftnt-profile-emailfilter::before {
  content: 'EF';
  background-color: #333333;
}
span.ftnt-profile-filefilter::before {
  content: 'FF';
  background-color: #9f17ba;
}
span.ftnt-profile-application::before {
  content: 'APP';
  background-color: #009848;
}
span.ftnt-profile-dlp::before {
  content: 'DLP';
  background-color: #9f17ba;
}
span.ftnt-profile-ips::before {
  content: 'IPS';
  background-color: #aeb948;
}
span.ftnt-profile-icap::before {
  content: 'ICAP';
  background-color: #8bb2f8;
}
span.ftnt-profile-voip::before {
  content: 'VOIP';
  background-color: #3678b0;
}
span.ftnt-profile-protocol-options::before {
  content: 'PROT';
  background-color: #90bd90;
}
span.ftnt-profile-ssl-ssh-inspection::before {
  content: 'SSL';
  background-color: #be9e6f;
}
span.ftnt-profile-group::before {
  content: 'GRP';
  background-color: #0066cc;
}
span.ftnt-profile-inline-casb:before {
  content: 'CASB';
  background-color: #3cb17e;
}
span.ftnt-profile-mms::before {
  content: 'MMS';
  background-color: #47a3ff;
}
span.ftnt-profile-virpatch:before {
  content: 'VPATCH';
  background-color: #e78eb9;
  display: inline;
}
span.ftnt-switch-controller-security-policy-captive-portal::before {
  content: 'CAP';
  background-color: #383fba;
}
span.ftnt-switch-controller-security-policy-802-1X::before {
  content: '802.1X';
  background-color: #be9e6f;
}
span.ftnt-switch-controller-lldp-profile::before {
  content: 'LLDP';
  background-color: #ff4d00;
}
span.ftnt-switch-controller-qos-qos-policy::before {
  content: 'QoS';
  background-color: #189fba;
}
span.ftnt-switch-controller-vlan-policy::before {
  content: 'VLAN Policy';
  background-color: #33b894;
}
span.ftnt-switch-controller-vlans::before {
  content: 'VLAN';
  background-color: #0066cc;
}
span.ftnt-switch-controller-dynamic-port-policy::before {
  content: 'DPP';
  background-color: #c91e4d;
}
span.ftnt-ips-popularity::before {
  content: 'POP';
}
span.ftnt-ips-behavior::before {
  content: 'BHVR';
}
span.ftnt-ips-protocol::before {
  content: 'PROT';
}
span.ftnt-ips-risk::before {
  content: 'RISK';
}
span.ftnt-ips-technology::before {
  content: 'TECH';
}
span.ftnt-ips-vendor::before {
  content: 'VEND';
}
span.ftnt-ips-location::before {
  content: 'TGT';
}
span.ftnt-ips-severity::before {
  content: 'SEV';
}
span.ftnt-ips-os::before {
  content: 'OS';
}
span.ftnt-ips-application::before {
  content: 'APP';
}
span.ftnt-ips-cve::before {
  content: 'CVE';
}
span.ftnt-ips-vuln-type::before {
  content: 'VULN';
}
span.ftnt-ips-action::before {
  content: 'ACT';
}
span.ftnt-ips-status::before {
  content: 'STAT';
}
span.ftnt-ips-all::before {
  content: 'ALL';
}
span.ftnt-ips-behavior::before,
span.ftnt-ips-popularity::before,
span.ftnt-ips-protocol::before,
span.ftnt-ips-risk::before,
span.ftnt-ips-technology::before,
span.ftnt-ips-vendor::before,
span.ftnt-ips-location::before,
span.ftnt-ips-severity::before,
span.ftnt-ips-os::before,
span.ftnt-ips-application::before,
span.ftnt-ips-cve::before,
span.ftnt-ips-vuln-type::before,
span.ftnt-ips-action::before,
span.ftnt-ips-status::before,
span.ftnt-ips-all::before {
  background-color: #7d7d7d;
}
.nw-dark-contrast .BaseTable .row-selected .ftnt-switch-controller-dynamic-port-policy::before,
.nw-dark-contrast .BaseTable .row-selected .ftnt-switch-controller-security-policy-802-1X::before,
.nw-dark-contrast .BaseTable .row-selected .ftnt-switch-controller-vlan-policy::before,
.nw-dark-contrast .BaseTable .row-selected .ftnt-switch-controller-lldp-profile::before,
.nw-dark-contrast .BaseTable .row-selected .ftnt-switch-controller-qos-qos-policy::before,
.nw-dark-contrast .BaseTable .row-selected .ftnt-switch-controller-nac-policy::before {
  background-color: rgb(var(--nw-color-neutral-0));
  color: rgb(var(--nw-color-neutral-1000));
}

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

.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%;
}

.resizer-container {
  cursor: col-resize;
  background-color: rgb(var(--nw-color-neutral-200));
  padding: 0;
  margin: 0;
  font-size: 1px;
  width: 4px;
  min-width: 4px;
  height: 100%;
  text-align: left;
  overflow: visible;
  z-index: 2;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
}
.resizer-container.horizontal {
  height: 4px;
  min-height: 4px;
  width: 100%;
  cursor: row-resize;
}
.resizer-iframe-cover {
  position: absolute;
  width: 100%;
  height: 100%;
}

.iframe-codemirror .iframe-codemirror-view {
  display: flex;
  height: 90%;
  width: 100%;
}
.iframe-codemirror .iframe-codemirror-view .iframe-ctn,
.iframe-codemirror .iframe-codemirror-view .codemirror-ctn {
  width: 50%;
  height: 100%;
  z-index: 1;
  position: relative;
}
.iframe-codemirror .iframe-codemirror-view #templatePreviewFrame {
  height: 100%;
  width: 100%;
  padding: 0 5px;
}
.iframe-codemirror .iframe-codemirror-view .CodeMirror {
  height: 100%;
  width: 100%;
  padding: 0 5px;
  background-color: rgb(var(--nw-color-neutral-0));
  color: rgb(var(--nw-color-neutral-1000));
}
.iframe-codemirror .iframe-codemirror-view .CodeMirror .CodeMirror-gutters {
  background-color: rgb(var(--nw-color-neutral-50));
}
.iframe-codemirror .iframe-codemirror-view #templatePreviewFrame,
.iframe-codemirror .iframe-codemirror-view .CodeMirror {
  border: 1px solid rgb(var(--nw-color-border));
}
.iframe-codemirror .iframe-codemirror-buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  margin-top: 10px;
}

.autocomplete-cm-container .CodeMirror-dialog.CodeMirror-dialog-bottom {
  border-radius: 0.25rem;
  font-family: monospace flatuifont;
  font-size: 0.9rem;
  border: 1px solid rgb(var(--nw-color-border));
  color: rgb(var(--nw-color-neutral-1000));
}
.autocomplete-cm-container .CodeMirror-gutters {
  background-color: rgb(var(--nw-color-neutral-50));
}
.autocomplete-cm-container .CodeMirror {
  height: 59vh;
  font-family: monospace flatuifont;
  font-size: 0.9rem;
}
.autocomplete-cm-container .CodeMirror.cm-s-material-darker .CodeMirror-linenumber {
  color: rgb(var(--nw-color-neutral-500));
}
.autocomplete-cm-container .CodeMirror .CodeMirror-activeline-background {
  background-color: rgb(var(--nw-color-primary-50));
}
.autocomplete-cm-container #diff-view-cm .CodeMirror-merge {
  border-radius: 0.25rem;
}
.autocomplete-cm-container #diff-view-cm .CodeMirror-merge .CodeMirror-pane-background-left {
  background: rgb(var(--nw-color-danger-50));
}
.autocomplete-cm-container #diff-view-cm .CodeMirror-merge .CodeMirror-pane-background-right {
  background: rgb(var(--nw-color-success-200));
}
.autocomplete-cm-container #diff-view-cm .CodeMirror-merge .CodeMirror-merge-gap {
  background-color: rgb(var(--nw-color-neutral-0));
}
.CodeMirror-lint-tooltip {
  color: rgb(var(--nw-color-danger-700));
  background-color: rgb(var(--nw-color-danger-50));
  border: none;
  z-index: 2000;
  padding: 1rem;
  font-weight: bold;
}
.tw-dark .CodeMirror-lint-tooltip {
  border: 1px solid rgb(var(--nw-color-danger-700));
  border-radius: 4px;
}
#codemirror_shortcuts_panel_table {
  height: fit-content;
  width: 100%;
  border-collapse: collapse;
}
#codemirror_shortcuts_panel_table th {
  padding: 0.75rem;
  text-align: start;
  color: rgb(var(--nw-color-neutral-400));
}
#codemirror_shortcuts_panel_table tr,
#codemirror_shortcuts_panel_table thead {
  border-bottom: 1px solid rgb(var(--nw-color-neutral-300));
  text-align: start;
}
#codemirror_shortcuts_panel_table td {
  padding: 0.75rem;
  color: rgb(var(--nw-color-neutral-500));
}
#codemirror_shortcuts_panel_table tr:last-child {
  border-bottom: none;
}
#codemirror_shortcuts_panel_table th.keys {
  width: 35%;
}
#codemirror_shortcuts_panel_table th.action {
  width: 65%;
}

.log-list-toolbar-container {
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.log-list-toolbar-container .f-faceted-search .faceted-search-container .ffg.ffg-no.f-search-cancel {
  margin-right: 5px;
}
.log-list-toolbar-container .toolbar-top .toolbar-top-left a[name='log-time-period-custom'] {
  color: rgb(var(--nw-color-neutral-1000));
}
.log-list-toolbar-container .toolbar-bottom > div[data-v-app] {
  width: 100%;
}
.log-list-toolbar-container .CodeMirror-scroll {
  overflow-y: hidden !important;
  margin-bottom: -48px;
}
.log-list-toolbar-container .nw-pro-search .nw-facet-search-input {
  margin: 0.1rem 0 0.1rem 0.25rem;
}

.fortiview-ep-container-wrapper .ffg-firewall {
  color: #ff0606;
}
.fortiview-ep-container-wrapper .ep-container {
  position: relative;
  height: 100%;
}
.fortiview-ep-container-wrapper .ep-container .fi-spinner-container {
  height: 95%;
}
.fortiview-ep-container-wrapper .ep-container .ep-row {
  display: flex;
  padding: 0.25em 0;
  width: 100%;
}
.fortiview-ep-container-wrapper .ep-container .ep-row .ep-label {
  font-size: 15px;
  width: 180px;
}
.fortiview-ep-container-wrapper .ep-container .ep-row .ep-label img {
  height: 3em;
}
.fortiview-ep-container-wrapper .ep-container .ep-row .ep-value .topology-ep {
  position: relative;
}
.fortiview-ep-container-wrapper .ep-container .ep-row .ep-value .topology-ep .ep-dev-type-icon:before {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border-left: 1px dotted #999;
  border-bottom: 1px dotted #999;
  margin-left: 5px;
}
.fortiview-ep-container-wrapper .ep-container .ep-row .ep-value .topology-ep .ffg {
  margin-left: 20px;
}

.fortiview-user-display-popover.card.profile-header .body {
  min-width: 240px;
}
.fortiview-user-display-popover.card.profile-header .body .row {
  padding-left: 10px;
}
.fortiview-user-display-popover.card.profile-header .picture {
  flex: 0 1 180px;
  display: flex;
}
.fortiview-user-display-popover.card.profile-header .picture .app-icon-container {
  top: 22px;
  width: 20px;
  left: 2px;
}
.fortiview-user-display-popover.card.profile-header .picture .app-icon-container .fafm-app-icon {
  transform: scale(0.15416667);
}
.fortiview-user-display-popover.card.profile-header .row {
  position: relative;
  display: flex;
  width: 100%;
}
.fortiview-user-display-popover.card.profile-header .details {
  flex: auto;
  padding: 10px;
}
.fortiview-user-display-popover.card.profile-header .details .social {
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.fortiview-user-display-popover.card.profile-header .details .social .app-icon-container {
  /* width: 10px; */
  /* .fafm-app-icon { */
  /* transform: scale(0.10416666666); */
  /* } */
  margin-right: 4px;
}
.fortiview-user-display-popover.card.profile-header .details .social .app-icon-container .fafm-app-icon {
  transform: scale(0.16);
}
.fortiview-user-display-popover.card.profile-header .details .social .social-contact {
  text-overflow: ellipsis;
  overflow: hidden;
}
.fortiview-user-display-popover.card.profile-header .details .email {
  word-break: break-all;
}
.fortiview-user-display-popover.card.profile-header .profile-image {
  min-width: 130px;
  max-width: 170px;
  align-self: center;
}
.fortiview-user-display-popover.card.profile-header .profile-image img {
  height: 90%;
  border-radius: 50%;
  width: 100%;
  border: 3px solid #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.fortiview-user-display-popover.card.profile-header .preview-highlighted {
  animation: highlight-show 2s;
}
.fortiview-user-display-popover.card.profile-header .preview-highlighted.ng-hide {
  animation: highlight-hide 2s;
  display: none;
}
@keyframes highlight-show {
  0% {
    opacity: 0;
    visibility: visible;
    background-color: yellow;
  }
  100% {
    opacity: 1;
    background-color: inherit;
  }
}
@keyframes highlight-hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.fortiview-user-display-popover.card.profile-header .app-icon-container {
  width: 16px;
  height: 16px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
}
.fortiview-user-display-popover.card.profile-header .app-icon-container .fafm-app-icon {
  transform: scale(0.16666667);
  transform-origin: 0 0;
  position: absolute;
}

.fortiview-multi-ueba-container .eu-container,
.fortiview-multi-ueba-container .ep-container {
  position: relative;
  height: 100%;
  overflow: auto;
}
.fortiview-multi-ueba-container .eu-container .fi-spinner-container,
.fortiview-multi-ueba-container .ep-container .fi-spinner-container {
  height: 95%;
}
.fortiview-multi-ueba-container .eu-container {
  height: 100px;
}
.fortiview-multi-ueba-container .eu-container .enduser-list {
  display: flex;
  flex-wrap: wrap;
}
.fortiview-multi-ueba-container .eu-container .enduser-list .enduser-link {
  width: 32%;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 2px;
}
.fortiview-multi-ueba-container .eu-container .enduser-list .enduser-link.oversize {
  position: relative;
}
.fortiview-multi-ueba-container .eu-container .enduser-list .enduser-link.oversize .dot {
  position: absolute;
  bottom: 0;
}
.fortiview-multi-ueba-container .eu-container .avatar {
  width: 32px;
}
.fortiview-multi-ueba-container .eu-container .error {
  font-size: 18px;
  text-align: center;
}

.rc_content_view-codemirror .np-section-body {
  padding: unset;
  padding-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.rc_content_view-codemirror .np-section-body .CodeMirror-merge {
  height: 59vh;
}
.rc_content_view-codemirror .np-section-body .CodeMirror {
  height: 59vh;
  min-height: 450px;
}

.rc-vtree-container .sidebar-container .vtree .node-container {
  color: rgb(var(--nw-color-neutral-1000));
}
.rc-vtree-container .sidebar-container .vtree .node-container .node.selected {
  color: rgb(var(--nw-color-on-primary)) !important;
  background-color: rgb(var(--nw-color-primary)) !important;
}
.rc-vtree-container .sidebar-container .vtree .node-container .node.selected .node-icon {
  color: rgb(var(--nw-color-neutral-on-primary)) !important;
}
.vtree .node-container .node.selected {
  color: rgb(var(--nw-color-on-primary)) !important;
  background-color: rgb(var(--nw-color-primary-500));
}
.nw-light .rc-vtree-container {
  --nw-color-sidebar: rgb(var(--nw-color-neutral-0));
  --nw-color-sidebar-expanded: rgb(var(--nw-color-neutral-0));
  --nw-color-on-sidebar: rgb(var(--nw-color-neutral-1000));
  --nw-color-on-sidebar-expanded: rgb(var(--nw-color-neutral-1000));
}
.rc-syntax-tree {
  background-color: rgb(var(--nw-color-sidebar));
  z-index: 5;
  height: 100%;
  width: 17rem;
}
.vtree {
  position: relative;
  overflow: auto;
}
.vtree .node-container .message {
  padding: 5px;
}
.vtree .node-container .node {
  position: absolute;
  width: 100%;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 2/16px 0.4rem;
  cursor: pointer;
  white-space: nowrap;
  /*
      transition: opacity 0.5s ease, transform 0.5s ease;
      opacity: 0;
      transform: translateY(-10px);
      */
}
.vtree .node-container .node.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.vtree .node-container .node:hover {
  color: rgb(var(--nw-color-neutral-1000));
  background-color: rgb(var(--nw-color-primary-100));
}
.vtree .node-container .node > .compact {
  margin: 0 5/16px 0 0;
  flex-shrink: 0;
}
.vtree .node-container .node > .indent {
  flex-shrink: 0;
}
.vtree .node-container .node.parent > button.compact {
  background-color: transparent;
  height: 16px;
  width: 16px;
  padding: 0;
  position: relative;
  border: none;
  outline: none;
}
.vtree .node-container .node.parent > button.compact > i {
  top: -2px;
  font-size: 10px;
}
.vtree .node-container .node.selected {
  color: rgb(var(--nw-color-neutral-0));
  background-color: rgb(var(--nw-color-primary-500));
}
.vtree .node-container .node.right-clicked:not(.selected) {
  background-color: rgb(var(--nw-color-primary-600));
}

.react-toolbar {
  background-color: rgb(var(--nw-color-neutral-300));
  color: rgb(var(--nw-color-neutral-1000));
  padding: 0.25rem 0.75rem;
}
.react-toolbar > .left-items > nw-button,
.react-toolbar .right-items > nw-button,
.react-toolbar > .left-items nw-dropdown,
.react-toolbar .right-items nw-dropdown {
  margin-right: 0.25rem;
}
.react-toolbar nw-button::part(label) {
  position: relative;
}
.react-toolbar nw-button::part(label):before {
  transition: 0.2s opacity, 0.2s transform;
  background: rgb(var(--nw-color-neutral-0));
  content: '';
  display: block;
  height: 1px;
  bottom: 4px;
  left: 0px;
  right: 0px;
  opacity: 0;
  position: absolute;
  transform: scaleX(0);
}
.react-toolbar nw-button:not([disabled='true'])::part(base):hover {
  color: rgb(var(--nw-color-neutral-0));
  background-color: rgb(var(--nw-color-primary-500));
}
.react-toolbar nw-button:not([disabled='true'])::part(label):hover:before {
  opacity: 1;
  transform: scaleX(1);
}
.react-toolbar nw-checkbox:not(nw-dropdown nw-checkbox) {
  height: 100%;
}
.react-toolbar nw-checkbox:not(nw-dropdown nw-checkbox)::part(base) {
  color: white;
  padding: 0 7px;
  height: 100%;
}
.react-toolbar nw-checkbox:not(nw-dropdown nw-checkbox)::part(label)::before {
  transition: 0.2s opacity, 0.2s transform;
  background: rgb(var(--nw-color-neutral-0));
  content: '';
  display: block;
  height: 1px;
  bottom: 4px;
  left: 30px;
  right: 6px;
  opacity: 0;
  position: absolute;
  transform: scaleX(0);
}
.react-toolbar nw-checkbox:not(nw-dropdown nw-checkbox)::part(label):hover::before {
  opacity: 1;
  transform: scaleX(1);
}
.react-toolbar nw-checkbox.nw-on-fi-surface:not([disabled='true'])::part(base) {
  color: rgb(var(--nw-color-neutral-0));
}

.rc-custom-time-dialog nw-date-picker,
.rc-custom-time-dialog nw-time-picker {
  display: inline-block;
  width: calc(50% - 2.5px);
}
.rc-custom-time-dialog nw-time-picker {
  margin-left: 5px;
}

.rc-time-selection {
  display: inline-flex;
  align-items: center;
}
.rc-time-selection .rc-time-show-border .selection-btn {
  border-style: solid;
  border-width: var(--nw-input-border-width);
  border-color: rgb(var(--nw-panel-border-color));
  border-radius: var(--nw-input-border-radius-medium);
}
.rc-time-selection .last-n-Text {
  width: 3em;
  padding-right: 5px;
  color: rgb(var(--nw-color-neutral-1000));
}
.rc-time-selection .last-n {
  width: 5em;
  display: inline-block;
}
.rc-time-selection .time-range {
  padding: 0 0.5rem;
  margin-top: 1px;
  color: rgb(var(--nw-color-neutral-1000));
}

body.tw-dark #script_codemirror_tooltip_body_text {
  color: rgb(var(--nw-color-neutral-1000));
}
body.nw-light #script_codemirror_tooltip_body_text {
  color: rgb(var(--nw-color-danger-500));
}

.fi-task-details .task-state-filter .nw-core-button {
  padding: 0;
}

#adom-faz-edit-explaination {
  font-size: 13px;
  font-weight: normal;
  color: rgb(var(--nw-color-neutral-500));
  margin-top: 10px;
}

.color-msg-green {
  color: rgb(var(--nw-color-on-msg-green));
  background-color: rgb(var(--nw-color-msg-green));
}
.color-msg-red {
  color: rgb(var(--nw-color-on-msg-red));
  background-color: rgb(var(--nw-color-msg-red));
}
.adom-switcher .adom-select-item {
  background-color: rgb(var(--nw-color-neutral-200));
  color: rgb(var(--nw-color-neutral-1000));
}
.adom-switcher .adom-select-item .adom-type {
  opacity: 0.6;
}
.adom-switcher .adom-select-item:hover {
  background-color: rgb(var(--nw-color-primary-100));
  color: rgb(var(--nw-color-neutral-1000));
}
.adom-switcher .adom-select-item.selected {
  background-color: rgb(var(--nw-color-primary));
  color: rgb(var(--nw-color-on-primary));
}
.adom-switcher .adom-select-item.selected:hover {
  background-color: rgb(var(--nw-color-primary-400));
}
.np-theme-dark-matter .adom-select-item {
  background-color: rgb(var(--nw-color-panel-100));
}
.nw-dark-contrast .adom-select-item .adom-type {
  opacity: unset;
}
.nw-dark-contrast .adom-select-item.selected:hover {
  background-color: rgb(var(--nw-color-primary-600));
}
.adom-switcher .adom-select-container .adom-select {
  padding: 0;
  margin: 0;
  list-style: none;
}
.adom-switcher .adom-select-container .adom-select .adom-select-item {
  display: inline-block;
  margin: 1px;
  height: 3.867rem;
  cursor: pointer;
}
.adom-switcher .adom-select-container .adom-select .adom-select-item.selected:not(:focus) {
  box-shadow: inset 0 0 6px 0 rgba(0, 0, 0, 0.4);
}
.adom-switcher .adom-select-container .adom-select .adom-select-item.selected.locked-other {
  color: rgb(var(--nw-color-on-msg-red));
  background-color: rgb(var(--nw-color-msg-red));
}
.adom-switcher .adom-select-container .adom-select .adom-select-item.selected.locked {
  color: rgb(var(--nw-color-on-msg-green));
  background-color: rgb(var(--nw-color-msg-green));
}
.adom-switcher .adom-select-container .adom-select .adom-select-item .adom-content {
  display: inline-block;
  height: 3.867rem;
  vertical-align: middle;
}
.adom-switcher .adom-select-container .adom-select .adom-select-item .adom-content.adom-icon {
  width: 30px;
  height: 100%;
  position: relative;
}
.adom-switcher .adom-select-container .adom-select .adom-select-item .adom-content.adom-icon .ffg {
  width: 1em;
  height: 1em;
  font-size: 14px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.adom-switcher .adom-select-container .adom-select .adom-select-item .adom-content.adom-icon .locked-other:not(.selected) {
  color: rgb(var(--nw-color-danger));
}
.adom-switcher .adom-select-container .adom-select .adom-select-item .adom-content.adom-text {
  padding: 5px 8px 5px 5px;
  font-weight: bold;
  width: 240px;
}
.adom-switcher .adom-select-container .adom-select .adom-select-item .adom-content.adom-text .adom-type {
  position: relative;
}
.adom-switcher .adom-select-container .adom-select .adom-select-item .adom-content.adom-text .adom-name {
  position: relative;
  display: inline-block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 230px;
}
.adom-switcher .adom-select-container .adom-select .adom-select-item .adom-content.adom-text:active .adom-type,
.adom-switcher .adom-select-container .adom-select .adom-select-item .adom-content.adom-text:active .adom-name {
  top: 1px;
  left: 1px;
}
.adom-switcher .adom-select-container .adom-select .adom-select-item .adom-content.adom-text.selected {
  color: #fff;
}
.adom-switcher .adom-select-container .adom-select .adom-select-item .adom-content.adom-text.selected .popover {
  color: black;
}
.adom-switcher .adom-select-container .adom-select .adom-select-item .adom-content.adom-text .adom-title {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}
.adom-switcher .adom-select-container .adom-select .adom-select-item .adom-content.adom-text .adom-title .adom-devcounts {
  margin-left: 5px;
}
.adom-switcher .adom-select-container .adom-select .adom-select-item .adom-content.adom-text .adom-subtitle {
  display: flex;
  align-items: center;
}
.adom-switcher .adom-select-container .adom-select .adom-select-item .adom-content.adom-text .adom-subtitle .adom-type {
  flex-grow: 1;
}
.adom-switcher .adom-select-container .adom-select .adom-select-item .adom-content.adom-text .adom-subtitle .popover-content {
  overflow: hidden;
  text-overflow: ellipsis;
  width: 300px;
}
.adom-switcher .adom-select-container .adom-select .adom-select-item .adom-content.adom-text .adom-subtitle hr {
  margin: 0px;
}
.adom-switcher .adom-select-container .adom-select .adom-select-item .adom-content.adom-text .with-brackets {
  white-space: nowrap;
}
.adom-switcher .adom-select-container .adom-select .adom-select-item .adom-content.adom-text .with-brackets::before {
  content: '(';
}
.adom-switcher .adom-select-container .adom-select .adom-select-item .adom-content.adom-text .with-brackets::after {
  content: ')';
}
.adom-switcher .adom-select-container .adom-select .disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.adom-switcher .warning-container {
  background-color: #fff3cd;
  display: flex;
  margin-left: 15px;
  padding-left: 15px;
  margin-right: 15px;
  padding-right: 15px;
  height: 3.867rem;
  margin-bottom: 10px;
  align-items: center;
  border: 2px solid #ffeeba;
}
.adom-switcher .expired-adom-icon {
  color: #c06819;
  padding-right: 3px;
  padding-left: 3px;
  zoom: 120%;
}
.adom-switcher .expire-text {
  color: #c06819;
  padding-left: 8px;
}
.adom-switcher .expired-adom-btn {
  color: #eee;
  border-radius: 5px;
  background-color: #c06819;
  border: 1px solid;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 5px;
  padding-bottom: 5px;
  position: absolute;
  right: 50px;
}
.nw-dark-contrast .adom-healther-check .adom-select-container .adom-select .adom-select-item {
  background-color: rgb(var(--nw-color-neutral-0));
}
.nw-dark-contrast .adom-healther-check .adom-select-container .adom-select .adom-select-item:hover,
.nw-dark-contrast .adom-healther-check .adom-select-container .adom-select .adom-select-item.selected {
  background-color: rgb(var(--nw-color-neutral-0));
}

.fileTable {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
  border-collapse: collapse;
  border-spacing: 0;
}
.fileTable > thead > tr > th {
  padding: 8px;
  text-align: left;
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}
.fileTable > tbody > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #ddd;
}

#rc-wizard-progress-bar {
  transition: height 400ms ease-in 0ms;
}
#rc-wizard-progress-bar nw-tooltip .rc-wizard-progress-bar-segment {
  transition: background-color 400ms ease-in 0ms;
}
#rc-wizard-progress-bar nw-tooltip::part(base) {
  color: rgb(var(--nw-color-neutral-1000));
  background-color: rgb(var(--nw-color-neutral-0));
  border: 2px solid rgb(var(--nw-color-border));
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.more-records-popover {
  width: fit-content;
  min-width: 300px;
  max-width: 700px;
  min-height: 200px;
  max-height: 400px;
}
.more-records-popover fi-windowlist {
  max-height: 400px;
}

.nw-dark-contrast .BaseTable .BaseTable__row.row-selected .BaseTable__row-cell .contrast-color-severity-selected {
  background-color: rgb(var(--nw-color-neutral-0)) !important;
  color: rgb(var(--nw-color-neutral-1000)) !important;
}
.nw-dark-contrast .psirt_irnumber_circle {
  border-style: solid;
  border-width: 1px;
}

.navbar-right-item-cloudsoc .enable-icon {
  color: rgb(var(--nw-color-success));
  padding-right: 5px;
}
.navbar-right-item-cloudsoc .warning-icon {
  color: rgb(var(--nw-color-amber));
  padding-right: 5px;
}
.navbar__cloud-socaas {
  font-size: 1.75rem;
}
.navbar__cloud-socaas--onboard {
  color: rgb(var(--nw-color-success-400));
}
.navbar__cloud-socaas--not-onboard {
  color: rgb(var(--nw-color-warning-400));
}
.navbar__cloud-socaas-trigger .button__label {
  display: flex;
  align-items: center;
  justify-content: center;
}

[automation-id='cloud-service-panel']:hover::part(base) {
  background-color: rgb(var(--nw-panel-background-color)) !important;
}

[automation-id='profile-dropdown-panel']:hover::part(base),
[automation-id='cloud-support-panel']:hover::part(base) {
  background-color: rgb(var(--nw-panel-background-color)) !important;
}

.ou-tree-no-overflow-panel::part(panel) {
  overflow: hidden;
}

.gdpr-body .np-section {
  min-width: unset !important;
}
.mask-background {
  background-color: rgba(0, 0, 0, 0.5) !important;
  pointer-events: none !important;
  cursor: crosshair !important;
}

.obj-dropbox:hover {
  color: rgb(var(--nw-color-neutral-1000));
  background-color: rgb(var(--nw-color-primary-100));
}
.obj-dropbox:focus {
  color: rgb(var(--nw-color-neutral-1000));
  background-color: rgb(var(--nw-color-primary-200));
}
.obj-dropbox.editing {
  color: rgb(var(--nw-color-neutral-1000));
  background-color: rgb(var(--nw-color-primary-200));
}
.nw-dark-contrast .obj-dropbox:hover nw-icon,
.nw-dark-contrast .obj-dropbox:focus nw-icon,
.nw-dark-contrast .obj-dropbox.editing nw-icon {
  color: rgb(var(--nw-color-white));
}
.tw-dark .np-toolkit-drawer .fi-input-focused:hover:not(disabled) .ftnt-profile-webfilter::before,
.tw-dark .np-toolkit-drawer .fi-input-focused:hover:not(disabled) .ftnt-profile-ssl-ssh-inspection::before,
.tw-dark .np-toolkit-drawer .fi-input-focused:hover:not(disabled) .ftnt-profile-antivirus::before,
.tw-dark .np-toolkit-drawer .fi-input-focused:hover:not(disabled) .ftnt-profile-icap::before,
.tw-dark .np-toolkit-drawer .fi-input-focused:hover:not(disabled) .ftnt-profile-application::before,
.tw-dark .np-toolkit-drawer .fi-input-focused:hover:not(disabled) .ftnt-profile-ips::before,
.tw-dark .np-toolkit-drawer .fi-input-focused:hover:not(disabled) .ftnt-profile-dnsfilter::before,
.tw-dark .np-toolkit-drawer .fi-input-focused:hover:not(disabled) .ftnt-profile-dlp::before,
.tw-dark .np-toolkit-drawer .fi-input-focused:hover:not(disabled) .ftnt-profile-waf::before,
.tw-dark .np-toolkit-drawer .fi-input-focused:hover:not(disabled) .ftnt-profile-protocol-options::before,
.tw-dark .np-toolkit-drawer .fi-input-focused:hover:not(disabled) .ftnt-profile-videofilter::before,
.tw-dark .np-toolkit-drawer .fi-input-focused:hover:not(disabled) .ftnt-profile-filefilter::before,
.tw-dark .np-toolkit-drawer .fi-input-focused:hover:not(disabled) .ftnt-profile-emailfilter::before,
.tw-dark .np-toolkit-drawer .fi-input-focused:hover:not(disabled) .ftnt-profile-voip::before {
  background-color: rgb(var(--nw-color-neutral-0));
  color: rgb(var(--nw-color-neutral-1000));
}
.tw-dark .np-toolkit-drawer .fi-input-focused:hover:not(disabled) nw-icon::part(base) {
  color: rgb(var(--nw-color-neutral-1000));
}
.tw-dark .np-toolkit-drawer .fi-input-focused:hover:not(disabled) nw-icon-button:not([disabled])::part(base),
.tw-dark .np-toolkit-drawer .fi-input-focused:hover:not(disabled) nw-icon-button:not([disabled])::part(base):focus,
.tw-dark .np-toolkit-drawer .fi-input-focused:hover:not(disabled) nw-icon-button:not([disabled])::part(base):hover {
  color: rgb(var(--nw-color-neutral-1000));
}

.obj-select-pane.body {
  padding: 15px;
}
.obj-select-pane .creatable-item:hover {
  cursor: pointer;
  color: rgb(var(--nw-color-neutral-1000));
  background-color: rgb(var(--nw-color-primary-100));
}

.obj-select-pane .item-top-bar {
  padding-bottom: 15px;
}
.obj-select-pane .item:hover {
  cursor: pointer;
}
.obj-select-pane .group-item {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-weight: normal;
  opacity: 0.6;
}
.obj-select-pane .leaf-item {
  padding-left: 20px;
}
.obj-select-pane .leaf-item:hover {
  color: rgb(var(--nw-color-neutral-1000));
  background-color: rgb(var(--nw-color-primary-100));
}
.obj-select-pane .leaf-item.selected {
  color: rgb(var(--nw-color-neutral-1000)) !important;
  background-color: rgb(var(--nw-color-primary-200)) !important;
}
.obj-select-pane .leaf-item.new-item {
  background-color: #fb923c;
}

.nwp-table__row-cell--active .fi-focus-hover-opacity-100,
.nwp-table__row-cell:focus .fi-focus-hover-opacity-100,
.nwp-table__row-cell:focus-within .fi-focus-hover-opacity-100,
.nwp-table__row-cell:hover .fi-focus-hover-opacity-100 {
  opacity: 100;
}
.nwp-table__row-cell--active .fi-focus-hover-block,
.nwp-table__row-cell:focus .fi-focus-hover-block,
.nwp-table__row-cell:focus-within .fi-focus-hover-block,
.nwp-table__row-cell:hover .fi-focus-hover-block {
  display: block;
}

.devices-tree-list {
  height: 100%;
}
.devices-tree-list .node.selected nw-icon,
.devices-tree-list .node.selected .nw-core-icon {
  color: rgb(var(--nw-color-neutral-0)) !important;
}

.nw-dark-contrast .BaseTable .row-selected .BaseTable__row-cell .avatar-container .ffg:before,
.nw-dark-contrast .BaseTable__table .BaseTable__row.row-selected .BaseTable__row-cell .avatar-container .ffg:before {
  color: rgb(var(--nw-color-neutral-1000)) !important;
}
.nw-dark-contrast .BaseTable .row-selected .nwp-table__row-cell .nw-iconbutton:not([disabled]).inline-edit-trigger-button:hover button.icon-button div.nw-core-icon,
.nw-dark-contrast .BaseTable__table .BaseTable__row.row-selected .nwp-table__row-cell .nw-iconbutton:not([disabled]).inline-edit-trigger-button:hover button.icon-button div.nw-core-icon {
  color: rgb(var(--nw-color-primary-600)) !important;
}

.inline-cell-edit-ctn .cell-btns {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.inline-cell-edit-ctn .cell-btns:hover {
  opacity: 1;
}

.xterm-viewport {
  overflow-y: auto !important;
}

.fi_borderless_terminal::part(panel) {
  padding: 0 !important;
  border: none;
}
.fi_borderless_terminal::part(body) {
  padding: 0 !important;
}
.fi_borderless_terminal::part(label) {
  text-align: start;
}
.fi_borderless_terminal::part(actions) {
  padding: calc(var(--header-spacing) / 2);
}
.fi_borderless_terminal .recording::part(base) {
  color: rgb(var(--nw-color-danger-500));
}
.fi_borderless_terminal .terminal_content {
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.fi_borderless_terminal .terminal_content .terminal.xterm {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 0.5em;
}

.header .header-title .logo {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.startup-wizard-ctn .tab-title {
  font-size: 18px;
  font-weight: bold;
  padding: 20px 0;
}
.startup-wizard-ctn .step-list {
  margin-top: 10px;
  padding-left: 0;
  list-style-position: inside;
}
.startup-wizard-ctn .step-list .step-list-item {
  margin-bottom: 20px;
  padding: 10px;
  background-color: rgb(var(--nw-color-primary-50));
}
.startup-wizard-ctn .step-list .checkmark-icon-color {
  color: rgb(var(--nw-color-success));
}
.startup-wizard-ctn .fi-group {
  margin-bottom: 10px;
}
.startup-wizard-ctn .fi-group label {
  margin: auto;
}
.startup-wizard-ctn .fi-group input {
  height: 35px;
  padding: 5px;
  border-color: rgb(var(--nw-color-border));
  background-color: rgb(var(--nw-color-primary-50));
}
.startup-wizard-ctn .fi-group .select2-choice {
  height: 35px;
  border-color: rgb(var(--nw-color-border));
  background-color: rgb(var(--nw-color-primary-50));
}
.startup-wizard-ctn .fi-group .select2-choice .select2-chosen {
  line-height: 35px;
}
.np-theme-dark-matter .startup-wizard-ctn .step-list-item {
  background-color: rgb(var(--nw-color-neutral-300));
}

.faz-advisor-drawer .drawer__panel {
  z-index: 500;
}

.nw-input .input--large .input__control {
  font-size: 1rem;
}
.nw-button .button--large .button__label {
  font-size: 1rem;
}

