* {
  box-sizing: border-box;
}
::selection {
  background-color: var(--color-selection-background);
  color: var(--color-selection-foreground);
}
html,
body,
.page,
.main,
.repl,
sidecar {
  height: 100%;
  max-height: 100%;
  overflow-x: hidden;
}
body {
  font-size: 1em;
  font-weight: 400;
  margin: 0;
  overflow: hidden;
}
.page {
  display: flex;
  flex-direction: column;
  user-select: text;
}
body a.plain-anchor {
  color: inherit;
  text-decoration: none;
  transition: none;
}
body a {
  transition-property: color;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
body a:hover:not(.plain-anchor) {
  cursor: pointer;
}

/* HEADER */
body.still-loading .left-tab-stripe {
  display: none;
}
body .page > .header {
  /* only allow mouse dragging on top-most header */
  -webkit-app-region: drag;
}
.header {
  flex-basis: 0;
  display: flex;
  align-items: center;
  padding: 0 1.1875em;
  font-weight: 300;
  font-size: 1rem;
}
.header .deemphasize {
  font-size: 55%;
  letter-spacing: 1px;
  display: none;
}
.header-left-bits,
.header-right-bits {
  display: flex;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.header-left-bits {
  flex: 1;
}
sidecar .header-top-bits {
  display: flex;
  padding-left: 1em;
  margin: 0.75em 0 0;
}
.header .clickable,
.header .clickable:hover {
  text-decoration: none;
  transition: none;
}
.header .clickable {
  /* this just gives a little room for hovers, so that users don't have
   to mouse precisely over the hover text */
  padding: 0.75ex 0;
}
.application-icon {
  /* hide the application by default; custom clients can override this */
  display: none;
}
.header .application-name {
  font-size: 1.125rem;
  font-weight: 400;
}
.header .application-name .bx--logo__text--bold {
  font-weight: 600;
}
.header .application-name .bx--global-header__title--current-page {
  font-weight: 400;
}
header .header-nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header .header-nav-list li {
  font-weight: 400;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin: 0 1em;
  -webkit-app-region: no-drag;
}
.header-nav-list li input {
  border: none;
  font-family: inherit;
  font-size: inherit;
  text-transform: inherit;
  font-weight: inherit;
  padding: 0;
}

/* MAIN */
.main {
  display: flex;
  flex: 1;
}

/* REPL */
#invisible-global-input {
  /* element that handles text input while a command is being executed */
  position: absolute;
  left: -1000px;
  top: -1000px;
}
body.still-loading .repl {
  opacity: 0;
}
.repl {
  opacity: 1;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding-top: 1rem;
  flex: 4;
  background-color: var(--color-ui-01);
}
.repl-inner {
  overflow-y: auto;
  flex: 1;
}
.repl.sidecar-visible .repl-block {
  background: transparent;
}
.repl-block {
  padding: 0.5em 0 0;
  display: flex;
  flex-direction: column;
}
body:not(.subwindow) repl.sidecar-visible .repl-block,
.sidecar-full-screen repl .repl-block {
  border-color: transparent;
  box-shadow: none;
}
.repl,
.repl-input input {
  font-family: var(--font-monospace);
}
.scrollable[data-table-max-rows="4"],
.scrollable-auto[data-table-max-rows="4"] {
  max-height: calc(4 * 3em + 2px);
}
.scrollable[data-table-max-rows="5"],
.scrollable-auto[data-table-max-rows="5"] {
  max-height: calc(5 * 3em + 2px);
}
.scrollable[data-table-max-rows="6"],
.scrollable-auto[data-table-max-rows="6"] {
  max-height: calc(6 * 3em + 2px);
}
.scrollable[data-table-max-rows="7"],
.scrollable-auto[data-table-max-rows="7"] {
  max-height: calc(7 * 3em + 2px);
}
.scrollable[data-table-max-rows="8"],
.scrollable-auto[data-table-max-rows="8"] {
  max-height: calc(8 * 3em + 2px);
}
.scrollable[data-table-max-rows="9"],
.scrollable-auto[data-table-max-rows="9"] {
  max-height: calc(9 * 3em + 2px);
}
.scrollable[data-table-max-rows="10"],
.scrollable-auto[data-table-max-rows="10"] {
  max-height: calc(10 * 3em + 2px);
}
.kui--repl-subblock:not(:first-child) {
  padding-top: 1em;
}
.kui--repl-subblock:not(:last-child) {
  padding-bottom: 1em;
}
.kui--repl-subblock > .repl-result {
  /* don't double-do the font-size for nested repl-result */
  font-size: inherit;
  padding: 0 !important;
}
.repl-result {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.repl-result[data-stream] {
  /* streaming output of stdout; make sure stderr occurs below */
  flex-direction: column;
}
.repl-result > p:not(:first-child) {
  padding-top: 1em;
}
.repl.sidecar-visible p {
  white-space: normal;
}
.repl-prompt {
  font: var(--font-monospace);
  line-height: 1em;
  margin-right: 0.5em;
  white-space: nowrap;
  overflow: hidden;
  display: flex;
  border-left: 0.125em solid var(--color-ui-02);
  --color-prompt-text: var(--color-brand-01);
  --color-prompt-background: transparent;
}
.repl-block:not(.using-custom-prompt) .repl-prompt {
  font-family: var(--font-sans-serif);
}
.repl-prompt .repl-selection {
  font-size: 80%;
  opacity: 0.6;
}
.repl-prompt .repl-selection.has-selection-true {
  margin-left: 1ex;
}
.repl-prompt-righty {
  display: flex;
}
.repl-context {
  font-size: 0.875em;
  color: var(--color-prompt-text);
  background-color: var(--color-prompt-background);
  display: flex;
  align-items: center;
  letter-spacing: 0.32px;
  filter: opacity(87.5%) grayscale(50%);
}
.repl-block.using-custom-prompt .repl-prompt-righty > svg,
.repl-block.using-custom-prompt .repl-prompt-righty > i,
.repl-block.using-custom-prompt .repl-context {
  display: none;
}
.repl-block.using-custom-prompt .repl-input input {
  opacity: 0;
  width: 0;
}
.repl-prompt-righty {
  color: var(--color-brand-01);
}
.repl-prompt-righty svg path {
  fill: var(--color-brand-01);
}
.repl-prompt-righty .repl-temporary {
  display: flex;
  align-items: center;
}

/* repl right-hand decorations */
.repl-prompt-right-elements {
  display: flex;
  align-items: center;
  flex: 0;
  white-space: nowrap;
  margin-left: 1em;
}
body.subwindow .repl-prompt-right-elements {
  margin: 0;
  flex: 1;
  justify-content: center;
}
.kui--repl-prompt-buttons {
  margin-right: 1em;
}
body.subwindow .kui--repl-prompt-buttons {
  display: none;
}
.kui--repl-prompt-buttons .graphical-icon {
  opacity: 0.0375;
}
.repl-block .repl-input:hover .kui--repl-prompt-buttons .graphical-icon {
  opacity: 0.25;
}
.repl-block .repl-input .kui--repl-prompt-buttons .graphical-icon:hover {
  opacity: 1;
  cursor: pointer;
}
.repl-input .kui--repl-prompt-buttons .graphical-icon:hover svg path {
  fill: var(--color-text-01);
}
.repl .repl-prompt-right-element-status-icon.deemphasize {
  font-size: 0.875em; /* see the comment for repl-input re: min-height; that should match this */
  opacity: 1;
  transition-property: all;
}
body:not(.subwindow) .repl .repl-prompt-right-element-status-icon.deemphasize {
  margin-left: 0.5em;
}
.repl-prompt-right-element-status-icon.deemphasize .bx--loading {
  width: unset;
  height: unset;
}
.repl-prompt-right-element-status-icon.deemphasize .bx--loading__svg circle {
  /* scaling from 16 to 20 circle; default 240, and 300 = 240*20/16; also see index.html for 46.875=37.5*20/16 */
  stroke-dasharray: 300;
}
.repl-block:hover .repl-prompt-right-element-status-icon.deemphasize svg {
  filter: opacity(0.75) grayscale(0.125);
}
.repl-prompt-right-element-status-icon.deemphasize svg {
  display: none;
  filter: opacity(0.75) grayscale(0.5);
}
.repl-block:hover .repl-prompt-right-element-status-icon.deemphasize svg.kui--icon-error {
  filter: grayscale(0.25);
}
.repl-prompt-right-element-status-icon.deemphasize svg.kui--icon-error {
  filter: grayscale(0.5);
}
.repl-block.processing .repl-prompt-right-element-status-icon.deemphasize {
  opacity: 1;
}
.repl-block.processing .repl-prompt-right-element-status-icon .kui--icon-processing svg {
  filter: none;
}
.repl-block:not(.processing) .kui--icon-processing {
  display: none;
}
.repl-block.processing .repl-prompt-right-element-status-icon.deemphasize .kui--icon-processing svg,
.repl-block.valid-response .repl-prompt-right-element-status-icon.deemphasize svg.kui--icon-ok,
.repl-block.error .repl-prompt-right-element-status-icon.deemphasize svg.kui--icon-error {
  display: block;
}
.repl-block.processing .repl-prompt-right-element-status-icon .kui--icon-processing svg circle {
  stroke: var(--color-brand-03);
}
svg.kui--error-icon path[data-icon-path="inner-path"],
.repl-block .repl-prompt-right-element-status-icon svg path[data-icon-path="inner-path"] {
  opacity: 1;
  stroke: var(--color-ui-01);
  fill: var(--color-ui-01);
}
.repl-block.valid-response
  .repl-prompt-right-element-status-icon
  svg.kui--icon-ok
  path:not([data-icon-path="inner-path"]) {
  fill: var(--color-ok);
  stroke: var(--color-ok);
  stroke-opacity: 0.5;
}
svg.kui--error-icon path:not([data-icon-path="inner-path"]),
.repl-block.error .repl-prompt-right-element-status-icon svg.kui--icon-error path:not([data-icon-path="inner-path"]) {
  fill: var(--color-error);
  stroke: var(--color-error);
  stroke-opacity: 0.5;
}
.repl-prompt-right-elements .repl-prompt-right-element-status-icon:hover {
  opacity: 1;
}
repl.sidecar-visible .repl-block:not(.processing) .repl-prompt-right-elements,
.repl-active .repl-prompt-right-elements {
  display: none; /* see the comment for repl-input re: min-height */
}

body/*:not(.sidecar-full-screen)*/ repl.sidecar-visible .repl-prompt-lefty, body/*.sidecar-full-screen*/ repl .repl-prompt-lefty {
  display: none;
}
body/*:not(.sidecar-full-screen)*/ repl.sidecar-visible .repl-selection, body/*.sidecar-full-screen*/ repl .repl-selection {
  /* collapse the context and selection when the sidecar is visible */
  width: 0;
  min-width: 0;
  opacity: 0 !important;
  margin: 0 !important;
}
.repl-result,
.repl-result-like,
.repl-input input,
.repl-input-like {
  font-size: 0.875em;
}
.repl-block:not(.processing) .repl-result-like:last-child {
  margin-bottom: 0.375em;
}
.repl-input input,
.repl-input-like {
  --color-caret: var(--color-support-01);
  color: var(--color-text-01);
  background: transparent;
  border: none;
  flex: 1;
  caret-color: var(--color-caret);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.kui--prompt-like:empty {
  border-right: 1ex solid var(--color-caret);
}
.repl-input input:focus,
.repl-input-like:focus {
  outline: none;
}
.repl-block.valid-response .ok,
.green-text,
.dragover .ok-text-on-dragover {
  opacity: 1 !important;
}
.repl-block.valid-response .oops,
sidecar.rule-enabled-false .sidecar-header-icon,
.repl-block.error .oops,
.clickable.oops,
.oops .oops-text-on-oops,
.red-text {
  opacity: 1 !important;
  white-space: pre-wrap;
}
.header .clickable.oops {
  font-weight: 900;
}
.repl-block.valid-response div:not(.repl-result) > .ok-line,
.repl-block.valid-response > .oops {
  font-size: 0.875em;
}
.repl-block.valid-response .ok,
.repl-block.valid-response > .oops {
  display: block;
}
.repl-block.valid-response .ok.inline-ok {
  display: inline;
}
.repl-block.valid-response .repl-result .ok {
  /* oof, sometimes the .ok is nested under a repl-result, which would
   result in a double 0.875em reduction */
  font-size: 1em;
}
.repl-block.valid-response .oops {
  /* oops output often times doesn't word wrap nicely on its own, e.g. help/usage; issue #396 */
  word-break: break-all;
}
.repl-input {
  align-items: center;
  min-height: 1.25em; /* so that when the sidecar is open (and the right-elements are display:none) we don't get a height adjustment */
}
.repl-input,
.repl-output {
  display: flex;
}
.repl-output.result-vertical {
  flex-direction: column;
}
.repl-block .whitespace {
  white-space: pre-wrap;
}
.repl-block.processing .repl-output,
.repl-block.valid-response .repl-output {
  display: flex;
  align-items: flex-start;
}
.sidecar-visible tab:not(.sidecar-is-minimized) .repl-block.processing .repl-output,
.sidecar-visible tab:not(.sidecar-is-minimized) .repl-block.valid-response .repl-output {
  align-items: stretch;
}
.repl-result-spinner {
  font-size: 0.875em;
}
.repl-block.custom-caret .repl-result-spinner {
  /* for commands with self-managed carets */
  display: none;
}
.repl-block.processing .repl-result-spinner-inner {
  /* animation: spin 750ms linear infinite; */
  height: auto;
  width: auto;
  opacity: 1;
  transition-delay: 100ms; /* only show the spinner block if the command takes a bit longer */
  display: inline-block;
  background-color: var(--color-processing);
  margin-bottom: 0.25em;
}
.repl-block.processing .repl-result-spinner-inner:after {
  content: "\00a0";
}
.repl-result pre {
  margin: 2px 0; /* firefox needs some vertical padding, otherwise descenders like "y" crop; weird */
  white-space: pre-wrap;
}
.repl-result code {
  /* more invocation results */
  /* here, we override the highlight.js theme, when rendering in the repl */
  background: transparent;
  color: var(--color-text-01);
}
.fifty-fifty:nth-last-child(2) {
  max-width: calc(50% - 3em);
  margin-right: 3em;
}
.fifty-fifty:last-child {
  max-width: 50%;
}
.repl.sidecar-visible .repl-block .fifty-fifty,
tab:not(.sidecar-full-screen) sidecar .fifty-fifty {
  max-width: unset;
  margin-right: unset;
}
.entity-rule-status {
  width: 7em;
}
.sidecar-visible .repl-result.one-column .package-prefix {
  max-width: 35%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.repl-result .activationId {
  font-weight: 500;
}

/* two special session activation list decorations */
.repl-block .repl-result .status {
  padding-top: 0;
  padding-left: 1em;
  order: 5;
}

.repl-result .activation-duration {
  width: 3em;
  text-align: right;
}

/* grid cells in activation list view */
.repl-result .entity.activations {
  margin: 0.25ex;
}
.repl-result .activation-viz-plugin {
  /* activation grid in activation list vie */
  flex: initial;
  flex-direction: row;
  align-items: center;
  margin-right: 2em;
}
.repl-result .activation-viz-plugin .grid {
  /* activation grid in activation list vie */
  padding: 0 1ex 0 0;
}
.repl-result .activation-viz-plugin .grid .grid-cell {
  /* activation grid in activation list vie */
  border: 1px solid rgba(100, 100, 100, 0.35);
}
.repl-result .activation-result {
  /* activation result in activation list view */
  order: 3;
  margin-left: 2em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  background: transparent;
}
.repl-result .activation-start-time {
  order: 4;
  padding-left: 1em;
}
.timestamp-same-day {
  /* keep the width, but make it hidden */
  opacity: 0;
}
.sidecar-visible .repl-result.one-column .activation-result,
.sidecar-visible .repl-result.one-column .activation-start-time,
.sidecar-visible .entity-rule-definition {
  /* hide activation result and start time  in activation list view, when sidecar is open */
  opacity: 0;
  flex: 0 0 0%;
  min-width: 0;
  padding: 0;
  margin: 0;
}

.repl .list-label {
  font-size: 70%;
  opacity: 0.6;
  margin-right: 1ex;
}
.repl-result-prefix,
.sidecar-header badge:not(.badge-as-image) {
  font-weight: 500;
  font-size: 0.825em;
  border-radius: 0.9375em;
  margin: 0.1875em;
  padding: 0 0.825em;
  height: 1.925em;
  line-height: 1.925em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
badge:only-child {
  /* we only need margins around badges if there is more than one badge */
  margin: 0;
}
i.clickable:hover,
badge.clickable:hover {
  /* no underline effect for icons (i) and badges */
  text-decoration: none;
}

.entity.activations.is-sequence-true .repl-result-prefix {
  min-width: 5.5em;
}
.entity .repl-result-prefix {
  height: auto;
  font-size: 0.875em;
  font-weight: 300;
  background: transparent;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 2em;
  min-width: 6em;
  text-align: right;
  border-radius: 0;
}
.entity .repl-result-prefix,
.entity .border-right {
  border-right: 1px solid;
}

/* sidecar */
sidecar {
  flex: 0 0 0%;
  min-width: 0;
  transition-property: background-color, color, border-color;
  transition-duration: calc(var(--transition-duration) * 2); /* twice the normal duration */
  display: flex;
  flex-direction: column;
  overflow-y: hidden;
  background: var(--color-sidecar-background);
}
sidecar.visible {
  flex: 6;
  z-index: 1; /* float above the repl */
  border-left: 1px solid var(--color-sidecar-border);
}
body:not(.subwindow) .sidecar-full-screen sidecar.visible:not(.minimized) {
  border-left-color: var(--color-ui-04);
}
.sidecar-full-screen .repl.sidecar-visible {
  flex: 0 0 0;
  min-width: 0;
}

.sidecar-bottom-stripe {
  flex-basis: 2.5em;
  min-height: 2.5rem; /* important for screenshot, which tries to maximally squish the sidecar height */
  display: flex;
  z-index: 5;
  background-color: var(--color-stripe-02);
  border-bottom: 1px inset var(--color-ui-02);
  order: -1;
}
/* sidecar .sidecar-bottom-stripe {
    order: -1;
} */
sidecar .sidecar-bottom-stripe > div {
  font-size: 0.875em;
}
sidecar .sidecar-bottom-stripe-left-bits,
sidecar .sidecar-bottom-stripe-left-bits .sidecar-bottom-stripe-button-container {
  /* button container in sidecar bottom stripe */
  flex: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
}
sidecar .sidecar-bottom-stripe-left-bits .sidecar-bottom-stripe-button-container.sidecar-bottom-stripe-back-bits {
  /* back button container in sidecar bottom stripe */
  flex: 0 0 0%;
  min-width: 0;
}
sidecar
  .sidecar-bottom-stripe-left-bits
  .sidecar-bottom-stripe-button-container.sidecar-bottom-stripe-back-bits.has-back-button {
  flex: initial;
  margin-right: 0;
  padding: 0 calc(1em - 0.375em); /* the button inside has 0.375em padding left-right */
}
sidecar .sidecar-bottom-stripe-close-icon {
  letter-spacing: -1ex;
  opacity: 0.6;
  transition-property: all;
}
body.os-win32 sidecar .sidecar-bottom-stripe-close-icon {
  /* dunno why windows is weird here */
  letter-spacing: 0px;
}
sidecar .sidecar-bottom-stripe .sidecar-bottom-stripe-maximize {
  display: flex;

  /* so that the "hidden" maximize button (see opacity:0,width:0 just below)
       doesn't occlude the close button */
  /*overflow: hidden;*/
}
.maximize-button-label,
.unmaximize-button-label {
  display: inline-block;
}
body:not(.subwindow) .sidecar-full-screen sidecar .sidecar-bottom-stripe-maximize .maximize-button-label,
body:not(.subwindow) tab:not(.sidecar-full-screen) sidecar .sidecar-bottom-stripe-maximize .unmaximize-button-label {
  transition: opacity 0ms ease-in-out;
  opacity: 0;
  width: 0;
  height: 0;
}
.sidecar-bottom-stripe-left-bits .sidecar-bottom-stripe-button-return-to::first-letter,
.sidecar-bottom-stripe-left-bits .sidecar-bottom-stripe-button[data-mode] {
  /* for bottom mode-switching buttons, capitalize the text; for actual buttons, keep the capitalization as it was given */
  text-transform: capitalize;
}
sidecar .sidecar-bottom-stripe .package-prefix {
  /* kubectl namespace and openwhisk package name, etc. */
  display: block;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
sidecar .sidecar-bottom-stripe .package-prefix:first-letter {
  /* first-letter avoids README.md -> README.Md */
  text-transform: capitalize;
}
sidecar .sidecar-header .limits {
  /* don't show limits in header for now */
  display: none;
}
.sidecar-bottom-stripe .sidecar-bottom-stripe-button:not(.sidecar-bottom-stripe-button-active):hover,
sidecar .sidecar-bottom-stripe-button.hover {
  cursor: pointer;
  opacity: 1;
}
sidecar .sidecar-bottom-stripe-button:not(.sidecar-bottom-stripe-button-active).force-no-hover:hover,
sidecar .sidecar-bottom-stripe-button.force-no-hover.hover {
  /* e.g. the screenshot plugin wants to disallow tooltips on the
   "capture screenshot" button while capturing a screenshot! */
  color: inherit !important;
  transition: none !important;
}
.sidecar-bottom-stripe-close:hover .sidecar-bottom-stripe-close-icon,
.sidecar-bottom-stripe-close.hover .sidecar-bottom-stripe-close-icon,
.sidecar-bottom-stripe-button-container:hover .sidecar-bottom-stripe-close-icon {
  /* on hover, squeeze the >> a bit closer together */
  letter-spacing: -1.25ex;
}
body.os-win32 sidecar .sidecar-bottom-stripe-close:hover .sidecar-bottom-stripe-close-icon,
body.os-win32 sidecar .sidecar-bottom-stripe-close.hover .sidecar-bottom-stripe-close-icon,
body.os-win32 sidecar .sidecar-bottom-stripe-button-container:hover .sidecar-bottom-stripe-close-icon {
  letter-spacing: -1px; /* windows is different here */
}
sidecar .sidecar-bottom-stripe-back-bits,
.sidecar-bottom-stripe .fill-container {
  /* back button in sidecar bottom stripe */
  border-right: 1px solid var(--color-table-border2);
  padding-right: 0.475rem;
  margin-right: 0.475rem;
}
sidecar .sidecar-bottom-stripe-back-bits > div {
  display: flex;
  align-items: center;
}
sidecar .sidecar-bottom-stripe-back-bits > div:hover {
  opacity: 1;
}
sidecar .sidecar-bottom-stripe-button-container.sidecar-bottom-stripe-back-bits:not(.has-back-button) {
  display: none;
}
body.subwindow sidecar .sidecar-bottom-stripe-button-container.sidecar-bottom-stripe-back-bits .graphical-icon {
  font-size: 3vmin;
}

/* sidecar view-button "flush right" toolbar */
sidecar .sidecar-bottom-stripe-toolbar {
  display: flex;
}
body.subwindow sidecar .sidecar-bottom-stripe-toolbar {
  font-size: 1.5vw;
}
sidecar .sidecar-bottom-stripe-toolbar .sidecar-toolbar-text,
sidecar .sidecar-bottom-stripe-toolbar .sidecar-bottom-stripe-mode-bits {
  background-color: var(--color-sidecar-toolbar-background);
  color: var(--color-sidecar-toolbar-foreground);
  height: 1.5em;
  display: flex;
  align-items: center;
  flex: 1;
  overflow: hidden;
}
sidecar .sidecar-bottom-stripe-toolbar .sidecar-toolbar-text svg path {
  fill: var(--color-sidecar-toolbar-foreground);
}
sidecar .sidecar-bottom-stripe-toolbar .sidecar-toolbar-text[data-type="warning"] svg path {
  fill: var(--color-warning);
}
sidecar .sidecar-bottom-stripe-toolbar .sidecar-toolbar-text[data-type="warning"] svg path[data-icon-path="inner-path"],
sidecar .sidecar-bottom-stripe-toolbar .sidecar-toolbar-text[data-type="error"] svg path[data-icon-path="inner-path"] {
  fill: var(--color-white);
}
sidecar .sidecar-bottom-stripe-toolbar .sidecar-toolbar-text[data-type="error"] svg path {
  fill: var(--color-error);
}
sidecar .sidecar-bottom-stripe-toolbar .sidecar-toolbar-text:not([data-type]),
sidecar .sidecar-bottom-stripe-toolbar .sidecar-bottom-stripe-mode-bits.sidecar-bottom-stripe-button-container:empty {
  display: none !important;
}
sidecar
  .sidecar-bottom-stripe-toolbar
  .sidecar-toolbar-text:not([data-type])
  + .sidecar-bottom-stripe-mode-bits.sidecar-bottom-stripe-button-container:not(:empty) {
  flex: 1;
}
sidecar .sidecar-bottom-stripe-toolbar .sidecar-toolbar-text-icon,
sidecar .sidecar-bottom-stripe-toolbar .sidecar-toolbar-text-content {
  opacity: 0.875;
}
sidecar .sidecar-bottom-stripe-toolbar .sidecar-toolbar-text-icon {
  margin-right: 0.375em;
  margin-left: calc(43px - 2em); /* attempting to roughly match monaco's gutter spacing */
  padding-left: 1em;
}
sidecar .sidecar-bottom-stripe-toolbar .sidecar-toolbar-text-icon > svg {
  display: none;
}
sidecar .sidecar-bottom-stripe-toolbar .sidecar-toolbar-text[data-type="info"] svg.kui--info-icon,
sidecar .sidecar-bottom-stripe-toolbar .sidecar-toolbar-text[data-type="warning"] svg.kui--warning-icon,
sidecar .sidecar-bottom-stripe-toolbar .sidecar-toolbar-text[data-type="error"] svg.kui--error-icon {
  display: block;
}
body.subwindow sidecar .sidecar-bottom-stripe svg {
  width: 2.5vmin;
  height: 2.5vmin;
}
body.subwindow sidecar .sidecar-bottom-stripe-toolbar svg {
  width: 1.5vmin;
  height: 1.5vmin;
}
sidecar .sidecar-bottom-stripe-toolbar .sidecar-toolbar-text .sidecar-toolbar-text-content {
  font-size: 0.75em;
  display: block;
  letter-spacing: 0.32px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body.subwindow sidecar .sidecar-bottom-stripe-toolbar .sidecar-toolbar-text .sidecar-toolbar-text-content {
  font-size: 1.375vmin;
}
sidecar .sidecar-bottom-stripe-toolbar .sidecar-bottom-stripe-button {
  display: flex;
  line-height: 1.5em;
  padding: 0 0.5em;
  color: inherit;
}
sidecar .sidecar-bottom-stripe-toolbar .sidecar-bottom-stripe-button:hover {
  cursor: pointer;
}
sidecar .sidecar-bottom-stripe-toolbar .sidecar-bottom-stripe-button [role="tab"] {
  font-size: 0.875em;
}
sidecar .sidecar-bottom-stripe-toolbar .sidecar-bottom-stripe-button:hover [role="tab"] {
  color: var(--color-base03);
}
sidecar .sidecar-bottom-stripe-toolbar .graphical-icon svg path {
  fill: var(--color-sidecar-toolbar-foreground);
}
sidecar .sidecar-bottom-stripe-toolbar .sidecar-bottom-stripe-mode-bits.sidecar-bottom-stripe-button-container {
  padding: 0 1em;
  display: flex;
  flex: initial;
}

/* custom content */
body.no-sidecar-header .sidecar-header,
sidecar.no-sidecar-header .sidecar-header,
sidecar.custom-content .sidecar-content,
sidecar:not(.custom-content) .custom-content,
sidecar.custom-content .sidecar-header-secondary-content .limits,
sidecar.custom-content .sidecar-header-secondary-content .action-content {
  /* custom content rules */
  display: none;
}
sidecar .sidecar-content-container {
  overflow: hidden;
}
sidecar .sidecar-content-container,
sidecar .custom-content {
  display: flex;
  flex: 1;
  min-height: 0; /* without this, in firefox wskflow pushes the bottom stripe off the bottom of the viewport */
}
sidecar .sidecar-header {
  display: flex;
  background-color: var(--color-sidecar-header);
  border-bottom: 1px solid var(--color-content-divider);
  flex-basis: 8rem;
  min-height: 8rem; /* see shell issue #712 */
}
body.subwindow sidecar .sidecar-header {
  flex-basis: 15vh;
  min-height: 15vh;
}
sidecar .sidecar-header .header-main-content {
  flex: 1;
  display: flex;
  flex-direction: column;

  /* this is needed, as we rotate the "sidecar-header-icon", which confuses chrome in terms of width occupancy;
       see sidecar .sidecar-header-icon-wrapper; the 4em parts must match! */
  /* width: calc(100% - 4em); */

  /* this is needed to work around firefox's odd behavior with nested
   flex boxes versus text-overflow; see
   https://github.com/IBM/kui/issues/1334 */
  min-width: 0;
}
sidecar .header-right-bits {
  white-space: nowrap;
  margin: 0 1em;
}
.sidecar-header .kind {
  font-variant: small-caps;
  flex: 1;
  margin-top: 1ex;
}
.sidecar-header .action-content .kind {
  font-size: 0.875rem;
  font-variant: normal;
  font-weight: 300;
  font-family: inherit;
  margin: 0;
}
.header-right-bits .action-content,
.header-right-bits .custom-header-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: flex-end;
  justify-content: space-evenly;
}
.sidecar-header .badges:not(:empty) + .activation-duration {
  margin-top: 0.1em;
  font-size: 1.5em;
}
.sidecar-header .activation-duration,
.sidecar-header .kind {
  font-weight: bold;
  font-size: 2.5em;
}
sidecar .sidecar-header-text {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
sidecar .sidecar-header-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}
sidecar .sidecar-header-icon-wrapper > span {
  padding: 0 1em;
}
sidecar .sidecar-header-icon-wrapper + .sidecar-header-icon-wrapper > span:not(:empty) {
  border-left: 1px solid var(--color-table-border2);
}
sidecar .sidecar-header-icon-wrapper {
  display: flex;
  align-items: center;
  overflow: hidden;
}
sidecar .header-left-bits {
  align-items: stretch;
  overflow: hidden;
}
sidecar .sidecar-header-icon {
  font-weight: 600;
  letter-spacing: 1px;
  pointer-events: none; /* with text rotation, this element bumps into neighbors, otherwise obfuscating mouse events */
}
sidecar .sidecar-header-name {
  flex: 1;
  font-weight: 400;
  font-size: 2em;
  display: flex;
  align-items: center;

  /* the bit of padding allows for space to initiate a drag-select of
   the header name text */
  padding-right: 1rem;
  -webkit-app-region: no-drag !important;
}
body.subwindow sidecar .sidecar-header-name {
  font-size: 4vh;
}
sidecar .sidecar-header .entity-name-line {
  display: flex;
  align-items: center;
}
sidecar.entity-has-badges .sidecar-header .header-right-bits .action-content {
  display: flex;
}
sidecar .sidecar-header .badges {
  margin-left: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
sidecar .sidecar-header .badges:first-child {
  margin-left: 0;
}
sidecar .sidecar-header badge.clickable:hover {
  filter: brightness(1.1);
}
sidecar .sidecar-header-name-content {
  overflow-x: hidden;
}
sidecar .sidecar-header-name-content .entity-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  word-break: break-all;
  max-height: 2.35em;

  /* these two rules help us to simulate left-ellision */
  /* direction: rtl;
    text-align: left; */
}
sidecar .sidecar-header-name-content > span {
  display: block;
  vertical-align: middle;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
sidecar .sidecar-header-name .package-prefix {
  font-size: 0.875rem;
  max-width: none;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}
sidecar .sidecar-header-name .entity-name-hash {
  font-family: var(--font-monospace);
  font-size: 75%;
  color: var(--color-text-02);
  font-size: 1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
sidecar.entity-is-activations .sidecar-header-name .package-prefix {
  /* don't display package name for activations? hmm */
  display: none;
}
sidecar.entity-is-activations .sidecar-header-name .sidecar-header-name-content {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
sidecar .sidecar-header-secondary-content {
  padding-left: 1rem;
  font-size: 0.875em;
  display: flex;
  align-items: center;
  color: var(--color-text-02);
  letter-spacing: 0.32px;
  line-height: 1.25em;
}
sidecar .sidecar-header-secondary-content .kind-content {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
sidecar .sidecar-content {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
sidecar .sidecar-content > div,
sidecar .sidecar-content .activation-content > pre > code,
sidecar .custom-content pre > code,
sidecar .custom-content .padding-content {
  display: block;
  padding: 1.5em 1em;
}
sidecar .custom-content > .scrollable {
  /* for scrollable padding-content, we want the scrollbar to be flush-right */
  flex: 1;
}
sidecar .sidecar-content .hook-for-third-party-content.no-content {
  display: none;
}
sidecar .sidecar-header .activation-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
sidecar .sidecar-content .activation-content {
  padding: 0;
}
sidecar .sidecar-content .activation-content,
sidecar .sidecar-content .hook-for-third-party-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.entity-web-export-url:not(.has-url) {
  display: none;
}
sidecar .activation-status {
  color: white;
  font-size: 2.5rem;
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0.5ex;
}
sidecar pre {
  /* no margin for action source code */
  margin: 0;
}
sidecar .action-content > pre {
  /* some odd issue here; pre > code will give us the pre-wrap */
  white-space: normal;
}
sidecar:not(.entity-is-actions):not(.entity-is-apps):not(.entity-is-compositions) .action-content {
  display: none;
}
sidecar:not(.entity-is-activations) .activation-content {
  display: none;
}
sidecar.no-activation-timing-data .sidecar-header-secondary-content {
  /* no timing information for activations */
  display: none;
}
sidecar:not(.entity-is-packages) .package-content {
  display: none;
}
sidecar.entity-is-packages:not(entity-is-package-binding) .package-binding-signifier {
  display: none;
}
sidecar:not(.entity-is-rules) .rule-content {
  display: none;
}
sidecar:not(.entity-is-triggers) .trigger-content {
  display: none;
}
sidecar.entity-is-actions:not(.entity-is-sequence) .action-source,
sidecar .activation-result,
code.hljs,
.code-highlighting pre {
  font-family: var(--font-monospace);
  font-weight: 400;
  font-size: 0.875em;
  white-space: pre-wrap;
  background: transparent;
}
.repl-result code.hljs {
  /* avoid nested 0.875em from .repl-result and the above code.hljs */
  font-size: 1em;
}
.package-content-count {
  font-weight: bold;
}

.rule-components {
  display: flex;
  justify-content: center;
}
sidecar:not(.entity-is-sequence) .sequence-components {
  display: none;
}
.sequence-components {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sequence-component {
  border: 3px solid;
  margin: 1em;
  height: 5em;
  width: 5em;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em;
  position: relative;
}
.sequence-component:before {
  content: " ";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border: 3px solid rgba(0, 0, 0, 0.075);
}
.sequence-component:hover:before {
  border-color: rgba(0, 0, 0, 0.2);
}
.sequence-component.trigger-node {
  border-radius: 0;
}
.sequence-component.trigger-node:before {
  border-radius: 0;
}
.sequence-component:hover {
  cursor: pointer;
  height: 11.25em; /* 25% larger */
  width: 20em; /* 25% larger */
}
.sequence-component-inner .emphasize {
  font-size: 1.4375rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.sequence-component-inner .deemphasize {
  opacity: 1;
  margin: 1ex;
}
.sequence-component {
  height: 9em;
  width: 16em;
}
.sequence-component:not(:last-child):after {
  /* edge */
  content: "";
  border: 1px solid #333;
  outline: 1px solid #999;
  position: absolute;
  height: 2em;
  top: calc(100% + 4px);
  left: 50%;
}
.horizontal-canvas .sequence-component:not(:last-child):after {
  height: 0px;
  width: calc(2em - 2px);
  top: 50%;
  left: calc(100% + 3px);
}
.sequence-component .sequence-component-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  /*white-space: nowrap;*/
  font-variant: small-caps;
  font-weight: 400;
  word-break: break-all;
}

/* sidecar cost */
.activation-estimated-cost-container {
  display: none;
}

/* generic */
textarea.not-tabbable,
input.not-tabbable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.map-key {
  color: var(--color-map-key);
}
.map-value {
  color: var(--color-map-value);
}
b {
  font-weight: bold;
}
webview {
  display: flex;
  flex: 1;
  background: transparent;
}
.blurry {
  filter: blur(3px) brightness(0.5) grayscale(0.5);
  -webkit-app-region: drag;
}
.blurry [data-balloon]:before,
.blurry [data-balloon]:after {
  /* no tooltips under a blurry element */
  display: none;
}
sidecar .present-as-quotation {
  border-left-color: var(--color-base02);
}
.present-as-quotation {
  padding: 0.375em 0;
  margin: 0.375em 0;
}
.do-not-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.overflow-auto {
  overflow: auto;
}
.display-inline {
  display: inline;
}
.fixed-table-layout {
  table-layout: fixed;
}
.text-center {
  text-align: center;
}
pre,
code {
  font-family: var(--font-monospace);
}
code.fancy-code,
code.fancy-code.hljs {
  background: var(--color-base00) !important;
  border: 1px solid var(--color-ui-04);
  color: var(--color-base05);
}
.no-wrap {
  white-space: nowrap;
}
.normal-wrap {
  white-space: normal;
}
.break-all {
  word-break: break-all;
}
.hide {
  display: none;
}
.flex-layout {
  display: flex;
  align-items: center;
}
.flex-align-top {
  align-items: flex-start;
}
.normal-text {
  color: var(--color-text-01);
  font-weight: 400;
  opacity: 1;
  font-size: 1em;
}
.normal-text svg path {
  fill: var(--color-text-01);
}
.kui--sidecar-inverted sidecar .normal-text {
  color: var(--color-text-inverted01);
}
.kui--sidecar-inverted sidecar .normal-text svg path {
  fill: var(--color-text-inverted01);
}
.even-larger-text {
  font-size: 2em;
  line-height: 1em;
}
.larger-text {
  font-size: 1.5em;
}
.even-smaller-text {
  font-size: 0.75em;
}
.smaller-text {
  font-size: 0.875em;
}
.somewhat-smaller-text {
  font-size: 0.925em;
}
.sub-text {
  color: var(--color-text-02);
}
.kui--sidecar-inverted sidecar .sub-text {
  color: var(--color-text-inverted03);
}
.lighter-text {
  font-weight: 300;
}
.even-lighter-text {
  color: var(--color-text-02);
  font-weight: 300;
}
.nowrap {
  white-space: nowrap;
}
.slightly-deemphasize {
  color: var(--color-text-02);
}
.deemphasize {
  color: var(--color-text-02);
  font-size: 0.75em;
  opacity: 0.7;
  vertical-align: middle;
}
.deemphasize.deemphasize-partial {
  font-weight: 400;
  opacity: 1;
}
.pre-wrap {
  white-space: pre-wrap;
}
.monospace,
pre.monospace {
  font-family: var(--font-monospace);
}
.sans-serif {
  font-family: var(--font-sans-serif);
}
.semi-bold {
  font-weight: 500;
}
.sans-serif.semi-bold {
  font-weight: 600;
}
.min-width-6em {
  min-width: 6em !important;
}
.min-width-8em {
  min-width: 8em !important;
  display: block;
}
.min-width-10em {
  min-width: 10em !important;
  display: block;
}
.timestamp-like {
  width: 16em;
}
.min-width-date-like {
  width: 15em;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.max-width-id-like {
  max-width: 8em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.not-very-wide {
  display: block; /* spans don't respond */
  max-width: 18em;
}
.not-too-wide {
  display: block; /* spans don't respond */
  max-width: 35em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.badge-width {
  width: 10em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pretty-narrow {
  /* please note: used in tandem with not-too-wide */
  width: 7em;
}
.very-narrow {
  /* please note: used in tandem with not-too-wide */
  width: 6em !important;
}
.a-few-numbers-wide {
  width: 5em;
}
.icon-width {
  /* intended for fontawesome table cells */
  width: 2em;
}
.radio-button-width {
  width: 3em !important;
}
.double-icon-width {
  /* intended for fontawesome table cells */
  width: 4em;
}
.normal-size {
  color: var(--color-text-01);
  font-size: inherit;
  font-weight: inherit;
}
.small-bottom-pad {
  margin-bottom: 1ex;
  display: inline-flex;
}
.tiny-top-pad {
  margin-top: 0.125em;
}
.small-top-pad {
  margin-top: 1ex;
}
.top-pad {
  margin-top: 1em;
}
.repl:not(.sidecar-visible) .result-as-multi-table-flex-wrap .big-top-pad:not(:last-child) > div,
body.subwindow .result-as-multi-table-flex-wrap .big-top-pad:not(:last-child) > div {
  padding-right: 2em;
}
sidecar .result-as-table .big-top-pad:first-child {
  margin-top: 0;
}
.small-left-pad {
  margin-left: 1ex;
}
.left-pad {
  margin-left: 1em;
}
.small-right-pad {
  margin-right: 1ex;
}
.right-pad {
  margin-right: 1em;
}
.emphasize {
  font-size: 1.5rem;
  font-weight: 900;
}
.count-with-label[data-is-plural="false"] .label-plural,
.count-with-label[data-is-plural="true"] .label-singular {
  display: none;
}
.clickable-color {
  color: var(--color-base09);
}
.clickable-blatant {
  text-decoration: underline;
  text-decoration-color: var(--color-text-02);
}
.clickable:hover,
.entity-name-group:not(.header-cell) .entity.actions:hover .entity-name {
  cursor: pointer;
  text-decoration: underline;
}
.clickable-block {
  cursor: pointer;
}
.clickable-block:hover {
  border-color: var(--color-ui-05) !important;
}
.graphical-clickable:hover {
  cursor: pointer;
}
.template {
  display: none;
}
.toggle-visibility-on-hover .visible-on-hover {
  transition-property: opacity;
  font-size: 70%;
  font-weight: 900;
  opacity: 0;
}
.toggle-visibility-on-hover:hover .visible-on-hover {
  opacity: 0.5;
}
.hideable {
  transition-property: all;
}
.hidden {
  opacity: 0;
  height: 0;
  flex: 0 0 0;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  min-height: 0; /* important for firefox */
}
.offscreen {
  position: absolute;
  top: -1000px;
  left: -1000px;
}
.not-displayed {
  display: none !important;
}
.scrollable.scrollable-auto {
  overflow-y: auto;
  overflow-x: hidden;
}
.scrollable {
  overflow-y: scroll;
  overflow-x: hidden;
}
.scrollable-x {
  overflow-y: hidden;
  overflow-x: scroll;
}
.code-highlighting.scrollable {
  /* sidecar custom entity container */
  flex: 1;
}
/* Track */
.scrollable::-webkit-scrollbar-track,
.scrollable-x::-webkit-scrollbar-track,
.scrollable-auto::-webkit-scrollbar-track {
  box-shadow: inset 0 0 8px var(--color-scrollbar-track);
  border-radius: 10px;
  border-radius: 10px;
}
/* Handle */
.scrollable::-webkit-scrollbar-thumb,
.scrollable-x::-webkit-scrollbar-thumb,
.scrollable-auto::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: var(--color-scrollbar-thumb);
  border: 1px solid var(--color-scrollbar-thumb-border);
  outline: 1px solid var(--color-scrollbar-thumb-outline);
}
.result-as-table.scrollable::-webkit-scrollbar-thumb,
.result-as-table.scrollable::-webkit-scrollbar-track {
  box-shadow: none;
}
.scrollable::-webkit-scrollbar,
.scrollable-auto::-webkit-scrollbar {
  width: 9px;
  height: 9px;
}
.scrollable-x::-webkit-scrollbar {
  height: 8px;
}

/* highlight.js tweaks */
.hljs {
  padding: 0;
}
.hljs-number,
.hljs-literal {
  color: var(--color-brand-03);
}

/* help */
.help-options {
  display: table;
}
.help-option {
  display: table-row;
}
.help-option > div {
  display: table-cell;
  padding: 0.5ex 1ex;
  white-space: normal;
}
.help-option-left-column {
  font-weight: bold; /* make the command name bold */
  text-align: right;
  border-left: 3px solid transparent;
  width: 10em;
}
.help-option-interior-node-designation {
  /* any designation that this command is a "context-changing" command, as opposed to a leaf-node command that actually does something */
  font-weight: normal;
  opacity: 0.6;
}
.help-option .help-option-synonyms-column {
  padding-right: 1.5em;
  width: 10em;
}
.sidecar-visible .help-option .help-option-synonyms-column {
  /* with the sidecar visible, there isn't room for the synonyms column */
  width: 0;
}
.sidecar-visible .help-option .help-option-synonym {
  color: transparent;
  width: 0;
  padding: 0;
}
.help-option-synonyms-list {
  display: flex;
  align-items: center;
  font-size: 80%;
  opacity: 0.6; /* fira mono has no 300 font-weight specimen */
}
.help-option-synonym:not(:last-child) {
  padding-right: 1ex;
}
.help-option-synonym:not(:last-child):after {
  content: ",";
}

/* activation logs */
body[kui-theme-style="dark"] .log-lines,
body[kui-theme-style="dark"] .list-paginator,
body[kui-theme-style="dark"] .repl .log-lines .log-line .log-field,
body[kui-theme-style="dark"] .result-as-table .result-table,
body[kui-theme-style="dark"] .result-as-table.result-table {
  border-color: var(--color-ui-03);
}
.log-lines {
  border: 1px solid var(--color-ui-04);
}
.log-lines {
  display: table;
  border-collapse: collapse;
  width: 100%;
}
.log-lines-message-for-activations {
  font-size: 1rem;
  padding-bottom: 1em;
}
.log-lines .log-line {
  /* every row in the log table */
  display: table-row;
  height: 3em;
}
.log-lines .log-line .log-field {
  /* every field in the log table */
  display: table-cell;
  vertical-align: middle;
  padding: 0.375rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  opacity: 1; /* see issue #132 */
}
.repl .log-lines .log-line .log-field {
  border-top: 1px solid var(--color-ui-04);
}
.log-lines .log-line .log-field.log-message {
  vertical-align: middle;
  /* padding-top: 1em;
    padding-bottom: 1em; */
}
sidecar .activation-result .log-line .log-field code {
  font-size: 1em;
  margin: 0.375em 0.375em 0 0;
  padding: 1em;
  background: var(--color-ui-01);
  border: 1px solid var(--color-ui-04);
  box-shadow: 0 0 2px var(--color-ui-04);
}
sidecar .activation-result .log-line .log-field > div > div:first-child code {
  margin-top: 0;
}
.log-lines .log-line .log-field.activationId {
  font-weight: 500;
}
.log-lines .log-line .log-field.activationId:not(.full-width) {
  width: 6em;
  overflow: hidden;
  text-overflow: clip;
  white-space: nowrap;
}
.repl.sidecar-visible .log-lines .log-line .log-field.activationId:not(.full-width) {
  /* further squish the activation id when the sidecar is visible */
  max-width: 8em;
}
.repl.sidecar-visible .log-lines .log-line .log-line-bar-field,
.repl.sidecar-visible .log-lines .log-line .log-field.start-time-field,
.repl.sidecar-visible .log-lines .log-line .hide-with-sidecar:not(.keep-with-sidecar),
.repl.sidecar-visible .entity-attributes .hide-with-sidecar:not(.keep-with-sidecar) {
  /* hide bar chart when the sidecar is visible */
  max-width: 0;
  padding: 0;
  /*opacity: 0 !important;*/ /* see https://github.com/ibm-functions/shell/issues/278 */
  width: 0;
  border: none;
  display: none;
}
.log-lines .log-line .log-field-right-align {
  text-align: right;
}
.log-lines .log-field.log-field-right-align.duration-field {
  width: 6em;
}
.log-lines .log-line .log-line-bar-field {
  position: relative;
  width: 50%;
  max-width: 20em;
}
.result-as-table .log-lines .log-line .log-line-bar-field {
  /* add a left-right border to the timeline bars, but only for the repl side, not the sidecar Trace view */
  border: 1px solid var(--color-ui-04);
}
.log-lines .log-field.entity-name {
  max-width: 20em;
}
.log-lines .log-line .log-line-bar {
  top: 25%;
  min-width: 2px;
  height: 1.25em;
  position: absolute;
}
.log-lines .log-line:hover .log-line-bar {
  z-index: 10; /* tooltip layering */
}
.log-lines .log-line .log-line-bar:hover {
  filter: brightness(1.2) !important;
}
.log-lines .log-line.log-line-root .log-line-bar {
  border: 1px solid;
}
.log-lines .log-line .log-field.log-date {
  /* the date part of log lines */
  vertical-align: middle;
  text-align: right;
  width: 15em;
}
.log-lines .log-line .log-field.log-date > span {
  /* the date part of log lines */
  display: block;
  font-size: 0.925em;
  font-weight: 500;
  white-space: pre-wrap;
  vertical-align: middle;
}
.log-lines .log-line .log-field.log-date .entity-name,
.log-lines .log-line .log-field.log-date .provider-name {
  /* this represents e.g. the origin or source line for a log entry */
  color: var(--color-text-02);
  display: block;
  font-weight: 400;
}
.log-lines .log-line .log-field.log-date .provider-name {
  color: var(--color-base09);
}
.log-lines .log-line .log-field.log-date:not(.hljs-attribute) {
  color: var(--color-text-02);
}
.log-lines .log-line .log-field.log-date.hljs-attribute {
  color: var(--color-base0C);
}
.log-lines .log-line .log-message {
  white-space: pre-wrap;
}
sidecar .log-lines:not(.log-lines-loose) .log-line {
  height: auto;
}
sidecar .log-lines .log-line:nth-child(2n) .log-field {
  background: var(--color-ui-03); /* <-- zebra */
}

/* legend for activation/trace list */
.legend-list,
.legend-trace {
  text-align: right;
  font-family: var(--font-sans-serif);
}
.legend-list {
  padding-bottom: 0.75em;
  transition-property: height, width;
}
.repl.sidecar-visible .legend-list {
  /* don't show legend when the sidecar is open. see issue #138 */
  opacity: 0;
  height: 0;
  width: 0;
}
.legend-trace {
  padding-bottom: 0.75em;
}
.legend-stripe,
.legend-entry {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.legend-stripe {
  font-size: 0.75em;
}
.legend-icon {
  display: inline-block;
  width: 11em;
  height: 0.875em;
}
.legend-entry {
  flex-direction: column;
  align-items: flex-end;
}
.legend-entry:not(:last-child) {
  margin-right: 2em;
}
.legend-trace[data-hover-type="execution-time"] .legend-entry[data-legend-type="execution-time"] {
  opacity: 1;
}
.legend-trace[data-hover-type="container-initialization"] .legend-entry[data-legend-type="container-initialization"] {
  opacity: 1;
}
.legend-trace[data-hover-type="queueing-delays"] .legend-entry[data-legend-type="queueing-delays"] {
  opacity: 1;
}
.legend-trace[data-hover-type="failures"] .legend-entry[data-legend-type="failures"] {
  opacity: 1;
}
.legend-trace[data-hover-type] .legend-entry {
  /* legend entries that don't match the current hover type get more opaque */
  opacity: 0.3;
}
.legend-list:hover .legend-entry,
.legend-trace:hover .legend-entry {
  opacity: 1;
}
.log-line-bar[data-balloon]:after {
  width: auto;
}

/* notification area */
#notification-area {
  display: flex;
  align-items: center;
}
#notification-area > div {
  margin-left: 0.5ex;
}
#notification-area a:not(:hover) {
  color: inherit;
}

/* spin animation */
@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

body.subwindow .repl-block .ok-line,
body.subwindow .repl-block .oops {
  font-size: 2.5vmin;
}
body.subwindow .repl-result-like {
  font-size: 2vmin;
}
body.subwindow sidecar .sidecar-bottom-stripe-close {
  /* no close button if in subwindow/popup mode */
  display: none;
}
body.subwindow .repl-block.processing .repl-prompt-right-elements,
body.subwindow .repl-block.processing .repl-prompt-right-element-status-icon {
  margin: 0 auto;
  padding: 0;
}
body.subwindow .repl-block.processing .kui--repl-prompt-buttons {
  /* screenshot etc. widgets */
  display: none;
}
body.subwindow .repl-block.processing .kui--icon-processing > svg, /* loading icon */
body.subwindow .repl .repl-prompt-right-element-status-icon svg {
  width: 15vmin;
  height: 15vmin;
}
body.subwindow.sidecar-full-screen .sidecar-bottom-stripe-maximize:not(.screenshot-button) {
  /* in subwindow mode, no maximize or unmaximize buttons */
  display: none;
}
/*body.subwindow sidecar .activation-result .log-line .log-field code {
    background: var(--color-ui-02);
}*/
body.subwindow sidecar .log-lines .log-line:nth-child(2n + 1) .log-field {
  background: var(--color-ui-02);
}
body.subwindow .activation-result {
  background: var(--color-ui-02);
}
body.subwindow .repl-block {
  background-color: transparent;
}
body.subwindow sidecar {
  border-left: none;
  box-shadow: none;
}
body.subwindow[data-presentation="FixedSize"] .repl-block {
  margin: 0;
  flex: 1;
  display: flex;
}
body.subwindow[data-presentation="FixedSize"] .result-table {
  table-layout: fixed;
  width: 100%;
}
body.subwindow[data-presentation="FixedSize"] sidecar .sidecar-header {
  border-bottom-color: var(--color-base01);
}
body.subwindow[data-presentation="FixedSize"] .result-table-title-outer {
  display: none;
}
body.subwindow[data-presentation="FixedSize"] .repl-block .repl-result {
  flex: 1;
}
body.subwindow:not(.sidecar-visible) .repl {
  display: flex;
}
body.subwindow.tutorial-is-fullscreen .main {
  align-items: initial;
}
body.subwindow:not(.sidecar-visible) sidecar {
  width: 0;
}
body.subwindow:not(.sidecar-is-minimized) .left-tab-stripe .left-tab-stripe-buttons,
body.subwindow:not(.sidecar-is-minimized) .left-tab-stripe #theme-button,
body.subwindow:not(.sidecar-is-minimized) .left-tab-stripe #help-button {
  display: none;
}
body.subwindow:not(.sidecar-is-minimized) .left-tab-stripe #new-tab-button svg {
  font-size: 6vw;
}
body.subwindow sidecar .sidecar-header .sidecar-header-text.is-repl-like .entity-name {
  display: none;
}
body.subwindow sidecar .sidecar-header-text.is-repl-like .repl-input {
  display: flex;
}
body.subwindow sidecar .sidecar-header-name-content,
body.subwindow sidecar .sidecar-header-text,
body.subwindow sidecar .sidecar-header-text.is-repl-like .repl-input {
  /* make sidecar-header-input occupy full width */
  flex: 1;
}
body.subwindow sidecar .padding-content {
  flex: 1;
  padding: 4vh 6vh 0;
  display: flex;
  flex-direction: column;
}
body.subwindow sidecar .padding-content .padding-content {
  /* this rule protects against nested padding-content; we don't want to pad twice */
  padding: 0;
}
body.subwindow[data-presentation="FixedSize"] sidecar .padding-content {
  /* content takes care of layout, e.g. monaco-editor */
  padding: 0;
}
body.subwindow sidecar .padding-content {
  overflow: auto;
}
body.subwindow .result-table {
  margin: 0;
}
body.subwindow .repl,
body.subwindow .repl-block .repl-result {
  font-size: unset;
  overflow: unset;
}
body.subwindow sidecar .sidecar-header-secondary-content {
  font-size: 1em;
}
body.subwindow:not([data-presentation="FixedSize"]) .repl,
body.subwindow:not([data-presentation="FixedSize"]) .custom-content {
  font-size: 2.5vmin;
}
body.subwindow .repl,
body.subwindow .repl-block,
body.subwindow .result-as-table {
  display: initial;
}
body.subwindow .repl-block {
  font-family: var(--font-monospace);
  margin: auto;
}
body.subwindow:not([data-presentation="FixedSize"]) .result-as-table {
  padding-bottom: 4vh;
}
body.subwindow .result-as-multi-table:not(.scrollable) {
  display: flex;
  flex-direction: column;
}
body.subwindow .scrollable {
  overflow-x: scroll;
}
body.subwindow .scrollable-auto {
  overflow-x: auto;
  flex: 1;
}
body.subwindow .result-as-table.result-as-multi-table-flex-wrap {
  display: initial;
}
body.subwindow .repl {
  overflow: hidden;
}
body.subwindow .repl.sidecar-visible {
  display: none;
  flex: 0;
  opacity: 0;
  margin: 0;
  width: 0;
  height: 0;
}
body.subwindow .repl-input {
  padding: 0;
}
body.subwindow .repl-block.processing .repl-output {
  padding-top: 1em;
  display: block;
}
body.subwindow .repl-output {
  padding: 0 1em 0 1em;
}
body.subwindow .repl-prompt {
  border: none;
  margin-right: 0;
}
body.subwindow .repl-prompt svg {
  display: none;
}
body.subwindow .repl .repl-input .repl-prompt,
body.subwindow .repl-result-spinner,
body.subwindow .repl .repl-input input,
body.subwindow .repl .repl-prompt-timestamp,
body.subwindow sidecar .repl-input,
body.subwindow sidecar .repl-block .ok-line:not(.show-in-popup) .ok {
  display: none;
}
body.subwindow .repl-inner {
  display: flex;
}
body.subwindow .repl-block {
  padding: 0;
  display: flex;
  flex: 1;
  background-color: transparent;
  justify-content: center;
  overflow: hidden;
}
body.subwindow .repl-block:not(:first-child) {
  display: none;
}
body.subwindow sidecar .sidecar-bottom-stripe {
  font-size: 2vmin;
  min-height: unset;
}
body.subwindow sidecar .usage-error-wrapper .page-content {
  display: flex;
  flex-direction: column;
}
body.subwindow .page-content h2,
body.subwindow .page-h2 {
  font-size: 3.75vmin;
  padding: 1vmin 0 1.5vmin;
}
body.subwindow .bx--breadcrumb-item {
  margin-right: 2vmin;
}

/* we use titleBarStyle:hidden/hiddenInset on mac; this makes room for the window close/min/max buttons */
body.os-darwin:not(.fullscreen) .header {
  padding-left: 5em;
}

body.subwindow .header {
  margin: 0;
}
sidecar .repl-input {
  display: none;
}
body.subwindow sidecar .repl-input input {
  -webkit-app-region: no-drag;
  font-family: var(--font-sans-serif);
  font-size: unset;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
body.subwindow .header .header-left-bits .deemphasize {
  display: none;
}
body.subwindow .header .header-right-bits li.header-hide-when-narrow {
  display: none;
}
body.subwindow .header .header-right-bits {
  font-size: 2.5vw;
}
body.subwindow .header .header-right-bits .toggle-visibility-on-hover {
  height: initial;
}
body.subwindow .header .header-right-bits .toggle-visibility-on-hover .visible-on-hover {
  display: none;
}
sidecar.no-icon .sidecar-header-icon-wrapper .sidecar-header-icon {
  display: none;
}
.subwindow sidecar .sidecar-header .header-right-bits .activation-viz-plugin.grid-header-key table {
  border-spacing: 0;
}
body.subwindow sidecar.entity-is-actions:not(.entity-is-sequence) .action-source,
sidecar .activation-result {
  padding: inherit;
}
sidecar .activation-result {
  padding: 0;
}
body.subwindow .sidecar-full-screen sidecar .sidecar-header .entity-name-line {
  flex-wrap: wrap;
}
body.subwindow .sidecar-full-screen sidecar .sidecar-header .action-content #version {
  min-height: 20px;
}
body.subwindow .repl-block.processing .repl-prompt-right-element-status-icon {
  font-size: 3em;
}

/*
 if we want to hide the close button in the sidecar bottom stripe when in sidecar-full-screen mode
body.subwindow .sidecar-full-screen sidecar:not(.minimized) .sidecar-bottom-stripe .sidecar-bottom-stripe-close {
    display: none;
}*/

/* used by bottom-stripe to flush-right buttons */
.fill-container {
  flex: 1;
  display: flex;
  align-items: center;
}
.fill-container.flush-right {
  justify-content: flex-end;
}
a.kui--tab-navigatable {
  /* remove the hyperlink underline */
  text-decoration: none;
}
a.kui--tab-navigatable:hover {
  color: inherit;
}
.graphical-icon {
  /* font awesome icons in the bottom stripe */
  display: flex;
  justify-content: center;

  /* these two rules are an attempt to push the tooltips just above the bottom stripe */
  height: 100%;
  align-items: center;
}
.graphical-icon.disabled {
  opacity: 0.3;
}
.graphical-icon.disabled:hover {
  opacity: 0.3 !important;
  color: inherit !important;
  cursor: default !important;
}
.graphical-icon[data-balloon]:after,
.graphical-icon[data-balloon]:before {
  text-transform: none;
  transition-delay: 750ms;
}
.graphical-icon svg path {
  fill: var(--color-text-against-dark-bg);
}
body:not(.no-tooltips-anywhere) .graphical-icon:hover svg path {
  fill: var(--color-brand-01);
}

/* pulse animation for repl.partial */
input.repl-partial,
.alert-pulse {
  animation: alert-pulse 500ms 1;
  animation-direction: alternate;
}
@keyframes alert-pulse {
  0% {
    color: inherit;
  }
  50% {
    font-weight: bold;
    color: rgb(227, 26, 28);
    transform: scale(1.02);
  }
  100% {
    color: inherit;
  }
}
@keyframes selected-pulse {
  0% {
    color: inherit;
  }
  100% {
    color: var(--color-brand-03);
  }
}
@keyframes big-pulse {
  0% {
  }
  50% {
    filter: hue-rotate(-45deg);
  }
  100% {
    filter: hue-rotate(45deg);
    transform: scale(1.25);
  }
}

.pulse {
  animation: pulse 1000ms 1;
}
.repeating-pulse {
  animation: pulse 1000ms infinite alternate-reverse;
}
@keyframes pulse {
  0% {
    opacity: 0.25;
  }
  100% {
    opacity: 1;
  }
}

/* restart needed warning */
body:not(.oops-total-catastrophe) #restart-needed-warning {
  display: none;
  opacity: 0;
}
#restart-needed-warning {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#restart-needed-warning i {
  font-size: 12vw;
  color: var(--color-base08);
}
#restart-needed-warning .restart-needed-warning-content {
  color: var(--color-base06);
  font-size: 3vw;
  padding: 5vmin;
}
body.oops-total-catastrophe #restart-needed-warning {
  opacity: 1;
}

/* tooltips */
.force-no-hover [data-balloon]:before,
.force-no-hover [data-balloon]:after {
  /* e.g. the screenshot plugin wants to disallow tooltips on the
   "capture screenshot" button while capturing a screenshot! */
  display: none;
}
sidecar [data-balloon]:before,
sidecar [data-balloon]:after {
  transition-delay: 750ms;
}
[data-balloon]:hover {
  cursor: pointer;
  opacity: 1 !important;
}
[data-balloon]:after {
  width: 13em;
  white-space: normal !important;
  text-align: center;
}
[kui-theme-style] .use-dark-tooltips [data-balloon]:after {
  background-color: rgba(17, 17, 17, 0.9);
  color: var(--color-white) !important;
}
[kui-theme-style] .use-dark-tooltips [data-balloon]:before {
  background-color: var(--color-base00);
}
[kui-theme-style] [data-balloon]:after {
  background-color: var(--color-base05);
  color: var(--color-base01) !important;
}
[kui-theme-style] [data-balloon]:before {
  background-image: none;
  background-color: var(--color-base05);
  mask-repeat: no-repeat;

  mask-position: 50% 100%;
  -webkit-mask-position: 50% 100%;
  mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba(17,17,17,0.9)%22%20transform%3D%22rotate(0)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba(17,17,17,0.9)%22%20transform%3D%22rotate(0)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");
}
[kui-theme-style] [data-balloon][data-balloon-pos="left"]:before {
  mask-position: 100% 50%;
  -webkit-mask-position: 100% 50%;
  mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba(17,17,17,0.9)%22%20transform%3D%22rotate(-90 18 18)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba(17,17,17,0.9)%22%20transform%3D%22rotate(-90 18 18)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");
}
[kui-theme-style] [data-balloon][data-balloon-pos="down"]:before,
[kui-theme-style] [data-balloon][data-balloon-pos="down-left"]:before,
[kui-theme-style] [data-balloon][data-balloon-pos="down-right"]:before {
  mask-position: 50% 0%;
  -webkit-mask-position: 50% 0%;
  mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba(17,17,17,0.9)%22%20transform%3D%22rotate(180 18 6)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba(17,17,17,0.9)%22%20transform%3D%22rotate(180 18 6)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");
}
[kui-theme-style] [data-balloon][data-balloon-pos="right"]:before {
  mask-position: 0% 50%;
  -webkit-mask-position: 0% 50%;
  mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba(17,17,17,0.9)%22%20transform%3D%22rotate(90 6 6)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba(17,17,17,0.9)%22%20transform%3D%22rotate(90 6 6)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");
}
.main [data-balloon]:after {
  font-size: 0.875rem !important;
}
[data-balloon][data-balloon-break]::before,
[data-balloon][data-balloon-break]::after {
  /* you can add &#10; (\u000a if innerText) to data-balloon attrs to force a line break; make sure to add data-balloon-break attr, too */
  white-space: pre-wrap !important;
}

/* help widget */
.help-widget {
  padding-left: 0.5ex;
  font-size: 0.875em;
}

.go-away-able {
  transition-property: opacity;
}
.go-away {
  opacity: 0;
}
.go-away-able .go-away-button {
  transition-property: all;
}
.go-away-able .go-away-button:hover {
  filter: brightness(1.2);
  cursor: pointer;
}

.list-paginator {
  display: flex;
  justify-content: flex-end;
  font-family: var(--font-sans-serif);
  color: var(--color-text-02);
  background-color: transparent;
  border: 1px solid var(--color-ui-04);
  border-top: none;
  height: 2em;
}
.list-paginator .list-paginator-left-buttons {
  display: flex;
  align-items: center;
  padding: 0 1em;
  flex: 1;
}
.list-paginator .list-paginator-left-buttons > span {
  /* a list paginator left button */
  transition-property: all;
}
.list-paginator .list-paginator-left-buttons > span:hover {
  opacity: 1;
}
.list-paginator .list-paginator-left-buttons > span:not(:first-child) {
  /* a list paginator left button, except for the first one */
  margin-left: 1em;
}
.list-paginator .list-paginator-right-buttons {
  display: flex;
  font-weight: 400;
  font-size: 0.875em;
}
.list-paginator .list-paginator-description {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
}
.list-paginator .list-paginator-button {
  border-left: 1px solid var(--color-ui-04);
  transition-property: all;
  width: 2.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25em;
}
.list-paginator .list-paginator-button svg path {
  fill: var(--color-text-02);
}
.list-paginator .list-paginator-button.list-paginator-button-disabled svg path {
  fill: var(--color-ui-05);
}
.list-paginator .list-paginator-button:not(.list-paginator-button-disabled):hover {
  cursor: pointer;
}
.list-paginator .list-paginator-button:not(.list-paginator-button-disabled):hover svg path {
  fill: var(--color-brand-01);
}

.wrap-normal {
  /* i want this element to line wrap normally */
  white-space: normal;
}

/* sidecar minimize to stripe */
sidecar.minimized {
  flex: 0 0 calc(0.375rem * 2 + 0.75rem); /* designed to match the ? in the header */
  align-items: stretch;
}
sidecar.minimized header.sidecar-header {
  display: none;
}
sidecar.minimized .header-left-bits {
  overflow: visible;
}
sidecar .sidecar-header-icon-wrapper > span {
  padding: 0 0.5em;
}
sidecar.minimized .sidecar-header-icon-wrapper {
  width: calc(0.375rem * 2 + 0.75rem); /* match sidecar.minimized flex-basis */
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 0.375em 0;
  overflow: unset; /* see overflow:hidden for sidecar .sidecar-header-icon-wrapper */
  border: none;
  padding: 0;
}
sidecar.minimized .sidecar-header-icon {
  width: 0;
  height: calc(0.375rem * 2 + 0.75rem); /* match sidecar.minimized flex-basis */
  flex: 1;
  transform-origin: 0% 0%;
  justify-content: flex-start;
}
sidecar.minimized .sidecar-bottom-stripe-left-bits {
  align-items: unset;
}
sidecar.minimized .sidecar-bottom-stripe-left-bits .sidecar-header-icon-wrapper {
  padding: 0;
  margin: 0;
}
sidecar.minimized header.sidecar-header .sidecar-header-secondary-content,
sidecar.minimized header.sidecar-header .sidecar-header-right-bits,
sidecar.minimized .sidecar-header-name,
sidecar.minimized .sidecar-content-container,
sidecar.minimized .sidecar-header-icon-wrapper-for-namespace,
sidecar.minimized .sidecar-bottom-stripe-left-bits > div:not(.sidecar-header-icon-wrapper),
sidecar.minimized .sidecar-bottom-stripe-toolbar,
sidecar.minimized .header-right-bits {
  display: none;
  flex: 0;
  opacity: 0;
  margin: 0;
  width: 0;
  height: 0;
}
sidecar.minimized .sidecar-header-icon-wrapper .sidecar-header-icon {
  transform: rotate(-90deg);
  transform-origin: center;
}
sidecar.minimized .sidecar-bottom-stripe {
  align-items: center;
  padding: 0 0.375em;
  box-shadow: none;
  flex: 1;
  flex-direction: column;
  border-left: 1px solid var(--color-base03);
  border-bottom: none;
}
sidecar.minimized .sidecar-bottom-stripe-button:not(.sidecar-bottom-stripe-close) {
  /*flex: 0;*/
  display: none;
}
sidecar.minimized .sidecar-bottom-stripe-button.sidecar-bottom-stripe-close {
  padding: 1ex 0;
  margin: 0;
  text-align: center;
}
sidecar.minimized .graphical-icon {
  justify-content: center;
  transform: scaleX(-1);
  height: unset !important;
  padding: 0 !important;
}
sidecar.minimized [data-balloon]:before,
sidecar.minimized [data-balloon]:after {
  opacity: 0;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade-in {
  animation: fadein 1s ease-in-out;
}

/* grabbable elements */
.grabbable {
  cursor: -webkit-grab;
}
.grabbable:active {
  cursor: -webkit-grabbing;
}

.capitalize {
  text-transform: capitalize;
}

/* usage */
.usage-error-wrapper {
  color: var(--color-text-01);
  font-weight: normal;
  margin: 0 1em;
}
.usage-error-wrapper .marked-content {
  /* marked markdown renderer section */
  white-space: normal;
  font-size: 1em;
  max-width: 45em;
  border-left: 3px solid var(--color-ui-03);
  padding: 0.375em;
  background-color: var(--color-base01);
}
.usage-error-wrapper .marked-content p {
  /* marked markdown renderer paragraphs */
  margin: 0.25em 0;
  white-space: pre-wrap;
}
.usage-error-wrapper .bx--breadcrumb-item .bx--link {
  letter-spacing: 2px;
}
.usage-error-wrapper .hideable {
  margin: 2em 0;
  color: var(--color-text-01);
}
sidecar .usage-error-wrapper .hideable {
  background: transparent;
}
.usage-error-wrapper h3,
.usage-error-wrapper h4 {
  font-weight: 400;
  font-size: 1.125em;
  color: var(--color-brand-01);
  font-family: var(--font-sans-serif);
}
.usage-error-wrapper h4 {
  text-transform: capitalize;
  margin: 0 0 0.375em;
}
.usage-error-wrapper .log-lines .log-line {
  /* usage docs tend to be multi-line */
  height: unset;
}
.usage-error-wrapper .log-lines .log-line .log-field {
  /* used in tandem with height: unset */
  padding-top: 0.875em;
  padding-bottom: 0.875em;
  background-color: var(--color-ui-02);
}
.usage-error-wrapper h4 {
  margin: 1.33em 0 0.375em;
}
.usage-error-wrapper .example-command-text {
  color: var(--color-name);
}

/* markdown */
.page-content {
  flex: 1;
}
.page-content hr {
  margin: 2em 0;
  border: 0.5px solid var(--color-content-divider);
}
.page-content img {
  max-width: 100%;
}
.page-content img[align="right"] {
  padding-left: 20px;
}
.page-content p {
  font-weight: 400;
  line-height: 1.25em;
}
.page-content p:not(:last-child) {
  padding-bottom: 0.5em;
}
.page-content h1 {
  margin-bottom: 1rem;
  font-size: 3.375em;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.25;
  padding: 0;
}
.page-content h2,
.page-h2 {
  font-size: 1.75em;
  font-weight: 300;
  margin: 1em 0;
  position: relative;
  line-height: 1.25;
}
.page-content h2::before,
.page-h2::before {
  background-color: var(--color-content-divider);
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  bottom: -5px;
  width: 100%;
}
.page-content > h3:first-child,
.page-content > h2:first-child,
.page-content hr + h3 {
  margin-top: 0;
  padding-top: 0;
}
.page-content h3,
.page-h3 {
  color: var(--color-content-divider);
  font-size: 1.125em;
  font-weight: 600;
  letter-spacing: 0;
  padding: 1em 0 1em;
  line-height: 1.25em;
}
.page-content ol,
.page-content ul {
  font-size: 1em;
  line-height: 1.75;
  margin: 1em 0 1em 1.5em;
  margin-top: 1em;
}
.page-content li {
  font-weight: 400;
  list-style-type: disc;
  padding-bottom: 0.5em;
  line-height: 1.25em;
}
sidecar .page-content pre > code {
  display: inline-block;
}

.icon-container,
.icon-container > i {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.icon-container .deemphasize {
  white-space: nowrap;
  font-size: 0.5em;
  margin-top: 0.5ex;
}

body {
  font-family: var(--font-sans-serif);
  background-color: var(--color-ui-01);
  color: var(--color-text-01);
}

body a {
  color: var(--color-brand-01);
}
body a:hover:not(.plain-anchor) {
  color: var(--color-support-04);
}

.header {
  background: var(--color-stripe-01);
  color: var(--color-ui-01);
}
.header .application-name .bx--global-header__title--current-page {
  color: var(--color-support-04);
}

.repl-block.valid-response .repl-output.repl-result-has-content .ok {
  /* for now, let's not show the "ok" after every command, if the result block has content */
  display: none;
}
.repl-block.valid-response .ok,
.green-text,
.dragover .ok-text-on-dragover {
  color: var(--color-ok);
}
.green-text svg path {
  fill: var(--color-ok);
}

badge {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 600;
  background-color: var(--color-tag-beta-fill);
  color: var(--color-tag-beta-text);
}
badge.badge-as-image {
  background-color: transparent;
}
badge.badge-as-image img {
  width: 5em;
  height: auto;
}
badge.badge-as-fontawesome {
  padding: 0;
  font-size: 1.5em;
  color: var(--color-name);
}
.repl-result-prefix,
badge:not(.badge-as-fontawesome):not(.badge-as-image) {
  font-family: var(--font-sans-serif);
}
.result-table badge:not(.badge-as-image):not(.badge-as-fontawesome) {
  color: var(--color-text-02);
  background-color: transparent !important;
  display: flex;
  align-items: center;
  font-weight: normal;
  font-family: var(--font-monospace);
  letter-spacing: 0.16px;
}
.result-table badge:not(.badge-as-image):not(.badge-as-fontawesome):before {
  content: "";
  margin-right: 1ex;
  width: 0.75em;
  height: 0.75em;
  background-color: var(--color-ui-05);
  border-radius: 50%;
}
sidecar .result-table badge.green-background:not(.badge-as-image):before {
  background-color: var(--color-green-sidecar);
}
.result-table badge.green-background:not(.badge-as-image):before {
  background-color: var(--color-green);
  color: var(--color-ui-01);
}
sidecar badge.yellow-background:not(.badge-as-image):before {
  background: var(--color-yellow-sidecar);
}
.result-table badge.yellow-background:not(.badge-as-image):before,
button.yellow-background {
  background: var(--color-yellow);
  color: var(--color-ui-01);
}
sidecar .result-table badge.red-background:not(.badge-as-image):before {
  background: var(--color-red-sidecar);
}
.result-table badge.red-background:not(.badge-as-image):before {
  background: var(--color-red);
  color: var(--color-ui-01);
}
.result-table badge.gray-background:not(.badge-as-image):before {
  background: var(--color-processing);
  color: var(--color-ui-02);
}
badge.is-title-like,
badge.is-kind-like {
  background: var(--color-base0D);
}

.oops.oops-as-html {
  color: unset !important;
}
.repl-block.valid-response .oops,
sidecar.rule-enabled-false .sidecar-header-icon,
.repl-block.error .oops,
.clickable.oops,
.oops .oops-text-on-oops,
.red-text {
  color: var(--color-error);
}
.red-text svg path {
  fill: var(--color-error) !important;
}
.yellow-text {
  color: var(--color-support-03-darker);
}
.yellow-text svg path {
  fill: var(--color-support-03-darker);
}
.processing-text {
  color: var(--color-processing) !important;
}
.processing-text > svg path {
  fill: var(--color-processing) !important;
}
.cyan-text {
  color: var(--color-cyan) !important;
}
.cyan-text > svg path {
  fill: var(--color-cyan) !important;
}

sidecar.activation-success-false .sidecar-header-icon,
span[data-extra-decoration="application error"] {
  color: var(--color-red);
}

.repl-block.processing .repl-input input {
  color: var(--color-name);
}

sidecar .sidecar-header badge.version {
  /* badge for resource version */
  background-color: var(--color-tag-ibm-fill);
  color: var(--color-tag-ibm-text);
}
sidecar .sidecar-header badge.red-background {
  background-color: var(--color-red);
  color: var(--color-base00);
}
sidecar .sidecar-header badge.yellow-background {
  background-color: var(--color-yellow);
  color: var(--color-base01);
}
sidecar .sidecar-header badge.green-background {
  background-color: var(--color-green);
}
sidecar .sidecar-header badge.scope {
  background-color: var(--color-base0E);
  color: var(--color-base01);
}

badge.clickable:not(.badge-as-fontawesome):hover {
  background: hsl(203, 43%, 25%);
  text-decoration: none;
  /*var(--color-ui-01);*/
}

.entity.actions.app .repl-result-prefix {
  color: hsla(275, 41%, 32%, 1);
}
.entity.activations.is-sequence-true .repl-result-prefix {
  color: hsla(12, 45%, 45%, 1);
}
.entity .repl-result-prefix,
.entity .border-right {
  border-right-color: var(--color-content-divider);
}
.entity.actions.sequence .repl-result-prefix {
  color: hsla(265, 87%, 26%, 1);
}
.entity.packages .repl-result-prefix {
  color: hsla(275, 21%, 22%, 1);
}

/* sidecar bottom stripe */
.sidecar-bottom-stripe {
  color: var(--color-text-01);
  background: var(--color-stripe-02);
}
body:not(.subwindow) .sidecar-non-window-buttons .sidecar-bottom-stripe-button:last-child .graphical-icon {
  border-right: 1px solid var(--color-table-border1);
}
.sidecar-bottom-stripe-right-bits,
.sidecar-non-window-buttons,
.sidecar-window-buttons {
  display: flex;
}
.sidecar-bottom-stripe .sidecar-bottom-stripe-button {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sidecar-bottom-stripe .sidecar-bottom-stripe-button > span[role="tab"] {
  /* not-graphical stripe buttons */
  padding: 0 0.375em;
}
.sidecar-bottom-stripe .sidecar-bottom-stripe-button:first-child .graphical-icon {
  padding-left: 1em;
}
body.subwindow .sidecar-bottom-stripe .sidecar-bottom-stripe-button:first-child .graphical-icon {
  padding-left: 0.875vw;
}
body.subwindow .sidecar-bottom-stripe .sidecar-bottom-stripe-button .graphical-icon {
  padding-right: 0.875vw;
}
.sidecar-bottom-stripe .sidecar-bottom-stripe-button .graphical-icon {
  padding-right: 1em;
  height: 1.5em;
}
.sidecar-bottom-stripe .sidecar-bottom-stripe-button.sidecar-bottom-stripe-button-active {
  border-bottom-color: var(--color-base-03);
}
.sidecar-bottom-stripe .sidecar-bottom-stripe-button:not(.sidecar-bottom-stripe-button-active):hover,
.sidecar-bottom-stripe .sidecar-bottom-stripe-button.hover,
.sidecar-bottom-stripe-button-as-button.selected {
  color: var(--color-base0D);
}
.sidecar-bottom-stripe-button-as-button.selected svg path {
  fill: var(--color-brand-02);
}
body:not(.no-tooltips-anywhere)
  .sidecar-bottom-stripe
  .sidecar-bottom-stripe-button:not(.sidecar-bottom-stripe-button-active):hover
  svg
  path {
  fill: var(--color-support-04);
}
.sidecar-bottom-stripe
  .sidecar-bottom-stripe-button-as-button.sidecar-bottom-stripe-button-as-radio-button:not(.sidecar-bottom-stripe-button-active):hover,
.sidecar-bottom-stripe-button-as-button.sidecar-bottom-stripe-button-as-radio-button.selected {
  color: var(--color-support-03);
  color: #e31a1c;
}

sidecar .sidecar-header-icon {
  color: var(--color-name-sidecar);
}

.package-prefix {
  font-weight: 300;
}

.sequence-component {
  background-color: var(--color-ui-05);
  border-color: rgba(255, 255, 255, 0.3);
}

.header .clickable:hover {
  color: var(--color-support-04);
}
.clickable:not(.clickable-color):hover,
.entity.actions:hover .entity-name-group:not(.header-cell) .entity-name {
  color: var(--color-brand-01);
}

.graphical-clickable:hover {
  filter: brightness(1.25);
}

.help-option:hover {
  color: #3e6550;
}

.help-option:hover .help-option-left-column {
  border-left-color: rgba(62, 101, 80, 0.2);
}

.log-lines .log-line .log-line-bar.is-waitTime,
.legend-icon.is-waitTime {
  background: var(--color-ui-05);
}
body[kui-theme-style="dark"] .log-lines .log-line .log-line-bar.is-waitTime,
body[kui-theme-style="dark"] .legend-icon.is-waitTime {
  opacity: 0.5;
}
.log-lines .log-line .log-line-bar.is-initTime.is-success-true,
.legend-icon.is-initTime {
  /*background: var(--color-support-04);*/
  background: repeating-linear-gradient(
    -45deg,
    var(--color-green),
    var(--color-green) 2px,
    var(--color-ui-02) 3px,
    var(--color-ui-02) 4px
  );
  filter: grayscale(0.5) saturate(0.75);
}
.log-lines .log-line .log-line-bar.is-initTime.is-success-false {
  /*background: var(--color-support-04);*/
  background: repeating-linear-gradient(to right, var(--color-red), var(--color-red) 4px, white 4px, white 8px);
}

.log-lines .log-line .log-line-bar.is-success-true,
.legend-icon.is-runTime {
  background: var(--color-support-02);
}
.log-lines .log-line .log-line-bar.is-success-false,
.legend-icon.is-success-false {
  background: var(--color-support-01);
}
.log-lines .log-line.log-line-root .log-line-bar {
  background: #f3f3f3;
  border-color: rgba(0, 0, 0, 0.5);
}
.log-lines .log-line .log-line-bar.log-line-bar-conductor {
  background: #666;
}
.log-lines .log-line .log-message {
  border-left-color: var(--color-text-01);
}
.log-lines-message-for-activations {
  font-family: var(--font-sans-serif);
}
.log-lines .log-line.logged-to-stderr .log-date {
  /* special display for messages of error log lines */
  color: var(--color-error);
}
sidecar .custom-content .log-field pre > code {
  padding: 1em;
}
.log-lines .log-line .log-message pre code {
  white-space: pre-wrap;
}

#restart-needed-warning {
  background-color: var(--color-stripe-01);
  /*var(--color-ui-01);*/
}

.page [data-balloon]:after {
  font-family: var(--font-sans-serif);
}

/* directory listing coloring */
.dir-listing-is-directory {
  color: var(--color-name);
}
.dir-listing-is-executable {
  color: var(--color-support-01);
}
.dir-listing-is-link {
  color: var(--color-base0E);
}

body {
  /* define theme bindings; mapping color names to the base16 scheme */
  --color-black: var(--color-ui-01);
  --color-red: var(--color-base08);
  --color-green: var(--color-base0B);
  --color-yellow: var(--color-base0A);
  --color-cyan: var(--color-base0C);
  --color-blue: var(--color-base0D);
  --color-magenta: var(--color-base0E);
  --color-white: var(--color-base07);
  --color-light-gray: var(--color-base04);
  --color-dark-gray: var(--color-base03);
  --color-ui-01: var(--color-base00);
  --color-ui-02: var(--color-base01);
  --color-ui-03: var(--color-base03);
  --color-ui-04: var(--color-base02);
  --color-ui-05: var(--color-base04);
  --color-ui-06: var(--color-base02);

  --color-red-sidecar: var(--color-red);
  --color-yellow-sidecar: var(--color-yellow);
  --color-green-sidecar: var(--color-green);

  /* e.g. xterm ANSI colors; in case themes want a light yellow for
   badges, and a darker yellow for text */
  --color-yellow-text: var(--color-yellow);

  --color-table-border1: rgba(255, 255, 255, 0.35);
  --color-table-border2: rgba(255, 255, 255, 0.5);
  --color-table-border3: var(--color-ui-04);

  --color-brand-01: var(--color-blue);
  --color-brand-02: var(--color-magenta);
  --color-brand-03: var(--color-cyan);

  --color-field-01: var(--color-base01);

  --color-text-against-dark-bg: var(--color-text-01);
  --color-support-01: var(--color-red);
  --color-support-02: var(--color-green);
  --color-support-03: var(--color-yellow);
  --color-support-03-darker: var(--color-yellow);
  --color-support-04: var(--color-base0C);

  /* stripes */
  --color-stripe-01: var(--color-base01);
  --color-stripe-02: var(--color-base03);
  --color-sidecar-toolbar-background: #bebebe;
  --color-sidecar-toolbar-foreground: var(--color-base01);

  --color-text-01: var(--color-base06);
  --color-text-02: var(--color-base04);
  --color-text-inverted02: var(--color-text-02);

  --color-sidecar-background: var(--color-ui-02);
  --color-sidecar-border: var(--color-ui-04);
  --color-sidecar-header: var(--color-ui-01);

  --color-selection-background: var(--color-base04);
  --color-selection-foreground: var(--color-text-01);

  --color-ok: var(--color-green);
  --color-error: var(--color-red);
  --color-warning: var(--color-base09);

  --color-scrollbar-thumb: var(--color-base04);
  --color-scrollbar-thumb-border: var(--color-base02);
  --color-scrollbar-thumb-outline: transparent;
  --color-scrollbar-track: transparent;

  --color-hover-primary-text: var(--color-cyan);
  --color-content-divider: var(--color-ui-03);

  --color-tag-beta-fill: var(--color-base05);
  --color-tag-beta-text: var(--color-base01);
  --color-tag-ibm-fill: var(--color-base0D);
  --color-tag-ibm-text: var(--color-base01);

  /* default latency color spectrum */
  --color-latency-0: #2166ac;
  --color-latency-1: #67a9cf;
  --color-latency-2: hsla(201, 51%, 78%, 1); /* #d1e5f0 with lightness reduced from 88% to 78% */
  --color-latency-3: #fddbc7;
  --color-latency-4: #ef8a62;
  --color-latency-5: #b2182b;

  /* two-color charts; yellow versus cyan should be a pretty good default */
  --color-chart-0: var(--color-yellow);
  --color-chart-1: var(--color-cyan);

  /* map keys and values */
  --color-map-key: var(--color-base0C);
  --color-map-value: var(--color-text-01);

  /* entity names and kinds */
  --color-name: var(--color-base0C);
  --color-name-sidecar: var(--color-name);

  /* "is processing" color */
  --color-processing: var(--color-ui-05);

  /* tab colors */
  --color-tab-01: var(--color-base0D);
  --color-tab-02: var(--color-base09);
  --color-tab-03: var(--color-base0C);
  --color-tab-04: var(--color-base0B);
  --color-tab-05: var(--color-base0A);
  --color-tab-06: var(--color-base0E);
  --color-tab-07: var(--color-base08);
  --color-tab-08: var(--color-base04);
}

.color-base08 {
  color: var(--color-base08);
}
.color-base09 {
  color: var(--color-base09);
}
.color-base0A {
  color: var(--color-base0A);
}
.color-base0B {
  color: var(--color-base0B);
}
.color-base0C {
  color: var(--color-base0C);
}
.color-base0D {
  color: var(--color-base0D);
}
.color-base0E {
  color: var(--color-base0E);
}
.color-base0F {
  color: var(--color-base0F);
}

@media all and (max-width: 1100px) {
  .log-lines .log-field.start-time-field {
    display: none;
  }
}

.kui--rows {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden; /* notes: editor maximized horizontally overflows without this */
}
.kui--columns {
  flex: 1;
  display: flex;
  overflow: hidden; /* notes: chrome doesn't seem to need this; otherwise, repl scrolling will cause sidecar to overflow vertically */
}
.kui--input-stripe {
  display: none;
  /*position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2.75em;*/
  flex-basis: 2.75em;
  background-color: var(--color-stripe-01);
}
body.kui--bottom-input .kui--input-stripe {
  display: flex;
  padding: 1.5em 5em 1.5em 1em;
}
body.kui--bottom-input .repl .repl-active .repl-input {
  display: none;
}
body.kui--bottom-input tab > .kui--rows > .kui--columns {
  height: calc;
}
.kui--input-stripe .repl-block {
  flex: 1;
  padding: 0;
}
.kui--input-stripe .repl-input {
  font-size: 0.875em;
  flex: 1;
  background-color: var(--color-sidecar-header);
  padding: 0.5em 0.375em;
}
.kui--input-stripe .repl-input-like {
  overflow: unset;
}
.kui--input-stripe input {
  background-color: transparent;
}
body.kui--bottom-input .repl-context {
  display: none;
}
.kui--input-stripe .repl-context {
  display: none;
  font-size: 1em;
  padding: 0 0.1875em;
  height: auto;
  border: none;
  background: none;
}
.kui--input-stripe .repl-prompt {
  border: none;
}
.kui--input-stripe .repl-prompt-righty {
  font-size: 1.125em;
}

/* row selection */
.has-row-selection .row-selection-context .clickable {
  display: inline-block;
}
.row-selection-context.selected-row .selected-entity {
  font-size: 1.25em;
  color: var(--color-brand-03);
  animation: selected-pulse 300ms 3;
}
.row-selection-context.selected-row .selected-entity svg path {
  fill: var(--color-name) !important;
}
.row-selection-context:not(.selected-row) .selected-entity svg path {
  fill: var(--color-text-02) !important;
}
.row-selection-context:not(.selected-row) .selected-entity:not(:hover) .kui--radio-checked svg,
.row-selection-context:not(.selected-row) .selected-entity:hover .kui--radio-unchecked svg,
.row-selection-context.selected-row .selected-entity .kui--radio-unchecked svg {
  display: none;
}
.kui--radio-checked,
.kui--radio-unchecked {
  display: flex;
}
.kui--radio-checked svg,
.kui--radio-unchecked svg {
  width: 16px;
  height: 16px;
}

#offline-button {
  display: none;
}

#openwhisk-api-host,
#openwhisk-namespace {
  pointer-events: none;
}

#kui--custom-top-tab-stripe-button-container {
  /* e.g. holds the session disconnected icon */
  display: flex;
  flex: 1;
  justify-content: flex-end;
}

/* override the carbon color whhen tabbing through sidecar tabs*/
.bx--tabs__nav-item:not(.bx--tabs__nav-item--selected):not(.bx--tabs__nav-item--disabled):not(.bx--tabs__nav-item--selected)
  .bx--tabs__nav-link:focus,
.bx--tabs__nav-item:not(.bx--tabs__nav-item--selected):not(.bx--tabs__nav-item--disabled):not(.bx--tabs__nav-item--selected)
  a.bx--tabs__nav-link:active {
  color: var(--color-text-inverted02);
}
