/* BASICS */

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

/* PADDING */

.CodeMirror-lines {
  padding: 4px 0; /* Vertical padding around content */
}

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

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

/* GUTTER */

.CodeMirror-gutters {
  border-right: 1px solid #ddd;
  background-color: #f7f7f7;
  white-space: nowrap;
}

.CodeMirror-linenumbers {}

.CodeMirror-linenumber {
  padding: 0 3px 0 5px;
  min-width: 20px;
  text-align: right;
  color: #999;
  white-space: nowrap;
}

.CodeMirror-guttermarker { color: black; }

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

/* CURSOR */

.CodeMirror-cursor {
  border-left: 1px solid black;
  border-right: none;
  width: 0;
}

/* Shown when moving in bi-directional text */

.CodeMirror div.CodeMirror-secondarycursor {
  border-left: 1px solid silver;
}

.cm-fat-cursor .CodeMirror-cursor {
  width: auto;
  border: 0 !important;
  background: #7e7;
}

.cm-fat-cursor div.CodeMirror-cursors {
  z-index: 1;
}

.cm-fat-cursor-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: 0;
  overflow: hidden;
}

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

/* DEFAULT THEME */

.cm-s-default .cm-header {color: blue;}

.cm-s-default .cm-quote {color: #090;}

.cm-negative {color: #d44;}

.cm-positive {color: #292;}

.cm-header, .cm-strong {font-weight: bold;}

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

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

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

.cm-s-default .cm-keyword {color: #708;}

.cm-s-default .cm-atom {color: #219;}

.cm-s-default .cm-number {color: #164;}

.cm-s-default .cm-def {color: #00f;}

.cm-s-default .cm-variable,
.cm-s-default .cm-punctuation,
.cm-s-default .cm-property,
.cm-s-default .cm-operator {}

.cm-s-default .cm-variable-2 {color: #05a;}

.cm-s-default .cm-variable-3, .cm-s-default .cm-type {color: #085;}

.cm-s-default .cm-comment {color: #a50;}

.cm-s-default .cm-string {color: #a11;}

.cm-s-default .cm-string-2 {color: #f50;}

.cm-s-default .cm-meta {color: #555;}

.cm-s-default .cm-qualifier {color: #555;}

.cm-s-default .cm-builtin {color: #30a;}

.cm-s-default .cm-bracket {color: #997;}

.cm-s-default .cm-tag {color: #170;}

.cm-s-default .cm-attribute {color: #00c;}

.cm-s-default .cm-hr {color: #999;}

.cm-s-default .cm-link {color: #00c;}

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

.cm-invalidchar {color: #f00;}

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

/* Default styles for common addons */

div.CodeMirror span.CodeMirror-matchingbracket {color: #0b0;}

div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #a22;}

.CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }

.CodeMirror-activeline-background {background: #e8f2ff;}

/* STOP */

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

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

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

.CodeMirror-sizer {
  position: relative;
  border-right: 50px solid transparent;
}

/* The fake, visible scrollbars. Used to force redraw during scrolling
   before actual scrolling happens, thus preventing shaking and
   flickering artifacts. */

.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  position: absolute;
  z-index: 6;
  display: none;
  outline: none;
}

.CodeMirror-vscrollbar {
  right: 0; top: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}

.CodeMirror-hscrollbar {
  bottom: 0; left: 0;
  overflow-y: hidden;
  overflow-x: scroll;
}

.CodeMirror-scrollbar-filler {
  right: 0; bottom: 0;
}

.CodeMirror-gutter-filler {
  left: 0; bottom: 0;
}

.CodeMirror-gutters {
  position: absolute; left: 0; top: 0;
  min-height: 100%;
  z-index: 3;
}

.CodeMirror-gutter {
  white-space: normal;
  height: 100%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: -50px;
}

.CodeMirror-gutter-wrapper {
  position: absolute;
  z-index: 4;
  background: none !important;
  border: none !important;
}

.CodeMirror-gutter-background {
  position: absolute;
  top: 0; bottom: 0;
  z-index: 4;
}

.CodeMirror-gutter-elt {
  position: absolute;
  cursor: default;
  z-index: 4;
}

.CodeMirror-gutter-wrapper ::selection { background-color: transparent }

.CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }

.CodeMirror-lines {
  cursor: text;
  min-height: 1px; /* prevents collapsing before first draw */
}

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

.CodeMirror-wrap pre.CodeMirror-line,
.CodeMirror-wrap pre.CodeMirror-line-like {
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: normal;
}

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

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

.CodeMirror-widget {}

.CodeMirror-rtl pre { direction: rtl; }

.CodeMirror-code {
  outline: none;
}

/* Force content-box sizing for the elements where we expect it */

.CodeMirror-scroll,
.CodeMirror-sizer,
.CodeMirror-gutter,
.CodeMirror-gutters,
.CodeMirror-linenumber {
  box-sizing: content-box;
}

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

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

.CodeMirror-measure pre { position: static; }

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

div.CodeMirror-dragcursors {
  visibility: visible;
}

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

.CodeMirror-selected { background: #d9d9d9; }

.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }

.CodeMirror-crosshair { cursor: crosshair; }

.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }

.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }

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

/* Used to force a border model for a node */

.cm-force-border { padding-right: .1px; }

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

/* See issue #2901 */

.cm-tab-wrap-hack:after { content: ''; }

/* Help users use markselection to safely style text background */

span.CodeMirror-selectedtext { background: none; }

:root {
  --unitless-sizing-scale: 2;
  --sizing-scale: 2px;
  --sizing-xxs: 0.5px;
  --unitless-sizing-xs: 1;
  --sizing-xs: 1px;
  --unitless-sizing-sm: calc(var(--unitless-sizing-xs) * var(--unitless-sizing-scale));
  --sizing-sm: calc(var(--unitless-sizing-sm) * 1px);
  --unitless-sizing-md: calc(var(--unitless-sizing-sm) * var(--unitless-sizing-scale));
  --sizing-md: calc(var(--unitless-sizing-md) * 1px);
  --unitless-sizing-lg: calc(var(--unitless-sizing-md) * var(--unitless-sizing-scale));
  --sizing-lg: calc(var(--unitless-sizing-lg) * 1px);
  --unitless-sizing-xl: calc(var(--unitless-sizing-lg) * var(--unitless-sizing-scale));
  --sizing-xl: calc(var(--unitless-sizing-xl) * 1px);
  --sizing-xxl: calc(calc(var(--unitless-sizing-xl) * var(--unitless-sizing-scale)) * 1px);
  --borderRadius-xs: 2px;
  --borderRadius-sm: 4px;
  --borderRadius-lg: 8px;
  --borderRadius-xl: 16px;
  --borderWidth-none: 0;
  --borderWidth-xxs: 0.5px;
  --borderWidth-xs: 1px;
  --borderWidth-sm: 2px;
  --borderWidth-md: 4px;
  --borderWidth-lg: 8px;
  --colors-white: #fff;
  --colors-black: #000;
  --colors-magenta-50: #fff0f6;
  --colors-magenta-100: #ffd6e7;
  --colors-magenta-200: #ffadd2;
  --colors-magenta-300: #ff85c0;
  --colors-magenta-400: #f759ab;
  --colors-magenta-500: #eb2f96;
  --colors-magenta-600: #c41d7f;
  --colors-magenta-700: #9e1068;
  --colors-magenta-800: #780650;
  --colors-magenta-900: #520339;
  --colors-magenta-950: #291321;
  --colors-red-50: #fff1f0;
  --colors-red-100: #ffccc7;
  --colors-red-200: #ffa39e;
  --colors-red-300: #f37370;
  --colors-red-400: #ea3c4b;
  --colors-red-500: #db2c35;
  --colors-red-600: #a61d24;
  --colors-red-700: #791a1f;
  --colors-red-800: #58181c;
  --colors-red-900: #431418;
  --colors-red-950: #2a1215;
  --colors-orange-50: #fff7e6;
  --colors-orange-100: #ffe7ba;
  --colors-orange-200: #ffd591;
  --colors-orange-300: #f3af56;
  --colors-orange-400: #f09737;
  --colors-orange-500: #ed762f;
  --colors-orange-600: #d55c26;
  --colors-orange-700: #ad4e00;
  --colors-orange-800: #873800;
  --colors-orange-900: #612500;
  --colors-orange-950: #381500;
  --colors-yellow-50: #fffcf4;
  --colors-yellow-100: #fcf5df;
  --colors-yellow-200: #faecbb;
  --colors-yellow-300: #f8e195;
  --colors-yellow-400: #f5d46b;
  --colors-yellow-500: #f2c739;
  --colors-yellow-600: #efb700;
  --colors-yellow-700: #bd9101;
  --colors-yellow-800: #664b16;
  --colors-yellow-900: #33250b;
  --colors-yellow-950: #191306;
  --colors-green-50: #f6fff4;
  --colors-green-100: #e5f5e3;
  --colors-green-200: #c8e9c4;
  --colors-green-300: #aadea2;
  --colors-green-400: #84ce79;
  --colors-green-500: #55bc46;
  --colors-green-600: #129200;
  --colors-green-700: #0f6901;
  --colors-green-800: #0a4b00;
  --colors-green-900: #052211;
  --colors-green-950: #021109;
  --colors-teal-50: #effffb;
  --colors-teal-100: #d3fef4;
  --colors-teal-200: #92ecde;
  --colors-teal-300: #7bf4e2;
  --colors-teal-400: #30dfd3;
  --colors-teal-500: #00c0bc;
  --colors-teal-600: #0C989B;
  --colors-teal-700: #317173;
  --colors-teal-800: #215356;
  --colors-teal-900: #143a3d;
  --colors-teal-950: #0a2122;
  --colors-blue-50: #e6f7ff;
  --colors-blue-100: #bae7ff;
  --colors-blue-200: #91d5ff;
  --colors-blue-300: #69c0ff;
  --colors-blue-400: #40a9ff;
  --colors-blue-500: #1890ff;
  --colors-blue-600: #096dd9;
  --colors-blue-700: #0050b3;
  --colors-blue-800: #003a8c;
  --colors-blue-900: #002766;
  --colors-blue-950: #00163a;
  --colors-purple-50: #eeecfb;
  --colors-purple-100: #ddd9f7;
  --colors-purple-200: #bbb2ef;
  --colors-purple-300: #9a8ce8;
  --colors-purple-400: #7865e0;
  --colors-purple-500: #6c60ec;
  --colors-purple-600: #4c42bf;
  --colors-purple-700: #352f91;
  --colors-purple-800: #2b1f70;
  --colors-purple-900: #18113d;
  --colors-purple-950: #0a0617;
  --colors-gray-50: #fafafa;
  --colors-gray-100: #f0f0f0;
  --colors-gray-200: #d9d9d9;
  --colors-gray-300: #bfbfbf;
  --colors-gray-400: #8c8c8c;
  --colors-gray-500: #595959;
  --colors-gray-600: #434343;
  --colors-gray-700: #313131;
  --colors-gray-800: #262626;
  --colors-gray-900: #1f1f1f;
  --colors-gray-950: #141414;
  --colors-CVblue-1: #E7EDF7;
  --colors-CVblue-2: #CCDAF2;
  --colors-CVblue-3: #A9C2EA;
  --colors-CVblue-4: #83ABE2;
  --colors-CVblue-5: #5588D8;
  --colors-CVblue-6: #3875CC;
  --colors-CVblue-7: #2F65B3;
  --colors-CVblue-8: #27569B;
  --colors-CVblue-9: #20467F;
  --colors-CVblue-10: #16325B;
  --colors-CVbase-1: #FAFAFD;
  --colors-CVbase-2: #F5F5F8;
  --colors-CVbase-3: #E8E8EB;
  --colors-CVbase-4: #D9D9DC;
  --colors-CVbase-5: #BBBBBE;
  --colors-CVbase-6: #75757A;
  --colors-CVbase-7: #58585B;
  --colors-CVbase-8: #262629;
  --colors-CVbase-black: #000;
  --opacity-low: 10%;
  --opacity-md: 50%;
  --opacity-high: 90%;
}

.panda-theme-dark {
  --theme-bg-canvas: var(--colors-black);
  --theme-bg-primary: var(--colors-gray-950);
  --theme-bg-secondary: var(--colors-gray-900);
  --theme-bg-secondary-default: var(--colors-purple-500);
  --theme-bg-secondary-hover: var(--colors-purple-600);
  --theme-bg-secondary-active: var(--colors-purple-300);
  --theme-bg-secondary-focus: rgba(108, 96, 236, 0.3);
  --theme-bg-secondary-minimal: var(--colors-purple-800);
  --theme-bg-secondary-subtle: var(--colors-purple-900);
  --theme-bg-secondary-disabled: var(--colors-gray-900);
  --theme-bg-tertiary: var(--colors-gray-800);
  --theme-bg-moderate: var(--colors-gray-700);
  --theme-bg-moderate-tag: var(--colors-gray-950);
  --theme-bg-moderate-new-tag: var(--colors-gray-500);
  --theme-bg-disabled: var(--colors-gray-900);
  --theme-bg-overlay: rgba(0, 0, 0, 0.75);
  --theme-bg-input: var(--theme-bg-canvas);
  --theme-bg-inverse: var(--colors-white);
  --theme-bg-modal: var(--colors-gray-950);
  --theme-bg-code: var(--theme-bg-canvas);
  --theme-bg-scroll: rgba(255, 255, 255, 0.4);
  --theme-bg-scroll-track: rgba(255, 255, 255, 0.2);
  --theme-bg-tooltip: var(--colors-gray-200);
  --theme-bg-item-hover: rgba(255, 255, 255, 0.08);
  --theme-bg-item-selected: var(--theme-bg-table-select);
  --theme-bg-avatar: var(--colors-gray-500);
  --theme-bg-popover: var(--colors-gray-900);
  --theme-bg-constant-light: var(--colors-white);
  --theme-bg-constant-dark: var(--colors-black);
  --theme-bg-panel-info-primary: var(--theme-bg-canvas);
  --theme-bg-panel-info-secondary: var(--theme-bg-secondary);
  --theme-bg-tag-default: var(--colors-gray-950);
  --theme-bg-tag-new: var(--colors-gray-500);
  --theme-bg-app-header-default: var(--theme-bg-left-rail-default);
  --theme-bg-app-header-input: var(--theme-bg-canvas);
  --theme-bg-app-header-input-add: var(--theme-bg-primary);
  --theme-bg-app-header-button-primary: var(--theme-bg-brand-default);
  --theme-bg-app-header-button-secondary: var(--theme-bg-primary);
  --theme-bg-app-header-button-square: var(--theme-bg-canvas);
  --theme-bg-app-header-avatar: var(--theme-bg-brand-default);
  --theme-bg-app-header-dropdown: var(--theme-bg-canvas);
  --theme-bg-left-rail-default: var(--colors-black);
  --theme-bg-left-rail-hover: var(--theme-bg-primary);
  --theme-bg-left-rail-hover-bold: var(--theme-bg-tertiary);
  --theme-bg-table-default: var(--theme-bg-secondary);
  --theme-bg-table-hover: var(--theme-bg-secondary);
  --theme-bg-table-select: var(--colors-gray-700);
  --theme-bg-table-info: #2a2758;
  --theme-bg-table-header: var(--colors-black);
  --theme-bg-table-header-hover: var(--theme-bg-primary);
  --theme-bg-error-default: var(--colors-red-500);
  --theme-bg-error-hover: var(--colors-red-600);
  --theme-bg-error-active: var(--colors-red-300);
  --theme-bg-error-focus: rgba(219, 44, 53, 0.45);
  --theme-bg-error-minimal: var(--colors-red-900);
  --theme-bg-error-subtle: var(--colors-red-950);
  --theme-bg-error-disabled: var(--colors-gray-900);
  --theme-bg-error-secondary: var(--theme-bg-primary);
  --theme-bg-error-hover-secondary: var(--theme-bg-primary);
  --theme-bg-error-active-secondary: var(--theme-bg-primary);
  --theme-bg-error-focus-secondary: rgba(219, 44, 53, 0.45);
  --theme-bg-error-label: var(--colors-red-400);
  --theme-bg-warning-default: var(--colors-yellow-600);
  --theme-bg-warning-hover: var(--colors-yellow-700);
  --theme-bg-warning-active: var(--colors-yellow-400);
  --theme-bg-warning-focus: rgba(239, 183, 0, 0.3);
  --theme-bg-warning-minimal: var(--colors-yellow-800);
  --theme-bg-warning-subtle: var(--colors-yellow-900);
  --theme-bg-warning-disabled: var(--colors-gray-900);
  --theme-bg-success-default: var(--colors-green-500);
  --theme-bg-success-hover: var(--colors-green-600);
  --theme-bg-success-active: var(--colors-green-400);
  --theme-bg-success-focus: rgba(85, 188, 70, 0.3);
  --theme-bg-success-minimal: var(--colors-green-900);
  --theme-bg-success-subtle: var(--colors-green-900);
  --theme-bg-success-disabled: var(--colors-gray-900);
  --theme-bg-info-default: var(--colors-purple-500);
  --theme-bg-info-hover: var(--colors-purple-700);
  --theme-bg-info-active: var(--colors-purple-400);
  --theme-bg-info-focus: rgba(108, 96, 236, 0.3);
  --theme-bg-info-minimal: var(--colors-purple-800);
  --theme-bg-info-subtle: var(--colors-purple-950);
  --theme-bg-info-disabled: var(--colors-gray-900);
  --theme-bg-brand-default: var(--colors-purple-500);
  --theme-bg-brand-hover: var(--colors-purple-600);
  --theme-bg-brand-active: var(--colors-purple-300);
  --theme-bg-brand-focus: rgba(108, 96, 236, 0.3);
  --theme-bg-brand-minimal: var(--colors-purple-800);
  --theme-bg-brand-subtle: var(--colors-purple-900);
  --theme-bg-brand-disabled: var(--colors-gray-900);
  --theme-bg-brand-secondary: var(--theme-bg-primary);
  --theme-bg-brand-hover-secondary: var(--theme-bg-primary);
  --theme-bg-brand-active-secondary: var(--theme-bg-primary);
  --theme-bg-brand-focus-secondary: rgba(108, 96, 236, 0.16);
  --theme-bg-brand-label: var(--theme-bg-brand-default);
  --theme-bg-dataviz-accent: var(--colors-purple-900);
  --theme-bg-dataviz-neutral: var(--colors-gray-500);
  --theme-bg-dataviz-disabled: var(--colors-gray-400);
  --theme-bg-dataviz-fg-accent: var(--colors-purple-100);
  --theme-bg-dataviz-bg-select: var(--colors-purple-600);
  --theme-bg-dataviz-detail-default: var(--theme-border-dataviz-linechart);
  --theme-bg-dataviz-detail-selected: var(--theme-bg-dataviz-brand-accent-default);
  --theme-bg-dataviz-detail-faded: var(--colors-gray-500);
  --theme-bg-dataviz-brand-faded: #464085;
  --theme-bg-dataviz-brand-default: var(--theme-bg-brand-default);
  --theme-bg-dataviz-brand-hover: var(--theme-bg-brand-hover);
  --theme-bg-dataviz-brand-select: var(--theme-bg-brand-active);
  --theme-bg-dataviz-brand-accent-faded: #4A4469;
  --theme-bg-dataviz-brand-accent-default: var(--theme-bg-brand-active);
  --theme-bg-dataviz-brand-accent-hover: var(--theme-bg-brand-default);
  --theme-bg-dataviz-brand-accent-select: var(--theme-bg-brand-hover);
  --theme-bg-dataviz-brand-bold-default: var(--colors-purple-600);
  --theme-bg-dataviz-brand-bold-faded: rgba(76, 66, 191, 0.4);
  --theme-bg-dataviz-brand-minimal-default: var(--colors-purple-700);
  --theme-bg-dataviz-brand-minimal-faded: rgba(53, 47, 145, 0.4);
  --theme-bg-dataviz-brand-subtle: var(--colors-purple-800);
  --theme-bg-dataviz-node-default: var(--colors-purple-800);
  --theme-bg-dataviz-node-hover: var(--colors-purple-600);
  --theme-bg-dataviz-node-select: var(--colors-purple-300);
  --theme-bg-dataviz-node-sequence: var(--colors-gray-100);
  --theme-bg-dataviz-risk-high: var(--colors-red-400);
  --theme-bg-dataviz-risk-medium: var(--colors-orange-400);
  --theme-bg-dataviz-risk-low: var(--colors-yellow-500);
  --theme-bg-dataviz-risk-na: var(--colors-gray-400);
  --theme-bg-mitre-skill-00: var(--colors-purple-900);
  --theme-bg-mitre-skill-01: #221857;
  --theme-bg-mitre-skill-02: #2B1F70;
  --theme-bg-mitre-skill-03: #322A7E;
  --theme-bg-mitre-skill-04: #3B3294;
  --theme-bg-mitre-skill-05: #433AA9;
  --theme-bg-mitre-skill-06: var(--colors-purple-600);
  --theme-bg-mitre-skill-07: #574BC7;
  --theme-bg-mitre-skill-08: #6254D0;
  --theme-bg-mitre-skill-09: #6D5CD8;
  --theme-bg-mitre-skill-10: var(--colors-purple-400);
  --theme-bg-mitre-hover: rgba(255, 255, 255, 0.25);
  --theme-bg-mitre-hover-inverse: rgba(43, 31, 112, 0.25);
  --theme-bg-mitre-skill-footer: var(--theme-bg-canvas);
  --theme-bg-mitre-header: var(--theme-bg-canvas);
  --theme-bg-mitre-subtechnique: var(--theme-bg-canvas);
  --theme-bg-mitre-subtechnique-hover: var(--theme-bg-primary);
  --theme-bg-accent-default: var(--theme-bg-secondary);
  --theme-bg-accent-hover: var(--theme-bg-secondary);
  --theme-bg-accent-active: var(--theme-bg-secondary);
  --theme-bg-accent-focus: rgba(108, 96, 236, 0.16);
  --theme-bg-accent-disabled: var(--theme-bg-brand-disabled);
  --theme-border-dataviz-brand: var(--theme-bg-brand-default);
  --theme-border-dataviz-default: var(--theme-border-primary);
  --theme-border-dataviz-default-faded: var(--theme-bg-secondary);
  --theme-border-dataviz-canvas: var(--theme-bg-canvas);
  --theme-border-dataviz-primary: var(--colors-white);
  --theme-border-dataviz-linechart: var(--theme-border-dataviz-grid-bold);
  --theme-border-dataviz-grid: var(--colors-gray-400);
  --theme-border-dataviz-grid-subtle: var(--theme-character-disabled);
  --theme-border-dataviz-grid-bold: var(--colors-white);
  --theme-border-dataviz-grid-attackmap: var(--colors-purple-800);
  --theme-border-dataviz-node: var(--colors-white);
  --theme-border-dataviz-node-select: var(--theme-bg-brand-default);
  --theme-border-dataviz-sequence: var(--colors-white);
  --theme-border-divider: var(--colors-gray-600);
  --theme-border-tag: var(--colors-gray-600);
  --theme-border-tag-default: var(--colors-gray-950);
  --theme-border-tag-new: var(--colors-gray-500);
  --theme-border-primary: var(--colors-gray-600);
  --theme-border-app-header-input: var(--colors-gray-600);
  --theme-border-app-header-input-add: var(--colors-gray-600);
  --theme-border-app-header-button-primary: var(--theme-bg-brand-default);
  --theme-border-app-header-button-secondary: var(--colors-gray-600);
  --theme-border-app-header-button-square: var(--colors-gray-600);
  --theme-border-app-header-button-dropdown: var(--colors-gray-600);
  --theme-border-app-header-avatar: var(--theme-bg-app-header-avatar);
  --theme-border-left-rail-default: var(--colors-black);
  --theme-border-left-rail-hover: var(--theme-bg-primary);
  --theme-border-left-rail-hover-bold: var(--theme-bg-tertiary);
  --theme-border-table-header: var(--colors-gray-950);
  --theme-border-table-divider: var(--colors-black);
  --theme-border-table-header-select: var(--theme-bg-brand-default);
  --theme-border-error-default: var(--theme-bg-error-default);
  --theme-border-error-hover: var(--theme-bg-error-hover);
  --theme-border-error-active: var(--theme-bg-error-active);
  --theme-border-error-focus: var(--theme-border-error-hover);
  --theme-border-error-minimal: var(--theme-bg-error-minimal);
  --theme-border-error-subtle: var(--theme-bg-error-subtle);
  --theme-border-error-disabled: var(--theme-border-primary);
  --theme-border-error-secondary: var(--theme-border-error-default);
  --theme-border-error-hover-secondary: var(--theme-border-error-hover);
  --theme-border-error-active-secondary: var(--theme-border-error-active);
  --theme-border-error-focus-secondary: var(--theme-border-error-focus);
  --theme-border-warning-default: var(--theme-bg-warning-default);
  --theme-border-warning-hover: var(--theme-bg-warning-hover);
  --theme-border-warning-active: var(--theme-bg-warning-active);
  --theme-border-warning-focus: var(--theme-border-warning-default);
  --theme-border-warning-minimal: var(--theme-bg-warning-minimal);
  --theme-border-warning-subtle: var(--theme-bg-warning-subtle);
  --theme-border-warning-disabled: var(--theme-border-primary);
  --theme-border-success-default: var(--theme-bg-success-default);
  --theme-border-success-hover: var(--theme-bg-success-hover);
  --theme-border-success-active: var(--theme-bg-success-active);
  --theme-border-success-focus: var(--theme-bg-success-default);
  --theme-border-success-minimal: var(--theme-bg-success-minimal);
  --theme-border-success-subtle: var(--theme-bg-success-subtle);
  --theme-border-success-disabled: var(--theme-border-primary);
  --theme-border-info-default: var(--theme-bg-info-default);
  --theme-border-info-hover: var(--theme-bg-info-hover);
  --theme-border-info-active: var(--theme-bg-info-active);
  --theme-border-info-focus: var(--theme-bg-info-default);
  --theme-border-info-minimal: var(--theme-bg-info-minimal);
  --theme-border-info-subtle: var(--theme-bg-info-subtle);
  --theme-border-info-disabled: var(--theme-border-primary);
  --theme-border-brand-default: var(--theme-bg-brand-default);
  --theme-border-brand-hover: var(--theme-bg-brand-hover);
  --theme-border-brand-active: var(--theme-bg-brand-active);
  --theme-border-brand-focus: var(--colors-purple-600);
  --theme-border-brand-minimal: var(--theme-bg-brand-minimal);
  --theme-border-brand-subtle: var(--theme-bg-brand-subtle);
  --theme-border-brand-disabled: var(--theme-border-primary);
  --theme-border-brand-secondary: var(--theme-border-primary);
  --theme-border-brand-active-secondary: var(--theme-bg-brand-active);
  --theme-border-brand-hover-secondary: var(--theme-bg-brand-hover);
  --theme-border-brand-focus-secondary: var(--theme-bg-brand-hover);
  --theme-border-mitre-default: var(--theme-border-primary);
  --theme-border-mitre-select: var(--colors-white);
  --theme-character-primary: var(--colors-white);
  --theme-character-title: rgba(255, 255, 255, 0.85);
  --theme-character-primary65: rgba(255, 255, 255, 0.65);
  --theme-character-secondary: rgba(255, 255, 255, 0.45);
  --theme-character-disabled: rgba(255, 255, 255, 0.25);
  --theme-character-button-secondary: rgba(255, 255, 255, 0.85);
  --theme-character-logo: var(--theme-character-title);
  --theme-character-button-primary: var(--colors-white);
  --theme-character-avatar: var(--colors-white);
  --theme-character-constant-dark: var(--colors-black);
  --theme-character-constant-light: var(--colors-white);
  --theme-character-cta-button: var(--colors-white);
  --theme-character-inverse: var(--colors-black);
  --theme-character-low: var(--colors-yellow-500);
  --theme-character-alert: var(--theme-character-primary);
  --theme-character-checkbox: var(--theme-bg-constant-light);
  --theme-character-mitre-primary: var(--colors-white);
  --theme-character-mitre-disabled: var(--theme-character-disabled);
  --theme-character-mitre-link: var(--theme-character-link-primary);
  --theme-character-mitre-link-hover: var(--theme-character-link-hover);
  --theme-character-mitre-link-active: var(--theme-character-link-active);
  --theme-character-mitre-header: var(--theme-character-primary);
  --theme-character-mitre-header-secondary: var(--theme-character-title);
  --theme-character-mitre-secondary: var(--theme-character-title);
  --theme-character-mitre-tertiary: var(--theme-character-secondary);
  --theme-character-table-header: var(--colors-white);
  --theme-character-table-primary: var(--theme-character-title);
  --theme-character-table-secondary: var(--theme-character-primary65);
  --theme-character-table-filter: var(--theme-character-disabled);
  --theme-character-table-filter-select: var(--theme-bg-brand-default);
  --theme-character-table-header-select: var(--theme-bg-brand-default);
  --theme-character-table-sort: var(--theme-character-disabled);
  --theme-character-table-sort-select: var(--theme-bg-brand-default);
  --theme-character-app-header-primary: rgba(255, 255, 255, 0.85);
  --theme-character-app-header-secondary: rgba(255, 255, 255, 0.45);
  --theme-character-app-header-avatar: var(--colors-white);
  --theme-character-app-header-button-primary: var(--theme-character-primary);
  --theme-character-app-header-button-secondary: var(--theme-character-title);
  --theme-character-app-header-button-square: var(--theme-character-title);
  --theme-character-app-header-dropdown: rgba(255, 255, 255, 0.45);
  --theme-character-left-rail-primary: var(--colors-white);
  --theme-character-left-rail-secondary: rgba(255, 255, 255, 0.85);
  --theme-character-left-rail-logo: var(--theme-character-left-rail-primary);
  --theme-character-left-rail-disabled: var(--theme-character-secondary);
  --theme-character-left-rail-disabled-select: var(--theme-character-secondary);
  --theme-character-error-default: var(--colors-red-400);
  --theme-character-error-primary: var(--colors-white);
  --theme-character-error-hover: var(--colors-red-600);
  --theme-character-error-active: var(--colors-red-300);
  --theme-character-error-focus: var(--theme-border-error-default);
  --theme-character-error-disabled: var(--theme-character-disabled);
  --theme-character-warning-default: var(--colors-yellow-500);
  --theme-character-warning-hover: var(--colors-yellow-600);
  --theme-character-warning-active: var(--colors-yellow-400);
  --theme-character-warning-focus: var(--theme-bg-warning-default);
  --theme-character-warning-disabled: var(--theme-character-disabled);
  --theme-character-success-default: var(--colors-green-500);
  --theme-character-success-hover: var(--colors-green-600);
  --theme-character-success-active: var(--colors-green-400);
  --theme-character-success-focus: var(--theme-bg-success-default);
  --theme-character-success-disabled: var(--theme-character-disabled);
  --theme-character-info-default: var(--colors-purple-500);
  --theme-character-info-hover: var(--colors-purple-600);
  --theme-character-info-active: var(--colors-purple-300);
  --theme-character-info-focus: var(--theme-bg-brand-default);
  --theme-character-info-disabled: var(--theme-character-disabled);
  --theme-character-brand-text: var(--colors-purple-300);
  --theme-character-brand-text-bold: var(--colors-purple-300);
  --theme-character-brand-default: var(--theme-bg-brand-default);
  --theme-character-brand-primary: var(--theme-character-primary);
  --theme-character-brand-secondary: var(--theme-character-title);
  --theme-character-brand-hover: var(--colors-purple-600);
  --theme-character-brand-active: var(--colors-purple-300);
  --theme-character-brand-focus: var(--colors-purple-600);
  --theme-character-brand-disabled: var(--theme-character-disabled);
  --theme-character-risk-high: var(--colors-red-400);
  --theme-character-risk-medium: var(--colors-orange-400);
  --theme-character-risk-low: var(--colors-yellow-300);
  --theme-character-code-default: var(--colors-purple-300);
  --theme-character-code-syntax: var(--colors-gray-200);
  --theme-character-code-polymorphic: var(--colors-purple-300);
  --theme-character-code-function: var(--colors-purple-300);
  --theme-character-code-builtin: var(--colors-purple-300);
  --theme-character-code-column: var(--colors-teal-200);
  --theme-character-code-boolean: var(--colors-yellow-600);
  --theme-character-code-datetime: var(--colors-yellow-600);
  --theme-character-code-number: var(--colors-yellow-600);
  --theme-character-code-regex: var(--colors-red-300);
  --theme-character-code-string: var(--colors-red-300);
  --theme-character-code-uuid: var(--colors-red-300);
  --theme-character-code-ipaddress: var(--colors-red-300);
  --theme-character-code-macaddress: var(--colors-red-300);
  --theme-character-code-comment: var(--colors-gray-500);
  --theme-character-code-keyword: var(--colors-white);
  --theme-character-code-link: rgba(154, 140, 232, 0.5);
  --theme-character-link-primary: var(--colors-white);
  --theme-character-link-secondary: var(--theme-character-primary65);
  --theme-character-link-hover: var(--theme-bg-brand-active);
  --theme-character-link-active: var(--theme-bg-brand-default);
  --theme-character-link-disabled: var(--theme-character-disabled);
  --theme-character-link-dangerous: var(--theme-bg-error-default);
  --theme-character-link-hover-dangerous: var(--theme-character-error-hover);
  --theme-character-link-active-dangerous: var(--theme-character-error-active);
  --theme-character-dataviz-node: var(--colors-white);
  --theme-character-dataviz-node-infected: var(--theme-character-error-default);
  --theme-character-dataviz-sequence: var(--colors-black);
  --theme-character-dataviz-sequence-hover: var(--colors-white);
  --theme-character-dataviz-sequence-infected: var(--colors-white);
  --theme-character-dataviz-sequence-infected-hover: var(--colors-white);
  --theme-character-dataviz-brand-accent-faded: var(--theme-bg-dataviz-brand-accent-faded);
  --theme-character-dataviz-brand-contrast: var(--colors-purple-50);
  --theme-character-dataviz-brand-contrast-faded: rgba(238, 236, 251, 0.5);
  --dropshadow-0-15: 0 2px 8px 0 #00000026;
  --dropshadow-0-12-0-8-0-5: 0 9px 28px 8px #0000004d, 0 6px 16px 0 #0006, 0 3px 6px -4px #0009;
  --dropshadow-0-15-yOffset6: 0 6px 8px 0 #00000026;
  --dropshadow-active-2px-spread: 0 0 0 2px var(--theme-bg-brand-focus);
  --dropshadow-button-primary: 0 2px 0 0 #ffffff0a;
  --dropshadow-button-secondary: 0 2px 0 0 #ffffff05;
  --dropshadow-table-hover: 0 0 16px 0 rgba(0, 0, 0, 0.9);
  --dropshadow-info-panel: 0 2px 20px 0 #00000026;
  --borderdivider-divider-down: 0 -1px 0 0 #434343;
  --borderdivider-divider-up: 0 1px 0 0 #434343;
  --borderdivider-divider-right: -1px 0 0 0 #434343;
  --borderdivider-border-left-up-right-1px: 1px 0 0 0 #434343, 0 1px 0 0 #434343, -1px 0 0 0 #434343;
  --borderdivider-border-up-down-right: 0 -1px 0 0 #434343, 0 1px 0 0 #434343, -1px 0 0 0 #434343;
  --borderdivider-border-left-up-down: 0 -1px 0 0 #434343, 0 1px 0 0 #434343, 1px 0 0 0 #434343;
  --borderdivider-border-up-down-0-5px: 0 0.5px 0 0 #434343, 0 -0.5px 0 0 #434343;
  --borderdivider-outer-border-1px: 0 0 0 1px #000;
  --ink-theme-right-2px: -2px 0 0 0 #9a8ce8;
  --ink-theme-up-2px: 0 2px 0 0 #6c60ec;
  --ink-theme-right-3px: -3px 0 0 0 #9a8ce8;
  --ink-theme-left-up-down-right-1px: 0 -1px 0 0 #6c60ec, 0 1px 0 0 #6c60ec, -1px 0 0 0 #6c60ec, -1px 0 0 0 #6c60ec;
  --ink-f0f0f0-left-2px: 2px 0 0 0 #f0f0f0;
  --ink-theme-left-2px: 2px 0 0 0 #9a8ce8;
}

.panda-theme-light {
  --theme-bg-canvas: var(--colors-white);
  --theme-bg-primary: var(--colors-white);
  --theme-bg-secondary: var(--colors-white);
  --theme-bg-secondary-default: var(--colors-purple-500);
  --theme-bg-secondary-hover: var(--colors-purple-600);
  --theme-bg-secondary-active: var(--colors-purple-300);
  --theme-bg-secondary-focus: rgba(108, 96, 236, 0.3);
  --theme-bg-secondary-minimal: var(--colors-purple-800);
  --theme-bg-secondary-subtle: var(--colors-purple-900);
  --theme-bg-secondary-disabled: var(--colors-gray-900);
  --theme-bg-tertiary: var(--colors-gray-300);
  --theme-bg-moderate: var(--colors-gray-200);
  --theme-bg-moderate-tag: var(--colors-gray-950);
  --theme-bg-moderate-new-tag: var(--colors-gray-500);
  --theme-bg-overlay: rgba(0, 0, 0, 0.15);
  --theme-bg-disabled: var(--colors-gray-100);
  --theme-bg-inverse: var(--colors-white);
  --theme-bg-modal: var(--colors-white);
  --theme-bg-scroll: var(--colors-gray-300);
  --theme-bg-item-hover: var(--colors-gray-50);
  --theme-bg-item-selected: var(--colors-gray-100);
  --theme-bg-tooltip: var(--colors-gray-900);
  --theme-bg-avatar: var(--colors-gray-300);
  --theme-bg-scroll-track: var(--colors-gray-100);
  --theme-bg-input: var(--colors-white);
  --theme-bg-popover: var(--colors-white);
  --theme-bg-code: var(--colors-white);
  --theme-bg-constant-light: var(--colors-white);
  --theme-bg-constant-dark: var(--colors-black);
  --theme-bg-panel-info-primary: var(--colors-white);
  --theme-bg-panel-info-secondary: var(--colors-gray-100);
  --theme-bg-tag-default: var(--colors-gray-50);
  --theme-bg-tag-new: var(--colors-white);
  --theme-bg-app-header-default: var(--colors-white);
  --theme-bg-app-header-input: var(--theme-bg-canvas);
  --theme-bg-app-header-input-add: var(--colors-gray-50);
  --theme-bg-app-header-button-primary: var(--theme-bg-brand-default);
  --theme-bg-app-header-button-secondary: var(--colors-gray-50);
  --theme-bg-app-header-button-square: var(--theme-bg-canvas);
  --theme-bg-app-header-avatar: var(--theme-bg-brand-default);
  --theme-bg-app-header-dropdown: var(--theme-bg-canvas);
  --theme-bg-left-rail-default: var(--colors-purple-700);
  --theme-bg-left-rail-hover: rgba(255, 255, 255, 0.08);
  --theme-bg-left-rail-hover-bold: rgba(255, 255, 255, 0.16);
  --theme-bg-table-default: var(--theme-bg-secondary);
  --theme-bg-table-hover: var(--theme-bg-secondary);
  --theme-bg-table-select: var(--colors-gray-50);
  --theme-bg-table-info: var(--colors-purple-50);
  --theme-bg-table-header: var(--colors-gray-100);
  --theme-bg-table-header-hover: var(--colors-gray-200);
  --theme-bg-error-default: var(--colors-red-400);
  --theme-bg-error-hover: var(--colors-red-300);
  --theme-bg-error-active: var(--colors-red-500);
  --theme-bg-error-focus: rgba(234, 60, 75, 0.3);
  --theme-bg-error-minimal: var(--colors-red-100);
  --theme-bg-error-subtle: var(--colors-red-50);
  --theme-bg-error-disabled: var(--colors-gray-100);
  --theme-bg-error-secondary: var(--theme-bg-primary);
  --theme-bg-error-hover-secondary: var(--theme-bg-primary);
  --theme-bg-error-active-secondary: var(--theme-bg-primary);
  --theme-bg-error-focus-secondary: rgba(234, 60, 75, 0.3);
  --theme-bg-error-label: var(--colors-red-400);
  --theme-bg-warning-default: var(--colors-yellow-600);
  --theme-bg-warning-hover: var(--colors-yellow-300);
  --theme-bg-warning-active: var(--colors-yellow-600);
  --theme-bg-warning-focus: rgba(239, 183, 0, 0.3);
  --theme-bg-warning-minimal: var(--colors-yellow-100);
  --theme-bg-warning-subtle: var(--colors-yellow-50);
  --theme-bg-warning-disabled: var(--colors-gray-100);
  --theme-bg-success-default: var(--colors-green-500);
  --theme-bg-success-hover: var(--colors-green-400);
  --theme-bg-success-active: var(--colors-green-600);
  --theme-bg-success-focus: rgba(85, 188, 70, 0.3);
  --theme-bg-success-minimal: var(--colors-green-100);
  --theme-bg-success-subtle: var(--colors-green-50);
  --theme-bg-success-disabled: var(--colors-gray-100);
  --theme-bg-info-default: var(--colors-purple-500);
  --theme-bg-info-hover: var(--colors-purple-300);
  --theme-bg-info-active: var(--colors-purple-600);
  --theme-bg-info-focus: rgba(108, 96, 236, 0.3);
  --theme-bg-info-minimal: var(--colors-purple-100);
  --theme-bg-info-subtle: var(--colors-purple-50);
  --theme-bg-info-disabled: var(--colors-gray-100);
  --theme-bg-brand-default: var(--colors-purple-500);
  --theme-bg-brand-hover: var(--colors-purple-300);
  --theme-bg-brand-active: var(--colors-purple-600);
  --theme-bg-brand-focus: rgba(108, 96, 236, 0.16);
  --theme-bg-brand-minimal: var(--colors-purple-100);
  --theme-bg-brand-subtle: var(--colors-purple-50);
  --theme-bg-brand-disabled: var(--colors-gray-100);
  --theme-bg-brand-secondary: var(--theme-bg-primary);
  --theme-bg-brand-hover-secondary: var(--theme-bg-primary);
  --theme-bg-brand-active-secondary: var(--theme-bg-primary);
  --theme-bg-brand-focus-secondary: rgba(108, 96, 236, 0.16);
  --theme-bg-brand-label: var(--colors-purple-600);
  --theme-bg-dataviz-bg-select: var(--colors-purple-600);
  --theme-bg-dataviz-accent: var(--colors-purple-300);
  --theme-bg-dataviz-fg-accent: var(--colors-purple-700);
  --theme-bg-dataviz-disabled: var(--colors-gray-400);
  --theme-bg-dataviz-neutral: var(--colors-gray-200);
  --theme-bg-dataviz-brand-default: var(--theme-bg-brand-default);
  --theme-bg-dataviz-brand-hover: var(--theme-bg-brand-hover);
  --theme-bg-dataviz-brand-select: var(--theme-bg-brand-active);
  --theme-bg-dataviz-brand-faded: var(--colors-purple-200);
  --theme-bg-dataviz-brand-subtle: var(--colors-purple-100);
  --theme-bg-dataviz-brand-bold-default: var(--colors-purple-700);
  --theme-bg-dataviz-brand-bold-faded: rgba(53, 47, 145, 0.4);
  --theme-bg-dataviz-brand-accent-faded: var(--colors-purple-100);
  --theme-bg-dataviz-brand-accent-default: var(--colors-purple-300);
  --theme-bg-dataviz-brand-accent-hover: var(--theme-bg-brand-default);
  --theme-bg-dataviz-brand-accent-select: var(--theme-bg-brand-hover);
  --theme-bg-dataviz-brand-accent-rgba: var(--theme-bg-dataviz-brand-accent-default);
  --theme-bg-dataviz-brand-minimal-default: var(--colors-purple-200);
  --theme-bg-dataviz-brand-minimal-faded: rgba(187, 178, 239, 0.4);
  --theme-bg-dataviz-node-default: var(--colors-white);
  --theme-bg-dataviz-node-sequence: var(--colors-gray-400);
  --theme-bg-dataviz-node-hover: var(--colors-purple-200);
  --theme-bg-dataviz-node-select: var(--colors-purple-300);
  --theme-bg-dataviz-risk-high: var(--colors-red-300);
  --theme-bg-dataviz-risk-medium: var(--colors-orange-400);
  --theme-bg-dataviz-risk-low: var(--colors-yellow-400);
  --theme-bg-dataviz-risk-na: var(--colors-gray-400);
  --theme-bg-dataviz-detail-default: var(--theme-border-dataviz-linechart);
  --theme-bg-dataviz-detail-faded: var(--colors-gray-300);
  --theme-bg-dataviz-detail-selected: var(--theme-bg-brand-default);
  --theme-bg-mitre-skill-00: #E6E3F9;
  --theme-bg-mitre-skill-01: #E6E3F9;
  --theme-bg-mitre-skill-02: #D7D2F6;
  --theme-bg-mitre-skill-03: #CFC9F4;
  --theme-bg-mitre-skill-04: #C8C0F2;
  --theme-bg-mitre-skill-05: #C0B8F1;
  --theme-bg-mitre-skill-06: #B8AFEF;
  --theme-bg-mitre-skill-07: #B1A6ED;
  --theme-bg-mitre-skill-08: #A99DEB;
  --theme-bg-mitre-skill-09: #A295EA;
  --theme-bg-mitre-skill-10: #9A8CE8;
  --theme-bg-mitre-hover: rgba(0, 0, 0, 0.25);
  --theme-bg-mitre-hover-inverse: rgba(255, 255, 255, 0.25);
  --theme-bg-mitre-skill-footer: var(--colors-gray-100);
  --theme-bg-mitre-header: var(--theme-bg-canvas);
  --theme-bg-mitre-subtechnique: var(--colors-white);
  --theme-bg-mitre-subtechnique-hover: var(--colors-gray-50);
  --theme-bg-accent-default: var(--colors-purple-500);
  --theme-bg-accent-hover: var(--colors-purple-300);
  --theme-bg-accent-active: var(--colors-purple-600);
  --theme-bg-accent-focus: rgba(108, 96, 236, 0.16);
  --theme-bg-accent-disabled: var(--colors-gray-200);
  --theme-character-primary: var(--colors-black);
  --theme-character-title: rgba(0, 0, 0, 0.85);
  --theme-character-primary65: rgba(0, 0, 0, 0.65);
  --theme-character-secondary: rgba(0, 0, 0, 0.45);
  --theme-character-disabled: rgba(0, 0, 0, 0.25);
  --theme-character-avatar: var(--colors-white);
  --theme-character-inverse: var(--colors-white);
  --theme-character-low: var(--colors-yellow-500);
  --theme-character-button-primary: var(--colors-white);
  --theme-character-logo: var(--theme-character-title);
  --theme-character-cta-button: var(--colors-white);
  --theme-character-checkbox: var(--theme-bg-constant-light);
  --theme-character-button-secondary: rgba(0, 0, 0, 0.85);
  --theme-character-alert: var(--theme-character-title);
  --theme-character-constant-light: var(--colors-white);
  --theme-character-constant-dark: var(--colors-black);
  --theme-character-table-header: var(--theme-character-title);
  --theme-character-table-primary: var(--theme-character-primary65);
  --theme-character-table-secondary: var(--theme-character-primary65);
  --theme-character-table-filter: var(--theme-character-disabled);
  --theme-character-table-filter-select: var(--theme-bg-brand-default);
  --theme-character-table-sort: var(--theme-character-disabled);
  --theme-character-table-sort-select: var(--theme-bg-brand-default);
  --theme-character-table-header-select: var(--theme-bg-brand-default);
  --theme-character-app-header-primary: var(--theme-character-secondary);
  --theme-character-app-header-secondary: var(--colors-gray-300);
  --theme-character-app-header-avatar: var(--colors-white);
  --theme-character-app-header-button-primary: var(--colors-white);
  --theme-character-app-header-button-secondary: var(--theme-character-secondary);
  --theme-character-app-header-button-square: var(--theme-character-secondary);
  --theme-character-app-header-dropdown: var(--theme-character-secondary);
  --theme-character-left-rail-primary: var(--colors-white);
  --theme-character-left-rail-secondary: rgba(255, 255, 255, 0.85);
  --theme-character-left-rail-logo: var(--theme-character-left-rail-primary);
  --theme-character-left-rail-disabled: rgba(255, 255, 255, 0.45);
  --theme-character-left-rail-disabled-select: rgba(255, 255, 255, 0.45);
  --theme-character-error-default: var(--colors-red-400);
  --theme-character-error-hover: var(--colors-red-300);
  --theme-character-error-active: var(--colors-red-400);
  --theme-character-error-focus: var(--colors-red-300);
  --theme-character-error-disabled: var(--theme-character-disabled);
  --theme-character-error-primary: var(--colors-white);
  --theme-character-warning-default: var(--colors-yellow-500);
  --theme-character-warning-hover: var(--colors-yellow-300);
  --theme-character-warning-active: var(--colors-yellow-400);
  --theme-character-warning-focus: var(--theme-bg-warning-default);
  --theme-character-warning-disabled: var(--theme-character-disabled);
  --theme-character-success-default: var(--colors-green-500);
  --theme-character-success-hover: var(--colors-green-300);
  --theme-character-success-active: var(--colors-green-400);
  --theme-character-success-focus: var(--theme-bg-success-default);
  --theme-character-success-disabled: var(--theme-character-disabled);
  --theme-character-brand-text: var(--colors-purple-600);
  --theme-character-brand-text-bold: var(--colors-purple-700);
  --theme-character-brand-default: var(--theme-bg-brand-default);
  --theme-character-brand-hover: var(--colors-purple-300);
  --theme-character-brand-active: var(--colors-purple-600);
  --theme-character-brand-focus: var(--colors-purple-400);
  --theme-character-brand-disabled: var(--theme-character-disabled);
  --theme-character-brand-primary: var(--colors-white);
  --theme-character-brand-secondary: var(--theme-character-title);
  --theme-character-info-default: var(--colors-purple-500);
  --theme-character-info-hover: var(--colors-purple-300);
  --theme-character-info-active: var(--colors-purple-300);
  --theme-character-info-focus: var(--theme-bg-brand-default);
  --theme-character-info-disabled: var(--theme-character-disabled);
  --theme-character-risk-high: var(--colors-red-500);
  --theme-character-risk-medium: var(--colors-orange-500);
  --theme-character-risk-low: var(--colors-yellow-500);
  --theme-character-code-default: var(--colors-purple-600);
  --theme-character-code-syntax: var(--colors-gray-700);
  --theme-character-code-polymorphic: var(--colors-purple-600);
  --theme-character-code-function: var(--colors-purple-600);
  --theme-character-code-builtin: var(--colors-purple-600);
  --theme-character-code-column: var(--colors-teal-700);
  --theme-character-code-boolean: var(--colors-yellow-800);
  --theme-character-code-datetime: var(--colors-yellow-800);
  --theme-character-code-number: var(--colors-yellow-800);
  --theme-character-code-regex: var(--colors-red-700);
  --theme-character-code-string: var(--colors-red-700);
  --theme-character-code-uuid: var(--colors-red-700);
  --theme-character-code-ipaddress: var(--colors-red-700);
  --theme-character-code-macaddress: var(--colors-red-700);
  --theme-character-code-comment: var(--colors-gray-400);
  --theme-character-code-keyword: var(--colors-black);
  --theme-character-code-link: var(--colors-purple-300);
  --theme-character-link-primary: var(--colors-purple-700);
  --theme-character-link-secondary: var(--theme-character-primary65);
  --theme-character-link-hover: var(--colors-purple-300);
  --theme-character-link-active: var(--colors-purple-500);
  --theme-character-link-disabled: var(--theme-character-disabled);
  --theme-character-link-dangerous: var(--theme-bg-error-default);
  --theme-character-link-hover-dangerous: var(--theme-character-error-hover);
  --theme-character-link-active-dangerous: var(--theme-character-error-active);
  --theme-character-mitre-primary: var(--theme-character-primary);
  --theme-character-mitre-link: var(--colors-purple-800);
  --theme-character-mitre-link-active: var(--theme-character-link-active);
  --theme-character-mitre-link-hover: var(--theme-character-link-hover);
  --theme-character-mitre-disabled: var(--theme-character-disabled);
  --theme-character-mitre-header: var(--theme-character-title);
  --theme-character-mitre-header-secondary: var(--theme-character-title);
  --theme-character-mitre-secondary: var(--theme-character-title);
  --theme-character-mitre-tertiary: var(--theme-character-secondary);
  --theme-character-dataviz-node: var(--theme-bg-brand-default);
  --theme-character-dataviz-node-infected: var(--theme-bg-error-default);
  --theme-character-dataviz-sequence: var(--colors-white);
  --theme-character-dataviz-sequence-infected: var(--colors-white);
  --theme-character-dataviz-sequence-hover: var(--colors-white);
  --theme-character-dataviz-sequence-infected-hover: var(--colors-white);
  --theme-character-dataviz-brand-contrast-faded: rgba(53, 47, 145, 0.5);
  --theme-character-dataviz-brand-contrast: var(--colors-purple-700);
  --theme-character-dataviz-brand-accent-faded: var(--theme-bg-dataviz-brand-accent-faded);
  --theme-border-divider: var(--colors-gray-200);
  --theme-border-tag: var(--colors-gray-200);
  --theme-border-tag-default: var(--colors-gray-950);
  --theme-border-tag-new: var(--colors-gray-500);
  --theme-border-primary: var(--colors-gray-200);
  --theme-border-dataviz-brand: var(--colors-purple-300);
  --theme-border-dataviz-primary: var(--colors-gray-200);
  --theme-border-dataviz-grid: var(--colors-gray-300);
  --theme-border-dataviz-grid-bold: var(--colors-gray-500);
  --theme-border-dataviz-grid-subtle: var(--theme-character-disabled);
  --theme-border-dataviz-grid-attackmap: var(--colors-purple-50);
  --theme-border-dataviz-node: var(--colors-gray-300);
  --theme-border-dataviz-node-select: var(--theme-bg-brand-default);
  --theme-border-dataviz-sequence: var(--colors-gray-600);
  --theme-border-dataviz-default: var(--colors-gray-400);
  --theme-border-dataviz-default-faded: var(--colors-white);
  --theme-border-dataviz-linechart: var(--theme-border-dataviz-grid-bold);
  --theme-border-app-header-input: var(--colors-gray-200);
  --theme-border-app-header-input-add: var(--colors-gray-200);
  --theme-border-app-header-button-primary: var(--theme-bg-app-header-avatar);
  --theme-border-app-header-button-secondary: var(--colors-gray-200);
  --theme-border-app-header-avatar: var(--theme-bg-app-header-avatar);
  --theme-border-app-header-button-square: var(--colors-gray-200);
  --theme-border-app-header-button-dropdown: var(--colors-gray-200);
  --theme-border-left-rail-default: var(--colors-black);
  --theme-border-left-rail-hover: var(--theme-bg-primary);
  --theme-border-left-rail-hover-bold: var(--theme-bg-tertiary);
  --theme-border-error-default: var(--theme-bg-error-default);
  --theme-border-error-hover: var(--theme-bg-error-hover);
  --theme-border-error-active: var(--theme-bg-error-active);
  --theme-border-error-focus: var(--colors-red-300);
  --theme-border-error-minimal: var(--theme-bg-error-minimal);
  --theme-border-error-subtle: var(--theme-bg-error-subtle);
  --theme-border-error-disabled: var(--theme-border-primary);
  --theme-border-error-secondary: var(--theme-border-primary);
  --theme-border-error-hover-secondary: var(--theme-border-error-hover);
  --theme-border-error-active-secondary: var(--theme-border-error-active);
  --theme-border-error-focus-secondary: var(--theme-bg-error-focus-secondary);
  --theme-border-warning-default: var(--theme-bg-warning-default);
  --theme-border-warning-hover: var(--theme-bg-warning-hover);
  --theme-border-warning-active: var(--theme-bg-warning-active);
  --theme-border-warning-focus: var(--theme-bg-warning-default);
  --theme-border-warning-minimal: var(--colors-yellow-300);
  --theme-border-warning-subtle: var(--theme-bg-warning-subtle);
  --theme-border-warning-disabled: var(--theme-border-primary);
  --theme-border-success-default: var(--theme-bg-success-default);
  --theme-border-success-hover: var(--theme-bg-success-hover);
  --theme-border-success-active: var(--theme-bg-success-active);
  --theme-border-success-focus: var(--theme-bg-success-default);
  --theme-border-success-minimal: var(--colors-green-300);
  --theme-border-success-subtle: var(--theme-bg-success-subtle);
  --theme-border-success-disabled: var(--theme-border-primary);
  --theme-border-info-default: var(--colors-purple-500);
  --theme-border-info-hover: var(--colors-purple-300);
  --theme-border-info-active: var(--colors-purple-600);
  --theme-border-info-focus: var(--theme-bg-info-default);
  --theme-border-info-minimal: var(--colors-purple-200);
  --theme-border-info-subtle: var(--theme-bg-info-subtle);
  --theme-border-info-disabled: var(--theme-border-primary);
  --theme-border-brand-default: var(--theme-bg-brand-default);
  --theme-border-brand-hover: var(--theme-bg-brand-hover);
  --theme-border-brand-active: var(--theme-bg-brand-active);
  --theme-border-brand-focus: var(--theme-bg-brand-hover);
  --theme-border-brand-minimal: var(--theme-bg-brand-minimal);
  --theme-border-brand-subtle: var(--theme-bg-brand-subtle);
  --theme-border-brand-disabled: var(--theme-border-primary);
  --theme-border-brand-secondary: var(--theme-border-primary);
  --theme-border-brand-hover-secondary: var(--theme-bg-brand-hover);
  --theme-border-brand-active-secondary: var(--theme-bg-brand-active);
  --theme-border-brand-focus-secondary: var(--theme-bg-brand-hover);
  --theme-border-mitre-default: var(--colors-gray-400);
  --theme-border-mitre-select: var(--colors-purple-600);
  --theme-border-table-header: rgba(0, 0, 0, 0.08);
  --theme-border-table-header-select: var(--theme-border-table-header);
  --theme-border-table-divider: rgba(0, 0, 0, 0.08);
  --dropshadow-0-15: 0 2px 8px 0 #00000026;
  --dropshadow-0-12-0-8-0-5: 0 9px 28px 8px #0000000d, 0 6px 16px 0 #00000014, 0 3px 6px -4px #0000001f;
  --dropshadow-0-15-yOffset6: 0 6px 8px 0 #00000026;
  --dropshadow-active-2px-spread: 0 0 0 2px var(--theme-bg-brand-focus);
  --dropshadow-button-primary: 0 2px 0 0 #0000000a;
  --dropshadow-button-secondary: 0 2px 0 0 #00000005;
  --dropshadow-table-hover: 0 0 16px 0 rgba(0, 0, 0, 0.25);
  --dropshadow-info-panel: 0 2px 20px 0 #00000026;
  --borderdivider-divider-down: 0 -1px 0 0 #f0f0f0;
  --borderdivider-divider-up: 0 1px 0 0 #f0f0f0;
  --borderdivider-divider-right: -1px 0 0 0 #f0f0f0;
  --borderdivider-border-left-up-right-1px: 1px 0 0 0 #f0f0f0, 0 1px 0 0 #f0f0f0, -1px 0 0 0 #f0f0f0;
  --borderdivider-border-up-down-right: 0 -1px 0 0 #d9d9d9, 0 1px 0 0 #d9d9d9, -1px 0 0 0 #d9d9d9;
  --borderdivider-border-left-up-down: 0 -1px 0 0 #d9d9d9, 0 1px 0 0 #d9d9d9, 1px 0 0 0 #d9d9d9;
  --borderdivider-border-up-down-0-5px: 0 0.5px 0 0 #f0f0f0, 0 -0.5px 0 0 #f0f0f0;
  --borderdivider-outer-border-1px: 0 0 0 1px #fff;
  --ink-theme-right-2px: -2px 0 0 0 #6c60ec;
  --ink-theme-up-2px: 0 2px 0 0 #6c60ec;
  --ink-theme-right-3px: -3px 0 0 0 #6c60ec;
  --ink-theme-left-up-down-right-1px: 0 -1px 0 0 #6c60ec, 0 1px 0 0 #6c60ec, -1px 0 0 0 #6c60ec, -1px 0 0 0 #6c60ec;
  --ink-f0f0f0-left-2px: 2px 0 0 0 #f0f0f0;
  --ink-theme-left-2px: 2px 0 0 0 #9a8ce8;
}

.panda-theme-light-cv {
  --theme-bg-canvas: var(--colors-CVbase-2);
  --theme-bg-primary: var(--colors-white);
  --theme-bg-secondary: var(--colors-white);
  --theme-bg-secondary-default: var(--colors-purple-500);
  --theme-bg-secondary-hover: var(--colors-purple-600);
  --theme-bg-secondary-active: var(--colors-purple-300);
  --theme-bg-secondary-focus: rgba(56, 117, 204, 0.3);
  --theme-bg-secondary-minimal: var(--colors-purple-800);
  --theme-bg-secondary-subtle: var(--colors-purple-900);
  --theme-bg-secondary-disabled: var(--colors-gray-900);
  --theme-bg-tertiary: var(--colors-gray-300);
  --theme-bg-moderate: var(--colors-gray-200);
  --theme-bg-moderate-tag: var(--colors-gray-950);
  --theme-bg-moderate-new-tag: var(--colors-gray-500);
  --theme-bg-overlay: rgba(0, 0, 0, 0.15);
  --theme-bg-disabled: var(--colors-CVbase-1);
  --theme-bg-inverse: var(--colors-white);
  --theme-bg-input: var(--colors-white);
  --theme-bg-modal: var(--colors-white);
  --theme-bg-code: var(--colors-white);
  --theme-bg-popover: var(--colors-white);
  --theme-bg-item-hover: var(--colors-CVbase-2);
  --theme-bg-item-selected: var(--colors-CVblue-1);
  --theme-bg-scroll: var(--colors-CVbase-4);
  --theme-bg-scroll-track: var(--colors-CVbase-2);
  --theme-bg-tooltip: var(--colors-CVbase-8);
  --theme-bg-avatar: var(--colors-CVbase-6);
  --theme-bg-constant-light: var(--colors-white);
  --theme-bg-constant-dark: var(--colors-black);
  --theme-bg-panel-info-primary: var(--colors-white);
  --theme-bg-panel-info-secondary: var(--colors-CVbase-2);
  --theme-bg-tag-default: var(--colors-CVbase-2);
  --theme-bg-tag-new: var(--colors-gray-50);
  --theme-bg-app-header-default: var(--colors-white);
  --theme-bg-app-header-input: var(--colors-white);
  --theme-bg-app-header-input-add: var(--colors-white);
  --theme-bg-app-header-button-primary: var(--theme-bg-brand-default);
  --theme-bg-app-header-button-secondary: var(--colors-CVblue-1);
  --theme-bg-app-header-button-square: var(--colors-white);
  --theme-bg-app-header-avatar: var(--theme-bg-brand-default);
  --theme-bg-app-header-dropdown: var(--colors-white);
  --theme-bg-left-rail-default: var(--colors-CVblue-8);
  --theme-bg-left-rail-hover: rgba(22, 50, 91, 0.2);
  --theme-bg-left-rail-hover-bold: var(--colors-CVblue-9);
  --theme-bg-table-default: var(--theme-bg-secondary);
  --theme-bg-table-hover: var(--colors-CVbase-2);
  --theme-bg-table-select: #F3F6FB;
  --theme-bg-table-info: var(--colors-CVblue-2);
  --theme-bg-table-header: var(--colors-CVbase-2);
  --theme-bg-table-header-hover: var(--colors-CVbase-4);
  --theme-bg-error-default: var(--colors-red-400);
  --theme-bg-error-hover: var(--colors-red-500);
  --theme-bg-error-active: var(--colors-red-600);
  --theme-bg-error-focus: var(--colors-CVblue-4);
  --theme-bg-error-minimal: var(--colors-red-100);
  --theme-bg-error-subtle: var(--colors-red-50);
  --theme-bg-error-disabled: var(--colors-CVbase-3);
  --theme-bg-error-secondary: var(--colors-red-50);
  --theme-bg-error-hover-secondary: var(--colors-red-100);
  --theme-bg-error-active-secondary: var(--colors-red-200);
  --theme-bg-error-focus-secondary: var(--colors-CVblue-4);
  --theme-bg-error-label: var(--colors-red-400);
  --theme-bg-warning-default: var(--colors-yellow-600);
  --theme-bg-warning-hover: var(--colors-yellow-300);
  --theme-bg-warning-active: var(--colors-yellow-600);
  --theme-bg-warning-focus: rgba(239, 183, 0, 0.3);
  --theme-bg-warning-minimal: var(--colors-yellow-100);
  --theme-bg-warning-subtle: var(--colors-yellow-50);
  --theme-bg-warning-disabled: var(--theme-bg-error-disabled);
  --theme-bg-success-default: var(--colors-green-500);
  --theme-bg-success-hover: var(--colors-green-400);
  --theme-bg-success-active: var(--colors-green-600);
  --theme-bg-success-focus: rgba(85, 188, 70, 0.3);
  --theme-bg-success-minimal: var(--colors-green-100);
  --theme-bg-success-subtle: var(--colors-green-50);
  --theme-bg-success-disabled: var(--theme-bg-error-disabled);
  --theme-bg-info-default: var(--colors-CVblue-6);
  --theme-bg-info-hover: var(--colors-CVblue-7);
  --theme-bg-info-active: var(--colors-CVblue-8);
  --theme-bg-info-focus: rgba(56, 117, 204, 0.3);
  --theme-bg-info-minimal: var(--colors-CVblue-3);
  --theme-bg-info-subtle: var(--colors-CVblue-1);
  --theme-bg-info-disabled: var(--theme-bg-error-disabled);
  --theme-bg-brand-default: var(--colors-CVblue-6);
  --theme-bg-brand-hover: var(--colors-CVblue-7);
  --theme-bg-brand-active: var(--colors-CVblue-8);
  --theme-bg-brand-focus: var(--colors-CVblue-4);
  --theme-bg-brand-minimal: var(--colors-CVblue-2);
  --theme-bg-brand-subtle: var(--colors-CVblue-1);
  --theme-bg-brand-disabled: var(--theme-bg-error-disabled);
  --theme-bg-brand-secondary: var(--colors-CVblue-1);
  --theme-bg-brand-hover-secondary: var(--colors-CVblue-2);
  --theme-bg-brand-active-secondary: var(--colors-CVblue-3);
  --theme-bg-brand-focus-secondary: var(--colors-CVblue-4);
  --theme-bg-brand-label: var(--colors-CVblue-7);
  --theme-bg-dataviz-bg-select: var(--colors-purple-600);
  --theme-bg-dataviz-accent: var(--colors-purple-300);
  --theme-bg-dataviz-fg-accent: var(--colors-purple-700);
  --theme-bg-dataviz-disabled: var(--colors-gray-400);
  --theme-bg-dataviz-neutral: var(--colors-CVbase-4);
  --theme-bg-dataviz-brand-default: var(--theme-bg-brand-default);
  --theme-bg-dataviz-brand-hover: var(--theme-bg-brand-hover);
  --theme-bg-dataviz-brand-faded: var(--colors-CVblue-2);
  --theme-bg-dataviz-brand-subtle: var(--theme-bg-brand-subtle);
  --theme-bg-dataviz-brand-select: var(--theme-bg-brand-active);
  --theme-bg-dataviz-brand-bold-default: var(--theme-bg-brand-active);
  --theme-bg-dataviz-brand-bold-faded: rgba(39, 86, 155, 0.4);
  --theme-bg-dataviz-brand-accent-faded: var(--colors-CVblue-2);
  --theme-bg-dataviz-brand-accent-default: var(--colors-CVblue-4);
  --theme-bg-dataviz-brand-accent-hover: var(--theme-bg-brand-default);
  --theme-bg-dataviz-brand-accent-select: var(--theme-bg-brand-hover);
  --theme-bg-dataviz-brand-minimal-default: var(--theme-bg-brand-minimal);
  --theme-bg-dataviz-brand-minimal-faded: rgba(204, 218, 242, 0.4);
  --theme-bg-dataviz-node-default: var(--colors-white);
  --theme-bg-dataviz-node-sequence: var(--colors-CVbase-6);
  --theme-bg-dataviz-node-hover: var(--colors-CVblue-2);
  --theme-bg-dataviz-node-select: var(--colors-CVblue-4);
  --theme-bg-dataviz-risk-high: var(--colors-red-300);
  --theme-bg-dataviz-risk-medium: var(--colors-orange-400);
  --theme-bg-dataviz-risk-low: var(--colors-yellow-400);
  --theme-bg-dataviz-risk-na: var(--colors-CVbase-5);
  --theme-bg-dataviz-detail-default: var(--theme-border-dataviz-linechart);
  --theme-bg-dataviz-detail-faded: var(--colors-CVbase-5);
  --theme-bg-dataviz-detail-selected: var(--theme-bg-brand-default);
  --theme-bg-mitre-skill-00: var(--colors-CVblue-1);
  --theme-bg-mitre-skill-01: #DDE6F5;
  --theme-bg-mitre-skill-02: #D3E0F3;
  --theme-bg-mitre-skill-03: #C9D9F1;
  --theme-bg-mitre-skill-04: #BFD3EF;
  --theme-bg-mitre-skill-05: #B5CCED;
  --theme-bg-mitre-skill-06: #ABC5EA;
  --theme-bg-mitre-skill-07: #A1BFE8;
  --theme-bg-mitre-skill-08: #97B8E6;
  --theme-bg-mitre-skill-09: #8DB2E4;
  --theme-bg-mitre-skill-10: #83ABE2;
  --theme-bg-mitre-hover: rgba(0, 0, 0, 0.25);
  --theme-bg-mitre-hover-inverse: rgba(255, 255, 255, 0.25);
  --theme-bg-mitre-skill-footer: var(--colors-white);
  --theme-bg-mitre-header: var(--colors-CVblue-8);
  --theme-bg-mitre-subtechnique: var(--colors-white);
  --theme-bg-mitre-subtechnique-hover: var(--colors-CVbase-1);
  --theme-bg-accent-default: var(--colors-CVblue-1);
  --theme-bg-accent-hover: var(--colors-CVblue-2);
  --theme-bg-accent-active: var(--colors-CVblue-3);
  --theme-bg-accent-focus: rgba(56, 117, 204, 0.16);
  --theme-bg-accent-disabled: var(--colors-CVbase-3);
  --theme-character-primary: var(--colors-black);
  --theme-character-title: var(--colors-CVbase-8);
  --theme-character-primary65: var(--colors-CVbase-7);
  --theme-character-secondary: var(--colors-CVbase-6);
  --theme-character-disabled: var(--colors-CVbase-5);
  --theme-character-inverse: var(--colors-white);
  --theme-character-low: var(--colors-yellow-500);
  --theme-character-button-primary: var(--colors-white);
  --theme-character-logo: var(--theme-character-title);
  --theme-character-avatar: var(--colors-white);
  --theme-character-cta-button: var(--colors-white);
  --theme-character-checkbox: var(--theme-bg-constant-light);
  --theme-character-button-secondary: rgba(0, 0, 0, 0.85);
  --theme-character-alert: var(--theme-character-title);
  --theme-character-constant-light: var(--colors-white);
  --theme-character-constant-dark: var(--colors-black);
  --theme-character-table-header: var(--colors-CVbase-8);
  --theme-character-table-primary: var(--colors-CVbase-7);
  --theme-character-table-secondary: var(--colors-CVbase-7);
  --theme-character-table-filter: var(--colors-CVbase-6);
  --theme-character-table-filter-select: var(--theme-bg-brand-default);
  --theme-character-table-sort: var(--colors-CVbase-5);
  --theme-character-table-sort-select: var(--theme-bg-brand-default);
  --theme-character-table-header-select: var(--theme-bg-brand-default);
  --theme-character-app-header-primary: var(--colors-CVbase-5);
  --theme-character-app-header-secondary: var(--colors-CVbase-6);
  --theme-character-app-header-avatar: var(--colors-white);
  --theme-character-app-header-button-primary: var(--colors-white);
  --theme-character-app-header-button-secondary: var(--colors-CVblue-7);
  --theme-character-app-header-button-square: var(--colors-CVblue-7);
  --theme-character-app-header-dropdown: var(--colors-CVblue-7);
  --theme-character-left-rail-primary: var(--colors-white);
  --theme-character-left-rail-secondary: rgba(255, 255, 255, 0.85);
  --theme-character-left-rail-logo: var(--theme-character-left-rail-primary);
  --theme-character-left-rail-disabled: rgba(255, 255, 255, 0.45);
  --theme-character-left-rail-disabled-select: rgba(255, 255, 255, 0.45);
  --theme-character-error-default: var(--colors-red-400);
  --theme-character-error-hover: var(--colors-red-500);
  --theme-character-error-active: var(--colors-red-600);
  --theme-character-error-focus: var(--theme-character-error-hover);
  --theme-character-error-disabled: var(--colors-CVbase-6);
  --theme-character-error-primary: var(--colors-white);
  --theme-character-warning-default: var(--colors-yellow-500);
  --theme-character-warning-hover: var(--colors-yellow-300);
  --theme-character-warning-active: var(--colors-yellow-400);
  --theme-character-warning-focus: var(--theme-bg-warning-default);
  --theme-character-warning-disabled: var(--colors-CVbase-6);
  --theme-character-success-default: var(--colors-green-500);
  --theme-character-success-hover: var(--colors-green-300);
  --theme-character-success-active: var(--colors-green-400);
  --theme-character-success-focus: var(--theme-bg-success-default);
  --theme-character-success-disabled: var(--colors-CVbase-6);
  --theme-character-brand-text: var(--colors-CVblue-6);
  --theme-character-brand-text-bold: var(--colors-CVblue-7);
  --theme-character-brand-default: var(--theme-character-brand-text);
  --theme-character-brand-hover: var(--colors-CVblue-7);
  --theme-character-brand-active: var(--colors-CVblue-8);
  --theme-character-brand-focus: var(--colors-CVblue-9);
  --theme-character-brand-disabled: var(--colors-CVbase-6);
  --theme-character-brand-primary: var(--colors-white);
  --theme-character-brand-secondary: var(--colors-CVblue-7);
  --theme-character-info-default: var(--colors-CVblue-7);
  --theme-character-info-hover: var(--colors-CVblue-5);
  --theme-character-info-active: var(--colors-CVblue-6);
  --theme-character-info-focus: var(--colors-CVblue-4);
  --theme-character-info-disabled: var(--colors-CVbase-6);
  --theme-character-risk-high: var(--colors-red-500);
  --theme-character-risk-medium: var(--colors-orange-500);
  --theme-character-risk-low: var(--colors-yellow-500);
  --theme-character-code-default: var(--colors-purple-600);
  --theme-character-code-syntax: var(--colors-gray-700);
  --theme-character-code-polymorphic: var(--colors-purple-600);
  --theme-character-code-function: var(--colors-purple-600);
  --theme-character-code-builtin: var(--colors-purple-600);
  --theme-character-code-column: var(--colors-teal-700);
  --theme-character-code-boolean: var(--colors-yellow-800);
  --theme-character-code-datetime: var(--colors-yellow-800);
  --theme-character-code-number: var(--colors-yellow-800);
  --theme-character-code-regex: var(--colors-red-700);
  --theme-character-code-string: var(--colors-red-700);
  --theme-character-code-uuid: var(--colors-red-700);
  --theme-character-code-ipaddress: var(--colors-red-700);
  --theme-character-code-macaddress: var(--colors-red-700);
  --theme-character-code-comment: var(--colors-gray-400);
  --theme-character-code-keyword: var(--colors-black);
  --theme-character-code-link: var(--colors-purple-300);
  --theme-character-link-primary: var(--colors-CVblue-6);
  --theme-character-link-secondary: var(--theme-character-primary65);
  --theme-character-link-hover: var(--colors-CVblue-7);
  --theme-character-link-active: var(--colors-CVblue-8);
  --theme-character-link-disabled: var(--colors-CVbase-5);
  --theme-character-link-dangerous: var(--theme-bg-error-default);
  --theme-character-link-hover-dangerous: var(--theme-character-error-hover);
  --theme-character-link-active-dangerous: var(--theme-character-error-active);
  --theme-character-mitre-primary: var(--colors-black);
  --theme-character-mitre-secondary: var(--theme-character-title);
  --theme-character-mitre-tertiary: var(--theme-character-secondary);
  --theme-character-mitre-link: var(--colors-CVblue-9);
  --theme-character-mitre-link-hover: var(--colors-CVblue-10);
  --theme-character-mitre-link-active: var(--colors-CVblue-8);
  --theme-character-mitre-disabled: var(--theme-character-disabled);
  --theme-character-mitre-header: var(--colors-white);
  --theme-character-mitre-header-secondary: var(--colors-CVblue-1);
  --theme-character-dataviz-node: var(--theme-bg-brand-default);
  --theme-character-dataviz-node-infected: var(--theme-bg-error-default);
  --theme-character-dataviz-sequence: var(--colors-white);
  --theme-character-dataviz-sequence-infected: var(--colors-white);
  --theme-character-dataviz-sequence-hover: var(--colors-white);
  --theme-character-dataviz-sequence-infected-hover: var(--colors-white);
  --theme-character-dataviz-brand-contrast: var(--colors-CVblue-8);
  --theme-character-dataviz-brand-contrast-faded: rgba(39, 86, 155, 0.5);
  --theme-character-dataviz-brand-accent-faded: var(--theme-bg-dataviz-brand-accent-faded);
  --theme-border-primary: var(--colors-CVbase-4);
  --theme-border-divider: var(--colors-CVbase-4);
  --theme-border-tag: var(--colors-CVbase-3);
  --theme-border-tag-default: var(--colors-gray-950);
  --theme-border-tag-new: var(--colors-gray-500);
  --theme-border-dataviz-brand: var(--theme-bg-brand-default);
  --theme-border-dataviz-primary: var(--colors-CVbase-3);
  --theme-border-dataviz-grid: var(--colors-CVbase-3);
  --theme-border-dataviz-grid-bold: var(--colors-CVbase-6);
  --theme-border-dataviz-grid-subtle: rgba(187, 187, 190, 0.0);
  --theme-border-dataviz-grid-attackmap: var(--colors-CVbase-3);
  --theme-border-dataviz-node: var(--colors-CVbase-5);
  --theme-border-dataviz-node-select: var(--colors-CVblue-6);
  --theme-border-dataviz-sequence: var(--colors-CVbase-6);
  --theme-border-dataviz-default: var(--colors-CVbase-5);
  --theme-border-dataviz-default-faded: var(--colors-white);
  --theme-border-dataviz-linechart: var(--theme-border-dataviz-grid-bold);
  --theme-border-app-header-input: var(--colors-CVbase-4);
  --theme-border-app-header-input-add: rgba(217, 217, 220, 0.0);
  --theme-border-app-header-button-primary: var(--theme-bg-app-header-avatar);
  --theme-border-app-header-button-secondary: rgba(217, 217, 220, 0.0);
  --theme-border-app-header-avatar: var(--theme-bg-app-header-avatar);
  --theme-border-app-header-button-square: rgba(217, 217, 220, 0.0);
  --theme-border-app-header-button-dropdown: rgba(217, 217, 220, 0.0);
  --theme-border-left-rail-default: var(--colors-black);
  --theme-border-left-rail-hover: var(--theme-bg-primary);
  --theme-border-left-rail-hover-bold: var(--theme-bg-tertiary);
  --theme-border-table-header-select: var(--theme-border-table-header);
  --theme-border-table-header: var(--theme-bg-table-header);
  --theme-border-table-divider: var(--colors-CVbase-4);
  --theme-border-error-default: var(--theme-bg-error-default);
  --theme-border-error-hover: var(--theme-bg-error-hover);
  --theme-border-error-active: var(--theme-bg-error-active);
  --theme-border-error-focus: var(--colors-white);
  --theme-border-error-minimal: var(--theme-bg-error-minimal);
  --theme-border-error-subtle: var(--theme-bg-error-subtle);
  --theme-border-error-disabled: var(--theme-bg-brand-disabled);
  --theme-border-error-secondary: var(--theme-bg-error-secondary);
  --theme-border-error-hover-secondary: var(--theme-bg-error-hover-secondary);
  --theme-border-error-active-secondary: var(--theme-bg-error-active-secondary);
  --theme-border-error-focus-secondary: var(--theme-bg-error-focus-secondary);
  --theme-border-warning-default: var(--theme-bg-warning-default);
  --theme-border-warning-hover: var(--theme-bg-warning-hover);
  --theme-border-warning-active: var(--theme-bg-warning-active);
  --theme-border-warning-focus: var(--theme-bg-warning-default);
  --theme-border-warning-minimal: var(--colors-yellow-200);
  --theme-border-warning-subtle: var(--theme-bg-warning-subtle);
  --theme-border-warning-disabled: var(--theme-border-error-disabled);
  --theme-border-success-default: var(--theme-bg-success-default);
  --theme-border-success-hover: var(--theme-bg-success-hover);
  --theme-border-success-active: var(--theme-bg-success-active);
  --theme-border-success-focus: var(--theme-bg-success-default);
  --theme-border-success-minimal: var(--colors-green-200);
  --theme-border-success-subtle: var(--theme-bg-success-subtle);
  --theme-border-success-disabled: var(--theme-border-error-disabled);
  --theme-border-info-default: var(--theme-bg-info-default);
  --theme-border-info-hover: var(--theme-bg-info-hover);
  --theme-border-info-active: var(--theme-bg-info-active);
  --theme-border-info-focus: var(--theme-bg-info-default);
  --theme-border-info-minimal: var(--colors-CVblue-3);
  --theme-border-info-subtle: var(--theme-bg-info-subtle);
  --theme-border-info-disabled: var(--theme-border-error-disabled);
  --theme-border-brand-default: var(--theme-bg-brand-default);
  --theme-border-brand-hover: var(--theme-bg-brand-hover);
  --theme-border-brand-active: var(--theme-bg-brand-active);
  --theme-border-brand-focus: var(--colors-white);
  --theme-border-brand-minimal: var(--theme-bg-brand-minimal);
  --theme-border-brand-subtle: var(--theme-bg-brand-subtle);
  --theme-border-brand-disabled: var(--theme-bg-brand-disabled);
  --theme-border-brand-secondary: var(--theme-bg-brand-secondary);
  --theme-border-brand-hover-secondary: var(--theme-bg-brand-hover-secondary);
  --theme-border-brand-active-secondary: var(--theme-bg-brand-active-secondary);
  --theme-border-brand-focus-secondary: var(--colors-white);
  --theme-border-mitre-default: var(--theme-border-primary);
  --theme-border-mitre-select: var(--colors-CVblue-6);
  --dropshadow-0-15: 0 2px 8px 0 #00000026;
  --dropshadow-0-12-0-8-0-5: 0 9px 28px 8px #0000000d, 0 6px 16px 0 #00000014, 0 3px 6px -4px #0000001f;
  --dropshadow-0-15-yOffset6: 0 6px 8px 0 #00000026;
  --dropshadow-active-2px-spread: 0 0 0 2px var(--theme-bg-brand-focus);
  --dropshadow-button-primary: 0 2px 0 0 #0000000a;
  --dropshadow-button-secondary: 0 2px 0 0 #00000005;
  --dropshadow-table-hover: 0 0 0 0 rgba(0, 0, 0, 0);
  --dropshadow-info-panel: 0 2px 20px 0 #00000026;
  --borderdivider-divider-down: 0 -1px 0 0 #f0f0f0;
  --borderdivider-divider-up: 0 1px 0 0 #f0f0f0;
  --borderdivider-divider-right: -1px 0 0 0 #f0f0f0;
  --borderdivider-border-left-up-right-1px: 1px 0 0 0 #f0f0f0, 0 1px 0 0 #f0f0f0, -1px 0 0 0 #f0f0f0;
  --borderdivider-border-up-down-right: 0 -1px 0 0 #d9d9d9, 0 1px 0 0 #d9d9d9, -1px 0 0 0 #d9d9d9;
  --borderdivider-border-left-up-down: 0 -1px 0 0 #d9d9d9, 0 1px 0 0 #d9d9d9, 1px 0 0 0 #d9d9d9;
  --borderdivider-border-up-down-0-5px: 0 0.5px 0 0 #f0f0f0, 0 -0.5px 0 0 #f0f0f0;
  --borderdivider-outer-border-1px: 0 0 0 1px #fff;
  --ink-theme-right-2px: -2px 0 0 0 #6c60ec;
  --ink-theme-up-2px: 0 2px 0 0 #6c60ec;
  --ink-theme-right-3px: -3px 0 0 0 #6c60ec;
  --ink-theme-left-up-down-right-1px: 0 -1px 0 0 #6c60ec, 0 1px 0 0 #6c60ec, -1px 0 0 0 #6c60ec, -1px 0 0 0 #6c60ec;
  --ink-f0f0f0-left-2px: 2px 0 0 0 #f0f0f0;
  --ink-theme-left-2px: 2px 0 0 0 #9a8ce8;
}

:root {
  --z-index-tooltip: 11000;
}

.panda-theme-dark,
.panda-theme-light,
.panda-theme-light-cv {
  --tooltip-text-color: var(--theme-character-inverse);
  --tooltip-background-color: var(--theme-bg-tooltip);
  --tooltip-box-shadow: var(--dropshadow-0-15);
}

@keyframes TooltipShow {
  0% {
    opacity: 0;
  }
}

.Tooltip {
  position: absolute;
  display: flex;
  animation: TooltipShow 0.5s ease;
  font-size: var(--font-size-sm);
  text-align: left;
  max-width: 430px;
  border-radius: 2px;
  z-index: var(--z-index-tooltip);
  color: var(--tooltip-text-color);
  background: var(--tooltip-background-color);
  box-shadow: var(--tooltip-box-shadow);
  padding: 6px 8px;
}

.Tooltip__content {
    overflow: hidden;
    overflow-wrap: break-word;
  }

.Tooltip__caret {
  border: 0 solid transparent;
  border-top-color: var(--tooltip-background-color);
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.Tooltip__caret--bottom,
  .Tooltip__caret--bottomLeft,
  .Tooltip__caret--bottomRight {
    transform: rotate(180deg);
  }

.Tooltip__caret--left,
  .Tooltip__caret--leftTop,
  .Tooltip__caret--leftBottom {
    transform: rotate(270deg);
  }

.Tooltip__caret--right,
  .Tooltip__caret--rightTop,
  .Tooltip__caret--rightBottom {
    transform: rotate(90deg);
  }

.ValueTooltip {
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  display: block;
}

.WithIcon .Icon {
  --icon-size: var(--button-icon-size);

  position: relative;
  top: 1px;
  left: 5px;
}

.LineClampTooltip {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  width: 100%;
  overflow: hidden;
  overflow-wrap: break-word;
}

.TetherTooltip {
  width: fit-content;
}

.AttackMapContainer {
  position: absolute;
  height: 100%;
  width: 100%;
  background: var(--theme-bg-primary);
}

.AttackMapContainer .panda-alert-prompt {
    position: absolute;
    top: 0;
    left: 0;
  }

.AttackMap {
  height: 100%;
  width: 100%;
}

.AttackMap__allArtifactsUnrelated {
  display: flex;
  flex-direction: column;
  grid-gap: 1em;
  gap: 1em;
}

.AttackMap__kpiCounts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
}

.AttackMap__kpiCounts > .Button {
    opacity: 1;
    transform: translateX(0);
    transition: 0.2s ease-in-out opacity, 0.2s ease-in-out transform;
  }

.AttackMap__kpiCounts--active > .Button {
      opacity: 0;
      transform: translateX(100px);
      cursor: default;
    }

.AttackMap__kpiCounts--active .AttackMap__kpiCountContainer {
      opacity: 1;
      right: 0;
      transition: 0.2s ease-in-out opacity, 0.2s ease-in-out right;
    }

.AttackMap__kpiCount {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: var(--spacing-md);
  width: auto;
}

.AttackMap__kpiCount > *:first-child {
    margin-right: var(--spacing-xs);
    cursor: default;
  }

.AttackMap__kpiCount svg {
    width: 24px;
  }

.AttackMap__kpiCountContainer {
  opacity: 0;
  cursor: default;
  position: absolute;
  top: 0;
  right: -100px;
}

.AttackMap__kpiCountHide {
  text-align: right;
  width: auto;
}

.AttackMap__kpiCountHide .Icon {
    transform: rotate(270deg);
  }

.AttackMapHexagon__path {
  fill: var(--theme-background-primary);
  stroke-width: 2;
  stroke-linejoin: round;
  stroke: var(--white-02);
}

.AttackMapHexagon__highlighted .AttackMapHexagon__path {
    stroke: var(--theme-bg-brand-default);
  }

.AttackMapHexagon {
  z-index: 1;
}

.AttackMapHexagon path {
    animation-duration: 2.5s;
  }

.AttackMapHexagon .Icon {
    animation-duration: 2.5s;
  }

.AttackMapNode__center .AttackMapHexagon path {
      animation-name: nodecenter;
    }

.AttackMapNode__center .AttackMapHexagon .Icon {
      animation-name: iconcenter;
    }

.AttackMapNode__associated .AttackMapHexagon path {
      animation-name: nodeassociated;
    }

.AttackMapNode__associated .AttackMapHexagon .Icon {
      animation-name: iconassociated;
    }

.AttackMapNode__primary0 .AttackMapHexagon path {
      animation-name: nodeprimary0;
    }

.AttackMapNode__primary0 .AttackMapHexagon .Icon {
      animation-name: iconprimary0;
    }

.AttackMapNode__primaryassociated0 .AttackMapHexagon path {
      animation-name: nodeprimary1;
    }

.AttackMapNode__primaryassociated0 .AttackMapHexagon .Icon {
      animation-name: iconprimary1;
    }

.AttackMapNode__primary1 .AttackMapHexagon path {
      animation-name: nodeprimary1;
    }

.AttackMapNode__primary1 .AttackMapHexagon .Icon {
      animation-name: iconprimary1;
    }

.AttackMapNode__primaryassociated1 .AttackMapHexagon path {
      animation-name: nodeprimary2;
    }

.AttackMapNode__primaryassociated1 .AttackMapHexagon .Icon {
      animation-name: iconprimary2;
    }

.AttackMapNode__primary2 .AttackMapHexagon path {
      animation-name: nodeprimary2;
    }

.AttackMapNode__primary2 .AttackMapHexagon .Icon {
      animation-name: iconprimary2;
    }

.AttackMapNode__primaryassociated2 .AttackMapHexagon path {
      animation-name: nodeprimary3;
    }

.AttackMapNode__primaryassociated2 .AttackMapHexagon .Icon {
      animation-name: iconprimary3;
    }

.AttackMapNode__primary3 .AttackMapHexagon path {
      animation-name: nodeprimary3;
    }

.AttackMapNode__primary3 .AttackMapHexagon .Icon {
      animation-name: iconprimary3;
    }

.AttackMapNode__primaryassociated3 .AttackMapHexagon path {
      animation-name: nodeprimary4;
    }

.AttackMapNode__primaryassociated3 .AttackMapHexagon .Icon {
      animation-name: iconprimary4;
    }

.AttackMapNode__primary4 .AttackMapHexagon path {
      animation-name: nodeprimary4;
    }

.AttackMapNode__primary4 .AttackMapHexagon .Icon {
      animation-name: iconprimary4;
    }

.AttackMapNode__primaryassociated4 .AttackMapHexagon path {
      animation-name: nodeprimary5;
    }

.AttackMapNode__primaryassociated4 .AttackMapHexagon .Icon {
      animation-name: iconprimary5;
    }

.AttackMapNode__primary5 .AttackMapHexagon path {
      animation-name: nodeprimary5;
    }

.AttackMapNode__primary5 .AttackMapHexagon .Icon {
      animation-name: iconprimary5;
    }

.AttackMapNode__primaryassociated5 .AttackMapHexagon path {
      animation-name: nodeprimary6;
    }

.AttackMapNode__primaryassociated5 .AttackMapHexagon .Icon {
      animation-name: iconprimary6;
    }

@keyframes nodecenter {
  from {
    transform: scale(0);
  }

  7.5% {
    transform: scale(1.1);
  }

  10% {
    transform: scale(1);
  }

  to {
    transform: scale(1);
  }
}

@keyframes nodeassociated {
  from {
    transform: scale(0);
  }

  20% {
    transform: scale(0);
  }

  27.5% {
    transform: scale(1.1);
  }

  30% {
    transform: scale(1);
  }

  to {
    transform: scale(1);
  }
}

@keyframes nodeprimary0 {
  from {
    transform: scale(0);
  }

  30% {
    transform: scale(0);
  }

  37.5% {
    transform: scale(1.1);
  }

  40% {
    transform: scale(1);
  }

  to {
    transform: scale(1);
  }
}

@keyframes nodeprimary1 {
  from {
    transform: scale(0);
  }

  40% {
    transform: scale(0);
  }

  47.5% {
    transform: scale(1.1);
  }

  50% {
    transform: scale(1);
  }

  to {
    transform: scale(1);
  }
}

@keyframes nodeprimary2 {
  from {
    transform: scale(0);
  }

  50% {
    transform: scale(0);
  }

  57.5% {
    transform: scale(1.1);
  }

  60% {
    transform: scale(1);
  }

  to {
    transform: scale(1);
  }
}

@keyframes nodeprimary3 {
  from {
    transform: scale(0);
  }

  60% {
    transform: scale(0);
  }

  67.5% {
    transform: scale(1.1);
  }

  70% {
    transform: scale(1);
  }

  to {
    transform: scale(1);
  }
}

@keyframes nodeprimary4 {
  from {
    transform: scale(0);
  }

  70% {
    transform: scale(0);
  }

  77.5% {
    transform: scale(1.1);
  }

  80% {
    transform: scale(1);
  }

  to {
    transform: scale(1);
  }
}

@keyframes nodeprimary5 {
  from {
    transform: scale(0);
  }

  80% {
    transform: scale(0);
  }

  87.5% {
    transform: scale(1.1);
  }

  90% {
    transform: scale(1);
  }

  to {
    transform: scale(1);
  }
}

@keyframes nodeprimary6 {
  from {
    transform: scale(0);
  }

  90% {
    transform: scale(0);
  }

  97.5% {
    transform: scale(1.1);
  }

  to {
    transform: scale(1);
  }
}

@keyframes iconcenter {
  from {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  to {
    opacity: 1;
  }
}

@keyframes iconassociated {
  from {
    opacity: 0;
  }

  20% {
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  to {
    opacity: 1;
  }
}

@keyframes iconprimary0 {
  from {
    opacity: 0;
  }

  30% {
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  to {
    opacity: 1;
  }
}

@keyframes iconprimary1 {
  from {
    opacity: 0;
  }

  40% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  to {
    opacity: 1;
  }
}

@keyframes iconprimary2 {
  from {
    opacity: 0;
  }

  50% {
    opacity: 0;
  }

  60% {
    opacity: 1;
  }

  to {
    opacity: 1;
  }
}

@keyframes iconprimary3 {
  from {
    opacity: 0;
  }

  60% {
    opacity: 0;
  }

  70% {
    opacity: 1;
  }

  to {
    opacity: 1;
  }
}

@keyframes iconprimary4 {
  from {
    opacity: 0;
  }

  70% {
    opacity: 0;
  }

  80% {
    opacity: 1;
  }

  to {
    opacity: 1;
  }
}

@keyframes iconprimary5 {
  from {
    opacity: 0;
  }

  80% {
    opacity: 0;
  }

  90% {
    opacity: 1;
  }

  to {
    opacity: 1;
  }
}

@keyframes iconprimary6 {
  from {
    opacity: 0;
  }

  90% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.AttackMapHexagonIcon {
  display: inline-block;
  position: relative;
  width: 24px;
  height: 24px;
}

.AttackMapHexagonIcon__icon {
    --panda-icon-size: 14px;

    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -2px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

.AttackMapNode {
  z-index: 2;
}

.AttackMapNode__icon .panda-icon, .AttackMapNode__icon .panda-icon svg {
    width: 100%;
    height: 100%;
  }

.AttackMapOs {
  --panda-icon-size: 12px;
}

.AttackMapOs__icon {
    animation-duration: 2.5s;
    background-color: var(--theme-bg-inverse);
    border-radius: 9px;
    color: var(--theme-bg-canvas);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

.AttackMapNode__more {
  fill: var(--theme-bg-brand-default);
  animation-duration: 2.5s;
}

.AttackMapNode__more .Icon {
    --icon-color: var(--white-02);
  }

.AttackMapNode__more:hover {
    cursor: pointer;
  }

.AttackMapNode--USER {
  width: 30px;
  height: 30px;
  margin-left: -15px;
  margin-top: -15px;
}

.AttackMapNode--USER .AttackMapHexagon {
    background-color: var(--theme-bg-primary);
    border-radius: 15px;
  }

.AttackMapNode--USER .AttackMapHexagon__icon {
    position: relative;
  }

.AttackMapNode__labelContainer {
  height: 60px;
  width: 120px;
}

.AttackMapNode__labels {
  text-align: center;
  cursor: pointer;
  animation-duration: 2.5s;
  margin-top: var(--spacing-xs);
}

.AttackMapNode__primaryLabel,
.AttackMapNode__secondaryLabel {
  position: relative;
  display: inline-block;
  max-width: 120px;
  color: var(--white-02);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: var(--font-size-xs);
}

.AttackMapNode__secondaryLabel {
  background-color: var(--theme-bg-primary);
  padding: 0 var(--spacing-2xs);
}

.AttackMapNode__primaryLabel {
  background-color: var(--theme-bg-brand-minimal);
  border-radius: var(--borderRadius-xs);
  padding: var(--spacing-2xs) var(--spacing-xs);
}

.AttackMapNode--infected .AttackMapNode__primaryLabel {
    background-color: var(--theme-character-error-default);
  }

.AttackMapNode--infected .AttackMapNode__secondaryLabel {
    color: var(--theme-character-error-default);
  }

.AttackMapNode--infected.AttackMapNode--Device:not(.AttackMapNode--active) .AttackMapNode__icon {
    color: var(--theme-character-error-default);
  }

.AttackMapNode--hovered {
  cursor: pointer;
}

.AttackMapNode--hovered .AttackMapHexagon__path {
    fill: var(--theme-bg-brand-hover);
  }

.AttackMapNode--active .AttackMapHexagon__path {
    fill: var(--theme-bg-brand-default);
  }

.AttackMapNode--active .AttackMapNode__icon {
    color: var(--colors-white);
  }

.AttackMapNode--User.AttackMapNode--active .AttackMapHexagon__icon {
  color: var(--theme-bg-brand-default);
}

.AttackMapNode--USER.AttackMapNode--hovered:not(.AttackMapNode--active)
  .AttackMapHexagon {
  background-color: var(--theme-bg-brand-default);
}

.AttackMapNodeMembers {
  position: absolute;
  top: 0;
  left: calc(100% + 10px);
}

.AttackMapNodeMembers .Button {
    margin-top: var(--spacing-xs);
    white-space: nowrap;
  }

.AttackMapNode--topLeft .AttackMapNodeMembers, .AttackMapNode--bottomLeft .AttackMapNodeMembers {
    left: auto;
    right: calc(100% + 10px);
  }

.AttackMapNodeMember {
  margin-bottom: var(--spacing-2xs);
}

.AttackMapNodeMember span {
    display: inline-block;
    padding: var(--spacing-2xs) var(--spacing-xs);
    background-color: var(--gray-06);
    color: var(--white-02);
    border-radius: 10px;
    font-size: var(--font-size-xs);
    cursor: pointer;
    white-space: nowrap;
  }

.AttackMapNodeMember span:hover {
      background-color: var(--gray-04);
    }

.AttackMapNodeGroupMember {
  transition: 0.2s ease-in-out all;
}

.AttackMapNodeGroupMember__group1 {
    z-index: 1;
  }

.AttackMapNodeGroupMember__group2 {
    z-index: 0;
  }

.AttackMapNode__center .AttackMapNode__labels,
  .AttackMapNode__center .AttackMapOs__icon {
    animation-name: labelcenter;
  }

.AttackMapNode__associated .AttackMapNode__labels {
    animation-name: labelassociated;
  }

.AttackMapNode__primary0 .AttackMapNode__labels,
  .AttackMapNode__primary0 .AttackMapNode__more,
  .AttackMapNode__primary0 .AttackMapOs__icon {
    animation-name: labelprimary0;
  }

.AttackMap__associated0 {
  animation-duration: 2.5s;
  animation-name: labelprimary0;
}

.AttackMap__associated1 {
  animation-duration: 2.5s;
  animation-name: labelprimary1;
}

.AttackMap__associated2 {
  animation-duration: 2.5s;
  animation-name: labelprimary2;
}

.AttackMap__associated3 {
  animation-duration: 2.5s;
  animation-name: labelprimary3;
}

.AttackMap__associated4 {
  animation-duration: 2.5s;
  animation-name: labelprimary4;
}

.AttackMap__associated5 {
  animation-duration: 2.5s;
  animation-name: labelprimary5;
}

.AttackMapNode__primary1 .AttackMapNode__labels,
  .AttackMapNode__primary1 .AttackMapNode__more,
  .AttackMapNode__primary1 .AttackMapOs__icon {
    animation-name: labelprimary1;
  }

.AttackMapNode__primary2 .AttackMapNode__labels,
  .AttackMapNode__primary2 .AttackMapNode__more,
  .AttackMapNode__primary2 .AttackMapOs__icon {
    animation-name: labelprimary2;
  }

.AttackMapNode__primary3 .AttackMapNode__labels,
  .AttackMapNode__primary3 .AttackMapNode__more,
  .AttackMapNode__primary3 .AttackMapOs__icon {
    animation-name: labelprimary3;
  }

.AttackMapNode__primary4 .AttackMapNode__labels,
  .AttackMapNode__primary4 .AttackMapNode__more,
  .AttackMapNode__primary4 .AttackMapOs__icon {
    animation-name: labelprimary4;
  }

.AttackMapNode__primary5 .AttackMapNode__labels,
  .AttackMapNode__primary5 .AttackMapNode__more,
  .AttackMapNode__primary5 .AttackMapOs__icon {
    animation-name: labelprimary5;
  }

@keyframes labelcenter {
  from {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  to {
    opacity: 1;
  }
}

@keyframes labelassociated {
  from {
    opacity: 0;
  }

  20% {
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  to {
    opacity: 1;
  }
}

@keyframes labelprimary0 {
  from {
    opacity: 0;
  }

  30% {
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  to {
    opacity: 1;
  }
}

@keyframes labelprimary1 {
  from {
    opacity: 0;
  }

  40% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  to {
    opacity: 1;
  }
}

@keyframes labelprimary2 {
  from {
    opacity: 0;
  }

  50% {
    opacity: 0;
  }

  60% {
    opacity: 1;
  }

  to {
    opacity: 1;
  }
}

@keyframes labelprimary3 {
  from {
    opacity: 0;
  }

  60% {
    opacity: 0;
  }

  70% {
    opacity: 1;
  }

  to {
    opacity: 1;
  }
}

@keyframes labelprimary4 {
  from {
    opacity: 0;
  }

  70% {
    opacity: 0;
  }

  80% {
    opacity: 1;
  }

  to {
    opacity: 1;
  }
}

@keyframes labelprimary5 {
  from {
    opacity: 0;
  }

  80% {
    opacity: 0;
  }

  90% {
    opacity: 1;
  }

  to {
    opacity: 1;
  }
}

@keyframes labelprimary5 {
  from {
    opacity: 0;
  }

  90% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.AttackMapEdge {
  --start-dasharray: 199;
  --end-dasharray: 199;
}

.AttackMapEdge line {
    stroke-width: 2px;
    animation-duration: 2.5s;
    animation-fill-mode: forwards;
    stroke: var(--white-02);
  }

.AttackMapEdge__selected line {
    stroke: var(--theme-bg-brand-default);
  }

.AttackMapEdge text {
    fill: var(--white-02);
    font-size: var(--font-size-2xs);
    padding: 10px;
    animation-duration: 2.5s;
  }

.AttackMapEdge .Icon {
    animation-duration: 2.5s;
  }

.AttackMapEdge circle {
    fill: var(--theme-bg-primary);
    animation-duration: 2.5s;
  }

.AttackMapEdge.AttackMapEdge__associated line {
    stroke-dasharray: 2, 2;
  }

.AttackMapEdge__0 line {
    animation-name: edgeline0;
  }

.AttackMapEdge__0 text {
    animation-name: edgelabel0;
  }

.AttackMapEdge__0 circle {
    animation-name: edgelabel0;
  }

.AttackMapEdge__0 .Icon {
    animation-name: edgelabel0;
  }

.AttackMapEdge__1 line {
    animation-name: edgeline1;
  }

.AttackMapEdge__1 text {
    animation-name: edgelabel1;
  }

.AttackMapEdge__1 circle {
    animation-name: edgelabel1;
  }

.AttackMapEdge__1 .Icon {
    animation-name: edgelabel1;
  }

.AttackMapEdge__2 line {
    animation-name: edgeline2;
  }

.AttackMapEdge__2 text {
    animation-name: edgelabel2;
  }

.AttackMapEdge__2 circle {
    animation-name: edgelabel2;
  }

.AttackMapEdge__2 .Icon {
    animation-name: edgelabel2;
  }

.AttackMapEdge__3 line {
    animation-name: edgeline3;
  }

.AttackMapEdge__3 text {
    animation-name: edgelabel3;
  }

.AttackMapEdge__3 circle {
    animation-name: edgelabel3;
  }

.AttackMapEdge__3 .Icon {
    animation-name: edgelabel3;
  }

.AttackMapEdge__4 line {
    animation-name: edgeline4;
  }

.AttackMapEdge__4 text {
    animation-name: edgelabel4;
  }

.AttackMapEdge__4 circle {
    animation-name: edgelabel4;
  }

.AttackMapEdge__4 .Icon {
    animation-name: edgelabel4;
  }

.AttackMapEdge__5 line {
    animation-name: edgeline5;
  }

.AttackMapEdge__5 text {
    animation-name: edgelabel5;
  }

.AttackMapEdge__5 circle {
    animation-name: edgelabel5;
  }

.AttackMapEdge__5 .Icon {
    animation-name: edgelabel5;
  }

@keyframes edgeline0 {
  from {
    stroke-dasharray: var(--start-dasharray);
    stroke-dashoffset: 199;
  }

  20% {
    stroke-dasharray: var(--start-dasharray);
    stroke-dashoffset: 199;
  }

  30% {
    stroke-dashoffset: 0;
    stroke-dasharray: var(--end-dasharray);
  }

  to {
    stroke-dashoffset: 0;
    stroke-dasharray: var(--end-dasharray);
  }
}

@keyframes edgeline1 {
  from {
    stroke-dasharray: var(--start-dasharray);
    stroke-dashoffset: 199;
  }

  30% {
    stroke-dasharray: var(--start-dasharray);
    stroke-dashoffset: 199;
  }

  40% {
    stroke-dashoffset: 0;
    stroke-dasharray: var(--end-dasharray);
  }

  to {
    stroke-dashoffset: 0;
    stroke-dasharray: var(--end-dasharray);
  }
}

@keyframes edgeline2 {
  from {
    stroke-dasharray: var(--start-dasharray);
    stroke-dashoffset: 199;
  }

  40% {
    stroke-dasharray: var(--start-dasharray);
    stroke-dashoffset: 199;
  }

  50% {
    stroke-dashoffset: 0;
    stroke-dasharray: var(--end-dasharray);
  }

  to {
    stroke-dashoffset: 0;
    stroke-dasharray: var(--end-dasharray);
  }
}

@keyframes edgeline3 {
  from {
    stroke-dasharray: var(--start-dasharray);
    stroke-dashoffset: 199;
  }

  50% {
    stroke-dasharray: var(--start-dasharray);
    stroke-dashoffset: 199;
  }

  60% {
    stroke-dashoffset: 0;
    stroke-dasharray: var(--end-dasharray);
  }

  to {
    stroke-dashoffset: 0;
    stroke-dasharray: var(--end-dasharray);
  }
}

@keyframes edgeline4 {
  from {
    stroke-dasharray: var(--start-dasharray);
    stroke-dashoffset: 199;
  }

  60% {
    stroke-dasharray: var(--start-dasharray);
    stroke-dashoffset: 199;
  }

  70% {
    stroke-dashoffset: 0;
    stroke-dasharray: var(--end-dasharray);
  }

  to {
    stroke-dashoffset: 0;
    stroke-dasharray: var(--end-dasharray);
  }
}

@keyframes edgeline5 {
  from {
    stroke-dasharray: var(--start-dasharray);
    stroke-dashoffset: 199;
  }

  70% {
    stroke-dasharray: var(--start-dasharray);
    stroke-dashoffset: 199;
  }

  80% {
    stroke-dashoffset: 0;
    stroke-dasharray: var(--end-dasharray);
  }

  to {
    stroke-dashoffset: 0;
    stroke-dasharray: var(--end-dasharray);
  }
}

@keyframes edgelabel0 {
  from {
    opacity: 0;
  }

  20% {
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  to {
    opacity: 1;
  }
}

@keyframes edgelabel1 {
  from {
    opacity: 0;
  }

  30% {
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  to {
    opacity: 1;
  }
}

@keyframes edgelabel2 {
  from {
    opacity: 0;
  }

  40% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  to {
    opacity: 1;
  }
}

@keyframes edgelabel3 {
  from {
    opacity: 0;
  }

  50% {
    opacity: 0;
  }

  60% {
    opacity: 1;
  }

  to {
    opacity: 1;
  }
}

@keyframes edgelabel4 {
  from {
    opacity: 0;
  }

  60% {
    opacity: 0;
  }

  70% {
    opacity: 1;
  }

  to {
    opacity: 1;
  }
}

@keyframes edgelabel5 {
  from {
    opacity: 0;
  }

  70% {
    opacity: 0;
  }

  80% {
    opacity: 1;
  }

  to {
    opacity: 1;
  }
}

.AttackMapLegend {
  position: absolute;
  bottom: 8px;
  left: 12.5%;
  display: flex;
  align-items: center;
  width: 75%;
  height: 75px;
}

.AttackMapLegend__current {
    rx: 10px;
    ry: 10px;
    stroke: var(--gray-06);
    x: -25;
    y: -6;
    stroke-width: 2;
  }

.AttackMapLegend__labels {
  text-align: center;
  font-size: var(--font-size-2xs);
}

.AttackMapLegend__labels .AttackMapLegend__viewing {
    font-weight: bold;
    margin-right: var(--spacing-2xs);
  }

.AttackMapLegend__labels .AttackMapLegend__viewingLabel {
    display: flex;
    justify-content: center;
  }

.AttackMapLegend__labels .AttackMapLegend__connections {
    font-weight: bold;
  }

.AttackMapLegend__tooltip {
  font-size: var(--font-size-xs);
}

.AttackMapLegend__tooltip .AttackMapLegend__title {
    font-weight: bold;
    margin-bottom: var(--spacing-xs);
  }

.AttackMapLegend__tooltip .AttackMapLegend__typeLabel {
    font-weight: bold;
  }

.AttackMapLegend__pagination {
  fill: var(--purple-01);
  stroke: var(--gray-06);
  stroke-width: 2;
}

.AttackMapLegend__page {
  r: 5;
  fill: var(--purple-03);
  cy: 2;
}

.AttackMapLegend__page:hover {
    fill: var(--light-purple-04);
    box-shadow: 0 2px 6px 2px var(--gray-07);
  }

.AttackMapLegend__page.AttackMapLegend__page--selected {
  fill: var(--white-02);
}

.AttackMapLegend__pathInfected.AttackMapLegend__path .AttackMapLegend__pathCircle {
    fill: var(--red-01);
  }

.AttackMapLegend__pathInfected.AttackMapLegend__path:hover .AttackMapLegend__pathCircle {
      stroke: var(--red-01);
      stroke-width: 1;
    }

.AttackMapLegend__pathInfected.AttackMapLegend__path:hover .AttackMapLegend__pathSelect {
      fill: var(--red-01);
    }

.AttackMapLegend__path {
  cursor: pointer;
}

.AttackMapLegend__path .AttackMapLegend__pathCircle {
    fill: var(--purple-01);
    r: 7;
    cy: 2;
    stroke: var(--gray-06);
    stroke-width: 2;
  }

.AttackMapLegend__path .AttackMapLegend__pathArrow {
    fill: var(--white-02);
  }

.AttackMapLegend__path .AttackMapLegend__pathSelect {
    opacity: 0;
  }

.AttackMapLegend__path:hover .AttackMapLegend__pathCircle {
      fill: var(--gray-06);
      stroke: var(--purple-01);
      stroke-width: 1;
    }

.AttackMapLegend__path:hover .AttackMapLegend__pathSelect {
      opacity: 1;
      fill: var(--purple-01);
    }

.AttackMapLegend__path:hover .AttackMapLegend__pathArrow {
      opacity: 0;
    }

#logo-svg-sprite-container {
  width: 0;
  height: 0;
  position: absolute;
  top: -9999px;
  left: -9999px;
}

.Logo__svg {
  display: inline-block;
  fill: currentColor;
}

:root {
  --button-height: 3rem;
  --button-icon-size: 1rem;
  --button-border-radius: calc(var(--button-height) / 2);
}

:root .Button--link {
    --button-border-radius: 0;
  }

:root,
.Theme--dark {
  --button-background-color: var(--gray-07);
  --button-color: var(--white-02);
  --button-disabled-background-color: var(--gray-02);
  --button-disabled-color: var(--white-02);
  --button-hover-background-color: var(--gray-03);
  --button-hover-box-shadow: var(--box-shadow-xs);
  --button-hover-color: var(--button-color);
  --button-link-color: var(--purple-01);
}

:root .Button--primary, .Theme--dark .Button--primary {
    --button-background-color: var(--purple-01);
    --button-hover-background-color: var(--light-purple-04);
  }

:root .Button--link, .Theme--dark .Button--link {
    --button-background-color: transparent;
    --button-color: var(--button-link-color);
    --button-hover-color: var(--button-link-color);
    --button-disabled-background-color: transparent;
    --button-disabled-color: var(--button-link-color);
    --button-hover-background-color: transparent;
    --button-hover-box-shadow: none;
  }

.Theme--light,
.Theme--print {
  --button-link-color: var(--purple-03);
}

.Button {
  border: none;
  border-radius: var(--button-border-radius);
  height: var(--button-height);
  padding: 0 var(--spacing-sm);
  font-size: 14px;
  line-height: 22px;
  font-weight: bold;
  color: var(--button-color);
  background-color: var(--button-background-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.Button:focus {
    outline: 0;
  }

.Button[disabled],
  .Button--disabled {
    color: var(--button-disabled-color);
    background-color: var(--button-disabled-background-color);
    cursor: default;
  }

.Button[disabled] {
    pointer-events: none;
  }

.Button .Icon {
    --icon-size: var(--button-icon-size);
  }

.Button > .Icon:first-child {
    margin-right: var(--spacing-2xs);
  }

.Button > .Icon:last-child:not(:first-child) {
    margin-left: var(--spacing-2xs);
  }

.Button:hover:not(.Button--disabled) {
    color: var(--button-hover-color);
    box-shadow: var(--button-hover-box-shadow);
    background-color: var(--button-hover-background-color);
  }

.Button--borderless {
    --button-border-radius: 0;
    --button-background-color: transparent;
    --button-hover-background-color: transparent;
    --button-disabled-background-color: transparent;
    --button-hover-box-shadow: none;

    padding: 0;
  }

.Button--icon {
    padding: 0;
    width: var(--button-height);
  }

.Button--icon > .Icon {
      margin: auto !important;
    }

.Button--icon.Button--borderless {
    color: inherit;
  }

.Button--link {
    height: auto;
    padding: 0;
    text-decoration: underline;
  }

.Button--link:hover {
      text-decoration: none;
    }

.Button--link[disabled] {
      text-decoration: none;
      opacity: 0.6;
    }

.ConciseDate {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  width: fit-content;
}

.ConciseDate--inline {
    display: inline-flex;
    flex-direction: row;
    align-items: baseline;
    grid-gap: var(--spacing-2xs);
    gap: var(--spacing-2xs);
  }

.ConciseDate:not(.ConciseDate--inline) .ConciseDate__time {
    font-weight: bold;
  }

.DateTimeInput {
  background-color: var(--gray-06);
}

.DateTimeInput.updating {
    background-color: var(--gray-02);
  }

.DateTimeInput--error {
    border: var(--input-error-border);
  }

.DateTimeInput--error:focus {
      border: var(--input-error-border);
    }

:root {
  --details-page-title-font-size: 1.8rem;
  --details-page-close-icon-size: 2.4rem;
}

.DetailsPage__titleBar {
  display: flex;
  align-items: center;
  padding: 0 2rem;
  color: var(--dark-text-color);
  height: 50px;
  flex: 0 0 50px;
  margin-top: 1rem;
}

.DetailsPage__title {
  font-size: var(--details-page-title-font-size);
  margin-right: 10px;
}

.DetailsPage__title .Dropdown__label {
    font-size: var(--details-page-title-font-size);
  }

.DetailsPage__title h1 {
    margin-bottom: 0;
  }

.DetailsPage__close {
  margin-left: auto;
  cursor: pointer;
  width: var(--details-page-close-icon-size);
  height: var(--details-page-close-icon-size);
}

.DetailsPage__close .Icon {
    --icon-size: var(--details-page-close-icon-size);
    --icon-color: var(--white-02);
  }

.DetailsPage__search {
  margin-left: auto;
  width: 420px;
  flex-grow: 0;
  flex-shrink: 1;
}

.DetailsPage__search + .DetailsPage__close {
    margin-left: 10px;
  }

.DetailsPage__search input {
    background: var(--gray-07);
    border: 1px solid var(--gray-05);
  }

.DetailsPage {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.DetailsPage .Panel {
    margin-bottom: 10px;
    height: 100%;
  }

.DetailsPage .Panel .DataTable {
      height: 100%;
    }

.DetailsPage__content {
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  padding: 0;
  position: relative;
}

.DetailsPage--error .DetailsPage__content {
  align-items: center;
  justify-content: center;
}

.DetailsPage--loading .DetailsPage__content {
  align-items: center;
  justify-content: center;
}

.DetailsPage__panels {
  width: 100%;
  flex-shrink: 2;
  overflow: auto;
  margin-top: 1rem;
  padding: 0 2rem;
}

.DetailsPage__sidebar {
  width: 40rem;
  overflow: auto;
  border-left: 1px solid var(--gray-01);
  flex-shrink: 1;
  display: flex;
  flex-direction: column;
}

.Drawer {
  position: relative;
  display: flex;
  flex-direction: column;
}

.Drawer__content {
  position: absolute;
  top: 0;
  bottom: 0;
  flex-grow: 1;
  overflow: hidden;
}

.Drawer--opened .Drawer__content,
.Drawer--pinned .Drawer__content {
  overflow: auto;
}

.Drawer--pinned .Drawer__content {
  position: relative;
}

.ErrorBoundary {
  margin: 15px;
  border: 1px solid var(--red-01);
  border-radius: 4px;
  background: var(--gray-06);
  overflow: hidden;
  display: inline-block;
  width: calc(100% - 30px);
}

.ErrorBoundary__title {
    color: var(--white-02);
    background: var(--red-01);
    display: flex;
    align-items: center;
    padding: 10px;
    font-size: 16px;
  }

.ErrorBoundary__title .Icon {
      margin-right: 10px;
    }

.ErrorBoundary__message {
    padding: 20px;
    font-size: 14px;
    color: var(--white-02);
  }

.ErrorBoundary__help {
    padding: 0 20px 20px 20px;
    font-size: 12px;
    color: var(--gray-02);
  }

.ErrorBoundary__info {
    background-color: var(--gray-07);
    border-top: 1px solid var(--gray-05);
    padding: 10px 20px;
    white-space: pre;
    color: var(--gray-02);
    font-size: 12px;
  }

.ErrorBoundary__toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
  }

.ErrorBoundary__toggle .Icon {
      width: 12px;
      height: 12px;
      margin-right: 5px;
      margin-left: -4px;
      transition: transform 0.1s linear;
    }

.ErrorBoundary__toggle.on .Icon {
      transform: rotate(90deg);
    }

.ErrorBoundary__stacks {
    padding: 10px 0;
    display: flex;
  }

.ErrorBoundary__stacks > div {
      width: 50%;
      flex-grow: 1;
    }

.ErrorBoundaryReloadNeeded {
  height: 100%;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.ErrorBoundaryReloadNeeded__title {
    font-weight: bold;
    margin-bottom: var(--spacing-sm);
  }

.ErrorBoundaryReloadNeeded .LoadingError__message {
    text-align: center;
    margin-bottom: var(--spacing-xl);
  }

.ErrorBoundaryReloadNeeded .Button {
    --button-icon-size: 1.4rem;

    width: 100%;
    display: flex;
  }

.FlexRow {
  display: flex;
  flex-wrap: nowrap;
}

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

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

.FlexRow--inline {
    display: inline-flex;
  }

.FlexRow--wrap {
    display: inline-flex;
    flex-wrap: wrap;
  }

.FlexRow--hAlign-around {
    justify-content: space-around;
  }

.FlexRow--hAlign-between {
    justify-content: space-between;
  }

.FlexRow--hAlign-center {
    justify-content: center;
  }

.FlexRow--hAlign-left {
    justify-content: flex-start;
  }

.FlexRow--hAlign-right {
    justify-content: flex-end;
  }

.FlexRow--vAlign-baseline {
    align-items: baseline;
  }

.FlexRow--vAlign-bottom {
    align-items: flex-end;
  }

.FlexRow--vAlign-middle {
    align-items: center;
  }

.FlexRow--vAlign-stretch {
    align-items: stretch;
  }

.FlexRow--vAlign-top {
    align-items: flex-start;
  }

.Flex {
  display: flex;
  flex-grow: 1;
}

.FormRowFileInput {
  display: flex;
  width: 100%;
  position: relative;
}

.FormRowFileInput input[type="file"] {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    cursor: pointer;
  }

.FormRowFileInput__fileName {
    margin: auto var(--spacing-xs);
    text-align: center;
  }

.FormRowFileInput__button {
    flex-grow: 1;
    min-width: 0;
    font: inherit;
    text-align: left;
    padding: 0 var(--spacing-sm);
    display: flex;
    align-items: center;
    cursor: pointer;
    background: var(--theme-bg-canvas);
    border: 1px solid var(--theme-border-primary);
    border-radius: var(--borderRadius-xs) 0 0 var(--borderRadius-xs);
    border-right: none;
    color: var(--theme-character-disabled);
    position: relative;
  }

.FormRowFileInput__button > span {
      display: inline-block;
      width: 100%;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

.FormRowFileInput--filled .FormRowFileInput__button {
    color: var(--theme-character-primary);
  }

.FormRowFileInput__button ~ .panda-button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

.FormRowFileInput .ProgressBar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }

.FormRowFileInput .ProgressBar--complete .ProgressBar__progress {
    background-color: var(--theme-bg-success-default);
  }

.FormRow--error .FormRowFileInput__button {
    border: var(--theme-bg-error-default);
  }

.panda-theme-light,
.panda-theme-dark {
  --scrub-text-color: var(--theme-character-title);
  --scrub-border-color: var(--theme-character-disabled);
}

.ScrubInput {
  display: flex;
  white-space: nowrap;
  position: relative;
}

.ScrubInput__button {
    background: none;
    padding: 0;
    border: none;
    font: inherit;
    cursor: ew-resize;
    width: 1.1rem;
    color: var(--scrub-text-color);
    border-bottom: 1px dotted var(--scrub-border-color);
    margin-bottom: -1px;
  }

.ScrubInput__button:active {
      cursor: ew-resize;
    }

.ScrubInput--vertical > button {
    cursor: ns-resize;
  }

.ScrubInput__ghost {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
  }

.ScrubInput--disabled > span {
    cursor: default;
    border-bottom: none;
  }

:root {
  --input-height: 3rem;
  --input-vertical-padding: var(--spacing-2xs);
  --input-horizontal-padding: var(--spacing-sm);
  --input-checkbox-size: 1.4rem;
  --input-radio-size: 1.4rem;
}

:root,
.Theme--dark {
  --input-color: var(--white-02);
  --input-background-color: var(--gray-07);
  --input-readonly-background-color: var(--gray-04);
  --input-focus-border: 1px solid var(--purple-01);
  --input-focus-box-shadow: none;
  --input-focus-box-shadow-error: 0 0 1px 2px var(--red-01);
  --input-error-border: 1px solid var(--red-01);
  --input-checkbox-border: 1px solid var(--gray-03);
  --input-checkbox-border-checked: 1px solid var(--purple-01);
  --input-checkbox-check-color: var(--purple-01);
  --input-radio-button-background: var(--input-color);
  --input-radio-border: 1px solid var(--input-color);
  --input-radio-border-checked: 1px solid var(--input-color);
  --input-radio-check-color: var(--gray-07);
  --input-dropdown-border: 1px solid transparent;
  --input-dropdown-background-color: var(--gray-07);
  --input-dropdown-hover-border: 1px solid transparent;
  --input-dropdown-hover-background-color: var(--gray-03);
  --input-dropdown-active-border: 1px solid var(--purple-01);
  --input-dropdown-active-background-color: transparent;
  --input-option-list-background-color: var(--gray-04);
  --input-option-list-hover-background-color: var(--gray-05);
  --input-option-list-selected-background-color: var(--gray-07);
  --input-list-value-button-background-color: var(--gray-03);
  --input-list-value-button-hover-background-color: var(--gray-02);
  --input-list-value-background-color: var(--gray-03);
  --input-list-input-button-background-color: var(--purple-01);
  --input-list-input-button-hover-background-color: var(--light-purple-04);
  --input-list-input-background-color: var(--gray-05);
  --input-list-value-color: var(--white-02);
  --input-placeholder-color: var(--gray-02);
  --label-color: var(--gray-01);
}

.panda-theme-dark,
.panda-theme-light,
.panda-theme-light-cv {
  --description-color: var(--theme-character-secondary);
}

.Theme--light,
.Theme--print {
  --input-color: var(--gray-07);
  --input-background-color: var(--light-purple-02);
  --input-readonly-background-color: var(--gray-01);
  --input-focus-border: 1px solid var(--purple-01);
  --input-focus-box-shadow: 0 0 1px 2px var(--purple-01-alpha-05);
  --input-focus-box-shadow-error: 0 0 1px 2px var(--light-red-01);
  --input-error-border: 1px solid var(--light-red-01);
  --input-checkbox-border: 1px solid var(--gray-07);
  --input-checkbox-border-checked: 1px solid var(--purple-01);
  --input-checkbox-check-color: var(--purple-01);
  --input-radio-button-background: var(--white-01);
  --input-radio-border: 1px solid var(--gray-02);
  --input-radio-border-checked: 1px solid var(--gray-07);
  --input-radio-check-color: var(--purple-01);
  --input-dropdown-border: 1px solid var(--light-purple-03);
  --input-dropdown-background-color: var(--light-purple-02);
  --input-dropdown-hover-background-color: var(--light-purple-03);
  --input-dropdown-hover-border: 1px solid var(--light-purple-03);
  --input-dropdown-active-border: 1px solid var(--purple-01);
  --input-dropdown-active-background-color: transparent;
  --input-option-list-background-color: var(--light-purple-02);
  --input-option-list-hover-background-color: var(--light-purple-03);
  --input-option-list-selected-background-color: var(--gray-07);
  --input-list-value-button-background-color: var(--gray-07);
  --input-list-value-button-hover-background-color: var(--gray-04);
  --input-list-value-background-color: var(--gray-07);
  --input-list-value-color: var(--white-02);
  --input-list-input-button-background-color: var(--purple-01);
  --input-list-input-button-hover-background-color: var(--light-purple-04);
  --input-list-input-background-color: var(--light-purple-02);
  --input-placeholder-color: var(--gray-03);
  --label-color: var(--gray-03);
  --description-color: var(--gray-03);
}

.Input,
.TextInput {
  width: 100%;
  border: 1px solid var(--colors-gray-600);
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  height: var(--input-height);
  padding: var(--input-vertical-padding) var(--input-horizontal-padding)
    var(--input-vertical-padding) var(--spacing-lg);
  color: var(--input-color);
  background-color: var(--theme-bg-canvas);
  border-radius: 2px;
}

.Input:focus, .TextInput:focus {
    border: var(--input-focus-border);
    box-shadow: var(--input-focus-box-shadow);
    outline: none;
  }

.Input::placeholder, .TextInput::placeholder {
    color: var(--input-placeholder-color);
    opacity: 1;
  }

.TextInput {
  min-height: var(--spacing-4xl);
}

.FormRow {
  margin-bottom: var(--spacing-md);
}

.FormRow:first-child {
    margin-top: 0;
  }

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

.FormRow__label:empty {
    display: none;
  }

.FormRow__label label {
    font-size: var(--font-size-sm);
    color: var(--label-color);
    font-weight: 500;
    display: flex;
  }

.FormRow__label label::before {
      content: "*";
      color: var(--theme-character-error-default);
      margin-right: var(--spacing-2xs);
    }

.FormRow__label label .panda-info {
      width: auto;
      margin-left: var(--spacing-2xs);
    }

.FormRow--optional .FormRow__label label::before {
    display: none;
  }

.FormRow__inputError {
    color: var(--red-01);
    margin-top: var(--spacing-2xs);
    display: inline-flex;
    grid-gap: var(--spacing-xs);
    gap: var(--spacing-xs);
  }

.FormRow__inputError > .panda-icon:first-child {
      --panda-icon-size: 14px;

      margin-top: 2.5px;
    }

.FormRow__inputWarning {
    color: var(--orange-01);
    margin-top: var(--spacing-2xs);
    display: inline-flex;
    grid-gap: var(--spacing-xs);
    gap: var(--spacing-xs);
  }

.FormRow__inputWarning > .panda-icon:first-child {
      --panda-icon-size: 14px;

      margin-top: 2.5px;
    }

.FormRow__input {
    align-items: flex-start; /* Prevent dropdowns from being max width */
    display: flex;
    flex-direction: column;
  }

.FormRow__description {
    margin-top: var(--spacing-xs);
    color: var(--description-color);
  }

.FormRow__optionalMark {
    margin-left: var(--spacing-2xs);
    color: var(--theme-character-secondary);
    font-weight: normal;
  }

@keyframes ValidatedError {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.FormRowInput {
  display: flex;
  width: 100%;
  align-items: center;
}

.FormRowInput__append {
    margin-left: var(--spacing-2xs);
  }

.FormRowInput__prepend {
    margin-right: var(--spacing-2xs);
  }

.FormRowInput > .Button:not(:first-child) {
    margin-left: var(--spacing-2xs);
  }

.FormRowInput,
.FormRowQueryEditor,
.FormRowTagList__input {
  position: relative;
}

.FormRowInput > .Icon, .FormRowQueryEditor > .Icon, .FormRowTagList__input > .Icon {
    --icon-size: 1rem;

    align-self: flex-start;
    margin-top: calc(calc(var(--input-height) - var(--icon-size)) / 2);
    position: absolute;
    margin-left: var(--spacing-xs);
    color: var(--input-color);
    z-index: 2;
  }

.FormRow--horizontal .FormRow__label {
    flex: 1 0 25%;
    min-width: 25%;
    margin-right: 1rem;
    text-align: right;
  }

.FormRow--horizontal .FormRow__label label {
      padding: 0.5rem 0;
    }

.FormRow--horizontal .FormRow__input {
    flex: 0 1 70%;
  }

.FormRow--vertical {
  grid-gap: var(--spacing-xs);
  gap: var(--spacing-xs);
}

.FormRow--vertical > * {
    margin-top: 0;
    margin-bottom: 0;
  }

.FormRowValue {
  color: var(--input-color);
  padding: var(--input-vertical-padding) var(--input-horizontal-padding);
  height: var(--input-height);
  background: var(--theme-bg-canvas);
  width: 100%;
  display: flex;
  align-items: center;
}

.SearchInput {
  --panda-icon-size: 12px;
}

.FormRowSelect {
  --panda-icon-size: 10px;
  --dropdown-text-color: var(--theme-character-title);
  --dropdown-text-color-hover: var(--theme-bg-brand-active);
  --dropdown-text-color-disabled: var(--theme-character-disabled);
  --dropdown-border-color: var(--theme-border-primary);
  --dropdown-border-color-hover: var(--theme-bg-brand-active);
  --dropdown-background-color: var(--theme-bg-primary);
  --dropdown-background-color-disabled: var(--theme-bg-secondary);

  color: var(--dropdown-text-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-2xs) var(--spacing-md);
  font-size: 14px;
}

.FormRowSelect:hover {
    color: var(--dropdown-text-color-hover);
    cursor: pointer;
  }

.FormRowSelect__disabled {
    --dropdown-text-color: var(--dropdown-text-color-disabled);
    --dropdown-border-color: var(--dropdown-border-color-disabled);
    --dropdown-background-color: var(--dropdown-background-color-disabled);
    --dropdown-text-color-hover: var(--dropdown-text-color-disabled);
  }

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

.FormRowSelect__disabled.FormRowSelect__border:hover {
    --dropdown-border-color: var(--dropdown-border-color-disabled);
  }

.FormRowSelect__border {
    background: var(--dropdown-background-color);
    border: 1px solid var(--dropdown-border-color);
    padding-left: 15px;
    padding-right: 15px;
  }

.FormRowSelect__border:hover {
      --dropdown-border-color: var(--dropdown-border-color-hover);
    }

.FormRowSelect__border.FormRowSelect--open {
    --dropdown-border-color: var(--dropdown-border-color-hover);
  }

.FormRowSelect--open {
    --dropdown-text-color: var(--dropdown-text-color-hover);
  }

.FormRowSelect__label {
    flex-grow: 1;
    overflow: hidden;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

.FormRowSelect > .panda-icon {
    margin-left: var(--spacing-xs);
  }

.FormRowSelectMenu {
  --option-text-color: var(--theme-character-title);
  --option-text-color-active: var(--theme-character-brand-text);
  --option-background: var(--theme-bg-popover);
  --option-background-active: var(--theme-bg-item-hover);
  --option-background-selected: var(--theme-bg-table-select);

  padding: var(--spacing-2xs) 0;
  position: absolute;
  display: flex;
  animation: menu-in 0.2s ease-out;
  transform-origin: top center;
}

.FormRowSelectMenu__options {
    background: var(--option-background);
    color: var(--option-text-color);
    box-shadow: var(--dropshadow-0-12-0-8-0-5);
    border: 1px solid var(--theme-border-primary);
    border-radius: var(--spacing-3xs);
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    height: auto;
    width: 100%;
  }

.FormRowSelectMenu__option {
    color: var(--option-text-color);
    display: block;
    width: auto;
    padding: var(--spacing-xs) 15px;
    background: transparent;
    border: none;
    margin: 0;
    text-align: left;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
  }

.FormRowSelectMenu__option:focus {
    outline: none;
  }

.FormRowSelectMenu__option.FormRowSelectMenu--selected {
    background: var(--option-background-active);
  }

.FormRowSelectMenu__option.FormRowSelectMenu__default {
    color: var(--option-text-color-active);
    background: var(--option-background-selected);
  }

.FormRowSelectMenu__option.FormRowSelectMenu__default.FormRowSelectMenu--selected {
    background: var(--option-background-active);
  }

.FormRowSelectMenu--disabled {
    background: transparent !important;
    opacity: 0.5;
    cursor: not-allowed;
  }

.FormRowDateTimeInput {
  display: flex;
  flex-direction: column;
  font-size: var(--form-font-size);
}

.FormRowDateTimeInput__inputs {
    display: flex;
  }

.FormRowDateTimeInput--presets .DateTimeInput {
    width: 20rem;
  }

.FormRowDateTimeInput__error {
    color: var(--red-01);
    padding: 5px 0;
  }

.FormRowDateTimeInput--error .DateTimeInput {
  border-color: var(--red-01);
  outline-color: var(--red-01);
}

.FormRow--error .DateTimeInput {
  border-color: var(--red-01);
}

.FormRowDateTimeWithPresets {
  display: flex;
  width: 100%;
}

.FormRowDateTimeWithPresets .FormRowSelect {
    flex-basis: 0;
    flex-grow: 1;
    margin-right: var(--spacing-sm);
  }

.FormRowDateTimeWithPresets .FormRowInput {
    flex-basis: 0;
    flex-grow: 3;
  }

.FormRowQueryEditor {
  display: flex;
  align-items: center;
  width: 100%;
}

.FormRowQueryEditor .QueryEditor {
    flex-grow: 1;
    height: auto;
    background-color: var(--light-purple-02);
    border: 1px solid var(--colors-gray-600);
    font-size: var(--font-size-2xs);
    min-height: var(--input-height);
  }

.FormRowQueryEditor .QueryEditor--focus {
      border: var(--input-focus-border);
      box-shadow: var(--input-focus-box-shadow);
    }

.FormRow--error .FormRowQueryEditor .QueryEditor {
      border: var(--input-error-border);
    }

.FormRowQueryEditor .CodeMirror {
    height: auto;
  }

.FormRowQueryEditor .CodeMirror-scroll {
    max-height: 24rem;
  }

.FormRowQueryEditor .CodeMirror-lines {
    padding-top: var(--spacing-xs);
    padding-bottom: var(--spacing-xs);
  }

.FormRowQueryEditor .CodeMirror-gutters {
    left: 0 !important;
  }

.FormRowQueryEditor .QueryEditor__clearButton {
    display: none;
  }

.panda-modal-portal + .FormRowQueryEditorAutocomplete,
.ExpandableQueryEditorFormInputPortal + .FormRowQueryEditorAutocomplete {
  z-index: calc(var(--z-index-modal) + 1);
}

.Input--disabled,
.FormRowQueryEditor--disabled .CodeMirror {
  background: var(--input-readonly-background-color);
}

.RadioInput {
  display: inline-block;
  background-color: var(--input-background-color);
  background-color: var(--input-radio-button-background);
  border: var(--input-radio-border);
  border-radius: calc(var(--input-radio-size) / 2);
  width: var(--input-radio-size);
  height: var(--input-radio-size);
  text-align: center;
  position: relative;
  flex-shrink: 0;
}

.RadioInput--checked {
    border: var(--input-radio-border-checked);
  }

.RadioInput--checked::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: 50%;
    background-color: var(--input-radio-check-color);
    z-index: 1;
  }

.RadioInput input[type="radio"] {
    position: absolute;
    cursor: pointer;
    margin: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
  }

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

.FormRowRadioGroup .panda-radio {
    margin-bottom: var(--spacing-2xs);
  }

.FormRowRadioGroup .panda-radio:last-of-type {
    margin-bottom: 0;
  }

.FormRowRadioGroup--descriptive .panda-radio {
      margin-bottom: var(--spacing-sm);
      align-items: flex-start;
    }

.FormRowRadioGroup--descriptive .panda-radio-input {
      margin-top: 2px;
    }

.FormRowRadioGroup--descriptive .RadioLabelGroup {
      display: flex;
      flex-direction: column;
      max-width: 90%;
    }

.FormRowRadioGroup--descriptive .RadioLabelGroup > span:first-child {
        font-weight: bold;
      }

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

.FormRowCheckboxGroup__sortOrder {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-2xs);
    width: var(--spacing-sm);
  }

.FormRowCheckboxGroup__sortOrder .TableBuilderPanel__sortIndicator {
      display: flex;
      flex-direction: row;
      flex-grow: 1;
      justify-content: space-between;
    }

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

.FormRowListSelect {
  width: 100%;
}

.FormRowListSelect__input {
    margin-bottom: var(--spacing-2xs);
  }

.FormRowListSelect__input:empty {
    display: none;
  }

.FormRowListSelect__list > * {
      margin-bottom: var(--spacing-2xs);
    }

.FormRowListSelect__list > *:last-child {
      margin-bottom: 0;
    }

.FormRowListSelect__value .panda-tag {
    width: 100%;
  }

.FormRowListSelectInput {
  display: flex;
  width: 100%;
  align-items: center;

  --button-background-color: var(--input-list-input-button-background-color);
  --button-hover-background-color: var(
    --input-list-input-button-hover-background-color
  );
}

.FormRowListSelectInput > .Button {
    flex-shrink: 0;
  }

.FormRowListSelectInput .Icon {
    transition: transform 0.1s;
  }

.FormRowListSelectInput__button {
    cursor: pointer;
    background: var(--input-list-input-background-color);
    color: var(--input-placeholder-color);
    border: solid 1px transparent;
    outline: 0;
  }

.FormRow--error .FormRowListSelectInput__button {
    border: var(--input-error-border);
  }

.FormRowListSelectInput .FormRowInput {
    margin-right: var(--spacing-2xs);
  }

.FormRowListSelectInput--active .FormRowListSelectInput__button {
    border: var(--input-focus-border);
  }

.FormRowListSelectInput--filled .FormRowListSelectInput__button {
    color: inherit;
  }

.FormRowListSelectInput--filled {
    --button-background-color: var(--gray-07);
    --button-hover-background-color: var(--gray-05);
  }

.FormRowListSelectInput--active {
    --button-background-color: var(--purple-03);
    --button-hover-background-color: var(--purple-01);
  }

.FormRowListSelectInput--active .Button--icon {
      border: 1px solid var(--purple-01);
    }

.FormRowListSelectInput--filled .Button--icon .Icon, .FormRowListSelectInput--active .Button--icon .Icon {
      transform: rotate(45deg);
    }

.FormRowListSelect--disabled .FormRowListSelectInput {
    --button-background-color: var(--gray-03);
    --button-hover-background-color: var(--gray-03);

    opacity: 0.5;
  }

.FormRowListSelect--disabled .FormRowListSelectInput__button,
  .FormRowListSelect--disabled .FormRowListSelectInput .Button {
    cursor: default;
  }

.FormRowListSelectInput > .Button:not(:first-child) {
    margin: 0;
  }

.FormRowOptionList__option.FormRowOptionList--selected {
  background: var(--theme-bg-table-select);
  border-color: transparent;
}

.FormRowOptionList__option.FormRowOptionList--selected .FormattedText {
    --user-markdown-color: var(--theme-character-title);
  }

.FormRowOptionList__option.FormRowOptionList--selected > .panda-icon {
    transform: rotate(45deg);
  }

.FormRowOptionList__option.FormRowOptionList--selected:hover {
    background: var(--theme-bg-table-hover);
  }

.FormRowOptionList__option {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-2xs);
    padding: var(--spacing-xs) var(--spacing-sm);
    align-items: center;
    min-height: 7.2rem;
    color: var(--theme-character-title);
    border: 1px solid var(--theme-border-primary);
    border-radius: var(--borderRadius-xs);
    background: transparent;
    cursor: pointer;
    width: 100%;
  }

.FormRowOptionList__option:hover {
      background: var(--theme-bg-table-hover);
      border-color: transparent;
    }

.FormRowOptionList__option .panda-icon {
      flex-shrink: 0;
      transition: transform 0.1s;
    }

.FormRowOptionList__label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    flex-grow: 1;
    margin-right: var(--spacing-sm);
  }

.FormRowOptionList .RoleOption {
    text-align: initial;
  }

.FormRowTagList {
  display: block;
}

.FormRow--error {
  position: relative;
  z-index: 0;
}

.FormRow--error .Input {
    border: var(--input-error-border);
  }

.ToggleableInput {
  width: 100%;
}

.ToggleableInput__toggle {
    display: flex;
    grid-gap: var(--spacing-2xs);
    gap: var(--spacing-2xs);
    margin-bottom: var(--spacing-xs);
  }

.ToggleableInput .panda-switch-suffix {
  display: block;
  color: var(--description-color);
}

.FormRowDuration {
  margin-bottom: var(--spacing-sm);
}

.FormRowDuration:last-child {
    margin-bottom: 0;
  }

.DateInput,
.TimeInput,
.DateTimeInput {
  min-width: 17.6rem;
}

.FormRowUnspecifiedVersionRange .VersionUnspecifiedRangeInput__toggle {
    margin-right: auto;
  }

.panda-theme-dark,
.panda-theme-light,
.panda-theme-light-cv {
  --key-value-background: var(--theme-bg-primary);
  --key-value-key-color: var(--theme-character-title);
  --key-value-value-color: var(--theme-character-primary65);
}

.Theme--light,
.Theme--print {
  --key-value-background: var(--light-purple-02);
  --key-value-key-color: var(--gray-04);
  --key-value-value-color: var(--gray-04);
}

.KeyValueList .KeyValue {
    background: transparent;
    border-radius: 2px;
  }

.KeyValueList--filled .KeyValue {
    background: var(--key-value-background);
  }

.KeyValue {
  display: flex;
  margin-bottom: 2px;
  background: var(--key-value-background);
  padding: var(--spacing-xs);
}

.KeyValue__inline {
    flex-direction: row;
    align-items: baseline;
  }

.KeyValue__stacked {
    flex-direction: column;
  }

.KeyValue__key {
    font-weight: bold;
    margin-bottom: var(--spacing-2xs);
    color: var(--key-value-key-color);
  }

.KeyValue__key:empty {
      display: none;
    }

.KeyValue__inline .KeyValue__key {
    margin-bottom: 0;
  }

.KeyValue__value {
    min-height: var(--spacing-md);
    color: var(--key-value-value-color);
  }

.KeyValue__value .CopyPlaceholder {
      height: var(--spacing-md);
    }

.KeyValue__separator {
    margin: var(--spacing-sm) 0;
  }

.KeyValue__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    margin-bottom: var(--spacing-xs);
  }

.KeyValue + .KeyValue__title,
  .KeyValueList + .KeyValue__title,
  .KeyValueList + .KeyValueList .KeyValue__title:first-child {
    margin-top: var(--spacing-md);
  }

.KeyValue ol,
  .KeyValue ul {
    margin-bottom: 0;
  }

.KeyValue .UserMarkdown h1 {
      font-size: 1.2em;
    }

.KeyValue .UserMarkdown h2 {
      font-size: 1.1em;
    }

.KeyValueGrid {
  display: grid;
  grid-template-columns: 45% 55%;
  grid-row-gap: 8px;
  grid-column-gap: 8px;
  padding-right: var(--spacing-xs);
  align-items: baseline;

  --key-value-grid-value-line-height: 24px;
}

.KeyValueGrid.KeyValueGrid--withHeader {
    margin-bottom: 2px;
    background: var(--key-value-background);
    padding: var(--spacing-xs);
  }

.KeyValueGrid__key,
  .KeyValueGrid__value {
    color: var(--theme-character-primary65);
    font-size: 14px;
  }

.KeyValueGrid__key {
    font-weight: 500;
    overflow: hidden;
    overflow-wrap: break-word;
    line-height: 18px;
  }

.KeyValueGrid__key::after {
      content: ":";
    }

.KeyValueGrid__key.KeyValueGrid__header {
      color: var(--key-value-key-color);
      display: flex;
      font-weight: 800;
    }

.KeyValueGrid__key.KeyValueGrid__header::after {
        content: "";
      }

.KeyValueGrid__value {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: var(--key-value-grid-value-line-height);
    height: 100%;
  }

.KeyValueGridScrollableValue {
  max-height: calc(var(--key-value-grid-value-line-height) * 5);
  overflow-y: auto;
}

.panda-page-panel {
  --key-value-background: var(--theme-bg-panel-info-secondary);
}

.EditableKeyValue,
.CopyableKeyValue {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.EditableKeyValue__icon, .CopyableKeyValue__icon {
    background-color: var(--gray-07);
    border-radius: 50%;
    width: 1.6rem;
    height: 1.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-shrink: 0;

    --button-icon-size: 0.8rem;
    --icon-size: 0.8rem;
    --icon-color: var(--gray-02);
  }

.EditableKeyValue__icon:hover, .CopyableKeyValue__icon:hover {
      cursor: pointer;
      background-color: var(--gray-03);

      --icon-color: var(--gray-01);
    }

.Location .ActivityDetails__weakSignalsIndicator {
  align-self: baseline;
}

.Location__socket {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
}

.Location__socket:not(:only-child) {
    color: var(--theme-character-primary65);

    --label-link-color: var(--theme-character-primary65);
    --label-link-font-weight: normal;
  }

.Location__port {
  font-style: italic;
  flex-shrink: 0;
}

.panda-theme-dark,
.panda-theme-light,
.panda-theme-light-cv {
  --mask-color: var(--theme-bg-overlay);
  --mask-opacity: 1;
}

.MaskPortal {
  position: absolute;
  z-index: calc(var(--z-index-modal) - 1);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.Mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-color: var(--mask-color);
  opacity: var(--mask-opacity);
}

.SpinnerMask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.SpinnerMask .Mask {
    z-index: 0;
  }

.SpinnerMask .Spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
  }

.SpinnerMask--small .Spinner {
    margin-top: calc(var(--spinner-small-size) / -2);
    margin-left: calc(var(--spinner-small-size) / -2);
  }

.SpinnerMask--medium .Spinner {
    margin-top: calc(var(--spinner-medium-size) / -2);
    margin-left: calc(var(--spinner-medium-size) / -2);
  }

.SpinnerMask--large .Spinner {
    margin-top: calc(var(--spinner-large-size) / -2);
    margin-left: calc(var(--spinner-large-size) / -2);
  }

.SpinnerMask--delayed {
    animation: spinner-delay 0.1s 0.4s linear 1 both;
  }

.SpinnerMask--delayed .Spinner--delayed {
      animation: none;
    }

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

.ElasticDataPanel .Panel__content .DataTable {
      flex-grow: 1;
    }

.Panel {
  padding: 1rem 0;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.Panel__title {
  font-weight: bold;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.Panel__content {
  flex-grow: 1;
  position: relative;
  overflow: auto;
}

.Panel--loading .Panel__content {
  min-height: 8rem;
  text-align: center;
  flex-direction: row;
}

.Panel__content .Spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: calc(var(--spinner-medium-size) / -2);
  margin-left: calc(var(--spinner-medium-size) / -2);
}

.PanelGrid {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.PanelGrid .Panel {
    width: 100%;
  }

.PanelGrid .Panel:last-child,
  .PanelGrid .PanelGrid:last-child {
    margin-bottom: 0;
  }

.PanelGrid > .PanelGrid {
    width: 100%;
  }

.PanelGridColumn {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 50%;
}

.PanelGridColumn:first-child .Panel {
      margin-right: 0.5rem;
    }

.PanelGridColumn:last-child .Panel {
      margin-left: 0.5rem;
    }

.PanelGridColumn .PanelGrid {
    flex-grow: 1;
  }

.RangeInput {
  margin-left: 10px;
  align-items: center;
}

.RangeInput .DateTimeInput {
    margin: 5px;
    flex-basis: 18rem;
  }

.RangeInput .DateTimeInput,
  .RangeInput .Input {
    border-color: var(--theme-border-primary);
    font-size: 14px;
    line-height: 22px;

    --input-color: var(--theme-character-secondary);
    --input-placeholder-color: var(--theme-character-secondary);
    --input-background-color: var(--theme-bg-primary);
  }

.RangeInput__rangeLabel {
    padding: 0 1rem;
    color: var(--white-02);
    white-space: nowrap;
    font-size: 14px;
    line-height: 22px;
  }

.RangeInput__rangeLabel:first-of-type {
      padding-left: 0;
    }

.RangeInput__staticText {
    font-size: 14px;
    line-height: 22px;
    color: var(--theme-character-title);
  }

.VirtualList {
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
}

.VirtualList__sizer {
    width: 100%;
  }

.VirtualList__range {
    width: 100%;
    overflow: hidden;
  }

.panda-theme-light,
.panda-theme-dark {
  --row-background-color: var(--theme-bg-secondary);
  --row-background-hover-color: var(--theme-bg-table-hover);
  --row-border-bottom-color: var(--theme-bg-canvas);
  --row-selected-background-color: var(--theme-bg-table-select);
  --row-active-background-color: var(--theme-bg-table-info);
  --row-text-color: var(--theme-character-title);
  --row-hover-dropshadow: var(--dropshadow-table-hover);
  --table-action-color: var(--theme-character-primary65);
  --table-action-active-color: var(--theme-character-title);
  --header-background-color: var(--theme-bg-table-header);
  --header-background-hover-color: var(--theme-bg-primary);
  --header-border-color: var(--theme-bg-secondary);
  --header-border-active-color: var(--theme-bg-brand-default);
  --header-panel-text-color: var(--theme-character-title);
  --header-panel-open-text-color: var(--theme-bg-brand-default);
  --header-panel-open-background-color: var(---theme-bg-table-header);
  --header-indicator-color: var(--theme-character-disabled);
  --header-indicator-active-color: var(--theme-bg-brand-default);
  --visibility-item-hover-background-color: var(--theme-bg-item-hover);
  --visibility-item-text-color: var(--theme-character-title);
  --visibility-item-text-selected-color: var(--theme-bg-brand-active);
  --panel-background-color: var(--theme-bg-popover);
  --panel-border-color: var(--theme-border-primary);
  --panel-separator-color: var(--theme-border-primary);
  --panel-item-hover-background-color: var(--theme-bg-item-hover);
  --panel-text-color: var(--theme-character-title);
  --panel-text-disabled-color: var(--theme-character-disabled);
  --panel-box-shadow: var(--dropshadow-0-12-0-8-0-5);
  --panel-icon-color: var(--theme-character-secondary);
  --table-box-shadow: none;
  --table-header-height: var(--spacing-2xl);
  --table-background-color: var(--theme-bg-canvas);
  --expandable-row-background-color: var(--theme-bg-table-header);
  --column-min-width: 0;
}

.TableBuilder {
  --copyplaceholder-color: var(--theme-bg-moderate);

  display: flex;
  flex-basis: 0;
  flex-grow: 1;
  flex-direction: column;
  font-size: var(--font-size-sm);
  box-shadow: var(--table-box-shadow);
}

.TableBuilder--withVisibility .TableBuilderHeader {
      width: 100%;
    }

.TableBuilder--withVisibility .TableBuilderHeaderCell:nth-last-child(2) {
      --column-min-width: var(--spacing-2xl);

      padding-right: calc(
        var(--spacing-2xl) + var(--spacing-xs) - var(--table-scrollbar-width)
      );
      margin-right: var(--table-scrollbar-width);
    }

.TableBuilder--withVisibility .TableBuilderBodyCell:last-child {
      --column-min-width: var(--spacing-2xl);
    }

.panda-tabs-tabpanel .TableBuilder:only-child {
    height: 100%;
  }

.TableBuilderHeader {
  display: flex;
  flex-direction: row;
  flex-shrink: 0;
  outline: none;
  background: var(--header-background-color);
  align-items: center;
  height: var(--table-header-height);
  font-weight: bold;
}

.TableBuilderBody {
  --scrollbar-track-color: var(--row-background-color);

  flex-direction: column;
  flex-grow: 1;
  max-height: var(--table-max-visible-height);
}

.TableBuilderBody__placeholder {
    pointer-events: none;
  }

.TableBuilderBody__row {
    display: flex;
    align-items: center;
    flex-direction: row;
    border-bottom: 1px solid var(--row-border-bottom-color);
    font-size: var(--font-size-sm);
    outline: none;
    background: var(--row-background-color);
    color: var(--row-text-color);
    position: relative;
    z-index: 0;
    transition: 0.2s linear background-color;
  }

.TableBuilderBody__row:hover {
      box-shadow: var(--row-hover-dropshadow);
      z-index: 1;
    }

.TableBuilderBody__row:hover:not(.TableBuilderBody__row--selected,.TableBuilderBody__row--active) {
      background: var(--row-background-hover-color);
    }

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

.TableBuilderBody__row--strikethrough .TableBuilderBodyCell {
        opacity: 0.25;
      }

.TableBuilderBody__row--disabled .TableBuilderBodyCell {
        opacity: 0.25;
      }

.TableBuilderBody__row--selected {
      background: var(--row-selected-background-color);
    }

.TableBuilderBody__row--active {
      background: var(--row-active-background-color);
    }

.TableBuilderBody--empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: var(--spacing-xl);
  }

.TableBuilderBody--empty:empty {
      display: none;
    }

.TableBuilderHeaderCell,
.TableBuilderBodyCell {
  --link-decoration: underline;
  --link-weight: bold;

  padding: 0 8px;
}

.TableBuilderHeaderCell:first-child, .TableBuilderBodyCell:first-child {
    padding-left: 16px;
  }

.TableBuilderHeaderCell--inactive, .TableBuilderBodyCell--inactive {
    --link-color: var(--theme-character-disabled);

    color: var(--theme-character-disabled);
  }

.TableBuilderHeaderCell.IconColumn, .TableBuilderBodyCell.IconColumn {
    padding: 0;
    align-items: center;
    justify-content: center;
  }

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

.TableBuilderBodyCell > * {
    max-width: 100%;
  }

.TableBuilderBodyCell .ConciseDate__time {
      font-size: 14px;
    }

.TableBuilderBodyCell .ConciseDate__date {
      font-size: 12px;
      color: var(--theme-character-primary65);
    }

.TableBuilderPanel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  border-top: 1px solid var(--header-border-color);
  border-left: 1px solid var(--header-border-color);
  border-bottom: 1px solid var(--header-border-color);
  background: var(--header-background-color);
  color: var(--header-panel-text-color);
  cursor: pointer;
}

.TableBuilderPanel:last-child {
    border-right: 1px solid var(--header-border-color);
  }

.TableBuilderPanel--static {
    cursor: default;
  }

.TableBuilderPanel:hover:not(.TableBuilderPanel--static) {
    background: var(--header-background-hover-color);
  }

.TableBuilderPanel--open {
    color: var(--header-panel-open-text-color);
  }

.TableBuilderPanel--active {
    --header-border-color: var(--header-border-active-color);
    --header-indicator-color: var(--header-indicator-active-color);
  }

.TableBuilderPanel__indicators {
  display: flex;
}

.TableBuilderPanel__sortIndicator {
  --panda-icon-size: 1.2rem;
  --icon-color: var(--theme-character-disabled);

  width: auto;
  margin-left: var(--spacing-2xs);
  display: flex;
  align-items: center;
  flex-grow: 0;
  flex-shrink: 0;
  font-size: var(--font-size-xs);
  color: var(--theme-character-title);
}

.TableBuilderPanel__sortIndicator--active {
    width: var(--spacing-md);
    flex-direction: row;
    justify-content: flex-end;
  }

.TableBuilderPanel__sortIndicator__button {
    cursor: pointer;
    background: none;
    padding: 0;
    border: none;
    font: inherit;
    width: var(--spacing-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: var(--spacing-3xs);
    color: var(--icon-color);
  }

.TableBuilderPanel__sortIndicator__button--active {
      --icon-color: var(--theme-bg-brand-default);

      color: var(--icon-color);
      flex-direction: row;
      margin-right: 0;
      width: var(--spacing-md);
      justify-content: flex-end;
    }

.TableBuilderPanel__sortIndicator .panda-icon + .panda-icon {
    margin-top: -3px;
  }

.TableBuilderPanel__sortIndicator > *:nth-child(1) {
    overflow: hidden;
    text-overflow: ellipsis;
  }

.TableBuilderPanel__sortOrder {
  color: var(--theme-character-title);
}

.TableBuilderPanel__filterIndicator {
  --panda-icon-size: 1.2rem;
  --icon-color: var(--theme-character-disabled);

  color: var(--icon-color);
  margin-left: var(--spacing-2xs);
}

.TableBuilderPanel__filterIndicator--active {
    --icon-color: var(--theme-bg-brand-default);
  }

.TableBuilderPanel__resetButton {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: var(--spacing-md);
}

.TableBuilderPanel--active + .TableBuilderPanel {
  border-left: 1px solid var(--header-border-active-color);
}

.TableBuilder--hasHiddenSortColumns .VisibilityHeader {
    border: 1px solid var(--header-border-active-color);
  }

.VisibilityHeader {
  --icon-size: calc(var(--table-header-height) / 4);
  --icon-color: var(--header-panel-text-color);

  position: absolute;
  height: var(--table-header-height);
  width: var(--table-header-height);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 0;
}

.VisibilityHeader__filter {
    min-width: calc(var(--spacing-3xl) * 2.5);
  }

.VisibilityHeader__filter--hasActiveSort .VisibilityHeader__filterFilter .FormRowCheckboxGroup__option {
        margin-right: var(--spacing-xs);
      }

.VisibilityHeader__filter--hasActiveSort .FormRowCheckboxGroup__sortOrder {
        width: var(--spacing-xl);
      }

.VisibilityHeader__filter--exit .FormRowCheckboxGroup__sortOrder {
        left: -10px;
      }

.VisibilityHeader__filter--enter .FormRowCheckboxGroup__sortOrder {
        left: 10px;
      }

.VisibilityHeader__filter--exit-active .FormRowCheckboxGroup__sortOrder, .VisibilityHeader__filter--exit-done .FormRowCheckboxGroup__sortOrder {
        left: 0;
        width: var(--spacing-sm);
        transition: left 0.15s ease-out;
      }

.VisibilityHeader__filter--enter-active .FormRowCheckboxGroup__sortOrder, .VisibilityHeader__filter--enter-done .FormRowCheckboxGroup__sortOrder {
        left: 0;
        width: var(--spacing-xl);
        transition: left 0.15s ease-in;
      }

.VisibilityHeader__filterLabel {
    font-weight: bold;
    margin: var(--spacing-md) var(--spacing-md) var(--spacing-xs)
      var(--spacing-md);
  }

.VisibilityHeader__filterFilter {
    padding: var(--spacing-3xs) var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    color: var(--visibility-item-text-color);
  }

.VisibilityHeader__filterFilter .FormRowCheckboxGroupRow {
      flex-grow: 1;
    }

.VisibilityHeader__filterFilter .FormRowCheckboxGroup__option {
      flex-grow: 1;
      margin-right: calc(var(--spacing-lg) + var(--spacing-2xs));
    }

.VisibilityHeader__filterFilter:hover {
      background-color: var(--visibility-item-hover-background-color);
    }

.VisibilityHeader__actions {
    display: flex;
    margin: var(--spacing-md);
  }

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

.VisibilityHeader__actionsReset,
  .VisibilityHeader__actionsClear {
    margin-right: var(--spacing-sm);
  }

.VisibilityHeader__actionsClear,
  .VisibilityHeader__actionsSave {
    display: flex;
    justify-content: center;
    flex-grow: 1;
  }

.FormRowCheckboxGroup__sortOrder {
  position: relative;
}

.TableBuilderPanel--open.VisibilityHeader {
  --icon-color: var(--header-panel-open-text-color);
}

.VisibilityHeaderIcon {
  --icon-color: var(--white-02);

  border-radius: var(--table-header-height);
  height: calc(var(--table-header-height) / 2);
  width: calc(var(--table-header-height) / 2);
  background: var(--purple-02);
  display: flex;
  align-items: center;
  justify-content: center;
}

.TableBuilderPanelFilters {
  position: absolute;
  flex-grow: 1;
  border: 1px solid var(--panel-border-color);
  background: var(--panel-background-color);
  color: var(--panel-text-color);
  font-size: var(--font-size-sm);
  box-shadow: var(--panel-box-shadow);
  display: flex;
  flex-direction: column;
  z-index: var(--z-index-dropdown);
  animation: menu-in 0.2s ease-out;
  max-width: 420px;
}

.TableBuilderPanelFilters__filter {
    --input-dropdown-background-color: var(--header-background-color);
    --input-dropdown-hover-background-color: var(
      --header-background-hover-color
    );

    margin: var(--spacing-md) var(--spacing-md) 0 var(--spacing-md);
  }

.TableBuilderPanelFilters__filter:last-child {
      margin: var(--spacing-md);
    }

.TableBuilderPanelFilters__filter .FormRow {
      margin: unset;
    }

.TableBuilderPanelFilters__filterLabel {
    font-weight: bold;
    margin-bottom: var(--spacing-xs);
  }

.TableBuilderPanelFilters__switch {
    display: flex;
    grid-gap: var(--spacing-sm);
    gap: var(--spacing-sm);
  }

.TableBuilder--basic {
  overflow: hidden;
}

.TableBuilder--basic .TableBuilderHeader {
    padding-right: 0;
  }

.TableBuilder--basic .TableBuilderHeaderCell {
    border: none;
  }

.TableBuilder--basic .TableBuilderHeaderCell:last-child {
    margin-right: var(--table-scrollbar-width);
  }

.TableBuilderSelection__header,
  .TableBuilderSelection__cell {
    height: 100%;
  }

.TableBuilderSelection__header .panda-checkbox, .TableBuilderSelection__cell .panda-checkbox {
      width: 100%;
      height: 100%;
      justify-content: center;
      align-items: center;
    }

.TableBuilderBody__row--strikethrough > .TableBuilderSelection__cell {
    opacity: 1;
  }

.panda-dialog-content-main > .TableBuilder:only-child {
  height: 100%;
}

.TableBuilderWrapperContainer {
  display: flex;
  flex: 1;
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.TableBuilderWrapper {
  display: flex;
  flex: 1;
  width: 100%;
  overflow-x: auto;
}

.QueryTimeRangeInputWithPresets {
  width: 398px;
  flex-shrink: 0;
  padding-right: 6px;
}

.QueryTimeRangeInputWithPresets__menu .RootMenu {
    margin-top: 4px;
    margin-left: 8px;
  }

.QueryTimeRangeInputWithPresets__footer-currenttime {
    display: flex;
    align-items: center;
    grid-gap: 8px;
    gap: 8px;
    line-height: 24px;

    --panda-icon-color: var(--theme-character-secondary);
  }

.panda-tag.TagBubbleCount {
  padding: 0;
  margin-left: var(--spacing-2xs);
  border-radius: var(--spacing-lg);
  min-width: var(--spacing-xl);
  justify-content: center;

  --panda-tag-background-color: var(--theme-border-tag);
  --panda-tag-background-color-hover: var(--theme-border-tag);
  --panda-tag-background-color-active: var(--theme-border-tag);
}

.panda-tag.TagBubbleCount--active {
    --panda-tag-background-color: var(--theme-bg-brand-default);
    --panda-tag-background-color-hover: var(--theme-bg-brand-default);
    --panda-tag-background-color-active: var(--theme-bg-brand-default);
    --panda-tag-border-color: var(--theme-bg-brand-default);
    --panda-tag-border-color-hover: var(--theme-bg-brand-default);
    --panda-tag-border-color-active: var(--theme-bg-brand-default);
  }

.TagBubbleCount .panda-tag-label {
  text-align: center;
}

.panda-tabs .TagBubbleCount {
  cursor: pointer;
}

.TagBubbleCountWrapper {
  display: flex;
  align-items: center;
}

.ExpandableQueryEditorFormInputPortal {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: var(--z-index-modal);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.ExpandableQueryEditorFormInputPortal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--mask-color);
  z-index: -1;
}

.ExpandableQueryEditorFormInputPortal__content {
  display: flex;
  flex-direction: column;
  grid-gap: var(--spacing-xs);
  gap: var(--spacing-xs);
}

:root {
  --spinner-small-size: 16px;
  --spinner-small-ring-width: 4px;
  --spinner-medium-size: 50px;
  --spinner-medium-ring-width: 2.5px;
  --spinner-large-size: 80px;
  --spinner-large-ring-width: 2px;
  --spinner-delay: 0.4s;
}

.panda-theme-dark,
.panda-theme-light,
.panda-theme-light-cv {
  --spinner-color: var(--theme-bg-brand-default);
}

@keyframes spinner-rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes spinner-dash {
  0% {
    stroke-dasharray: 1, 240;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 90, 240;
    stroke-dashoffset: -35px;
  }

  100% {
    stroke-dasharray: 90, 240;
    stroke-dashoffset: -140px;
  }
}

@keyframes spinner-delay {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.Spinner {
  position: relative;
  width: var(--spinner-size);
  height: var(--spinner-size);
  overflow: hidden;
}

.Spinner > svg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation: spinner-rotate 2s linear infinite;
  }

.Spinner circle {
    fill: none;
    stroke: var(--spinner-color);
    stroke-width: var(--spinner-ring-width);
    stroke-miterlimit: 10;
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    animation: spinner-dash 1.5s ease-in-out infinite;
  }

.Spinner--center {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: calc(var(--spinner-size) / -2);
  margin-left: calc(var(--spinner-size) / -2);
}

.Spinner--small {
  --spinner-size: var(--spinner-small-size);
  --spinner-ring-width: var(--spinner-small-ring-width);
}

.Spinner--medium {
  --spinner-size: var(--spinner-medium-size);
  --spinner-ring-width: var(--spinner-medium-ring-width);
}

.Spinner--large {
  --spinner-size: var(--spinner-large-size);
  --spinner-ring-width: var(--spinner-large-ring-width);
}

.Spinner--delayed {
  animation: spinner-delay 0.1s var(--spinner-delay) linear 1 both;
}

.FilterButton {
  --panda-checkbox-focus-color: transparent;
}

.FilterButton .panda-button-label {
    color: var(--theme-character-primary);
  }

.AboutModal__logo {
    display: flex;
    align-items: center;
  }

.AboutModal__logo svg {
      height: 32px;
      fill: var(--theme-character-primary);
    }

.AboutModal__logo > *:nth-child(1) {
      width: 32px;
      margin-right: var(--spacing-xs);
    }

.AboutModal__logo > *:nth-child(2) {
      width: 180px;
    }

.AboutModal__version,
  .AboutModal__copyright,
  .AboutModal__licenses {
    text-align: center;
    margin: var(--spacing-xs);
  }

.ActivityCount {
  position: relative;
  width: 80px;
  height: 80px;
}

.ActivityCount__circle1 {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    background-color: var(--theme-bg-brand-default);
  }

.ActivityCount__circle2 {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
  }

.ActivityCount__label1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    line-height: 80px;
  }

.ActivityCount__label2 {
    position: relative;
    background-color: var(--theme-bg-brand-default);
    color: var(--theme-character-title);
    white-space: nowrap;
    font-size: var(--font-size-xs);
    font-weight: bold;
    display: inline-block;
    line-height: 14px;
    border-radius: 6px;
  }

.NotificationForm__threatBehaviors,
  .NotificationForm__dashboard {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-sm);
  }

.NotificationForm__selectionLink.panda-button-standard.panda-button-link:not(:hover),
.NotificationForm__selectionIconLink.panda-button-square.panda-button-tertiary:not(:hover) {
  color: var(--theme-character-brand-text);
}

.SelectThreatBehaviorsModal__filterRow {
    display: flex;
    align-items: center;
    width: 100%;
  }

.SelectThreatBehaviorsModal__filterPortal .AutocompleteTable__cellContent {
      width: 100%;
    }

.SelectThreatBehaviorsModal__filterPortal .PackageName {
      flex-grow: 0;
      flex-shrink: 0;
      height: var(--spacing-md);
      padding: 0 var(--spacing-2xs);
      line-height: var(--spacing-md);
      font-size: var(--font-size-2xs);
      width: var(--spacing-3xl);
      overflow: hidden;
      text-overflow: ellipsis;
    }

.SelectThreatBehaviorsModal__filterName {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    flex-grow: 1;
    margin-right: var(--spacing-sm);
  }

.SelectThreatBehaviorsModal .Autocomplete {
    margin-right: 0;
    margin-bottom: var(--spacing-sm);
  }

.SelectDashboardModal .DashboardOption {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

.SelectDashboardModal .DashboardOption__label {
      font-weight: 500;
      margin-bottom: var(--spacing-2xs);
    }

.SelectDashboardModal .DashboardOption__description {
      text-align: left;
    }

.SelectDashboardModal .FormRowOptionList__option .panda-icon {
  display: none;
}

.ActionRulesTable__nameColumn {
    font-weight: bold;
  }

.Annotations {
  height: 100%;
  overflow: auto;
  display: flex;
  flex-direction: column;
  grid-gap: var(--spacing-xs);
  gap: var(--spacing-xs);
}

.AnnotationsEditor {
  position: relative;
}

.AnnotationsEditor__actions {
    margin-top: var(--spacing-xs);
    justify-content: flex-end;
  }

#Awake {
  background: var(--theme-bg-canvas);
}

#Awake,
.Application {
  height: 100%;
}

.Application {
  display: flex;
  flex-direction: row;
  overflow: hidden;
}

.Application--amlBarCompact .panda-page-panel {
  padding-top: calc(var(--advanced-query-editor-editor-compact-height) + var(--advanced-query-editor-actions-bar-height) - var(--application-header-height));
}

.Application__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-width: 0;
}

.Application__main {
  display: flex;
  flex-grow: 1;
  overflow: hidden;
}

.Application__bar {
  display: flex;
  width: 100%;
}

.Application__menus {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  background-color: var(--light-purple-01);
  padding: 0 var(--spacing-2xl) 0 calc(var(--spacing-2xl) + var(--spacing-xs));
}

.Application__menus--item:first-child {
    margin-right: var(--spacing-lg);
  }

.Application__navbar {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: var(--z-index-navbar);
  flex-shrink: 0;
}

.Application__navbar .panda-left-rail {
    flex-grow: 1;
  }

.Application__version {
  position: absolute;
  display: flex;
  justify-content: center;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  padding-bottom: var(--spacing-2xs);
}

.Application__version .Button {
    --button-link-color: var(--theme-character-secondary);

    font-size: var(--font-size-2xs);
    white-space: nowrap;
  }

.Application__page {
  color: var(--light-text-color);
  background: var(--theme-bg-primary);
  flex-grow: 1;
  min-width: calc(1366px - var(--application-left-rail-width) - var(--spacing-4xl));
  display: flex;
  flex-direction: column;
  position: relative;

  --button-link-color: var(--theme-character-primary65);
  --application-left-rail-width: var(--panda-left-rail-closed-width);
}

.Application--navbarExpanded .Application__page {
  --application-left-rail-width: var(--panda-left-rail-open-width);
}

.Theme--light {
  color: var(--gray-07);
}

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

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

.NavBarDisabledMenu__header {
  font-weight: 500;
}

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

.panda-theme-dark,
.panda-theme-light,
.panda-theme-light-cv {
  --application-header-height: var(--panda-left-rail-header-height);
  --application-header-padding-right: 24px;
  --application-header-padding-vertical: var(--spacing-2xs);
}

.ApplicationHeader {
  display: flex;
  background: var(--theme-bg-canvas);
  height: var(--panda-left-rail-header-height);
  align-items: center;
  padding: var(--application-header-padding-vertical)
    var(--application-header-padding-right)
    var(--application-header-padding-vertical) 0;
  grid-gap: var(--spacing-xs);
  gap: var(--spacing-xs);
}

.ApplicationHeader--nano {
    justify-content: right;
  }

.ApplicationHeader__menuItem {
  display: flex;
  grid-gap: 8px;
  gap: 8px;
  align-items: center;
}

.ApplicationHeader__buttonBar {
  display: flex;
  align-items: center;
  grid-gap: var(--spacing-xs);
  gap: var(--spacing-xs);
}

.ApplicationHeader__partnerLogoButton {
  padding: var(--spacing-2xs) calc(var(--spacing-xs) - 1px);
}

.ApplicationHeader__partnerLogoButton img {
    height: var(--spacing-lg);
  }

.ApplicationHeader__partnerLogoButton .panda-button-label {
    display: flex;
    align-items: center;
    grid-gap: var(--spacing-xs);
    gap: var(--spacing-xs);
  }

.ApplicationHeader__partnerLogoButton .panda-icon {
    color: var(--theme-character-primary);
    background: var(--theme-bg-brand-default);
    height: var(--spacing-lg);
    width: var(--spacing-lg);
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

.DownloadPCAPModal--artifact .DownloadPCAPModal__input {
      padding-left: 0;
    }

.DownloadPCAPModal--artifact .DownloadPCAPModal__artifactLabel {
      font-weight: normal;
    }

.DownloadPCAPModal--artifact .DownloadPCAPModal__artifactRange {
      display: flex;
      padding: 10px 0;
      align-items: center;
      justify-content: center;
    }

.DownloadPCAPModal--artifact .DownloadPCAPModal__artifactRange .Input {
        padding-left: var(--input-horizontal-padding);
        width: calc(var(--input-horizontal-padding) + var(--spacing-3xl));
        margin-left: 5px;
        margin-right: 5px;
      }

.DownloadPCAPModal--artifact .DownloadPCAPModal__artifactRange > *:not(:last-child) {
        margin-right: 10px;
      }

.DownloadPCAPModal--artifact .DownloadPCAPModal__artifactRangeHelp {
      width: 9rem;
      text-align: center;
      background: var(--gray-07);
      color: var(--white-02);
      padding: 1rem;
      border-radius: 3px;
      line-height: 1.4;
    }

.AutocompletePortal {
  --option-text-color: var(--theme-character-title);
  --option-background: var(--theme-bg-popover);
  --option-background-active: var(--theme-bg-item-hover);

  pointer-events: none;
}

.AutocompletePortal .AutocompleteDropdown {
    position: absolute;
    pointer-events: auto;
  }

.AutocompletePortal .AutocompleteTable {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    overflow: auto;
    margin-top: 4px;
    background: var(--option-background);
    color: var(--option-text-color);
    box-shadow: var(--dropshadow-0-12-0-8-0-5);
    border: 1px solid var(--theme-border-primary);
    border-radius: var(--spacing-3xs);
  }

.AutocompletePortal .AutocompleteTable > .Spinner--small {
      margin: 13px auto;
    }

.AutocompletePortal .AutocompleteTable__match {
      display: flex;
      align-items: center;
      user-select: none;
      white-space: nowrap;
      height: var(--dropdown-item-height);
      line-height: var(--dropdown-item-height);
      padding: 0 1rem;
      position: relative;
      z-index: 2;
      cursor: pointer;
      color: var(--option-text-color);
      flex-shrink: 0;
      text-overflow: ellipsis;
      overflow: hidden;
      width: 100%;
    }

.AutocompletePortal .AutocompleteTable__match--highlighted {
        background-color: var(--option-background-active);
      }

.AvatarText {
  display: flex;
  flex-direction: row;
  position: relative;
  align-items: center;
  color: var(--theme-character-title);
}

.AvatarText__avaIcon {
    --panda-icon-size: 20px;
  }

.AvatarText__userIcon {
    --panda-icon-size: var(--spacing-sm);

    color: var(--theme-character-primary);
    border-radius: 50%;
    background: var(--theme-bg-tag-new);
    height: 22px;
    width: 22px;
    min-width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

.AvatarText__singleUserLabel {
    margin-left: var(--spacing-xs);
    white-space: nowrap;
    overflow: hidden;
  }

.AvatarText__moreIcon {
    position: absolute;
    left: 18px;
    color: var(--theme-character-primary);
    border-radius: 50%;
    border: 1px solid var(--theme-character-primary);
    background: var(--theme-bg-brand-default);
    height: 22px;
    width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

.AvatarText__moreUsersLabel {
    margin-left: calc(var(--spacing-xs) + 18px);
  }

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

.AvatarTextConciseDate .AvatarText {
    margin-top: 8px;
  }

:root {
  --badge-background-color: var(--gray-07);
  --badge-color: var(--white-01);
}

.Badge {
  font-size: var(--font-size-2xs);
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1;
  word-break: none;
  border-radius: 1rem;
  display: inline-block;
  padding: var(--spacing-3xs) var(--spacing-2xs);
  background: var(--badge-background-color);
  color: var(--badge-color);
}

.PreviewBadge {
  --badge-background-color: var(--purple-01);
}

.BarChart__chartTitle {
  font-weight: 500;
  font-family: var(--font-family);
  color: var(--gray-02);
  height: 28px;
  padding: var(--spacing-xs) var(--spacing-sm);
  text-align: left;
}

pre {
  position: relative;
  direction: ltr;
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  word-wrap: normal;
  line-height: 1.5;
  background: none;
  text-shadow: 0 1px #0000004d;
  tab-size: 2;
  hyphens: none;
  padding: 0;
  margin: 1.6rem 0;
  overflow: auto;
}

code {
  margin: auto;
  white-space: nowrap;
}

:root {
  --black-01: #000f;
  --white-01: #ffff;
  --white-02: #eef0f2;
  --gray-01: #d9dcdf;
  --gray-02: #a6aeb4;
  --gray-03: #5a6772;
  --gray-04: #344552;
  --gray-04-alpha-40: #34455266;
  --gray-05: #223444;
  --gray-06: #112435;
  --gray-06-alpha-80: #112435cc;
  --gray-07: #011627;
  --gray-07-alpha-80: #011627cc;
  --gray-07-alpha-00: #01162700;
  --light-green-01: #6bd16c;
  --green-01: #4db74e;
  --light-red-01: #fc5b63;
  --red-01: #fb3640;
  --red-01-alpha-20: #fb364033;
  --orange-01: #f79f00;
  --orange-02: #a36700;
  --yellow-01: #f8df00;
  --pink-01: #ff5078;
  --purple-01-alpha-05: #6c60ec80;
  --purple-01: #6c60ec;
  --purple-02: #4c42bf;
  --purple-03: #352f91;
  --purple-04: #2b1f70;
  --light-purple-01: #f6f5ff;
  --light-purple-02: #e4e3f5;
  --light-purple-03: #cdcce6;
  --light-purple-03-alpha-50: #cdcce680;
  --light-purple-04: #9c8cf2;
  --light-purple-04-alpha-50: #9c8cf280;
  --teal-01: #50e3c2;
  --teal-02: #15846c;
  --primary-color: var(--purple-02);
  --primary-light-color: var(--purple-01);
  --primary-dark-color: var(--purple-03);
  --dark-background-color: var(--gray-05);
  --light-background-color: var(--white-01);
  --dark-text-color: var(--gray-07);
  --light-text-color: var(--white-02);
  --stacked-bar-color-1: #ffe3b3;
  --stacked-bar-color-2: #ffa000;
  --stacked-bar-color-3: #9b6100;
  --drop-shadow-00: #01162700;
  --drop-shadow-01: #0116271a;
  --drop-shadow-02: #01162733;
  --drop-shadow-03: #0116274d;
  --drop-shadow-04: #01162766;
  --drop-shadow-05: #01162780;
  --drop-shadow-06: #01162799;
  --drop-shadow-07: #011627b3;
  --drop-shadow-08: #011627cc;
  --drop-shadow-09: #011627e6;
  --box-shadow-xs: 0 2px 4px 0 var(--drop-shadow-04);
  --box-shadow-sm: 0 3px 6px 0 var(--drop-shadow-04);
  --box-shadow-md: 0 3px 6px 2px var(--drop-shadow-06);
  --box-shadow-lg: 0 10px 10px 0 var(--drop-shadow-06);
  --box-shadow-xl: 0 10px 10px 2px var(--drop-shadow-06);
  --color-defining-artifacts: var(--purple-01);
  --color-iocs: var(--orange-01);
  --color-suspect-destinations: var(--teal-01);
  --color-threat-behaviors: var(--light-green-01);
  --color-threat-background: var(--color-iocs);
  --color-threat-text: var(--white-01);
  --color-risk-default: var(--teal-01);
  --color-risk-low: var(--green-01);
  --color-risk-medium: var(--yellow-01);
  --color-risk-high: var(--red-01);
  --threat-behavior-color: #ff5078ff;
  --suspect-destination-color: #50e3c2ff;
  --ioc-match-color: #ffa000ff;
  --characteristic-artifact-color: var(--light-purple-04);
}

.ConnectedServicesTable .TableBuilderBody__row {
    cursor: pointer;
  }

.ConnectedServicesPanel__clientId {
    display: flex;
    align-items: center;
    overflow: hidden;
    overflow-wrap: break-word;
  }

.ConnectedServicesPanel__clientId .panda-icon {
      margin-right: var(--spacing-xs);
    }

.HiddenText {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.HiddenText__text,
  .HiddenText__actions {
    display: flex;
    flex-direction: row;
  }

.HiddenText__text {
    flex: 2;
    max-width: 120px;
  }

.HiddenText__text .panda-icon {
      margin-right: var(--spacing-xs);
    }

.HiddenText__actions {
    flex: 1;
    justify-content: flex-end;
  }

:root {
  --copyplaceholder-line-height: var(--font-size-xl);
  --copyplaceholder-height: 6px;
}

.panda-theme-dark,
.panda-theme-light,
.panda-theme-light-cv {
  --copyplaceholder-color: var(--theme-bg-item-hover);
}

.CopyPlaceholder {
  height: var(--copyplaceholder-line-height);
  position: relative;
}

.CopyPlaceholder::after {
  content: "";
  position: absolute;
  width: 100%;
  top: 50%;
  margin-top: calc(calc(var(--copyplaceholder-height) / 2) * -1);
  left: 0;
  right: 0;
  height: var(--copyplaceholder-height);
  background-color: var(--copyplaceholder-color);
  border-radius: 2px;
}

.CopyPlaceholder--sm {
  width: 25%;
}

.CopyPlaceholder--md {
  width: 50%;
}

.CopyPlaceholder--lg {
  width: 75%;
}

.CopyPlaceholder--xl {
  width: 100%;
}

.panda-page-header-title-label {
  --copyplaceholder-line-height: 32px;
}

.panda-page-header-title-label .CopyPlaceholder {
    width: 240px;
  }

.Count {
  display: flex;
  align-items: center;
}

.Count__count {
  font-weight: bold;
  font-size: var(--font-size-sm);
  flex-basis: 60px;
  flex-shrink: 0;
  margin-right: var(--spacing-2xs);
}

.Count__count--red {
    color: var(--red-01);
  }

.Count__label {
  font-size: var(--font-size-xs);
  flex-grow: 1;
}

.Dashboard {
  --panda-page-panel-width: 650px;
}

@media only screen and (max-width: 1600px) {

.Dashboard {
    --panda-page-panel-width: 450px
}
  }

.Dashboard .panda-page-panel {
    overflow: auto;
    display: flex;
    flex-direction: column;
  }

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

.DashboardNavbarItemTooltip b {
    margin-bottom: var(--spacing-sm);
  }

.DashboardWidgets {
  display: grid;
  flex-grow: 1;
  grid-gap: var(--spacing-lg);
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  grid-auto-rows: max-content;
}

.DashboardWidgets--hidden {
    display: none;
  }

.DashboardWidgets__left,
  .DashboardWidgets__right {
    position: relative;
  }

.DashboardWidgets__left .DashboardWidget,
    .DashboardWidgets__left .DashboardVisualizationCreate,
    .DashboardWidgets__right .DashboardWidget,
    .DashboardWidgets__right .DashboardVisualizationCreate {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: calc(50% - var(--grid-gap) / 2);
      z-index: 1;
    }

.DashboardWidgets__left .DashboardWidget:last-of-type, .DashboardWidgets__left .DashboardVisualizationCreate:last-of-type, .DashboardWidgets__right .DashboardWidget:last-of-type, .DashboardWidgets__right .DashboardVisualizationCreate:last-of-type {
        top: auto;
        bottom: 0;
        z-index: 0;
      }

.DashboardWidgets__left .DashboardVisualization,
    .DashboardWidgets__left .DashboardFilterPanel,
    .DashboardWidgets__right .DashboardVisualization,
    .DashboardWidgets__right .DashboardFilterPanel {
      flex-grow: 0;
      flex-shrink: 0;
      height: 100%;
      position: relative;
      z-index: 0;
    }

.DashboardWidgets__left .DashboardVisualization, .DashboardWidgets__right .DashboardVisualization {
      z-index: 1;
    }

.DashboardWidgets__left--focused .DashboardWidget, .DashboardWidgets__right--focused .DashboardWidget {
        z-index: 0;
      }

.DashboardWidgets__left--focused .DashboardWidget--focused, .DashboardWidgets__right--focused .DashboardWidget--focused {
          height: 100%;
          z-index: 1;
        }

.DashboardWidgets__left--focused .DashboardWidget--focused .DashboardVisualization, .DashboardWidgets__right--focused .DashboardWidget--focused .DashboardVisualization {
            height: calc(50% - var(--grid-gap) / 2);
          }

.DashboardWidgets:not(.DashboardWidgets--fullscreen) .DashboardWidgetAnimation--enter:nth-child(1) .DashboardContainerPivotTable,
      .DashboardWidgets:not(.DashboardWidgets--fullscreen) .DashboardWidgetAnimation--enter:nth-child(1) .DashboardFilterPanel {
        transform: translateY(-100%);
      }

.DashboardWidgets:not(.DashboardWidgets--fullscreen) .DashboardWidgetAnimation--enter-active:nth-child(1) .DashboardContainerPivotTable,
      .DashboardWidgets:not(.DashboardWidgets--fullscreen) .DashboardWidgetAnimation--enter-active:nth-child(1) .DashboardFilterPanel {
        transform: translateY(0);
        transition: 0.2s ease-out transform;
      }

.DashboardWidgets:not(.DashboardWidgets--fullscreen) .DashboardWidgetAnimation--exit:nth-child(1) {
      height: 100%;
    }

.DashboardWidgets:not(.DashboardWidgets--fullscreen) .DashboardWidgetAnimation--exit:nth-child(1) .DashboardContainerPivotTable,
      .DashboardWidgets:not(.DashboardWidgets--fullscreen) .DashboardWidgetAnimation--exit:nth-child(1) .DashboardFilterPanel {
        transform: translateY(0%);
      }

.DashboardWidgets:not(.DashboardWidgets--fullscreen) .DashboardWidgetAnimation--exit-active:nth-child(1) {
      height: 100%;
    }

.DashboardWidgets:not(.DashboardWidgets--fullscreen) .DashboardWidgetAnimation--exit-active:nth-child(1) .DashboardContainerPivotTable,
      .DashboardWidgets:not(.DashboardWidgets--fullscreen) .DashboardWidgetAnimation--exit-active:nth-child(1) .DashboardFilterPanel {
        transform: translateY(-100%);
        transition: 0.2s ease-out transform;
      }

.DashboardWidgets:not(.DashboardWidgets--fullscreen) .DashboardWidgetAnimation--enter:nth-child(2) .DashboardVisualization {
        transform: translateY(100%);
      }

.DashboardWidgets:not(.DashboardWidgets--fullscreen) .DashboardWidgetAnimation--enter-active:nth-child(2) .DashboardVisualization {
        transform: translateY(0);
        transition: 0.2s ease-out transform;
      }

.DashboardWidgets:not(.DashboardWidgets--fullscreen) .DashboardWidgetAnimation--exit:nth-child(2) {
      height: 100%;
    }

.DashboardWidgets:not(.DashboardWidgets--fullscreen) .DashboardWidgetAnimation--exit:nth-child(2) .DashboardVisualization {
        transform: translateY(0);
      }

.DashboardWidgets:not(.DashboardWidgets--fullscreen) .DashboardWidgetAnimation--exit-active:nth-child(2) {
      height: 100%;
    }

.DashboardWidgets:not(.DashboardWidgets--fullscreen) .DashboardWidgetAnimation--exit-active:nth-child(2) .DashboardVisualization {
        transform: translateY(100%);
        transition: 0.2s ease-out transform;
      }

.DashboardWidgets:not(.DashboardWidgets--fullscreen) .DashboardWidgetAnimation--enter,
    .DashboardWidgets:not(.DashboardWidgets--fullscreen) .DashboardWidgetAnimation--enter-active {
      z-index: 2;
    }

.DashboardWidgets:not(.DashboardWidgets--fullscreen) .DashboardWidgetAnimation--exit,
    .DashboardWidgets:not(.DashboardWidgets--fullscreen) .DashboardWidgetAnimation--exit-active {
      z-index: 2;
    }

.DashboardWidgets:not(.DashboardWidgets--fullscreen) .DashboardWidgetAnimation--exit .DashboardVisualization, .DashboardWidgets:not(.DashboardWidgets--fullscreen) .DashboardWidgetAnimation--exit-active .DashboardVisualization {
        height: calc(50% - var(--grid-gap) / 2);
      }

.DashboardWidgets:not(.DashboardWidgets--fullscreen) .DashboardWidgetAnimation--exit .DashboardContainerPivotTable,
      .DashboardWidgets:not(.DashboardWidgets--fullscreen) .DashboardWidgetAnimation--exit .DashboardFilterPanel,
      .DashboardWidgets:not(.DashboardWidgets--fullscreen) .DashboardWidgetAnimation--exit-active .DashboardContainerPivotTable,
      .DashboardWidgets:not(.DashboardWidgets--fullscreen) .DashboardWidgetAnimation--exit-active .DashboardFilterPanel {
        height: calc(50% + var(--grid-gap) / 2);
      }

.DashboardWidget {
  --control-height: 4rem;

  overflow: hidden;
  opacity: 1;
  transition: 0.2s ease-out opacity;
}

.DashboardWidget--fullscreen {
    display: flex;
    height: 100%;
    width: 100%;
  }

.DashboardWidget--fullscreen .DashboardVisualization {
      width: 0;
    }

.DashboardWidget--fullscreen .KpiChart .KpiRow--pillCountLabel,
      .DashboardWidget--fullscreen .KpiChart .KpiRow--pillName,
      .DashboardWidget--fullscreen .KpiChart .KpiRow--pillCountChange {
        font-size: var(--font-size-sm);
      }

.DashboardWidget--hidden {
    display: none;
  }

.DashboardWidget__hidden {
    display: none;
  }

.DashboardWidget--collapsed {
    opacity: 0;
  }

.DashboardVisualization {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
  background: var(--theme-bg-primary);
  border: 1px solid var(--theme-border-primary);
}

.DashboardVisualization__empty {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
  }

.DashboardVisualization__option {
    color: var(--theme-character-disabled);
  }

.DashboardVisualization__option:not(:last-child) {
      margin-right: var(--spacing-xs);
    }

.DashboardVisualization__placeholder {
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;

    --copyplaceholder-height: var(--spacing-2xs);
    --copyplaceholder-color: var(--theme-chracter-primary);
  }

.DashboardVisualization__placeholder .CopyPlaceholder {
      opacity: 0.5;
    }

.DashboardVisualization__error {
    height: 100%;
  }

.DashboardVisualization__loading {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

.DashboardVisualization__breadcrumbArrow {
    margin-right: var(--spacing-sm);
  }

.DashboardVisualization__breadcrumbClear {
    margin-left: var(--spacing-3xs);
  }

.DashboardVisualization__help {
    color: var(--theme-character-primary65);
  }

.DashboardVisualization__breadcrumb {
    display: flex;
    align-items: center;
  }

.DashboardVisualization__top {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-sm) var(--spacing-md);
    height: var(--control-height);
  }

.DashboardVisualization__configureTitle {
    margin-left: var(--spacing-sm);
  }

.DashboardVisualization__topControls {
    display: flex;
    align-items: center;
  }

.DashboardVisualization__topControls .panda-button {
      padding-left: 0;
      padding-right: 0;
    }

.DashboardVisualization__topControls .panda-button:not(:last-child) {
        margin-right: var(--spacing-xs);
      }

.DashboardVisualization__title {
    color: var(--theme-character-title);
    font-weight: 500;
    font-size: var(--font-size-md);
  }

.DashboardVisualization__visualization {
    flex-grow: 1;
    max-height: calc(100% - 2 * var(--control-height));
    position: relative;
  }

.DashboardVisualization__axes {
    --panda-icon-size: var(--spacing-sm);

    display: flex;
    flex-grow: 1;
    align-items: center;
  }

.DashboardVisualization__controls {
    height: var(--control-height);
    flex-shrink: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

.DashboardVisualization__controls .panda-button-group {
      grid-gap: var(--spacing-2xs);
    }

.DashboardVisualization .Mask {
    --mask-color: var(--theme-bg-primary);
    --mask-opacity: 50%;
  }

.DashboardVisualizationControls {
  height: 100%;
  display: flex;
  align-items: center;
}

.DashboardVisualizationControls:last-child {
    margin-right: var(--spacing-xs);
  }

.DashboardVisualizationControls .panda-button {
    --panda-icon-size: var(--spacing-md);

    position: relative;
  }

.DashboardVisualizationControls__filtered {
    position: absolute;
    top: 3px;
    right: 7px;
    border-radius: 50%;
    border: 1px solid var(--theme-bg-primary);
    height: var(--spacing-xs);
    width: var(--spacing-xs);
    background-color: var(--theme-bg-info-default);
  }

.DashboardVisualizationControls__active.panda-button {
    color: var(--theme-bg-brand-active);
  }

.DashboardContainerFilterPanel.DashboardFilterPanel {
  height: calc(50% + var(--grid-gap) / 2);
}

.DashboardContainerFilterPanel .panda-page-panel {
    width: 100%;
  }

.DashboardSidebarFilterPanel .DashboardFilterPanel__fields {
    overflow: auto;
    flex-grow: 1;
  }

.DashboardContainerPivotTable {
  height: calc(50% + var(--grid-gap) / 2);
}

.DashboardContainerPivotTable .panda-page-panel {
    width: 100%;
  }

.DashboardContainerPivotTable .PivotTable {
    flex-grow: 1;
  }

.DashboardFilterPanel {
  display: flex;
  flex-direction: column;
  background: var(--theme-bg-canvas);
}

.DashboardFilterPanel .FormRowListSelect:not(:last-child) {
    margin-bottom: var(--spacing-2xs);
  }

.DashboardFilterPanel__settingsSelection {
    margin-bottom: var(--spacing-md);
  }

.DashboardFilterPanel__settingsSelection .panda-button-dropdown {
      width: 100%;
    }

.DashboardFilterPanel .FormRow__input .FormRow {
      width: 100%;
      margin-bottom: var(--spacing-xs);
    }

.DashboardFilterPanel .Message {
    margin-bottom: var(--spacing-xs);
  }

.DashboardFilterPanel .Message--info {
      background-color: var(--gray-02);
      color: var(--gray-06);
    }

.DashboardFilterPanel .Message__icon {
      top: calc(50% - var(--spacing-xs));
    }

.DashboardFilterPanel__form {
    display: flex;
    flex-direction: column;
    overflow: auto;
    flex-grow: 1;
  }

.DashboardFilterPanel__eaqlDescriptionField {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--spacing-sm);
  }

.DashboardFilterPanel__eaqlDescriptionField span:first-child {
      font-weight: bold;
    }

.DashboardFilterPanel__visualization {
    margin: var(--spacing-md);
    margin-right: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

.DashboardFilterPanel__visualization .FormRowRadioGroup__option > span {
      white-space: pre;
    }

.DashboardFilterPanel__visualization > span {
      font-size: var(--font-size-2xs);
      cursor: pointer;
      text-decoration: underline;
      white-space: pre-line;
    }

.DashboardFilterPanel__visualization > span:hover {
        text-decoration: none;
      }

.DashboardFilterPanel__visualization .FormRow__label {
      display: none;
    }

.DashboardFilterPanel__dimensionTitle {
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
    font-size: 16px;
    color: var(--theme-character-title);
  }

.DashboardFilterPanel__dimensionOptions {
    margin-bottom: var(--spacing-md);
    position: relative;
  }

.DashboardFilterPanel__axes {
    background-color: var(--purple-02);
    flex-grow: 1;
    height: 10rem;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
  }

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

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

.DashboardManagementItem span:first-child {
    font-weight: bold;
  }

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

.DashboardVisualizationCreate__top {
    background-color: var(--purple-03);
    padding: var(--spacing-sm) var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: var(--font-size-sm);
    position: relative;

    --button-height: var(--spacing-md);
    --button-width: var(--spacing-md);
  }

.DashboardVisualizationCreate__actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    background-color: var(--purple-04);
    font-size: var(--font-size-xs);

    --button-height: var(--spacing-lg);
  }

.DashboardVisualizationCreate__actions .Button--primary {
      --button-background-color: var(--purple-03);
      --button-hover-background-color: var(--purple-02);
    }

.DashboardVisualizationCreate__actions .Button--default {
      --button-background-color: var(--purple-01);
      --button-hover-background-color: var(--light-purple-04);
    }

.DashboardVisualizationCreate__body {
    flex-grow: 1;
    padding: var(--spacing-sm) var(--spacing-md) 0 var(--spacing-md);
    background-color: var(--purple-04);
    display: flex;
    flex-direction: column;
    font-size: var(--font-size-xs);
  }

.DashboardVisualizationCreate__form {
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm) var(--spacing-md);
    flex-grow: 1;
    background-color: var(--purple-03);
  }

.DashboardVisualizationCreate__form .FormRowRadioGroup__option {
      margin-bottom: var(--spacing-sm);
    }

.DashboardVisualizationCreate__form .FormRow label {
      font-size: var(--font-size-xs);
      font-weight: normal;
      color: var(--white-02);
    }

.DashboardVisualizationCreate__form .FormRow__label {
      flex: 0;
      min-width: unset;
      display: flex;
      align-items: center;
    }

.ExportDashboard .FormRow {
    margin-top: var(--spacing-md);
  }

.ExportDashboard .FormRow__label {
    display: none;
  }

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

.EditDashboard__actions .Button {
    font-size: var(--font-size-xs);
    color: var(--red-01);
    text-decoration: underline;
  }

.EditDashboard__actions .Button:hover {
      text-decoration: none;
    }

.DefaultDashboardDescription {
  white-space: pre-line;
}

.EaqlVisualization {
  flex-grow: 1;
}

.VisualizationSourceModal__description {
    margin-bottom: var(--spacing-sm);
  }

.VisualizationSourceModal .Modal__body {
    overflow: visible;
    display: flex;
    flex-direction: column;
  }

.VisualizationSourceModal .FormRowOptionList {
    overflow: auto;
  }

.VisualizationSourceModal .FormRowOptionList .panda-icon {
      display: none;
    }

.VisualizationSourceModal .FormRowOptionList--selected .VisualizationSourcePill {
        border-color: var(--theme-bg-brand-hover);
      }

.VisualizationSourceModal .FormRowOptionList--selected:hover .VisualizationSourcePill {
          border-color: var(--theme-border-primary);
        }

.VisualizationSourceModal .FormRowOptionList__label {
      display: flex;
      align-items: center;
      margin-right: 0;
    }

.VisualizationSourceModal .SearchInput {
    margin-bottom: var(--spacing-sm);
  }

.VisualizationSourcePill {
  padding: var(--spacing-3xs) var(--spacing-xs);
  border: 1px solid var(--theme-border-primary);
  border-radius: var(--borderRadius-xs);
  font-weight: bold;
  font-size: var(--font-size-xs);
  color: var(--theme-character-title);
}

.VisualizationSourceOption {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin-right: var(--spacing-md);
  align-items: flex-start;
  color: var(--theme-character-title);
}

.VisualizationSourceOption__label {
    font-weight: 500;
    margin-bottom: var(--spacing-2xs);
  }

.VisualizationSourceOption__description {
    text-align: left;
  }

.EaqlVisualizationContainer {
  display: flex;
  height: 100%;
}

.EaqlVisualizationContainer .PivotTable {
    flex-basis: 40rem;
  }

.VisualizationSourceTooltip {
  display: flex;
  flex-direction: column;
  max-width: 248px;
  white-space: pre-line;
}

.VisualizationSourceTooltip > :first-child {
    margin-bottom: var(--spacing-sm);
  }

.FilterPanelOption {
  display: flex;
  align-items: center;
}

.FilterPanelOption__filtered {
    font-style: italic;
    color: var(--gray-01);
    font-size: var(--font-size-2xs);
    margin-left: var(--spacing-xs);
  }

.DashboardManagement__nameColumn {
    --link-color: var(--theme-character-title);
  }

.DashboardManagement__descriptionColumn {
    height: 44px;
  }

.Dashboard .PivotTable__row {
  padding: var(--spacing-xs) 0;
  font-size: var(--font-size-xs);
  line-height: var(--font-size-sm);
}

.DashboardCvpRedirectInfo {
  margin-bottom: var(--spacing-xs);
}

@keyframes search-description-fade-in {
  0% {
      opacity: 0;
  }

  50% {
      opacity: 0;
  }

  100% {
      opacity: 1;
  }
}

.DeviceAutocompleteFilter {
  position: relative;
  width: 100%;
}

.DeviceAutocompleteFilter .FormRowListSelect:not(:last-child) {
    margin-bottom: 0;
  }

.DeviceAutocompleteFilter:not(:last-child) {
    margin-bottom: var(--spacing-2xs);
  }

.DeviceAutocompleteFilter__searchDescription {
    position: absolute;
    top: 6px;
    left: 48px;
    font-size: 14px;
    pointer-events: none;
    color: var(--theme-character-secondary);
    animation: 2s ease 0s normal forwards 1 search-description-fade-in;
  }

.panda-theme-dark,
.panda-theme-light,
.panda-theme-light-cv {
  --data-table-row-background-color: var(--theme-bg-secondary);
  --data-table-row-hover-background-color: var(--theme-bg-table-hover);
  --data-table-row-selected-background-color: var(--theme-bg-table-select);
  --data-table-header-background-color: var(--theme-bg-table-header);
  --data-table-sort-indicator-fill: var(--theme-character-primary);
  --data-table-row-border-bottom-color: var(--theme-bg-canvas);
}

.DataTable {
  display: flex;
  flex-direction: column;
  position: relative;
}

.DataTable .ReactVirtualized__Table__Grid:focus {
    outline: 0;
  }

.DataTable .Table__actions a {
      color: var(--data-table-row-icon-fill);
    }

.DataTable .Table__action {
    margin-right: 0;
    margin-left: 10px;
    cursor: pointer;
    text-transform: uppercase;
  }

.DataTable .Table__action:first-child {
      margin-left: 0;
    }

.DataTable .Table__action--active {
      --row-icon-fill: var(--gray-01);
    }

.DataTable .Table__action .Icon {
      --icon-color: var(--data-table-row-icon-fill);
      --icon-size: 1.5rem;
    }

.DataTable .Table__action--disabled {
      opacity: 0.25;
    }

.DataTable .JumpButton {
    position: absolute;
    right: 20px;
    z-index: 1000;
    bottom: 10px;
  }

.DataTable .panda-alert-prompt {
    text-align: left;
  }

.Table__row,
.DataTable__row,
.DataTable__rangeRow {
  --row-icon-fill: var(--gray-06);

  display: flex;
  border-bottom: 1px solid var(--data-table-row-border-bottom-color);
  outline: none;
  background: var(--data-table-row-background-color);
}

.Table__row:hover:not(.DataTable__row--header):not(.Table__row--header):not(.DataTable__row--selected):not(.Table__row--selected), .DataTable__row:hover:not(.DataTable__row--header):not(.Table__row--header):not(.DataTable__row--selected):not(.Table__row--selected), .DataTable__rangeRow:hover:not(.DataTable__row--header):not(.Table__row--header):not(.DataTable__row--selected):not(.Table__row--selected) {
    --row-icon-fill: var(--white-02);

    background-color: var(--data-table-row-hover-background-color);
    box-shadow: var(--box-shadow-xs);
    z-index: 1;
  }

.DataTable__row--clickable {
  cursor: pointer;
}

.Table__row--header,
.DataTable__row--header {
  font-weight: bold;
  background-color: var(--data-table-header-background-color);
}

.Table__row--selected,
.DataTable__row--selected {
  z-index: 2;
  background-color: var(--data-table-row-selected-background-color);
}

.Table__sortableHeaderColumn,
.DataTable__th.ReactVirtualized__Table__sortableHeaderColumn {
  cursor: pointer;
}

.Table__th,
.DataTable__th,
.Table__td,
.DataTable__td {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  outline: 0;
  margin: 0 var(--spacing-xs);
  text-align: left;
}

.Table__th:focus, .DataTable__th:focus, .Table__td:focus, .DataTable__td:focus {
    outline: 0;
  }

.Table__th,
.DataTable__th {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.Table__headerLabel,
.DataTable__headerLabel {
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  color: var(--theme-character-title);
  font-size: 14px;
  line-height: 22px;
}

.DataTable__th > span,
.Table__th > span,
.DataTable__headerLabel > span,
.Table__headerLabel > span,
.DataTable__td:not(.DataTable__td--dynamic) > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.Table__empty,
.DataTable__empty {
  padding: 20px;
  text-align: center;
}

.DataTable__toolbar {
  display: flex;
}

.DataTable__actions {
  margin-left: auto;
}

.DataTable__actions .Button {
    padding-top: 6px;
    padding-bottom: 8px;
    height: var(--input-height);
  }

.DataTable__actions .Button:not(:first-child) {
      margin-left: 5px;
    }

.DataTable__filter {
  flex-grow: 1;
}

.Table__filter {
  margin: 0 10px;
}

.DataTable__filter + .DataTable__actions {
  margin-left: var(--spacing-2xs);
}

.DataTable__data {
  position: relative;
  flex-grow: 1;
  overflow: hidden;
}

.Table__sortIndicator,
.DataTable__sortIndicator {
  flex-shrink: 0;
  margin-left: var(--spacing-2xs);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
}

.Table__sortIndicator .Icon, .DataTable__sortIndicator .Icon {
    --icon-color: var(--data-table-sort-indicator-fill);
    --icon-size: 0.8rem;
  }

.Table__sortIndicator .Icon + .Icon, .DataTable__sortIndicator .Icon + .Icon {
      margin-top: -3px;
    }

.Table__sortIndicator--active .Icon, .DataTable__sortIndicator--active .Icon {
    --icon-color: var(--purple-01);
  }

.DataTable__rangeRow {
  border-bottom: 1px solid var(--gray-04);
}

.DataTable__rangeRow .RangesHistogram {
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    bottom: 5px;
    z-index: 1;
  }

.DataTable__rangeRow .DataTable__row {
    background: transparent !important;
    position: relative;
    z-index: 2;
  }

.DataTable__rangeRow:hover {
    background-color: var(--data-table-row-hover-background-color);
    box-shadow: var(--box-shadow-lg);
  }

.InfiniteScrollingTable {
  flex-grow: 1;
}

.InfiniteScrollingTable__sortableHeaderWrapper {
  display: flex;
  align-items: center;
}

.InfiniteScrollingTable__sortableHeaderWrapper > span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

.InfiniteScrollingTable__row--placeholder {
  pointer-events: none;
}

.InfiniteScrollingTable__placeholderCell > div {
  background: var(--gray-03);
  font-size: var(--font-size-3xs);
  width: 50%;
}

.InfiniteScrollingTable__placeholderCell > div:first-child {
  margin-bottom: var(--spacing-xs);
  width: 45%;
}

.panda-dialog-content-main > .DataTable:only-child {
  height: 100%;
}

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

.ExceptionsTable__typeWarning {
    --icon-color: var(--light-purple-04);

    margin-left: var(--spacing-xs);
  }

.ExceptionModal .FormRow__input {
    align-items: stretch;
  }

.ExceptionModal__referenceIdentifier .FormRowValue {
    border: 1px solid var(--theme-border-primary);
  }

.ExceptionModal__modelPortal .AutocompleteTable__cellContent {
    width: 100%;
  }

.ExceptionModal__filterRow {
  display: flex;
  align-items: center;
  width: 100%;
}

.ExceptionModal__filterRecent {
  color: var(--theme-character-secondary);
  margin-right: var(--spacing-xs);
}

.ExceptionModal__filterName {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  flex-grow: 1;
  margin-right: var(--spacing-sm);
}

.ExceptionModal__unrecognizedValue .FormRowQueryEditor .CodeMirror-scroll, .ExceptionModal__conditionValue .FormRowQueryEditor .CodeMirror-scroll, .ExceptionModal__preconditionValue .FormRowQueryEditor .CodeMirror-scroll, .ExceptionModal__ipsExpression .FormRowQueryEditor .CodeMirror-scroll, .ExceptionModal__deviceTagsExpression .FormRowQueryEditor .CodeMirror-scroll, .ExceptionModal__domainsExpression .FormRowQueryEditor .CodeMirror-scroll, .ExceptionModal__cidrRangesExpression .FormRowQueryEditor .CodeMirror-scroll, .ExceptionModal__asnDescriptionsExpression .FormRowQueryEditor .CodeMirror-scroll {
    max-height: 228px;
  }

.ExceptionsTableExpandedRow {
  flex-direction: column;
  overflow: visible;
  display: block;
}

.DefinitionDetails__empty,
.ExceptionsTable__empty {
  opacity: 0.5;
}

.DeploymentSetList {
  display: flex;
  flex-direction: column;
  max-height: 100%;
  grid-gap: var(--spacing-md);
  gap: var(--spacing-md);

}

.DeploymentSetList__header {
    flex-grow: 0;
    display: flex;
    grid-gap: 8px;
    gap: 8px;
    flex-direction: column;
  }

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

.DeploymentSetList__selectionHeader {
    display: flex;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 8px;
  }

.DeploymentSetList__customers {
    overflow: auto;
    min-height: 0;
    flex-grow: 1;
    margin-bottom: 24px;
  }

.DeploymentSetList__menu .Menu {
      padding: 3px 0;
      max-height: 360px;
      overflow: auto;
    }

.DeploymentSetList__backButton.panda-button-square {
    padding-right: 16px;
  }

.DeploymentSetList__backButton.panda-button-square .panda-button-icon {
      --panda-icon-size: 16px;

      color: var(--panda-page-header-title-color);
    }

.DeploymentCustomer__header {
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 8px;
  }

.DeploymentCustomer__name {
    display: flex;
    grid-gap: var(--spacing-xs);
    gap: var(--spacing-xs);
  }

.DeploymentCustomer__customer {
    color: var(--theme-character-secondary);
    font-weight: normal;
  }

.DeploymentCustomer__deployments {
    margin: 0 0 24px 0;
  }

.DeploymentCustomer:last-of-type .DeploymentCustomer__deployments {
    margin-bottom: 0;
  }

.DeploymentRow__nodesColumn > *:nth-child(1) {
      font-weight: bold;
    }

.DeploymentRow__nodesColumn > *:nth-child(2) {
      color: var(--theme-character-primary65);
      font-size: 12px;
      line-height: 20px;
    }

.DeploymentSetModal {
  height: 480px;
  width: 800px;
}

.DeploymentSetModal .panda-dialog-content {
    padding: 24px;
  }

.DeploymentSetModal .panda-dialog-content-main {
    overflow: visible;
  }

.DeploymentSetMenu.Menu {
  height: 480px;
  width: 800px;
  padding: 24px 24px 0;
}

.DetailsSidebar {
  display: flex;
  flex-direction: column;
  background: var(--gray-07);
  border-left: 1px solid var(--gray-05);
  min-width: 300px;
}

.DetailsSidebar__header {
    padding: var(--spacing-lg) var(--grid-gap) var(--spacing-md)
      var(--spacing-2xl);
    display: flex;
    flex-direction: row;
    flex-shrink: 0;
    justify-content: space-between;
  }

.DetailsSidebar__headerMain {
    display: flex;
    flex-direction: column;
    max-width: 100%;
  }

.DetailsSidebar__previous {
    font-size: var(--font-size-xs);
    position: relative;
  }

.DetailsSidebar__previous a {
      color: inherit;
    }

.DetailsSidebar__toolbar {
    --button-background-color: var(--gray-04);
    --button-hover-background-color: var(--gray-03);

    display: flex;
    flex-direction: row;
  }

.DetailsSidebar__toolbar .Button--icon {
      padding: 0;
      width: var(--spacing-xl);
      height: var(--spacing-xl);
      border-radius: 100%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

.DetailsSidebar__toolbar .Button--icon .Icon {
        --button-icon-size: var(--spacing-md);

        margin: 0;
      }

.DetailsSidebar__toolbar .Button--icon .Icon[data-icon="navigation-carrot"] {
        --button-icon-size: var(--spacing-sm);

        transform: rotate(90deg);
      }

.DetailsSidebar__title {
    font-size: var(--font-size-lg);
    font-weight: bold;
    display: flex;
    align-items: center;
  }

.DetailsSidebar__title .DeviceRef {
      max-width: 30rem;
    }

.DetailsSidebar__title a {
      text-decoration: none;
    }

.DetailsSidebar__content {
    flex-grow: 1;
    height: 0;
    display: flex;
    flex-direction: column;
    position: relative;
  }

.DetailsSidebar__content .panda-taglist {
      margin-top: var(--spacing-sm);
      margin-bottom: var(--spacing-sm);
    }

.DetailsContent {
  overflow: auto;
  padding: var(--spacing-lg) var(--spacing-2xl) 0 var(--spacing-lg);
}

.DeviceDetails {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

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

.DeviceDetails__title {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-04);
  }

.DeviceDetails__sidebar {
    padding: 12px 0 16px;
  }

.DeviceDetails__content {
    padding: 12px 16px 16px;
  }

/* Needs to be at the top level as the tooltip will display outside
   the device details container.
*/

.DeviceOverrideIndicator {
  --icon-size: 2rem;

  background: var(--purple-01);
  height: 2rem;
  width: 2rem;
  border-radius: 1rem;
}

.DeviceOverrideIndicator__title .DeviceOverrideIndicator__name {
    font-weight: bold;
  }

.DeviceOverrideIndicator__title {
    margin-bottom: var(--spacing-xs);
  }

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

.DeviceSummary__carbonBlack {
    font-size: var(--font-size-md);
    font-weight: 500;
    padding-bottom: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    border-bottom: 1px solid var(--gray-04);
  }

.DeviceSummary__carbonBlack--title {
      font-size: var(--font-size-sm);
      font-weight: bold;
      border-bottom: none;
      margin-bottom: var(--spacing-md);
    }

.DeviceSummary__carbonBlack--title .Dropdown__label {
        font-weight: bold;
        font-size: var(--font-size-sm);
        color: var(--purple-01) !important;
      }

.DeviceSummary__title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--gray-04);
  }

.DeviceSummary__sectiontitle {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
  }

.DeviceSummary__titlePortal a {
      color: var(--light-text-color);
    }

.DeviceSummary__labelsContainer {
    width: 100%;
  }

.DeviceSummary__labels {
    margin-top: var(--spacing-xs);
    margin-left: var(--spacing-xs);
  }

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

.DeviceSummary__actions {
    padding: var(--spacing-3xs);
  }

.DeviceCard {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
}

.DeviceCard__attribute {
    display: flex;
    align-items: flex-start;
    flex-basis: 50%;
  }

.DeviceCard__icon {
    width: 40px;
    height: 50px;
    margin-right: 10px;
  }

.DeviceCard__icon .Icon {
      --icon-size: 40px;
      --icon-color: var(--gray-02);
    }

.DeviceCard__label {
    text-transform: uppercase;
    color: var(--gray-02);
    font-size: var(--font-size-sm);
  }

.DeviceCard__value {
    font-size: var(--font-size-large);
  }

.DeviceDetails--graphContainer {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.DeviceDetails--graphTitle {
  font-size: var(--font-size-sm);
  color: var(--white-02);
  margin-bottom: var(--spacing-sm);
}

.FingerprintsTable {
  height: 100%;
}

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

.FingerprintsTable__info .Icon {
      --icon-color: var(--gray-04);
    }

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

.FingerprintsTable__artifacts .ValueTooltip {
      max-width: 100%;
      font-weight: bold;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

.FingerprintsTable__artifactDropdown {
    font-weight: normal;
  }

.FingerprintsTable .ThreatIndicator {
    flex-shrink: 0;
    flex-grow: 0;
  }

.DeviceGraphViewModal {
  --panda-dialog-width: 1024px;
}

.DeviceGraphViewModal .panda-dialog-content-main,
  .DeviceGraphViewModal .GraphNodeListContainer {
    height: 100%;
  }

.DeviceGraphViewModal--count {
    font-weight: normal;
  }

.DeviceGraphView {
  height: 100%;
}

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

.AssociatedApplicationsTable__versionCount {
  margin-left: var(--spacing-2xs);
  color: var(--theme-character-secondary);
}

.AssociatedApplicationsModal__title {
    align-items: center;
    display: flex;
    flex-direction: row;
    grid-gap: var(--spacing-xs);
    gap: var(--spacing-xs);
  }

.DeviceSummaryAttributes__os {
  display: flex;
}

.DeviceSummaryAttributes__os .WithIndicator {
    margin-right: var(--spacing-xs);
  }

.DeviceSummaryAttributes__os > .Icon {
    margin-right: var(--spacing-xs);
    height: 18px;
    width: 18px;
  }

.DeviceSummaryAttributes__commonValue span:nth-child(2) {
    margin-left: var(--spacing-2xs);
    font-size: var(--font-size-xs);
    font-weight: normal;
  }

.DeviceSummaryAttributes__ipLabel span:nth-child(2) {
    margin-left: var(--spacing-2xs);
    font-size: var(--font-size-xs);
    font-weight: normal;
  }

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

.HistogramTooltip {
  display: flex;
  flex-direction: column;
  max-width: 256px;
}

.HistogramTooltip__group {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--spacing-xs);
  }

.HistogramTooltip__group .ConciseDate .ConciseDate__time {
      font-weight: 500;
    }

.HistogramTooltip__group > span:first-child {
      font-weight: 700;
    }

.MonitoringPointsList .MonitoringPointLabel > span {
      margin-right: var(--spacing-2xs);
    }

.MonitoringPointsList .WithIndicator__label {
    flex-grow: 0;
  }

.DeviceGraphTitle {
  font-weight: bold;
}

.DeviceSummary__integration {
  --key-value-background: var(--gray-05);

  margin-top: var(--spacing-xs);
}

.DeviceSummary__edrAttributes .TruncatedList__list {
  padding: 0;
  list-style-type: none;
}

.DeviceSummary__edrInfo {
  color: var(--white-02);
  font-weight: bold;
  text-decoration: underline;
}

.DeviceSummary__edrInfo .Icon {
    --icon-size: 0.8rem;
    --icon-color: var(--gray-02);

    margin-left: var(--spacing-3xs);
  }

.DomainDetails .DetailsSidebar {
    background: var(--theme-bg-primary);
    border-left: none;
  }

.DomainDetails .DetailsContent {
    background: var(--theme-bg-secondary);
    display: flex;
    flex-grow: 1;
    flex-direction: column;
  }

.DomainDetails .KeyValue {
    background: var(--theme-bg-primary);
  }

.DownloadPCAPModal--device .TimeRangeInput {
    display: flex;
    grid-gap: 10px;
    gap: 10px;
    align-items: flex-end;
  }

.DownloadPCAPModal--device .TimeRangeInput__to, .DownloadPCAPModal--device .TimeRangeInput__duration {
      line-height: var(--input-height);
    }

.DownloadPCAPModal--device .TimeRangeInput__startTime, .DownloadPCAPModal--device .TimeRangeInput__endTime, .DownloadPCAPModal--device .TimeRangeInput__to, .DownloadPCAPModal--device .TimeRangeInput__duration {
      margin-bottom: 0;
    }

.DownloadPCAPModal--device .TimeRangeInput__startTime, .DownloadPCAPModal--device .TimeRangeInput__endTime {
      flex-basis: 180px;
      flex-shrink: 0;
    }

.DownloadPCAPModal--device .TimeRangeInput__label {
    font-size: var(--font-size-2xs);
    color: var(--gray-03);
    font-weight: bold;
    margin-bottom: var(--spacing-2xs);
  }

.DeviceAttributesTable__activitiesColumn,
  .DeviceAttributesTable__durationColumn,
  .DeviceAttributesTable__similarColumn {
    text-align: right;
  }

.DeviceAttributesTable__activitiesColumn .DataTable__headerLabel, .DeviceAttributesTable__durationColumn .DataTable__headerLabel, .DeviceAttributesTable__similarColumn .DataTable__headerLabel {
      justify-content: flex-end;
    }

.PCAPDownloadEstimate--loading {
    height: 10rem;
    position: relative;
    display: flex;
    flex-direction: column;
  }

.PCAPDownloadEstimate__estimatedSize {
    margin-bottom: 10px;
  }

.PCAPDownloadEstimateTable {
  border-collapse: collapse;
  width: 100%;
  text-align: left;
}

.PCAPDownloadEstimateTable__headerRow {
    font-weight: bold;
    background-color: var(--data-table-header-background-color);
    height: auto;
  }

.PCAPDownloadEstimateTable th, .PCAPDownloadEstimateTable td {
    padding-left: var(--spacing-lg);
    padding-top: var(--spacing-xs);
    padding-bottom: var(--spacing-xs);
  }

.PCAPDownloadEstimateTable__row {
    border-bottom: 1px solid var(--data-table-row-border-bottom-color);
    outline: none;
    background: var(--data-table-row-background-color);
  }

.PCAPDownloadEstimateTable td {
    white-space: nowrap;
  }

.DownloadPCAPModal__pcapFor {
    margin-bottom: var(--spacing-md);
    font-weight: bold;
  }

.DownloadPCAPModal__error {
    margin-bottom: var(--spacing-md);
  }

.DownloadPCAPModal__artifactValue {
    word-break: break-word;
  }

.PCAPDownloadEstimate {
  position: relative;
  display: flex;
  flex-direction: column;
}

.EaqlWidget__light {
    color: var(--theme-character-code-keyword);
  }

.EaqlWidget__dateTime {
    color: var(--theme-character-code-datetime);
  }

.EaqlWidget__regex {
    color: var(--theme-character-code-regex);
  }

.EaqlWidget__ipAddress {
    color: var(--theme-character-code-ipaddress);
  }

.EaqlWidget__uuid {
    color: var(--theme-character-code-uuid);
  }

.EaqlWidget__macAddress {
    color: var(--theme-character-code-macaddress);
  }

.EaqlWidget__keyword {
    color: var(--theme-character-code-keyword);
  }

.EaqlWidget__syntax {
    color: var(--theme-character-code-syntax);
  }

.EaqlWidget__index {
    color: var(--theme-character-code-function);
  }

.EaqlWidget__column {
    color: var(--theme-character-code-column);
  }

.EaqlWidget__const {
    color: var(--theme-character-code-function);
  }

.EaqlWidget__num {
    color: var(--theme-character-code-number);
  }

.EaqlWidget__text {
    color: var(--theme-character-code-string);
    white-space: pre-wrap;
    word-break: break-word;
  }

.FeatureSummaries {
  --panda-page-content-background: transparent;
}

.FeatureSummaries .panda-page-content {
    display: flex;
    padding: 0;
  }

.GeneralSettings__Section {
    display: flex;
    flex-direction: column;
    max-width: 540px;
  }

.GeneralSettings__Section-header {
    display: flex;
    overflow: hidden;
    overflow-wrap: break-word;
    color: var(--panda-page-header-title-color);
    font-weight: bold;
    font-size: 16px;
    margin: 16px 0;
    justify-content: space-between;
  }

.GeneralSettings__Section-headerActions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }

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

.GeneralSettings__Separator {
    border-top: 1px solid var(--menu-separator-color);
    margin: var(--spacing-sm) 0;
  }

.GeneralSettings__Setting {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-width: 520px;
    margin-left: 10px;
  }

.GeneralSettings__Setting-label {
    display: flex;
    flex-direction: column;
    font-weight: bold;
    line-height: 22px;
    color: var(--theme-character-title);
  }

.GeneralSettings__Setting-sublabel {
    color: var(--theme-character-primary65);
    font-weight: normal;
    line-height: 24px;
  }

.GeneralSettings__Setting-sublabel :not(:hover) {
      --panda-icon-color: var(--theme-character-title);
    }

.GeneralSettings__Setting-sublabel .panda-button {
      --panda-button-padding-horizontal: 8px;
    }

.GeneralSettings__Setting-value {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }

.GeneralSettings__Setting-timezone-name {
    color: var(--theme-character-primary65);
    line-height: 24px;
  }

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

.GeneralSettings__Modal_Timezone_Selection {
      margin-left: var(--spacing-sm);
      flex: 1;
    }

.GeneralSettings__Modal_Timezone_Title {
      font-weight: bold;
      margin-top: var(--spacing-lg);
      margin-left: var(--spacing-lg);
    }

.GeneralSettings__Modal_Timezone_Blurb {
      margin-left: var(--spacing-lg);
    }

.GeneralSettings__Modal_Timezone_Field {
      /* Ad hoc spacing to align fields horizontally */
      margin-top: 5px;
    }

.GeneralSettings__Modal_Timezone_Locale {
      margin-top: var(--spacing-lg);
    }

.GeneralSettings__Modal_Tooltip {
    display: flex;
    flex-direction: row;
    color: var(--theme-character-title);
    margin: 40px 0 0;
    padding-top: var(--spacing-xs);
    border-top: 1px solid var(--theme-border-primary);
    font-size: 12px;

    --panda-icon-size: 14px;
  }

.GeneralSettings__Modal_Tooltip_Icon {
      margin-right: 5px;
      display: flex;
      align-items: center;
      color: var(--theme-character-secondary);
    }

.panda-theme-dark,
.panda-theme-light,
.panda-theme-light-cv {
  --histogram-grid: var(--theme-character-primary65);
  --histogram-point-default: var(--theme-bg-dataviz-detail-default);
  --histogram-point-faded: var(--theme-bg-dataviz-detail-faded);
  --histogram-point-selected: var(--theme-bg-dataviz-detail-selected);
  --histogram-line: var(--theme-border-dataviz-linechart);
  --histogram-line-area-color: var(--theme-bg-dataviz-brand-minimal-default);
  --histogram-line-faded: var(--theme-bg-dataviz-detail-faded);
  --histogram-label-color: var(--theme-character-primary65);
  --bar-base-color: 154, 140, 232;
}

.Histogram tspan {
    white-space: pre-line;
  }

.Histogram__tooltip {
    width: 30rem;
    white-space: pre-line;
  }

.Histogram__tooltip .Tooltip__content > div {
        display: flex;
        flex-direction: column;
      }

.Histogram__tooltip .Tooltip__content > div > *:not(:last-child) {
          padding-bottom: var(--spacing-xs);
          margin-bottom: var(--spacing-xs);
        }

.Histogram__tooltip div:last-child {
      margin-bottom: 0;
    }

.HistogramLine {
  opacity: 0.8;
  stroke: var(--histogram-line);
  stroke-width: 2;
}

.Histogram--emphasized .HistogramLine:not(.HistogramLine--hovered) {
    fill: var(--histogram-line-faded);
    stroke: var(--histogram-line-faded);
  }

.HistogramLine__area {
  opacity: var(--histogram-line-area-opacity);
}

.HistogramPoint {
  cursor: pointer;
  r: 3px;
  fill: var(--histogram-point-default);
  stroke: var(--histogram-point-default);
  stroke-width: 2;
  stroke-opacity: 0.5;
}

.HistogramPoint--selected,
  .HistogramPoint--hovered {
    r: 5px;
    stroke-width: 1;
    stroke-opacity: 1;
  }

.HistogramPoint--selected {
    fill: var(--histogram-point-selected);
    stroke: var(--histogram-point-selected);
  }

.Histogram--emphasized .HistogramPoint:not(.HistogramPoint--selected):not(.HistogramPoint--hovered) {
    fill: var(--histogram-point-faded);
    stroke: var(--histogram-point-faded);
  }

.HistogramBar {
  cursor: pointer;
}

.Histogram--unstacked .HistogramBar {
    stroke-width: 2px;
    stroke: var(--theme-bg-dataviz-brand-accent-default);
    fill: var(--theme-bg-dataviz-brand-accent-default);
  }

.Histogram--unstacked .HistogramBar--selected {
      stroke: var(--theme-border-dataviz-primary);
    }

.Histogram--stacked .HistogramBar {
    stroke-width: 1px;
    stroke: var(--theme-border-dataviz-primary);
    fill: rgba(var(--bar-base-color), var(--histogram-stacked-bar-opacity));
  }

.Histogram--stacked .HistogramBar--hovered {
      stroke-width: 2px;
      fill: var(--theme-bg-dataviz-brand-accent-hover);
    }

.Histogram--stacked .HistogramBar--selected {
      stroke-width: 2px;
      fill: var(--theme-bg-dataviz-brand-accent-select);
    }

.Histogram--unstacked.Histogram--emphasized .HistogramBar:not(.HistogramBar--selected):not(.HistogramBar--hovered) {
  fill: var(--theme-bg-dataviz-brand-accent-faded);
  stroke: var(--theme-bg-dataviz-brand-accent-faded);
}

.panda-theme-dark,
.panda-theme-light,
.panda-theme-light-cv {
  --heatmap-label-color: var(--theme-character-primary65);
}

.Theme--print {
  --heatmap-label-color: var(--gray-07);
}

.Heatmap {
  display: grid;
  grid-template-columns: 60px repeat(var(--heatmap-column-count), minmax(0, 1fr));
  grid-template-rows: repeat(var(--heatmap-row-count), minmax(0, 1fr)) 30px;
  padding: 10px;
  align-items: center;
  justify-items: center;
  place-items: center;
  min-height: 0;
  min-width: 0;
}

.Heatmap__label {
    color: var(--heatmap-label-color);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
    min-height: 0;
    width: 100%;
  }

.Heatmap__xLabel,
  .Heatmap__yLabel {
    height: 100%;
    display: flex;
    align-items: center;
  }

.Heatmap__xLabel {
    text-align: center;
    padding: 0 2px;
  }

.Heatmap__yLabel {
    text-align: right;
  }

.Heatmap__bottomLeft {
    width: 100%;
    height: 100%;
  }

.Heatmap__cell {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    grid-gap: 4px;
    gap: 4px;
    height: 100%;
    width: 100%;
    min-width: 0;
    min-height: 0;
    cursor: pointer;
  }

.Heatmap--emphasized .Heatmap__cell--selected .HeatmapPoint {
      stroke-width: 2px;
      stroke: var(--theme-border-dataviz-primary);
    }

.Heatmap--emphasized .Heatmap__cell:not(:hover):not(.Heatmap__cell--selected) .HeatmapPoint {
    color: var(--theme-bg-dataviz-brand-accent-faded);
  }

.Heatmap--emphasized .Heatmap__cell:not(:hover):not(.Heatmap__cell--selected) .HeatmapPoint--nonzero {
      color: var(--theme-bg-dataviz-brand-bold-faded);
    }

.Heatmap__tooltip {
    width: 30rem;
    white-space: pre-line;
  }

.Heatmap__tooltip div {
      margin-bottom: var(--spacing-sm);
    }

.Heatmap__tooltip div:last-child {
        margin-bottom: 0;
      }

.HeatmapCell__itemLabel {
  display: none;
}

.Theme--print .HeatmapCell__itemLabel {
  display: block;
  min-width: 0;
  min-height: 0;
  flex-shrink: 0;
  flex-grow: 0;
}

.HeatmapCell {
  width: 100%;
  background-color: transparent;
  padding: 8px;
}

.HeatmapPoint {
  fill: currentColor;
  color: var(--theme-bg-dataviz-brand-accent-default);
}

.HeatmapPoint--nonzero {
    color: var(--theme-bg-dataviz-brand-bold-default);
  }

.IOCMatchesTable .TableBuilderBody__row {
    cursor: pointer;
  }

.IOCMatchesTable__matchesLink--disabled {
    cursor: not-allowed;
    color: var(--theme-character-secondary);
  }

.IOCTable .TableBuilderBody__row {
  cursor: pointer;
}

.IOCTable__nameColumn {
  --link-color: var(--row-text-color);
}

.IOCTable__nameColumn .ValueTooltip {
    white-space: nowrap;
  }

.DeleteImportModal .Modal__body > span {
      white-space: pre-line;
    }

.IOCImportModal__file .FormRowRadioGroup {
    margin-top: var(--spacing-xs);
  }

.IOCMatchRef__refs {
    padding-left: var(--spacing-sm);
  }

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

.LookbackRange__vizRange {
    width: 100%;
    border-bottom: 2px solid var(--gray-02);
    position: relative;
    height: 1.8rem;
    margin-top: var(--spacing-xs);
    overflow: hidden;
  }

.LookbackRange__entityRange {
    position: absolute;
    height: var(--spacing-sm);
    background-color: var(--white-02);
  }

.LookbackRange__timeRange {
    position: absolute;
    height: var(--spacing-sm);
    background-color: var(--light-purple-04);
  }

.LookbackRange .KeyValue__key {
    color: var(--white-01);
    display: flex;
    align-items: center;
    margin-bottom: 0;
    margin-right: var(--spacing-2xs);
  }

.LookbackRange .KeyValue__value .panda-button {
    max-width: 200px;
  }

.LookbackRange__tooltip p {
      margin-bottom: var(--spacing-xs);
    }

.LookbackRange__tooltip p:last-child {
      margin-bottom: 0;
    }

@font-face {
  font-family: "Roboto";
  src: url(/53dae30f9f7e1e172b5c.woff2) format("woff2");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url(/a5a5ffcc796aa28b5f30.woff2)
    format("woff2");
  font-weight: 100;
  font-style: italic;
}

@font-face {
  font-family: "Roboto";
  src: url(/f93ab24168b7f236c56d.woff2)
    format("woff2");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url(/4d8aa72d0c4d2d894402.woff2)
    format("woff2");
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: "Roboto";
  src: url(/397d25591e070f627582.woff2)
    format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url(/ecb8f99d2de9a895990e.woff2)
    format("woff2");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "Roboto";
  src: url(/9f95884eb0c3a86405e4.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url(/e684f0ed9f13efa8f6b5.woff2)
    format("woff2");
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: "Roboto";
  src: url(/e5b1c3af2ce284349f74.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url(/8ecc3b98acf146e37ccc.woff2)
    format("woff2");
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: "Roboto";
  src: url(/6b43fdf74130fdc76640.woff2)
    format("woff2");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url(/82a0b1b515ee8daf4998.woff2)
    format("woff2");
  font-weight: 900;
  font-style: italic;
}

:root {
  --grid-gap: 24px;
  --grid-width-1: calc(100% * 1 / 12);
  --grid-width-2: calc(100% * 2 / 12 - var(--grid-gap));
  --grid-width-3: calc(100% * 3 / 12 - var(--grid-gap));
  --grid-width-4: calc(100% * 4 / 12 - var(--grid-gap));
  --grid-width-5: calc(100% * 5 / 12 - var(--grid-gap));
  --grid-width-6: calc(100% * 6 / 12 - var(--grid-gap));
  --grid-width-7: calc(100% * 7 / 12 - var(--grid-gap));
  --grid-width-8: calc(100% * 8 / 12 - var(--grid-gap));
  --grid-width-9: calc(100% * 9 / 12 - var(--grid-gap));
  --grid-width-10: calc(100% * 10 / 12 - var(--grid-gap));
  --grid-width-11: calc(100% * 11 / 12 - var(--grid-gap));
  --grid-width-12: 100%;
}

.Grid {
  display: grid;
  grid-column-gap: var(--grid-gap);
  grid-template-columns: repeat(12, 1fr);
  width: 100%;
}

.Column {
  grid-column-end: span 1;
}

.Column.span-2 {
  grid-column-end: span 2;
}

.Column.span-3 {
  grid-column-end: span 3;
}

.Column.span-4 {
  grid-column-end: span 4;
}

.Column.span-5 {
  grid-column-end: span 5;
}

.Column.span-6 {
  grid-column-end: span 6;
}

.Column.span-7 {
  grid-column-end: span 7;
}

.Column.span-8 {
  grid-column-end: span 8;
}

.Column.span-9 {
  grid-column-end: span 9;
}

.Column.span-10 {
  grid-column-end: span 10;
}

.Column.span-11 {
  grid-column-end: span 11;
}

.Column.span-12 {
  grid-column-end: span 12;
}

.IncidentDetails {
  flex-grow: 1;
}

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

.IncidentDetails__sidebar {
    padding: 12px 0 16px;

    --mask-color: var(--theme-bg-primary);
    --mask-opacity: 0.7;
  }

.IncidentDetails__map {
    background: var(--panda-page-content-background);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: var(--spacing-sm) var(--spacing-md) var(--spacing-md);
    overflow-x: hidden;

    --mask-color: var(--theme-bg-secondary);
    --mask-opacity: 0.7;
    --panda-page-header-title-font-size: 16px;
    --panda-page-header-title-line-height: 24px;
  }

.IncidentDetails__map .panda-page-header {
      padding: var(--spacing-2xs) 0 0;
    }

.IncidentDetails__filters {
    display: inline-flex;
    margin-left: var(--spacing-xs);
  }

.IncidentOptionList {
  height: 100%;
}

.IncidentOptionList__options,
  .IncidentOptionList__empty {
    height: 100%;
    overflow: auto;
  }

.IncidentOptionList__empty {
    --icon-size: 12rem;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-sm);
  }

.IncidentOptionList__empty span {
      margin-top: var(--spacing-sm);
      white-space: pre;
      line-height: 2rem;
    }

.IncidentOptionList__actions {
    justify-content: flex-end;
    margin-bottom: var(--spacing-sm);
  }

.IncidentOption {
  margin-bottom: var(--spacing-sm);
}

.IncidentOption--reordering {
    cursor: move;
  }

.IncidentOption--reordering .panda-card-header-actions,
    .IncidentOption--reordering .panda-card-content {
      display: none;
    }

.IncidentOption--reordering .panda-card-header {
      border: none;
    }

.IncidentOption--dragging {
    --panda-card-border-color: transparent;

    opacity: 0.65;
  }

.IncidentOption--dragging .panda-card-header-content {
      opacity: 0;
    }

.IncidentOption .panda-card-header-content {
    --panda-icon-size: 22px;

    display: flex;
    flex-direction: row;
    align-items: center;
    grid-gap: var(--spacing-md);
    gap: var(--spacing-md);
  }

.SupportingArtifacts,
.IncidentAuditLog {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  height: 100%;
}

.SupportingArtifacts__table, .IncidentAuditLog__table {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 0;
    grid-gap: var(--spacing-md);
    gap: var(--spacing-md);
  }

.SupportingArtifacts__table .TableBuilderBody__row, .IncidentAuditLog__table .TableBuilderBody__row {
      cursor: pointer;
    }

.SupportingArtifacts__unrelated, .IncidentAuditLog__unrelated {
    flex-grow: 0;
    display: flex;
    justify-content: flex-end;
  }

.SupportingArtifacts__unrelated--disabled, .IncidentAuditLog__unrelated--disabled {
      color: var(--theme-character-secondary);
    }

.SupportingArtifacts__unrelated--disabled .panda-switch, .IncidentAuditLog__unrelated--disabled .panda-switch {
        cursor: default;
      }

.SupportingArtifacts__columnTimestamp {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    grid-gap: var(--spacing-xs);
    gap: var(--spacing-xs);
  }

.IncidentAuditLog__noDetails {
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--gray-03);
  }

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

.IncidentAuditLog__columnActivity {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
    overflow-wrap: break-word;
  }

.IncidentAuditLog__progressReportSummary {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }

.IncidentAuditLog__progressReportSummary__title {
      font-weight: bold;
      display: flex;
      grid-gap: var(--spacing-xs);
      gap: var(--spacing-xs);
    }

.IncidentAuditLog__progressReportSummary__status {
      flex-grow: 0;
      flex-shrink: 0;
    }

.IncidentAuditLog__progressReportSummary__description {
      color: var(--theme-character-secondary);
    }

.IncidentAuditLog__progressReportSummary .ValueTooltip {
      flex-grow: 1;
      min-width: 0;
      white-space: nowrap;
    }

.IncidentAuditLogReportUpdate .KeyValue__key {
    display: flex;
    justify-content: space-between;
    font-weight: normal;
    color: var(--theme-character-primary65);
  }

.IncidentAuditLogReportUpdate__title {
    white-space: nowrap;
    max-width: 100%;
    margin: var(--spacing-2xs) 0 var(--spacing-xs);
    color: var(--theme-character-title);
    font-weight: 500;
  }

.IncidentAuditLogReportUpdate__title:last-child {
    margin-bottom: 0;
  }

.IncidentAuditLogUpdateCount {
  --spinner-background: var(--theme-bg-moderate);
  --spinner-foreground: var(--theme-bg-brand-default);

  position: relative;
  display: flex;
  align-items: center;
}

.IncidentAuditLogUpdateCount__count {
    position: absolute;
    width: 100%;
    text-align: center;
  }

.IncidentAuditLogUpdateCount__progressBar.ProgressCircle {
    width: 3.2rem;
    height: 3.2rem;
  }

.IncidentAuditLogEntry__deemphasize {
    color: var(--theme-character-primary65);
  }

.IncidentAuditLogEntry__emphasize {
    color: var(--row-text-color);
    font-weight: bold;
  }

.IncidentAuditLogEntry__summary {
    margin-bottom: var(--spacing-md);
  }

.IncidentAuditLogEntry__summary .IncidentAuditLog__progressReportSummary__title .ValueTooltip {
        white-space: normal;
      }

.IncidentAuditLogEntry__summary .IncidentAuditLog__progressReportSummary__description {
      display: none;
    }

.IncidentAuditLogEntry .IncidentAuditLogUpdateCount {
    display: none;
  }

.ViewAuditDetail {
  display: flex;
  align-items: center;
  grid-gap: var(--spacing-sm);
  gap: var(--spacing-sm);
}

.AttackMap__header {
  position: absolute;
  top: 0;
  right: var(--spacing-sm);
  z-index: 10;
}

.IncidentOverview {
  height: 100%;
  overflow: auto;
}

.IncidentOverview__summary {
    color: var(--white-02);
    margin-bottom: var(--spacing-sm);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

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

.IncidentOverview__summary .SmallEditButton,
  .IncidentOverview__tags .SmallEditButton {
    margin-right: var(--spacing-xs);
  }

.IncidentOverview__whatIsThis {
    display: inline-flex;
    align-items: center;
  }

.IncidentOverview__whatIsThisTitle {
    font-weight: bold;
    margin-bottom: var(--spacing-2xs);
  }

.IncidentOverview__meta .IncidentOverview__incidentTitle,
.IncidentOverview__meta .ReferenceNumber {
  overflow-wrap: break-word;
}

.ActionRelationshipItems {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--spacing-md);
}

.IncidentArtifactDetails__edit {
    background-color: var(--gray-03);

    --icon-color: var(--gray-05);
  }

.IncidentArtifactDetails .DetailsSidebar__content {
    padding: 0 var(--grid-gap) var(--spacing-md) var(--spacing-2xl);
    overflow: auto;
    display: block;
  }

.IncidentArtifactDetails .DetailsSidebar__headerMain {
    flex-grow: 1;
  }

.IncidentArtifactDetails__content {
    display: flex;
    flex-direction: column;
    position: relative;
  }

.IncidentArtifactDetailsFileList {
  padding: var(--spacing-md) 0;
}

/*
  &--empty {
    box-shadow: none;
    background: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-sm);
    height: 100%;

    --icon-size: 12rem;

    span {
      margin-top: var(--spacing-sm);
    }
  }
  */

.IncidentArtifactDetailsFileList__size {
    font-size: var(--font-size-sm);
    color: var(--theme-character-secondary);
    margin-left: var(--spacing-sm);
  }

.IncidentArtifactDetailsFileList .FilePreview {
    overflow-x: auto;
    min-height: 10rem;
  }

.IncidentArtifactDetailsFileList .FilePreview--image img {
      max-width: 100%;
    }

.TableBuilderBody__row.UnrelatedIncidentItem:not(.TableBuilderBody__row--selected, .TableBuilderBody__row--active), .TableBuilderBody__row.IncidentAuditLog--inProgress:not(.TableBuilderBody__row--selected, .TableBuilderBody__row--active) {
    background-color: var(--theme-bg-primary);
  }

.IncidentArtifactMarkUnrelated,
.IncidentEntityMarkUnrelated {
  margin-top: var(--spacing-sm);
}

.SelectRelationshipModal--left .Relationship__item:first-child {
      --icon-color: var(--purple-01);
    }

.SelectRelationshipModal--right .Relationship__item:last-child {
      --icon-color: var(--purple-01);
    }

.SelectRelationshipModal .Relationship {
    margin-bottom: var(--spacing-sm);
  }

.IncidentArtifactSidebar__select .FormRowSelect {
    max-width: 224px;
  }

.IncidentArtifactSidebar__footer {
    display: grid;
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
  }

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

.IncidentArtifactSidebar__moreDetails .panda-icon {
      margin-left: 10px;
    }

.IncidentBulkEditModal__artifacts {
    margin-bottom: var(--spacing-md);
  }

.IncidentBulkEditModal__title {
    font-weight: 500;
    margin-bottom: var(--spacing-2xs);
  }

.IncidentDetailsTextLink--disabled {
  font-weight: bold;
  color: var(--theme-color-primary65);
  text-decoration: none;
  cursor: not-allowed;
}

.IncidentDetailsTextLink--disabled .panda-icon {
    display: none;
  }

.IncidentDetailsTextLink--disabled:hover {
    color: var(--theme-color-primary65);
  }

:root {
  --incidents-header-height: var(--spacing-3xl);
}

.IncidentsTableContainer {
  display: flex;
  flex-direction: row;
  position: relative;
  width: 100%;
  height: 100%;
}

.IncidentsTable {
  flex-grow: 1;
}

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

    --icon-size: 10rem;
  }

.IncidentsTable__empty > span {
      font-size: var(--font-size-sm);
      font-weight: bold;
      margin-top: var(--spacing-sm);
      white-space: pre;
      line-height: 2rem;
    }

.IncidentsTable__titleColumn a {
      white-space: nowrap;
    }

.IncidentsTable__titleColumn .ReferenceNumber {
      font-size: 12px;
      color: var(--theme-character-primary65);
    }

.IncidentsTable__lastUpdatedColumn > div {
      display: flex;
      align-items: center;
      grid-gap: var(--spacing-xs);
      gap: var(--spacing-xs);
    }

.IncidentsTable__riskColumn,
  .IncidentsTable__tagsColumn,
  .IncidentsTable__devicesImpactedColumn {
    color: var(--theme-character-primary65);
  }

.IncidentsTable__lastUpdatedBy {
    --icon-size: 2.2rem;

    height: 2.2rem;
  }

.CreateIncidentModal .Modal__actions .Button {
    min-width: 10rem;
  }

.CreateIncidentModal .Dropdown {
    width: 100%;
  }

.CreateIncidentModal .Dropdown__trigger {
      width: 100%;
    }

.CreateIncidentModal .Dropdown button {
      width: 100%;
      text-align: left;
    }

.CreateIncidentModal .Optional {
    font-weight: normal;
  }

.CreateIncidentModal .Description {
    width: 100%;
    min-height: 80px;
  }

.CreateIncidentModal .FormRow__label .Icon {
    --icon-size: var(--button-icon-size);

    position: relative;
    top: 2px;
    left: 5px;
  }

.CreateIncidentModal .Box {
    width: 100%;
  }

.CreateIncidentModal .Box .Container {
      position: relative;
    }

.CreateIncidentModal .Box .Container .DescriptionIcon {
        --icon-size: var(--button-icon-size);

        position: absolute;
        margin-left: var(--spacing-xs);
        margin-top: var(--spacing-xs);
        z-index: 2;
      }

.CreateIncidentModal .Box .Container .Description {
        position: absolute;
        top: 0;
        padding: var(--input-vertical-padding) var(--input-horizontal-padding)
          var(--input-vertical-padding) var(--spacing-lg);
      }

.ReferenceNumber {
  text-transform: uppercase;
}

.ReferenceNumber a {
    font-weight: bold;
    text-decoration: underline;
    color: var(--white-01);
  }

.ReferenceNumber a:hover {
    text-decoration: none;
  }

.ReferenceNumber__prefix {
    display: inline-block;
    max-width: 4.4rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

.ReferenceNumber__number {
    display: inline-block;
  }

.SelectRoleModal .panda-dialog-content-below {
    padding-top: var(--spacing-sm);
  }

.SelectRoleModalOption {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--spacing-2xs);
  padding: var(--spacing-xs) var(--spacing-sm);
  align-items: center;
  min-height: 7.2rem;
  border: 1px solid var(--theme-border-primary);
  border-radius: var(--borderRadius-xs);
}

.SelectRoleModalOption__label {
    font-weight: 500;
    margin-bottom: var(--spacing-2xs);
  }

.SelectRoleModalOption__confidence {
    margin-left: var(--spacing-sm);
    flex-direction: row;
    white-space: nowrap;
    border-radius: var(--borderRadius-xs);
    transition: all var(--panda-button-transition-duration)
      var(--panda-button-transition-timing-function);
  }

.SelectRoleModalOption:focus {
    outline: none;
  }

.SelectRoleModalOption:focus .SelectRoleModalOption__confidence {
    outline: 4px solid var(--theme-bg-brand-focus);
  }

.SelectRoleModalOption--selected {
    background: var(--theme-bg-table-select);
    border-color: transparent;
  }

.SelectRoleModalOptionConfidence {
  background: transparent;
  color: var(--theme-character-title);
  font: inherit;
  font-weight: 500;
  padding: var(--panda-button-padding-vertical) var(--spacing-xs);
  border: 1px solid var(--theme-border-primary);
  border-right-width: 0;
  outline: 0;
  margin: 0;
  cursor: pointer;
  transition: all var(--panda-button-transition-duration)
    var(--panda-button-transition-timing-function);
}

.SelectRoleModalOption:focus .SelectRoleModalOptionConfidence {
    border-color: var(--theme-bg-brand-hover);
  }

.SelectRoleModalOption--selected .SelectRoleModalOptionConfidence {
    border-color: var(--theme-bg-brand-default);
  }

.SelectRoleModalOption--selected .SelectRoleModalOptionConfidence--selected {
    border-color: var(--theme-bg-brand-default);
    background-color: var(--theme-bg-brand-default);
  }

.SelectRoleModalOptionConfidence:first-child {
    border-radius: 2px 0 0 2px;
  }

.SelectRoleModalOptionConfidence:last-child {
    border-radius: 0 2px 2px 0;
    border-right-width: 1px;
  }

.ViewableRelationship {
  display: flex;
  align-items: center;
  width: 100%;
  border: 1px solid var(--theme-border-primary);
  border-radius: var(--borderRadius-xs);
  margin-bottom: var(--spacing-2xs);
  padding-right: var(--spacing-xs);
}

.ViewableRelationship:last-of-type {
    margin-bottom: 0;
  }

.ViewableRelationship .Relationship {
    padding: 0 1.2rem;
    flex-grow: 1;
  }

.RelationshipSubLabel {
  font-size: var(--font-size-2xs);
  color: var(--label-color);
  margin-bottom: var(--spacing-xs);
  display: flex;
  flex-direction: column;
}

.IncidentAttachForm__timeRangeInput {
    display: flex;
    width: 100%;
  }

.IncidentAttachForm__timeRangeInput .FormRow {
      flex-grow: 1;
      margin-bottom: 0;
    }

.IncidentAttachForm__timeRangeInput .FormRow__label {
      display: none;
    }

.Relationship {
  display: flex;
  flex: auto;
  height: 8rem;
  width: 100%;
}

.Relationship__itemWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 14rem;
  }

.Relationship__item {
    --panda-icon-size: 2rem;

    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    width: 100%;
  }

.Relationship__item--name {
      color: var(--white-02);
      white-space: nowrap;
      text-overflow: ellipsis;
      width: 100%;
      margin-top: var(--spacing-2xs);
      text-align: center;
    }

.Relationship__connection {
    flex-grow: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 0 1.2rem;
  }

.Relationship__connection--artifact {
      height: calc(50% - 0.4rem);
      display: flex;
      align-items: flex-end;
      color: var(--white-02);
      margin-bottom: var(--spacing-2xs);
    }

.Relationship__connection--artifact > span {
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        max-width: 24rem;
      }

.Relationship--associated .Relationship__line {
    border-top: 2px dotted var(--white-01);
  }

.Relationship__line {
    border-top: 2px solid var(--white-01);
    position: relative;
    width: 100%;
  }

.Relationship__line::after {
      content: "";
      position: absolute;
      right: -1px;
      top: -6px;
      border-radius: 2px;
      width: 10px;
      height: 10px;
      border-top: 3px solid var(--white-01);
      border-left: 3px solid var(--white-01);
      transform: rotate(-225deg) scale(0.8);
      display: none;
    }

.Relationship--right .Relationship__line::after {
    display: block;
  }

.IncidentUnknownRole {
  opacity: 0.6;
}

.IncidentLoadingError {
  flex-grow: 1;
  justify-content: center;
}

.SelectIncidentAutocomplete__footer {
    padding: var(--spacing-xs);
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid var(--theme-border-primary);
  }

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

.SelectIncidentAutocomplete__row > * {
      width: 100%;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
    }

.SelectIncidentAutocomplete__referenceNumber {
    color: var(--theme-character-secondary);
  }

.IncidentTimeline {
  height: 100%;
  overflow: auto;
  font-size: 14px;
  line-height: 22px;
}

.IncidentTimeline--loading {
    margin-left: var(--spacing-2xl);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

.IncidentTimeline__separator {
    margin: var(--spacing-xs) 0;
    border-top: 1px solid var(--theme-border-divider);
  }

.Stage {
  border-radius: var(--borderRadius-xs);
  padding: 0 var(--spacing-xs);
}

.Stage a {
    color: inherit;
  }

.Stage__content {
    position: relative;

  }

.Stage__reason {
    overflow-x: auto;
    padding: var(--spacing-xs) 0;
  }

.Stage__relationships {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
    padding: var(--spacing-xs) 0;
  }

.Stage__relationships > .StageEntity {
      width: 40%;
    }

.Stage__artifact {
    color: var(--theme-character-error-default);
  }

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

.Stage--hover {
    background: var(--theme-bg-item-hover);
  }

.Stage--active {
    background: var(--theme-bg-table-select);
  }

.Stage--active .StageTitle {
      font-weight: bold;
    }

.StageTitle {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: var(--spacing-xs) 0;
}

.StageTitle > a:first-child {
    flex-grow: 1;
  }

.StageTitle__label {
    flex-grow: 1;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
  }

.StageTitle__toolbar {
    display: flex;
    flex-shrink: 0;
    margin-left:  var(--spacing-xs);
  }

.StageTitle__toolbar:empty {
      display: none;
    }

.StageTime {
  padding: var(--spacing-xs) 0;
  color: var(--theme-character-secondary);
}

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

.StageEntity__node {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    width: 100%;
  }

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

.StageEntity__icon {
    --panda-icon-size: 20px;

    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-2xs);
    background: var(--theme-bg-inverse);
    border-radius: 100%;
    color: var(--theme-bg-canvas);
    width: var(--spacing-xl);
    height: var(--spacing-xl);
  }

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

.StageEntity__associated {
    margin-top: var(--spacing-2xs);
    padding-top: calc(14px + var(--spacing-2xs));
    position: relative;
    max-width: 100%;
  }

.StageEntity__associated::before {
      content: "";
      position: absolute;
      top: 0;
      left: 50%;
      height: 14px;
      border-left: 2px dotted var(--white-01);
      margin-left: -1px;
    }

.StageEntity__members {
    max-width: 100%;
  }

.Entity--infected > .StageEntity__node .StageEntity__icon {
        color: var(--theme-background-canvas);
        background: var(--theme-character-error-default);
      }

.Entity--infected > .StageEntity__node .StageEntity__secondaryLabel {
        color: var(--theme-character-error-default);
      }

.Entity--infected > .StageEntity__members .Entity__member,
      .Entity--infected > .StageEntity__members .Entity__memberGroupTitle {
        color: var(--theme-character-error-default);
      }

.Entity--hover > .StageEntity__node .StageEntity__icon {
        background: var(--theme-bg-brand-hover);
        color: var(--theme-bg-inverse);
      }

.Entity--hover > .StageEntity__node .StageEntity__primaryLabel,
      .Entity--hover > .StageEntity__node .StageEntity__secondaryLabel {
        color:var(--theme-bg-brand-hover);
      }

.Entity--active > .StageEntity__node .StageEntity__icon {
        background: var(--theme-character-brand-text);
        color: var(--theme-bg-inverse);
        box-shadow: 0 0 0 2px var(--theme-bg-inverse);
      }

.Entity--active > .StageEntity__node .StageEntity__primaryLabel,
      .Entity--active > .StageEntity__node .StageEntity__secondaryLabel {
        color: var(--theme-character-brand-text);
        font-weight: 500;
      }

.Entity__memberGroup {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: var(--spacing-2xs);
    padding-top: calc(14px + var(--spacing-2xs));
    position: relative;
  }

.Entity__memberGroup::before {
      content: "";
      position: absolute;
      top: 0;
      left: 50%;
      height: 14px;
      border-left: 2px dotted var(--white-01);
      margin-left: -1px;
    }

.Entity__memberList {
    margin-top: var(--spacing-2xs);
    display: flex;
    flex-direction: column;
    cursor: pointer;
  }

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

.Entity__viewMore {
    font-weight: bold;
  }

.EntityPatientZero > .StageEntity__node .StageEntity__secondaryLabel {
      font-style: italic;
    }

.EntityAction > .StageEntity__node .StageEntity__icon {
      background: none;
    }

.EntityScanResult > .StageEntity__node .StageEntity__primaryLabel {
      display: none;
    }

.StageRelationship {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 2px;
  left: calc(20% + var(--spacing-xl));
  right: calc(20% + var(--spacing-xl));
  cursor: pointer;
}

.StageRelationship--hover .Stage__artifact,
    .StageRelationship--hover .Stage__protocol {
      color: var(--theme-bg-brand-hover);
    }

.StageRelationship--active .Stage__artifact,
    .StageRelationship--active .Stage__protocol {
      color: var(--theme-character-brand-text);
      font-weight: bold;
    }

.StageRelationship__line {
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    right: 0;
    text-align: center;
    z-index: 0;
  }

.StageRelationship__line::before {
      content: "";
      position: absolute;
      left: -1px;
      top: -4px;
      border-radius: 2px;
      width: 10px;
      height: 10px;
      border-top: 3px solid var(--white-01);
      border-left: 3px solid var(--white-01);
      transform: rotate(-45deg) scale(0.8);
      display: none;
    }

.StageRelationship__line::after {
      content: "";
      position: absolute;
      right: -1px;
      top: -4px;
      border-radius: 2px;
      width: 10px;
      height: 10px;
      border-top: 3px solid var(--white-01);
      border-left: 3px solid var(--white-01);
      transform: rotate(-225deg) scale(0.8);
      display: none;
    }

.StageRelationship__edge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    border-top: 2px solid var(--theme-character-primary);
  }

.StageRelationship--left .StageRelationship__line::before,
  .StageRelationship--right .StageRelationship__line::after {
    display: block;
  }

.StageRelationship__top,
  .StageRelationship__bottom {
    height: 22px;
    max-width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
  }

.StageRelationship--external .StageRelationship__line .Icon {
    --icon-size: 12px;

    margin: auto;
    transform: scaleX(-1) rotate(-45deg);
    border-radius: 50%;
    position: relative;
    top: -8px;
  }

.StageRelationship--external .StageRelationship__edge {
    clip-path: polygon(0 0, calc(50% - 10px) 0, calc(50% - 10px) 100%, calc(50% + 10px) 100%, calc(50% + 10px) 0, 100% 0, 100% 100%, 0 100%);
  }

:root {
  --indicator-size: 2rem;
  --indicator-font-size: var(--font-size-xs);
  --indicator-border-radius: 1rem;
}

:root,
.Theme--dark {
  --dropdown-indicator-color: var(--gray-04);
  --dropdown-indicator-hover-color: var(--gray-03);
  --dropdown-indicator-active-color: var(--gray-03);
}

:root .TableBuilderBody__row:not(.TableBuilderBody__row--selected),
  :root .DataTable__row:not(.DataTable__row--selected),
  .Theme--dark .TableBuilderBody__row:not(.TableBuilderBody__row--selected),
  .Theme--dark .DataTable__row:not(.DataTable__row--selected) {
    --dropdown-indicator-color: var(--gray-03);
    --dropdown-indicator-hover-color: var(--gray-02);
    --dropdown-indicator-active-color: var(--gray-02);
  }

:root .TableBuilderBody__row:hover:not(.TableBuilderBody__row--selected),
  :root .DataTable__row:hover:not(.DataTable__row--selected),
  .Theme--dark .TableBuilderBody__row:hover:not(.TableBuilderBody__row--selected),
  .Theme--dark .DataTable__row:hover:not(.DataTable__row--selected) {
    --dropdown-indicator-color: var(--gray-02);
    --dropdown-indicator-hover-color: var(--gray-01);
    --dropdown-indicator-active-color: var(--gray-01);
  }

.Theme--light,
.Theme--print {
  --dropdown-indicator-color: var(--gray-02);
  --dropdown-indicator-hover-color: var(--gray-02);
  --dropdown-indicator-active-color: var(--gray-03);
}

.Theme--light .TableBuilderBody__row:not(.TableBuilderBody__row--selected),
  .Theme--light .DataTable__row:not(.DataTable__row--selected),
  .Theme--print .TableBuilderBody__row:not(.TableBuilderBody__row--selected),
  .Theme--print .DataTable__row:not(.DataTable__row--selected) {
    --dropdown-indicator-color: var(--gray-03);
    --dropdown-indicator-hover-color: var(--gray-02);
    --dropdown-indicator-active-color: var(--gray-02);
  }

.Theme--light .TableBuilderBody__row:hover:not(.TableBuilderBody__row--selected),
  .Theme--light .DataTable__row:hover:not(.DataTable__row--selected),
  .Theme--print .TableBuilderBody__row:hover:not(.TableBuilderBody__row--selected),
  .Theme--print .DataTable__row:hover:not(.DataTable__row--selected) {
    --dropdown-indicator-color: var(--gray-02);
    --dropdown-indicator-hover-color: var(--gray-02);
    --dropdown-indicator-active-color: var(--gray-02);
  }

.Indicator {
  height: var(--indicator-size);
  width: var(--indicator-size);
  font-size: var(--indicator-font-size);
  position: relative;
  font-weight: bold;
  color: var(--white-02);
  background-color: var(--gray-03);
  border-radius: var(--indicator-border-radius);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.ThreatIndicator {
  height: 2.8rem;
  line-height: 2.8rem;
  background-color: var(--color-threat-background);
  border-radius: 50%;
  color: var(--color-threat-text);
  font-weight: bold;
  align-self: center;
  flex-shrink: 0;
}

.ThreatIndicator--small {
  background-color: var(--color-threat-background);
  border-radius: 50%;
  width: 1.2rem;
  height: 1.2rem;
  line-height: 0;
  margin-right: 0.5rem;
  position: relative;
  top: 1px;
}

.WhiteListedIndicator {
  color: var(--gray-01);
  width: 1em;
  height: 1em;
  line-height: 0;
  margin-right: 0.5rem;
  opacity: 0.5;
  background: none;
}

.WhiteListedIndicator .Icon {
    width: 100%;
    height: 100%;
  }

.DropdownIndicator .panda-button-icon {
    --panda-icon-size: 10px;
  }

.Theme--light,
.Theme--print {
  --label-color: var(--gray-05);
}

.KpiChart {
  --label-color: var(--theme-character-title);
  --count-color: var(--theme-character-brand-text);
  --count-background-color: var(--theme-bg-brand-minimal);
  --name-background-color: var(--theme-bg-brand-hover);

  padding: var(--spacing-xs) var(--spacing-sm);
}

.KpiChart--emphasized :not(.KpiRowWrapper:hover) .KpiRow:not(.KpiRow--selected) {
      background: var(--theme-bg-dataviz-brand-minimal-faded);
      color: var(--theme-character-dataviz-brand-contrast-faded);
  }

.KpiRowWrapper {
  padding-bottom: var(--spacing-xs);
}

.KpiRowWrapper:hover {
    cursor: pointer;
  }

.KpiRowWrapper:last-child {
    padding-bottom: 0;
  }

.KpiRow {
  padding: var(--spacing-2xs) var(--spacing-md);
  border-radius: 3px;
  display: flex;
  flex-direction: row;
  min-width: 0;
  align-items: center;
  grid-gap: 8px;
  gap: 8px;
  background: var(--theme-bg-dataviz-brand-minimal-default);
  color: var(--theme-character-dataviz-brand-contrast);
  border: 2px solid transparent;
}

.KpiRow--selected {
    border: 2px solid var(--theme-character-primary);
  }

.KpiRow__countNumber,
  .KpiRow__countLabel {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-grow: 0;
    flex-shrink: 0;
  }

.KpiRow__countNumber {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    width: 52px;
  }

.KpiRow__countLabel {
    font-size: 12px;
    line-height: 20px;
    width: 112px;
  }

.KpiRow__name {
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: auto;
  }

.KpiRow__countChange {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 12px;
  }

.KpiRow__countChange .panda-icon {
      margin-right: var(--spacing-2xs);
    }

.KpiRow__countNoChange {
    font-weight: normal;
    font-style: italic;
  }

.DashboardWidget--fullscreen .KpiRow__countNumber {
      width: 10%;
    }

.DashboardWidget--fullscreen .KpiRow__countLabel {
      width: 20%;
    }

.KpiTooltip {
  white-space: pre-line;
  line-height: var(--font-size-lg);
}

:root,
.panda-theme-dark,
.panda-theme-light,
.panda-theme-light-cv {
  --menu-background-color: var(--theme-bg-popover);
  --menu-border-color: var(--theme-border-primary);
  --menu-separator-color: var(--theme-border-primary);
  --menu-item-hover-background-color: var(--theme-bg-item-hover);
  --menu-text-color: var(--theme-character-title);
  --menu-text-disabled-color: var(--theme-character-disabled);
  --menu-drop-shadow: var(--dropshadow-0-12-0-8-0-5);
  --menu-icon-color: var(--theme-character-secondary);
}

.MenuPortal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: var(--z-index-dropdown);
  color: var(--menu-text-color);
  font-size: 14px;
  line-height: 22px;
  pointer-events: none;
}

.MenuPortal > * {
    pointer-events: all;
  }

.MenuPortal__mask {
    position: absolute;
  }

.Menu {
  --link-color: var(--menu-text-color);
  --selected-color: var(--theme-bg-brand-active);

  background: var(--menu-background-color);
  border: 1px solid var(--menu-border-color);
  padding: var(--spacing-2xs) 0;
  border-radius: var(--spacing-2xs);
  box-shadow: var(--menu-drop-shadow);
  font-size: 14px;
  line-height: 22px;
  animation: menu-in .2s ease-out;
  transform-origin: top center;
}

.MenuItem {
  padding: 5px var(--spacing-sm);
  font-size: 14px;
  line-height: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.MenuItem--disabled {
    color: var(--menu-text-disabled-color);
    cursor: not-allowed;
  }

.MenuItem:hover:not(.MenuItem--disabled) {
    background-color: var(--menu-item-hover-background-color);
  }

.MenuItem__label {
    white-space: nowrap;
    margin-right: var(--spacing-sm);
  }

.MenuItem__icon {
    --icon-size: 1rem;
    --panda-icon-size: 1.2rem;

    flex-shrink: 0;
    flex-grow: 0;
    color: var(--menu-icon-color);
  }

.MenuItem a {
    text-decoration: none;
  }

.SubMenuItem {
  cursor: default;
}

.SubMenuItem--open {
    background-color: var(--menu-item-hover-background-color);
  }

.RouteMenuItem {
  padding: 0;
}

.RouteMenuItem .MenuItem__label {
    margin-right: 0;
    padding: 5px var(--spacing-sm);
    flex-grow: 1;
  }

.RouteMenuItem .MenuItem__icon {
    color: var(--menu-icon-color);
    padding: 0 var(--spacing-sm) 0 0;
  }

.RouteMenuItem a {
    color: inherit;
  }

.RootMenu,
.SubMenu {
  position: absolute;
}

.RootMenu {
  top: calc(var(--root-menu-top) + 4px);
  left: var(--root-menu-left);
  max-height:  calc(var(--root-menu-max-height) - 8px);
  overflow-y: auto;
}

.RootMenu--flip {
    top: calc(var(--root-menu-top) - 4px);
  }

.SubMenu {
  top: calc(var(--sub-menu-top) - 4px);
  left: calc(var(--sub-menu-left) + 2px);
  max-height: calc(100vh - 10px);
  overflow-y: auto;
}

.SubMenu--flip {
    left: auto;
    right: calc(var(--sub-menu-right) + 2px);
  }

.MenuSeparator {
  border-top: 1px solid var(--menu-separator-color);
  margin: var(--spacing-xs);
}

.Menu .MenuSeparator:last-child {
  display: none;
}

.MenuTitle {
  font-weight: 500;
  color: var(--theme-character-secondary);
  cursor: default;
  pointer-events: none;
}

.IncidentMenuItem .MenuItem__label {
    display: flex;
    align-items: center;
  }

.IncidentMenuItem .Icon--Analyze {
    --icon-size: 1.4rem;

    margin-right: var(--spacing-2xs);
  }

.IncidentMenuItem__involvement {
    min-width: 22rem;
  }

.IncidentMenuItem .Spinner {
    position: absolute;
    right: var(--spacing-sm);
  }

.IncidentMenuItem .PreviewBadge {
    margin-right: var(--spacing-xs);
  }

.IncidentMenuItem .ReferenceNumber {
    display: flex;
    width: 5.2rem;
    align-items: center;
  }

.IncidentMenuItem--route .ValueTooltip {
    max-width: 28.2rem;
  }

.DeviceDropdownSpinnerItem {
  width: 20rem;
  height: 4rem;
}

.ArtifactDropdownMenu .ActivityPivotItem {
    min-width: 22rem;
  }

.ArtifactDropdownMenu .ActivityPivotItem .MenuItem__label {
      display: flex;
      align-items: center;
    }

.ArtifactDropdownMenu .Spinner {
    margin-left: -4px;
  }

.AddToQueryModal .FormRowRadioGroup {
    width: 100%;
  }

.AddToQueryModal .AddToQueryModalFormInput__choiceDescription {
    font-weight: normal;
    color: var(--theme-character-primary65);
  }

.AdditionalSummaryPanelnfoAction {
  max-width: 30rem;
}

.AdditionalSummaryPanelnfoAction .MenuItem__label {
    width: 100%;
  }

@keyframes menu-in {
  0% {
    transform: scale(1);
    opacity: 0;
  }

  1% {
    transform: scale(0.96);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.Menu .FormRowCheckboxGroup .panda-checkbox {
    padding: 5px var(--spacing-sm);
  }

.Menu .FormRowCheckboxGroup .panda-checkbox:hover {
      background-color: var(--theme-bg-table-hover);
    }

.Menu .FormRowCheckboxGroup .panda-checkbox-checked {
    color: var(--theme-bg-brand-active);
  }

.ModelMatches .MiniSkillsTable {
  height: 100%;
  overflow: auto;
}

.ModelMatches .MiniSkillsTable__actionsColumn {
    opacity: 1;
  }

.ModelMatches .MiniSkillsTable__matchesLink--disabled {
    cursor: not-allowed;
    color: var(--theme-character-secondary);
  }

.ModelMatches .MiniSkillsTable .TableBuilderBody__row {
    cursor: pointer;
  }

.ModelMatchesPanel .ThreatBehaviorCountSummaries {
    display: flex;
    flex-grow: 1;
    padding: var(--spacing-xs);
    border-bottom: 1px solid var(--theme-bg-canvas);
    background: var(--key-value-background);
  }

.ModelMatchesPanel .ThreatBehaviorCountSummary {
    padding-right: 72px;
  }

.ModelMatchesPanel .ThreatBehaviorCountSummary__label {
      white-space: nowrap;
      text-align: center;
      font-weight: bold;
      margin-bottom: var(--spacing-xs);
    }

.NotableValuesModal__valueRow {
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid var(--theme-border-primary);
  }

.PartialAvailability__range {
    margin-bottom: 10px;
  }

.PartialAvailability__rangeLabel {
    font-weight: bold;
    margin-right: 10px;
  }

.PermissionDeniedOverlay {
  z-index: var(--z-index-modal);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to left, var(--gray-06) 0%, var(--gray-07) 100%);
}

.PermissionDeniedSection {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  grid-gap: var(--spacing-xs);
  gap: var(--spacing-xs);
  max-width: 400px;
  margin: 0 auto;
}

.PermissionDeniedSection__title {
  font-size: var(--font-size-3xl);
  line-height: 32px;
  color: var(--theme-character-title);
  font-weight: 500;
}

.PermissionDeniedSection__reason,
.PermissionDeniedSection__permissionsBody {
  max-width: 400px;
  font-size: var(--font-size-sm);
  line-height: 20px;
  color: var(--theme-character-title);
}

.PermissionDeniedSection__permissionsBody {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: var(--spacing-xs);
  gap: var(--spacing-xs);
}

.PermissionDeniedSection__viewPermissions {
  align-self: flex-end;
}

.PermissionDeniedContentSection {
  background: var(--panda-page-content-background);
  width: 100%;
  height: 100%;
}

.Reports {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.Reports__instructions {
    margin-bottom: 20px;
  }

.Reports__actions {
    margin-top: 20px;
    display: flex;
    align-items: center;
  }

.Reports__actions .Spinner {
      margin-left: 10px;
    }

:root {
  font-size: 62.5%;
}

html {
  box-sizing: border-box;
}

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

* {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  height: 100%;
}

body {
  padding: 0;
  margin: 0;
  background-color: var(--theme-bg-canvas);
  color: var(--theme-character-title);
}

figure {
  padding: 0;
  margin: 0;
}

pre {
  margin: 0;
}

button {
  font-family: inherit;
}

:root {
  --scrollbar-width: 8px;
}

.panda-theme-dark,
.panda-theme-light,
.panda-theme-light-cv {
  --scrollbar-thumb-color: var(--theme-bg-scroll);
  --scrollbar-thumb-color-hover: var(--theme-bg-scroll);
  --scrollbar-track-color: transparent;
}

/* show scrollbars on MacOS when the OS preferences hide them */

::-webkit-scrollbar {
  -webkit-appearance: none;
  width: var(--scrollbar-width);
  height: var(--scrollbar-width);
}

::-webkit-scrollbar-thumb {
  border-radius: calc(var(--scrollbar-width) - 2px);
  background: var(--scrollbar-thumb-color);
  background-clip: padding-box;
  min-height: 40px;
  border: 2px solid #0000;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-thumb-color-hover);
  background-clip: padding-box;
}

::-webkit-scrollbar-track {
  background: var(--scrollbar-track-color);
}

::-webkit-scrollbar-corner {
  background: var(--scrollbar-track-color);
}

:root {
  --spacing-base: 4px;
  --spacing-3xs: calc(var(--spacing-base) / 2);
  --spacing-2xs: var(--spacing-base);
  --spacing-xs: calc(var(--spacing-base) * 2);
  --spacing-sm: calc(var(--spacing-base) * 3);
  --spacing-md: calc(var(--spacing-base) * 4);
  --spacing-lg: calc(var(--spacing-base) * 6);
  --spacing-xl: calc(var(--spacing-base) * 8);
  --spacing-2xl: calc(var(--spacing-base) * 12);
  --spacing-3xl: calc(var(--spacing-base) * 16);
  --spacing-4xl: calc(var(--spacing-base) * 24);
}

.StartingPointSummaryCard {
  --panda-info-color: var(--theme-character-primary65);

  background: var(--panda-page-content-background);
  padding: 16px;
  margin-bottom: 16px;
  color: var(--theme-character-title);
  display: flex;
  flex-direction: column;
}

.StartingPointSummaryCard__title {
    display: flex;
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    padding: 0 0 16px 0;
  }

.StartingPointSummaryCard__title a:first-child {
      margin-right: 8px;
    }

.StartingPointSummaryCard__body {
    height: 100%;
  }

.StartingPointSummaryCard:last-child {
    margin-bottom: 0;
  }

.StartingPointSummaryCardCell {
  display: flex;
  flex-direction: column;
  position: relative;
}

.StartingPointSummaryCardCell__count {
    color: var(--theme-character-title);
    font-weight: 500;
    font-size: 30px;
    line-height: 40px;
    margin-right: 8px;
  }

.StartingPointSummaryCardCell__count .Spinner {
      --spinner-size: 36px;
      --spinner-ring-width: 3px;

      margin-top: 4px;
    }

.StartingPointSummaryCardCell__count .panda-tag-risk {
      margin-left: 8px;
    }

.StartingPointSummaryCardCell:not(:last-child)::after {
      content: "";
      right: 0;
      top: 20%;
      height: 55%;
      width: 1px;
      background: var(--theme-border-primary);
      position: absolute;
    }

.AnalyticsSummary .StartingPointSummaryCard__body {
    display: flex;
    justify-content: space-between;
  }

.AnalyticsSummary__header {
    color: var(--theme-character-title);
    display: flex;
    align-items: center;
  }

.AnalyticsSummary__headerTooltip ul {
      margin-top: 4px;
      padding-left: 20px;
      margin-bottom: 4px;
    }

.AnalyticsSummary__headerTooltip li {
      font-weight: bold;
    }

.AnalyticsSummaryThreatLevel {
  display: flex;
  flex-grow: 1;
  flex-basis: 400px;
  margin-right: 16px;
}

.AnalyticsSummaryThreatLevel .AnalyticsSummary__header {
    font-weight: 700;
    font-size: 14px;
  }

.AnalyticsSummaryThreatLevel .AnalyticsSummary__header .LineClampTooltip {
      width: unset;
    }

.AnalyticsSummaryThreatLevel__progress {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
  }

.AnalyticsSummaryThreatLevel__progressCount {
    position: absolute;
    text-align: center;
    color: var(--theme-character-title);
    font-size: 18px;
  }

.AnalyticsSummaryThreatLevel__progressCircle.ProgressCircle {
    --spinner-background: var(--theme-bg-moderate);
    --spinner-foreground: var(--theme-bg-brand-default);

    width: 6.4rem;
    height: 6.4rem;
  }

.AnalyticsSummaryThreatLevel__description {
    color: var(--theme-character-primary65);
  }

.AnalyticsSummaryThreatLevel__description b {
      color: var(--theme-character-title);
    }

.AnalyticsSummaryHeader {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.AnalyticsSummaryHeader__updated {
    display: flex;
    align-items: center;
    font-weight: normal;
    color: var(--theme-character-brand-text);
  }

.AnalyticsSummaryHeader__updated .panda-icon {
      margin-right: 8px;
    }

.AnalyticsSummaryStats {
  display: grid;
  grid-template-columns: 1fr 1fr minmax(160px, 1fr);
  grid-gap: 32px;
  gap: 32px;
  min-width: 200px;
  max-width: 60%;
  flex-grow: 1;
  flex-shrink: 0;
}

.AnalyticsSummaryStats .StartingPointSummaryCardCell__title,
    .AnalyticsSummaryStats .StartingPointSummaryCardCell__body {
      align-self: flex-end;
    }

.AnalyticsSummaryStats .StartingPointSummaryCardCell:not(:last-child)::after {
        right: -16px;
      }

.AnalyticsSummaryStats .AnalyticsSummary__riskHeader .FormRowSelect {
    border: none;
    background: transparent;
    padding: 0;
    margin-bottom: -2px;
  }

.AnalyticsSummaryStats__risksOptionLow {
    --panda-badge-background-color: var(--theme-character-risk-low);
  }

.AnalyticsSummaryStats__risksOptionMedium {
    --panda-badge-background-color: var(--theme-character-risk-medium);
  }

.AnalyticsSummaryStats__risksOptionHigh {
    --panda-badge-background-color: var(--theme-character-risk-high);
  }

.AnalyticsSummary__riskHeader {
  display: flex;
}

.AnalyticsSummary__riskTooltip {
  max-width: 200px;
}

.NewDetectionsTooltip {
  display: flex;
  flex-direction: column;
  grid-gap: var(--spacing-xs);
  gap: var(--spacing-xs);
}

.NewDetectionsTooltipGrid {
  display: grid;
  grid-row-gap: var(--spacing-xs);
  grid-column-gap: var(--spacing-2xs);
}

.NewDetectionsTooltipGrid__headings {
    grid-template-columns: auto auto;
  }

.NewDetectionsTooltipGrid__2Col {
    grid-template-columns: min-content max-content;
  }

.NewDetectionsTooltipGrid__table {
    grid-template-columns: min-content max-content auto;
  }

.NewDetectionsTooltipGrid__detections {
    font-size: 10px;
    font-weight: 500;
  }

.NewDetectionsTooltipGrid__updates {
    font-size: 10px;
    font-weight: 500;
    text-align: right;
  }

.NewDetectionsTooltipGrid__updatesCount {
    text-align: right;
  }

.NewDetectionsTooltipGrid__count {
    text-align: right;
  }

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

.RecentActivity {
  flex-grow: 1;
}

.RecentActivity .VirtualList {
    height: 100%;
  }

.RecentActivity__actionsBar {
  display: flex;
  grid-gap: var(--spacing-xs);
  gap: var(--spacing-xs);
  align-items: center;
}

.RecentActivity__sortLabel {
  color: var(--theme-character-secondary);
}

.RecentActivityTabs {
  --mask-color: var(--panda-page-content-background);
}

.RecentActivityTabs .panda-tabs-actions-container {
    margin: 0;
  }

.RecentActivityTabs .panda-tabs-tabpanels {
    border-top: 1px solid var(--theme-bg-item-hover);
    padding-top: 5px;
    margin-top: -1px;
    overflow: auto;
  }

.RecentActivityTabs__labelWrapper {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.panda-tabs-tab-disabled .RecentActivityTabs__labelWrapper,
.panda-tabs-tab-disabled .TagBubbleCount {
  cursor: not-allowed;
}

.RecentActivityGroupHeader {
  display: flex;
  align-items: center;
  padding: 12px 0;
}

.RecentActivityGroupHeader__indicator {
    background: var(--theme-bg-brand-default);
    height: 10px;
    width: 10px;
    border-radius: 50%;
    margin-right: 16px;
  }

.RecentActivityGroupHeader__label {
    font-size: 16px;
    font-weight: bold;
  }

.RecentActivityGroupHeader__label .panda-icon {
      --panda-icon-size: 12px;

      margin-left: 4px;
    }

.RecentActivityGroupHeader__label:hover {
      cursor: pointer;
    }

.ActivityFeedItemGroup {
  margin-left: 4px;
  padding-left: 8px;
  border-left: 1px solid var(--theme-bg-brand-default);
}

.ActivityFeedItemGroup--selected .ActivityFeedItemRow {
    background: var(--theme-bg-table-info);
    border: 2px solid var(--theme-border-primary);
    border-radius: 4px;
    padding: 10px 14px;
  }

.ActivityFeedItemRow {
  display: flex;
  align-items: center;
  padding: 12px 16px;
}

.ActivityFeedItemRow .ConciseDate__time {
    font-weight: bold;
  }

.ActivityFeedItemRow:hover {
    cursor: pointer;
    border-radius: 4px;
  }

.ActivityFeedItemRow:hover:not(.ActivityFeedItemGroup--selected) {
    background: var(--theme-bg-table-select);
  }

.ActivityFeedItemRow__content {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: space-between;
  }

.ActivityFeedItemRow__icon {
    --panda-icon-size: 18px;

    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 16px;
    height: 44px;
    width: 44px;
    background: var(--theme-bg-primary);
    border: 1px solid var(--theme-border-primary);
    border-radius: 2px;
  }

.ActivityFeedItemRow__title {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
  }

.ActivityFeedItemRow__title .ValueTooltip {
      white-space: nowrap;
      width: unset;
    }

.ActivityFeedItemRow__subtitle {
    --link-color: var(--theme-character-primary65);
  }

.ActivityFeedItemRow__metadata {
    display: flex;
    align-items: center;
    color: var(--theme-character-primary65);
  }

.ActivityFeedItemRow__metadata .ActivityFeedItemRow__metadataTimestamp {
      --panda-icon-size: 12px;

      margin-right: 16px;
      color: var(--theme-character-primary65);
      text-wrap: nowrap;
    }

.ActivityFeedItemRow__metadata .ActivityFeedItemRow__metadataTimestamp .panda-icon {
        margin-right: 4px;
      }

.ActivityFeedItemRow__metadata .AvatarText__userIcon:not(:only-child) {
      margin-right: 16px;
    }

.ActivityFeedItemRow__metadata .panda-tag {
      margin-left: 16px;
    }

.ActivityFeedItemRow .IOCMatchTag,
.ActivityFeedItemRow .ModelMatchTag,
.ActivityFeedItemRow .SituationsTag {
  margin-left: 16px;
}

.ArtifactResponseTag > .panda-tag-label, .ArtifactResponseTags__hiddenTag > .panda-tag-label {
    display: flex;
    align-items: center;
  }

.ArtifactResponseTag > .panda-tag-label > .panda-icon, .ArtifactResponseTags__hiddenTag > .panda-tag-label > .panda-icon {
      margin-right: 8px;
      margin-top: -1px;
    }

.ArtifactResponseTags {
  display: flex;
  position: relative;
}

.ArtifactResponseTags__group {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 8px;
    gap: 8px;
    margin-left: 8px;
    position: relative;
    overflow: hidden;
    height: 22px;
  }

.ArtifactResponseTags__hidden {
    position: absolute;
    left: 8px;
  }

.ArtifactResponseTagTooltip__rowKey {
    font-weight: bold;
  }

.ArtifactResponseTagTooltip__rowValue {
    margin-left: 4px;
  }

.DashboardSummary {
  flex-grow: 0;
}

.DashboardSummary .StartingPointSummaryCard__body {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 32px;
    gap: 32px;
  }

.DashboardSummary--no-permission .StartingPointSummaryCard__title a {
      color: var(--theme-character-secondary);
    }

.DashboardSummary--no-permission .StartingPointSummaryCard__body {
      display: block;
    }

.DashboardSummaryTile {
  height: 60px;
  display: flex;
  justify-content: space-between;
}

.DashboardSummaryTile__change {
    display: flex;
    white-space: nowrap;
  }

.DashboardSummaryTile__period {
    color: var(--theme-character-primary65);
    margin-right: 8px;
  }

.DashboardSummaryTile__percentage {
    --panda-icon-size: 12px;
  }

.DashboardSummaryTile__percentage--neutral {
      color: var(--theme-character-secondary);
    }

.DashboardSummaryTile__percentage--positive {
      color: var(--theme-character-error-default);
    }

.DashboardSummaryTile__percentage--negative {
      color: var(--theme-character-success-default);
    }

.AdversarialModelsHistogram,
.SuspectDomainsHistogram {
  --histogram-selected-bar-color: var(--theme-bg-dataviz-brand-accent-default);
  --histogram-selected-label-color: var(--theme-character-brand-text);
  --histogram-selected-faded-bar-color: var(
    --theme-bg-dataviz-brand-accent-faded
  );
  --histogram-selected-faded-label-color: var(
    --theme-character-dataviz-brand-accent-faded
  );
}

.DevicesAtRiskHistogram,
.SituationCountHistogram {
  --histogram-selected-faded-bar-color: var(--theme-bg-dataviz-neutral);
  --histogram-selected-faded-label-color: var(--theme-character-secondary);
}

.DevicesAtRiskHistogram .HistogramBarRisk__none, .SituationCountHistogram .HistogramBarRisk__none {
    --histogram-selected-bar-color: var(--theme-bg-dataviz-risk-na);
    --histogram-selected-label-color: var(--theme-bg-dataviz-risk-na);
  }

.DevicesAtRiskHistogram .HistogramBarRisk__low, .SituationCountHistogram .HistogramBarRisk__low {
    --histogram-selected-bar-color: var(--theme-bg-dataviz-risk-low);
    --histogram-selected-label-color: var(--theme-character-risk-low);
  }

.DevicesAtRiskHistogram .HistogramBarRisk__medium, .SituationCountHistogram .HistogramBarRisk__medium {
    --histogram-selected-bar-color: var(--theme-bg-dataviz-risk-medium);
    --histogram-selected-label-color: var(--theme-character-risk-medium);
  }

.DevicesAtRiskHistogram .HistogramBarRisk__high, .SituationCountHistogram .HistogramBarRisk__high {
    --histogram-selected-bar-color: var(--theme-bg-dataviz-risk-high);
    --histogram-selected-label-color: var(--theme-character-risk-high);
  }

.DashboardSummaryHistogram {
  display: flex;
  margin-right: 32px;
  animation: 3s infinite alternate slidein;
}

.DashboardSummaryHistogram__value {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    width: 12px;
    margin-left: 4px;
  }

.DashboardSummaryHistogram__value--selected .DashboardSummaryHistogram__bar, .DashboardSummaryHistogram__value:hover .DashboardSummaryHistogram__bar {
        background: var(--histogram-selected-bar-color);
      }

.DashboardSummaryHistogram__value--selected .DashboardSummaryHistogram__label, .DashboardSummaryHistogram__value:hover .DashboardSummaryHistogram__label {
        color: var(--histogram-selected-label-color);
      }

.DashboardSummaryHistogram__bar {
    width: 12px;
    background: var(--histogram-selected-faded-bar-color);
  }

.DashboardSummaryHistogram__label {
    text-align: center;
    font-weight: bold;
    font-size: 10px;
    color: var(--histogram-selected-faded-label-color);
  }

.DashboardSummaryHistogramTooltip {
  font-weight: 500;
  white-space: pre-line;
}

.SituationsTag.panda-tag {
  --panda-tag-background-color: var(--theme-bg-brand-default);
  --panda-tag-background-color-hover: var(--theme-bg-brand-default);
  --panda-tag-background-color-active: var(--theme-bg-brand-default);
  --panda-tag-border-color: var(--theme-bg-brand-minimal);
  --panda-tag-border-color-hover: var(--theme-bg-brand-minimal);
  --panda-tag-border-color-active: var(--theme-bg-brand-minimal);
}

.ModelMatchTag.panda-tag {
  --panda-tag-background-color: var(--theme-bg-brand-minimal);
  --panda-tag-background-color-hover: var(--theme-bg-brand-minimal);
  --panda-tag-background-color-active: var(--theme-bg-brand-minimal);
  --panda-tag-border-color: var(--theme-bg-brand-default);
  --panda-tag-border-color-hover: var(--theme-bg-brand-default);
  --panda-tag-border-color-active: var(--theme-bg-brand-default);
}

.IOCMatchTag.panda-tag {
  --panda-tag-background-color: var(--theme-bg-brand-active);
  --panda-tag-background-color-hover: var(--theme-bg-brand-minimal);
  --panda-tag-background-color-active: var(--theme-bg-brand-minimal);
  --panda-tag-border-color: var(--theme-bg-brand-default);
  --panda-tag-border-color-hover: var(--theme-bg-brand-default);
  --panda-tag-border-color-active: var(--theme-bg-brand-default);
  --panda-tag-color: var(--theme-character-inverse);
}

.StartingPointSidebar__overview,
.IOCMatchesSidebar__artifactDetails,
.SituationsSidebar__artifactDetails {
  display: flex;
  flex-direction: row;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.IOCMatchesSidebar__artifactDetails,
.SituationsSidebar__artifactDetails {
  margin-top: 24px;
}

.StartingPointSidebar__overviewTitle,
.IOCMatchesSidebar__artifactDetailsTitle,
.SituationsSidebar__artifactDetailsTitle {
  font-weight: bold;
}

.StartingPointSidebar__showAllToggle.panda-button-standard.panda-button-text:not(:hover),
.ShowAllArtifactDetails__button.panda-button-standard.panda-button-text:not(:hover) {
  color: var(--theme-character-brand-text);
}

.IOCMatchesSidebar__iocName .KeyValue__value,
.ModelMatchesSidebar__modelName .KeyValue__value,
.SituationsSidebar__situationName .KeyValue__value {
  --link-color: var(--theme-character-primary65);

  overflow-wrap: break-word;
}

.IOCMatchesSidebar__iocDescription .KeyValue__value,
.ModelMatchesSidebar__modelDescription .KeyValue__value,
.SituationsSidebar__situationDescription .KeyValue__value {
  overflow-wrap: break-word;
  overflow-y: auto;
  max-height: 200px;
}

.IOCMatchesSidebar__overviewContent {
  margin-bottom: 16px;
}

.SituationsSidebar > .panda-alert {
    margin: 8px 0 16px 0;
  }

.SituationsSidebar__auditLog {
    background: var(--theme-bg-secondary);
    margin-bottom: 24px;
    min-height: 38px;
    position: relative;
  }

.SituationsSidebar__overviewContent {
    margin-bottom: 24px;
  }

.SituationsSidebar__auditLogTitle {
    --panda-icon-size: 12px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
    line-height: 22px;
  }

.SituationsSidebar__auditLogTitle:hover {
      cursor: pointer;
      background: var(--theme-bg-tertiary);
    }

.SituationsSidebar__auditLog .TimelineList {
  max-height: 320px;
}

.SituationsSidebarAttackMap {
  height: 250px;
  width: 352px;
  pointer-events: none;
  margin-bottom: 24px;
  overflow: hidden;
  position: relative;
}

.SituationsSidebarAttackMap--error {
    height: auto;
  }

.SituationsSidebarAttackMap__svg {
    width: 100%;
    height: 100%;
  }

.SituationsSidebarAttackMap .panda-alert-prompt {
    position: absolute;
    top: 0;
    left: 0;
    height: 250px;
  }

.SituationsSidebarAttackMap .AttackMap__associated0,
    .SituationsSidebarAttackMap .AttackMap__associated1,
    .SituationsSidebarAttackMap .AttackMap__associated2,
    .SituationsSidebarAttackMap .AttackMap__associated3,
    .SituationsSidebarAttackMap .AttackMap__associated4,
    .SituationsSidebarAttackMap .AttackMap__associated5 {
      display: none;
    }

.SituationsSidebarAttackMap .AttackMapNode__more {
      display: none;
    }

.SituationsSidebar__auditLogLinkIcon {
  margin-left: 8px;

  --panda-icon-size: 14px;
}

.SituationsSidebar__artifactResponses {
  margin-bottom: 8px;
}

.SituationsSidebar__artifactResponsesTitle {
  font-weight: bold;
  margin-bottom: 8px;
}

.SituationsSidebar__artifactResponsesGroup {
  max-height: 320px;
  overflow-y: auto;
  position: relative;
}

.SituationsSidebar__artifactResponsesKeyValue {
  margin-bottom: 8px;
}

.ModelMatchesSidebar__referenceIdentifier {
    overflow-wrap: break-word;
  }

.ModelMatchesSidebar .ThreatBehaviorCountSummaries {
    display: flex;
    flex-grow: 1;
    padding: var(--spacing-xs);
    border-bottom: 1px solid var(--theme-bg-canvas);
    background: var(--key-value-background);
  }

.ModelMatchesSidebar .ThreatBehaviorCountSummaries:empty {
      display: none;
    }

.ModelMatchesSidebar .ThreatBehaviorCountSummary {
    padding-right: 72px;
  }

.ModelMatchesSidebar .ThreatBehaviorCountSummary__label {
      white-space: nowrap;
      text-align: center;
      font-weight: bold;
      margin-bottom: var(--spacing-xs);
    }

.ShowAllArtifactDetails__modal {
  --key-value-background: var(--colors-gray-900);
}

.DetectionsCircle {
  width: 6.4rem;
  height: 6.4rem;
}

.DetectionsCircle__background {
    stroke-width: 4;
    fill: none;
    stroke: var(--theme-border-primary);
  }

.DetectionsCircle__situationsCircle {
    stroke-width: 2;
    stroke: var(--theme-bg-dataviz-brand-default);
    fill: none;
  }

.DetectionsCircle__modelMatchesCircle {
    stroke-width: 2;
    stroke: var(--theme-bg-dataviz-brand-minimal-default);
    fill: none;
  }

.DetectionsCircle__iocsCircle {
    stroke-width: 2;
    stroke: var(--theme-bg-dataviz-brand-accent-default);
    fill: none;
  }

.DetectionsCircle__situationsArc,
  .DetectionsCircle__modelMatchesArc,
  .DetectionsCircle__iocsArc {
    stroke-width: 2;
    stroke: var(--theme-border-dataviz-default);
  }

.DetectionsCircle__situationsArc {
    fill: var(--theme-bg-dataviz-brand-default);
  }

.DetectionsCircle__modelMatchesArc {
    fill: var(--theme-bg-dataviz-brand-minimal-default);
  }

.DetectionsCircle__iocsArc {
    fill: var(--theme-bg-dataviz-brand-accent-default);
  }

.DetectionsCircle--emphasized .DetectionsCircle__situationsArc:not(:hover) {
    fill: var(--theme-bg-dataviz-brand-faded);
    stroke: var(--theme-border-dataviz-default-faded);
  }

.DetectionsCircle--emphasized .DetectionsCircle__modelMatchesArc:not(:hover) {
    fill: var(--theme-bg-dataviz-brand-minimal-faded);
    stroke: var(--theme-border-dataviz-default-faded);
  }

.DetectionsCircle--emphasized .DetectionsCircle__iocsArc:not(:hover) {
    fill: var(--theme-bg-dataviz-brand-accent-faded);
    stroke: var(--theme-border-dataviz-default-faded);
  }

.panda-theme-dark,
.panda-theme-light,
.panda-theme-light-cv {
  --sunburst-label-color: var(--theme-character-primary65);
  --sunburst-label-weight: bold;
  --sunburst-outer-path-color: var(--theme-border-dataviz-grid-bold);
  --sunburst-arc-odd-color: var(--theme-bg-dataviz-brand-minimal-default);
  --sunburst-arc-even-color: var(--theme-bg-dataviz-brand-subtle);
  --sunburst-arc-empty-color: var(--theme-bg-primary);
  --sunburst-percentage-text-color: var(--theme-character-title);
  --sunburst-total-text-color: var(--theme-character-title);
  --sunburst-arc-risk-high-fill: var(--theme-bg-dataviz-risk-high);
  --sunburst-arc-risk-medium-fill: var(--theme-bg-dataviz-risk-medium);
  --sunburst-arc-risk-low-fill: var(--theme-bg-dataviz-risk-low);
  --sunburst-arc-non-risk-fill: var(--theme-bg-dataviz-brand-accent-default);
  --sunburst-arc-outline-color: var(--theme-border-dataviz-brand);

}

.Theme--print {
  --sunburst-label-weight: normal;
}

.Sunburst__columns {
    fill: var(--sunburst-label-color);
    font-weight: var(--sunburst-label-weight);
  }

.OverrideDeviceNameModal .ClearOverride__loadingStatus, .OverrideDeviceScoreModal .ClearOverride__loadingStatus, .ManualOverrideSelectionPolicyModal .ClearOverride__loadingStatus, .SelectOverrideSelectionPolicyModal .ClearOverride__loadingStatus {
    display: flex;
    align-items: center;
  }

.OverrideDeviceNameModal .ClearOverride__loadingStatus .Spinner, .OverrideDeviceScoreModal .ClearOverride__loadingStatus .Spinner, .ManualOverrideSelectionPolicyModal .ClearOverride__loadingStatus .Spinner, .SelectOverrideSelectionPolicyModal .ClearOverride__loadingStatus .Spinner {
      margin-right: var(--spacing-2xs);
    }

.panda-theme-dark,
.panda-theme-light,
.panda-theme-light-cv {
  --threat-timeline-background: var(--theme-bg-secondary);
  --threat-timeline-border: 2px solid var(--theme-border-dataviz-primary);
  --threat-timeline-content-background: var(--theme-bg-tertiary);
  --threat-timeline-content-background-hover: var(--theme-bg-tertiary);
  --threat-timeline-circle-border: 1px solid var(--theme-bg-brand-default);
  --threat-timeline-circle-background: var(--theme-bg-dataviz-accent);
  --threat-timeline-circle-background-hover: var(--theme-bg-brand-default);
  --threat-timeline-circle-color: var(--theme-character-primary);
  --threat-timeline-circle-color-clickable: var(--theme-character-primary);
  --threat-timeline-circle-color-hover: var(--theme-character-inverse);
  --threat-timeline-scale-color: var(--gray-02);
  --threat-timeline-domain-color: var(--white-02);
  --threat-timeline-watchlist-color: var(--white-02);
  --threat-timeline-ioc-color: var(--white-02);
  --threat-timeline-tag-border: 1px solid var(--color-defining-artifacts);
  --threat-timeline-tag-color: var(--color-defining-artifacts);
}

.ThreatTimelineTable {
  height: 100%;
}

.ThreatTimelineTable .ThreatTimelineTable__list {
    height: 100%;
  }

.ThreatTimelineTable .ThreatTimelineTable__toolbar {
    padding: var(--spacing-2xs) var(--spacing-2xs) var(--spacing-sm) 0;
    display: flex;
  }

.ThreatTimelineTable .ThreatTimelineTable__row {
    padding-right: var(--spacing-lg);
    padding-left: 10px;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
  }

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

.ThreatTimelineTable__ackFilter span {
      font-size: var(--font-size-sm);
      line-height: var(--font-size-sm);
      color: var(--white-02);
    }

.ThreatTimelineTable__empty {
    white-space: pre-line;
    font-size: var(--font-size-sm);
    color: var(--gray-02);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

.ThreatTimelineTable__suppressedDevice {

    margin-bottom: var(--spacing-sm);
  }

.ThreatTimelineTable__suppressedDevice button {
      margin-left: var(--spacing-xs);
    }

.TimelineRowWrapper {
  padding-left: var(--spacing-lg);
  border-left: var(--threat-timeline-border);
  display: flex;
  flex: 1 1 200px;
}

.TimelineRow {
  width: 100%;
  background: var(--threat-timeline-background);
  display: flex;
  flex-direction: column;
  padding-bottom: var(--spacing-lg);
}

.TimelineRow__content {
    display: flex;
    position: relative;
    background: var(--threat-timeline-content-background);
    padding: var(--spacing-sm) var(--spacing-xl) var(--spacing-sm)
      var(--spacing-sm);
    box-shadow: 3px 5px 10px #01162780;
    color: inherit;
    text-decoration: none;
  }

.TimelineRow--group {
    padding-bottom: var(--spacing-lg);
  }

.TimelineRow--group::before {
    content: "";
    position: absolute;
    top: 2px;
    bottom: 3px;
    left: 4.5px;
    width: 13px;
    border-radius: 14px;
    background: linear-gradient(
      180deg,
      rgba(240, 240, 240, 0.8) 0%,
      rgba(240, 240, 240, 0.2) 20%,
      rgba(240, 240, 240, 0) 40%
    );
  }

.TimelineRow--group::after,
  .TimelineRow--point::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    left: 4px;
    top: 2px;
    border-radius: 14px;
    background: var(--theme-bg-tertiary);
    border: 1px solid var(--theme-border-dataviz-primary);
  }

.TimelineRow--group .TimelineRow__content {
    box-shadow: 3px 2px 10px #141414, 8px 8px var(--theme-bg-tertiary),
      11px 8px 10px #141414, 16px 16px var(--theme-bg-tertiary),
      18px 16px 10px #141414;
  }

.TimelineRow--acknowledged .TimelineCard,
    .TimelineRow--acknowledged .TimelineRow__scales,
    .ThreatTimelineTable--whiteListed .TimelineRow .TimelineCard,
    .ThreatTimelineTable--whiteListed .TimelineRow .TimelineRow__scales {
      opacity: 0.7;
    }

.TimelineRow--acknowledged:hover .TimelineCard,
    .TimelineRow--acknowledged:hover .TimelineRow__scales,
    .ThreatTimelineTable--whiteListed .TimelineRow:hover .TimelineCard,
    .ThreatTimelineTable--whiteListed .TimelineRow:hover .TimelineRow__scales {
      opacity: 1;
    }

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

.TimelineRow__tag {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    top: 0;
    right: 0;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    color: var(--theme-character-title);
    background-color: var(--theme-bg-moderate);
    font-size: var(--font-size-sm);
    line-height: var(--font-size-sm);
    width: var(--spacing-lg);
  }

.TimelineRow__scales {
    display: flex;
  }

.TimelineRow .TimelineCard {
    flex-grow: 1;
  }

.TimelineRow__scale {
    flex-grow: 0;
    flex-shrink: 0;
    text-align: center;
    padding: 0 1rem;
  }

.TimelineRow__scaleLabel {
    color: var(--gray-02);
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-xs);
  }

.TimelineRow__activityGroup {
    margin-left: var(--spacing-xl);
    width: 82px;
  }

.TimelineRow__activityGroupLink {
    display: flex;
    flex-direction: row;
    font-size: var(--font-size-sm);
    color: var(--pink-01);
    grid-gap: 8px;
    gap: 8px;
    text-decoration: none;
  }

.TimelineRow__activityGroupLink--disabled {
      color: var(--theme-character-primary65);
      cursor: not-allowed;
    }

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

.TimelineRow__activityGroupIconContainer {
    --icon-size: 1rem;

    display: flex;
    align-items: center;
  }

.TimelineRow--clickable + .TimelineRow__activityGroup .TimelineRow__activityClick {
    color: var(--pink-01);
    cursor: pointer;
    text-align: left;
    min-width: 0;
    padding: 0;
    font-size: var(--font-size-sm);
    font-weight: bold;
  }

.TimelineRow--clickable + .TimelineRow__activityGroup .TimelineRow__activityClick .Icon {
      height: 12px;
      width: 12px;
    }

.TimelineRow .WithIndicator {
    max-width: 20rem;
  }

.TimelineRowHeader {
  position: relative;
  background: transparent;
  display: flex;
  justify-content: space-between;
  font-size: var(--font-size-sm);
}

.TimelineRowHeader .ConciseDate {
    font-size: var(--font-size-sm);
  }

.TimelineRowHeader .ConciseDate__date {
    font-size: inherit;
    color: var(--white-02);
    order: 2;
  }

.TimelineRowHeader .ConciseDate__time {
    color: var(--gray-02);
    margin-right: var(--spacing-2xs);
    order: 1;
  }

.TimelineRowHeader--point,
  .TimelineRowHeader--offset {
    padding-bottom: var(--spacing-2xs);
  }

.TimelineRow--group .TimelineRowHeader--none::before {
    top: 7px;
  }

.TimelineRowHeader--offset .ConciseDate {
      font-size: var(--font-size-sm);
    }

.TimelineRowHeader--none {
    height: 0;
  }

.TimelineRowHeader--none > * {
      display: none;
    }

.TimelineRowHeader__delta {
    font-size: var(--font-size-sm);
    margin-left: var(--spacing-2xs);
    color: var(--threat-timeline-scale-color);
  }

.TimelineRowHeader__groupTime {
    margin-left: auto;
  }

.TimelineRowHeader__groupTime .ConciseDate {
      font-size: var(--font-size-sm);
    }

.TimelineRowHeader__groupTime > span:first-child {
      margin-right: var(--spacing-2xs);
    }

.TimelineRowScale {
  width: 80px;
  height: 80px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--threat-timeline-circle-color);
  cursor: default;
}

.TimelineRowScale__circle {
    background: var(--threat-timeline-circle-background);
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
  }

.TimelineRowScale--clickable {
    cursor: pointer;
    color: var(--threat-timeline-circle-color-clickable);
  }

.TimelineRowScale--clickable .TimelineRowScale__circle {
      border: var(--threat-timeline-circle-border);
    }

.TimelineRowScale--clickable:hover {
      color: var(--threat-timeline-circle-color-hover);
    }

.TimelineRowScale--clickable:hover .TimelineRowScale__circle {
        background: var(--threat-timeline-circle-background-hover);
      }

.TimelineRowScale__label {
    position: relative;
    font-size: var(--font-size-sm);
    font-weight: bold;
  }

.TimelineRowScale--empty .TimelineRowScale__label {
    color: var(--threat-timeline-scale-color);
  }

.TimelineCard__type {
  --icon-size: 2rem;

  position: absolute;
  top: 15px;
  left: 15px;
}

.WatchlistCard .TimelineCard__type {
    color: var(--threat-timeline-watchlist-color);
  }

.WatchlistCard__name {
    font-size: var(--font-size-sm);
    margin-left: 40px;
  }

.WatchlistCard__query {
    max-height: 6em;
    overflow: hidden;
    position: relative;
    word-break: break-word;
  }

.WatchlistCard__query::after {
      content: "";
      pointer-events: none;
      position: absolute;
      top: 4em;
      left: 0;
      right: 0;
      height: 2em;
      background: linear-gradient(
        transparent,
        var(--threat-timeline-content-background)
      );
    }

.WatchlistCard__attackStages {
    margin-left: var(--spacing-lg);
    opacity: 0.6;
  }

.NotableDomainCard {
  padding-left: 40px;
}

.NotableDomainCard .RiskLevel {
    margin-right: var(--spacing-2xs);
  }

.NotableDomainCard .TimelineCard__type {
    color: var(--threat-timeline-domain-color);
  }

.NotableDomainCard__noWhois {
    opacity: 0.5;
  }

.NotableDomainCard .Icon {
    transform: scale(0.8);
  }

.IOCCard {
  padding-left: 40px;
}

.IOCCard .RiskLevel {
    margin-right: var(--spacing-2xs);
  }

.IOCCard .TimelineCard__type {
    color: var(--threat-timeline-ioc-color);
  }

.TimelineRow .KeyValueList .KeyValue {
    background: transparent;
    padding: 0;
  }

.TimelineRow .KeyValueList .KeyValue__key {
    color: var(--theme-character-secondary);
    flex-basis: 10rem;
    flex-grow: 0;
    flex-shrink: 0;
    font-weight: inherit;
  }

.TimelineRow .KeyValueList .KeyValue__value {
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
    flex-basis: 10rem;
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    font-size: var(--font-size-sm);
  }

.TimelineRow .KeyValueList .KeyValue__separator {
    height: var(--spacing-xs);
  }

.TimeSeries {
  --time-series-primary: var(--orange-01);
  --time-series-secondary: var(--pink-01);
  --time-series-background: transparent;
  --time-series-label: var(--white-02);
  --time-series-grid: var(--light-purple-03);
}

.TimeSeries__group {
    pointer-events: painted;
    opacity: 1;
    transition: 0.2s linear opacity;
  }

.TimeSeries--dim {
    opacity: 0.3;
  }

.TimeSeries--primary .TimeSeriesLine {
      fill: none;
      stroke: var(--time-series-primary);
    }

.TimeSeries--primary .TimeSeriesPoint--border {
      opacity: 0.5;
      fill: var(--time-series-primary);
      stroke: var(--time-series-primary);
      stroke-width: 0;
    }

.TimeSeries--secondary .TimeSeriesLine {
      fill: none;
      stroke: var(--time-series-secondary);
    }

.TimeSeries--secondary .TimeSeriesPoint--border {
      opacity: 0.5;
      fill: var(--time-series-secondary);
      stroke: var(--time-series-secondary);
      stroke-width: 0;
    }

.TimeSeries--selected .TimeSeriesPoint:first-of-type .TimeSeriesPoint--border, .TimeSeries--selected .TimeSeriesPoint:last-of-type .TimeSeriesPoint--border {
        fill: none;
        stroke: var(--white-02);
        stroke-width: 4;
      }

.TimeSeriesPoint {
  cursor: pointer;
}

.TimeSeriesPoint--dot {
    fill: var(--white-02);
  }

.TimeSeriesLine {
  cursor: pointer;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.panda-theme-dark,
.panda-theme-light,
.panda-theme-light-cv {
  --timelinelist-spacing-horizontal: 13px;
  --timelinelist-event-circle-radius: 5px;
  --timelinelist-event-circle-border-color: var(--theme-bg-brand-default);
  --timelinelist-event-circle-border-width: 2px;
  --timelinelist-event-circle-background-color: var(--theme-bg-canvas);
  --timelinelist-event-circle-timestamp-horizontal-gap: 10px;
  --timelinelist-event-vertical-gap: var(--spacing-xs);
  --timelinelist-event-padding-vertical: var(--spacing-2xs);
  --timelinelist-event-description-color: var(--theme-character-primary65);
  --timelinelist-event-active-background-color: var(--theme-bg-item-hover);
  --timelinelist-event-timestamp-color: var(--theme-character-title);
  --timelinelist-event-timestamp-half-line-height: 11px;
  --timelinelist-group-header-line-height: calc(var(--timelinelist-event-timestamp-half-line-height) * 2);
  --timelinelist-timeline-line-half-width: 0.5px;
  --timelinelist-timeline-line-color: var(--theme-border-primary);
  --timelinelist-event-circle-z-index: 1;
  --timelinelist-group-header-z-index: 2;
  --timelinelist-background-color: var(--theme-bg-secondary);
  --timelinelist-group-header-color: var(--theme-character-title);
}

.TimelineList {
  display: flex;
  flex-direction: column;
  margin-right: var(--timelinelist-spacing-horizontal);
  width: 100%;
  background: var(--timelinelist-background-color);
}

.TimelineList__footer {
  flex-shrink: 0;
  margin-bottom: var(--spacing-xs);
  margin-left: var(--spacing-xs);
}

.TimelineList__footer:empty {
    display: none;
  }

.TimelineList__timeline {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  margin-top: var(--spacing-xs);
  margin-bottom: var(--spacing-xs);
  margin-right: var(--spacing-xs);
}

.TimelineListGroup {
  display: flex;
  flex-direction: column;
  margin-top: 12px;
}

.TimelineListGroup:first-of-type {
    margin-top: 0;
  }

.TimelineListGroup__header {
  color: var(--timelinelist-group-header-color);
  background: var(--timelinelist-background-color);
  font-size: 14px;
  line-height: var(--timelinelist-group-header-line-height);
  font-weight: 700;
  padding-left: var(--spacing-xs);
  margin-bottom: var(--spacing-xs);
  position: sticky;
  top: 0;
  z-index: var(--timelinelist-group-header-z-index);
}

.TimelineListEvent {
  padding-left: var(--timelinelist-spacing-horizontal);
  padding-top: var(--timelinelist-event-vertical-gap);
  position: relative;
  width: 100%;
}

.TimelineListEvent:nth-of-type(2) {
    padding-top: 0;
  }

.TimelineListEvent::before,
.TimelineListEvent__timestamp::before,
.TimelineListEvent__timestamp::after,
.TimelineListEvent__descriptionLine::before {
  content: "";
  display: block;
  position: absolute;
  background: transparent;
  border-left: calc(var(--timelinelist-timeline-line-half-width) + var(--timelinelist-timeline-line-half-width)) solid var(--theme-border-primary);
  width: calc(var(--timelinelist-timeline-line-half-width) + var(--timelinelist-timeline-line-half-width));
}

.TimelineListEvent::before {
  height: var(--timelinelist-event-vertical-gap);
  top: 0;
  left: calc(var(--timelinelist-spacing-horizontal) + var(--timelinelist-event-circle-radius) - 0.5px);
}

.TimelineListEvent__timestampLine,
.TimelineListEvent__descriptionLine {
  display: flex;
  flex-direction: row;
  align-items: first baseline;
  position: relative;
}

.TimelineListEvent__circle {
  background: var(--timelinelist-event-circle-background-color);
  border: var(--timelinelist-event-circle-border-width) solid var(--timelinelist-event-circle-border-color);
  height: calc(var(--timelinelist-event-circle-radius) * 2);
  width: calc(var(--timelinelist-event-circle-radius) * 2);
  border-radius: 50%;
  z-index: var(--timelinelist-event-circle-z-index);
}

.TimelineListEvent__timestamp {
  margin-left: var(--timelinelist-event-circle-timestamp-horizontal-gap);
  padding: var(--timelinelist-event-padding-vertical) var(--spacing-xs) 0;
  color: var(--timelinelist-event-timestamp-color);
  width: 100%;
  font-weight: bold;
  font-size: 14px;
  line-height: calc(var(--timelinelist-event-timestamp-half-line-height) + var(--timelinelist-event-timestamp-half-line-height));
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;

  --timelinelist-timeline-line-timestamp-top-line-height: calc(var(--timelinelist-event-padding-vertical) + var(--timelinelist-event-timestamp-half-line-height))
}

.TimelineListEvent__timestamp::before {
  height: var(--timelinelist-timeline-line-timestamp-top-line-height);
  top: 0;
  left: calc(var(--timelinelist-event-circle-radius) - 0.5px);
}

.TimelineListEvent__timestamp::after {
  height: calc(100% - var(--timelinelist-timeline-line-timestamp-top-line-height));
  bottom: 0;
  left: calc(var(--timelinelist-event-circle-radius) - 0.5px);
}

.TimelineListEvent__descriptionLine::before {
  height: 100%;
  bottom: 0;
  left: calc(var(--timelinelist-event-circle-radius) - 0.5px);
}

.TimelineListEvent__description {
  margin-left: calc(var(--timelinelist-event-circle-timestamp-horizontal-gap) + var(--timelinelist-event-circle-radius) * 2);
  padding: 0 var(--spacing-xs) var(--timelinelist-event-padding-vertical);
  color: var(--timelinelist-event-description-color);
  width: 100%;
  font-size: 14px;
  line-height: 22px;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}

.TimelineListEvent--active .TimelineListEvent__timestamp,
.TimelineListEvent--active .TimelineListEvent__description {
  background: var(--timelinelist-event-active-background-color);
}

.TimelineListEvent:nth-of-type(2)::before,
.TimelineListEvent:nth-of-type(2) .TimelineListEvent__timestamp::before,
.TimelineListEvent:last-child .TimelineListEvent__timestamp::after,
.TimelineListEvent:last-child .TimelineListEvent__descriptionLine::before {
  display: none;
}

:root {
  --font-family: "Roboto", "segoe ui", system-ui, sans-serif;
  --font-family-sans-serif: "Menlo", "Space Mono", "Lucida Console", monaco,
    "Courier New", monospace;
  --font-size-3xs: 0.8rem;
  --font-size-2xs: 1rem;
  --font-size-xs: 1.2rem;
  --font-size-sm: 1.4rem;
  --font-size-md: 1.6rem;
  --font-size-lg: 1.8rem;
  --font-size-xl: 2rem;
  --font-size-2xl: 2.4rem;
  --font-size-3xl: 2.8rem;
  --font-size-4xl: 3.2rem;
  --font-size-5xl: 3.6rem;
  --font-size-6xl: 4.2rem;
  --font-size-7xl: 4.8rem;
  --line-height: 1.4;
}

:root,
.Theme--dark {
  --link-color: var(--theme-character-title);
  --link-weight: inherit;
  --link-decoration: underline;
  --link-decoration-hover: none;
}

.Theme--light {
  --link-color: var(--purple-01);
}

.Theme--print {
  --link-color: inherit;
  --link-weight: normal;
  --link-decoration: none;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-xs);
  font-weight: normal;
  line-height: var(--line-height);
}

p {
  margin-top: 0;
  margin-bottom: var(--spacing-xs);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
    margin-top: 0;
  }

h1 {
  font-size: var(--font-size-2xl);
  margin: calc(var(--font-size-2xl) + 0.2rem) 0;
}

h2 {
  font-size: var(--font-size-xl);
  margin: calc(var(--font-size-xl) + 0.2rem) 0;
}

h3 {
  font-size: var(--font-size-lg);
  margin: calc(var(--font-size-lg) + 0.2rem) 0;
}

h4 {
  font-size: var(--font-size-md);
  margin: calc(var(--font-size-md) + 0.2rem) 0;
}

h5 {
  font-size: var(--font-size-sm);
  margin: calc(var(--font-size-sm) + 0.2rem) 0;
}

h6 {
  font-size: var(--font-size-xs);
  margin: calc(var(--font-size-xs) + 0.2rem) 0;
}

a {
  color: var(--link-color);
  cursor: pointer;
  text-decoration: var(--link-decoration);
  font-weight: var(--link-weight);
}

a:hover {
    text-decoration: var(--link-decoration-hover);
  }

pre {
  font-family: var(--font-family-sans-serif);
}

code {
  font-family: var(--font-family-sans-serif);
  font-size: inherit;
}

.panda-theme-dark,
.panda-theme-light,
.panda-theme-light-cv {
  --label-link-color: var(--theme-character-title);
  --label-link-hover-color: var(--theme-character-brand-text);
  --label-link-font-weight: bold;
}

.WithIndicator {
  display: inline-flex;
  position: relative;
  overflow: visible !important;
  max-width: 100%;
}

.WithIndicator__label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex-grow: 1;
    max-width: 100%;
    display: flex;
  }

.WithIndicator__label > *:first-child:last-child {
      overflow: hidden;
      text-overflow: ellipsis;
      width: 100%;
    }

.WithIndicator__label a {
      color: var(--label-link-color);
      text-decoration: underline;
      font-weight: var(--label-link-font-weight);
    }

.WithIndicator__label a:hover {
      color: var(--label-link-hover-color);
      text-decoration: none;
    }

.WithIndicator__indicator {
    margin-left: var(--spacing-2xs);
    display: flex;
    align-items: center;
    flex-grow: 0;
    flex-shrink: 0;
  }

.WithIndicator .WhiteListedIndicator {
    --icon-size: 1rem;

    position: relative;
    top: 0.2rem;
  }

.DeviceRiskLevelRef .WithIndicator__label, .DomainRiskLevelRef .WithIndicator__label {
    flex-grow: unset;
  }

:root {
  --user-markdown-color: inherit;
  --user-markdown-link-color: var(--white-01);
  --user-markdown-link-font-weight: bold;
  --user-markdown-border-color: var(--gray-02);
}

.Theme--light {
  --user-markdown-color: var(--gray-07);
  --user-markdown-link-color: var(--purple-01);
  --user-markdown-link-font-weight: normal;
  --user-markdown-border-color: var(--gray-02);
}

.UserMarkdown {
  font-size: inherit;
  color: var(--user-markdown-color);
}

.UserMarkdown h1,
  .UserMarkdown h2,
  .UserMarkdown h3,
  .UserMarkdown h4,
  .UserMarkdown h5,
  .UserMarkdown h6,
  .UserMarkdown p,
  .UserMarkdown ul,
  .UserMarkdown ol,
  .UserMarkdown hr,
  .UserMarkdown code,
  .UserMarkdown pre,
  .UserMarkdown table,
  .UserMarkdown blockquote {
    margin: var(--spacing-sm) 0;
    padding: 0;
  }

.UserMarkdown h1 {
    font-size: 1.3em;
  }

.UserMarkdown h2 {
    font-size: 1.1em;
  }

.UserMarkdown h3,
  .UserMarkdown h4,
  .UserMarkdown h5,
  .UserMarkdown h6 {
    font-size: 1em;
  }

.UserMarkdown h1,
  .UserMarkdown h2,
  .UserMarkdown h3,
  .UserMarkdown h4,
  .UserMarkdown h5,
  .UserMarkdown h6 {
    font-weight: bold;
    margin: var(--spacing-md) 0;
  }

.UserMarkdown > *:first-child {
    margin-top: 0;
  }

.UserMarkdown > *:last-child {
    margin-bottom: 0;
  }

.UserMarkdown a {
    color: var(--user-markdown-link-color);
    font-weight: var(--user-markdown-link-font-weight);
    text-decoration: underline;
  }

.UserMarkdown a:hover {
    text-decoration: none;
  }

.UserMarkdown table {
    border-collapse: collapse;
  }

.UserMarkdown table,
  .UserMarkdown th,
  .UserMarkdown td {
    border: 1px solid var(--user-markdown-border-color);
  }

.UserMarkdown th {
    font-weight: bold;
  }

.UserMarkdown th,
  .UserMarkdown td {
    padding: var(--spacing-2xs) var(--spacing-xs);
  }

.UserMarkdown ul,
  .UserMarkdown ol,
  .UserMarkdown li {
    margin-left: 0;
    margin-right: 0;
  }

.UserMarkdown ul,
  .UserMarkdown ol {
    padding-left: var(--spacing-lg);
  }

.UserMarkdown pre {
    text-shadow: none;
    overflow-x: auto;
    font-size: 0.9em;
  }

.UserMarkdown pre > code {
      white-space: unset;
    }

.UserMarkdown p > code {
    color: var(--theme-character-code-keyword);
    background: var(--theme-bg-canvas);
    padding: 0 var(--spacing-3xs);
    border-radius: 2px;
  }

.UserMarkdown .QueryExpression {
    background-color: var(--theme-bg-canvas);
    flex-grow: 1;
    word-break: break-word;
    align-self: center;
    padding: 4px 8px;
    margin-top: 0;
    margin-right: 16px;
    margin-bottom: 8px;
    border: 1px solid var(--theme-bg-primary);
    border-radius: 4px;
  }

.UserMarkdown hr {
    height: 0;
    border: none;
    border-top: 1px solid var(--user-markdown-border-color);
  }

.UserMarkdown__external .panda-icon {
      margin-left: var(--spacing-3xs);
      vertical-align: sub;
    }

.UserMarkdown input[type="checkbox"] {
    accent-color: var(--theme-bg-brand-default);
  }

.RunQueryExpression {
  display: flex;
}

.RunQueryExpression .panda-button {
    align-self: flex-start;
  }

:root {
  --z-index-notifications: 12000;
  --z-index-tooltip: 11000;
  --z-index-dropdown: 10000;
  --z-index-modal: 9000;
  --z-index-overlay: 8000;
  --z-index-querybar: 7500;
  --z-index-drawer: 7000;
  --z-index-quicksearch: 5000;
  --z-index-navbar: 400;
  --z-index-incidents: 100;
  --z-index-annotations: 99;
}

.Histogram__binTooltip {
  text-align: center;
}

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

.PivotTable:not(.TableBuilder) {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: var(--spacing-xs);
}

.PivotTable:not(.TableBuilder) .PivotTable__headers {
    height: 4rem;
    flex-shrink: 0;
    flex-grow: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    white-space: pre-line;
    border: 1px solid var(--theme-bg-secondary);
  }

.PivotTable:not(.TableBuilder) .PivotTable__header {
    font-size: var(--font-size-2xs);
    line-height: var(--font-size-xs);
    font-weight: bold;
  }

.PivotTable:not(.TableBuilder) .PivotTable__virtualList {
    height: 0;
    min-height: 0;
    flex-grow: 1;
  }

.PivotTable:not(.TableBuilder) .PivotTable__row {
    --row-background-color: var(--theme-bg-secondary);

    background: var(--row-background-color);
    font-size: var(--font-size-2xs);
    cursor: pointer;
    display: flex;
    align-items: center;
    flex-grow: 1;
  }

.PivotTable:not(.TableBuilder) .PivotTable__row:hover {
      --row-background-color: var(--theme-bg-moderate);
    }

.PivotTable:not(.TableBuilder) .PivotTable__headers,
  .PivotTable:not(.TableBuilder) .PivotTable__row {
    overflow: hidden;
    border-bottom: 1px solid var(--theme-bg-canvas);
  }

.PivotTable:not(.TableBuilder) .PivotTable__column,
  .PivotTable:not(.TableBuilder) .PivotTable__header {
    padding: 0 var(--spacing-xs);
    flex-basis: 1rem;
    flex-grow: 1;
    overflow: hidden;
  }

.PivotLink {
  color: inherit;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  text-decoration: none;
}

.PivotLink:hover {
    color: inherit;
  }

.PivotTable .TableBuilderBody {
    background: var(--row-background-color);
  }

.PivotTable .PivotTable__lineClamp {
    white-space: pre-line;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    width: 100%;
    overflow: hidden;
  }

.PivotTable .MitreDetailsTooltip {
    display: flex;
    flex-direction: column;
    font-size: var(--font-size-xs);
  }

.PivotTable .MitreDetailsTooltip__key {
      font-weight: bold;
    }

.PivotTable .PivotTable__warningRow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xs);
    opacity: 50%;
  }

.PivotTable .PivotTable__warningRow .panda-icon {
      margin-right: var(--spacing-xs);
    }

.PivotTable .PivotTable__row {
    display: flex;
    align-items: center;
    flex-grow: 1;
  }

.PivotTable .PivotTable__row .TableBuilderBodyCell {
      overflow: hidden;
    }

.PivotTable .PivotTable__columnFlex {
    display: flex;
    flex-direction: column;
    white-space: nowrap;
    padding: var(--spacing-sm) var(--spacing-sm) var(--spacing-xs) 0;
  }

.PivotTable .PivotTable__columnTactic {
    display: flex;
    flex-direction: column;
    padding: var(--spacing-sm) var(--spacing-sm) var(--spacing-xs) 0;
  }

.PivotTable .PivotTable__columnTactic .PivotTable__lineClamp:not(:last-child) {
      margin-bottom: var(--spacing-2xs);
    }

:root {
  --reveal-transition-duration: 0.2s;
  --reveal-transition-easing: ease-in-out;
}

.Reveal {
  transition: var(--reveal-transition-duration) var(--reveal-transition-easing) height;
}

.Reveal--hiding,
  .Reveal--revealing {
    overflow: hidden;
  }

:root {
  --icon-size: 16px;
  --icon-color: currentColor;
  --icon-stroke-width: 1px;
}

.IconSet {
  position: absolute;
  width: 0;
  height: 0;
  top: -9999px;
  left: -9999px;
  overflow: hidden;
}

.IconSetIcon {
  display: inline-block;
  height: var(--icon-size);
  width: var(--icon-size);
}

.IconSetIcon.Icon {
    fill: unset;
  }

.IconSetIcon__icon {
    fill: var(--icon-color);
  }

.IconSetIcon--fill {
    fill: var(--icon-color);
  }

.IconSetIcon--stroke {
    stroke: var(--icon-color);
    stroke-width: calc(var(--icon-stroke-width) * 2);
    fill: none;
  }

.Icon--ErrorCircle,
.Icon--WarningTriangle {
  --icon-stroke-width: 2px;
}

.Icon--warning {
  --icon-color: var(--orange-01);
}

.TruncatedList__list {
    margin: 0;
  }

.TruncatedList .Button--link {
    margin-left: var(--spacing-lg);
  }

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

.SelectPermissions__count {
    margin-bottom: var(--spacing-sm);
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
  }

.SelectPermissions__permissions {
    min-height: 0;
    height: auto;
  }

.SelectPermissions__permission {
    display: flex;
    justify-content: space-between;
    border: 1px solid var(--theme-border-primary);
    border-radius: var(--borderRadius-xs);
    margin-bottom: 4px;
    padding: var(--spacing-xs) var(--spacing-sm);
    align-items: center;
    min-height: 8rem;
  }

.SelectPermissions__permission--override {
    background: var(--theme-bg-table-select);
    border-color: transparent;
  }

.SelectPermissions__label {
    margin-right: var(--spacing-lg);
  }

.SelectPermissions__label b {
      display: block;
      margin-bottom: var(--spacing-2xs);
    }

.PermissionLevelOptions {
  flex-direction: row;
  white-space: nowrap;
  border-radius: var(--barderRadius-xs);
  transition: all var(--panda-button-transition-duration)
    var(--panda-button-transition-timing-function);
}

.PermissionLevelOption {
  background: transparent;
  font: inherit;
  font-weight: 500;
  padding: var(--panda-button-padding-vertical) var(--spacing-xs);
  border: 1px solid var(--theme-border-primary);
  border-right-width: 0;
  outline: 0;
  margin: 0;
  cursor: pointer;
  color: var(--theme-character-primary);
  transition: all var(--panda-button-transition-duration)
    var(--panda-button-transition-timing-function);
}

.PermissionLevelOption:disabled {
    color: var(--theme-character-disabled);
    border-color: var(--theme-character-disabled);
    cursor: default;
  }

.PermissionLevelOption--selected:disabled {
    color: var(--theme-character-title);
    border-color: var(--theme-bg-brand-default);
    background-color: var(--theme-bg-brand-default);
  }

.PermissionLevelOption--selected {
    border-color: var(--theme-bg-brand-default);
    background-color: var(--theme-bg-brand-default);
  }

.PermissionLevelOption:first-child {
    border-radius: 2px 0 0 2px;
  }

.PermissionLevelOption:last-child {
    border-radius: 0 2px 2px 0;
    border-right-width: 1px;
  }

.SelectRole__description {
    color: var(--theme-character-secondary);
    margin-top: var(--spacing-xs);
    margin-left: 12px;
  }

.SelectRole__permissions {
    margin-top: var(--spacing-sm);
    overflow: auto;
  }

.DeleteRoleModal__reviewAffected {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

.DeleteRoleModal .SelectPermissions__count {
    display: none;
  }

.DeleteRoleModal .TruncatedList {
    margin: var(--spacing-sm) 0;
  }

.DeleteRoleModal .CopyPlaceholder {
    opacity: 0.5;
  }

.RolesTable {
  height: 100%;
}

.RolesTable__nameColumn .Button {
      color: inherit;
      text-align: left;
      max-width: 100%;
    }

.RolesTable__none {
    opacity: 0.4;
  }

.AffectedUsers {
  overflow: auto;
  margin-top: 8px;
  padding: 2px 0;
}

.AffectedUser {
  display: flex;
  align-items: center;
  background-color: var(--theme-bg-tertiary);
  margin-bottom: 2px;
}

.AffectedUserIcon {
  margin: 12px;
  padding: 4px;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  background-color: var(--theme-bg-tag-new);
}

.AffectedUserDetails__name {
    font-weight: bold;
    margin-bottom: 4px;
  }

.IOCMatchTable {
  box-shadow: none;
}

.IOCMatchTable__valueColumn {
  --link-weight: 400;
}

.IOCDetails__empty {
  opacity: 0.5;
}

.IOCDetails__group {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.IOCDetailsMetadata__tagsHeader,
.IOCDetailsMetadata__sourceHeader,
.IOCDetailsMetadata__expirationHeader,
.IOCDetailsMetadata__sourceValue,
.IOCDetailsMetadata__expirationValue {
  font-size: 14px;
  line-height: 22px;
}

.IOCDetailsMetadata__tagsHeader,
.IOCDetailsMetadata__sourceHeader,
.IOCDetailsMetadata__expirationHeader {
  color: var(--theme-character-title);
}

.panda-theme-dark,
.panda-theme-light,
.panda-theme-light-cv {
  --details-group-label-header-text-color: var(--theme-character-title);
  --details-group-label-text-color: var(--theme-character-primary);
  --details-group-label-background-color: var(--theme-bg-secondary);
  --details-group-label-active-background-color: var(--theme-bg-secondary);
  --details-group-label-hover-background-color: var(--theme-bg-tertiary);
  --details-group-label-active-border-color: var(--theme-bg-brand-default);
  --details-group-label-font-size: 16px;
  --details-group-label-line-height: 24px;
}

.DetailsGroup__reveal {
  padding-right: 0;
  padding-left: 0;
}

.DetailsGroup__labels {
    display: flex;
    grid-gap: 8px;
    gap: 8px;
    justify-content: flex-start;
    margin-bottom: 8px;
  }

.DetailsGroup .panda-page-content {
    flex-basis: 0;
  }

.DetailsGroup .panda-page-content:empty {
      display: none;
    }

.DetailsGroup.DetailsContent {
    padding: var(--spacing-lg) 0 0 0;
  }

.DetailsGroup.DetailsContent .DetailsGroup__labels,
    .DetailsGroup.DetailsContent .panda-page-content {
      padding-right: var(--spacing-2xl);
      padding-left: var(--grid-gap);
    }

.DetailsGroup .UserMarkdown {
    padding: 0 8px;
  }

.DetailsGroup .UserMarkdown h1 {
      font-size: 1.2em;
    }

.DetailsGroup .UserMarkdown h2 {
      font-size: 1em;
    }

.DetailsGroup .UserMarkdown h1, .DetailsGroup .UserMarkdown h2 {
      background: var(--theme-bg-primary);
      padding: 8px;
      margin-left: -8px;
      margin-right: -8px;
    }

.DetailsGroupLabel {
  flex-grow: 0;
  background: var(--details-group-label-background-color);
  border: 1px solid var(--details-group-label-background-color);
  border-radius: 2px;
  color: var(--details-group-label-text-color);
  font-size: var(--details-group-label-font-size);
  line-height: var(--details-group-label-line-height);
  font-weight: 400;
  padding: 8px 16px;
  cursor: pointer;
  transition: 0.1s linear background;
}

.DetailsGroupLabel:focus {
    outline: none;
  }

.DetailsGroupLabel:hover {
    background: var(--details-group-label-hover-background-color);
    border-color: var(--details-group-label-hover-background-color);
  }

.DetailsGroupLabel--active {
    background: var(--details-group-label-active-background-color);
    border-color: var(--details-group-label-active-border-color);
  }

.DetailsGroupLabel--active:hover {
      background: var(--details-group-label-hover-background-color);
      border-color: var(--details-group-label-active-border-color);
    }

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

.DetailsGroupContent .QueryExpressionBlock {
    max-height: 272px;
  }

.DetailsGroupContent > .DetailsGroupPanel:only-child {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

.DetailsGroupContent > .DetailsGroupPanel:only-child .DetailsGroupPanel__body {
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      min-height: 0;
    }

.DetailsGroupContent > .DetailsGroupPanel:only-child .TableBuilder {
      flex-grow: 1;
      min-height: 0;

      --table-max-visible-height: auto !important;
    }

.DetailsGroupContent > .DetailsGroupPanel:only-child .QueryExpressionBlock {
      max-height: none;
      flex-basis: 0;
    }

.DetailsGroupPanel {
  --key-value-background: transparent;
  --key-value-key-color: var(--theme-character-title);
}

.DetailsGroupPanel__header {
    display: flex;
    justify-content: space-between;
    background: var(--theme-bg-secondary);
    padding: 24px 0 16px;
    color: var(--details-group-label-header-text-color);
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    position: sticky;
    top: 0;
    z-index: 2;
  }

.DetailsGroupPanel__header:empty {
      display: none;
    }

.DetailsGroupPanel__header:empty + .DetailsGroupPanel__body {
    padding-top: 24px;
  }

.DetailsGroupPanel__body {
    padding-bottom: 16px;
  }

.DetailsGroupPanel .KeyValue {
    margin-bottom: 0;
    border-bottom: 1px solid var(--theme-bg-canvas);
  }

.DetailsGroupPanel .KeyValue:last-child {
    border-bottom-width: 0;
  }

.DetailsGroupPanelField {
  display: flex;
  padding: var(--spacing-xs);
}

.DetailsGroupPanelField__value {
    flex-grow: 1;
    overflow-x: auto;
  }

.DetailsGroupPanelField__edit,
  .DetailsGroupPanelField__copy {
    flex-grow: 0;
    flex-shrink: 0;
    margin-left: var(--spacing-xs);
  }

.panda-theme-dark,
.panda-theme-light,
.panda-theme-light-cv {
  --quick-search-portal-content-top: 0;
  --quick-search-portal-content-relative-left: var(--panda-left-rail-open-width);
  --quick-search-portal-content-relative-right: var(--application-header-padding-right);
  --quick-search-portal-content-left-spacing: 30px;
}

.QuickSearchPortal {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-index-overlay);
  pointer-events: none;
}

.QuickSearchPortal__mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background-color: var(--mask-color);
  pointer-events: all;
}

.QuickSearchPortal__content {
  top: var(--quick-search-portal-content-top);
  left: var(--quick-search-portal-content-relative-left);
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 1;
  pointer-events: all;
  max-width: calc(100% - var(--quick-search-portal-content-relative-left) - var(--quick-search-portal-content-relative-right));
}

.QuickSearchPortal--closedNavbar {
  --quick-search-portal-content-relative-left: var(--panda-left-rail-closed-width);
}

.MatchedArtifactsQuickSearch.QuickSearchPortal {
  --quick-search-portal-content-top: 118px;
  --quick-search-portal-content-relative-left: calc(var(--panda-left-rail-open-width) + var(--panda-page-main-horizontal-padding));
  --quick-search-portal-content-relative-right: var(--panda-page-main-horizontal-padding);
}

.MatchedArtifactsQuickSearch.QuickSearchPortal--closedNavbar {
  --quick-search-portal-content-relative-left: calc(var(--panda-left-rail-closed-width) + var(--panda-page-main-horizontal-padding));
}

.MatchedArtifactsQuickSearch--openedSidebar.QuickSearchPortal {
  --quick-search-portal-content-relative-right: calc(var(--panda-page-panel-width) + var(--panda-page-main-horizontal-padding));
}

.QuickSearchEditor {
  position: relative;
  height: 100%;
  flex-shrink: 0;
}

.QuickSearchEditor--hidden {
    flex-basis: 0;
    flex-grow: 0;
    flex-shrink: 1;
    width: 0;
  }

.MatchedArtifactsQuickSearch.QuickSearchEditor {
  --panda-input-group-item-color: var(--theme-character-title);
}

.ApplicationHeaderQuickSearch.QuickSearchEditor {
  width: 200px;
}

.QuickSearchPortal .QuickSearchEditor__input {
  width: 100%;
}

.QuickSearchPortal .QuickSearchEditor {
  width: 100%;
  padding: var(--application-header-padding-vertical) 0;
}

.QuickSearchEditor__searchDescription {
  position: absolute;
  bottom: 5px;
  left: 80px;
  pointer-events: none;
  color: var(--theme-character-secondary);
  line-height: 22px;
  font-size: 14px;
  z-index: 3;
  animation: 2s ease 0s normal forwards 1 search-description-fade-in;
}

.QuickSearchPortal .QuickSearchEditor__searchDescription {
  bottom: calc(5px + var(--application-header-padding-vertical));
}

@keyframes search-description-fade-in {
  0% { opacity: 0; }

  50% { opacity: 0; }

  100% { opacity: 1; }
}

.QuickSearch__dropdown {
  height: 564px;
  padding: 8px 8px 8px 0;
  background: var(--theme-bg-popover);
  border: 1px solid var(--theme-border-primary);
  border-radius: var(--borderRadius-xs);
  box-shadow: var(--dropshadow-0-12-0-8-0-5);
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 1;
  pointer-events: all;
}

.QuickSearch__filters {
  flex-grow: 0;
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  grid-gap: 8px;
  gap: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--theme-border-primary);
  margin: 0 8px 8px var(--quick-search-portal-content-left-spacing);
}

.QuickSearchSettingsDropdown {
  padding-right: 8px;
  border-right: 1px solid var(--theme-border-primary);
}

.QuickSearch__categories {
  display: flex;
  flex-direction: row;
  grid-gap: 8px;
  gap: 8px;
}

.CategoryFilter__count {
  margin-left: 4px;
}

.QuickSearchResults {
  position: relative;
  font-size: var(--font-size-xs);
  overflow: hidden;
  height: 500px;
}

.QuickSearchResults__list {
  height: 500px;
}

.QuickSearchResults__list a {
    text-decoration: none;
  }

.QuickSearchResults__noResults {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: var(--theme-character-secondary);
  font-size: 14px;
  line-height: 22px;
}

.QuickSearchResults__noResults > * {
    margin: auto;
  }

.QuickSearchResult {
  display: flex;
  align-items: center;
  grid-gap: var(--spacing-xs);
  gap: var(--spacing-xs);
  width: 100%;
  height: 50px;
  padding-left: var(--quick-search-portal-content-left-spacing);
}

.QuickSearchResult--active {
    background: var(--theme-bg-item-hover);
  }

.QuickSearchResult__main {
  flex-shrink: 0;
  display: flex;
  grid-gap: 8px;
  gap: 8px;
  align-items: center;
  width: 440px;
  font-size: 14px;
  line-height: 22px;
}

.QuickSearchResult__breadcrumb {
  color: var(--theme-character-secondary);
}

.QuickSearchResult__content {
  color: var(--theme-character-title);
  flex-grow: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.QuickSearchText--highlight {
  font-weight: 900;
  color: var(--theme-character-brand-text);
}

.Tooltip__content .QuickSearchText--highlight {
  color: var(--theme-character-inverse);
}

.QuickSearchResult__details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 50%));
  grid-column-gap: 8px;
  color: var(--theme-character-title);
  font-size: 14px;
  line-height: 22px;
  width: 100%;
  padding-right: 8px;
}

.QuickSearchResult__details:empty {
    display: none;
  }

.QuickSearchResultDetail {
  display: flex;
  align-items: center;
  grid-gap: var(--spacing-xs);
  gap: var(--spacing-xs);
  min-height: 22px;
}

.QuickSearchResultDetail__label,
.QuickSearchResultDetail__value {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.QuickSearchResultDetail__label {
  color: var(--theme-character-secondary);
  flex-shrink: 0;
}

.QuickSearchResultDetail__value {
  flex-shrink: 1;
}

.QuickSearchResultDetail__value .ConciseDate__date {
  font-weight: normal;
}

.QuickSearchIntro {
  flex-grow: 1;
  overflow: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.QuickSearchIntro__contents {
  display: flex;
  flex-direction: column;
  max-width: 42rem;
  color: var(--theme-character-title);
}

.QuickSearchIntro__contents li {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: var(--spacing-xs);
  }

.QuickSearchIntro__title {
  font-weight: bold;
  align-items: center;
  display: flex;
  margin-left: 1.8rem;
  font-size: 14px;
  line-height: 22px;
  color: var(--theme-character-title);
}

.QuickSearchIntro__title .panda-icon {
    margin-right: 0.4em;
  }

.panda-theme-dark,
.panda-theme-light,
.panda-theme-light-cv {
  --query-editor-autocomplete-width-offset: 0px;
}

.QueryEditor {
  position: relative;
}

.QueryEditor pre {
    text-shadow: none;
  }

.QueryEditor__editor {
    position: relative;
    height: 100%;
  }

.QueryEditor .CodeMirror {
    width: auto;
    height: 100%;
    font-family: var(--font-family-sans-serif);
    font-size: 14px;
    line-height: 22px;
    background: var(--theme-bg-canvas);

    /*
    Lexer stops lexing after 10,000 chars or so on a single line.
    Fallback to this color when that happens.
    */
    color: var(--theme-character-code-default);
  }

.QueryEditor .CodeMirror-cursor {
    border-left-color: var(--theme-character-code-keyword);
  }

.QueryEditor .CodeMirror-selected {
    background: var(--theme-bg-brand-minimal);
  }

.QueryEditor .CodeMirror-gutters {
    background: var(--theme-bg-canvas);
    border-right-color: var(--theme-bg-canvas);
  }

.QueryEditor .CodeMirror-gutter-background {
    background: var(--theme-bg-canvas);
  }

.QueryEditor .CodeMirror-linenumber {
    color: var(--theme-character-secondary);
  }

.QueryEditor .CodeMirror-placeholder {
    font-family: var(--font-family) !important;
    color: var(--theme-character-disabled) !important;
  }

.QueryEditor .CodeMirror-wrap pre {
    word-break: break-word;
  }

.QueryEditor .CodeMirror-line::selection,
  .QueryEditor .CodeMirror-line > span::selection,
  .QueryEditor .CodeMirror-line > span > span::selection {
    background: var(--theme-bg-brand-minimal);
  }

.QueryEditor .QueryEditor__clearButton {
    position: absolute;
    top: 0;
    right: var(--spacing-sm);
    z-index: var(--z-index-tooltip);
    margin-right: 0;
  }

.QueryEditor .QueryEditor__clearButton .Icon {
      display: none;
    }

.QueryEditor .cm-error-gutter .CodeMirror-linenumber {
      background: var(--theme-bg-error-minimal);
      color: var(--theme-character-risk-high);
    }

.QueryEditor .CodeMirror-activeline .CodeMirror-gutter-background {
    background: var(--theme-bg-item-hover);
  }

.QueryEditor .CodeMirror-activeline .CodeMirror-activeline-background {
    background: var(--theme-bg-item-hover);
  }

.CodeMirror-activeline-background {
  background: transparent;
}

.Tooltip.QueryIdentifierTooltip {
  --tooltip-text-color: var(--theme-character-title);
  --tooltip-background-color: var(--theme-bg-secondary);

  font-size: 14px;
  line-height: 22px;
}

.QueryEditorAutocomplete {
  position: absolute;
  top: var(--query-editor-autocomplete-top);
  left: calc(var(--query-editor-autocomplete-left) - var(--query-editor-autocomplete-width-offset));
  width: calc(var(--query-editor-autocomplete-width) + var(--query-editor-autocomplete-width-offset) + var(--query-editor-autocomplete-width-offset));
  height: var(--query-editor-autocomplete-height);
  display: flex;
  grid-gap: var(--spacing-2xs);
  gap: var(--spacing-2xs);
  padding: var(--spacing-2xs);
  overflow: hidden;
  background: var(--theme-bg-popover);
  z-index: 2;
  pointer-events: all;
  border-radius: 2px;
  box-shadow: var(--dropshadow-0-12-0-8-0-5);
}

.QueryEditorAutocomplete__list {
  width: 60%;
  border-radius: 2px;
}

.QueryIdentifier {
  display: flex;
  align-items: center;
  padding: 0 var(--spacing-xs);
  cursor: pointer;
  user-select: none;
}

.QueryIdentifier--active {
    background: var(--theme-bg-item-hover);
  }

.QueryIdentifier__name {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: var(--theme-character-title);
  font-size: 14px;
  line-height: 22px;
}

.QueryIdentifier__groupIcon {
  margin-left: var(--spacing-2xs);

  --panda-icon-size: 12px;
}

.QueryIdentifier__matches {
  font-weight: 900;
  color: var(--theme-character-brand-text);
}

.QueryIdentifierCompletion {
  height: 100%;
  width: 40%;
  background: var(--theme-bg-primary);
  padding: var(--spacing-2xs) var(--spacing-xs);
  flex-shrink: 0;
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  grid-gap: var(--spacing-xs);
  gap: var(--spacing-xs);
  font-size: 14px;
  line-height: 22px;
  border-radius: 2px;
  color: var(--theme-character-primary65);

  --key-value-key-color: var(--theme-character-primary65);
}

.QueryIdentifierCompletion__parent {
  font-weight: 700;
  word-break: break-all;
}

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

.QueryIdentifierCompletion__label {
  display: flex;
  align-items: center;
}

.QueryIdentifierCompletion__referenceIdentifier,
.QueryIdentifierCompletion__name,
.QueryIdentifierCompletion__description {
  word-wrap: break-word;
}

.QueryIdentifierCompletion__none {
  font-style: italic;
  color: var(--gray-03);
}

.QueryIdentifierCompletion .KeyValue {
  background-color: transparent;
  padding: 0;
  font-size: 14px;
  line-height: 22px;
}

.QueryIdentifierCompletion .KeyValue__key {
  margin-bottom: 0;
  font-weight: 700;
  flex-basis: 22px;
  flex-shrink: 0;
  flex-grow: 0;
}

.QueryIdentifierCompletion .QueryType {
  font-family: var(--font-family-sans-serif);
  word-break: break-all;
}

.QueryIdentifierCompletion .QueryExpression {
  font-size: var(--font-size-2xs);
  padding-top: 0.3rem;
  white-space: pre-wrap;
  word-break: break-all;
}

.Tooltip.QueryInfoTooltip {
  text-align: left;
  max-width: none;
}

.QueryInfoTooltip__description {
  display: inline-block; /* Allow type on same line */
  font-weight: bold;
  margin-right: var(--spacing-2xs);
}

.QueryInfoTooltip__type {
  display: inline-block; /* Allow type on same line */
  font-style: italic;
}

.QueryInfoTooltip__example .QueryExpression {
  display: inline-block;
}

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

.VersionBounds__bound {
    display: flex;
  }

.VersionBounds__bound span:first-child {
      flex: 0 0 32px;
    }

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

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

.VersionBoundsTitle {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  color: var(--theme-character-primary65);
}

.VersionBoundsTitle > * {
    margin-right: var(--spacing-xs);
  }

.VersionBoundsTitle__bound {
    display: flex;
  }

.UsernameDetails .UsernameDetailsContent__title {
    font-weight: bold;
    margin-bottom: var(--spacing-xs);
    font-size: var(--font-size-xs);
  }

.Notifications {
  --panda-alert-max-width: 480px;
}

.Notification__actions {
  display: flex;
  justify-content: flex-end;
  padding-top: var(--spacing-sm);
}

.RequestModal .panda-dialog-close {
    display: none;
  }

.ExpressionView__editor {
  display: flex;
}

.ExpressionView__editor .AdvancedQueryEditor {
    margin-left: 0;
  }

.ExpressionView__alert {
  margin-bottom: var(--spacing-md);
}

.AdvancedQueryEditorPortal.ExpressionView__editorPortal {
  --advanced-query-editor-editor-margin-top: 0px;
  --advanced-query-editor-editor-padding: 4px;
  --left-rail-width: var(--panda-left-rail-open-width);
  --alert-height: 0px;
  --breadcrumb-height: 0px;
  --page-title-height: 72px;
  --page-margin: 24px;

  top: calc(var(--application-header-height) + var(--alert-height) + var(--page-title-height) + var(--breadcrumb-height));
  left: calc(var(--left-rail-width) + var(--page-margin));
  right: 0;
  bottom: var(--page-margin);
}

.AdvancedQueryEditorPortal.ExpressionView__editorPortal--nano {
    --breadcrumb-height: 30px;
  }

.AdvancedQueryEditorPortal.ExpressionView__editorPortal--closedNavbar {
    --left-rail-width: var(--panda-left-rail-closed-width);
  }

.AdvancedQueryEditorPortal.ExpressionView__editorPortal--alertAbove {
    --alert-height: calc(40px + var(--spacing-md));
  }

.AdvancedQueryEditorPortal.ExpressionView__editorPortal .CodeMirror pre.CodeMirror-line {
    padding: 0 4px 0 5px;
  }

.ExpressionView__appResults {
  display: flex;
  height: 100%;
  width: 100%;
}

.ExpressionView__results {
  margin-top: var(--spacing-md);
  height: 100%;
  width: 100%;
  border: 1px dashed var(--theme-border-primary);
  background: var(--theme-bg-canvas);
  overflow: auto;
  position: relative;
  padding: var(--spacing-md);
}

.ExpressionView__expressionStream {
  height: 100%;
}

.ExpressionView__expressionStream .ExpressionView__expression:not(:last-child) {
    border-bottom: 1px solid var(--theme-border-primary);
  }

.ExpressionView__expression {
  font-family: var(--font-family-sans-serif);
  font-size: 14px;
  line-height: 22px;
}

.ExpressionView__expression details {
    display: flex;
    color: var(--theme-character-code-function);
  }

.ExpressionView__expression details >::before {
      content: "";
      border-left: 2px dotted var(--theme-character-code-syntax);
      margin-right: calc(var(--spacing-sm) + 1px);
      margin-top: 1px;
      margin-bottom: 1px;
    }

.ExpressionView__expression details > summary {

      cursor: pointer;
      outline: none;
    }

.ExpressionView__expression details > summary::marker {
        color: var(--theme-character-code-function);
      }

.ExpressionView__expression details > summary::-webkit-details-marker {
        color: var(--theme-character-code-function);
      }

.ExpressionView__expression details > summary::before {
        content: none;
      }

.ExpressionView__expression details > div {
      margin-left: var(--spacing-2xs);
      display: flex;
    }

.ExpressionView__expression details > div >:first-child {
        margin-right: var(--spacing-xs);
      }

.EaqlAppTable .VirtualList {
    height: 0;
  }

.EaqlApp {
  position: relative;
  display: flex;
  height: 100%;
  width: 100%;
}

.EaqlApp .FormRow {
    width: 100%;
    flex-grow: 1;
  }

.EaqlApp .FormSecondaryButton {
    align-self: flex-start;
  }

.EaqlApp .FormSubmitButton {
    align-self: flex-end;
  }

.EaqlApp .panda-button-group {
    justify-content: space-between;
  }

.EaqlApp .FormButtonEmpty {
    --panda-button-padding-horizontal: 8px;
  }

.EaqlApp .FormButtonEmpty .panda-button-icon {
      margin-right: 0;
    }

.EaqlApp .panda-button {
    height: var(--button-height);
  }

.EaqlApp__loading {
    opacity: 0.75;
    pointer-events: none;
    animation: pulse 2s infinite;
  }

.EaqlApp .UserMarkdown {
    height: 100%;
    width: 100%;
    overflow: scroll;
  }

.EaqlApp .panda-tabs-tabpanel-active {
    display: flex;
  }

.EaqlAppStream {
  height: 100%;
  width: 100%;
  display: flex;
  position: relative;
}

.EaqlAppStream__loading {
    pointer-events: none;
    animation: pulse 3s infinite ease-in-out;
  }

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

.AppStream {
  display: flex;
  width: 100%;
}

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

.AppComponent__center {
    align-self: center;
  }

.AppLayoutHorizontal {
  display: flex;
  flex-direction: row;
  width: 100%;
  grid-gap: var(--spacing-xs);
  gap: var(--spacing-xs);
}

.AppLayoutHorizontal__center {
    align-self: center;
  }

.AppLayoutVertical {
  display: flex;
  flex-direction: column;
  height: 100%;
  grid-gap: var(--spacing-xs);
  gap: var(--spacing-xs);
}

.AppLayoutVertical__center {
    align-self: center;
  }

@keyframes pulse {
    0% {
      opacity: 0.6; 
    }

    50% {
      opacity: 0.9; 
    }

    100% {
      opacity: 0.6; 
    }
}

.TreeMenu__row {
    height: 28px;
    display: flex;
    align-items: center;
  }

.TreeMenu__indent {
    border-left: 1px solid var(--theme-border-primary);
    margin-left: 12px;
    width: 12px;
    height: 100%;
  }

.TreeMenu__node {
    display: flex;
    height: 24px;
    border-radius: 2px;
    background: var(--theme-bg-secondary);
    align-items: center;
    padding: 0;
    flex-grow: 1;
    min-width: 0;
    cursor: pointer;
    border: 1px solid transparent;
    transition: .3s ease-out border-color, .3s ease-out background-color;
  }

.TreeMenu__node:hover:not(.TreeMenu--selected .TreeMenu__node) {
    background: var(--theme-bg-table-select);
  }

.TreeMenu--selected .TreeMenu__node {
    background: var(--theme-bg-table-select);
    border: 1px solid var(--theme-bg-brand-default);
    font-weight: 500;
    color: var(--theme-character-primary);
  }

.TreeMenu__toggle {
    --panda-icon-size: 12px;

    display: none;
  }

.TreeMenu--parent .TreeMenu__toggle {
    display: unset;
  }

.TreeMenu__label {
    display: flex;
    flex-grow: 1;
    min-width: 0;
    height: 24px;
    align-items: center;
    padding-left: 8px;
    text-decoration: none;
  }

.TreeTable__row {
    display: flex;
    align-items: stretch;
    border-bottom: 2px solid transparent;
  }

.TreeTable__row:hover {
      cursor: pointer;
    }

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

.TreeTable__nameCell {
    padding-left: 8px;
  }

.TreeTable__indentContainer {
    display: flex;
    flex-direction: row;
    align-items: stretch;
  }

.TreeTable__indent {
    border-left: 1px solid var(--theme-bg-brand-default);
    margin-left: 12px;
    margin-right: 12px;
    width: 0;
    height: calc(100% + 2px); /* 2px covers the gap between rows */
    top: 0%;
    position: relative;
  }

.TreeTable--last .TreeTable__indent:last-child {
    height: 50%;
  }

.TreeTable--parent .TreeTable__indent:last-child {
    height: calc(100% + 2px); /* 2px covers the gap between rows */
  }

.TreeTable__toggleCellContents {
    display: flex;
    flex-direction: row;
    height: 100%;
    align-items: center;
  }

.TreeTable--expanded .TreeTable__toggleCellContents::before {
    content: ' ';
    border-left: 1px solid var(--theme-bg-brand-default);
    margin-left: 12px;
    margin-right: 12px;
    width: 0;
    height: 100%;
    top: 50%;
    position: absolute;
  }

.TreeTable__node {
    display: flex;
    border-radius: 2px;
    background: var(--theme-bg-secondary);
    align-items: stretch;
    padding: 0;
    flex-grow: 1;
    min-width: 0;
    cursor: pointer;
    transition: .3s ease-out border-color, .3s ease-out background-color;
  }

.TreeTable__node:hover:not(.TreeTable--selected .TreeTable__node) {
    background: var(--theme-bg-table-select);
  }

.TreeTable--selected .TreeTable__node {
    background: var(--theme-bg-table-select);
    border: 1px solid var(--theme-bg-brand-default);
    font-weight: 500;
    color: var(--theme-character-primary);
  }

.TreeTable__toggle {
    --panda-icon-size: 12px;

    background: var(--theme-bg-secondary);
    z-index: 2;
    display: none;
  }

.TreeTable__toggle.TreeTable__toggle-expanded {
    color: var(--theme-bg-brand-default);
  }

.TreeTable--parent .TreeTable__toggle {
    display: unset;
  }

.TreeTable__label {
    display: flex;
    flex-grow: 1;
    min-width: 0;
    height: 24px;
    align-items: center;
    padding-left: 8px;
    text-decoration: none;
  }

.CloudApp {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.CloudApp__header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-2xs) var(--spacing-lg);
  }

.CloudApp__logo {
    display: flex;
    grid-gap: var(--spacing-xs);
    gap: var(--spacing-xs);
  }

.CloudApp__logo svg {
      fill: #fff;
      height: 24px;
    }

.CloudApp__logo svg:nth-child(1) {
        width: 24px;
      }

.CloudApp__logo svg:nth-child(2) {
        width: 106px;
      }

.CloudSystemConfiguration {
  --panda-page-main-background: var(--theme-bg-constant-dark);
  --panda-page-content-background: var(--theme-bg-primary);
}

.CloudSystemConfiguration .panda-page-header {
    padding-bottom: 0;
  }

.CloudSystemConfiguration__table {
    display: flex;
    flex-direction: row;
    position: relative;
    width: 100%;
    height: 100%;
  }

.CloudSystemConfiguration__content {
    --panda-page-header-title-font-size: 16px;

    display: flex;
    flex-direction: column;
  }

.CloudSystemConfiguration__content .panda-tabs {
      height: auto;
      min-height: 0;
      flex-grow: 1;
    }

.CloudSystemConfiguration__columns {
    overflow: visible;
  }

.CloudSystemConfiguration__menu {
    display: flex;
    flex-direction: column;
    position: relative;
  }

.CloudSystemConfiguration__menuToolbar {
    margin-bottom: var(--spacing-xs);
    flex-shrink: 0;
    flex-grow: 0;
  }

.CloudSystemConfiguration__deploymentTree {
    min-height: 0;
    flex-grow: 1;
    overflow: auto;
  }

.CloudSystemConfiguration__deploymentTree .ValueTooltip {
      white-space: nowrap;
    }

.CloudSystemConfiguration__deploymentTreeRow {
    padding-left: 2px;
    padding-right: 2px;
  }

.CloudSystemConfiguration__deploymentTreeRow-active .TreeMenu__node {
      outline: 2px solid var(--theme-bg-brand-focus);
    }

.CloudSystemConfiguration__deploymentTreeRow .CloudSystemConfiguration__deploymentTreeRowIcon {
      display: none;
    }

.CloudSystemConfiguration__deploymentTreeRow-selected:not(.CloudSystemConfiguration__deploymentTreeRow-active) .TreeMenu__node {
        display: flex;
        flex-direction: row;
        background: var(--theme-bg-brand-minimal);
      }

.CloudSystemConfiguration__deploymentTreeRow-selected:not(.CloudSystemConfiguration__deploymentTreeRow-active) .CloudSystemConfiguration__deploymentTreeRowIcon {
        display: flex;
        align-items: center;
        padding-left: 8px;

        --panda-icon-size: 14px;
      }

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

.CloudSystemConfiguration__tabs .panda-tabs-tabpanel-active {
      display: flex;
    }

.CloudSystemConfiguration__metrics {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

.CloudSystemConfiguration__metrics iframe {
      flex-grow: 1;
      border: 0;
    }

/* The embedded grafana iframe should be full width even though the content page applies padding.
   * To do this we remove the padding from the page content if we are rendering the metrics tab
   * and then drill down and restore padding for all children except the div that holds the iframe.
   *
   * We can't directly break out of the page container because tabs have overflow: hidden
   * and removing the overflow hidden (even selectively for metrics) causes scrollbars to appear.
   */

.CloudSystemConfiguration__content:has(.panda-tabs-tabpanel-active
      .CloudSystemConfiguration__metrics) {
    padding-left: 0;
    padding-right: 0;
  }

.CloudSystemConfiguration__content:has(.panda-tabs-tabpanel-active
      .CloudSystemConfiguration__metrics) > * {
      padding-left: 16px;
      padding-right: 16px;
    }

.CloudSystemConfiguration__content:has(.panda-tabs-tabpanel-active
      .CloudSystemConfiguration__metrics) .panda-tabs {
      padding-left: 0;
      padding-right: 0;
    }

.CloudSystemConfiguration__content:has(.panda-tabs-tabpanel-active
      .CloudSystemConfiguration__metrics) .panda-tabs > * {
        padding-left: 16px;
        padding-right: 16px;
      }

.CloudSystemConfiguration__content:has(.panda-tabs-tabpanel-active
      .CloudSystemConfiguration__metrics) .panda-tabs-tabpanels {
      padding-left: 0;
      padding-right: 0;
    }

.CloudSystemConfiguration__content:has(.panda-tabs-tabpanel-active
      .CloudSystemConfiguration__metrics) .panda-tabs-tabpanels > * {
        padding-left: 16px;
        padding-right: 16px;
      }

.CloudSystemConfiguration__content:has(.panda-tabs-tabpanel-active
      .CloudSystemConfiguration__metrics) .panda-tabs-tabpanel {
      padding-left: 0;
      padding-right: 0;
    }

.CloudSystemConfiguration .IntegrationsSidebarTitle .panda-tag {
      margin-left: 5px;
    }

.CloudSystemConfiguration .IntegrationsSidebarEnabledTitle {
    display: flex;
    align-items: center;
  }

.CloudSystemConfiguration .IntegrationsSidebarSourceTitle {
    display: flex;
    justify-content: space-between;
  }

.CloudSystemConfiguration .IntegrationsSidebarUrlLink {
    --panda-button-link-color: var(--theme-character-title);

    font-weight: normal;
  }

.CloudSystemConfiguration .IntegrationsSidebarTenantIdValue {
    display: flex;
    align-items: center;
  }

.CloudSystemConfiguration .IntegrationsSidebarTenantIdValue .panda-icon {
      margin-right: 4px;

      --panda-icon-size: 12px;
    }

.CloudSystemConfiguration .IntegrationsSidebarUrlTitle {
    display: flex;
    justify-content: space-between;
  }

.CloudSystemConfiguration .IntegrationsSidebarSourceMoreInformation {
    padding: 0 8px;
  }

.CloudSystemConfiguration .IntegrationsSidebarSourceMoreInformation.panda-tag {
      --panda-button-link-color: var(--theme-character-title);
      --panda-button-font-size: 12px;
      --panda-icon-size: 14px;
    }

.CloudSystemConfiguration .IntegrationsSidebarSourceMoreInformation.panda-tag a {
        text-decoration: none;
      }

.CloudSystemConfiguration .IntegrationsSidebarSourceMoreInformation.panda-tag a .panda-button-label {
          font-weight: normal;
          display: flex;
          align-items: center;
          line-height: 22px;
        }

.CloudSystemConfiguration .IntegrationsSidebarSourceMoreInformation.panda-tag a .panda-icon {
          margin-left: 8px;
        }

.CloudSystemConfiguration .IntegrationsSidebarSkgIntegration {
    display: flex;
  }

.CloudSystemConfiguration .IntegrationsSidebarSkgIntegration > div,
    .CloudSystemConfiguration .IntegrationsSidebarSkgIntegration > .panda-switch {
      flex-grow: 1;
    }

.OfflineDeploymentUpload {
  display: flex;
  flex-direction: column;
  padding: var(--spacing-xs);
  border-radius: var(--borderRadius-sm);
  background: var(--colors-gray-900);
}

.OfflineDeploymentUpload__description {
    --panda-alert-max-width: 100%;
  }

.OfflineDeploymentUpload__uploadButton {
    width: 100%;
  }

.OfflineDeploymentUploadModal {
  --spinner-background: var(--theme-bg-brand-default);
  --spinner-foreground: var(--theme-bg-moderate);
}

.CloudManagementPorts__portId {
    font-weight: 700;
    margin-top: var(--spacing-xs);
    padding: var(--spacing-xs) 0;
    border-top: 1px solid var(--theme-border-primary);
  }

.CloudManagementPorts__portId:first-child {
      margin-top: 0;
      padding-top: var(--spacing-2xs);
      border-top-width: 0;
    }

.CloudNetworkingConfigUsesDhcp {
  margin-top: var(--spacing-xs);
}

.DHCPToggle {
  display: flex;
  align-items: center;
  height: 100%;
}

.PageContentSectionTitle {
  display: flex;
  flex-direction: row;
  min-width: 0;
  align-items: center;
}

.TwoLineTitle {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.ApplianceActionModal__progressbar {
    --spinner-background: var(--theme-bg-brand-default);
    --spinner-foreground: var(--theme-bg-moderate);

    margin: var(--spacing-xs) 0;
  }

.ApplianceActionModal__progressbar-error {
      --spinner-background: red;
    }

.ApplianceActionModal__progressbar-pending {
      --spinner-background: none;
    }

.ApplianceActionModal__progressbar-result {
      --spinner-background: green;
    }

.CloudManagementNetworking__allowOutgoingIPs {
  border-top: 1px solid var(--theme-border-primary);
  margin-top: var(--spacing-xs);
  padding: var(--spacing-xs) 0;
}

.CloudManagementNetworking__allowOutgoingIPs .KeyValueGrid__key {
    display: flex;
  }

.CloudManagementNetworking__allowOutgoingIPs .KeyValueGrid__key::after {
      content: "";
    }

.MatchedDevicesTable .TableBuilderBody__row, .MatchedDomainsTable .TableBuilderBody__row, .MatchedIPAddressesTable .TableBuilderBody__row, .MatchedActivitiesTable .TableBuilderBody__row {
    cursor: pointer;
  }

.MatchedArtifacts__tabActionsBar {
  display: flex;
  align-items: center;
  justify-content: right;
  min-width: 0;
  grid-gap: var(--spacing-xs);
  gap: var(--spacing-xs);
  position: relative;
}

.MatchedArtifacts__tabActionsBar .QueryTimeRangeInputWithPresets {
  padding: 0 7px;
  width: 360px;
  flex-grow: 0;
}

.MatchedArtifacts__tabActionsBar .MatchedArtifactsQuickSearch {
  flex-shrink: 1;
}

.MatchedActivity {
  position: relative;
}

.MatchedActivity__error,
  .MatchedActivity__match {
    flex-grow: 1;
    margin: 0 var(--spacing-xs);
  }

.MatchedActivity__match {
    font-weight: bold;
  }

.MatchedActivity--child:not(.MatchedActivity--match) {
    --row-background-color: var(--theme-bg-tertiary);
    --row-background-hover-color: var(--theme-bg-tertiary);
  }

.MatchedActivity--last .ExpandTableCell::after {
    bottom: 12px;
  }

.MatchedActivity__border {
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    bottom: -12px;
    background: none;
    pointer-events: none;
    border-color: var(--theme-bg-brand-default);
    border-width: 0;
    border-style: solid;
  }

.MatchedActivity--child .MatchedActivity__border {
    border-width: 0 1px;
  }

.MatchedActivity--child.MatchedActivity--last .MatchedActivity__border {
    border-width: 0 1px 1px 1px;
    bottom: 0;
  }

.MatchedActivity--child.MatchedActivity--last + .MatchedActivity--parent.MatchedActivity--expanded {
    border-top: 1px transparent solid;
  }

.MatchedActivity--parent.MatchedActivity--expanded .MatchedActivity__border {
    top: 0;
    border-width: 1px 1px 0 1px;
  }

.ExpandTableCell {
  position: relative;
  padding: 0;
  align-self: stretch;
  justify-content: center;
}

.ExpandTableCell::before,
  .ExpandTableCell::after {
    content: "";
    position: absolute;
    left: 15px;
    top: 50%;
    bottom: 50%;
    width: 2px;
    background-color: var(--theme-bg-brand-default);
    pointer-events: none;
  }

.ExpandTableCell--root::before,
  .ExpandTableCell--root::after {
    visibility: hidden;
  }

.ExpandTableCell--root.ExpandTableCell--expanded::after {
    visibility: visible;
    top: calc(50% + 12px);
    bottom: -12px;
  }

.ExpandTableCell--child::before {
    top: -12px;
  }

.ExpandTableCell--child::after {
    bottom: -12px;
  }

.ExpandTableCell--child.ExpandTableCell--parent::before {
    bottom: calc(50% + 12px);
  }

.ExpandTableCell--child.ExpandTableCell--parent::after {
    top: calc(50% + 12px);
  }

.MatchedArtifacts__limitReachedPlaceholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xs);
  opacity: 50%;
}

.MatchedArtifacts__limitReachedPlaceholder .panda-icon {
    margin-right: var(--spacing-xs);
  }

.MatchedArtifactsFilters__popover.Menu {
  padding: var(--spacing-md);
}

.MatchedArtifactsFilters__title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: var(--spacing-xs);
}

.MatchedArtifacts__deviceOs {
  display: flex;
}

.MatchedArtifacts__deviceOs .Icon {
    margin-right: var(--spacing-xs);
    height: 18px;
    width: 18px;
  }

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

.ActivitiesTable__reasonColumn {
    --panda-icon-size: 20px;

    align-items: center;
  }

.MatchedArtifactsFilteredResultsAlert {
  margin-bottom: var(--spacing-2xs);
}

.ProtocolSummary {
  min-width: 200px;
}

.ProtocolSummary__protocol {
    display: flex;
    align-items: center;
    height: var(--spacing-md);
  }

.ProtocolSummary__name {
    text-align: right;
    margin-right: 5px;
    flex-grow: 0;
    flex-shrink: 0;
    font-size: var(--font-size-xs);
    line-height: 16px;
    width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

.ProtocolSummary__percentile {
    flex-basis: 60px;
    flex-shrink: 0;
    flex-grow: 0;
    height: var(--spacing-md);
  }

.ProtocolSummary__percentileBar {
    background: var(--theme-bg-brand-default);
    height: 15px;
  }

.ProtocolSummary__percentileValue {
    flex-grow: 1;
    text-align: right;
    color: var(--theme-character-secondary);
    font-size: var(--font-size-2xs);
  }

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

.ProtocolSummary__activity {
    color: var(--theme-character-primary65);
    font-size: var(--font-size-xs);
    font-weight: normal;
  }

.ProtocolSummary__activityCount {
    color: var(--theme-character-title);
    font-weight: bold;
    font-size: var(--font-size-sm);
    vertical-align: bottom;
  }

.ProtocolSummary__empty {
    color: var(--theme-character-disabled);
  }

.PackageHierarchyTooltip__label {
    font-weight: 500;
    margin-bottom: var(--spacing-2xs);
  }

.PackageHierarchyTooltip__packages {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    grid-gap: var(--spacing-2xs);
    gap: var(--spacing-2xs);
  }

.PackageHierarchyTooltip__packages > li {
      padding: 0;
      margin: 0;
    }

.PackageHierarchyTooltip__packages > li:not(.PackageHierarchyTooltip--active) .panda-tag {
      --panda-tag-border-color: transparent;
      --panda-tag-background-color: transparent;
      --panda-tag-color: var(--theme-character-inverse);
    }

.Splash {
  margin: auto;
  padding: 55px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  grid-gap: 24px;
  gap: 24px;
}

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

.Splash__header > img {
      height: 100px;
    }

.Splash__header > svg {
      fill: var(--theme-character-primary);
    }

.Splash__header > svg:nth-child(1) {
        width: 100px;
        height: 78px;
      }

.Splash__header > svg:nth-child(2) {
        width: 200px;
        height: 20px;
      }

.Splash__content {
    min-height: 216px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 180px;
  }

.Splash--enter .Login, .Splash--appear .Login {
      transform: scale(0.96);
      opacity: 0;
    }

.Splash--enter .Spinner, .Splash--appear .Spinner {
      transform: scale(0);
      opacity: 0;
    }

.Splash--enter-active .Login, .Splash--appear-active .Login {
      transition: all .3s ease-out;
      transform: scale(1);
      opacity: 1;
    }

.Splash--enter-active .Spinner, .Splash--appear-active .Spinner {
      transition: all .3s ease-out;
      transform: scale(1);
      opacity: 1;
    }

.Splash--exit .Login {
      transform: scale(1);
      opacity: 1;
    }

.Splash--exit .Spinner {
      transform: scale(1);
      opacity: 1;
    }

.Splash--exit-active .Login {
      transition: all .2s ease-out;
      transform: scale(1.3);
      opacity: 0;
    }

.Splash--exit-active .Spinner {
      transition: all .3s ease-out;
      transform: scale(0);
      opacity: 0;
    }

.Login {
  --reveal-transition-duration: .3s;
  --panda-button-link-color: var(--theme-character-title);

  width: 378px;
}

.Login,
  .Login__form,
  .Login__actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    grid-gap: 16px;
    gap: 16px;
  }

.Login__subheader {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: var(--theme-character-primary);
  }

.Login__form,
  .Login__form > *,
  .Login__actions,
  .Login__actions .panda-button {
    width: 100%;
  }

.Login__form {
    grid-gap: 0;
    gap: 0;
  }

.Login .FormRow__input {
    --panda-icon-size: 14px;
  }

.Login .FormRow__input .panda-input-prefix {
      color: var(--theme-bg-brand-default);
    }

.Login__formInput {
    position: relative;
  }

.Login__formInput .Spinner {
      position: absolute;
      top: 8px;
      right: 8px;
    }

.PartnerLogoFooter {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: var(--spacing-xl);
  right: var(--spacing-xl);
}

.PartnerLogoFooter__label {
    margin-right: var(--spacing-sm);
    color: var(--theme-character-primary);
    white-space: nowrap;
    font-size: var(--font-size-sm);
  }

.PartnerLogoFooter img {
    height: var(--spacing-2xl);
  }

.ResourceLoader__error {
    white-space: pre-line;
    width: 378px;
  }

.panda-theme-dark,
.panda-theme-light,
.panda-theme-light-cv {
  --device-graph-link-color-inactive: var(--theme-character-secondary);
  --device-graph-link-color-active: var(--theme-character-title);
  --device-graph-node-halo-color: var(--theme-character-title);
  --device-graph-legend-background: var(--theme-bg-popover);
  --device-graph-background-color: var(--theme-bg-canvas);
  --device-graph-border-color: var(--theme-border-primary);
  --device-graph-node-default-background: var(--theme-bg-secondary);
  --device-graph-node-hovered-background: var(--theme-bg-tertiary);
  --device-graph-node-selected-background: var(--theme-bg-tertiary);
  --device-graph-device-default-background: var(--theme-bg-secondary);
  --device-graph-device-default-stroke: var(--theme-bg-inverse);
  --device-graph-device-hovered-background: var(--theme-bg-brand-minimal);
  --device-graph-device-hovered-stroke: var(--theme-bg-brand-active);
  --device-graph-device-selected-background: var(--theme-bg-brand-minimal);
  --device-graph-device-selected-stroke: var(--theme-bg-brand-active);
  --device-graph-label-text-color: var(--theme-character-title);
  --device-graph-label-background: var(--theme-bg-overlay);
  --node-list-background: var(--theme-bg-secondary);
  --node-list-header-background: var(--theme-bg-secondary);
  --node-list-header-hover: var(--theme-bg-item-hover);
  --node-list-header-color: var(--theme-character-title);
  --node-list-item-background: var(--theme-bg-moderate);
  --node-list-item-hover: var(--theme-bg-tertiary);
  --node-list-item-color: var(--theme-character-primary65);
  --threat-behavior-color: var(--theme-bg-error-active);
  --suspect-destination-color: var(--colors-teal-500);
  --ioc-match-color: var(--theme-bg-warning-default);
}

.GraphNodeListContainer {
  flex-grow: 1;
}

.GraphNodeListContainer .DataTable__row--header {
    display: none;
  }

.GraphNodeListContainer .DataTable__row {
    padding: 4px 16px;
    z-index: unset;
  }

.GraphNodeListContainer .DataTable__row .DataTable__td {
      margin: 0;
    }

.GraphNodeListContainer .DataTable__row:hover {
      box-shadow: unset !important;
    }

.GraphNodeListContainer .DataTable__row.TableItem {
    height: 36px;
    background-color: var(--node-list-item-background);
  }

.GraphNodeListContainer .DataTable__row.TableItem:hover {
      background-color: var(--node-list-item-hover) !important;
    }

.GraphNodeListContainer .DataTable__row.Title,
  .GraphNodeListContainer .DataTable__row.Header,
  .GraphNodeListContainer .DataTable__row.Group {
    font-weight: bold;
    color: var(--node-list-header-color);
    background-color: var(--node-list-header-background);
    height: 40px !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    z-index: 1;
    box-shadow: unset !important;
  }

.GraphNodeListContainer .DataTable__row.Title:hover, .GraphNodeListContainer .DataTable__row.Header:hover, .GraphNodeListContainer .DataTable__row.Group:hover {
      background-color: var(--node-list-header-background) !important;
      box-shadow: unset !important;
      cursor: default !important;
    }

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

.DeviceGraph__computing-overlay {
  display: flex;
  align-items: center;
  width: auto;
  position: absolute;
  top: var(--spacing-lg);
  right: var(--spacing-lg);
  padding: var(--spacing-sm);
}

.DeviceGraph__computing-overlay-message {
  flex: 0 0 auto;
  padding-right: var(--spacing-sm);
}

.DeviceGraph__computing-overlay-spinner {
  flex: 0 0 auto;
}

.DeviceGraph__background {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.DeviceGraphContainer {
  flex-grow: 1;
  border: 1px dashed var(--device-graph-border-color);
  background-color: var(--device-graph-background-color);
  margin-bottom: var(--spacing-2xs);
}

.DeviceGraphContainerLegend {
  position: absolute;
  display: flex;
  right: 12px;
  bottom: 12px;
  border-radius: 4px;
  padding: 12px;
  background: var(--device-graph-legend-background);
  border: 1px solid var(--theme-border-primary);
}

.DeviceGraphContainerLegend__threatBehavior {
    --panda-badge-background-color: var(--threat-behavior-color);

    margin-right: 18px;
  }

.DeviceGraphContainerLegend__suspectDestination {
    --panda-badge-background-color: var(--suspect-destination-color);

    margin-right: 18px;
  }

.DeviceGraphContainerLegend__iocMatch {
    --panda-badge-background-color: var(--ioc-match-color);
  }

.DeviceGraph__nodeList {
  color: var(--node-list-item-color);
  background-color: var(--node-list-background);
  box-shadow: unset;
}

.DeviceGraph__nodeList .DataTable {
    height: 100%;
    box-shadow: unset;
  }

.DeviceGraph__nodeList .DataTable .DataTable__row {
      border-bottom: 1px solid var(--node-list-background);
    }

.DeviceGraph__nodeList .DataTable .DataTable__row:hover {
        box-shadow: unset !important;
      }

.DeviceGraph__nodeList .DataTable .DataTable__row .DataTable__td > * {
        padding-bottom: 0;
        padding-top: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
      }

.DeviceGraph__nodeList-item {
    display: grid;

    /* rem units chosen to accommodate the text size of a 'medium' risk tag */
    grid-template-columns: 5rem 1fr;
    grid-gap: 16px;
    gap: 16px;
    align-items: center;
  }

.DeviceGraph__nodeList-item .DeviceGraph__nodeList-item--score-name-container {
      display: flex;
      flex-direction: row;
    }

.DeviceGraph__nodeList-item .DeviceGraph__nodeList-item--score {
      font-weight: bold;
      font-size: 14px;
      text-align: center;
      flex-basis: var(--spacing-2xl);
      margin-right: var(--spacing-sm);
      flex-shrink: 0;
    }

.DeviceGraph__nodeList-item .DeviceGraph__nodeList-item--name {
      text-overflow: ellipsis;
      overflow: hidden;
      white-space: nowrap;
      font-size: 14px;
    }

.DeviceGraph__nodeList-item .DeviceGraph__nodeList-item--name-container {
      display: flex;
      flex-direction: row;
      flex-grow: 1;
      overflow: hidden;
    }

.DeviceGraph__svg--has-active .DeviceGraph__background {
  opacity: 0.35;
}

.DeviceGraph__scaled .DeviceGraph__link {
    stroke-width: 3px;
  }

.DeviceGraph__link {
  stroke: var(--device-graph-link-color-inactive);
  stroke-width: 0.5;
}

.DeviceGraph__foreground .DeviceGraph__link {
    stroke: var(--device-graph-link-color-active);
  }

.DeviceGraph__links--important .DeviceGraph__link {
    stroke: rgba(108, 96, 236, 0.4);
  }

.DeviceGraph__foreground .DeviceGraph__links--important .DeviceGraph__link {
      stroke: rgba(108, 96, 236, 0.6);
    }

.DeviceGraph__label {
  text-align: center;
  width: 120px;
}

.DeviceGraph__labelText {
  background: var(--device-graph-label-background);
  color: var(--device-graph-label-text-color);
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  line-height: 16px;
  max-width: 120px;
  overflow: hidden;
  padding: 0 4px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.DeviceGraph__this-device-label {
  fill: var(--white-02);
  text-anchor: middle;
  font-size: 2px;
  text-shadow: 0 2px 3px var(--gray-07);
  text-transform: uppercase;
}

.DeviceGraph__this-device-node,
.DeviceGraph__device-node {
  stroke-width: 0.5;
}

.DeviceGraph__this-device-node-halo {
  fill: transparent;
  stroke: var(--color-defining-artifacts);
  stroke-width: 4;
  stroke-opacity: 0.4;
}

.DeviceGraph__node-default {
    fill: var(--device-graph-node-default-background);
  }

.DeviceGraph__node-hovered {
    fill: var(--device-graph-node-hovered-background);
  }

.DeviceGraph__node-hovered-halo {
    fill: var(--gray-03);
    filter: drop-shadow(var(--box-shadow-md));
  }

.DeviceGraph__node-selected {
    fill: var(--device-graph-node-selected-background);
  }

.DeviceGraph__node-active {
    fill: var(--gray-07);
  }

.DeviceGraph__node-selected-halo {
    fill: none;
    stroke: var(--white-02);
    stroke-width: 1px;
    filter: drop-shadow(var(--box-shadow-md));
  }

.DeviceGraph__node-intel {
    fill: var(--ioc-match-color);

    --icon-color: var(--ioc-match-color);
  }

.DeviceGraph__node-intel--stroke {
      fill: none;
      stroke: var(--ioc-match-color);
      stroke-width: 1px;
    }

.DeviceGraph__node-intel--stroke-double {
        stroke-width: 2px;
        fill: none;
        stroke: var(--ioc-match-color);
      }

.DeviceGraph__node-threat-behavior {
    fill: var(--threat-behavior-color);

    --icon-color: var(--threat-behavior-color);
  }

.DeviceGraph__node-threat-behavior--stroke {
      fill: none;
      stroke: var(--threat-behavior-color);
      stroke-width: 1px;
    }

.DeviceGraph__node-threat-behavior--stroke-double {
        stroke-width: 2px;
        fill: none;
        stroke: var(--threat-behavior-color);
      }

.DeviceGraph__node-characteristic-artifact {
    fill: var(--characteristic-artifact-color);

    --icon-color: var(--characteristic-artifact-color);
  }

.DeviceGraph__node-characteristic-artifact--stroke {
      fill: none;
      stroke: var(--characteristic-artifact-color);
      stroke-width: 1px;
    }

.DeviceGraph__node-characteristic-artifact--stroke-double {
        fill: none;
        stroke: var(--characteristic-artifact-color);
        stroke-width: 2px;
      }

.DeviceGraph__node-domain {
    fill: var(--suspect-destination-color);

    --icon-color: var(--suspect-destination-color);
  }

.DeviceGraph__node-domain--stroke {
      fill: none;
      stroke: var(--suspect-destination-color);
      stroke-width: 1px;
    }

.DeviceGraph__node-domain--stroke-double {
        fill: none;
        stroke: var(--suspect-destination-color);
        stroke-width: 2px;
      }

.DeviceGraph__intel-node-label {
  fill: var(--gray-05);
  text-anchor: middle;
  font-size: 10px;
}

.DeviceGraph__artifact-node--unimportant {
  stroke: none;
  opacity: 0.4;
}

.DeviceGraph__unknown-node-question-mark {
  fill: var(--gray-07);
  text-anchor: middle;
  font-weight: bold;
  font-size: 10px;
}

.DeviceGraph__device-default .DeviceGraph__device-node {
      fill: var(--device-graph-device-default-background);
    }

.DeviceGraph__device-default .DeviceGraph__device-node-stroke {
      stroke: var(--device-graph-device-default-stroke);
    }

.DeviceGraph__device-hovered {
    filter: drop-shadow(var(--box-shadow-md));
  }

.DeviceGraph__device-hovered .DeviceGraph__device-node {
      fill: var(--device-graph-device-hovered-background);
    }

.DeviceGraph__device-hovered .DeviceGraph__device-node-stroke {
      stroke: var(--device-graph-device-hovered-stroke);
    }

.DeviceGraph__device-selected {
    filter: drop-shadow(var(--box-shadow-md));
  }

.DeviceGraph__device-selected .DeviceGraph__device-node {
      fill: var(--device-graph-device-selected-background);
    }

.DeviceGraph__device-selected .DeviceGraph__device-node-stroke {
      stroke: var(--device-graph-device-selected-stroke);
    }

.DeviceGraph__device-important {
  fill: transparent;
  stroke: var(--white-01);
  stroke-width: 0.5;
  stroke-linejoin: round;
}

.DeviceGraph__notable-domain-important,
.DeviceGraph__artifact-important,
.DeviceGraph__intel-important,
.DeviceGraph__watchlist-important {
  fill: transparent;
  stroke: var(--white-01);
  stroke-width: 0.8;
  stroke-linejoin: round;
}

.DeviceGraph__device--details {

  cursor: pointer;
}

.DeviceGraph__device--details:hover > rect {
      fill: var(--white-01);
    }

.DeviceGraph__device--details:hover > .Icon {
      --icon-color: var(--teal-01);
    }

.DeviceGraph__device--details > rect {
    fill: var(--light-green-01);
  }

.DeviceGraph__device--details > .Icon {
    --icon-color: var(--gray-07);
  }

.DeviceGraph__device-active,
.DeviceGraph__notable-domain-active,
.DeviceGraph__artifact-active,
.DeviceGraph__intel-active,
.DeviceGraph__watchlist-active {
  fill: transparent;
  stroke: var(--white-01);
  stroke-width: 2;
  stroke-linejoin: round;
}

.DeviceGraph__notable-domain-halo,
.DeviceGraph__artifact-halo,
.DeviceGraph__intel-halo,
.DeviceGraph__watchlist-halo {
  fill: transparent;
  stroke: var(--device-graph-node-halo-color);
  stroke-width: 16;
  stroke-linejoin: round;
  stroke-opacity: 0.4;
}

.DeviceGraph__tooltip {
  padding: var(--spacing-2xs) var(--spacing-xs);
}

.DeviceGraph__tooltip-title {
  font-weight: bold;
  font-size: var(--font-size-xs);
}

.DeviceGraph__grouped {
  stroke-width: 0.5;
}

.DeviceGraph__grouped-domain {
    stroke: var(--suspect-destination-color);
  }

.DeviceGraph__grouped-threat-behavior {
    stroke: var(--threat-behavior-color);
  }

.DeviceGraph__grouped-intel {
    stroke: var(--ioc-match-color);
  }

.DeviceGraph__intel-node-grouped,
.DeviceGraph__artifact-node-grouped,
.DeviceGraph__notable-domain-node-grouped,
.DeviceGraph__watchlist-node-grouped {
  stroke: var(--gray-07);
  stroke-width: 2px;
}

.DeviceGraph__device-node-stroke {
  stroke-width: 2;
}

/* Disable the arrow */

.DeviceGraphNodeTooltip::before,
  .DeviceGraphNodeTooltip::after {
    display: none;
  }

.DeviceGraph__nodeList--tooltip {
  pointer-events: none;
}

.DeviceGraph__tooltip--item {
  text-align: left;
  display: flex;
  flex-direction: row;
}

.DeviceGraph__tooltip--item-score {
    font-weight: bold;
    width: 30px;
  }

.DeviceGraph__tooltip--item-name {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }

.DeviceGraph__characteristicArtifacts--container:last-child {
    padding-bottom: 0;
  }

.DeviceGraph__characteristicArtifacts--container {
    padding-bottom: 10px;
  }

.DeviceGraph__characteristicArtifacts--container--header {
      text-overflow: ellipsis;
      overflow: hidden;
      white-space: nowrap;
      color: var(--light-text-color);
      font-size: 0.8em;
    }

.DeviceGraphLegendContainer {
  align-items: center;
  display: flex;
  font-size: var(--font-size-xs);
  height: 30px;
}

.DeviceGraphLegendContainer span:first-child {
    margin-right: var(--spacing-2xs);
  }

.DeviceGraphLegendContainer .DeviceGraphLegend {
    display: flex;
    padding: 0 var(--spacing-sm);
    height: 30px;
    background-color: var(--device-graph-legend-background);
    border-radius: var(--spacing-md);
  }

.DeviceGraphHeader {
  margin-bottom: var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.DeviceGraphFooter {
  color: var(--theme-character-secondary);
  font-size: 14px;
  padding-top: 6px;
}

.DeviceGraphTooltip {
  border-radius: var(--spacing-xs) !important;
}

.CharacteristicArtifactNode {
  fill: var(--characteristic-artifact-color);
}

.WHOISData .WHOIS__title {
    font-weight: bold;
    margin-bottom: var(--spacing-sm);
  }

.WHOISData > * {
    margin-bottom: var(--spacing-sm);
  }

.WHOISData .WHOISStatus .KeyValue__key, .WHOISData .WHOISNameServers .KeyValue__key {
      display: none;
    }

.WHOISData .KeyValue__value {
    white-space: pre-line;
  }

.WHOIS__textProperty .KeyValue__value {
  overflow-wrap: break-word;
}

.WHOISModal .Modal__content--small {
    max-height: 80vh;
    font-size: var(--font-size-xs);
  }

.WHOISModal .Modal__body {
    padding-bottom: var(--spacing-md);
  }

.WHOISModal .Modal__title {
    word-break: break-all;
  }

.WHOISNameServers__servers {
  white-space: pre-line;
}

.WHOISSummary .WHOIS__title {
    padding-top: 2px;
  }

.DomainDetails .DetailsSidebar__header {
    padding-left: var(--grid-gap);
  }

.DomainDetails .DetailsSidebar__header .WhiteListedIndicator {
      margin-right: var(--spacing-xs);
      align-self: center;
    }

.DomainDetails .DetailsSidebar__header .ThreatIndicator--small {
      margin-right: var(--spacing-xs);
      top: 0.2rem;
      width: 1.6rem;
      height: 1.6rem;
      flex-shrink: 0;
    }

.DomainDetails .DetailsSidebar__content {
    overflow-x: hidden;
    overflow-y: auto;
    display: block;
    background: var(--theme-bg-primary);
  }

.DomainDetails .WHOIS__title {
    padding: 10px 0;
    font-size: 1.4rem;
    font-weight: bold;
    border-bottom: 1px solid var(--gray-03);
    margin-bottom: 10px;
  }

.DomainDetails .WHOISData {
    padding: 10px;
  }

.DomainDetails__modal .Modal__body {
      display: flex;
      flex-direction: column;
      padding: unset;
    }

.DomainDetails__modal .Modal__body .WithIndicator__label {
        flex-grow: 0;
      }

.DomainDetails__modal .Modal__body > *:first-child {
        flex-grow: 1;
      }

.DomainDetails__threat {
    color: var(--red-01);
  }

.DomainDetails .PanelGrid,
  .DomainDetails .PanelGridColumn {
    align-items: normal;
  }

.DomainDetails .TopDevicesPanel .Panel__content {
      display: flex;
    }

.DomainDetails .TopDevicesPanel.Panel--empty .TopDevicesTable {
        display: none;
      }

.DomainDetails .TopDevicesTable {
    flex-grow: 1;
  }

.DomainDetails .SubdomainsPanel {
    margin-bottom: 0;
  }

.DomainDetails .OtherDomainsPanel {
    margin-top: 1rem;
  }

.DomainDetails .DataTable__empty {
    padding: 0;
  }

.DomainDetailsContent {
  position: relative;
}

.DomainDetailsContent > .Spinner {
    transform: translateY(4rem);
  }

.DomainSummaryPanel {
  display: flex;
  justify-content: space-between;
  padding: 0 0 4rem;
}

.DomainScore {
  display: flex;
  flex-direction: column;
  flex-basis: 66%;
  flex-grow: 2;
}

.DomainScore__title {
    white-space: nowrap;
    margin: 0.5rem 0 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--gray-02);
    border-top: 1px solid var(--gray-04);
    letter-spacing: 1px;
  }

.DomainScore__content {
    display: flex;
  }

.DomainCountSummaries {
  display: flex;
  justify-content: space-between;
  flex-basis: 34%;
  flex-grow: 1;
  margin-bottom: var(--spacing-xs);
  margin-left: var(--spacing-xl);
  margin-right: var(--spacing-xl);
}

.DomainCountSummaries .Notability {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

.DomainCountSummaries .Notability__label {
      font-size: var(--font-size-xs);
      font-weight: bold;
      color: inherit;
      margin-bottom: var(--spacing-xs);
    }

.DomainCountSummaries .Notability__value {
      margin-top: 2rem;
      width: 4rem;
      height: 4rem;
      font-size: var(--font-size-xs);
    }

.DomainSummary .DomainCategories, .DomainDetails .DomainCategories {
    white-space: nowrap;
  }

.DomainCountSummary__label {
    white-space: nowrap;
    text-align: center;
    font-size: var(--font-size-s);
    font-weight: bold;
    margin-bottom: var(--spacing-xs);
  }

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

.DomainCountSummary .ActivityCount__circle1 {
    background: var(--theme-bg-brand-default);
  }

.DomainCountSummary .ActivityCount__circle2 {
    display: none;
  }

.DomainCountSummary .ActivityCount__label2 {
    font-size: var(--font-size-xs);
    background: none;
  }

.DomainScoreAttributes {
  margin: 0 auto;
}

.DomainScoreAttributes .Button--link {
    margin-left: 5px;
  }

.DomainScoreAttributes .Attributes {
    margin-bottom: 1rem;
  }

.DomainScoreAttributes .Icon[data-icon="ioc"] {
    --icon-color: var(--orange-01);

    position: relative;
    top: 2px;
  }

.TaggedAttribute .DomainDetails__threat {
    margin-left: 1rem;
  }

.DomainSidebar .DomainScoreAttributes {
    margin: 2rem 0 0 0;
  }

.DomainSidebar .Spinner {
    align-self: center;
    margin: auto;
  }

.DomainSidebar .AuditLogLink {
    margin-top: 1rem;
  }

.DomainSidebarSection {
  margin-bottom: 3rem;
}

.DomainSidebarSection__title {
    white-space: nowrap;
    margin: 0.5rem 0 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--gray-02);
    border-top: 1px solid var(--gray-04);
    letter-spacing: 1px;
  }

.TopDevicesTable__numAssociatedActivities,
.TopDevicesTable__approxBytesTransferred {
  text-align: right;
  align-items: flex-end;
}

.SubDomainsTable__numAssociatedDevices,
.SubDomainsTable__percentageTotalDevices {
  text-align: right;
  align-items: flex-end;
}

.SubDomainsTable__subdomain > div {
  display: flex;
}

.OtherDomainsWithRegistrantTable__numAssociatedActivities,
.OtherDomainsWithRegistrantTable__numAssociatedDevices {
  text-align: right;
  align-items: flex-end;
}

.QueryDefinitions {
  display: flex;
  flex-grow: 1;
}

.QueryDefinitions__dirtyGenerationAlert {
    margin-bottom: 16px;
  }

.QueryDefinitions__subtitle {
    display: flex;
    align-items: center;
    grid-gap: var(--spacing-sm);
    gap: var(--spacing-sm);
  }

.QueryDefinitions__referenceIdentifier {
    color: var(--theme-character-secondary);
  }

.QueryDefinitions__noneSelected {
    color: var(--theme-character-disabled);
  }

.QueryDefinitions__someSelected {
    color: var(--theme-character-title);
  }

.QueryDefinitions__panelDescription .KeyValue__value {
    overflow-wrap: break-word;
    overflow-y: auto;
    max-height: 200px;
  }

.DefinitionModal .Message__text {
      white-space: pre-line;
    }

.DefinitionModal__inputPackage.FormRow--error .FormRow__input > .panda-button {
         border: 1px solid var(--panda-input-error-border-color);
      }

.DefinitionModal__inputPackage.FormRow--warning .FormRow__input > .panda-button {
        border: 1px solid var(--panda-input-warning-border-color);
      }

.DefinitionModal__inputQuery .FormRow__inputError {
      max-width: 100%;
    }

.DefinitionModal__inputQuery .FormRowQueryEditor .QueryEditor {
      height: 148px;
    }

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

.DefinitionModal__inputVersionConstraint .FromTo {
    width: 100%;
  }

.DefinitionModal__columns {
    display: flex;
    margin-bottom: 2rem;
  }

.DefinitionModal__columns .FormRow {
      margin: 0 var(--spacing-md) 0 0;
    }

.DefinitionModal__columns .FormRow:last-child {
        margin-right: 0;
      }

.DefinitionModal__columns:last-child {
      margin-bottom: 0;
    }

.DefinitionModal__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
  }

.DefinitionModal__inputIdentifier {
    width: 100%;
  }

.DefinitionModal__inputThreatBehavior {
    white-space: nowrap;
    flex-grow: 1;
  }

.DefinitionModal__inputIncidentResponse {
    flex-grow: 1;
  }

.DefinitionModal__inputExpiryTime {
    width: 100%;
  }

.DefinitionModal__inputExpiryTime .FormRowSelect {
      margin-right: 1rem;
      width: 24rem;
    }

.DefinitionModal__inputExpiryTime .FormRowInput > .Icon {
      left: 18.6rem;
    }

.DefinitionModal__bulkDisabled,
  .DefinitionModal__declDisabled {
    --input-color: var(--gray-03);

    width: 100%;
  }

.DefinitionModal__inputError {
    border: 1px solid var(--panda-input-error-border-color);
  }

.DefinitionModal__inputWarning {
    border: 1px solid var(--panda-input-warning-border-color);
  }

.DefinitionModal__inputDescription {
    padding: 4px 0;
  }

.DefinitionModal__selectionInfo {
    margin-bottom: var(--spacing-sm);
    font-style: italic;
  }

.ExpandableQueryEditorFormInputPortal .FormRowQueryEditor .QueryEditor {
  height: 80vh;
  width: 80vw;
}

.ExpandableQueryEditorFormInputPortal .FormRowQueryEditor .CodeMirror-scroll {
  max-height: 100%;
}

.PolicyListModal__grid {
    display: grid;
    grid-template-columns: 3fr 1fr;
  }

.PolicyListModal__grid .FormRow {
      margin: 0 var(--spacing-md) 0 0;
    }

.DefinitionsTable {
  height: 100%;
}

.DefinitionsTable .TableBuilderBody__row {
      cursor: pointer;
    }

.DefinitionsTable .TableBuilderBody .DefinitionsTable__queryExpressionColumn {
      overflow: hidden;
    }

.DefinitionsTable .TableBuilderBody .DefinitionsTable__queryExpressionColumn .QueryExpression {
        line-height: unset;
      }

.DefinitionsTable .TableBuilderBody .DefinitionsTable__queryExpressionColumn .QueryText {
        font-size: var(--font-size-2xs);
      }

.DefinitionsTable__scoreColumn,
  .DefinitionsTable__deviceCountColumn,
  .DefinitionsTable__activityCountColumn,
  .DefinitionsTable__lastMatchedColumn,
  .DefinitionsTable__lastModifiedColumn,
  .DefinitionsTable__actionsColumn {
    font-size: 14px;
    line-height: 22px;
  }

.DefinitionsTable__titleColumn {
    font-weight: bold;
  }

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

.DefinitionsTable__titleColumnLink a {
      text-decoration: underline;
      white-space: nowrap;
      max-width: 100%;
      color: var(--theme-character-title);
    }

.DefinitionsTable__titleColumnLink a:hover {
        text-decoration: none;
      }

.DefinitionsTable__titleColumnLink .ValueTooltip {
      white-space: nowrap;
    }

.DefinitionsTable__titleColumnLink > .ValueTooltip {
      font-size: 12px;
      color: var(--theme-character-primary65);
    }

.DefinitionsTable__expiryTimeColumn {
    color: var(--theme-character-primary65);
  }

.DefinitionsTable__severityColumn {
    color: var(--theme-character-primary65);
  }

.DefinitionsTable .ThreatBehaviorToggle {
    padding-top: 0.3rem;
  }

.DefinitionsTable .SupportedDropdown .Dropdown__label {
      overflow: visible;
    }

.DefinitionsTable__referenceIdentifier {
    font-weight: bold;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 100%;
    white-space: nowrap;
    align-self: flex-start;
    color: var(--theme-character-primary65);
  }

.DefinitionsTable__referenceIdentifierTooltip.Tooltip,
  .DefinitionsTable__queryExpressionColumnTooltip.Tooltip {
    --tooltip-text-color: var(--theme-character-title);
    --tooltip-background-color: var(--theme-bg-canvas);

    font-size: 14px;
    line-height: 22px;
    max-width: 64rem;
  }

.DefinitionsTable__referenceIdentifierTooltip.Tooltip .QueryExpression, .DefinitionsTable__queryExpressionColumnTooltip.Tooltip .QueryExpression {
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 8;
      text-overflow: ellipsis;
      width: 100%;
      overflow: hidden;
    }

.DefinitionsTable__referenceIdentifierTooltip .QueryExpression {
      margin-top: var(--spacing-xs);
    }

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

.DefinitionsTable .TableBuilderBody__row--strikethrough > .TableBuilderBodyCell:last-child {
    opacity: 1;
  }

.DefinitionsTable .QueryText {
    font-size: var(--font-size-xs);
  }

.DefinitionsTable .QueryExpression,
  .DefinitionsTable .QueryType {
    /* autoprefixer: off */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    max-width: 100%;

    /*
      in order to get the intended effect of 2 lines + ellipsis,
      we need to use webkit (chrome/safari) specific properties.
      however, the css autoprefixer removes these properties, so
      we turn it off temporarily.
     */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    /* Make sure we can see the error underline */
    line-height: 22px;
  }

.DefinitionsTable .QueryExpression {
    margin-top: -0.2rem;
  }

.DefinitionsTable .QueryType {
    width: fit-content;
  }

.DefinitionsTable--mini .QueryExpression {
      display: block;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

.SupportedIcon {
  display: flex;
  cursor: pointer;
}

.SupportedDropdownPortal .Dropdown__caret {
    left: 8px;
  }

.Tooltip.DefinitionQueryTooltip {
  text-align: left;
  max-width: 50vw;
}

.ThreatBehaviorToggleTooltip {
  width: fit-content;
}

.ThreatBehaviorToggle {
  display: flex;
}

.QueryExpression__tooltip {
  /* autoprefixer: off */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-height: 22px;
  -webkit-line-clamp: 2;
  margin-top: -0.2rem;
}

.QueryDefinitionDetails .panda-page-panel .panda-page-header-title-label {
    width: 18em;
  }

.QueryDefinitionDetails .ExceptionsTable .TableBuilderBody__row {
    cursor: pointer;
  }

.QueryDefinitionDetails .QueryDefinitionDetails__group {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

.QueryDefinitionDetails .ThreatBehaviorCountSummaries,
  .QueryDefinitionDetails .DefinitionCountSummaries {
    display: flex;
    flex-basis: 50%;
    flex-grow: 1;
    margin: var(--spacing-md) 0;
    padding: var(--spacing-xs);
    border-bottom: 1px solid var(--theme-bg-canvas);
  }

.QueryDefinitionDetails .ThreatBehaviorCountSummaries:empty, .QueryDefinitionDetails .DefinitionCountSummaries:empty {
      display: none;
    }

.QueryDefinitionDetails .ThreatBehaviorCountSummary,
  .QueryDefinitionDetails .DefinitionCountSummary {
    padding-right: 72px;
  }

.QueryDefinitionDetails .ThreatBehaviorCountSummary__label,
  .QueryDefinitionDetails .DefinitionCountSummary__label {
    white-space: nowrap;
    text-align: center;
    font-weight: bold;
    margin-bottom: var(--spacing-xs);
  }

.QueryDefinitionDetails .DetailsGroupPanel__body .avatar-text {
      margin-top: 9px;
    }

.PanelCard {

  padding: 8px 8px 32px 16px;
  cursor: pointer;
}

.PanelCard:hover {
    background: var(--theme-bg-item-hover);
  }

.PanelCard--selected {
    background: var(--row-selected-background-color);
  }

.PanelCard--selected:hover {
      background: var(--row-selected-background-color);
    }

.PanelCard__anchor {
    text-decoration: none;
  }

.PanelCard__versionMetadata {
    border-left: 1px solid var(--theme-bg-brand-default);
    padding-left: 8px;
  }

.PanelCard__versionType {
    font-weight: 700;
    font-size: 16px;
    padding-bottom: 5px;
  }

.PanelCard__versionType::before {
      content: "";
      border-radius: 50%;
      width: 10px;
      height: 10px;
      display: inline-block;
      background: var(--theme-bg-brand-default);
      margin-right: 8px;
      margin-left: -4px;
    }

.PanelCard__container {
    padding: 0 11px 22px 11px;
  }

.PanelCard__top,
  .PanelCard__bottom {
    display: flex;
    justify-content: space-between;
  }

.PanelCard__top {
    padding-bottom: 8px;
  }

.PanelCard .VersionBoundsTitle {
    color: var(--theme-character-title);
  }

.PanelCard__container.InactiveVersions {

  color: var(--theme-character-secondary);
}

.PanelCard__container.InactiveVersions .PanelCard__versionType::before {
    content: "";
    border-radius: 50%;
    width: 10px;
    height: 10px;
    display: inline-block;
    background: var(--theme-character-disabled);
    margin-right: 8px;
    margin-left: -4px;
  }

.PanelCard__container.InactiveVersions .PanelCard__versionMetadata {
    border-left: 1px solid var(--theme-character-disabled);
    padding-left: 8px;
  }

.PanelCard__container.InactiveVersions .PanelCard--selected {
    color: var(--light-text-color);
  }

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

.RelatedRefIdsTable__actions a {
      color: var(--theme-character-title);
    }

.QueryExpressionBlock {
  background: var(--theme-bg-canvas);
  border: 1px solid var(--theme-border-primary);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-height: 0;
  overflow: hidden;
}

.QueryExpressionBlock__title {
    border-bottom: 1px solid var(--theme-border-divider);
    color: var(--theme-character-title);
    font-weight: 700;
    padding: 8px 16px;
  }

.QueryExpressionBlock .QueryExpression {
    word-break: break-all;
    padding: var(--spacing-xs) 16px;
    flex-grow: 1;
    min-height: 0;
    overflow: auto;
  }

.SkillsPanel .ThreatBehaviorCountSummaries {
    display: flex;
    flex-grow: 1;
    padding: var(--spacing-xs);
    border-bottom: 1px solid var(--theme-bg-canvas);
    background: var(--key-value-background);
  }

.SkillsPanel .ThreatBehaviorCountSummaries:empty {
      display: none;
    }

.SkillsPanel .ThreatBehaviorCountSummary {
    padding-right: 72px;
  }

.SkillsPanel .ThreatBehaviorCountSummary__label {
      white-space: nowrap;
      text-align: center;
      font-weight: bold;
      margin-bottom: var(--spacing-xs);
    }

.QueryText {
  color: var(--theme-character-code-default);
  font-family: var(--font-family-sans-serif);
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
}

.QueryText--underlined,
.cm-s-awake .cm-error {
  border-bottom: 2px dotted var(--theme-bg-error-default);
}

.QueryText--builtin, .QueryText--builtin::selection, .cm-s-awake .cm-builtin, .cm-s-awake .cm-builtin::selection {
    color: var(--theme-character-code-builtin);
    font-style: italic;
  }

.QueryText--column, .QueryText--column::selection, .cm-s-awake .cm-column, .cm-s-awake .cm-column::selection {
    color: var(--theme-character-code-column);
  }

.QueryText--symbol, .QueryText--symbol::selection, .cm-s-awake .cm-symbol, .cm-s-awake .cm-symbol::selection {
    color: var(--theme-character-code-function);
  }

.QueryText--timestamp, .QueryText--timestamp::selection, .cm-s-awake .cm-timestamp, .cm-s-awake .cm-timestamp::selection {
    color: var(--theme-character-code-datetime);
  }

.QueryText--identifier, .QueryText--identifier::selection, .cm-s-awake .cm-identifier, .cm-s-awake .cm-identifier::selection {
    color: var(--theme-character-code-function);
  }

a.QueryText--identifier, a.QueryText--identifier::selection {
    text-decoration: none !important;
    border-bottom: 1px dotted var(--theme-character-code-syntax);
  }

.QueryText--ip-address, .QueryText--ip-address::selection, .cm-s-awake .cm-ip-address, .cm-s-awake .cm-ip-address::selection {
    color: var(--theme-character-code-ipaddress);
  }

.QueryText--mac-address, .QueryText--mac-address::selection, .cm-s-awake .cm-mac-address, .cm-s-awake .cm-mac-address::selection {
    color: var(--theme-character-code-macaddress);
  }

.QueryText--number, .QueryText--number::selection, .QueryText--hex, .QueryText--hex::selection, .cm-s-awake .cm-number, .cm-s-awake .cm-number::selection, .cm-s-awake .cm-hex, .cm-s-awake .cm-hex::selection {
    color: var(--theme-character-code-number);
  }

.QueryText--regex, .QueryText--regex::selection, .cm-s-awake .cm-regex, .cm-s-awake .cm-regex::selection {
    color: var(--theme-character-code-regex);
  }

.QueryText--string, .QueryText--string::selection, .QueryText--bytes, .QueryText--bytes::selection, .cm-s-awake .cm-string, .cm-s-awake .cm-string::selection, .cm-s-awake .cm-bytes, .cm-s-awake .cm-bytes::selection {
    color: var(--theme-character-code-string);
  }

.QueryText--syntax, .QueryText--syntax::selection, .cm-s-awake .cm-syntax, .cm-s-awake .cm-syntax::selection {
    color: var(--theme-character-code-syntax);
  }

.QueryText--uuid, .QueryText--uuid::selection, .cm-s-awake .cm-uuid, .cm-s-awake .cm-uuid::selection {
    color: var(--theme-character-code-uuid);
  }

.QueryText--comment, .QueryText--comment::selection, .cm-s-awake .cm-comment, .cm-s-awake .cm-comment::selection {
    color: var(--theme-character-code-comment);
  }

.QueryText--enum, .QueryText--enum::selection, .cm-s-awake .cm-enum, .cm-s-awake .cm-enum::selection {
    color: var(--theme-character-code-number);
  }

.QueryText--keyword, .QueryText--keyword::selection, .cm-s-awake .cm-keyword, .cm-s-awake .cm-keyword::selection {
    color: var(--theme-character-code-keyword);
  }

.cm-s-awake .cm-unknown, .cm-s-awake .cm-unknown::selection {
    color: var(--theme-character-code-syntax);
  }

.QueryExpression {
  /* Always set this for intermediate state, before lexing has been applied */
  font-family: var(--font-family-sans-serif);
  white-space: pre-wrap;
}

.QueryType--error {
    color: var(--red-01);
  }

.QueryExpression__line {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  line-height: 22px;
}

.QueryExpression__lineNumber {
  flex-shrink: 0;
  flex-grow: 0;
  width: calc(var(--query-expression-padding-length) * 1ch);
  margin-right: var(--spacing-xs);
  text-align: right;
  color: var(--theme-character-secondary);
  white-space: nowrap;
  user-select: none;
}

.AuditLogModal .AuditLogTitle {
    margin-left: var(--spacing-2xs);
    font-weight: normal;
  }

.AuditLogModal .Modal__body {
    padding: unset;
  }

.AuditLogEntry {
  padding: var(--spacing-sm) 0;
}

.AuditLogEntry:not(:last-child) {
    border-bottom: 1px solid var(--theme-border-primary);
  }

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

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

.AuditLogEntry__action {
    font-weight: bold;
  }

.AuditLogEntry__comment {
    margin-top: var(--spacing-xs);
    color: var(--theme-character-primary65);
  }

.AuditLogLink {
  --button-height: 2.4rem;
}

.UsersTable {
  height: 100%;
}

.MyProfile__roleDetails .KeyValue {
      padding-right: 0;
      padding-left: 0;
    }

.MyProfile__rolePanel {
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    background: var(--panda-page-content-background);
    padding: 16px;
  }

.MyProfile__rolePanel .MyProfile__rolePanelTitle {
      color: var(--theme-character-title);
      font-size: 16px;
      font-weight: bold;
      margin: unset;
      padding: 0 0 16px 0;
    }

.MyProfile__rolePanel .MyProfile__rolePanelTable {
      display: flex;
      flex-grow: 1;
      overflow: hidden;
    }

.MyProfile__rolePanel .MyProfile__rolePanelTable .CapabilitiesCellDescription {
        color: var(--theme-character-primary65);
      }

.UserManagement__password {
    display: flex;
    flex-direction: column;
    width: 100%;
    grid-gap: 5px;
    gap: 5px;
  }

.ActivitiesTable__protocols {
    white-space: pre-wrap;
  }

.ActivitiesTable .TableBuilderBodyCell:not(.ExpandTableCell) {
    padding-top: var(--spacing-xs);
    padding-bottom: var(--spacing-xs);
  }

.ActivitiesTable__pending {
    width: 100%;
  }

.ActivitiesTable .ThreatIndicator--small {
    /* Chrome renders these with weird shapes when using the default em size */
    width: 1.2rem;
    height: 1.2rem;
  }

.ActivitiesTableEmptyState__noResults {
  margin: 0 auto;
  max-width: 800px;
  padding: 2.5rem;
  text-align: left;
  white-space: pre-wrap;
}

.ActivitiesTableEmptyState__heading {
  text-align: center;
}

.ActivitiesTableEmptyState__image {
  display: block;
  margin: 0 auto;
}

.ActivityDetail {
  font-weight: 500;
  color: var(--theme-character-secondary);
}

.ActivityDetail .Icon[data-icon="arrow-long-left"] {
    --icon-color: var(--theme-character-title);
  }

.ActivityDetail .ICMPActivity .LocalNetworkConfiguration {
      display: flex;
    }

.ActivityDetail .ICMPActivity .LocalNetworkConfiguration_packetGroup {
      display: flex;
      max-width: 100%;
    }

.ActivityDetail .ICMPActivity .LocalNetworkConfiguration__type,
    .ActivityDetail .ICMPActivity .LocalNetworkConfiguration__packets {
      white-space: nowrap;
    }

.ActivityDetail .ICMPActivity .LocalNetworkConfiguration__packets {
      color: var(--theme-character-title);
      font-style: italic;
      overflow: hidden;
      text-overflow: ellipsis;
    }

.ActivityDetail .ICMPActivity .LocalNetworkConfiguration__data {
      color: var(--font-color);
      font-style: normal;
    }

.ActivityDetail .ICMPActivity .LocalNetworkConfiguration__packets--zero .LocalNetworkConfiguration__data {
      color: var(--theme-character-title);
    }

.ActivityDetail .HTTPActivity__request,
  .ActivityDetail .HTTPActivity__response,
  .ActivityDetail .HTTPActivity__connection {
    display: flex;
    align-items: center;
    max-width: 100%;
  }

.ActivityDetail .HTTPActivity__connection .Attribute:first-of-type {
    margin-left: var(--spacing-2xs);
  }

.ActivityDetail .Attribute {
    display: flex;
    align-items: baseline;
    overflow: hidden;
  }

.ActivityDetail .Attribute--method {
      flex-shrink: 0;
    }

.ActivityDetail .Attribute--statusCode,
    .ActivityDetail .Attribute--statusMessage,
    .ActivityDetail .Attribute--uri {
      margin-left: 4px;
    }

.ActivityDetail .Attribute--ipProtocol {
      align-self: flex-start;
    }

.ActivityDetail .Attribute__label {
    font-weight: 500;
    color: var(--theme-character-secondary);
    flex-shrink: 0;
    white-space: nowrap;
    margin-right: 4px;
    flex-basis: auto;
  }

.ActivityDetail .Attribute__value {
    color: var(--theme-character-title);
    font-weight: normal;
    font-style: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
  }

.ActivityDetail .Attribute--tx .Attribute__value, .ActivityDetail .Attribute--rx .Attribute__value {
      display: flex;
      align-items: center;
    }

.ActivityDetail .ThreatIndicator--small {
    margin-left: 0.2rem;
  }

/*
  Avoid needing a special component and CSS class to set styling for the comma
  separator by using pseudo elements.
*/

.HTTPActivity__request .Attribute--host .Attribute__label::before, .HTTPActivity__request .Attribute--body .Attribute__value::before, .HTTPActivity__request .Attribute--header .Attribute__label::before, .HTTPActivity__response .Attribute--retryAfter .Attribute__label::before, .HTTPActivity__response .Attribute--body .Attribute__value::before, .HTTPActivity__response .Attribute--location .Attribute__label::before, .HTTPActivity__connection .Attribute:not(:first-of-type) .Attribute__label::before, .ICMPActivity .LocalNetworkConfiguration__packets:not(:first-child)::before, .Traffic .Attribute--bytes .Attribute__value::before {
    color: var(--theme-character-secondary);
    content: ", ";
    font-style: normal;
  }

.ICMPActivity .LocalNetworkConfiguration__packetGroup > :first-child::before {
    content: "\00a0";
  }

.Traffic .Attribute--bytes .Attribute__value::before {
  padding-right: var(--spacing-2xs);
}

/* Make the text at the beginning bold */

.HTTPActivity__request .Attribute--method .Attribute__value,
.HTTPActivity__response .Attribute--statusCode .Attribute__value,
.HTTPActivity__response .Attribute--statusMessage .Attribute__value,
.ICMPActivity .LocalNetworkConfiguration__type,
.ICMPActivity .ICMPOther__type,
.ICMPActivity .PathRedirect__type,
.ICMPActivity .Ping__type,
.ICMPActivity .TimeExceeded__type,
.IPActivity .Attribute--ipProtocol .Attribute__label,
.TCPActivity .Attribute--rx .Attribute__label,
.TCPActivity .Attribute--tx .Attribute__label,
.UDPActivity .Attribute--rx .Attribute__label,
.UDPActivity .Attribute--tx .Attribute__label {
  font-weight: 500;
}

.ICMPActivity .Ping {
  display: flex;
}

.ICMPActivity .Ping__prefix {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.ICMPActivity .Ping .Traffic {
  margin-left: var(--spacing-2xs);
}

.DNSActivity__label {
  font-weight: 500;
  color: var(--theme-character-secondary);
}

.DNSActivity__request {
  display: flex;
  align-items: center;
}

.DNSActivity__label,
.DNSActivity__questionType,
.DNSActivity__answerType {
  margin-right: var(--spacing-2xs);
}

.DNSActivity__label,
.DNSActivity__questionType {
  flex-shrink: 0;
}

.DNSActivity__answer,
.DNSActivity__error {
  display: flex;
  align-items: center;
  color: var(--theme-character-title);
  font-weight: normal;
}

.DNSActivity__answer .Icon, .DNSActivity__error .Icon {
    margin-right: var(--spacing-2xs);
    flex-shrink: 0;
    flex-basis: 1.6rem;
  }

.DNSActivity__error,
.DNSActivity__noRequest {
  font-weight: 500;
}

.DNSActivity__error .Activity__value, .DNSActivity__noRequest .Activity__value {
    font-weight: normal;
  }

.DNSActivity__questionName,
.DNSActivity__questionType,
.DNSActivity__answerResponse {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--theme-character-title);
  font-weight: normal;
}

.DNSActivity__moreResponses {
  margin-left: var(--spacing-2xs);
  flex-shrink: 0;
  font-weight: 500;
}

.DHCPActivity__line,
.DCERPCActivity__response,
.MSCLDAPActivity__request,
.MSCLDAPActivity__response {
  display: flex;
  align-items: center;
  max-width: 100%;
}

.DHCPActivity__line .Icon[data-icon="arrow-long-left"], .DCERPCActivity__response .Icon[data-icon="arrow-long-left"], .MSCLDAPActivity__request .Icon[data-icon="arrow-long-left"], .MSCLDAPActivity__response .Icon[data-icon="arrow-long-left"] {
    margin-right: var(--spacing-2xs);
    align-self: flex-start;
    flex-shrink: 0;
  }

.MSCLDAPActivity__request .Icon[data-icon="arrow-long-left"] {
    transform: rotate(180deg);
  }

.LDAPActivity_operationResult {
  display: flex;
  align-items: center;
}

.LDAPActivity_operationResult .Icon {
    margin: 0 var(--spacing-2xs);
  }

.LDAPActivity_operationResult .LDAPActivity__noResponse {
    font-weight: 500;
  }

.Activity::first-letter {
  text-transform: uppercase;
}

.Activity__value,
.DHCPActivity__value,
.ICMPOther__value,
.LDAPActivity__value,
.MODBUSActivity__value,
.TLSActivity__value,
.TeamViewerActivity__value {
  color: var(--theme-character-title);
  font-weight: normal;
  overflow-wrap: break-word;
}

.HTTPActivity .Attribute--host {
    /* Clip the Dropdown label instead for the host so the outer border doesn't clip */
    overflow: hidden;
  }

.HTTPActivity .Attribute--host .Attribute__value {
      max-width: none;
      overflow: hidden;
    }

.HTTPActivity .Attribute--host .Attribute__value .Dropdown__label {
        max-width: 200px;
      }

.HTTPActivity .Activity--value {
    overflow: visible;
  }

.SMTPActivity .Icon[data-icon="arrow-long-left"], .POP3Activity .Icon[data-icon="arrow-long-left"], .RDPActivity .Icon[data-icon="arrow-long-left"], .TDSActivity .Icon[data-icon="arrow-long-left"] {
    margin-right: var(--spacing-2xs);
    vertical-align: top;
    position: relative;
    top: 1px;
  }

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

.AttachActivitiesDescription__choiceAll {
  color: var(--theme-character-title);
  font-weight: 700;
  line-height: 1;
}

.AttachActivitiesDescription__or {
  color: var(--theme-character-primary65);
  padding: 0 8px;
}

.AttachActivitiesDescription__individualText {
  color: var(--theme-character-primary65);
}

.AttachActivitiesDescription__choiceAll,
.AttachActivitiesDescription__individualText {
  cursor: help;
  text-decoration-line: underline;
  text-decoration-style: dashed;
  text-decoration-thickness: 1px;
  text-underline-offset: 1px;
}

.AttachActivitiesDescription__individualStats {
  color: var(--theme-character-primary65);
}

.AttachActivitiesDescription__individualShiftClickHelp {
  color: var(--theme-character-primary65);
}

.AttachActivitiesDescription--individuals .AttachActivitiesDescription__individualStats {
  color: var(--theme-character-title);
  font-weight: 700;
}

.AttachActivitiesDescription--individuals .AttachActivitiesDescription__individualText {
  color: var(--theme-character-primary);
}

.AttachActivitiesDescription--individuals .AttachActivitiesDescription__or {
  color: var(--theme-character-primary);
}

.AttachActivitiesDescription--individuals .AttachActivitiesDescription__choiceAll {
  cursor: pointer;
  text-underline-style: none;
}

.AttachActivitiesDescription--individuals .AttachActivitiesDescription__choiceAll.panda-button {
  padding: 0;
}

.AttachActivitiesDescription--individuals .AttachActivitiesDescription__choiceAll .panda-button-label {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 1px;
  text-underline-offset: 1px;
}

.AttachActivitiesDescription--individuals.AttachActivitiesDescription--hasInvalidCount .AttachActivitiesDescription__individualStats,
  .AttachActivitiesDescription--individuals.AttachActivitiesDescription--hasInvalidCount .AttachActivitiesDescription__individualText {
    color: var(--theme-character-error-default);
  }

.AttachActivitiesDescription--bolded {
    font-weight: bold;
  }

.AttachActivitiesDescription--dimmed {
    color: var(--theme-character-secondary);
  }

.AttachActivitiesDescription--error {
    color: var(--theme-character-error-default);
  }

.AttachActivitiesDescription--underlined {
    cursor: help;
    text-decoration-line: underline;
    text-decoration-style: dashed;
    text-decoration-thickness: 1px;
    text-underline-offset: 1px;
  }

.panda-theme-dark,
.panda-theme-light,
.panda-theme-light-cv {
  --packet-label-upload: #0e6ace;
  --packet-label-download: #569ce9;
  --packet-label-remote-control: #15846c;
  --packet-label-unclassified: #50e3c2;
  --packet-label-unclassified-tcp: #d60334;
  --packet-label-unclassified-udp: #ff5078;
  --packet-label-keystroke: #ffc2e2;
  --packet-label-mouse: #6c60ec;
  --packet-label-mouse-keystroke: #9c8cf2;
  --packet-label-connection-request: #cdcce6;
  --packet-label-unencrypted: #6860ec;
  --packet-label-auth-failure: #9c8cf2;
  --packet-label-auth-success: var(--colors-gray-400);
  --packet-label-command: #352f91;
  --packet-selected: var(--white-02);
}

.ActivityDetails__capturedData {
    height: 100%;
  }

.ActivityDetails__sidebar {
    padding: 12px 0 16px;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    position: relative;
  }

.ActivityDetails__extractedData {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
  }

.ActivityDetails__extractedData .SearchInput {
      padding: var(--spacing-2xs) var(--spacing-2xs) 0 0
    }

.ActivityDetails__extractedDataContent {
    overflow: auto;
    margin-top: var(--spacing-md);
  }

.ActivityDetails .ActivityOverview {
    flex-grow: 1;
    flex-basis: 0;
    overflow: auto;
    height: 100%;
  }

.ActivityDetails__navigation {
    background: var(--panda-page-content-background);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: var(--spacing-sm) var(--spacing-md) var(--spacing-md);
    overflow-x: hidden;
  }

.ActivityDetails .ActivityAnalysis {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    height: 100%;
  }

.ActivityDetails .ActivityAnalysis .TableBuilderBody__row {
      cursor: pointer;
    }

.ActivityDetails .ActivityAnalysis__header {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      margin-bottom: var(--spacing-sm);
    }

.ActivityDetails .ActivityAnalysis__header .ActivityAnalysis__headerText {
        font-size: var(--font-size-lg);
        font-weight: bold;
      }

.ActivityDetails .ActivityAnalysis__header .ActivityAnalysis__headerButtons button {
        margin-left: var(--spacing-xs);
      }

.ActivityDetails .ActivityAnalysis .ActivityAnalysis__warning {
      margin-bottom: var(--spacing-xs);
    }

.ActivityDetails .ActivityAnalysis .ActivityAnalysis__chart {
      background: var(--header-background-color);
      border-radius: var(--borderRadius-xs);
      margin-bottom: var(--spacing-xs);
    }

.ActivityDetails .ActivityAnalysis .ActivityAnalysis__chart .AnalysisBar {
        cursor: pointer;
      }

.ActivityDetails .ActivityAnalysis .ActivityAnalysis__chart .AnalysisBar:hover,
        .ActivityDetails .ActivityAnalysis .ActivityAnalysis__chart .AnalysisBar--selected {
          stroke-width: 2;
          stroke: var(--white-02);
        }

.ActivityDetails .ActivityAnalysis .ActivityAnalysis__chart .BarChart__chart {
      max-height: 300px;
    }

.ActivityDetails .ActivityAnalysis .ActivityAnalysis__table {
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      height: 100%;
    }

.ActivityDetails .ActivityAnalysis .ActivityAnalysisNoData {
      display: flex;
      justify-content: center;
      padding-top: 2rem;
      font-style: italic;
    }

.ActivitySummary .ActivitySummary__title {
    font-weight: bold;
    margin-top: var(--spacing-sm);
    line-height: 32px;
  }

.ActivitySummary .ExtractedDataSearch {
    margin-top: var(--spacing-sm);
    padding-right: var(--spacing-2xs);
  }

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

.ActivityGroupPanel__title {
    display: flex;
    align-items: center;
    padding: var(--spacing-xs);
    font-weight: bold;
    color: var(--theme-character-title);
    background-color: var(--theme-bg-table-header);
    height: 38px;
  }

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

.ActivityGroupPanel__item {
    display: flex;
    align-items: center;
    background-color: var(--theme-bg-secondary);
  }

.ActivityGroupPanel__item:not(:last-child) {
      border-bottom: 1px solid var(--theme-bg-table-header);
    }

.ActivityGroupPanel__itemName {
    margin-right: var(--spacing-xs);
    flex: 0 0 200px;
    font-size: 14px;
    color: var(--theme-character-title);
    padding: var(--spacing-xs);
  }

.ActivityGroupPanel__itemValue {
    flex: 1 1 200px;
    overflow: hidden;
    color: var(--theme-character-primary65);
    padding: var(--spacing-xs);
  }

.ActivityDetailsAttributes {
  margin-left: 10px;
}

.ActivityDetailsAttributes .ActivityDetailsAttribute--dimmed {
    opacity: 0.4;
  }

.ActivityDetailsAttributes .Attribute .Dropdown {
      max-width: 480px;
    }

.ActivitySummaryAttributes {
  margin-top: 10px;
}

/* Packet Data */

.PacketDataPanel .Message {
  width: 100%;
  border-bottom: 0;
}

.PacketDataPanel .Message .Message__icon {
    left: 2rem;
  }

.PacketDataPanel .Message .Message__title {
    margin-bottom: 0;
  }

.PacketDataPanel__src .Message {
  background-color: var(--gray-03);
  border-top: 1px solid var(--gray-05);
}

.PacketDataPanel__dst .Message {
  background-color: var(--gray-04);
  border-top: 1px solid var(--gray-06);
}

.PacketDataPanel__dst .Message .Icon {
    --icon-color: var(--gray-06);
  }

.PacketDataPanel__dst .Message .Message__title {
    color: var(--gray-06);
  }

.ActivityDetails .PacketDataPanel__title {
  display: flex;
  justify-content: space-between;
}

.ActivityDetails .PacketDataPanel .panda-button-group {
  margin-left: auto;
}

.ActivityDetails .PacketDataPanel__footer {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.ActivityDetails .PacketDataPanel .Table__row:not(:last-child) {
    margin-bottom: var(--spacing-xs);
  }

.ActivityDetails .PacketDataPanel .Table__row:hover {
    background-color: unset;
  }

.PacketDataPanel__source {
  --panda-card-header-background-color: var(--theme-bg-tertiary);
  --panda-card-background-color: var(--theme-bg-moderate);
  --panda-card-footer-background-color: var(--theme-bg-moderate);
}

.PacketDataPanel__sourceTag {
  --panda-tag-border-color: var(--theme-bg-brand-default);
  --panda-tag-background-color: var(--theme-bg-brand-minimal);
}

.PacketDataPanel__destinationTag {
  --panda-tag-border-color: var(--theme-bg-brand-minimal);
  --panda-tag-background-color: var(--theme-bg-brand-default);
}

.ActivityDetails .PacketDataPanel__srcData,
.ActivityDetails .PacketDataPanel__dstData {
  font-family: var(--font-family-sans-serif);
  font-size: var(--font-size-xs);
  color: var(--theme-character-primary);
}

.PacketDataPanel.Panel {
  padding: unset;
  height: 100%;
}

.PacketDataPanel2 .Panel__title {
  margin-bottom: 0;
}

.ActivityDetails .PacketDataPanel .Table__empty {
  font-style: italic;
}

.ActivityDetails .PacketDataPanel .Table__row {
  border-bottom: none;
}

.ActivityDetails .PacketDataPanel .Table__td {
  padding: 0;
  margin: 0;
}

.ActivityDetails .PacketDataPanel .Table__td > * {
  padding: 0;
}

.ActivityDetails .PacketDataPanel--HEX .PacketDataPanel__dstData,
  .ActivityDetails .PacketDataPanel--HEX .PacketDataPanel__srcData {
    overflow-x: auto;
    white-space: pre;
    width: 100%;
  }

.ActivityDetails .PacketDataPanel--ASCII .PacketDataPanel__dstData,
  .ActivityDetails .PacketDataPanel--ASCII .PacketDataPanel__srcData,
  .ActivityDetails .PacketDataPanel--UTF8 .PacketDataPanel__dstData,
  .ActivityDetails .PacketDataPanel--UTF8 .PacketDataPanel__srcData {
    white-space: pre-wrap;
    word-break: break-all;
    overflow: hidden;
    width: 100%;
  }

.ActivityDetails .PacketDataPanel--hidden {
  display: none;
}

.Hexdump__row {
  display: flex;
  white-space: pre;
}

.ActivityDetails__weakSignalsIndicator {
  align-self: center;
  margin-left: var(--spacing-2xs);
  margin-right: var(--spacing-2xs);

  --icon-color: var(--light-purple-04);
  --icon-size: 1.4rem;
}

.ActivityDetails__weakSignalsIndicator .Icon {
    position: relative;
    top: 2px;
  }

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

.ActivityLink {
  font-weight: bold;
}

.ActivityDetails .ActivityFieldRef .ThreatIndicator--small, .ActivitySidebar .ActivityFieldRef .ThreatIndicator--small {
    max-height: 1.2rem;
    max-width: 1.2rem;
  }

.MODBUSActivity__exception,
  .MODBUSActivity__responseData {
    display: flex;
  }

.MODBUSActivity__exception .Icon, .MODBUSActivity__responseData .Icon {
      margin-right: var(--spacing-2xs);
    }

.PacketSummaryContainer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: var(--spacing-sm) var(--spacing-md);
}

.PacketSummaryContainer .PacketSummary {
    display: flex;
    align-items: center;
  }

.PacketSummaryContainer .PacketSummary__label {
      margin-right: var(--spacing-sm);
    }

.PacketSummaryContainer .PacketSummary__circle {
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 9999px;
      color: var(--purple-01);
      font-weight: bold;
      border: 1px solid var(--purple-01);
    }

.PacketSummaryContainer .PacketSummary__circle--none {
        border: none;
        background-color: var(--gray-05);
        color: var(--white-02);
      }

.PacketSummaryContainer .PacketSummary__value {
      color: var(--white);
    }

.ActivityAnalysisTable__durationColumn.TableBuilderPanelFilters {
  width: 580px;
}

.ActivityAnalysisTable__typeColumn .PacketLabel ::before {
      content: "●";
      color: var(--packet-label-color);
      margin-right: var(--spacing-2xs);
    }

.PacketLabelUpload {
  --packet-label-color: var(--packet-label-upload);
}

.PacketLabelDownload {
  --packet-label-color: var(--packet-label-download);
}

.PacketLabelRemoteControl {
  --packet-label-color: var(--packet-label-remote-control);
}

.PacketLabelUnclassified {
  --packet-label-color: var(--packet-label-unclassified);
}

.PacketLabelUnclassifiedTCP {
  --packet-label-color: var(--packet-label-unclassified-tcp);
}

.PacketLabelUnclassifiedUDP {
  --packet-label-color: var(--packet-label-unclassified-udp);
}

.PacketLabelKeystroke {
  --packet-label-color: var(--packet-label-keystroke);
}

.PacketLabelMouse {
  --packet-label-color: var(--packet-label-mouse);
}

.PacketLabelMouseKeystroke {
  --packet-label-color: var(--packet-label-mouse-keystroke);
}

.PacketLabelConnectionRequest {
  --packet-label-color: var(--packet-label-connection-request);
}

.PacketLabelUnencrypted {
  --packet-label-color: var(--packet-label-unencrypted);
}

.PacketLabelAuthFailure {
  --packet-label-color: var(--packet-label-auth-failure);
}

.PacketLabelAuthSuccess {
  --packet-label-color: var(--packet-label-auth-success);
}

.PacketLabelCommand {
  --packet-label-color: var(--packet-label-command);
}

.AnalysisBar__tooltip {
  white-space: pre-line;
}

.ActivityPacketStoreWarning {
  margin-bottom: var(--spacing-xs);
}

.panda-theme-dark,
.panda-theme-light,
.panda-theme-light-cv {
  --advanced-query-editor-editor-compact-height: 132px;
  --advanced-query-editor-actions-bar-height: 58px;
  --advanced-query-editor-editor-padding: 7px;
  --advanced-query-editor-editor-margin-top: var(--spacing-2xs);
  --advanced-query-editor-portal-z-index: var(--z-index-overlay);
}

.AdvancedQueryEditor {
  height: 32px;
  width: 240px;
  flex-shrink: 0;
  margin-left: auto;
}

.AdvancedQueryEditor--expanded {
    flex-grow: 1;
  }

.AdvancedQueryEditor--disabled,
  .AdvancedQueryEditor--disabled .CodeMirror-lines {
    cursor: not-allowed;
  }

.AdvancedQueryEditor__addonBefore {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 32px;
  width: 32px;
  border: 1px solid var(--theme-border-primary);
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;

  --panda-icon-size: 16px;
}

.AdvancedQueryEditor__addonAfter {
  display: flex;
  align-items: center;
}

.AdvancedQueryEditor__input {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  cursor: text;
}

.AdvancedQueryEditor__preview {
  padding: 0 3px;
  min-width: 0;
}

.AdvancedQueryEditorPortal .AdvancedQueryEditor__input {
  position: relative;
  flex-shrink: 0;
  align-items: normal;
  margin-top: var(--advanced-query-editor-editor-margin-top);
  border: 1px solid var(--theme-border-primary);
  border-bottom-width: 0;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  padding: var(--advanced-query-editor-editor-padding);
  height: var(--advanced-query-editor-editor-compact-height);
}

.AdvancedQueryEditorPortal .CodeMirror-lines {
  padding: 0;
}

.AdvancedQueryEditorPortal--fullScreen .AdvancedQueryEditor__input {
  height: calc(
    100% - var(--advanced-query-editor-actions-bar-height) -
      var(--advanced-query-editor-editor-margin-top)
  );
}

.AdvancedQueryEditor .QueryEditor {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.AdvancedQueryEditorPortal .QueryEditor {
  position: relative;
  height: auto;
  width: 100%;
}

.AdvancedQueryEditorPortal .QueryEditor__editor {
    position: relative;
    z-index: 0;
  }

.AdvancedQueryEditor .CodeMirror {
  height: auto;
}

.AdvancedQueryEditor .CodeMirror-line,
.AdvancedQueryEditor .CodeMirror-placeholder {
  padding-left: var(--spacing-xs) !important;
}

.AdvancedQueryEditor .CodeMirror-selected {
  background: transparent;
}

.AdvancedQueryEditor__content {
  display: flex;
  flex-direction: column;
  height: calc(
    var(--advanced-query-editor-editor-compact-height) +
      var(--advanced-query-editor-actions-bar-height)
  );
  background: var(--theme-bg-canvas);
  position: relative;
  z-index: 1;
  pointer-events: all;
  margin-right: var(--application-header-padding-right);
  box-shadow: var(--dropshadow-0-12-0-8-0-5);
}

.AdvancedQueryEditorPortal--fullScreen .AdvancedQueryEditor__content {
  height: 100%;
}

.AdvancedQueryEditor__dropdown {
  height: 100%;
}

.AdvancedQueryEditor__mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background-color: var(--mask-color);
  pointer-events: all;
}

.AdvancedQueryEditorPortal {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--panda-left-rail-open-width);
  right: 0;
  z-index: var(--advanced-query-editor-portal-z-index);
  pointer-events: none;
  transition: left var(--panda-left-rail-transition-time)
    var(--panda-left-rail-transition-function);
}

.AdvancedQueryEditorPortal--closedNavbar {
    left: var(--panda-left-rail-closed-width);
  }

.AdvancedQueryEditorAutocomplete {
  z-index: calc(var(--advanced-query-editor-portal-z-index) + 1);
}

.AdvancedQueryEditor__actionsBar {
  flex-basis: var(--advanced-query-editor-actions-bar-height);
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: var(--spacing-xs);
  gap: var(--spacing-xs);
  padding: var(--spacing-sm) var(--spacing-md);
  background: var(--theme-bg-secondary);
  border: 1px solid var(--theme-border-primary);
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}

.AdvancedQueryEditor__actionsBar .QueryTimeRangeInputWithPresets {
  margin-left: auto;
}

.DeviceSidebar .DeviceSummary {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow: visible;
    padding: 0;
    border: 0;
  }

.DeviceSidebar .NotableCharacteristicsTable {
    flex-grow: 1;
  }

.DevicesTableEmptyState__noResults {
  margin: 0 auto;
  max-width: 800px;
  padding: 2.5rem;
  text-align: left;
  white-space: pre-wrap;
}

.DevicesTableEmptyState__heading {
  text-align: center;
}

.DevicesTableEmptyState__image {
  display: block;
  margin: 0 auto;
}

.DevicesTable__typeColumn,
  .DevicesTable__osColumn,
  .DevicesTable__mpIdsColumn {
    justify-content: flex-start;
    align-items: flex-start;
  }

.DevicesTable__pending {
    width: 100%;
  }

.DeviceResult {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}

.DeviceResult__annotations {
    --button-icon-size: var(--indicator-size);

    padding: 0;
    margin-right: var(--spacing-xs);
  }

.DeviceResult__device {
    min-width: 0;
  }

.DeviceResult__ips {
    display: flex;
    align-items: center;

    --label-link-color: var(--theme-character-primary65);
    --label-link-font-weight: normal;
  }

.DeviceResult__ips .WithIndicator {
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

.DeviceResult__ips .WithIndicator:not(:last-child) {
      margin-right: var(--spacing-2xs);
    }

.DeviceResult__ips .WithIndicator:not(:last-child)::after {
        content: ",";
      }

:root {
  --container-side-padding: 10px;
  --table-cell-side-padding: 1.5rem;
  --filter-modal-container-side-padding: 10px;
}

.FilterModal {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  grid-gap: 16px;
  gap: 16px;
  overflow: hidden;
}

.FilterModal > .Spinner {
    align-self: center;
    margin: auto;
  }

.FilterModal__title {
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
  }

.FilterModal__search {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
  }

.FilterModal__search .RangeInput,
    .FilterModal__search .FilterModal__querySearch {
      flex-grow: 1;
      margin-right: 16px;
    }

.FilterModal__tableSummary {
    line-height: 22px;
    margin-left: auto;
  }

.FilterModal__preview {
    display: flex;
    flex-direction: column;
    border-radius: 2px;
    background: var(--colors-gray-900);
    grid-gap: 4px;
    gap: 4px;
    padding: 4px 16px 16px 16px;
  }

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

.FilterModal__previewBarLabel {
    color: var(--theme-character-title);
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
  }

.FilterModal__actions {
    display: flex;
    justify-content: flex-end;
    padding: 7px 0;
    grid-gap: 8px;
    gap: 8px;
  }

.FilterModal__actions .Button {
      padding-right: 2.2rem;
      border-radius: 2px;
      border: 1px solid var(--theme-character-disabled);
    }

.FilterModal__actions .Button .panda-icon {
        margin-right: 8px;
      }

.FilterModal__actions .Button--default {
      background: var(--colors-gray-700);
      color: var(--theme-character-title);
    }

.FilterModal__actions .Button--default:hover {
        background: var(--colors-gray-900);
        color: var(--theme-character-primary);
      }

.FilterModal__actions .Button--primary:not(.Button--disabled) {
      color: var(--theme-character-primary);
      background: var(--theme-bg-brand-default);
      border: 1px solid transparent;
    }

.FilterModal__actions .Button--primary:not(.Button--disabled):hover {
        background: var(--theme-bg-brand-hover);
        border-color: var(--theme-bg-brand-hover);
      }

.FilterModal__actions .Button--primary.Button--disabled {
      background: var(--theme-bg-brand-disabled);
      color: var(--theme-character-disabled);
      border: 1px solid var(--theme-character-disabled);
    }

.FilterModal__actions .Icon[data-icon="navigation-carrot"] {
      transform: rotate(-90deg);
    }

.FilterModal__actions .Icon {
      margin-right: var(--spacing-xs) !important;
    }

.FilterModal--noTable .Modal__content {
    flex-grow: 0;
    min-height: 0;
    width: 600px;
  }

.FilterModal__queryOperator {
    margin-left: 16px;
  }

.FilterModal__queryOperatorLabelText {
    color: var(--theme-character-title);
    font-size: 14px;
    line-height: 22px;
    font-weight: bold;
  }

.FilterModal__selection {
    display: flex;
    align-items: baseline;
  }

.FilterModal__selectionContainer {
    padding: var(--container-side-padding);
    background: #ebebeb;
  }

.FilterModal__selectionCount {
    flex: 1;
    text-align: right;
  }

.FilterModal__queryString {
    font-size: 90%;
    position: relative;
  }

.FilterModal__domainDescription {
    display: flex;
    align-items: center;
    margin: 4px 0;
    flex-shrink: 0;
    justify-content: space-between;
  }

.FilterModal__domainDescription .RangeInput {
      margin-left: 0;
    }

.FilterModal__domainDescription .RangeInput .Input {
        min-width: 8rem;
      }

.FilterModal__emptySelection {
    user-select: none;
    color: var(--theme-character-disabled);
    font-size: 14px;
    line-height: 22px;
    height: 2rem;
  }

.FilterModal__queryStringText {
    min-height: 66px;
    max-height: 66px;
    display: flex;
    flex-wrap: wrap;
  }

.FilterModal__queryStringText--expanded {
    max-height: 30rem;
  }

.FilterModal__queryOperatorsControls {
    display: inline-block;
    padding: 0 1rem;
  }

.FilterModal__queryOperatorsControls label {
      display: inline-block;
    }

.FilterModal__queryOperatorsControls label:not(:last-child) {
        margin-right: 1rem;
      }

.FilterModal__queryStringIntro {
    color: var(--light-text-color);
  }

.FilterModal__queryStringResult {
    display: flex;
    overflow: auto;
    position: relative;
    background-color: var(--colors-gray-900);
    border: 1px solid var(--colors-gray-700);
    border-radius: 2px;
    padding: 8px;
  }

.FilterModal__queryStringResult .QueryPill__pill {
      background: var(--colors-gray-600);
      margin-bottom: 4px;
    }

.FilterModal__queryStringShowMore {
    margin: 0;
  }

.FilterModal__queryStringShowMore .Button {
      color: var(--purple-01);
      background: none;
      border: none;
      min-width: 0;
    }

.FilterModal__queryStringExpandToggleIcon {
    height: 1.5rem;
    width: 1.5rem;
    transform: translateY(2px);
    margin-left: 5px;

    --icon-color: var(--purple-01);
  }

.FilterModal__queryStringNotWrap,
  .FilterModal__queryTokenOperator {
    animation: highlightOnEnter 0.25s ease-out;
  }

.FilterModal__user-agent-string-start {
    color: var(--light-text-color);
  }

.FilterModal__queryToken {
    cursor: pointer;
    margin-top: 1rem;
  }

.FilterModal__queryTokenOperator {
    align-self: center;
    margin: 0 0.3em;
    border-radius: 2px;
  }

.FilterModal__entityCount,
  .FilterModal__entityCountPercent {
    display: inline-block;
  }

.FilterModal__entityCountPercent {
    margin-left: 0.5rem;
    width: 6.5rem;
  }

.FilterModal__selectionMetaData {
    padding: 1.5rem 1.5rem 0;
    margin: 0;
    background: var(--gray-07);
  }

.FilterModal__titleTooltip {
    text-align: left;
  }

.FilterModal__titleTooltipSuggestion {
      margin-top: 1em;
    }

.FilterModal__mainContent {
    background: var(--colors-gray-900);
    border-radius: 2px;
    padding: 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

.FilterModal__tableContainer {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: var(--spacing-sm);
    min-height: 100px;
  }

.FilterModal__tableContainer .DataTable__headerLabel {
      justify-content: space-between;
    }

.FilterModal__tableContainer .FiltersTable__table {
        flex-grow: 1;
        flex-shrink: 0;
      }

.FilterModal__tableContainer .FiltersTable__valueContainer {
        position: relative;
      }

.FilterModal__tableContainer .FiltersTable__value {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        position: relative;
        z-index: 1;
      }

.FilterModal__tableContainer .FiltersTable__filterSelected:not(.DataTable__row--header):not(:hover) {
        background: var(--theme-bg-table-select);
      }

.FilterModal__tableContainer .FiltersTable__checkboxColumn {
        align-items: center;
        text-align: center;
        padding: 0;
      }

.FilterModal__tableContainer .FiltersTable__value,
      .FilterModal__tableContainer .FiltersTable__countColumn,
      .FilterModal__tableContainer .FiltersTable__countPercentageColumn {
        color: var(--theme-character-title);
        font-size: 14px;
        line-height: 22px;
      }

.FilterModal__noData {
    margin-top: 3.8rem;
    margin-bottom: var(--spacing-sm);
    flex-grow: 1;
    display: flex;
    align-items: center;
    background-color: var(--colors-gray-700);
    color: var(--theme-character-primary);
    font-size: var(--font-size-sm);
  }

.FilterModal__noData > * {
      margin: auto;
    }

.FilterModal__noDataDelivered {
    text-align: left;
    font-size: var(--font-size-sm);
  }

.FilterModal__noDataDelivered p {
      width: 60%;
      margin-left: auto;
      margin-right: auto;
    }

.FilterModal .ExportDropdown {
    margin-left: 16px;
  }

@keyframes highlightOnEnter {
  0% {
    opacity: 0;
  }

  33% {
    color: var(--white-02);
    background: var(--purple-01);
    transform: scale(1.25, 1.25);
  }
}

.JumpButton {
  align-self: flex-end;
}

:root {
  --query-pill-icon-size: 6px;
}

.QueryPill__openingBracket {
    padding-right: var(--spacing-2xs);
  }

.QueryPill__closingBracket {
    padding-left: var(--spacing-2xs);
  }

.QueryPill__pill {
    position: relative;
    display: inline-block;
    background: var(--light-purple-03);
    padding: 0.1rem calc(var(--spacing-md) + var(--query-pill-icon-size)) 0.1rem
      var(--spacing-xs);
    border-radius: 12px;
    height: 2rem;
  }

.QueryPill__text {
    height: 2rem;
  }

.QueryPill__removeBtnIcon {
    --icon-color: var(--white-02);

    height: var(--query-pill-icon-size);
    width: var(--query-pill-icon-size);
  }

.QueryPill__removeBtn {
    position: absolute;
    top: 50%;
    right: calc(var(--query-pill-icon-size) / 2);
    transform: translateY(-50%);
    background: var(--purple-01);
    line-height: 0;
    border-radius: 50%;
    padding: 4px;
    cursor: pointer;
  }

.QueryPill__removeBtn:hover {
      border-color: var(--light-purple-04);
    }

.QueryPill__removeBtn:hover .QueryPill__removeBtnIcon {
        --icon-color: var(--light-purple-04);
      }

@keyframes right-to-left {
  0% {
    left: 100%;
  }

  100% {
    left: -100%;
  }
}

.ProgressBar {
  position: relative;
  height: 0.4rem;
  background: var(--spinner-foreground);
  overflow: hidden;
}

.ProgressBar__progress {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: var(--spinner-background);
    transition: width 0.2s linear;
  }

.ProgressBar--initial .ProgressBar__progress {
    display: none;
  }

.ProgressBar--initial::before,
    .ProgressBar--initial::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      width: 100%;
      animation: right-to-left 4s infinite linear;
      background: linear-gradient(
        to right,
        rgba(108, 96, 236, 0.2),
        var(--purple-01),
        rgba(108, 96, 236, 0.2)
      );
    }

.ProgressBar--initial::after {
      animation-delay: 2s;
    }

.ProgressCircle {
  width: 6.4rem;
  height: 6.4rem;
}

.ProgressCircle__circle {
    stroke: var(--spinner-background);
    stroke-width: 2;
    fill: none;
  }

.ProgressCircle__progress {
    stroke: var(--spinner-foreground);
    stroke-width: 2;
    fill: none;
    transform-origin: center;
    transform: rotate(-90deg);
  }

.UnknownRef span {
  opacity: 0.5;
}

.panda-theme-dark,
.panda-theme-light,
.panda-theme-light-cv {
  --timeline-histogram-height: 80px;
  --timeline-button-width: 36px;
  --timeline-button-icon-color: var(--theme-character-title);
  --timeline-button-icon-disabled-color: var(--theme-character-disabled);
  --timeline-button-icon-size: 1.6rem;
  --timeline-spinner-mask-color: var(--theme-bg-secondary);
  --timeline-spinner-foreground-color: var(--theme-character-primary);
  --timeline-spinner-background-color: var(--theme-character-primary65);
  --timeline-bar-color: var(--theme-bg-brand-default);
  --timeline-axis-color: var(--theme-character-primary65);
  --timeline-selection-mask-color: var(--theme-bg-dataviz-bg-select);
  --timeline-selection-mask-opacity: 0.75;
}

.TimelinePanel {
  display: flex;
  flex-grow: 0;
  flex-shrink: 1;
  width: 100%;
  padding: var(--spacing-md) var(--spacing-xs);
  background: var(--theme-bg-secondary);
  border-radius: var(--borderRadius-xs);
  align-items: center;
}

.TimelinePanel .Histogram__binBackground {
    fill: transparent;
  }

.TimelinePanel .Timeline {
    position: relative;
    display: flex;
  }

.TimelinePanel .Timeline .Histogram__loader {
      position: absolute;
      bottom: 2.3rem;
      left: 5.1rem;
      right: 1.8rem;
      background-color: var(--gray-06);
      height: 0.5rem;
    }

.TimelinePanel .TimelinePanel__navPast,
  .TimelinePanel .TimelinePanel__navFuture {
    display: flex;
    flex-grow: 0;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    width: var(--timeline-button-width);
    height: 100%;
    flex-basis: var(--timeline-button-width);
    background-color: transparent;
  }

.TimelinePanel .TimelinePanel__navPast .Icon, .TimelinePanel .TimelinePanel__navFuture .Icon {
      --button-icon-size: var(--timeline-button-icon-size);
      --icon-color: var(--timeline-button-icon-color);
    }

.TimelinePanel .TimelinePanel__navPast:hover, .TimelinePanel .TimelinePanel__navFuture:hover {
      box-shadow: none;
    }

.TimelinePanel .TimelinePanel__navPast[disabled],
  .TimelinePanel .TimelinePanel__navFuture[disabled],
  .TimelinePanel .TimelinePanel__navPast.Button--disabled,
  .TimelinePanel .TimelinePanel__navFuture.Button--disabled {
    cursor: default;
  }

.TimelinePanel .TimelinePanel__navPast[disabled] .Icon, .TimelinePanel .TimelinePanel__navFuture[disabled] .Icon, .TimelinePanel .TimelinePanel__navPast.Button--disabled .Icon, .TimelinePanel .TimelinePanel__navFuture.Button--disabled .Icon {
      --icon-color: var(--timeline-button-icon-disabled-color);
    }

.TimelinePanel .TimelinePanel__vizWrapper {
    display: flex;
    flex-grow: 1;
    flex-shrink: 1;
    flex-direction: row;
    justify-content: center;
    height: 100%;
    width: 800px;
  }

.TimelinePanel .SpinnerMask {
    --mask-color: var(--timeline-spinner-mask-color);
  }

.TimelinePanel .SpinnerMask .Spinner {
      --spinner-background: var(--timeline-spinner-background-color);
      --spinner-foreground: var(--timeline-spinner-foreground-color);
    }

.TimelinePanel .Histogram__bin,
  .TimelinePanel .Histogram__binSubSelection {
    fill: var(--timeline-bar-color);
  }

.TimelinePanel .Histogram__binSelectionBorder {
    fill: var(--timeline-selection-mask-color);
    fill-opacity: var(--timeline-selection-mask-opacity);
    pointer-events: none;
  }

.TimelinePanel .Histogram__binSelectionResize {
    color: transparent;
    fill: none;
    pointer-events: all;
    cursor: col-resize;
  }

.TimelinePanel .Histogram {
    height: var(--timeline-histogram-height);
  }

.TimelinePanel .Histogram .axis .domain {
        stroke: var(--timeline-axis-color);
      }

.TimelinePanel .Histogram .axis .tick text {
        fill: var(--timeline-axis-color);
      }

.TimelinePanel .Histogram .axis .tick line {
        display: none;
      }

.TimelinePanel .Histogram .axis path {
        stroke-width: 4;
        shape-rendering: crispEdges;
      }

.TimelinePanel .Histogram .axis.y path {
      display: none;
    }

.TimelinePanel .Histogram .x-range-indicator {
      fill: transparent;
      stroke: var(--white-01);
      stroke-width: 4;
      shape-rendering: crispEdges;
    }

.TimelineToolbar {
  display: flex;
  align-items: center;
}

.Workbench {
  position: relative;
}

.Workbench .LastComputed {
    font-size: var(--font-size-2xs);
    font-style: italic;
    font-weight: 500;
  }

.Workbench .LastComputed--notComputed {
    font-weight: normal;
  }

.Workbench .LastComputed__time {
    font-weight: 500;
    margin-left: var(--spacing-2xs);
  }

.Workbench .panda-page-header-subtitle .panda-tag {
    margin-left: var(--spacing-md);
  }

.Workbench__results {
  flex-grow: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--gray-05);
  width: 100%;
}

.Workbench__results .DataTable__row--header {
    border: 1px solid var(--gray-04);
    border-bottom-width: 0;
  }

.Workbench__results .JumpButton {
    position: absolute;
    right: 20px;
    z-index: 1000;
    bottom: 10px;
  }

.Device__value--null {
  font-family: var(--font-family-sans-serif);
  color: var(--light-text-color);
}

.Attribute__value--empty {
  flex-basis: 20px;
  width: 20px;
  flex-shrink: 0;
}

.Workbench__activitySelectionBorder {
  position: absolute;
  background: var(--theme-bg-brand-default);
  pointer-events: none;
  z-index: 1;
}

/* This uses multiple divs to simulate the border because using
   * a single element over the table with pointer events none makes
   * scrolling performance tank to unusable levels.
   */

.Workbench__activitySelectionBorder:nth-of-type(1) {
    height: 5px;
    left: -4px;
    right: -4px;
    top: 0;
  }

.Workbench__activitySelectionBorder:nth-of-type(2) {
    height: 5px;
    left: -4px;
    right: -4px;
    bottom: -4px;
  }

.Workbench__activitySelectionBorder:nth-of-type(3) {
    width: 5px;
    left: -4px;
    top: 0;
    bottom: -4px;
  }

.Workbench__activitySelectionBorder:nth-of-type(4) {
    width: 5px;
    right: -4px;
    top: 0;
    bottom: -4px;
  }

.WorkbenchTable {
  display: flex;
  flex-direction: column;
  height: 100%;
  grid-gap: var(--spacing-xs);
  gap: var(--spacing-xs);
}

.WorkbenchTable .TableBuilderBody__row:not(.TableBuilderBody__row--selected) {
    cursor: pointer;
  }

.WorkbenchTable__pending {
    width: 100%;
  }

:root {
  --filter-hover-color: var(--gray-03);
}

.panda-theme-dark,
.panda-theme-light,
.panda-theme-light-cv {
  --feature-summaries-facet-group-text-color: var(--theme-character-primary);
  --feature-summaries-facet-group-icon-color: var(--theme-bg-brand-default);
  --feature-summaries-facet-group-child-text-color: var(--theme-character-title);
  --feature-summaries-facet-group-child-background: var(--theme-bg-secondary);
  --feature-summaries-facet-group-child-background-hover: var(--theme-border-primary);
  --feature-summaries-facet-group-child-border: var(--theme-border-primary);
}

.WorkbenchFilters {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 0 0 16px;
}

.WorkbenchFilters .Message {
    margin-top: 10px;
  }

.WorkbenchFilters__filter {
    padding: var(--spacing-2xs) var(--spacing-2xs) 0 0;
    margin-bottom: var(--spacing-md);
    border-radius: 2px;
  }

.WorkbenchFilters__spinner {
    margin-left: 5px;
    vertical-align: top;
  }

.WorkbenchFilters__status {
    width: 1.6rem;
    height: 1.6rem;
    margin-left: 5px;
  }

.WorkbenchFilters__status .Icon {
      vertical-align: top;
    }

.WorkbenchFilters .Menu2__item {
    position: relative;
    display: flex;
    align-items: center;
  }

.WorkbenchFilters .Menu2__item .Spinner {
      position: absolute;
      top: 50%;
      margin-top: calc(var(--spinner-small-size) / -2);
      right: var(--spacing-sm);
    }

.WorkbenchFilters__collection {
    flex-grow: 1;
    height: 0;
    overflow: auto;
  }

.WorkbenchFilters__collection .FacetGroup__group > .FacetGroup__title,
    .WorkbenchFilters__collection .FacetGroup__behavioralGroup > .FacetGroup__title,
    .WorkbenchFilters__collection .FacetGroup__protocolGroup > .FacetGroup__title {
      color: var(--feature-summaries-facet-group-text-color);
      font-weight: 500;
      font-size: 16px;
      line-height: 24px;

      --panda-icon-size: 16px;
    }

.WorkbenchFilters__collection > .Menu2
      > .FacetGroup
      > .FacetGroup__children
      > .FacetGroup
      > .FacetGroup__title {
      margin-left: var(--spacing-md);
    }

.WorkbenchFilters__collection > .Menu2
      > .FacetGroup
      > .FacetGroup__children
      > .FacetGroup
      > .FacetGroup__children
      > .FacetGroup
      > .FacetGroup__title {
      margin-left: calc(var(--spacing-md) * 2);
    }

.WorkbenchFilters__collectionTitle {
    font-size: 1.3rem;
  }

.Tooltip.Facet__tooltip {
  max-width: none;
}

.Facet__tooltip * {
    text-align: left;
  }

.Facet__filterRangeSummary,
  .Facet__filterValueCount {
    font-size: 14px;
    line-height: 22px;
    margin-left: var(--spacing-2xs);
  }

.FacetGroup {
  user-select: none;
}

.FacetGroup .Facet__status:empty {
    display: none;
  }

.FacetGroup .Facet__status,
  .FacetGroup .FacetGroup__status {
    width: 1.6rem;
    height: 1.6rem;
  }

.FacetGroup .Facet__status .Icon, .FacetGroup .FacetGroup__status .Icon {
      vertical-align: top;
    }

.FacetGroup .FacetGroup__reloadIcon {
    display: block;
    width: 1rem;
    height: 1rem;
    position: relative;
    bottom: 90%;
    left: 95%;
    cursor: pointer;
  }

.FacetGroup__title {
    font-size: var(--font-size-xs);
    align-items: center;
    color: var(--feature-summaries-facet-group-child-text-color);
    margin-bottom: var(--spacing-sm);
    display: flex;
  }

.FacetGroup__title:hover {
      cursor: pointer;
    }

.FacetGroup__title:hover .FacetGroup__reloadIcon {
        display: block;
      }

.FacetGroup__toggle {
    margin-right: 12px;

    --panda-icon-size: 14px;
  }

.FacetGroup__toggle .Icon {
      vertical-align: baseline;

      --icon-color: var(--feature-summaries-facet-group-icon-color);
      --icon-size: 14px;
    }

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

.FacetGroup__menuItems {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    grid-gap: var(--spacing-sm);
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
  }

.FacetGroup__menuItems:empty {
      display: none;
    }

.FacetGroup__menuItems > .Menu2__item {
      height: 3.8rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: var(--feature-summaries-facet-group-child-text-color);
      background: var(--feature-summaries-facet-group-child-background);
      border: 1px solid var(--feature-summaries-facet-group-child-border);
      border-radius: 2px;
      font-size: 14px;
      line-height: 22px;
      padding: 0 var(--spacing-sm);
      cursor: wait;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

.FacetGroup__menuItems > .Menu2__item.FacetGroup__child--loaded {
        cursor: pointer;
      }

.FacetGroup__menuItems > .Menu2__item.FacetGroup__child--loaded:hover {
          background: var(--feature-summaries-facet-group-child-background-hover);
        }

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

.FacetGroup__subMenus > .FacetGroup {
      padding: 0 var(--spacing-sm);
      flex-basis: 100%;
    }

.QueryLanguageTooltip__warning {
    font-style: italic;
    margin-bottom: 1em;
  }

.QueryLanguageTooltip__type {
    margin-left: 5px;
  }

.Workbench__results .Tabs {
  --workbench-tabs-progress-bar-height: 4px;
}

.Workbench__results .Tabs .ProgressBar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: var(--workbench-tabs-progress-bar-height);
    z-index: 2;
    background-color: var(--gray-07);
  }

.Workbench__results .Tabs .ProgressBar__progress {
    background-color: var(--purple-01);
  }

:root {
  --tag-pill-background-color: var(--gray-06);
}

.Theme--light {
  --tag-pill-background-color: var(--gray-02);
}

.DetailsSidebar {
  --tag-pill-background-color: var(--gray-04);
}

.TagDropdown {
  cursor: pointer;
}

.TagListCell__hiddenCountTooltip .TagListCell {
    flex-wrap: wrap;
    grid-gap: 8px;
    gap: 8px;
  }

.TagListCell,
  .TagListCell__hiddenCountTooltip {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
  }

.TagListCell .TagListCell__tags {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 8px;
    gap: 8px;
    position: relative;
    overflow: hidden;
    height: 22px;
  }

.TagListCell__hiddenCount {
    white-space: nowrap;
    color: var(--theme-character-title);
    margin-left: var(--spacing-2xs);
  }

.TagListCell__hiddenCount--disabledTags {
      color: var(--theme-character-disabled);
    }

.Resources {
  overflow: hidden;
}

.Resources__navigation {
    overflow: auto;
  }

.Resources__examples {
    background: var(--panda-page-content-background);
    padding: 16px;
    overflow: auto;
  }

.Resources__examplesTitle {
    color: var(--theme-character-title);
    font-size: 16px;
    font-weight: bold;
    margin: unset;
    padding: 0 0 16px 0;
  }

.Resources__examplesFooter {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
  }

.Resources__examplesFooter .panda-button:nth-child(2) {
      flex-direction: row-reverse;
    }

.Resources__examplesFooter .panda-button:nth-child(2) .panda-button-icon {
        margin-right: 0;
        margin-left: 8px;
      }

.ExampleQuery {
  background: var(--theme-bg-tertiary);
  margin-bottom: 8px;
  padding: 16px;
  color: var(--theme-character-primary65);
  border-radius: 2px;
}

.ExampleQuery--selected {
    background: var(--theme-bg-secondary);
  }

.ExampleQuery__link {
    float: right;
    margin-left: 16px;
    color: var(--theme-character-disabled);
  }

.ExampleQuery h1,
  .ExampleQuery h2,
  .ExampleQuery h3,
  .ExampleQuery h4,
  .ExampleQuery h5 {
    color: var(--theme-character-title);
    margin-bottom: 10px;
  }

.ExampleQuery h3 {
    padding: 0;
    font-weight: bold;
  }

.ExampleQuery h4 {
    font-style: italic;
    font-weight: bold;
  }

.IPDetails__sidebar {
    padding: 8px 16px;
  }

.IPDetails .WHOISPanel {
    flex-shrink: 0;
  }

.IPDetails__activitiesColumn .DataTable__headerLabel, .IPDetails__recentColumn .DataTable__headerLabel {
      justify-content: flex-end;
    }

.IPDetails__activitiesColumn > *, .IPDetails__recentColumn > * {
      text-align: right;
    }

:root {
  /* When the leftmost cells are selected, there must be enough space for the left border */
  --coverage-mitre-grid-extra-margin-left: 6px;
}

.CoverageMitreGrid {
  display: flex;
  flex-direction: row;
  margin-left: var(--coverage-mitre-grid-extra-margin-left);
}

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

  /* We use gradients to create a grid background, with cells the same height and width as base cells.
     This way, we show a grid with cell borders even beyond the cells */
  background-image: repeating-linear-gradient(var(--theme-border-mitre-default) -1px, var(--theme-border-mitre-default) 0, transparent 1px, transparent 100%),
                    repeating-linear-gradient(90deg, var(--theme-border-mitre-default) 0, var(--theme-border-mitre-default) 1px, transparent 1px, transparent 100%);
  background-image: repeating-linear-gradient(var(--theme-border-mitre-default) -1px 0, transparent 1px 100%),
                    repeating-linear-gradient(90deg, var(--theme-border-mitre-default) 0 1px, transparent 1px 100%);
  background-position-x: -1px;
}

.CoverageMitreGrid__column:first-child {
    /* Due to an interplay of margins, only the rightmost side of each column has a vertical border.
       We attach a left border to the leftmost column to complete the grid. */
    border-left: 1px solid var(--theme-border-mitre-default);
  }

.CoverageMitreGrid__column.CoverageMitre--size-large {
    background-size: calc(var(--mitre-large-width) + 1px) calc(var(--mitre-large-height) + 1px);
    background-position-y: calc(var(--mitre-large-header-height) - var(--mitre-large-height) - 2px);
  }

.CoverageMitreGrid__column.CoverageMitre--size-medium {
    background-size: calc(var(--mitre-medium-width) + 1px) calc(var(--mitre-medium-height) + 1px);
    background-position-y: calc(var(--mitre-medium-header-height) - var(--mitre-medium-height) - 2px);
  }

.CoverageMitreGrid__column.CoverageMitre--size-small {
    background-size: calc(var(--mitre-small-width) + 1px) calc(var(--mitre-small-height) + 1px);
    background-position-y: calc(var(--mitre-small-header-height) - var(--mitre-small-height) - 2px);
  }

.CoverageMitreGrid__header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px 0 8px 16px;
  overflow: hidden;
  background: var(--theme-bg-mitre-header);
  border-radius: 0;
  border: 1px solid var(--theme-border-mitre-default);
  margin-left: -1px;

}

.CoverageMitreGrid__header.CoverageMitre--size-large {
    height: var(--mitre-large-header-height);
  }

.CoverageMitreGrid__header.CoverageMitre--size-medium {
    height: var(--mitre-medium-header-height);
  }

.CoverageMitreGrid__header.CoverageMitre--size-medium .CoverageMitreContent__title {
      width: 96px;
      font-weight: 700;
      font-size: 10px;
      line-height: 14px;
    }

.CoverageMitreGrid__header.CoverageMitre--size-medium .CoverageMitreContent__text {
      width: 96px;
      font-weight: 500;
      font-size: 10px;
      line-height: 14px;
    }

.CoverageMitreGrid__header.CoverageMitre--size-small {
    height: var(--mitre-small-header-height);

  }

.CoverageMitreGrid__header.CoverageMitre--size-small .CoverageMitreContent__title {
      width: 56px;
      font-weight: 700;
      font-size: 6px;
      line-height: 6px;
    }

.CoverageMitreGrid__header.CoverageMitre--size-small .CoverageMitreContent__text {
      width: 56px;
      font-weight: 500;
      font-size: 6px;
      line-height: 8px;
    }

.CoverageMitreGrid__header .CoverageMitreContent__title {
    width: 144px;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: var(--theme-character-mitre-header);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
  }

.CoverageMitreGrid__header .CoverageMitreContent__text {
    width: 144px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: var(--theme-character-mitre-header-secondary);
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    order: 1;
    align-self: stretch;

  }

.CoverageMitreGrid__header .CoverageMitreContent__text--disabled {
      color: var(--theme-character-mitre-disabled);
    }

.CoverageMitre__title-subtitle {
  display: flex;
  align-items: center;
}

.CoverageMitre__title-tag {
  padding: 0 8px 0 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--theme-character-primary65);
}

.CoverageMitre__title-selector-tag {
  background: var(--theme-bg-brand-minimal);
  color: var(--theme-character-title);
  border: none;
}

.CoverageMitreIndex {
  display: flex;
  flex-direction: column;
  position: absolute;
  width: 280px;
  right: var(--mitre-index-right);
  bottom: var(--mitre-index-bottom);
  background: var(--theme-bg-popover);
  border: 1px solid var(--theme-border-mitre-default);
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.6), 0 6px 16px rgba(0, 0, 0, 0.4), 0 9px 28px 8px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  padding: 6px 12px 4px;
}

.CoverageMitreIndex .CoverageMitreIndex__wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

.CoverageMitreIndex .CoverageMitreIndex__title {
    display: flex;
    justify-content: space-between;
    padding-bottom: 6px;
  }

.CoverageMitreIndex .CoverageMitreIndex__title .CoverageMitreIndex__title-text {
      width: 61px;
      height: 16px;
      font-weight: 700;
      font-size: 12px;
      line-height: 16px;
      color: var(--theme-character-title);
    }

.CoverageMitreIndex .CoverageMitreIndex__title .CoverageMitreIndex__title-close .panda-button {
      padding: 0;
      border: none;
      background: none;
      height: 4px;
      width: 4px;
    }

.CoverageMitreIndex .CoverageMitreIndex__gradient {
    min-height: 14px;
    width: 100%;
    background: linear-gradient(90deg, var(--theme-bg-mitre-skill-00) 0%, var(--theme-bg-mitre-skill-05) 50%, var(--theme-bg-mitre-skill-10) 100%);
    border: 1px solid var(--theme-border-mitre-default);
  }

.CoverageMitreIndex .CoverageMitreIndex__legend {
    display: flex;
    justify-content: space-between;
  }

.CoverageMitreIndex .CoverageMitreIndex__legend .CoverageMitreIndex__Legend__item {
      white-space: nowrap;
    }

/* Shift the index to the left when the side panel is open */

.panda-page-panel-visible .CoverageMitreIndex {
    right: calc(var(--mitre-index-right) + var(--panda-page-panel-width));
}

.CoverageMitre__index-switch {
  margin-right: 16px;
}

/* The grid should be wrapped in these scroll wrappers to allow scrolling */

.CoverageMitreGrid__scrollWrapper {
  overflow: visible;
}

.CoverageMitreGrid__scrollWrapper .CoverageMitreGrid__scrollWrapperInner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: auto;
    margin-left: calc(0px - var(--coverage-mitre-grid-extra-margin-left));
  }

.CoverageMitrePanel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 16px 0;
  background: var(--theme-bg-canvas);
  flex-grow: 1;
}

.CoverageMitrePanel .CoverageMitrePanel__header {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

.CoverageMitrePanel .CoverageMitrePanel__header__title {
      font-weight: 500;
      font-size: 16px;
      line-height: 24px;
      color: var(--theme-character-title);
    }

.CoverageMitrePanel .panda-tabs-tab {
    margin-top: 16px;
    font-size: 16px;
  }

.CoverageMitrePanel .CoverageMitrePanel__row {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px;
    width: 357px;
    background: var(--theme-bg-tertiary);
    border-radius: 2px;
    margin-bottom: 2px;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
    justify-content: space-between;
    text-decoration: none;
    white-space: normal;
  }

.CoverageMitrePanel .CoverageMitrePanel__row a {
      text-decoration: none;
      white-space: normal;
      display: block;
    }

.CoverageMitrePanel .CoverageMitrePanel__row .panda-icon {
      align-self: start;
    }

.CoverageMitrePanel__wrapper {
    width: 100%;
    height: 100%;
    overflow: auto;
}

:root {
  --mitre-large-width: 176px;
  --mitre-large-height: 158px;
  --mitre-medium-width: 112px;
  --mitre-medium-height: 96px;
  --mitre-small-width: 72px;
  --mitre-small-height: 60px;
  --mitre-large-selected-border-width: 6px;
  --mitre-medium-selected-border-width: 4px;
  --mitre-small-selected-border-width: 2px;
  --mitre-large-header-height: 96px;
  --mitre-medium-header-height: 60px;
  --mitre-small-header-height: 40px;
  --mitre-index-right: 40px;
  --mitre-index-bottom: 40px;
}

/* General content typography and layout -------------------------------- */

.CoverageMitreBase, .CoverageMitreSub {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  font-size: 14px;
}

.CoverageMitreBase {
  /* Ensure the border is not obscured */
  overflow: hidden;
}

.CoverageMitreBase .CoverageMitreContent__title {
    color: var(--theme-character-mitre-primary);
  }

.CoverageMitreBase .CoverageMitreContent__id {
    color: var(--theme-character-mitre-link);
  }

.CoverageMitreBase .CoverageMitreContent__text-wrapper {
    color: var(--theme-character-mitre-primary);
  }

.CoverageMitreBase .CoverageMitre--skill-range-00 .CoverageMitreContent__text-wrapper {
    color: var(--theme-character-mitre-disabled);
  }

.CoverageMitreSub {
  background: var(--theme-bg-mitre-subtechnique);
}

.CoverageMitreSub:hover {
    background-color: var(--theme-bg-mitre-subtechnique-hover);
  }

.CoverageMitreSub .CoverageMitreContent__title {
    color: var(--theme-character-mitre-secondary);
  }

.CoverageMitreSub .CoverageMitreContent__id {
    color: var(--theme-character-mitre-link);
  }

.CoverageMitreSub .CoverageMitreContent__text-wrapper {
    color: var(--theme-character-mitre-primary);
  }

.CoverageMitreSub.CoverageMitre--skill-range-00 .CoverageMitreContent__title {
    color: var(--theme-character-mitre-tertiary);
  }

.CoverageMitreSub.CoverageMitre--skill-range-00 .CoverageMitreContent__text-wrapper {
    color: var(--theme-character-mitre-disabled);
  }

.CoverageMitreContent {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex-grow: 1;
  position: relative;

}

.CoverageMitreContent:hover::before {
    content: " ";
    width: 100%;
    height: 100%;
    background: var(--theme-bg-mitre-hover);
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
  }

.CoverageMitreContent__title {
  width: 100%;
  font-weight: 500;
}

.CoverageMitreContent__id {
  width: 100%;
  text-decoration-line: underline;
}

.CoverageMitreContent__text-wrapper {
  width: 100%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.CoverageMitreAction {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 100%;
  flex-grow: 0;
  color: var(--theme-character-mitre-primary);
  background: var(--theme-bg-mitre-skill-footer);
  border-top: 1px solid var(--theme-border-mitre-default);
  border-radius: 0;
}

.CoverageMitreContent__text {
  font-weight: 700;
}

.CoverageMitreContent__text--disabled {
    color: var(--theme-character-disabled);
    font-weight: 400;
  }

/* Size specific typography and layout -------------------------------- */

.CoverageMitre--size-large .CoverageMitreBase, .CoverageMitre--size-large .CoverageMitreSub {
    line-height: 22px;
    width: var(--mitre-large-width);
    height: var(--mitre-large-height);
  }

.CoverageMitre--size-large .CoverageMitreContent {
    padding: 16px 16px 0;
  }

.CoverageMitre--size-large .CoverageMitreContent__text-wrapper span {
      padding-bottom: 16px;
    }

.CoverageMitre--size-large .CoverageMitreContent__id-a {
    font-size: 14px;
    line-height: normal;
  }

.CoverageMitre--size-large .CoverageMitreAction {
    min-height: 25px;
  }

.CoverageMitre--size-large .CoverageMitreAction .panda-icon {
      /* base antd.css uses !important to fix font sizes, we need to override it */
      font-size: 10px !important;
    }

.CoverageMitre--size-medium .CoverageMitreBase, .CoverageMitre--size-medium .CoverageMitreSub {
    font-size: 10px;
    line-height: 14px;
    width: var(--mitre-medium-width);
    height: var(--mitre-medium-height);
  }

.CoverageMitre--size-medium .CoverageMitreContent {
    padding: 8px 8px 0;
  }

.CoverageMitre--size-medium .CoverageMitreContent__text-wrapper span {
      padding-bottom: 8px;
    }

.CoverageMitre--size-medium .CoverageMitreContent__id-a {
    font-size: 10px;
    line-height: normal;
  }

.CoverageMitre--size-medium .CoverageMitreAction {
    min-height: 17px;
  }

.CoverageMitre--size-medium .CoverageMitreAction .panda-icon {
      /* base antd.css uses !important to fix font sizes, we need to override it */
      font-size: 8px !important;
    }

.CoverageMitre--size-small .CoverageMitreBase, .CoverageMitre--size-small .CoverageMitreSub {
    font-size: 6px;
    line-height: 8px;
    width: var(--mitre-small-width);
    height: var(--mitre-small-height);
  }

.CoverageMitre--size-small .CoverageMitreContent {
    padding: 8px 8px 0;
  }

.CoverageMitre--size-small .CoverageMitreContent__text-wrapper span {
      padding-bottom: 8px;
    }

.CoverageMitre--size-small .CoverageMitreContent__id-a {
    font-size: 6px;
    line-height: normal;
  }

.CoverageMitre--size-small .CoverageMitreAction {
    min-height: 13px;
  }

.CoverageMitre--size-small .CoverageMitreAction .panda-icon {
      /* base antd.css uses !important to fix font sizes, we need to override it */
      font-size: 6px !important;
    }

/* --------------------------------
   Rules are put inside CoverageMitreContainer selector when CSS classes
     appear on CoverageMitreContainer, and we need them to override defaults.
   For example, 1. Skill-range colors should override general colors
                2. Cell size has no defaults, so that's not in container.
*/

.CoverageMitreContainer {
  /* Single width borders --------- */
  padding: 0;
  box-sizing: content-box;
  border-left: 1px solid var(--theme-border-mitre-default);
  border-bottom: 1px solid var(--theme-border-mitre-default);
  margin-left: -1px;
  cursor: pointer;

  /* HACK ---------
     Not strictly needed but just in case the inner base divs
     exceed the width of the container this keeps the borders visible */
  overflow: hidden;
}

/* HACK ---------
     There seems to be a bug in reveal:
       When there are no subtechniques the reveal element is present but hidden in css.
       When there are subtechniques but collapsed, the reveal element is absent.
     when the subtechniques are not visible, we are supposed to remove CoverageMitreBase border bottom.
       However, the above behavior breaks our check for CoverageMitreBase:last-child to detect if the subtechniques are shown.
       To compensate we use negative margins to remove the extra border on the parent CoverageMitreBase whenever reveal is present but hidden.
  */

.CoverageMitreContainer .Reveal.Reveal--hiding, .CoverageMitreContainer .Reveal.Reveal--revealing {
    margin-top: -1px;
  }

/* Borders --------- */

.CoverageMitreContainer .CoverageMitreBase, .CoverageMitreContainer .CoverageMitreSub {
    border-bottom: 1px solid var(--theme-border-mitre-default);

    /* This border is normally covered by the neighboring cell's left border, however,
       it is used at the rightmost edge of the grid, and also when a cell moves
       beyond the span of its neighboring columns
       */
    border-right: 1px solid var(--theme-border-mitre-default)
  }

.CoverageMitreContainer .CoverageMitreBase:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }

.CoverageMitreContainer .CoverageMitreSubTechniques--Reveal {
    --reveal-transition-duration: 0.4s;
    --reveal-transition-easing: cubic-bezier(0.75,-0.50, 0.25, 2.00);
  }

.CoverageMitreContainer .CoverageMitreSubTechniques > div:last-child > .CoverageMitreSub {
    border-bottom: none;
    margin-bottom: 0;
  }

/* Selection borders and adjustments for change in size --------- */

.CoverageMitreContainer.CoverageMitreContainer--selected {
    /* The border should overflow over the surrounding elements */
    z-index: 1;
  }

.CoverageMitreContainer.CoverageMitreContainer--selected.CoverageMitre--size-large {
      border: var(--mitre-large-selected-border-width) solid var(--theme-border-mitre-select);
      border-radius: 8px;

      /* Selection needs to override the extra border at right */
      border-right-width: calc(1px + var(--mitre-large-selected-border-width));

      --margin: calc(-1 * var(--mitre-large-selected-border-width));

      margin: var(--margin);
      margin-bottom: calc(1px + var(--margin));
    }

.CoverageMitreContainer.CoverageMitreContainer--selected.CoverageMitre--size-medium {
      border: var(--mitre-medium-selected-border-width) solid var(--theme-border-mitre-select);
      border-radius: 4px;

      /* Selection needs to override the extra border at right */
      border-right-width: calc(1px + var(--mitre-medium-selected-border-width));

      --margin: calc(-1 * var(--mitre-medium-selected-border-width));

      margin: var(--margin);
      margin-bottom: calc(1px + var(--margin));
    }

.CoverageMitreContainer.CoverageMitreContainer--selected.CoverageMitre--size-small {
      border: var(--mitre-small-selected-border-width) solid var(--theme-border-mitre-select);
      border-radius: 2px;

      /* Selection needs to override the extra border at right */
      border-right-width: calc(1px + var(--mitre-small-selected-border-width));

      --margin: calc(-1 * var(--mitre-small-selected-border-width));

      margin: var(--margin);
      margin-bottom: calc(1px + var(--margin));
    }

/* Pull in the border after it has been extended to cover the extra border */

.CoverageMitreContainer.CoverageMitreContainer--selected .CoverageMitreBase, .CoverageMitreContainer.CoverageMitreContainer--selected .CoverageMitreSub {
      margin-right: -1px;
    }

/* Special border color for selected sub techniques */

.CoverageMitreContainer.CoverageMitreContainer--selected .CoverageMitreSub {
      border-color: var(--theme-border-mitre-select);
    }

/* Adjustments for small sizes --------- */

.CoverageMitreContainer.CoverageMitre--size-medium.CoverageMitreContainer--has-subtechniques .CoverageMitreBase .CoverageMitreContent__text-wrapper span, .CoverageMitreContainer.CoverageMitre--size-small.CoverageMitreContainer--has-subtechniques .CoverageMitreBase .CoverageMitreContent__text-wrapper span {
            padding-bottom: 4px;
          }

.CoverageMitreContainer.CoverageMitre--size-large.CoverageMitreContainer--has-subtechniques .CoverageMitreBase .CoverageMitreContent__text-wrapper span {
            padding-bottom: 6px;
          }

/* Skill ranges affect backgrounds and colors of cells --------- */

.CoverageMitreContainer.CoverageMitre--skill-range-00 .CoverageMitreBase {
    background: var(--theme-bg-mitre-skill-00);
  }

.CoverageMitreContainer.CoverageMitre--skill-range-01 .CoverageMitreBase {
    background: var(--theme-bg-mitre-skill-01);
  }

.CoverageMitreContainer.CoverageMitre--skill-range-02 .CoverageMitreBase {
    background: var(--theme-bg-mitre-skill-02);
  }

.CoverageMitreContainer.CoverageMitre--skill-range-03 .CoverageMitreBase {
    background: var(--theme-bg-mitre-skill-03);
  }

.CoverageMitreContainer.CoverageMitre--skill-range-04 .CoverageMitreBase {
    background: var(--theme-bg-mitre-skill-04);
  }

.CoverageMitreContainer.CoverageMitre--skill-range-05 .CoverageMitreBase {
    background: var(--theme-bg-mitre-skill-05);
  }

.CoverageMitreContainer.CoverageMitre--skill-range-06 .CoverageMitreBase {
    background: var(--theme-bg-mitre-skill-06);
  }

.CoverageMitreContainer.CoverageMitre--skill-range-07 .CoverageMitreBase {
    background: var(--theme-bg-mitre-skill-07);
  }

.CoverageMitreContainer.CoverageMitre--skill-range-08 .CoverageMitreBase {
    background: var(--theme-bg-mitre-skill-08);
  }

.CoverageMitreContainer.CoverageMitre--skill-range-09 .CoverageMitreBase {
    background: var(--theme-bg-mitre-skill-09);
  }

.CoverageMitreContainer.CoverageMitre--skill-range-10 .CoverageMitreBase {
    background: var(--theme-bg-mitre-skill-10);
  }

.CoverageMitre__fade-in-button {
  animation: CoverageMitre__fade-in-button 300ms;
  overflow: hidden;
  justify-content: left;
}

@keyframes CoverageMitre__fade-in-button {
  0% {
    width: 14px;
  }

  100% {
    width: 140px;
  }
}

