.monaco-editor {
  --monaco-monospace-font: "SF Mono", Monaco, Menlo, Consolas, "Ubuntu Mono", "Liberation Mono", "DejaVu Sans Mono", "Courier New", monospace;
  font-family: -apple-system, BlinkMacSystemFont, Segoe WPC, Segoe UI, HelveticaNeue-Light, system-ui, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Droid Sans, sans-serif;
}

.monaco-menu .monaco-action-bar.vertical .action-item .action-menu-item:focus .action-label, .monaco-editor.vs-dark .monaco-menu .monaco-action-bar.vertical .action-menu-item:focus .action-label, .monaco-editor.hc-black .monaco-menu .monaco-action-bar.vertical .action-menu-item:focus .action-label, .monaco-editor.hc-light .monaco-menu .monaco-action-bar.vertical .action-menu-item:focus .action-label {
  stroke-width: 1.2px;
}

.monaco-hover p {
  margin: 0;
}

.monaco-aria-container {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  top: 0;
  overflow: hidden;
  position: absolute !important;
}

.monaco-editor, .monaco-diff-editor .synthetic-focus, .monaco-editor, .monaco-diff-editor [tabindex="0"]:focus, .monaco-editor, .monaco-diff-editor [tabindex="-1"]:focus, .monaco-editor, .monaco-diff-editor button:focus, .monaco-editor, .monaco-diff-editor input[type="button"]:focus, .monaco-editor, .monaco-diff-editor input[type="checkbox"]:focus, .monaco-editor, .monaco-diff-editor input[type="search"]:focus, .monaco-editor, .monaco-diff-editor input[type="text"]:focus, .monaco-editor, .monaco-diff-editor select:focus, .monaco-editor, .monaco-diff-editor textarea:focus {
  outline-offset: -1px;
  outline-width: 1px;
  outline-style: solid;
  outline-color: var(--vscode-focusBorder);
  opacity: 1;
}
.monaco-workbench .workbench-hover {
  z-index: 40;
  background: var(--vscode-editorHoverWidget-background);
  border: 1px solid var(--vscode-editorHoverWidget-border);
  color: var(--vscode-editorHoverWidget-foreground);
  box-shadow: 0 2px 8px var(--vscode-widget-shadow);
  border-radius: 3px;
  max-width: 700px;
  font-size: 13px;
  line-height: 19px;
  position: relative;
  overflow: hidden;
}

.monaco-workbench .workbench-hover hr {
  border-bottom: none;
}

.monaco-workbench .workbench-hover:not(.skip-fade-in) {
  animation: .1s linear fadein;
}

.monaco-workbench .workbench-hover.compact {
  font-size: 12px;
}

.monaco-workbench .workbench-hover.compact .hover-contents {
  padding: 2px 8px;
}

.monaco-workbench .workbench-hover-container.locked .workbench-hover {
  outline: 1px solid var(--vscode-editorHoverWidget-border);
}

.monaco-workbench .workbench-hover-container.locked .workbench-hover:focus, .monaco-workbench .workbench-hover-lock:focus {
  outline: 1px solid var(--vscode-focusBorder);
}

.monaco-workbench .workbench-hover-container.locked .workbench-hover-lock:hover {
  background: var(--vscode-toolbar-hoverBackground);
}

.monaco-workbench .workbench-hover-pointer {
  z-index: 41;
  pointer-events: none;
  position: absolute;
}

.monaco-workbench .workbench-hover-pointer:after {
  content: "";
  background-color: var(--vscode-editorHoverWidget-background);
  border-right: 1px solid var(--vscode-editorHoverWidget-border);
  border-bottom: 1px solid var(--vscode-editorHoverWidget-border);
  width: 5px;
  height: 5px;
  position: absolute;
}

.monaco-workbench .locked .workbench-hover-pointer:after {
  border-bottom-width: 2px;
  border-right-width: 2px;
  width: 4px;
  height: 4px;
}

.monaco-workbench .workbench-hover-pointer.left {
  left: -3px;
}

.monaco-workbench .workbench-hover-pointer.right {
  right: 3px;
}

.monaco-workbench .workbench-hover-pointer.top {
  top: -3px;
}

.monaco-workbench .workbench-hover-pointer.bottom {
  bottom: 3px;
}

.monaco-workbench .workbench-hover-pointer.left:after {
  transform: rotate(135deg);
}

.monaco-workbench .workbench-hover-pointer.right:after {
  transform: rotate(315deg);
}

.monaco-workbench .workbench-hover-pointer.top:after {
  transform: rotate(225deg);
}

.monaco-workbench .workbench-hover-pointer.bottom:after {
  transform: rotate(45deg);
}

.monaco-workbench .workbench-hover a {
  color: var(--vscode-textLink-foreground);
}

.monaco-workbench .workbench-hover a:focus {
  outline-offset: -1px;
  outline: 1px solid;
  outline-color: var(--vscode-focusBorder);
  text-decoration: underline;
}

.monaco-workbench .workbench-hover a:hover, .monaco-workbench .workbench-hover a:active {
  color: var(--vscode-textLink-activeForeground);
}

.monaco-workbench .workbench-hover code {
  background: var(--vscode-textCodeBlock-background);
}

.monaco-workbench .workbench-hover .hover-row .actions {
  background: var(--vscode-editorHoverWidget-statusBarBackground);
}

.monaco-workbench .workbench-hover.right-aligned {
  left: 1px;
}

.monaco-workbench .workbench-hover.right-aligned .hover-row.status-bar .actions {
  flex-direction: row-reverse;
}

.monaco-workbench .workbench-hover.right-aligned .hover-row.status-bar .actions .action-container {
  margin-left: 16px;
  margin-right: 0;
}
.monaco-scrollable-element > .scrollbar > .scra {
  cursor: pointer;
  font-size: 11px !important;
}

.monaco-scrollable-element > .visible {
  opacity: 1;
  z-index: 11;
  background: none;
  transition: opacity .1s linear;
}

.monaco-scrollable-element > .invisible {
  opacity: 0;
  pointer-events: none;
}

.monaco-scrollable-element > .invisible.fade {
  transition: opacity .8s linear;
}

.monaco-scrollable-element > .shadow {
  display: none;
  position: absolute;
}

.monaco-scrollable-element > .shadow.top {
  box-shadow: var(--vscode-scrollbar-shadow) 0 6px 6px -6px inset;
  width: 100%;
  height: 3px;
  display: block;
  top: 0;
  left: 3px;
}

.monaco-scrollable-element > .shadow.left {
  box-shadow: var(--vscode-scrollbar-shadow) 6px 0 6px -6px inset;
  width: 3px;
  height: 100%;
  display: block;
  top: 3px;
  left: 0;
}

.monaco-scrollable-element > .shadow.top-left-corner {
  width: 3px;
  height: 3px;
  display: block;
  top: 0;
  left: 0;
}

.monaco-scrollable-element > .shadow.top.left {
  box-shadow: var(--vscode-scrollbar-shadow) 6px 0 6px -6px inset;
}

.monaco-scrollable-element > .scrollbar > .slider {
  background: var(--vscode-scrollbarSlider-background);
}

.monaco-scrollable-element > .scrollbar > .slider:hover {
  background: var(--vscode-scrollbarSlider-hoverBackground);
}

.monaco-scrollable-element > .scrollbar > .slider.active {
  background: var(--vscode-scrollbarSlider-activeBackground);
}
.monaco-hover {
  cursor: default;
  -webkit-user-select: text;
  user-select: text;
  box-sizing: border-box;
  white-space: var(--vscode-hover-whiteSpace, normal);
  line-height: 1.5em;
  animation: .1s linear fadein;
  position: absolute;
  overflow: hidden;
}

.monaco-hover.hidden {
  display: none;
}

.monaco-hover a:hover:not(.disabled) {
  cursor: pointer;
}

.monaco-hover .hover-contents:not(.html-hover-contents) {
  padding: 4px 8px;
}

.monaco-hover .markdown-hover > .hover-contents:not(.code-hover-contents) {
  max-width: var(--vscode-hover-maxWidth, 500px);
  word-wrap: break-word;
}

.monaco-hover .markdown-hover > .hover-contents:not(.code-hover-contents) hr {
  min-width: 100%;
}

.monaco-hover p, .monaco-hover .code, .monaco-hover ul, .monaco-hover h1, .monaco-hover h2, .monaco-hover h3, .monaco-hover h4, .monaco-hover h5, .monaco-hover h6 {
  margin: 8px 0;
}

.monaco-hover h1, .monaco-hover h2, .monaco-hover h3, .monaco-hover h4, .monaco-hover h5, .monaco-hover h6 {
  line-height: 1.1;
}

.monaco-hover code {
  font-family: var(--monaco-monospace-font);
}

.monaco-hover hr {
  box-sizing: border-box;
  border-left: 0;
  border-right: 0;
  height: 1px;
  margin: 4px -8px -4px;
}

.monaco-hover p:first-child, .monaco-hover .code:first-child, .monaco-hover ul:first-child {
  margin-top: 0;
}

.monaco-hover p:last-child, .monaco-hover .code:last-child, .monaco-hover ul:last-child {
  margin-bottom: 0;
}

.monaco-hover ul, .monaco-hover ol {
  padding-left: 20px;
}

.monaco-hover li > p {
  margin-bottom: 0;
}

.monaco-hover li > ul {
  margin-top: 0;
}

.monaco-hover code {
  border-radius: 3px;
  padding: 0 .4em;
}

.monaco-hover .monaco-tokenized-source {
  white-space: var(--vscode-hover-sourceWhiteSpace, pre-wrap);
}

.monaco-hover .hover-row.status-bar {
  font-size: 12px;
  line-height: 22px;
}

.monaco-hover .hover-row.status-bar .info {
  padding: 0 8px;
  font-style: italic;
}

.monaco-hover .hover-row.status-bar .actions {
  width: 100%;
  padding: 0 8px;
  display: flex;
}

.monaco-hover .hover-row.status-bar .actions .action-container {
  cursor: pointer;
  margin-right: 16px;
}

.monaco-hover .hover-row.status-bar .actions .action-container .action .icon {
  padding-right: 4px;
}

.monaco-hover .hover-row.status-bar .actions .action-container a {
  color: var(--vscode-textLink-foreground);
  -webkit-text-decoration: var(--text-link-decoration);
  text-decoration: var(--text-link-decoration);
}

.monaco-hover .markdown-hover .hover-contents .codicon {
  color: inherit;
  font-size: inherit;
  vertical-align: middle;
}

.monaco-hover .hover-contents a.code-link:hover, .monaco-hover .hover-contents a.code-link {
  color: inherit;
}

.monaco-hover .hover-contents a.code-link:before {
  content: "(";
}

.monaco-hover .hover-contents a.code-link:after {
  content: ")";
}

.monaco-hover .hover-contents a.code-link > span {
  text-underline-position: under;
  color: var(--vscode-textLink-foreground);
  border-bottom: 1px solid #0000;
  text-decoration: underline;
}

.monaco-hover .hover-contents a.code-link > span:hover {
  color: var(--vscode-textLink-activeForeground);
}

.monaco-hover .markdown-hover .hover-contents:not(.code-hover-contents):not(.html-hover-contents) span {
  margin-bottom: 4px;
  display: inline-block;
}

.monaco-hover .markdown-hover .hover-contents:not(.code-hover-contents):not(.html-hover-contents) span.codicon {
  margin-bottom: 2px;
}

.monaco-hover-content .action-container a {
  -webkit-user-select: none;
  user-select: none;
}

.monaco-hover-content .action-container.disabled {
  pointer-events: none;
  opacity: .4;
  cursor: default;
}
.monaco-editor .rendered-markdown kbd {
  background-color: var(--vscode-keybindingLabel-background);
  color: var(--vscode-keybindingLabel-foreground);
  border-style: solid;
  border-width: 1px;
  border-color: var(--vscode-keybindingLabel-border);
  border-bottom-color: var(--vscode-keybindingLabel-bottomBorder);
  box-shadow: inset 0 -1px 0 var(--vscode-widget-shadow);
  vertical-align: middle;
  border-radius: 3px;
  padding: 1px 3px;
}

.rendered-markdown li:has(input[type="checkbox"]) {
  list-style-type: none;
}
.monaco-aria-container {
  position: absolute;
  left: -999em;
}
.context-view {
  position: absolute;
}

.context-view.fixed {
  all: initial;
  color: inherit;
  font-family: inherit;
  font-size: 13px;
  position: fixed;
}
.monaco-list {
  white-space: nowrap;
  width: 100%;
  height: 100%;
  position: relative;
}

.monaco-list.mouse-support {
  -webkit-user-select: none;
  user-select: none;
}

.monaco-list > .monaco-scrollable-element {
  height: 100%;
}

.monaco-list-rows {
  width: 100%;
  height: 100%;
  position: relative;
}

.monaco-list.horizontal-scrolling .monaco-list-rows {
  width: auto;
  min-width: 100%;
}

.monaco-list-row {
  box-sizing: border-box;
  width: 100%;
  position: absolute;
  overflow: hidden;
}

.monaco-list.mouse-support .monaco-list-row {
  cursor: pointer;
  touch-action: none;
}

.monaco-list .monaco-scrollable-element > .scrollbar.vertical, .monaco-pane-view > .monaco-split-view2.vertical > .monaco-scrollable-element > .scrollbar.vertical {
  z-index: 14;
}

.monaco-list-row.scrolling {
  display: none !important;
}

.monaco-list.element-focused, .monaco-list.selection-single, .monaco-list.selection-multiple {
  outline: 0 !important;
}

.monaco-drag-image {
  z-index: 1000;
  border-radius: 10px;
  padding: 1px 7px;
  font-size: 12px;
  display: inline-block;
  position: absolute;
}

.monaco-list-type-filter-message {
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  opacity: .7;
  pointer-events: none;
  width: 100%;
  height: 100%;
  padding: 40px 1em 1em;
  position: absolute;
  top: 0;
  left: 0;
}

.monaco-list-type-filter-message:empty {
  display: none;
}
.monaco-select-box-dropdown-padding {
  --dropdown-padding-top: 1px;
  --dropdown-padding-bottom: 1px;
}

.hc-black .monaco-select-box-dropdown-padding, .hc-light .monaco-select-box-dropdown-padding {
  --dropdown-padding-top: 3px;
  --dropdown-padding-bottom: 4px;
}

.monaco-select-box-dropdown-container {
  box-sizing: border-box;
  display: none;
}

.monaco-select-box-dropdown-container > .select-box-details-pane > .select-box-description-markdown * {
  margin: 0;
}

.monaco-select-box-dropdown-container > .select-box-details-pane > .select-box-description-markdown a:focus {
  outline: 1px solid -webkit-focus-ring-color;
  outline-offset: -1px;
}

.monaco-select-box-dropdown-container > .select-box-details-pane > .select-box-description-markdown code {
  line-height: 15px;
  font-family: var(--monaco-monospace-font);
}

.monaco-select-box-dropdown-container.visible {
  text-align: left;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  flex-direction: column;
  width: 1px;
  display: flex;
  overflow: hidden;
}

.monaco-select-box-dropdown-container > .select-box-dropdown-list-container {
  padding-top: var(--dropdown-padding-top);
  padding-bottom: var(--dropdown-padding-bottom);
  box-sizing: border-box;
  flex: none;
  align-self: flex-start;
  width: 100%;
  padding-left: 1px;
  padding-right: 1px;
  overflow: hidden;
}

.monaco-select-box-dropdown-container > .select-box-details-pane {
  padding: 5px;
}

.hc-black .monaco-select-box-dropdown-container > .select-box-dropdown-list-container {
  padding-top: var(--dropdown-padding-top);
  padding-bottom: var(--dropdown-padding-bottom);
}

.monaco-select-box-dropdown-container > .select-box-dropdown-list-container .monaco-list .monaco-list-row {
  cursor: pointer;
}

.monaco-select-box-dropdown-container > .select-box-dropdown-list-container .monaco-list .monaco-list-row > .option-text {
  text-overflow: ellipsis;
  white-space: nowrap;
  float: left;
  padding-left: 3.5px;
  overflow: hidden;
}

.monaco-select-box-dropdown-container > .select-box-dropdown-list-container .monaco-list .monaco-list-row > .option-detail {
  text-overflow: ellipsis;
  white-space: nowrap;
  float: left;
  opacity: .7;
  padding-left: 3.5px;
  overflow: hidden;
}

.monaco-select-box-dropdown-container > .select-box-dropdown-list-container .monaco-list .monaco-list-row > .option-decorator-right {
  text-overflow: ellipsis;
  white-space: nowrap;
  float: right;
  padding-right: 10px;
  overflow: hidden;
}

.monaco-select-box-dropdown-container > .select-box-dropdown-list-container .monaco-list .monaco-list-row > .visually-hidden {
  width: 1px;
  height: 1px;
  position: absolute;
  top: auto;
  left: -10000px;
  overflow: hidden;
}

.monaco-select-box-dropdown-container > .select-box-dropdown-container-width-control {
  opacity: 0;
  flex: auto;
  align-self: flex-start;
}

.monaco-select-box-dropdown-container > .select-box-dropdown-container-width-control > .width-control-div {
  max-height: 0;
  overflow: hidden;
}

.monaco-select-box-dropdown-container > .select-box-dropdown-container-width-control > .width-control-div > .option-text-width-control {
  white-space: nowrap;
  padding-left: 4px;
  padding-right: 8px;
}
.monaco-select-box {
  cursor: pointer;
  border-radius: 2px;
  width: 100%;
}

.monaco-select-box-dropdown-container {
  text-transform: none;
  font-size: 13px;
  font-weight: normal;
}

.monaco-action-bar .action-item.select-container {
  cursor: default;
}

.monaco-action-bar .action-item .monaco-select-box {
  cursor: pointer;
  min-width: 100px;
  min-height: 18px;
  padding: 2px 23px 2px 8px;
}

.mac .monaco-action-bar .action-item .monaco-select-box {
  border-radius: 5px;
  font-size: 11px;
}
.monaco-action-bar {
  white-space: nowrap;
  height: 100%;
}

.monaco-action-bar .actions-container {
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
}

.monaco-action-bar.vertical .actions-container {
  display: inline-block;
}

.monaco-action-bar .action-item {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  display: block;
  position: relative;
}

.monaco-action-bar .action-item.disabled {
  cursor: default;
}

.monaco-action-bar .action-item .icon, .monaco-action-bar .action-item .codicon {
  display: block;
}

.monaco-action-bar .action-item .codicon {
  align-items: center;
  width: 16px;
  height: 16px;
  display: flex;
}

.monaco-action-bar .action-label {
  border-radius: 5px;
  padding: 3px;
  font-size: 11px;
  display: flex;
}

.monaco-action-bar .action-item.disabled .action-label, .monaco-action-bar .action-item.disabled .action-label:before, .monaco-action-bar .action-item.disabled .action-label:hover {
  color: var(--vscode-disabledForeground);
}

.monaco-action-bar.vertical {
  text-align: left;
}

.monaco-action-bar.vertical .action-item {
  display: block;
}

.monaco-action-bar.vertical .action-label.separator {
  border-bottom: 1px solid #bbb;
  margin-left: .8em;
  margin-right: .8em;
  padding-top: 1px;
  display: block;
}

.monaco-action-bar .action-item .action-label.separator {
  cursor: default;
  background-color: #bbb;
  width: 1px;
  min-width: 1px;
  height: 16px;
  padding: 0;
  margin: 5px 4px !important;
}

.secondary-actions .monaco-action-bar .action-label {
  margin-left: 6px;
}

.monaco-action-bar .action-item.select-container {
  flex: 1;
  justify-content: center;
  align-items: center;
  min-width: 60px;
  max-width: 170px;
  margin-right: 10px;
  display: flex;
  overflow: hidden;
}

.monaco-action-bar .action-item.action-dropdown-item {
  display: flex;
}

.monaco-action-bar .action-item.action-dropdown-item > .action-dropdown-item-separator {
  cursor: default;
  align-items: center;
  display: flex;
}

.monaco-action-bar .action-item.action-dropdown-item > .action-dropdown-item-separator > div {
  width: 1px;
}
.monaco-dropdown {
  height: 100%;
  padding: 0;
}

.monaco-dropdown > .dropdown-label {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.monaco-dropdown > .dropdown-label > .action-label.disabled {
  cursor: default;
}

.monaco-dropdown-with-primary {
  border-radius: 5px;
  flex-direction: row;
  display: flex !important;
}

.monaco-dropdown-with-primary > .action-container > .action-label {
  margin-right: 0;
}

.monaco-dropdown-with-primary > .dropdown-action-container > .monaco-dropdown > .dropdown-label .codicon[class*="codicon-"] {
  margin-left: -3px;
  padding-left: 0;
  padding-right: 0;
  font-size: 12px;
  line-height: 16px;
}

.monaco-dropdown-with-primary > .dropdown-action-container > .monaco-dropdown > .dropdown-label > .action-label {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px;
  display: block;
}
.monaco-action-bar .action-item.menu-entry .action-label.icon {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 16px;
  width: 16px;
  height: 16px;
}

.monaco-action-bar .action-item.menu-entry.text-only .action-label {
  color: var(--vscode-descriptionForeground);
  border-radius: 2px;
  overflow: hidden;
}

.monaco-action-bar .action-item.menu-entry.text-only.use-comma:not(:last-of-type) .action-label:after {
  content: ", ";
}

.monaco-action-bar .action-item.menu-entry.text-only + .action-item:not(.text-only) > .monaco-dropdown .action-label {
  color: var(--vscode-descriptionForeground);
}

.monaco-dropdown-with-default {
  border-radius: 5px;
  flex-direction: row;
  display: flex !important;
}

.monaco-dropdown-with-default > .action-container > .action-label {
  margin-right: 0;
}

.monaco-dropdown-with-default > .action-container.menu-entry > .action-label.icon {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 16px;
  width: 16px;
  height: 16px;
}

.monaco-dropdown-with-default:hover {
  background-color: var(--vscode-toolbar-hoverBackground);
}

.monaco-dropdown-with-default > .dropdown-action-container > .monaco-dropdown > .dropdown-label .codicon[class*="codicon-"] {
  margin-left: -3px;
  padding-left: 0;
  padding-right: 0;
  font-size: 12px;
  line-height: 16px;
}

.monaco-dropdown-with-default > .dropdown-action-container > .monaco-dropdown > .dropdown-label > .action-label {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px;
  display: block;
}
.quick-input-widget {
  font-size: 13px;
}

.quick-input-widget .monaco-highlighted-label .highlight, .quick-input-widget .monaco-highlighted-label .highlight {
  color: #0066bf;
}

.vs .quick-input-widget .monaco-list-row.focused .monaco-highlighted-label .highlight, .vs .quick-input-widget .monaco-list-row.focused .monaco-highlighted-label .highlight {
  color: #9dddff;
}

.vs-dark .quick-input-widget .monaco-highlighted-label .highlight, .vs-dark .quick-input-widget .monaco-highlighted-label .highlight {
  color: #0097fb;
}

.hc-black .quick-input-widget .monaco-highlighted-label .highlight, .hc-black .quick-input-widget .monaco-highlighted-label .highlight {
  color: #f38518;
}

.hc-light .quick-input-widget .monaco-highlighted-label .highlight, .hc-light .quick-input-widget .monaco-highlighted-label .highlight {
  color: #0f4a85;
}

.monaco-keybinding > .monaco-keybinding-key {
  color: #555;
  background-color: #ddd6;
  border: 1px solid #ccc6;
  border-bottom-color: #bbb6;
  box-shadow: inset 0 -1px #bbb6;
}

.hc-black .monaco-keybinding > .monaco-keybinding-key {
  box-shadow: none;
  color: #fff;
  background-color: #0000;
  border: 1px solid #6fc3df;
}

.hc-light .monaco-keybinding > .monaco-keybinding-key {
  box-shadow: none;
  color: #292929;
  background-color: #0000;
  border: 1px solid #0f4a85;
}

.vs-dark .monaco-keybinding > .monaco-keybinding-key {
  color: #ccc;
  background-color: #8080802b;
  border: 1px solid #3339;
  border-bottom-color: #4449;
  box-shadow: inset 0 -1px #4449;
}
.monaco-custom-toggle {
  float: left;
  cursor: pointer;
  box-sizing: border-box;
  -webkit-user-select: none;
  user-select: none;
  border: 1px solid #0000;
  border-radius: 3px;
  width: 20px;
  height: 20px;
  margin-left: 2px;
  padding: 1px;
  overflow: hidden;
}

.monaco-custom-toggle:hover {
  background-color: var(--vscode-inputOption-hoverBackground);
}

.hc-black .monaco-custom-toggle:hover, .hc-light .monaco-custom-toggle:hover {
  border: 1px dashed var(--vscode-focusBorder);
}

.hc-black .monaco-custom-toggle, .hc-light .monaco-custom-toggle, .hc-black .monaco-custom-toggle:hover, .hc-light .monaco-custom-toggle:hover {
  background: none;
}

.monaco-custom-toggle.monaco-checkbox {
  opacity: 1;
  border: 1px solid #0000;
  border-radius: 3px;
  width: 18px;
  height: 18px;
  margin-left: 0;
  margin-right: 9px;
  padding: 0;
  background-size: 16px !important;
}

.monaco-action-bar .checkbox-action-item {
  border-radius: 2px;
  align-items: center;
  padding-right: 2px;
  display: flex;
}

.monaco-action-bar .checkbox-action-item:hover {
  background-color: var(--vscode-toolbar-hoverBackground);
}

.monaco-action-bar .checkbox-action-item > .monaco-custom-toggle.monaco-checkbox {
  margin-right: 4px;
}

.monaco-action-bar .checkbox-action-item > .checkbox-label {
  font-size: 12px;
}

.monaco-custom-toggle.monaco-checkbox:not(.checked):before {
  visibility: hidden;
}
.quick-input-widget {
  z-index: 2550;
  -webkit-app-region: no-drag;
  border-radius: 6px;
  width: 600px;
  margin-left: -300px;
  position: absolute;
  left: 50%;
}

.quick-input-titlebar {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  align-items: center;
  display: flex;
}

.quick-input-left-action-bar {
  flex: 1;
  margin-left: 4px;
  display: flex;
}

.quick-input-inline-action-bar {
  margin: 2px 0 0 5px;
}

.quick-input-title {
  text-align: center;
  text-overflow: ellipsis;
  padding: 3px 0;
  overflow: hidden;
}

.quick-input-right-action-bar {
  flex: 1;
  margin-right: 4px;
  display: flex;
}

.quick-input-right-action-bar > .actions-container {
  justify-content: flex-end;
}

.quick-input-titlebar .monaco-action-bar .action-label.codicon {
  background-position: center;
  background-repeat: no-repeat;
  padding: 2px;
}

.quick-input-description {
  margin: 6px 6px 6px 11px;
}

.quick-input-header .quick-input-description {
  flex: 1;
  margin: 4px 2px;
}

.quick-input-header {
  padding: 8px 6px 2px;
  display: flex;
}

.quick-input-widget.hidden-input .quick-input-header {
  margin-bottom: 0;
  padding: 0;
}

.quick-input-and-message {
  flex-direction: column;
  flex-grow: 1;
  min-width: 0;
  display: flex;
  position: relative;
}

.quick-input-check-all {
  align-self: center;
  margin: 0;
}

.quick-input-filter {
  flex-grow: 1;
  display: flex;
  position: relative;
}

.quick-input-box {
  flex-grow: 1;
}

.quick-input-widget.show-checkboxes .quick-input-box, .quick-input-widget.show-checkboxes .quick-input-message {
  margin-left: 5px;
}

.quick-input-visible-count {
  position: absolute;
  left: -10000px;
}

.quick-input-count {
  align-self: center;
  align-items: center;
  display: flex;
  position: absolute;
  right: 4px;
}

.quick-input-count .monaco-count-badge {
  vertical-align: middle;
  border-radius: 2px;
  min-height: auto;
  padding: 2px 4px;
  line-height: normal;
}

.quick-input-action {
  margin-left: 6px;
}

.quick-input-action .monaco-text-button {
  align-items: center;
  height: 25px;
  padding: 0 6px;
  font-size: 11px;
  display: flex;
}

.quick-input-message {
  overflow-wrap: break-word;
  margin-top: -1px;
  padding: 5px;
}

.quick-input-message > .codicon {
  vertical-align: text-bottom;
  margin: 0 .2em;
}

.quick-input-message a {
  color: inherit;
}

.quick-input-progress.monaco-progress-container {
  position: relative;
}

.quick-input-list {
  line-height: 22px;
}

.quick-input-widget.hidden-input .quick-input-list {
  margin-top: 4px;
  padding-bottom: 4px;
}

.quick-input-list .monaco-list {
  max-height: 440px;
  padding-bottom: 5px;
  overflow: hidden;
}

.quick-input-list .monaco-scrollable-element {
  padding: 0 5px;
}

.quick-input-list .quick-input-list-entry {
  box-sizing: border-box;
  padding: 0 6px;
  display: flex;
  overflow: hidden;
}

.quick-input-list .quick-input-list-entry.quick-input-list-separator-border {
  border-top-style: solid;
  border-top-width: 1px;
}

.quick-input-list .monaco-list-row {
  border-radius: 3px;
}

.quick-input-list .monaco-list-row[data-index="0"] .quick-input-list-entry.quick-input-list-separator-border {
  border-top-style: none;
}

.quick-input-list .quick-input-list-label {
  flex: 1;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.quick-input-list .quick-input-list-checkbox {
  align-self: center;
  margin: 0;
}

.quick-input-list .quick-input-list-icon {
  background-position: 0;
  background-repeat: no-repeat;
  background-size: 16px;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 22px;
  padding-right: 6px;
  display: flex;
}

.quick-input-list .quick-input-list-rows {
  text-overflow: ellipsis;
  flex-direction: column;
  flex: 1;
  height: 100%;
  margin-left: 5px;
  display: flex;
  overflow: hidden;
}

.quick-input-widget.show-checkboxes .quick-input-list .quick-input-list-rows {
  margin-left: 10px;
}

.quick-input-widget .quick-input-list .quick-input-list-checkbox {
  display: none;
}

.quick-input-widget.show-checkboxes .quick-input-list .quick-input-list-checkbox {
  display: inline;
}

.quick-input-list .quick-input-list-rows > .quick-input-list-row {
  align-items: center;
  display: flex;
}

.quick-input-list .quick-input-list-rows > .quick-input-list-row .monaco-icon-label, .quick-input-list .quick-input-list-rows > .quick-input-list-row .monaco-icon-label .monaco-icon-label-container > .monaco-icon-name-container {
  flex: 1;
}

.quick-input-list .quick-input-list-rows > .quick-input-list-row .codicon[class*="codicon-"] {
  vertical-align: text-bottom;
}

.quick-input-list .quick-input-list-rows .monaco-highlighted-label > span {
  opacity: 1;
}

.quick-input-list .quick-input-list-entry .quick-input-list-entry-keybinding {
  margin-right: 8px;
}

.quick-input-list .quick-input-list-label-meta {
  opacity: .7;
  text-overflow: ellipsis;
  line-height: normal;
  overflow: hidden;
}

.quick-input-list .monaco-list .monaco-list-row .monaco-highlighted-label .highlight {
  background-color: unset;
  font-weight: bold;
  color: var(--vscode-list-highlightForeground) !important;
}

.quick-input-list .monaco-list .monaco-list-row.focused .monaco-highlighted-label .highlight {
  color: var(--vscode-list-focusHighlightForeground) !important;
}

.quick-input-list .quick-input-list-entry .quick-input-list-separator {
  margin-right: 4px;
}

.quick-input-list .quick-input-list-entry-action-bar {
  flex: 0;
  display: flex;
  overflow: visible;
}

.quick-input-list .quick-input-list-entry-action-bar .action-label {
  display: none;
}

.quick-input-list .quick-input-list-entry-action-bar .action-label.codicon {
  margin-right: 4px;
  padding: 2px;
}

.quick-input-list .quick-input-list-entry-action-bar {
  margin-top: 1px;
  margin-right: 4px;
}

.quick-input-list .quick-input-list-entry .quick-input-list-entry-action-bar .action-label.always-visible, .quick-input-list .quick-input-list-entry:hover .quick-input-list-entry-action-bar .action-label, .quick-input-list .quick-input-list-entry.focus-inside .quick-input-list-entry-action-bar .action-label, .quick-input-list .monaco-list-row.focused .quick-input-list-entry-action-bar .action-label, .quick-input-list .monaco-list-row.passive-focused .quick-input-list-entry-action-bar .action-label {
  display: flex;
}

.quick-input-list .monaco-list-row.focused .monaco-keybinding-key, .quick-input-list .monaco-list-row.focused .quick-input-list-entry .quick-input-list-separator {
  color: inherit;
}

.quick-input-list .monaco-list-row.focused .monaco-keybinding-key {
  background: none;
}

.quick-input-list .quick-input-list-separator-as-item {
  padding: 4px 6px;
  font-size: 12px;
}

.quick-input-list .quick-input-list-separator-as-item .label-name {
  font-weight: 600;
}

.quick-input-list .quick-input-list-separator-as-item .label-description {
  opacity: 1 !important;
}

.quick-input-list .monaco-tree-sticky-row .quick-input-list-entry.quick-input-list-separator-as-item.quick-input-list-separator-border {
  border-top-style: none;
}

.quick-input-list .monaco-tree-sticky-row {
  padding: 0 5px;
}

.quick-input-list .monaco-tl-twistie {
  display: none !important;
}
.monaco-text-button {
  box-sizing: border-box;
  text-align: center;
  cursor: pointer;
  border: 1px solid var(--vscode-button-border, transparent);
  border-radius: 2px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 4px;
  line-height: 18px;
  display: flex;
}

.monaco-text-button:focus {
  outline-offset: 2px !important;
}

.monaco-text-button:hover {
  text-decoration: none !important;
}

.monaco-button.disabled:focus, .monaco-button.disabled {
  cursor: default;
  opacity: .4 !important;
}

.monaco-text-button .codicon {
  margin: 0 .2em;
  color: inherit !important;
}

.monaco-text-button.monaco-text-button-with-short-label {
  flex-flow: wrap;
  height: 28px;
  padding: 0 4px;
  overflow: hidden;
}

.monaco-text-button.monaco-text-button-with-short-label > .monaco-button-label {
  flex-basis: 100%;
}

.monaco-text-button.monaco-text-button-with-short-label > .monaco-button-label-short {
  flex-grow: 1;
  width: 0;
  overflow: hidden;
}

.monaco-text-button.monaco-text-button-with-short-label > .monaco-button-label, .monaco-text-button.monaco-text-button-with-short-label > .monaco-button-label-short {
  font-weight: normal;
  font-style: inherit;
  justify-content: center;
  align-items: center;
  padding: 4px 0;
  display: flex;
}

.monaco-button-dropdown {
  cursor: pointer;
  display: flex;
}

.monaco-button-dropdown.disabled {
  cursor: default;
}

.monaco-button-dropdown > .monaco-button:focus {
  outline-offset: -1px !important;
}

.monaco-button-dropdown.disabled > .monaco-button.disabled, .monaco-button-dropdown.disabled > .monaco-button.disabled:focus, .monaco-button-dropdown.disabled > .monaco-button-dropdown-separator {
  opacity: .4 !important;
}

.monaco-button-dropdown > .monaco-button.monaco-text-button {
  border-right-width: 0 !important;
}

.monaco-button-dropdown .monaco-button-dropdown-separator {
  cursor: default;
  padding: 4px 0;
}

.monaco-button-dropdown .monaco-button-dropdown-separator > div {
  width: 1px;
  height: 100%;
}

.monaco-button-dropdown > .monaco-button.monaco-dropdown-button {
  border: 1px solid var(--vscode-button-border, transparent);
  border-radius: 0 2px 2px 0;
  align-items: center;
  display: flex;
  border-left-width: 0 !important;
}

.monaco-button-dropdown > .monaco-button.monaco-text-button {
  border-radius: 2px 0 0 2px;
}

.monaco-description-button {
  flex-direction: column;
  align-items: center;
  margin: 4px 5px;
  display: flex;
}

.monaco-description-button .monaco-button-description {
  padding: 4px 20px;
  font-size: 11px;
  font-style: italic;
}

.monaco-description-button .monaco-button-label, .monaco-description-button .monaco-button-description {
  justify-content: center;
  align-items: center;
  display: flex;
}

.monaco-description-button .monaco-button-label > .codicon, .monaco-description-button .monaco-button-description > .codicon {
  margin: 0 .2em;
  color: inherit !important;
}

.monaco-button.default-colors, .monaco-button-dropdown.default-colors > .monaco-button {
  color: var(--vscode-button-foreground);
  background-color: var(--vscode-button-background);
}

.monaco-button.default-colors:hover, .monaco-button-dropdown.default-colors > .monaco-button:hover {
  background-color: var(--vscode-button-hoverBackground);
}

.monaco-button.default-colors.secondary, .monaco-button-dropdown.default-colors > .monaco-button.secondary {
  color: var(--vscode-button-secondaryForeground);
  background-color: var(--vscode-button-secondaryBackground);
}

.monaco-button.default-colors.secondary:hover, .monaco-button-dropdown.default-colors > .monaco-button.secondary:hover {
  background-color: var(--vscode-button-secondaryHoverBackground);
}

.monaco-button-dropdown.default-colors .monaco-button-dropdown-separator {
  background-color: var(--vscode-button-background);
  border-top: 1px solid var(--vscode-button-border);
  border-bottom: 1px solid var(--vscode-button-border);
}

.monaco-button-dropdown.default-colors .monaco-button.secondary + .monaco-button-dropdown-separator {
  background-color: var(--vscode-button-secondaryBackground);
}

.monaco-button-dropdown.default-colors .monaco-button-dropdown-separator > div {
  background-color: var(--vscode-button-separator);
}
.monaco-count-badge {
  text-align: center;
  box-sizing: border-box;
  border-radius: 11px;
  min-width: 18px;
  min-height: 18px;
  padding: 3px 6px;
  font-size: 11px;
  font-weight: normal;
  line-height: 11px;
  display: inline-block;
}

.monaco-count-badge.long {
  border-radius: 2px;
  min-height: auto;
  padding: 2px 3px;
  line-height: normal;
}
.monaco-progress-container {
  width: 100%;
  height: 2px;
  overflow: hidden;
}

.monaco-progress-container .progress-bit {
  width: 2%;
  height: 2px;
  display: none;
  position: absolute;
  left: 0;
}

.monaco-progress-container.active .progress-bit {
  display: inherit;
}

.monaco-progress-container.discrete .progress-bit {
  transition: width .1s linear;
  left: 0;
}

.monaco-progress-container.discrete.done .progress-bit {
  width: 100%;
}

.monaco-progress-container.infinite .progress-bit {
  animation-name: progress;
  animation-duration: 4s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  transform: translate3d(0, 0, 0);
}

.monaco-progress-container.infinite.infinite-long-running .progress-bit {
  animation-timing-function: steps(100, end);
}

@keyframes progress {
  from {
    transform: translateX(0%)scaleX(1);
  }

  50% {
    transform: translateX(2500%)scaleX(3);
  }

  to {
    transform: translateX(4900%)scaleX(1);
  }
}
.monaco-inputbox {
  box-sizing: border-box;
  font-size: inherit;
  border-radius: 2px;
  padding: 0;
  display: block;
  position: relative;
}

.monaco-inputbox > .ibwrapper > .input, .monaco-inputbox > .ibwrapper > .mirror {
  padding: 4px 6px;
}

.monaco-inputbox > .ibwrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.monaco-inputbox > .ibwrapper > .input {
  box-sizing: border-box;
  line-height: inherit;
  font-family: inherit;
  font-size: inherit;
  resize: none;
  color: inherit;
  border: none;
  width: 100%;
  height: 100%;
  display: inline-block;
}

.monaco-inputbox > .ibwrapper > input {
  text-overflow: ellipsis;
}

.monaco-inputbox > .ibwrapper > textarea.input {
  scrollbar-width: none;
  outline: none;
  display: block;
}

.monaco-inputbox > .ibwrapper > textarea.input::-webkit-scrollbar {
  display: none;
}

.monaco-inputbox > .ibwrapper > textarea.input.empty {
  white-space: nowrap;
}

.monaco-inputbox > .ibwrapper > .mirror {
  box-sizing: border-box;
  white-space: pre-wrap;
  visibility: hidden;
  word-wrap: break-word;
  width: 100%;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.monaco-inputbox-container {
  text-align: right;
}

.monaco-inputbox-container .monaco-inputbox-message {
  text-align: left;
  box-sizing: border-box;
  word-wrap: break-word;
  width: 100%;
  margin-top: -1px;
  padding: .4em;
  font-size: 12px;
  line-height: 17px;
  display: inline-block;
  overflow: hidden;
}

.monaco-inputbox .monaco-action-bar {
  position: absolute;
  top: 4px;
  right: 2px;
}

.monaco-inputbox .monaco-action-bar .action-item {
  margin-left: 2px;
}

.monaco-inputbox .monaco-action-bar .action-item .codicon {
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
}
.monaco-findInput {
  position: relative;
}

.monaco-findInput .monaco-inputbox {
  width: 100%;
  font-size: 13px;
}

.monaco-findInput > .controls {
  position: absolute;
  top: 3px;
  right: 2px;
}

.vs .monaco-findInput.disabled {
  background-color: #e1e1e1;
}

.vs-dark .monaco-findInput.disabled {
  background-color: #333;
}

.monaco-findInput.highlight-0 .controls, .hc-light .monaco-findInput.highlight-0 .controls {
  animation: .1s linear monaco-findInput-highlight-0;
}

.monaco-findInput.highlight-1 .controls, .hc-light .monaco-findInput.highlight-1 .controls {
  animation: .1s linear monaco-findInput-highlight-1;
}

.hc-black .monaco-findInput.highlight-0 .controls, .vs-dark .monaco-findInput.highlight-0 .controls {
  animation: .1s linear monaco-findInput-highlight-dark-0;
}

.hc-black .monaco-findInput.highlight-1 .controls, .vs-dark .monaco-findInput.highlight-1 .controls {
  animation: .1s linear monaco-findInput-highlight-dark-1;
}

@keyframes monaco-findInput-highlight-0 {
  0% {
    background: #fdff00cc;
  }

  100% {
    background: none;
  }
}

@keyframes monaco-findInput-highlight-1 {
  0% {
    background: #fdff00cc;
  }

  99% {
    background: none;
  }
}

@keyframes monaco-findInput-highlight-dark-0 {
  0% {
    background: #ffffff70;
  }

  100% {
    background: none;
  }
}

@keyframes monaco-findInput-highlight-dark-1 {
  0% {
    background: #ffffff70;
  }

  99% {
    background: none;
  }
}
:root {
  --vscode-sash-size: 4px;
  --vscode-sash-hover-size: 4px;
}

.monaco-sash {
  z-index: 35;
  touch-action: none;
  position: absolute;
}

.monaco-sash.disabled {
  pointer-events: none;
}

.monaco-sash.mac.vertical {
  cursor: col-resize;
}

.monaco-sash.vertical.minimum {
  cursor: e-resize;
}

.monaco-sash.vertical.maximum {
  cursor: w-resize;
}

.monaco-sash.mac.horizontal {
  cursor: row-resize;
}

.monaco-sash.horizontal.minimum {
  cursor: s-resize;
}

.monaco-sash.horizontal.maximum {
  cursor: n-resize;
}

.monaco-sash.disabled {
  cursor: default !important;
  pointer-events: none !important;
}

.monaco-sash.vertical {
  cursor: ew-resize;
  width: var(--vscode-sash-size);
  height: 100%;
  top: 0;
}

.monaco-sash.horizontal {
  cursor: ns-resize;
  height: var(--vscode-sash-size);
  width: 100%;
  left: 0;
}

.monaco-sash:not(.disabled) > .orthogonal-drag-handle {
  content: " ";
  height: calc(var(--vscode-sash-size) * 2);
  width: calc(var(--vscode-sash-size) * 2);
  z-index: 100;
  cursor: all-scroll;
  display: block;
  position: absolute;
}

.monaco-sash.horizontal.orthogonal-edge-north:not(.disabled) > .orthogonal-drag-handle.start, .monaco-sash.horizontal.orthogonal-edge-south:not(.disabled) > .orthogonal-drag-handle.end {
  cursor: nwse-resize;
}

.monaco-sash.horizontal.orthogonal-edge-north:not(.disabled) > .orthogonal-drag-handle.end, .monaco-sash.horizontal.orthogonal-edge-south:not(.disabled) > .orthogonal-drag-handle.start {
  cursor: nesw-resize;
}

.monaco-sash.vertical > .orthogonal-drag-handle.start {
  left: calc(var(--vscode-sash-size) * -.5);
  top: calc(var(--vscode-sash-size) * -1);
}

.monaco-sash.vertical > .orthogonal-drag-handle.end {
  left: calc(var(--vscode-sash-size) * -.5);
  bottom: calc(var(--vscode-sash-size) * -1);
}

.monaco-sash.horizontal > .orthogonal-drag-handle.start {
  top: calc(var(--vscode-sash-size) * -.5);
  left: calc(var(--vscode-sash-size) * -1);
}

.monaco-sash.horizontal > .orthogonal-drag-handle.end {
  top: calc(var(--vscode-sash-size) * -.5);
  right: calc(var(--vscode-sash-size) * -1);
}

.monaco-sash:before {
  content: "";
  pointer-events: none;
  background: none;
  width: 100%;
  height: 100%;
  position: absolute;
}

.monaco-workbench:not(.reduce-motion) .monaco-sash:before {
  transition: background-color .1s ease-out;
}

.monaco-sash.hover:before, .monaco-sash.active:before {
  background: var(--vscode-sash-hoverBorder);
}

.monaco-sash.vertical:before {
  width: var(--vscode-sash-hover-size);
  left: calc(50% - (var(--vscode-sash-hover-size) / 2));
}

.monaco-sash.horizontal:before {
  height: var(--vscode-sash-hover-size);
  top: calc(50% - (var(--vscode-sash-hover-size) / 2));
}

.pointer-events-disabled {
  pointer-events: none !important;
}

.monaco-sash.debug {
  background: #0ff;
}

.monaco-sash.debug.disabled {
  background: #0ff3;
}

.monaco-sash.debug:not(.disabled) > .orthogonal-drag-handle {
  background: red;
}
.monaco-split-view2 {
  width: 100%;
  height: 100%;
  position: relative;
}

.monaco-split-view2 > .sash-container {
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
}

.monaco-split-view2 > .sash-container > .monaco-sash {
  pointer-events: initial;
}

.monaco-split-view2 > .monaco-scrollable-element {
  width: 100%;
  height: 100%;
}

.monaco-split-view2 > .monaco-scrollable-element > .split-view-container {
  white-space: nowrap;
  width: 100%;
  height: 100%;
  position: relative;
}

.monaco-split-view2 > .monaco-scrollable-element > .split-view-container > .split-view-view {
  white-space: initial;
  position: absolute;
}

.monaco-split-view2 > .monaco-scrollable-element > .split-view-container > .split-view-view:not(.visible) {
  display: none;
}

.monaco-split-view2.vertical > .monaco-scrollable-element > .split-view-container > .split-view-view {
  width: 100%;
}

.monaco-split-view2.horizontal > .monaco-scrollable-element > .split-view-container > .split-view-view {
  height: 100%;
}

.monaco-split-view2.separator-border > .monaco-scrollable-element > .split-view-container > .split-view-view:not(:first-child):before {
  content: " ";
  z-index: 5;
  pointer-events: none;
  background-color: var(--separator-border);
  position: absolute;
  top: 0;
  left: 0;
}

.monaco-split-view2.separator-border.horizontal > .monaco-scrollable-element > .split-view-container > .split-view-view:not(:first-child):before {
  width: 1px;
  height: 100%;
}

.monaco-split-view2.separator-border.vertical > .monaco-scrollable-element > .split-view-container > .split-view-view:not(:first-child):before {
  width: 100%;
  height: 1px;
}
.monaco-table {
  white-space: nowrap;
  flex-direction: column;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.monaco-table > .monaco-split-view2 {
  border-bottom: 1px solid #0000;
}

.monaco-table > .monaco-list {
  flex: 1;
}

.monaco-table-tr {
  height: 100%;
  display: flex;
}

.monaco-table-th {
  text-overflow: ellipsis;
  width: 100%;
  height: 100%;
  font-weight: bold;
  overflow: hidden;
}

.monaco-table-th, .monaco-table-td {
  box-sizing: border-box;
  white-space: nowrap;
  text-overflow: ellipsis;
  flex-shrink: 0;
  overflow: hidden;
}

.monaco-table > .monaco-split-view2 .monaco-sash.vertical:before {
  content: "";
  left: calc(var(--vscode-sash-size) / 2);
  border-left: 1px solid #0000;
  width: 0;
  position: absolute;
}

.monaco-workbench:not(.reduce-motion) .monaco-table > .monaco-split-view2, .monaco-workbench:not(.reduce-motion) .monaco-table > .monaco-split-view2 .monaco-sash.vertical:before {
  transition: border-color .2s ease-out;
}
.monaco-tl-row {
  align-items: center;
  height: 100%;
  display: flex;
  position: relative;
}

.monaco-tl-row.disabled {
  cursor: default;
}

.monaco-tl-indent {
  pointer-events: none;
  height: 100%;
  position: absolute;
  top: 0;
  left: 16px;
}

.hide-arrows .monaco-tl-indent {
  left: 12px;
}

.monaco-tl-indent > .indent-guide {
  box-sizing: border-box;
  border-left: 1px solid #0000;
  height: 100%;
  display: inline-block;
}

.monaco-workbench:not(.reduce-motion) .monaco-tl-indent > .indent-guide {
  transition: border-color .1s linear;
}

.monaco-tl-twistie, .monaco-tl-contents {
  height: 100%;
}

.monaco-tl-twistie {
  text-align: right;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 16px;
  padding-right: 6px;
  font-size: 10px;
  transform: translateX(3px);
  display: flex !important;
}

.monaco-tl-contents {
  flex: 1;
  overflow: hidden;
}

.monaco-tl-twistie:before {
  border-radius: 20px;
}

.monaco-tl-twistie.collapsed:before {
  transform: rotate(-90deg);
}

.monaco-tl-twistie.codicon-tree-item-loading:before {
  animation: 1.25s steps(30, end) infinite codicon-spin;
}

.monaco-tree-type-filter {
  z-index: 100;
  border: 1px solid var(--vscode-widget-border);
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  max-width: 200px;
  margin: 0 6px;
  padding: 3px;
  display: flex;
  position: absolute;
  top: 0;
}

.monaco-workbench:not(.reduce-motion) .monaco-tree-type-filter {
  transition: top .3s;
}

.monaco-tree-type-filter.disabled {
  top: -40px !important;
}

.monaco-tree-type-filter-grab {
  cursor: grab;
  justify-content: center;
  align-items: center;
  margin-right: 2px;
  display: flex !important;
}

.monaco-tree-type-filter-grab.grabbing {
  cursor: grabbing;
}

.monaco-tree-type-filter-input {
  flex: 1;
}

.monaco-tree-type-filter-input .monaco-inputbox {
  height: 23px;
}

.monaco-tree-type-filter-input .monaco-inputbox > .ibwrapper > .input, .monaco-tree-type-filter-input .monaco-inputbox > .ibwrapper > .mirror {
  padding: 2px 4px;
}

.monaco-tree-type-filter-input .monaco-findInput > .controls {
  top: 2px;
}

.monaco-tree-type-filter-actionbar {
  margin-left: 4px;
}

.monaco-tree-type-filter-actionbar .monaco-action-bar .action-label {
  padding: 2px;
}

.monaco-list .monaco-scrollable-element .monaco-tree-sticky-container {
  z-index: 13;
  background-color: var(--vscode-sideBar-background);
  width: 100%;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.monaco-list .monaco-scrollable-element .monaco-tree-sticky-container .monaco-tree-sticky-row.monaco-list-row {
  background-color: var(--vscode-sideBar-background);
  width: 100%;
  position: absolute;
  overflow: hidden;
  opacity: 1 !important;
}

.monaco-list .monaco-scrollable-element .monaco-tree-sticky-container .monaco-tree-sticky-row:hover {
  cursor: pointer;
  background-color: var(--vscode-list-hoverBackground) !important;
}

.monaco-list .monaco-scrollable-element .monaco-tree-sticky-container.empty, .monaco-list .monaco-scrollable-element .monaco-tree-sticky-container.empty .monaco-tree-sticky-container-shadow {
  display: none;
}

.monaco-list .monaco-scrollable-element .monaco-tree-sticky-container .monaco-tree-sticky-container-shadow {
  width: 100%;
  height: 0;
  position: absolute;
  bottom: -3px;
  left: 0;
}

.monaco-list .monaco-scrollable-element .monaco-tree-sticky-container[tabindex="0"]:focus {
  outline: none;
}
.monaco-icon-label {
  text-overflow: ellipsis;
  display: flex;
  overflow: hidden;
}

.monaco-icon-label:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: top;
  background-position: 0;
  background-repeat: no-repeat;
  background-size: 16px;
  flex-shrink: 0;
  width: 16px;
  height: 22px;
  padding-right: 6px;
  display: inline-block;
  line-height: inherit !important;
}

.monaco-icon-label-iconpath {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  padding-left: 2px;
  display: flex;
}

.monaco-icon-label-container.disabled {
  color: var(--vscode-disabledForeground);
}

.monaco-icon-label > .monaco-icon-label-container {
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.monaco-icon-label > .monaco-icon-label-container > .monaco-icon-name-container > .label-name {
  color: inherit;
  white-space: pre;
}

.monaco-icon-label > .monaco-icon-label-container > .monaco-icon-name-container > .label-name > .label-separator {
  opacity: .5;
  margin: 0 2px;
}

.monaco-icon-label > .monaco-icon-label-container > .monaco-icon-suffix-container > .label-suffix {
  opacity: .7;
  white-space: pre;
}

.monaco-icon-label > .monaco-icon-label-container > .monaco-icon-description-container > .label-description {
  opacity: .7;
  white-space: pre;
  margin-left: .5em;
  font-size: .9em;
}

.monaco-icon-label.nowrap > .monaco-icon-label-container > .monaco-icon-description-container > .label-description {
  white-space: nowrap;
}

.vs .monaco-icon-label > .monaco-icon-label-container > .monaco-icon-description-container > .label-description {
  opacity: .95;
}

.monaco-icon-label.italic > .monaco-icon-label-container > .monaco-icon-name-container > .label-name, .monaco-icon-label.italic > .monaco-icon-label-container > .monaco-icon-description-container > .label-description {
  font-style: italic;
}

.monaco-icon-label.deprecated {
  opacity: .66;
  text-decoration: line-through;
}

.monaco-icon-label.italic:after {
  font-style: italic;
}

.monaco-icon-label.strikethrough > .monaco-icon-label-container > .monaco-icon-name-container > .label-name, .monaco-icon-label.strikethrough > .monaco-icon-label-container > .monaco-icon-description-container > .label-description {
  text-decoration: line-through;
}

.monaco-icon-label:after {
  opacity: .75;
  text-align: center;
  margin: auto 16px 0 5px;
  font-size: 90%;
  font-weight: 600;
}

.monaco-list:focus .selected .monaco-icon-label, .monaco-list:focus .selected .monaco-icon-label:after {
  color: inherit !important;
}

.monaco-list-row.focused.selected .label-description, .monaco-list-row.selected .label-description {
  opacity: .8;
}
.monaco-keybinding {
  align-items: center;
  line-height: 10px;
  display: flex;
}

.monaco-keybinding > .monaco-keybinding-key {
  vertical-align: middle;
  border-style: solid;
  border-width: 1px;
  border-radius: 3px;
  margin: 0 2px;
  padding: 3px 5px;
  font-size: 11px;
  display: inline-block;
}

.monaco-keybinding > .monaco-keybinding-key:first-child {
  margin-left: 0;
}

.monaco-keybinding > .monaco-keybinding-key:last-child {
  margin-right: 0;
}

.monaco-keybinding > .monaco-keybinding-key-separator {
  display: inline-block;
}

.monaco-keybinding > .monaco-keybinding-key-chord-separator {
  width: 6px;
}
::-ms-clear {
  display: none;
}

.monaco-editor .editor-widget input {
  color: inherit;
}

.monaco-editor {
  -webkit-text-size-adjust: 100%;
  color: var(--vscode-editor-foreground);
  background-color: var(--vscode-editor-background);
  overflow-wrap: initial;
  position: relative;
  overflow: visible;
}

.monaco-editor-background {
  background-color: var(--vscode-editor-background);
}

.monaco-editor .rangeHighlight {
  background-color: var(--vscode-editor-rangeHighlightBackground);
  box-sizing: border-box;
  border: 1px solid var(--vscode-editor-rangeHighlightBorder);
}

.monaco-editor.hc-black .rangeHighlight, .monaco-editor.hc-light .rangeHighlight {
  border-style: dotted;
}

.monaco-editor .symbolHighlight {
  background-color: var(--vscode-editor-symbolHighlightBackground);
  box-sizing: border-box;
  border: 1px solid var(--vscode-editor-symbolHighlightBorder);
}

.monaco-editor.hc-black .symbolHighlight, .monaco-editor.hc-light .symbolHighlight {
  border-style: dotted;
}

.monaco-editor .overflow-guard {
  position: relative;
  overflow: hidden;
}

.monaco-editor .view-overlays {
  position: absolute;
  top: 0;
}

.monaco-editor .view-overlays > div, .monaco-editor .margin-view-overlays > div {
  width: 100%;
  position: absolute;
}

.monaco-editor .squiggly-error {
  border-bottom: 4px double var(--vscode-editorError-border);
}

.monaco-editor .squiggly-error:before {
  content: "";
  background: var(--vscode-editorError-background);
  width: 100%;
  height: 100%;
  display: block;
}

.monaco-editor .squiggly-warning {
  border-bottom: 4px double var(--vscode-editorWarning-border);
}

.monaco-editor .squiggly-warning:before {
  content: "";
  background: var(--vscode-editorWarning-background);
  width: 100%;
  height: 100%;
  display: block;
}

.monaco-editor .squiggly-info {
  border-bottom: 4px double var(--vscode-editorInfo-border);
}

.monaco-editor .squiggly-info:before {
  content: "";
  background: var(--vscode-editorInfo-background);
  width: 100%;
  height: 100%;
  display: block;
}

.monaco-editor .squiggly-hint {
  border-bottom: 2px dotted var(--vscode-editorHint-border);
}

.monaco-editor.showUnused .squiggly-unnecessary {
  border-bottom: 2px dashed var(--vscode-editorUnnecessaryCode-border);
}

.monaco-editor.showDeprecated .squiggly-inline-deprecated {
  text-decoration: line-through;
  -webkit-text-decoration-color: var(--vscode-editor-foreground, inherit);
  text-decoration-color: var(--vscode-editor-foreground, inherit);
}
.monaco-editor .inputarea {
  resize: none;
  color: #0000;
  z-index: -10;
  background-color: #0000;
  border: none;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  overflow: hidden;
  outline: none !important;
}

.monaco-editor .inputarea.ime-input {
  z-index: 10;
  caret-color: var(--vscode-editorCursor-foreground);
  color: var(--vscode-editor-foreground);
}
.monaco-editor .margin-view-overlays .line-numbers {
  font-variant-numeric: tabular-nums;
  text-align: right;
  vertical-align: middle;
  box-sizing: border-box;
  cursor: default;
  display: inline-block;
  position: absolute;
  bottom: 0;
}

.monaco-editor .relative-current-line-number {
  text-align: left;
  width: 100%;
  display: inline-block;
}

.monaco-editor .margin-view-overlays .line-numbers.lh-odd {
  margin-top: 1px;
}

.monaco-editor .line-numbers {
  color: var(--vscode-editorLineNumber-foreground);
}

.monaco-editor .line-numbers.active-line-number {
  color: var(--vscode-editorLineNumber-activeForeground);
}
.monaco-editor .margin {
  background-color: var(--vscode-editorGutter-background);
}
.monaco-mouse-cursor-text {
  cursor: text;
}
.monaco-editor .blockDecorations-container {
  pointer-events: none;
  position: absolute;
  top: 0;
}

.monaco-editor .blockDecorations-block {
  box-sizing: border-box;
  position: absolute;
}
.monaco-editor .view-overlays .current-line, .monaco-editor .margin-view-overlays .current-line {
  box-sizing: border-box;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.monaco-editor .margin-view-overlays .current-line.current-line-margin.current-line-margin-both {
  border-right: 0;
}
.monaco-editor .lines-content .cdr {
  height: 100%;
  position: absolute;
}
.monaco-editor .glyph-margin {
  position: absolute;
  top: 0;
}

.monaco-editor .glyph-margin-widgets .cgmr {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
}

.monaco-editor .glyph-margin-widgets .cgmr.codicon-modifier-spin:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.monaco-editor .lines-content .core-guide {
  box-sizing: border-box;
  height: 100%;
  position: absolute;
}
.mtkcontrol {
  color: #fff !important;
  background: #960000 !important;
}

.mtkoverflow {
  background-color: var(--vscode-button-background, var(--vscode-editor-background));
  color: var(--vscode-button-foreground, var(--vscode-editor-foreground));
  border-style: solid;
  border-width: 1px;
  border-color: var(--vscode-contrastBorder);
  cursor: pointer;
  border-radius: 2px;
  padding: 4px;
}

.mtkoverflow:hover {
  background-color: var(--vscode-button-hoverBackground);
}

.monaco-editor.no-user-select .lines-content, .monaco-editor.no-user-select .view-line, .monaco-editor.no-user-select .view-lines {
  -webkit-user-select: none;
  user-select: none;
}

.monaco-editor.mac .lines-content:hover, .monaco-editor.mac .view-line:hover, .monaco-editor.mac .view-lines:hover {
  -webkit-user-select: text;
  user-select: text;
}

.monaco-editor.enable-user-select {
  user-select: initial;
  -webkit-user-select: initial;
}

.monaco-editor .view-lines {
  white-space: nowrap;
}

.monaco-editor .view-line {
  width: 100%;
  position: absolute;
}

.monaco-editor .lines-content > .view-lines > .view-line > span {
  position: absolute;
  top: 0;
  bottom: 0;
}

.monaco-editor .mtkw {
  color: var(--vscode-editorWhitespace-foreground) !important;
}

.monaco-editor .mtkz {
  display: inline-block;
  color: var(--vscode-editorWhitespace-foreground) !important;
}
.monaco-editor .lines-decorations {
  background: #fff;
  position: absolute;
  top: 0;
}

.monaco-editor .margin-view-overlays .cldr {
  height: 100%;
  position: absolute;
}
.monaco-editor .margin-view-overlays .cmdr {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
}
.monaco-editor .minimap.slider-mouseover .minimap-slider {
  opacity: 0;
  transition: opacity .1s linear;
}

.monaco-editor .minimap.slider-mouseover:hover .minimap-slider, .monaco-editor .minimap.slider-mouseover .minimap-slider.active {
  opacity: 1;
}

.monaco-editor .minimap-slider .minimap-slider-horizontal {
  background: var(--vscode-minimapSlider-background);
}

.monaco-editor .minimap-slider:hover .minimap-slider-horizontal {
  background: var(--vscode-minimapSlider-hoverBackground);
}

.monaco-editor .minimap-slider.active .minimap-slider-horizontal {
  background: var(--vscode-minimapSlider-activeBackground);
}

.monaco-editor .minimap-shadow-visible {
  box-shadow: var(--vscode-scrollbar-shadow) -6px 0 6px -6px inset;
}

.monaco-editor .minimap-shadow-hidden {
  width: 0;
  position: absolute;
}

.monaco-editor .minimap-shadow-visible {
  width: 6px;
  position: absolute;
  left: -6px;
}

.monaco-editor.no-minimap-shadow .minimap-shadow-visible {
  width: 1px;
  position: absolute;
  left: -1px;
}

.minimap.autohide {
  opacity: 0;
  transition: opacity .5s;
}

.minimap.autohide:hover {
  opacity: 1;
}

.monaco-editor .minimap {
  z-index: 5;
}
.monaco-editor .overlayWidgets {
  position: absolute;
  top: 0;
  left: 0;
}
.monaco-editor .view-ruler {
  box-shadow: 1px 0 0 0 var(--vscode-editorRuler-foreground) inset;
  position: absolute;
  top: 0;
}
.monaco-editor .scroll-decoration {
  box-shadow: var(--vscode-scrollbar-shadow) 0 6px 6px -6px inset;
  height: 6px;
  position: absolute;
  top: 0;
  left: 0;
}
.monaco-editor .lines-content .cslr {
  position: absolute;
}

.monaco-editor .focused .selected-text {
  background-color: var(--vscode-editor-selectionBackground);
}

.monaco-editor .selected-text {
  background-color: var(--vscode-editor-inactiveSelectionBackground);
}

.monaco-editor .top-left-radius {
  border-top-left-radius: 3px;
}

.monaco-editor .bottom-left-radius {
  border-bottom-left-radius: 3px;
}

.monaco-editor .top-right-radius {
  border-top-right-radius: 3px;
}

.monaco-editor .bottom-right-radius {
  border-bottom-right-radius: 3px;
}

.monaco-editor.hc-black .top-left-radius {
  border-top-left-radius: 0;
}

.monaco-editor.hc-black .bottom-left-radius {
  border-bottom-left-radius: 0;
}

.monaco-editor.hc-black .top-right-radius {
  border-top-right-radius: 0;
}

.monaco-editor.hc-black .bottom-right-radius {
  border-bottom-right-radius: 0;
}

.monaco-editor.hc-light .top-left-radius {
  border-top-left-radius: 0;
}

.monaco-editor.hc-light .bottom-left-radius {
  border-bottom-left-radius: 0;
}

.monaco-editor.hc-light .top-right-radius {
  border-top-right-radius: 0;
}

.monaco-editor.hc-light .bottom-right-radius {
  border-bottom-right-radius: 0;
}
.monaco-editor .cursors-layer {
  position: absolute;
  top: 0;
}

.monaco-editor .cursors-layer > .cursor {
  box-sizing: border-box;
  position: absolute;
  overflow: hidden;
}

.monaco-editor .cursors-layer.cursor-smooth-caret-animation > .cursor {
  transition: all 80ms;
}

.monaco-editor .cursors-layer.cursor-block-outline-style > .cursor {
  border-style: solid;
  border-width: 1px;
  background: none !important;
}

.monaco-editor .cursors-layer.cursor-underline-style > .cursor {
  border-bottom-style: solid;
  border-bottom-width: 2px;
  background: none !important;
}

.monaco-editor .cursors-layer.cursor-underline-thin-style > .cursor {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  background: none !important;
}

@keyframes monaco-cursor-smooth {
  0%, 20% {
    opacity: 1;
  }

  60%, 100% {
    opacity: 0;
  }
}

@keyframes monaco-cursor-phase {
  0%, 20% {
    opacity: 1;
  }

  90%, 100% {
    opacity: 0;
  }
}

@keyframes monaco-cursor-expand {
  0%, 20% {
    transform: scaleY(1);
  }

  80%, 100% {
    transform: scaleY(0);
  }
}

.cursor-smooth {
  animation: .5s ease-in-out 20 alternate monaco-cursor-smooth;
}

.cursor-phase {
  animation: .5s ease-in-out 20 alternate monaco-cursor-phase;
}

.cursor-expand > .cursor {
  animation: .5s ease-in-out 20 alternate monaco-cursor-expand;
}
.monaco-editor .mwh {
  position: absolute;
  color: var(--vscode-editorWhitespace-foreground) !important;
}
.monaco-editor .diff-hidden-lines-widget {
  width: 100%;
}

.monaco-editor .diff-hidden-lines {
  height: 0;
  font-size: 13px;
  line-height: 14px;
  transform: translate(0, -10px);
}

.monaco-editor .diff-hidden-lines:not(.dragging) .top:hover, .monaco-editor .diff-hidden-lines:not(.dragging) .bottom:hover, .monaco-editor .diff-hidden-lines .top.dragging, .monaco-editor .diff-hidden-lines .bottom.dragging {
  background-color: var(--vscode-focusBorder);
}

.monaco-editor .diff-hidden-lines .top, .monaco-editor .diff-hidden-lines .bottom {
  background-color: #0000;
  background-clip: padding-box;
  border-top: 4px solid #0000;
  border-bottom: 2px solid #0000;
  height: 4px;
  transition: background-color .1s ease-out;
}

.monaco-editor.draggingUnchangedRegion.canMoveTop:not(.canMoveBottom) *, .monaco-editor .diff-hidden-lines .top.canMoveTop:not(.canMoveBottom), .monaco-editor .diff-hidden-lines .bottom.canMoveTop:not(.canMoveBottom) {
  cursor: n-resize !important;
}

.monaco-editor.draggingUnchangedRegion:not(.canMoveTop).canMoveBottom *, .monaco-editor .diff-hidden-lines .top:not(.canMoveTop).canMoveBottom, .monaco-editor .diff-hidden-lines .bottom:not(.canMoveTop).canMoveBottom {
  cursor: s-resize !important;
}

.monaco-editor.draggingUnchangedRegion.canMoveTop.canMoveBottom *, .monaco-editor .diff-hidden-lines .top.canMoveTop.canMoveBottom, .monaco-editor .diff-hidden-lines .bottom.canMoveTop.canMoveBottom {
  cursor: ns-resize !important;
}

.monaco-editor .diff-hidden-lines .top {
  transform: translate(0, 4px);
}

.monaco-editor .diff-hidden-lines .bottom {
  transform: translate(0, -6px);
}

.monaco-editor .diff-unchanged-lines {
  background: var(--vscode-diffEditor-unchangedCodeBackground);
}

.monaco-editor .noModificationsOverlay {
  z-index: 1;
  background: var(--vscode-editor-background);
  justify-content: center;
  align-items: center;
  display: flex;
}

.monaco-editor .diff-hidden-lines .center {
  background: var(--vscode-diffEditor-unchangedRegionBackground);
  color: var(--vscode-diffEditor-unchangedRegionForeground);
  text-overflow: ellipsis;
  white-space: nowrap;
  box-shadow: inset 0 -5px 5px -7px var(--vscode-diffEditor-unchangedRegionShadow), inset 0 5px 5px -7px var(--vscode-diffEditor-unchangedRegionShadow);
  height: 24px;
  display: block;
  overflow: hidden;
}

.monaco-editor .diff-hidden-lines .center span.codicon {
  vertical-align: middle;
}

.monaco-editor .diff-hidden-lines .center a:hover .codicon {
  cursor: pointer;
  color: var(--vscode-editorLink-activeForeground) !important;
}

.monaco-editor .diff-hidden-lines div.breadcrumb-item {
  cursor: pointer;
}

.monaco-editor .diff-hidden-lines div.breadcrumb-item:hover {
  color: var(--vscode-editorLink-activeForeground);
}

.monaco-editor .movedOriginal, .monaco-editor .movedModified {
  border: 2px solid var(--vscode-diffEditor-move-border);
}

.monaco-editor .movedOriginal.currentMove, .monaco-editor .movedModified.currentMove {
  border: 2px solid var(--vscode-diffEditor-moveActive-border);
}

.monaco-diff-editor .moved-blocks-lines path.currentMove {
  stroke: var(--vscode-diffEditor-moveActive-border);
}

.monaco-diff-editor .moved-blocks-lines path {
  pointer-events: visiblestroke;
}

.monaco-diff-editor .moved-blocks-lines .arrow {
  fill: var(--vscode-diffEditor-move-border);
}

.monaco-diff-editor .moved-blocks-lines .arrow.currentMove {
  fill: var(--vscode-diffEditor-moveActive-border);
}

.monaco-diff-editor .moved-blocks-lines .arrow-rectangle {
  fill: var(--vscode-editor-background);
}

.monaco-diff-editor .moved-blocks-lines {
  pointer-events: none;
  position: absolute;
}

.monaco-diff-editor .moved-blocks-lines path {
  fill: none;
  stroke: var(--vscode-diffEditor-move-border);
  stroke-width: 2px;
}

.monaco-editor .char-delete.diff-range-empty {
  border-left: solid var(--vscode-diffEditor-removedTextBackground) 3px;
  margin-left: -1px;
}

.monaco-editor .char-insert.diff-range-empty {
  border-left: solid var(--vscode-diffEditor-insertedTextBackground) 3px;
}

.monaco-editor .fold-unchanged {
  cursor: pointer;
}

.monaco-diff-editor .diff-moved-code-block {
  justify-content: flex-end;
  margin-top: -4px;
  display: flex;
}

.monaco-diff-editor .diff-moved-code-block .action-bar .action-label.codicon {
  width: 12px;
  height: 12px;
  font-size: 12px;
}

.monaco-diff-editor .diffOverview {
  z-index: 9;
}

.monaco-diff-editor .diffOverview .diffViewport {
  z-index: 10;
}

.monaco-diff-editor.vs .diffOverview {
  background: #00000008;
}

.monaco-diff-editor.vs-dark .diffOverview {
  background: #ffffff03;
}

.monaco-scrollable-element.modified-in-monaco-diff-editor.vs .scrollbar, .monaco-scrollable-element.modified-in-monaco-diff-editor.vs-dark .scrollbar, .monaco-scrollable-element.modified-in-monaco-diff-editor.hc-black .scrollbar, .monaco-scrollable-element.modified-in-monaco-diff-editor.hc-light .scrollbar {
  background: none;
}

.monaco-scrollable-element.modified-in-monaco-diff-editor .slider {
  z-index: 10;
}

.modified-in-monaco-diff-editor .slider.active {
  background: #ababab66;
}

.modified-in-monaco-diff-editor.hc-black .slider.active, .modified-in-monaco-diff-editor.hc-light .slider.active {
  background: none;
}

.monaco-editor .insert-sign, .monaco-diff-editor .insert-sign, .monaco-editor .delete-sign, .monaco-diff-editor .delete-sign {
  align-items: center;
  opacity: .7 !important;
  font-size: 11px !important;
  display: flex !important;
}

.monaco-editor.hc-black .insert-sign, .monaco-diff-editor.hc-black .insert-sign, .monaco-editor.hc-black .delete-sign, .monaco-diff-editor.hc-black .delete-sign, .monaco-editor.hc-light .insert-sign, .monaco-diff-editor.hc-light .insert-sign, .monaco-editor.hc-light .delete-sign, .monaco-diff-editor.hc-light .delete-sign {
  opacity: 1;
}

.monaco-editor .inline-deleted-margin-view-zone, .monaco-editor .inline-added-margin-view-zone {
  text-align: right;
}

.monaco-editor .arrow-revert-change {
  z-index: 10;
  position: absolute;
}

.monaco-editor .arrow-revert-change:hover {
  cursor: pointer;
}

.monaco-editor .view-zones .view-lines .view-line span {
  display: inline-block;
}

.monaco-editor .margin-view-zones .lightbulb-glyph:hover {
  cursor: pointer;
}

.monaco-editor .char-insert, .monaco-diff-editor .char-insert {
  background-color: var(--vscode-diffEditor-insertedTextBackground);
}

.monaco-editor .line-insert, .monaco-diff-editor .line-insert {
  background-color: var(--vscode-diffEditor-insertedLineBackground, var(--vscode-diffEditor-insertedTextBackground));
}

.monaco-editor .line-insert, .monaco-editor .char-insert {
  box-sizing: border-box;
  border: 1px solid var(--vscode-diffEditor-insertedTextBorder);
}

.monaco-editor.hc-black .line-insert, .monaco-editor.hc-light .line-insert, .monaco-editor.hc-black .char-insert, .monaco-editor.hc-light .char-insert {
  border-style: dashed;
}

.monaco-editor .line-delete, .monaco-editor .char-delete {
  box-sizing: border-box;
  border: 1px solid var(--vscode-diffEditor-removedTextBorder);
}

.monaco-editor.hc-black .line-delete, .monaco-editor.hc-light .line-delete, .monaco-editor.hc-black .char-delete, .monaco-editor.hc-light .char-delete {
  border-style: dashed;
}

.monaco-editor .inline-added-margin-view-zone, .monaco-editor .gutter-insert, .monaco-diff-editor .gutter-insert {
  background-color: var(--vscode-diffEditorGutter-insertedLineBackground, var(--vscode-diffEditor-insertedLineBackground), var(--vscode-diffEditor-insertedTextBackground));
}

.monaco-editor .char-delete, .monaco-diff-editor .char-delete, .monaco-editor .inline-deleted-text {
  background-color: var(--vscode-diffEditor-removedTextBackground);
}

.monaco-editor .inline-deleted-text {
  text-decoration: line-through;
}

.monaco-editor .line-delete, .monaco-diff-editor .line-delete {
  background-color: var(--vscode-diffEditor-removedLineBackground, var(--vscode-diffEditor-removedTextBackground));
}

.monaco-editor .inline-deleted-margin-view-zone, .monaco-editor .gutter-delete, .monaco-diff-editor .gutter-delete {
  background-color: var(--vscode-diffEditorGutter-removedLineBackground, var(--vscode-diffEditor-removedLineBackground), var(--vscode-diffEditor-removedTextBackground));
}

.monaco-diff-editor.side-by-side .editor.modified {
  box-shadow: -6px 0 5px -5px var(--vscode-scrollbar-shadow);
  border-left: 1px solid var(--vscode-diffEditor-border);
}

.monaco-diff-editor.side-by-side .editor.original {
  box-shadow: 6px 0 5px -5px var(--vscode-scrollbar-shadow);
  border-right: 1px solid var(--vscode-diffEditor-border);
}

.monaco-diff-editor .diffViewport {
  background: var(--vscode-scrollbarSlider-background);
}

.monaco-diff-editor .diffViewport:hover {
  background: var(--vscode-scrollbarSlider-hoverBackground);
}

.monaco-diff-editor .diffViewport:active {
  background: var(--vscode-scrollbarSlider-activeBackground);
}

.monaco-editor .diagonal-fill {
  background-image: linear-gradient(-45deg, var(--vscode-diffEditor-diagonalFill) 12.5%, #0000 12.5%, #0000 50%, var(--vscode-diffEditor-diagonalFill) 50%, var(--vscode-diffEditor-diagonalFill) 62.5%, #0000 62.5%, #0000 100%);
  background-size: 8px 8px;
}

.monaco-diff-editor .gutter {
  flex-grow: 0;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.monaco-diff-editor .gutter > div {
  position: absolute;
}

.monaco-diff-editor .gutter .gutterItem {
  opacity: 0;
  transition: opacity .7s;
}

.monaco-diff-editor .gutter .gutterItem.showAlways {
  opacity: 1;
  transition: none;
}

.monaco-diff-editor .gutter .gutterItem.noTransition {
  transition: none;
}

.monaco-diff-editor .gutter:hover .gutterItem {
  opacity: 1;
  transition: opacity .1s ease-in-out;
}

.monaco-diff-editor .gutter .gutterItem .background {
  border-left: 2px var(--vscode-menu-border) solid;
  width: 1px;
  height: 100%;
  position: absolute;
  left: 50%;
}

.monaco-diff-editor .gutter .gutterItem .buttons {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: absolute;
}

.monaco-diff-editor .gutter .gutterItem .buttons .monaco-toolbar {
  height: -moz-fit-content;
  height: fit-content;
}

.monaco-diff-editor .gutter .gutterItem .buttons .monaco-toolbar .monaco-action-bar {
  line-height: 1;
}

.monaco-diff-editor .gutter .gutterItem .buttons .monaco-toolbar .monaco-action-bar .actions-container {
  background: var(--vscode-editorGutter-commentRangeForeground);
  border-radius: 4px;
  width: -moz-fit-content;
  width: fit-content;
}

.monaco-diff-editor .gutter .gutterItem .buttons .monaco-toolbar .monaco-action-bar .actions-container .action-item:hover {
  background: var(--vscode-toolbar-hoverBackground);
}

.monaco-diff-editor .gutter .gutterItem .buttons .monaco-toolbar .monaco-action-bar .actions-container .action-item .action-label {
  padding: 1px 2px;
}

.monaco-diff-editor .diff-hidden-lines-compact {
  height: 11px;
  display: flex;
}

.monaco-diff-editor .diff-hidden-lines-compact .line-left {
  border-top: 1px solid;
  border-color: var(--vscode-editorCodeLens-foreground);
  opacity: .5;
  width: 100%;
  height: 1px;
  margin: auto;
}

.monaco-diff-editor .diff-hidden-lines-compact .line-right {
  border-top: 1px solid;
  border-color: var(--vscode-editorCodeLens-foreground);
  opacity: .5;
  width: 100%;
  height: 1px;
  margin: auto;
}

.monaco-diff-editor .diff-hidden-lines-compact .line-left {
  width: 20px;
}

.monaco-diff-editor .diff-hidden-lines-compact .text {
  color: var(--vscode-editorCodeLens-foreground);
  text-wrap: nowrap;
  margin: 0 4px;
  font-size: 11px;
  line-height: 11px;
}
.monaco-component.diff-review {
  -webkit-user-select: none;
  user-select: none;
  z-index: 99;
}

.monaco-diff-editor .diff-review {
  position: absolute;
}

.monaco-component.diff-review .diff-review-line-number {
  text-align: right;
  color: var(--vscode-editorLineNumber-foreground);
  display: inline-block;
}

.monaco-component.diff-review .diff-review-summary {
  padding-left: 10px;
}

.monaco-component.diff-review .diff-review-shadow {
  box-shadow: var(--vscode-scrollbar-shadow) 0 -6px 6px -6px inset;
  position: absolute;
}

.monaco-component.diff-review .diff-review-row {
  white-space: pre;
}

.monaco-component.diff-review .diff-review-table {
  min-width: 100%;
  display: table;
}

.monaco-component.diff-review .diff-review-row {
  width: 100%;
  display: table-row;
}

.monaco-component.diff-review .diff-review-spacer {
  vertical-align: middle;
  width: 10px;
  display: inline-block;
}

.monaco-component.diff-review .diff-review-spacer > .codicon {
  font-size: 9px !important;
}

.monaco-component.diff-review .diff-review-actions {
  z-index: 100;
  display: inline-block;
  position: absolute;
  top: 2px;
  right: 10px;
}

.monaco-component.diff-review .diff-review-actions .action-label {
  width: 16px;
  height: 16px;
  margin: 2px 0;
}

.monaco-component.diff-review .revertButton {
  cursor: pointer;
}
.monaco-toolbar {
  height: 100%;
}

.monaco-toolbar .toolbar-toggle-more {
  padding: 0;
  display: inline-block;
}
.monaco-component.multiDiffEditor {
  background: var(--vscode-multiDiffEditor-background);
  width: 100%;
  height: 100%;
  position: relative;
  overflow-y: hidden;
}

.monaco-component.multiDiffEditor > div {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.monaco-component.multiDiffEditor > div.placeholder {
  visibility: hidden;
  place-content: center;
  place-items: center;
  display: grid;
}

.monaco-component.multiDiffEditor > div.placeholder.visible {
  visibility: visible;
}

.monaco-component.multiDiffEditor .active {
  --vscode-multiDiffEditor-border: var(--vscode-focusBorder);
}

.monaco-component.multiDiffEditor .multiDiffEntry {
  flex-direction: column;
  flex: 1;
  display: flex;
  overflow: hidden;
}

.monaco-component.multiDiffEditor .multiDiffEntry .collapse-button {
  cursor: pointer;
  margin: 0 5px;
}

.monaco-component.multiDiffEditor .multiDiffEntry .collapse-button a {
  display: block;
}

.monaco-component.multiDiffEditor .multiDiffEntry .header {
  z-index: 1000;
  background: var(--vscode-editor-background);
}

.monaco-component.multiDiffEditor .multiDiffEntry .header:not(.collapsed) .header-content {
  border-bottom: 1px solid var(--vscode-sideBarSectionHeader-border);
}

.monaco-component.multiDiffEditor .multiDiffEntry .header .header-content {
  border-top: 1px solid var(--vscode-multiDiffEditor-border);
  color: var(--vscode-foreground);
  background: var(--vscode-multiDiffEditor-headerBackground);
  align-items: center;
  margin: 8px 0 0;
  padding: 4px 5px;
  display: flex;
}

.monaco-component.multiDiffEditor .multiDiffEntry .header .header-content.shadow {
  box-shadow: var(--vscode-scrollbar-shadow) 0px 6px 6px -6px;
}

.monaco-component.multiDiffEditor .multiDiffEntry .header .header-content .file-path {
  flex: 1;
  min-width: 0;
  display: flex;
}

.monaco-component.multiDiffEditor .multiDiffEntry .header .header-content .file-path .title {
  font-size: 14px;
  line-height: 22px;
}

.monaco-component.multiDiffEditor .multiDiffEntry .header .header-content .file-path .title.original {
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}

.monaco-component.multiDiffEditor .multiDiffEntry .header .header-content .file-path .status {
  opacity: .75;
  margin: 0 10px;
  font-weight: 600;
  line-height: 22px;
}

.monaco-component.multiDiffEditor .multiDiffEntry .header .header-content .actions {
  padding: 0 8px;
}

.monaco-component.multiDiffEditor .multiDiffEntry .editorParent {
  border-bottom: 1px solid var(--vscode-multiDiffEditor-border);
  flex-direction: column;
  flex: 1;
  display: flex;
  overflow: hidden;
}

.monaco-component.multiDiffEditor .multiDiffEntry .editorContainer {
  flex: 1;
}
.monaco-editor .selection-anchor {
  background-color: #007acc;
  width: 2px !important;
}
.monaco-editor .bracket-match {
  box-sizing: border-box;
  background-color: var(--vscode-editorBracketMatch-background);
  border: 1px solid var(--vscode-editorBracketMatch-border);
}
.inline-editor-progress-decoration {
  width: 1em;
  height: 1em;
  display: inline-block;
}

.inline-progress-widget {
  justify-content: center;
  align-items: center;
  display: flex !important;
}

.inline-progress-widget .icon {
  font-size: 80% !important;
}

.inline-progress-widget:hover .icon {
  animation: none;
  font-size: 90% !important;
}

.inline-progress-widget:hover .icon:before {
  content: var(--vscode-icon-x-content);
  font-family: var(--vscode-icon-x-font-family);
}
.monaco-editor .monaco-editor-overlaymessage {
  z-index: 10000;
  padding-bottom: 8px;
}

.monaco-editor .monaco-editor-overlaymessage.below {
  z-index: 10000;
  padding-top: 8px;
  padding-bottom: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.monaco-editor .monaco-editor-overlaymessage.fadeIn {
  animation: .15s ease-out fadeIn;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.monaco-editor .monaco-editor-overlaymessage.fadeOut {
  animation: .1s ease-out fadeOut;
}

.monaco-editor .monaco-editor-overlaymessage .message {
  color: var(--vscode-editorHoverWidget-foreground);
  background-color: var(--vscode-editorHoverWidget-background);
  border: 1px solid var(--vscode-inputValidation-infoBorder);
  border-radius: 3px;
  padding: 2px 4px;
}

.monaco-editor .monaco-editor-overlaymessage .message p {
  margin-block-start: 0;
  margin-block-end: 0;
}

.monaco-editor .monaco-editor-overlaymessage .message a {
  color: var(--vscode-textLink-foreground);
}

.monaco-editor .monaco-editor-overlaymessage .message a:hover {
  color: var(--vscode-textLink-activeForeground);
}

.monaco-editor.hc-black .monaco-editor-overlaymessage .message, .monaco-editor.hc-light .monaco-editor-overlaymessage .message {
  border-width: 2px;
}

.monaco-editor .monaco-editor-overlaymessage .anchor {
  z-index: 1000;
  border: 8px solid #0000;
  position: absolute;
  left: 2px;
  width: 0 !important;
  height: 0 !important;
}

.monaco-editor .monaco-editor-overlaymessage .anchor.top {
  border-bottom-color: var(--vscode-inputValidation-infoBorder);
}

.monaco-editor .monaco-editor-overlaymessage .anchor.below {
  border-top-color: var(--vscode-inputValidation-infoBorder);
}

.monaco-editor .monaco-editor-overlaymessage:not(.below) .anchor.top, .monaco-editor .monaco-editor-overlaymessage.below .anchor.below {
  display: none;
}

.monaco-editor .monaco-editor-overlaymessage.below .anchor.top {
  display: inherit;
  top: -8px;
}
.post-edit-widget {
  box-shadow: 0 0 8px 2px var(--vscode-widget-shadow);
  border: 1px solid var(--vscode-widget-border, transparent);
  background-color: var(--vscode-editorWidget-background);
  border-radius: 4px;
  overflow: hidden;
}

.post-edit-widget .monaco-button {
  border: none;
  border-radius: 0;
  padding: 2px;
}

.post-edit-widget .monaco-button:hover {
  background-color: var(--vscode-button-secondaryHoverBackground) !important;
}

.post-edit-widget .monaco-button .codicon {
  margin: 0;
}
@font-face {
  font-family: codicon;
  font-display: block;
  src: url("/assets/codicon-DCmgc-ay.ttf") format("truetype");
}

.codicon[class*="codicon-"] {
  text-rendering: auto;
  text-align: center;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-user-select: none;
  user-select: none;
  font: 16px / 1 codicon;
  text-decoration: none;
  display: inline-block;
}
.codicon-wrench-subaction {
  opacity: .5;
}

@keyframes codicon-spin {
  100% {
    transform: rotate(360deg);
  }
}

.codicon-sync.codicon-modifier-spin, .codicon-loading.codicon-modifier-spin, .codicon-gear.codicon-modifier-spin, .codicon-notebook-state-executing.codicon-modifier-spin {
  animation: 1.5s steps(30, end) infinite codicon-spin;
}

.codicon-modifier-disabled {
  opacity: .4;
}

.codicon-loading, .codicon-tree-item-loading:before {
  animation-duration: 1s !important;
  animation-timing-function: cubic-bezier(.53, .21, .29, .67) !important;
}
.monaco-editor .codicon.codicon-symbol-array, .monaco-workbench .codicon.codicon-symbol-array {
  color: var(--vscode-symbolIcon-arrayForeground);
}

.monaco-editor .codicon.codicon-symbol-boolean, .monaco-workbench .codicon.codicon-symbol-boolean {
  color: var(--vscode-symbolIcon-booleanForeground);
}

.monaco-editor .codicon.codicon-symbol-class, .monaco-workbench .codicon.codicon-symbol-class {
  color: var(--vscode-symbolIcon-classForeground);
}

.monaco-editor .codicon.codicon-symbol-method, .monaco-workbench .codicon.codicon-symbol-method {
  color: var(--vscode-symbolIcon-methodForeground);
}

.monaco-editor .codicon.codicon-symbol-color, .monaco-workbench .codicon.codicon-symbol-color {
  color: var(--vscode-symbolIcon-colorForeground);
}

.monaco-editor .codicon.codicon-symbol-constant, .monaco-workbench .codicon.codicon-symbol-constant {
  color: var(--vscode-symbolIcon-constantForeground);
}

.monaco-editor .codicon.codicon-symbol-constructor, .monaco-workbench .codicon.codicon-symbol-constructor {
  color: var(--vscode-symbolIcon-constructorForeground);
}

.monaco-editor .codicon.codicon-symbol-value, .monaco-workbench .codicon.codicon-symbol-value, .monaco-editor .codicon.codicon-symbol-enum, .monaco-workbench .codicon.codicon-symbol-enum {
  color: var(--vscode-symbolIcon-enumeratorForeground);
}

.monaco-editor .codicon.codicon-symbol-enum-member, .monaco-workbench .codicon.codicon-symbol-enum-member {
  color: var(--vscode-symbolIcon-enumeratorMemberForeground);
}

.monaco-editor .codicon.codicon-symbol-event, .monaco-workbench .codicon.codicon-symbol-event {
  color: var(--vscode-symbolIcon-eventForeground);
}

.monaco-editor .codicon.codicon-symbol-field, .monaco-workbench .codicon.codicon-symbol-field {
  color: var(--vscode-symbolIcon-fieldForeground);
}

.monaco-editor .codicon.codicon-symbol-file, .monaco-workbench .codicon.codicon-symbol-file {
  color: var(--vscode-symbolIcon-fileForeground);
}

.monaco-editor .codicon.codicon-symbol-folder, .monaco-workbench .codicon.codicon-symbol-folder {
  color: var(--vscode-symbolIcon-folderForeground);
}

.monaco-editor .codicon.codicon-symbol-function, .monaco-workbench .codicon.codicon-symbol-function {
  color: var(--vscode-symbolIcon-functionForeground);
}

.monaco-editor .codicon.codicon-symbol-interface, .monaco-workbench .codicon.codicon-symbol-interface {
  color: var(--vscode-symbolIcon-interfaceForeground);
}

.monaco-editor .codicon.codicon-symbol-key, .monaco-workbench .codicon.codicon-symbol-key {
  color: var(--vscode-symbolIcon-keyForeground);
}

.monaco-editor .codicon.codicon-symbol-keyword, .monaco-workbench .codicon.codicon-symbol-keyword {
  color: var(--vscode-symbolIcon-keywordForeground);
}

.monaco-editor .codicon.codicon-symbol-module, .monaco-workbench .codicon.codicon-symbol-module {
  color: var(--vscode-symbolIcon-moduleForeground);
}

.monaco-editor .codicon.codicon-symbol-namespace, .monaco-workbench .codicon.codicon-symbol-namespace {
  color: var(--vscode-symbolIcon-namespaceForeground);
}

.monaco-editor .codicon.codicon-symbol-null, .monaco-workbench .codicon.codicon-symbol-null {
  color: var(--vscode-symbolIcon-nullForeground);
}

.monaco-editor .codicon.codicon-symbol-number, .monaco-workbench .codicon.codicon-symbol-number {
  color: var(--vscode-symbolIcon-numberForeground);
}

.monaco-editor .codicon.codicon-symbol-object, .monaco-workbench .codicon.codicon-symbol-object {
  color: var(--vscode-symbolIcon-objectForeground);
}

.monaco-editor .codicon.codicon-symbol-operator, .monaco-workbench .codicon.codicon-symbol-operator {
  color: var(--vscode-symbolIcon-operatorForeground);
}

.monaco-editor .codicon.codicon-symbol-package, .monaco-workbench .codicon.codicon-symbol-package {
  color: var(--vscode-symbolIcon-packageForeground);
}

.monaco-editor .codicon.codicon-symbol-property, .monaco-workbench .codicon.codicon-symbol-property {
  color: var(--vscode-symbolIcon-propertyForeground);
}

.monaco-editor .codicon.codicon-symbol-reference, .monaco-workbench .codicon.codicon-symbol-reference {
  color: var(--vscode-symbolIcon-referenceForeground);
}

.monaco-editor .codicon.codicon-symbol-snippet, .monaco-workbench .codicon.codicon-symbol-snippet {
  color: var(--vscode-symbolIcon-snippetForeground);
}

.monaco-editor .codicon.codicon-symbol-string, .monaco-workbench .codicon.codicon-symbol-string {
  color: var(--vscode-symbolIcon-stringForeground);
}

.monaco-editor .codicon.codicon-symbol-struct, .monaco-workbench .codicon.codicon-symbol-struct {
  color: var(--vscode-symbolIcon-structForeground);
}

.monaco-editor .codicon.codicon-symbol-text, .monaco-workbench .codicon.codicon-symbol-text {
  color: var(--vscode-symbolIcon-textForeground);
}

.monaco-editor .codicon.codicon-symbol-type-parameter, .monaco-workbench .codicon.codicon-symbol-type-parameter {
  color: var(--vscode-symbolIcon-typeParameterForeground);
}

.monaco-editor .codicon.codicon-symbol-unit, .monaco-workbench .codicon.codicon-symbol-unit {
  color: var(--vscode-symbolIcon-unitForeground);
}

.monaco-editor .codicon.codicon-symbol-variable, .monaco-workbench .codicon.codicon-symbol-variable {
  color: var(--vscode-symbolIcon-variableForeground);
}
.monaco-editor .lightBulbWidget {
  justify-content: center;
  align-items: center;
  display: flex;
}

.monaco-editor .lightBulbWidget:hover {
  cursor: pointer;
}

.monaco-editor .lightBulbWidget.codicon-light-bulb, .monaco-editor .lightBulbWidget.codicon-lightbulb-sparkle {
  color: var(--vscode-editorLightBulb-foreground);
}

.monaco-editor .lightBulbWidget.codicon-lightbulb-autofix, .monaco-editor .lightBulbWidget.codicon-lightbulb-sparkle-autofix {
  color: var(--vscode-editorLightBulbAutoFix-foreground, var(--vscode-editorLightBulb-foreground));
}

.monaco-editor .lightBulbWidget.codicon-sparkle-filled {
  color: var(--vscode-editorLightBulbAi-foreground, var(--vscode-icon-foreground));
}

.monaco-editor .lightBulbWidget:before {
  z-index: 2;
  position: relative;
}

.monaco-editor .lightBulbWidget:after {
  content: "";
  opacity: .3;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.monaco-editor .glyph-margin-widgets .cgmr[class*="codicon-gutter-lightbulb"] {
  cursor: pointer;
  display: block;
}

.monaco-editor .glyph-margin-widgets .cgmr.codicon-gutter-lightbulb, .monaco-editor .glyph-margin-widgets .cgmr.codicon-gutter-lightbulb-sparkle {
  color: var(--vscode-editorLightBulb-foreground);
}

.monaco-editor .glyph-margin-widgets .cgmr.codicon-gutter-lightbulb-auto-fix, .monaco-editor .glyph-margin-widgets .cgmr.codicon-gutter-lightbulb-aifix-auto-fix {
  color: var(--vscode-editorLightBulbAutoFix-foreground, var(--vscode-editorLightBulb-foreground));
}

.monaco-editor .glyph-margin-widgets .cgmr.codicon-gutter-lightbulb-sparkle-filled {
  color: var(--vscode-editorLightBulbAi-foreground, var(--vscode-icon-foreground));
}
.action-widget {
  z-index: 40;
  background-color: var(--vscode-editorActionList-background);
  color: var(--vscode-editorActionList-foreground);
  box-shadow: 0 2px 8px var(--vscode-widget-shadow);
  border-radius: 5px;
  width: 100%;
  min-width: 160px;
  max-width: 80vw;
  padding: 4px;
  font-size: 13px;
  display: block;
  border: 1px solid var(--vscode-editorWidget-border) !important;
}

.context-view-block {
  cursor: initial;
  z-index: -1;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

.context-view-pointerBlock {
  cursor: initial;
  z-index: 2;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

.action-widget .monaco-list {
  -webkit-user-select: none;
  user-select: none;
  border: 0 !important;
}

.action-widget .monaco-list:focus:before {
  outline: 0 !important;
}

.action-widget .monaco-list .monaco-scrollable-element {
  overflow: visible;
}

.action-widget .monaco-list .monaco-list-row {
  white-space: nowrap;
  cursor: pointer;
  touch-action: none;
  border-radius: 4px;
  width: 100%;
  padding: 0 10px;
}

.action-widget .monaco-list .monaco-list-row.action.focused:not(.option-disabled) {
  color: var(--vscode-editorActionList-focusForeground);
  outline: 1px solid var(--vscode-menu-selectionBorder, transparent);
  outline-offset: -1px;
  background-color: var(--vscode-editorActionList-focusBackground) !important;
}

.action-widget .monaco-list-row.group-header {
  font-size: 12px;
  font-weight: 600;
  color: var(--vscode-descriptionForeground) !important;
}

.action-widget .monaco-list-row.group-header:not(:first-of-type) {
  margin-top: 2px;
}

.action-widget .monaco-list .group-header, .action-widget .monaco-list .option-disabled, .action-widget .monaco-list .option-disabled:before, .action-widget .monaco-list .option-disabled .focused, .action-widget .monaco-list .option-disabled .focused:before {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  cursor: default !important;
  background-color: #0000 !important;
  outline: 0 solid !important;
}

.action-widget .monaco-list-row.action {
  align-items: center;
  gap: 8px;
  display: flex;
}

.action-widget .monaco-list-row.action.option-disabled, .action-widget .monaco-list:focus .monaco-list-row.focused.action.option-disabled, .action-widget .monaco-list-row.action.option-disabled .codicon, .action-widget .monaco-list:not(.drop-target):not(.dragging) .monaco-list-row:hover:not(.selected):not(.focused).option-disabled {
  color: var(--vscode-disabledForeground);
}

.action-widget .monaco-list-row.action:not(.option-disabled) .codicon {
  color: inherit;
}

.action-widget .monaco-list-row.action .title {
  text-overflow: ellipsis;
  flex: 1;
  overflow: hidden;
}

.action-widget .monaco-list-row.action .monaco-keybinding > .monaco-keybinding-key {
  background-color: var(--vscode-keybindingLabel-background);
  color: var(--vscode-keybindingLabel-foreground);
  border-style: solid;
  border-width: 1px;
  border-color: var(--vscode-keybindingLabel-border);
  border-bottom-color: var(--vscode-keybindingLabel-bottomBorder);
  box-shadow: inset 0 -1px 0 var(--vscode-widget-shadow);
  border-radius: 3px;
}

.action-widget .action-widget-action-bar {
  background-color: var(--vscode-editorActionList-background);
  border-top: 1px solid var(--vscode-editorHoverWidget-border);
  margin-top: 2px;
}

.action-widget .action-widget-action-bar:before {
  content: "";
  width: 100%;
  display: block;
}

.action-widget .action-widget-action-bar .actions-container {
  padding: 3px 8px 0;
}

.action-widget-action-bar .action-label {
  color: var(--vscode-textLink-activeForeground);
  pointer-events: all;
  padding: 0;
  font-size: 12px;
  line-height: 22px;
}

.action-widget-action-bar .action-item {
  pointer-events: none;
  margin-right: 16px;
}

.action-widget-action-bar .action-label:hover {
  background-color: #0000 !important;
}

.monaco-action-bar .actions-container.highlight-toggled .action-label.checked {
  background: var(--vscode-actionBar-toggledBackground) !important;
}
.monaco-editor .codelens-decoration {
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--vscode-editorCodeLens-foreground);
  line-height: var(--vscode-editorCodeLens-lineHeight);
  font-size: var(--vscode-editorCodeLens-fontSize);
  padding-right: calc(var(--vscode-editorCodeLens-fontSize) * .5);
  font-feature-settings: var(--vscode-editorCodeLens-fontFeatureSettings);
  font-family: var(--vscode-editorCodeLens-fontFamily), var(--vscode-editorCodeLens-fontFamilyDefault);
  display: inline-block;
  overflow: hidden;
}

.monaco-editor .codelens-decoration > span, .monaco-editor .codelens-decoration > a {
  -webkit-user-select: none;
  user-select: none;
  white-space: nowrap;
  vertical-align: sub;
}

.monaco-editor .codelens-decoration > a {
  text-decoration: none;
}

.monaco-editor .codelens-decoration > a:hover {
  cursor: pointer;
  color: var(--vscode-editorLink-activeForeground) !important;
}

.monaco-editor .codelens-decoration > a:hover .codicon {
  color: var(--vscode-editorLink-activeForeground) !important;
}

.monaco-editor .codelens-decoration .codicon {
  vertical-align: middle;
  color: var(--vscode-editorCodeLens-foreground);
  line-height: var(--vscode-editorCodeLens-lineHeight);
  font-size: var(--vscode-editorCodeLens-fontSize);
  color: currentColor !important;
}

.monaco-editor .codelens-decoration > a:hover .codicon:before {
  cursor: pointer;
}

@keyframes fadein {
  0% {
    opacity: 0;
    visibility: visible;
  }

  100% {
    opacity: 1;
  }
}

.monaco-editor .codelens-decoration.fadein {
  animation: .1s linear fadein;
}
.colorpicker-widget {
  -webkit-user-select: none;
  user-select: none;
  height: 190px;
}

.colorpicker-color-decoration, .hc-light .colorpicker-color-decoration {
  box-sizing: border-box;
  cursor: pointer;
  border: .1em solid #000;
  width: .8em;
  height: .8em;
  margin: .1em .2em 0;
  line-height: .8em;
  display: inline-block;
}

.hc-black .colorpicker-color-decoration, .vs-dark .colorpicker-color-decoration {
  border: .1em solid #eee;
}

.colorpicker-header {
  image-rendering: pixelated;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAZdEVYdFNvZnR3YXJlAHBhaW50Lm5ldCA0LjAuMTZEaa/1AAAAHUlEQVQYV2PYvXu3JAi7uLiAMaYAjAGTQBPYLQkAa/0Zef3qRswAAAAASUVORK5CYII=") 0 0 / 9px 9px;
  height: 24px;
  display: flex;
  position: relative;
}

.colorpicker-header .picked-color {
  cursor: pointer;
  color: #fff;
  white-space: nowrap;
  flex: 1;
  justify-content: center;
  align-items: center;
  width: 240px;
  line-height: 24px;
  display: flex;
  overflow: hidden;
}

.colorpicker-header .picked-color .picked-color-presentation {
  white-space: nowrap;
  margin-left: 5px;
  margin-right: 5px;
}

.colorpicker-header .picked-color .codicon {
  color: inherit;
  font-size: 14px;
}

.colorpicker-header .picked-color.light {
  color: #000;
}

.colorpicker-header .original-color {
  z-index: inherit;
  cursor: pointer;
  width: 74px;
}

.standalone-colorpicker {
  color: var(--vscode-editorHoverWidget-foreground);
  background-color: var(--vscode-editorHoverWidget-background);
  border: 1px solid var(--vscode-editorHoverWidget-border);
}

.colorpicker-header.standalone-colorpicker {
  border-bottom: none;
}

.colorpicker-header .close-button {
  cursor: pointer;
  background-color: var(--vscode-editorHoverWidget-background);
  border-left: 1px solid var(--vscode-editorHoverWidget-border);
}

.colorpicker-header .close-button-inner-div {
  text-align: center;
  width: 100%;
  height: 100%;
}

.colorpicker-header .close-button-inner-div:hover {
  background-color: var(--vscode-toolbar-hoverBackground);
}

.colorpicker-header .close-icon {
  padding: 3px;
}

.colorpicker-body {
  padding: 8px;
  display: flex;
  position: relative;
}

.colorpicker-body .saturation-wrap {
  flex: 1;
  min-width: 220px;
  height: 150px;
  position: relative;
  overflow: hidden;
}

.colorpicker-body .saturation-box {
  height: 150px;
  position: absolute;
}

.colorpicker-body .saturation-selection {
  border: 1px solid #fff;
  border-radius: 100%;
  width: 9px;
  height: 9px;
  margin: -5px 0 0 -5px;
  position: absolute;
  box-shadow: 0 0 2px #000c;
}

.colorpicker-body .strip {
  width: 25px;
  height: 150px;
}

.colorpicker-body .standalone-strip {
  width: 25px;
  height: 122px;
}

.colorpicker-body .hue-strip {
  cursor: grab;
  background: linear-gradient(red 0%, #ff0 17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, red 100%);
  margin-left: 8px;
  position: relative;
}

.colorpicker-body .opacity-strip {
  cursor: grab;
  image-rendering: pixelated;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAZdEVYdFNvZnR3YXJlAHBhaW50Lm5ldCA0LjAuMTZEaa/1AAAAHUlEQVQYV2PYvXu3JAi7uLiAMaYAjAGTQBPYLQkAa/0Zef3qRswAAAAASUVORK5CYII=") 0 0 / 9px 9px;
  margin-left: 8px;
  position: relative;
}

.colorpicker-body .strip.grabbing {
  cursor: grabbing;
}

.colorpicker-body .slider {
  box-sizing: border-box;
  border: 1px solid #ffffffb5;
  width: calc(100% + 4px);
  height: 4px;
  position: absolute;
  top: 0;
  left: -2px;
  box-shadow: 0 0 1px #000000d9;
}

.colorpicker-body .strip .overlay {
  pointer-events: none;
  height: 150px;
}

.colorpicker-body .standalone-strip .standalone-overlay {
  pointer-events: none;
  height: 122px;
}

.standalone-colorpicker-body {
  border: 1px solid #0000;
  border-bottom: 1px solid var(--vscode-editorHoverWidget-border);
  display: block;
  overflow: hidden;
}

.colorpicker-body .insert-button {
  background: var(--vscode-button-background);
  color: var(--vscode-button-foreground);
  cursor: pointer;
  border: none;
  border-radius: 2px;
  width: 58px;
  height: 20px;
  padding: 0;
  position: absolute;
  bottom: 8px;
  right: 8px;
}

.colorpicker-body .insert-button:hover {
  background: var(--vscode-button-hoverBackground);
}
.monaco-editor .inlineSuggestionsHints.withBorder {
  z-index: 39;
  color: var(--vscode-editorHoverWidget-foreground);
  background-color: var(--vscode-editorHoverWidget-background);
  border: 1px solid var(--vscode-editorHoverWidget-border);
}

.monaco-editor .inlineSuggestionsHints a, .monaco-editor .inlineSuggestionsHints a:hover {
  color: var(--vscode-foreground);
}

.monaco-editor .inlineSuggestionsHints .keybinding {
  opacity: .6;
  margin-left: 4px;
  display: flex;
}

.monaco-editor .inlineSuggestionsHints .keybinding .monaco-keybinding-key {
  padding: 2px 3px;
  font-size: 8px;
}

.monaco-editor .inlineSuggestionsHints .availableSuggestionCount a {
  justify-content: center;
  min-width: 19px;
  display: flex;
}

.monaco-editor .inlineSuggestionStatusBarItemLabel {
  margin-right: 2px;
}
.monaco-editor .peekview-widget .head {
  box-sizing: border-box;
  flex-wrap: nowrap;
  justify-content: space-between;
  display: flex;
}

.monaco-editor .peekview-widget .head .peekview-title {
  text-overflow: ellipsis;
  align-items: baseline;
  min-width: 0;
  margin-left: 20px;
  font-size: 13px;
  display: flex;
  overflow: hidden;
}

.monaco-editor .peekview-widget .head .peekview-title.clickable {
  cursor: pointer;
}

.monaco-editor .peekview-widget .head .peekview-title .dirname:not(:empty) {
  margin-left: .5em;
  font-size: .9em;
}

.monaco-editor .peekview-widget .head .peekview-title .meta {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.monaco-editor .peekview-widget .head .peekview-title .dirname, .monaco-editor .peekview-widget .head .peekview-title .filename {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.monaco-editor .peekview-widget .head .peekview-title .meta:not(:empty):before {
  content: "-";
  padding: 0 .3em;
}

.monaco-editor .peekview-widget .head .peekview-actions {
  text-align: right;
  flex: 1;
  padding-right: 2px;
}

.monaco-editor .peekview-widget .head .peekview-actions > .monaco-action-bar {
  display: inline-block;
}

.monaco-editor .peekview-widget .head .peekview-actions > .monaco-action-bar, .monaco-editor .peekview-widget .head .peekview-actions > .monaco-action-bar > .actions-container {
  height: 100%;
}

.monaco-editor .peekview-widget > .body {
  border-top: 1px solid;
  position: relative;
}

.monaco-editor .peekview-widget .head .peekview-title .codicon {
  align-self: center;
  margin-right: 4px;
}

.monaco-editor .peekview-widget .monaco-list .monaco-list-row.focused .codicon {
  color: inherit !important;
}
.monaco-editor .zone-widget {
  z-index: 10;
  position: absolute;
}

.monaco-editor .zone-widget .zone-widget-container {
  border-top-style: solid;
  border-top-width: 0;
  border-bottom-style: solid;
  border-bottom-width: 0;
  position: relative;
}
.monaco-editor .zone-widget .zone-widget-container.reference-zone-widget {
  border-top-width: 1px;
  border-bottom-width: 1px;
}

.monaco-editor .reference-zone-widget .inline {
  vertical-align: top;
  display: inline-block;
}

.monaco-editor .reference-zone-widget .messages {
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 3em 0;
}

.monaco-editor .reference-zone-widget .ref-tree {
  background-color: var(--vscode-peekViewResult-background);
  color: var(--vscode-peekViewResult-lineForeground);
  line-height: 23px;
}

.monaco-editor .reference-zone-widget .ref-tree .reference {
  text-overflow: ellipsis;
  overflow: hidden;
}

.monaco-editor .reference-zone-widget .ref-tree .reference-file {
  color: var(--vscode-peekViewResult-fileForeground);
  width: 100%;
  height: 100%;
  display: inline-flex;
}

.monaco-editor .reference-zone-widget .ref-tree .monaco-list:focus .selected .reference-file {
  color: inherit !important;
}

.monaco-editor .reference-zone-widget .ref-tree .monaco-list:focus .monaco-list-rows > .monaco-list-row.selected:not(.highlighted) {
  background-color: var(--vscode-peekViewResult-selectionBackground);
  color: var(--vscode-peekViewResult-selectionForeground) !important;
}

.monaco-editor .reference-zone-widget .ref-tree .reference-file .count {
  margin-left: auto;
  margin-right: 12px;
}

.monaco-editor .reference-zone-widget .ref-tree .referenceMatch .highlight {
  background-color: var(--vscode-peekViewResult-matchHighlightBackground);
}

.monaco-editor .reference-zone-widget .preview .reference-decoration {
  background-color: var(--vscode-peekViewEditor-matchHighlightBackground);
  border: 2px solid var(--vscode-peekViewEditor-matchHighlightBorder);
  box-sizing: border-box;
}

.monaco-editor .reference-zone-widget .preview .monaco-editor .monaco-editor-background, .monaco-editor .reference-zone-widget .preview .monaco-editor .inputarea.ime-input {
  background-color: var(--vscode-peekViewEditor-background);
}

.monaco-editor .reference-zone-widget .preview .monaco-editor .margin {
  background-color: var(--vscode-peekViewEditorGutter-background);
}

.monaco-editor.hc-black .reference-zone-widget .ref-tree .reference-file, .monaco-editor.hc-light .reference-zone-widget .ref-tree .reference-file {
  font-weight: bold;
}

.monaco-editor.hc-black .reference-zone-widget .ref-tree .referenceMatch .highlight, .monaco-editor.hc-light .reference-zone-widget .ref-tree .referenceMatch .highlight {
  border: 1px dotted var(--vscode-contrastActiveBorder, transparent);
  box-sizing: border-box;
}
.monaco-editor .hoverHighlight {
  background-color: var(--vscode-editor-hoverHighlightBackground);
}

.monaco-editor .monaco-hover-content {
  box-sizing: border-box;
  padding-bottom: 2px;
  padding-right: 2px;
}

.monaco-editor .monaco-hover {
  color: var(--vscode-editorHoverWidget-foreground);
  background-color: var(--vscode-editorHoverWidget-background);
  border: 1px solid var(--vscode-editorHoverWidget-border);
  border-radius: 3px;
}

.monaco-editor .monaco-hover a {
  color: var(--vscode-textLink-foreground);
}

.monaco-editor .monaco-hover a:hover {
  color: var(--vscode-textLink-activeForeground);
}

.monaco-editor .monaco-hover .hover-row {
  display: flex;
}

.monaco-editor .monaco-hover .hover-row .hover-row-contents {
  flex-direction: column;
  min-width: 0;
  display: flex;
}

.monaco-editor .monaco-hover .hover-row .verbosity-actions {
  border-right: 1px solid var(--vscode-editorHoverWidget-border);
  flex-direction: column;
  justify-content: end;
  padding-left: 5px;
  padding-right: 5px;
  display: flex;
}

.monaco-editor .monaco-hover .hover-row .verbosity-actions .codicon {
  cursor: pointer;
  font-size: 11px;
}

.monaco-editor .monaco-hover .hover-row .verbosity-actions .codicon.enabled {
  color: var(--vscode-textLink-foreground);
}

.monaco-editor .monaco-hover .hover-row .verbosity-actions .codicon.disabled {
  opacity: .6;
}

.monaco-editor .monaco-hover .hover-row .actions {
  background-color: var(--vscode-editorHoverWidget-statusBarBackground);
}

.monaco-editor .monaco-hover code {
  background-color: var(--vscode-textCodeBlock-background);
}
.monaco-editor.vs .dnd-target, .monaco-editor.hc-light .dnd-target {
  color: #fff;
  border-right: 2px dotted #000;
}

.monaco-editor.vs-dark .dnd-target {
  color: #51504f;
  border-right: 2px dotted #aeafad;
}

.monaco-editor.hc-black .dnd-target {
  color: #000;
  border-right: 2px dotted #fff;
}

.monaco-editor.mouse-default .view-lines, .monaco-editor.vs-dark.mac.mouse-default .view-lines, .monaco-editor.hc-black.mac.mouse-default .view-lines, .monaco-editor.hc-light.mac.mouse-default .view-lines {
  cursor: default;
}

.monaco-editor.mouse-copy .view-lines, .monaco-editor.vs-dark.mac.mouse-copy .view-lines, .monaco-editor.hc-black.mac.mouse-copy .view-lines, .monaco-editor.hc-light.mac.mouse-copy .view-lines {
  cursor: copy;
}
.monaco-editor .findOptionsWidget {
  background-color: var(--vscode-editorWidget-background);
  color: var(--vscode-editorWidget-foreground);
  box-shadow: 0 0 8px 2px var(--vscode-widget-shadow);
  border: 2px solid var(--vscode-contrastBorder);
}
.monaco-editor .find-widget {
  z-index: 35;
  box-sizing: border-box;
  box-shadow: 0 0 8px 2px var(--vscode-widget-shadow);
  color: var(--vscode-editorWidget-foreground);
  border-left: 1px solid var(--vscode-widget-border);
  border-right: 1px solid var(--vscode-widget-border);
  border-bottom: 1px solid var(--vscode-widget-border);
  background-color: var(--vscode-editorWidget-background);
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  height: 33px;
  padding: 0 4px;
  line-height: 19px;
  transition: transform .2s linear;
  position: absolute;
  overflow: hidden;
  transform: translateY(calc(-100% - 10px));
}

.monaco-workbench.reduce-motion .monaco-editor .find-widget {
  transition: transform linear;
}

.monaco-editor .find-widget textarea {
  margin: 0;
}

.monaco-editor .find-widget.hiddenEditor {
  display: none;
}

.monaco-editor .find-widget.replaceToggled > .replace-part {
  display: flex;
}

.monaco-editor .find-widget.visible {
  transform: translateY(0);
}

.monaco-editor .find-widget .monaco-inputbox.synthetic-focus {
  outline: 1px solid -webkit-focus-ring-color;
  outline-offset: -1px;
  outline-color: var(--vscode-focusBorder);
}

.monaco-editor .find-widget .monaco-inputbox .input {
  background-color: #0000;
  min-height: 0;
}

.monaco-editor .find-widget .monaco-findInput .input {
  font-size: 13px;
}

.monaco-editor .find-widget > .find-part, .monaco-editor .find-widget > .replace-part {
  margin: 3px 25px 0 17px;
  font-size: 12px;
  display: flex;
}

.monaco-editor .find-widget > .find-part .monaco-inputbox, .monaco-editor .find-widget > .replace-part .monaco-inputbox {
  min-height: 25px;
}

.monaco-editor .find-widget > .replace-part .monaco-inputbox > .ibwrapper > .mirror {
  padding-right: 22px;
}

.monaco-editor .find-widget > .find-part .monaco-inputbox > .ibwrapper > .input, .monaco-editor .find-widget > .find-part .monaco-inputbox > .ibwrapper > .mirror, .monaco-editor .find-widget > .replace-part .monaco-inputbox > .ibwrapper > .input, .monaco-editor .find-widget > .replace-part .monaco-inputbox > .ibwrapper > .mirror {
  padding-top: 2px;
  padding-bottom: 2px;
}

.monaco-editor .find-widget > .find-part .find-actions, .monaco-editor .find-widget > .replace-part .replace-actions {
  align-items: center;
  height: 25px;
  display: flex;
}

.monaco-editor .find-widget .monaco-findInput {
  vertical-align: middle;
  flex: 1;
  display: flex;
}

.monaco-editor .find-widget .monaco-findInput .monaco-scrollable-element {
  width: 100%;
}

.monaco-editor .find-widget .monaco-findInput .monaco-scrollable-element .scrollbar.vertical {
  opacity: 0;
}

.monaco-editor .find-widget .matchesCount {
  flex: initial;
  vertical-align: middle;
  box-sizing: border-box;
  text-align: center;
  height: 25px;
  margin: 0 0 0 3px;
  padding: 2px 0 0 2px;
  line-height: 23px;
  display: flex;
}

.monaco-editor .find-widget .button {
  flex: initial;
  cursor: pointer;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  margin-left: 3px;
  padding: 3px;
  display: flex;
}

.monaco-editor .find-widget .codicon-find-selection {
  border-radius: 5px;
  width: 22px;
  height: 22px;
  padding: 3px;
}

.monaco-editor .find-widget .button.left {
  margin-left: 0;
  margin-right: 3px;
}

.monaco-editor .find-widget .button.wide {
  width: auto;
  padding: 1px 6px;
  top: -1px;
}

.monaco-editor .find-widget .button.toggle {
  box-sizing: border-box;
  border-radius: 0;
  width: 18px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 3px;
}

.monaco-editor .find-widget .button.toggle.disabled {
  display: none;
}

.monaco-editor .find-widget .disabled {
  color: var(--vscode-disabledForeground);
  cursor: default;
}

.monaco-editor .find-widget > .replace-part {
  display: none;
}

.monaco-editor .find-widget > .replace-part > .monaco-findInput {
  vertical-align: middle;
  flex: none;
  display: flex;
  position: relative;
}

.monaco-editor .find-widget > .replace-part > .monaco-findInput > .controls {
  position: absolute;
  top: 3px;
  right: 2px;
}

.monaco-editor .find-widget.reduced-find-widget .matchesCount {
  display: none;
}

.monaco-editor .find-widget.narrow-find-widget {
  max-width: 257px !important;
}

.monaco-editor .find-widget.collapsed-find-widget {
  max-width: 170px !important;
}

.monaco-editor .find-widget.collapsed-find-widget .button.previous, .monaco-editor .find-widget.collapsed-find-widget .button.next, .monaco-editor .find-widget.collapsed-find-widget .button.replace, .monaco-editor .find-widget.collapsed-find-widget .button.replace-all, .monaco-editor .find-widget.collapsed-find-widget > .find-part .monaco-findInput .controls {
  display: none;
}

.monaco-editor .find-widget.no-results .matchesCount {
  color: var(--vscode-errorForeground);
}

.monaco-editor .findMatch {
  animation-duration: 0;
  background-color: var(--vscode-editor-findMatchHighlightBackground);
  animation-name: inherit !important;
}

.monaco-editor .currentFindMatch {
  background-color: var(--vscode-editor-findMatchBackground);
  border: 2px solid var(--vscode-editor-findMatchBorder);
  box-sizing: border-box;
  padding: 1px;
}

.monaco-editor .findScope {
  background-color: var(--vscode-editor-findRangeHighlightBackground);
}

.monaco-editor .find-widget .monaco-sash {
  background-color: var(--vscode-editorWidget-resizeBorder, var(--vscode-editorWidget-border));
  left: 0 !important;
}

.monaco-editor.hc-black .find-widget .button:before {
  position: relative;
  top: 1px;
  left: 2px;
}

.monaco-editor .find-widget .button:not(.disabled):hover, .monaco-editor .find-widget .codicon-find-selection:hover {
  background-color: var(--vscode-toolbar-hoverBackground) !important;
}

.monaco-editor.currentFindMatch {
  background-color: var(--vscode-editor-findMatchBackground);
}

.monaco-editor.findScope {
  background-color: var(--vscode-editor-findRangeHighlightBackground);
}

.monaco-editor.findMatch {
  background-color: var(--vscode-editorWidget-background);
}

.monaco-editor .find-widget > .button.codicon-widget-close {
  position: absolute;
  top: 5px;
  right: 4px;
}
.monaco-editor .margin-view-overlays .codicon-folding-manual-collapsed, .monaco-editor .margin-view-overlays .codicon-folding-manual-expanded, .monaco-editor .margin-view-overlays .codicon-folding-expanded, .monaco-editor .margin-view-overlays .codicon-folding-collapsed {
  cursor: pointer;
  opacity: 0;
  justify-content: center;
  align-items: center;
  margin-left: 2px;
  font-size: 140%;
  transition: opacity .5s;
  display: flex;
}

.monaco-workbench.reduce-motion .monaco-editor .margin-view-overlays .codicon-folding-manual-collapsed, .monaco-workbench.reduce-motion .monaco-editor .margin-view-overlays .codicon-folding-manual-expanded, .monaco-workbench.reduce-motion .monaco-editor .margin-view-overlays .codicon-folding-expanded, .monaco-workbench.reduce-motion .monaco-editor .margin-view-overlays .codicon-folding-collapsed {
  transition: initial;
}

.monaco-editor .margin-view-overlays:hover .codicon, .monaco-editor .margin-view-overlays .codicon.codicon-folding-collapsed, .monaco-editor .margin-view-overlays .codicon.codicon-folding-manual-collapsed, .monaco-editor .margin-view-overlays .codicon.alwaysShowFoldIcons {
  opacity: 1;
}

.monaco-editor .inline-folded:after {
  color: var(--vscode-editor-foldPlaceholderForeground);
  content: "⋯";
  cursor: pointer;
  margin: .1em .2em 0;
  line-height: 1em;
  display: inline;
}

.monaco-editor .folded-background {
  background-color: var(--vscode-editor-foldBackground);
}

.monaco-editor .cldr.codicon.codicon-folding-expanded, .monaco-editor .cldr.codicon.codicon-folding-collapsed, .monaco-editor .cldr.codicon.codicon-folding-manual-expanded, .monaco-editor .cldr.codicon.codicon-folding-manual-collapsed {
  color: var(--vscode-editorGutter-foldingControlForeground) !important;
}
.monaco-editor .suggest-preview-additional-widget {
  white-space: nowrap;
}

.monaco-editor .suggest-preview-additional-widget .content-spacer {
  color: #0000;
  white-space: pre;
}

.monaco-editor .suggest-preview-additional-widget .button {
  cursor: pointer;
  text-underline-position: under;
  text-decoration: underline;
  display: inline-block;
}

.monaco-editor .ghost-text-hidden {
  opacity: 0;
  font-size: 0;
}

.monaco-editor .ghost-text-decoration, .monaco-editor .suggest-preview-text .ghost-text {
  font-style: italic;
}

.monaco-editor .inline-completion-text-to-replace {
  text-underline-position: under;
  text-decoration: underline;
}

.monaco-editor .ghost-text-decoration, .monaco-editor .ghost-text-decoration-preview, .monaco-editor .suggest-preview-text .ghost-text {
  background-color: var(--vscode-editorGhostText-background);
  border: 1px solid var(--vscode-editorGhostText-border);
  color: var(--vscode-editorGhostText-foreground) !important;
}
.monaco-editor .snippet-placeholder {
  background-color: var(--vscode-editor-snippetTabstopHighlightBackground, transparent);
  outline-width: 1px;
  outline-style: solid;
  outline-color: var(--vscode-editor-snippetTabstopHighlightBorder, transparent);
  min-width: 2px;
}

.monaco-editor .finish-snippet-placeholder {
  background-color: var(--vscode-editor-snippetFinalTabstopHighlightBackground, transparent);
  outline-width: 1px;
  outline-style: solid;
  outline-color: var(--vscode-editor-snippetFinalTabstopHighlightBorder, transparent);
}
.monaco-editor .suggest-widget {
  z-index: 40;
  border-radius: 3px;
  flex-direction: column;
  width: 430px;
  display: flex;
}

.monaco-editor .suggest-widget.message {
  flex-direction: row;
  align-items: center;
}

.monaco-editor .suggest-widget, .monaco-editor .suggest-details {
  border-style: solid;
  border-width: 1px;
  border-color: var(--vscode-editorSuggestWidget-border);
  background-color: var(--vscode-editorSuggestWidget-background);
  flex: 0 auto;
  width: 100%;
}

.monaco-editor.hc-black .suggest-widget, .monaco-editor.hc-black .suggest-details, .monaco-editor.hc-light .suggest-widget, .monaco-editor.hc-light .suggest-details {
  border-width: 2px;
}

.monaco-editor .suggest-widget .suggest-status-bar {
  box-sizing: border-box;
  border-top: 1px solid var(--vscode-editorSuggestWidget-border);
  flex-flow: row;
  justify-content: space-between;
  width: 100%;
  padding: 0 4px;
  font-size: 80%;
  display: none;
  overflow: hidden;
}

.monaco-editor .suggest-widget.with-status-bar .suggest-status-bar {
  display: flex;
}

.monaco-editor .suggest-widget .suggest-status-bar .left {
  padding-right: 8px;
}

.monaco-editor .suggest-widget.with-status-bar .suggest-status-bar .action-label {
  color: var(--vscode-editorSuggestWidgetStatus-foreground);
}

.monaco-editor .suggest-widget.with-status-bar .suggest-status-bar .action-item:not(:last-of-type) .action-label {
  margin-right: 0;
}

.monaco-editor .suggest-widget.with-status-bar .suggest-status-bar .action-item:not(:last-of-type) .action-label:after {
  content: ", ";
  margin-right: .3em;
}

.monaco-editor .suggest-widget.with-status-bar .monaco-list .monaco-list-row > .contents > .main > .right > .readMore, .monaco-editor .suggest-widget.with-status-bar .monaco-list .monaco-list-row.focused.string-label > .contents > .main > .right > .readMore {
  display: none;
}

.monaco-editor .suggest-widget.with-status-bar:not(.docs-side) .monaco-list .monaco-list-row:hover > .contents > .main > .right.can-expand-details > .details-label {
  width: 100%;
}

.monaco-editor .suggest-widget > .message {
  padding-left: 22px;
}

.monaco-editor .suggest-widget > .tree {
  width: 100%;
  height: 100%;
}

.monaco-editor .suggest-widget .monaco-list {
  -webkit-user-select: none;
  user-select: none;
}

.monaco-editor .suggest-widget .monaco-list .monaco-list-row {
  -mox-box-sizing: border-box;
  box-sizing: border-box;
  white-space: nowrap;
  cursor: pointer;
  touch-action: none;
  background-position: 2px 2px;
  background-repeat: no-repeat;
  padding-right: 10px;
  display: flex;
}

.monaco-editor .suggest-widget .monaco-list .monaco-list-row.focused {
  color: var(--vscode-editorSuggestWidget-selectedForeground);
}

.monaco-editor .suggest-widget .monaco-list .monaco-list-row.focused .codicon {
  color: var(--vscode-editorSuggestWidget-selectedIconForeground);
}

.monaco-editor .suggest-widget .monaco-list .monaco-list-row > .contents {
  flex: 1;
  height: 100%;
  padding-left: 2px;
  overflow: hidden;
}

.monaco-editor .suggest-widget .monaco-list .monaco-list-row > .contents > .main {
  text-overflow: ellipsis;
  white-space: pre;
  justify-content: space-between;
  display: flex;
  overflow: hidden;
}

.monaco-editor .suggest-widget .monaco-list .monaco-list-row > .contents > .main > .left, .monaco-editor .suggest-widget .monaco-list .monaco-list-row > .contents > .main > .right {
  display: flex;
}

.monaco-editor .suggest-widget .monaco-list .monaco-list-row:not(.focused) > .contents > .main .monaco-icon-label {
  color: var(--vscode-editorSuggestWidget-foreground);
}

.monaco-editor .suggest-widget:not(.frozen) .monaco-highlighted-label .highlight {
  font-weight: bold;
}

.monaco-editor .suggest-widget .monaco-list .monaco-list-row > .contents > .main .monaco-highlighted-label .highlight {
  color: var(--vscode-editorSuggestWidget-highlightForeground);
}

.monaco-editor .suggest-widget .monaco-list .monaco-list-row.focused > .contents > .main .monaco-highlighted-label .highlight {
  color: var(--vscode-editorSuggestWidget-focusHighlightForeground);
}

.monaco-editor .suggest-details > .monaco-scrollable-element > .body > .header > .codicon-close, .monaco-editor .suggest-widget .monaco-list .monaco-list-row > .contents > .main > .right > .readMore:before {
  color: inherit;
  opacity: 1;
  cursor: pointer;
  font-size: 14px;
}

.monaco-editor .suggest-details > .monaco-scrollable-element > .body > .header > .codicon-close {
  position: absolute;
  top: 6px;
  right: 2px;
}

.monaco-editor .suggest-details > .monaco-scrollable-element > .body > .header > .codicon-close:hover, .monaco-editor .suggest-widget .monaco-list .monaco-list-row > .contents > .main > .right > .readMore:hover {
  opacity: 1;
}

.monaco-editor .suggest-widget .monaco-list .monaco-list-row > .contents > .main > .right > .details-label {
  opacity: .7;
}

.monaco-editor .suggest-widget .monaco-list .monaco-list-row > .contents > .main > .left > .signature-label {
  text-overflow: ellipsis;
  opacity: .6;
  overflow: hidden;
}

.monaco-editor .suggest-widget .monaco-list .monaco-list-row > .contents > .main > .left > .qualifier-label {
  opacity: .4;
  font-size: 85%;
  line-height: initial;
  text-overflow: ellipsis;
  align-self: center;
  margin-left: 12px;
  overflow: hidden;
}

.monaco-editor .suggest-widget .monaco-list .monaco-list-row > .contents > .main > .right > .details-label {
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-left: 1.1em;
  font-size: 85%;
  overflow: hidden;
}

.monaco-editor .suggest-widget .monaco-list .monaco-list-row > .contents > .main > .right > .details-label > .monaco-tokenized-source {
  display: inline;
}

.monaco-editor .suggest-widget .monaco-list .monaco-list-row > .contents > .main > .right > .details-label {
  display: none;
}

.monaco-editor .suggest-widget:not(.shows-details) .monaco-list .monaco-list-row.focused > .contents > .main > .right > .details-label, .monaco-editor .suggest-widget .monaco-list .monaco-list-row:not(.string-label) > .contents > .main > .right > .details-label, .monaco-editor .suggest-widget.docs-side .monaco-list .monaco-list-row.focused:not(.string-label) > .contents > .main > .right > .details-label {
  display: inline;
}

.monaco-editor .suggest-widget:not(.docs-side) .monaco-list .monaco-list-row.focused:hover > .contents > .main > .right.can-expand-details > .details-label {
  width: calc(100% - 26px);
}

.monaco-editor .suggest-widget .monaco-list .monaco-list-row > .contents > .main > .left {
  flex-grow: 1;
  flex-shrink: 1;
  overflow: hidden;
}

.monaco-editor .suggest-widget .monaco-list .monaco-list-row > .contents > .main > .left > .monaco-icon-label {
  flex-shrink: 0;
}

.monaco-editor .suggest-widget .monaco-list .monaco-list-row:not(.string-label) > .contents > .main > .left > .monaco-icon-label {
  max-width: 100%;
}

.monaco-editor .suggest-widget .monaco-list .monaco-list-row.string-label > .contents > .main > .left > .monaco-icon-label {
  flex-shrink: 1;
}

.monaco-editor .suggest-widget .monaco-list .monaco-list-row > .contents > .main > .right {
  flex-shrink: 4;
  max-width: 70%;
  overflow: hidden;
}

.monaco-editor .suggest-widget .monaco-list .monaco-list-row > .contents > .main > .right > .readMore {
  visibility: hidden;
  width: 18px;
  height: 18px;
  display: inline-block;
  position: absolute;
  right: 10px;
}

.monaco-editor .suggest-widget.docs-side .monaco-list .monaco-list-row > .contents > .main > .right > .readMore {
  display: none !important;
}

.monaco-editor .suggest-widget .monaco-list .monaco-list-row.string-label > .contents > .main > .right > .readMore {
  display: none;
}

.monaco-editor .suggest-widget .monaco-list .monaco-list-row.focused.string-label > .contents > .main > .right > .readMore {
  display: inline-block;
}

.monaco-editor .suggest-widget .monaco-list .monaco-list-row.focused:hover > .contents > .main > .right > .readMore {
  visibility: visible;
}

.monaco-editor .suggest-widget .monaco-list .monaco-list-row .monaco-icon-label.deprecated {
  opacity: .66;
  -webkit-text-decoration: unset;
  text-decoration: unset;
}

.monaco-editor .suggest-widget .monaco-list .monaco-list-row .monaco-icon-label.deprecated > .monaco-icon-label-container > .monaco-icon-name-container {
  text-decoration: line-through;
}

.monaco-editor .suggest-widget .monaco-list .monaco-list-row .monaco-icon-label:before {
  height: 100%;
}

.monaco-editor .suggest-widget .monaco-list .monaco-list-row .icon {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 80%;
  width: 16px;
  height: 16px;
  margin-left: 2px;
  display: block;
}

.monaco-editor .suggest-widget .monaco-list .monaco-list-row .icon.hide {
  display: none;
}

.monaco-editor .suggest-widget .monaco-list .monaco-list-row .suggest-icon {
  align-items: center;
  margin-right: 4px;
  display: flex;
}

.monaco-editor .suggest-widget.no-icons .monaco-list .monaco-list-row .icon, .monaco-editor .suggest-widget.no-icons .monaco-list .monaco-list-row .suggest-icon:before {
  display: none;
}

.monaco-editor .suggest-widget .monaco-list .monaco-list-row .icon.customcolor .colorspan {
  border: .1em solid #000;
  width: .7em;
  height: .7em;
  margin: 0 0 0 .3em;
  display: inline-block;
}

.monaco-editor .suggest-details-container {
  z-index: 41;
}

.monaco-editor .suggest-details {
  cursor: default;
  color: var(--vscode-editorSuggestWidget-foreground);
  flex-direction: column;
  display: flex;
}

.monaco-editor .suggest-details.focused {
  border-color: var(--vscode-focusBorder);
}

.monaco-editor .suggest-details a {
  color: var(--vscode-textLink-foreground);
}

.monaco-editor .suggest-details a:hover {
  color: var(--vscode-textLink-activeForeground);
}

.monaco-editor .suggest-details code {
  background-color: var(--vscode-textCodeBlock-background);
}

.monaco-editor .suggest-details.no-docs {
  display: none;
}

.monaco-editor .suggest-details > .monaco-scrollable-element {
  flex: 1;
}

.monaco-editor .suggest-details > .monaco-scrollable-element > .body {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}

.monaco-editor .suggest-details > .monaco-scrollable-element > .body > .header > .type {
  text-overflow: ellipsis;
  opacity: .7;
  white-space: pre;
  flex: 2;
  margin: 0 24px 0 0;
  padding: 4px 0 12px 5px;
  overflow: hidden;
}

.monaco-editor .suggest-details > .monaco-scrollable-element > .body > .header > .type.auto-wrap {
  white-space: normal;
  word-break: break-all;
}

.monaco-editor .suggest-details > .monaco-scrollable-element > .body > .docs {
  white-space: pre-wrap;
  margin: 0;
  padding: 4px 5px;
}

.monaco-editor .suggest-details.no-type > .monaco-scrollable-element > .body > .docs {
  margin-right: 24px;
  overflow: hidden;
}

.monaco-editor .suggest-details > .monaco-scrollable-element > .body > .docs.markdown-docs {
  white-space: initial;
  min-height: calc(1rem + 8px);
  padding: 0;
}

.monaco-editor .suggest-details > .monaco-scrollable-element > .body > .docs.markdown-docs > div, .monaco-editor .suggest-details > .monaco-scrollable-element > .body > .docs.markdown-docs > span:not(:empty) {
  padding: 4px 5px;
}

.monaco-editor .suggest-details > .monaco-scrollable-element > .body > .docs.markdown-docs > div > p:first-child {
  margin-top: 0;
}

.monaco-editor .suggest-details > .monaco-scrollable-element > .body > .docs.markdown-docs > div > p:last-child {
  margin-bottom: 0;
}

.monaco-editor .suggest-details > .monaco-scrollable-element > .body > .docs.markdown-docs .monaco-tokenized-source {
  white-space: pre;
}

.monaco-editor .suggest-details > .monaco-scrollable-element > .body > .docs .code {
  white-space: pre-wrap;
  word-wrap: break-word;
}

.monaco-editor .suggest-details > .monaco-scrollable-element > .body > .docs.markdown-docs .codicon {
  vertical-align: sub;
}

.monaco-editor .suggest-details > .monaco-scrollable-element > .body > p:empty {
  display: none;
}

.monaco-editor .suggest-details code {
  border-radius: 3px;
  padding: 0 .4em;
}

.monaco-editor .suggest-details ul, .monaco-editor .suggest-details ol {
  padding-left: 20px;
}

.monaco-editor .suggest-details p code {
  font-family: var(--monaco-monospace-font);
}
.monaco-editor .goto-definition-link {
  cursor: pointer;
  text-decoration: underline;
  color: var(--vscode-editorLink-activeForeground) !important;
}
.monaco-editor .peekview-widget .head .peekview-title .severity-icon {
  vertical-align: text-top;
  margin-right: 4px;
  display: inline-block;
}

.monaco-editor .marker-widget {
  text-overflow: ellipsis;
  white-space: nowrap;
}

.monaco-editor .marker-widget > .stale {
  opacity: .6;
  font-style: italic;
}

.monaco-editor .marker-widget .title {
  padding-right: 5px;
  display: inline-block;
}

.monaco-editor .marker-widget .descriptioncontainer {
  white-space: pre;
  -webkit-user-select: text;
  user-select: text;
  padding: 8px 12px 0 20px;
  position: absolute;
}

.monaco-editor .marker-widget .descriptioncontainer .message {
  flex-direction: column;
  display: flex;
}

.monaco-editor .marker-widget .descriptioncontainer .message .details {
  padding-left: 6px;
}

.monaco-editor .marker-widget .descriptioncontainer .message .source, .monaco-editor .marker-widget .descriptioncontainer .message span.code {
  opacity: .6;
}

.monaco-editor .marker-widget .descriptioncontainer .message a.code-link {
  opacity: .6;
  color: inherit;
}

.monaco-editor .marker-widget .descriptioncontainer .message a.code-link:before {
  content: "(";
}

.monaco-editor .marker-widget .descriptioncontainer .message a.code-link:after {
  content: ")";
}

.monaco-editor .marker-widget .descriptioncontainer .message a.code-link > span {
  text-underline-position: under;
  color: var(--vscode-textLink-activeForeground);
  border-bottom: 1px solid #0000;
  text-decoration: underline;
}

.monaco-editor .marker-widget .descriptioncontainer .filename {
  cursor: pointer;
  color: var(--vscode-textLink-activeForeground);
}
.monaco-editor .zone-widget .codicon.codicon-error, .markers-panel .marker-icon.error, .markers-panel .marker-icon .codicon.codicon-error, .text-search-provider-messages .providerMessage .codicon.codicon-error, .extensions-viewlet > .extensions .codicon.codicon-error, .extension-editor .codicon.codicon-error, .preferences-editor .codicon.codicon-error {
  color: var(--vscode-problemsErrorIcon-foreground);
}

.monaco-editor .zone-widget .codicon.codicon-warning, .markers-panel .marker-icon.warning, .markers-panel .marker-icon .codicon.codicon-warning, .text-search-provider-messages .providerMessage .codicon.codicon-warning, .extensions-viewlet > .extensions .codicon.codicon-warning, .extension-editor .codicon.codicon-warning, .preferences-editor .codicon.codicon-warning {
  color: var(--vscode-problemsWarningIcon-foreground);
}

.monaco-editor .zone-widget .codicon.codicon-info, .markers-panel .marker-icon.info, .markers-panel .marker-icon .codicon.codicon-info, .text-search-provider-messages .providerMessage .codicon.codicon-info, .extensions-viewlet > .extensions .codicon.codicon-info, .extension-editor .codicon.codicon-info, .preferences-editor .codicon.codicon-info {
  color: var(--vscode-problemsInfoIcon-foreground);
}
.monaco-editor.vs .valueSetReplacement {
  outline: solid 2px var(--vscode-editorBracketMatch-border);
}
.monaco-editor .linked-editing-decoration {
  background-color: var(--vscode-editor-linkedEditingBackground);
  min-width: 1px;
}
.monaco-editor .detected-link, .monaco-editor .detected-link-active {
  text-underline-position: under;
  text-decoration: underline;
}

.monaco-editor .detected-link-active {
  cursor: pointer;
  color: var(--vscode-editorLink-activeForeground) !important;
}
.monaco-editor .focused .selectionHighlight {
  background-color: var(--vscode-editor-selectionHighlightBackground);
  box-sizing: border-box;
  border: 1px solid var(--vscode-editor-selectionHighlightBorder);
}

.monaco-editor.hc-black .focused .selectionHighlight, .monaco-editor.hc-light .focused .selectionHighlight {
  border-style: dotted;
}

.monaco-editor .wordHighlight {
  background-color: var(--vscode-editor-wordHighlightBackground);
  box-sizing: border-box;
  border: 1px solid var(--vscode-editor-wordHighlightBorder);
}

.monaco-editor.hc-black .wordHighlight, .monaco-editor.hc-light .wordHighlight {
  border-style: dotted;
}

.monaco-editor .wordHighlightStrong {
  background-color: var(--vscode-editor-wordHighlightStrongBackground);
  box-sizing: border-box;
  border: 1px solid var(--vscode-editor-wordHighlightStrongBorder);
}

.monaco-editor.hc-black .wordHighlightStrong, .monaco-editor.hc-light .wordHighlightStrong {
  border-style: dotted;
}

.monaco-editor .wordHighlightText {
  background-color: var(--vscode-editor-wordHighlightTextBackground);
  box-sizing: border-box;
  border: 1px solid var(--vscode-editor-wordHighlightTextBorder);
}

.monaco-editor.hc-black .wordHighlightText, .monaco-editor.hc-light .wordHighlightText {
  border-style: dotted;
}
.monaco-editor .inline-edit-remove {
  background-color: var(--vscode-editorGhostText-background);
  font-style: italic;
}

.monaco-editor .inline-edit-hidden {
  opacity: 0;
  font-size: 0;
}

.monaco-editor .inline-edit-decoration, .monaco-editor .suggest-preview-text .inline-edit {
  font-style: italic;
}

.monaco-editor .inline-completion-text-to-replace {
  text-underline-position: under;
  text-decoration: underline;
}

.monaco-editor .inline-edit-decoration, .monaco-editor .inline-edit-decoration-preview, .monaco-editor .suggest-preview-text .inline-edit {
  background-color: var(--vscode-editorGhostText-background);
  border: 1px solid var(--vscode-editorGhostText-border);
  color: var(--vscode-editorGhostText-foreground) !important;
}
.monaco-editor .inlineEditHints.withBorder {
  z-index: 39;
  color: var(--vscode-editorHoverWidget-foreground);
  background-color: var(--vscode-editorHoverWidget-background);
  border: 1px solid var(--vscode-editorHoverWidget-border);
}

.monaco-editor .inlineEditHints a, .monaco-editor .inlineEditHints a:hover {
  color: var(--vscode-foreground);
}

.monaco-editor .inlineEditHints .keybinding {
  opacity: .6;
  margin-left: 4px;
  display: flex;
}

.monaco-editor .inlineEditHints .keybinding .monaco-keybinding-key {
  padding: 2px 3px;
  font-size: 8px;
}

.monaco-editor .inlineEditStatusBarItemLabel {
  margin-right: 2px;
}
.monaco-editor .inlineEditSideBySide {
  z-index: 39;
  color: var(--vscode-editorHoverWidget-foreground);
  background-color: var(--vscode-editorHoverWidget-background);
  border: 1px solid var(--vscode-editorHoverWidget-border);
  white-space: pre;
}
.monaco-editor div.inline-edits-widget {
  --widget-color: var(--vscode-notifications-background);
}

.monaco-editor div.inline-edits-widget .promptEditor .monaco-editor {
  --vscode-editor-placeholder-foreground: var(--vscode-editorGhostText-foreground);
}

.monaco-editor div.inline-edits-widget .toolbar {
  opacity: 0;
  transition: opacity .2s ease-in-out;
}

.monaco-editor div.inline-edits-widget .promptEditor {
  opacity: 0;
  transition: opacity .2s ease-in-out;
}

.monaco-editor div.inline-edits-widget:hover .toolbar {
  opacity: 1;
}

.monaco-editor div.inline-edits-widget:hover .promptEditor {
  opacity: 1;
}

.monaco-editor div.inline-edits-widget.focused .toolbar {
  opacity: 1;
}

.monaco-editor div.inline-edits-widget.focused .promptEditor {
  opacity: 1;
}

.monaco-editor div.inline-edits-widget .preview .monaco-editor {
  --vscode-editor-background: var(--widget-color);
}

.monaco-editor div.inline-edits-widget .preview .monaco-editor .mtk1 {
  color: var(--vscode-editorGhostText-foreground);
}

.monaco-editor div.inline-edits-widget .preview .monaco-editor .view-overlays .current-line-exact {
  border: none;
}

.monaco-editor div.inline-edits-widget .preview .monaco-editor .current-line-margin {
  border: none;
}

.monaco-editor div.inline-edits-widget svg .gradient-start {
  stop-color: var(--vscode-editor-background);
}

.monaco-editor div.inline-edits-widget svg .gradient-stop {
  stop-color: var(--widget-color);
}
.monaco-editor .parameter-hints-widget {
  z-index: 39;
  cursor: default;
  color: var(--vscode-editorHoverWidget-foreground);
  background-color: var(--vscode-editorHoverWidget-background);
  border: 1px solid var(--vscode-editorHoverWidget-border);
  flex-direction: column;
  line-height: 1.5em;
  display: flex;
}

.hc-black .monaco-editor .parameter-hints-widget, .hc-light .monaco-editor .parameter-hints-widget {
  border-width: 2px;
}

.monaco-editor .parameter-hints-widget > .phwrapper {
  flex-direction: row;
  max-width: 440px;
  display: flex;
}

.monaco-editor .parameter-hints-widget.multiple {
  min-height: 3.3em;
  padding: 0;
}

.monaco-editor .parameter-hints-widget.multiple .body:before {
  content: "";
  opacity: .5;
  border-left: 1px solid var(--vscode-editorHoverWidget-border);
  height: 100%;
  display: block;
  position: absolute;
}

.monaco-editor .parameter-hints-widget p, .monaco-editor .parameter-hints-widget ul {
  margin: 8px 0;
}

.monaco-editor .parameter-hints-widget .monaco-scrollable-element, .monaco-editor .parameter-hints-widget .body {
  flex-direction: column;
  flex: 1;
  min-height: 100%;
  display: flex;
}

.monaco-editor .parameter-hints-widget .signature {
  padding: 4px 5px;
  position: relative;
}

.monaco-editor .parameter-hints-widget .signature.has-docs:after {
  content: "";
  opacity: .5;
  border-bottom: 1px solid var(--vscode-editorHoverWidget-border);
  width: 100%;
  padding-top: 4px;
  display: block;
  position: absolute;
  left: 0;
}

.monaco-editor .parameter-hints-widget .code {
  font-family: var(--vscode-parameterHintsWidget-editorFontFamily), var(--vscode-parameterHintsWidget-editorFontFamilyDefault);
}

.monaco-editor .parameter-hints-widget .docs {
  white-space: pre-wrap;
  padding: 0 10px 0 5px;
}

.monaco-editor .parameter-hints-widget .docs.empty {
  display: none;
}

.monaco-editor .parameter-hints-widget .docs a {
  color: var(--vscode-textLink-foreground);
}

.monaco-editor .parameter-hints-widget .docs a:hover {
  color: var(--vscode-textLink-activeForeground);
  cursor: pointer;
}

.monaco-editor .parameter-hints-widget .docs .markdown-docs {
  white-space: initial;
}

.monaco-editor .parameter-hints-widget .docs code {
  font-family: var(--monaco-monospace-font);
  background-color: var(--vscode-textCodeBlock-background);
  border-radius: 3px;
  padding: 0 .4em;
}

.monaco-editor .parameter-hints-widget .docs .monaco-tokenized-source, .monaco-editor .parameter-hints-widget .docs .code {
  white-space: pre-wrap;
}

.monaco-editor .parameter-hints-widget .controls {
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  min-width: 22px;
  display: none;
}

.monaco-editor .parameter-hints-widget.multiple .controls {
  padding: 0 2px;
  display: flex;
}

.monaco-editor .parameter-hints-widget.multiple .button {
  cursor: pointer;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
}

.monaco-editor .parameter-hints-widget .button.previous {
  bottom: 24px;
}

.monaco-editor .parameter-hints-widget .overloads {
  text-align: center;
  line-height: 12px;
  font-family: var(--monaco-monospace-font);
  height: 12px;
}

.monaco-editor .parameter-hints-widget .signature .parameter.active {
  color: var(--vscode-editorHoverWidget-highlightForeground);
  font-weight: bold;
}

.monaco-editor .parameter-hints-widget .documentation-parameter > .parameter {
  margin-right: .5em;
  font-weight: bold;
}
.monaco-editor {
  --vscode-editor-placeholder-foreground: var(--vscode-editorGhostText-foreground);
}

.monaco-editor .editorPlaceholder {
  text-overflow: ellipsis;
  text-wrap: nowrap;
  pointer-events: none;
  color: var(--vscode-editor-placeholder-foreground);
  position: absolute;
  top: 0;
  overflow: hidden;
}
.monaco-editor .rename-box {
  z-index: 100;
  color: inherit;
  border-radius: 4px;
}

.monaco-editor .rename-box.preview {
  padding: 4px 4px 0;
}

.monaco-editor .rename-box .rename-input-with-button {
  border-radius: 2px;
  width: calc(100% - 8px);
  padding: 3px;
}

.monaco-editor .rename-box .rename-input {
  width: calc(100% - 8px);
  padding: 0;
}

.monaco-editor .rename-box .rename-input:focus {
  outline: none;
}

.monaco-editor .rename-box .rename-suggestions-button {
  cursor: pointer;
  background-color: #0000;
  border: none;
  border-radius: 5px;
  align-items: center;
  padding: 3px;
  display: flex;
}

.monaco-editor .rename-box .rename-suggestions-button:hover {
  background-color: var(--vscode-toolbar-hoverBackground);
}

.monaco-editor .rename-box .rename-candidate-list-container .monaco-list-row {
  border-radius: 2px;
}

.monaco-editor .rename-box .rename-label {
  opacity: .8;
  display: none;
}

.monaco-editor .rename-box.preview .rename-label {
  display: inherit;
}
.monaco-editor .sticky-widget {
  overflow: hidden;
}

.monaco-editor .sticky-widget-line-numbers {
  float: left;
  background-color: inherit;
}

.monaco-editor .sticky-widget-lines-scrollable {
  width: var(--vscode-editorStickyScroll-scrollableWidth);
  background-color: inherit;
  display: inline-block;
  position: absolute;
  overflow: hidden;
}

.monaco-editor .sticky-widget-lines {
  background-color: inherit;
  position: absolute;
}

.monaco-editor .sticky-line-number, .monaco-editor .sticky-line-content {
  color: var(--vscode-editorLineNumber-foreground);
  white-space: nowrap;
  background-color: inherit;
  display: inline-block;
  position: absolute;
}

.monaco-editor .sticky-line-number .codicon-folding-expanded, .monaco-editor .sticky-line-number .codicon-folding-collapsed {
  float: right;
  transition: var(--vscode-editorStickyScroll-foldingOpacityTransition);
}

.monaco-editor .sticky-line-content {
  width: var(--vscode-editorStickyScroll-scrollableWidth);
  background-color: inherit;
  white-space: nowrap;
}

.monaco-editor .sticky-line-number-inner {
  text-align: right;
  display: inline-block;
}

.monaco-editor .sticky-widget {
  border-bottom: 1px solid var(--vscode-editorStickyScroll-border);
}

.monaco-editor .sticky-line-content:hover {
  background-color: var(--vscode-editorStickyScrollHover-background);
  cursor: pointer;
}

.monaco-editor .sticky-widget {
  box-shadow: var(--vscode-editorStickyScroll-shadow) 0 4px 2px -2px;
  z-index: 4;
  background-color: var(--vscode-editorStickyScroll-background);
  width: 100%;
  right: initial !important;
}

.monaco-editor .sticky-widget.peek {
  background-color: var(--vscode-peekViewEditorStickyScroll-background);
}
.monaco-editor .unicode-highlight {
  border: 1px solid var(--vscode-editorUnicodeHighlight-border);
  background-color: var(--vscode-editorUnicodeHighlight-background);
  box-sizing: border-box;
}
.editor-banner {
  box-sizing: border-box;
  cursor: default;
  background: var(--vscode-banner-background);
  width: 100%;
  height: 26px;
  font-size: 12px;
  display: flex;
  overflow: visible;
}

.editor-banner .icon-container {
  flex-shrink: 0;
  align-items: center;
  padding: 0 6px 0 10px;
  display: flex;
}

.editor-banner .icon-container.custom-icon {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px;
  width: 16px;
  margin: 0 6px 0 10px;
  padding: 0;
}

.editor-banner .message-container {
  text-overflow: ellipsis;
  white-space: nowrap;
  align-items: center;
  line-height: 26px;
  display: flex;
  overflow: hidden;
}

.editor-banner .message-container p {
  margin-block-start: 0;
  margin-block-end: 0;
}

.editor-banner .message-actions-container {
  flex-grow: 1;
  flex-shrink: 0;
  margin: 0 4px;
  line-height: 26px;
}

.editor-banner .message-actions-container a.monaco-button {
  width: inherit;
  margin: 2px 8px;
  padding: 0 12px;
}

.editor-banner .message-actions-container a {
  margin-left: 12px;
  padding: 3px;
  text-decoration: underline;
}

.editor-banner .action-container {
  padding: 0 10px 0 6px;
}

.editor-banner {
  background-color: var(--vscode-banner-background);
}

.editor-banner, .editor-banner .action-container .codicon, .editor-banner .message-actions-container .monaco-link {
  color: var(--vscode-banner-foreground);
}

.editor-banner .icon-container .codicon {
  color: var(--vscode-banner-iconForeground);
}
.monaco-link {
  color: var(--vscode-textLink-foreground);
}

.monaco-link:hover {
  color: var(--vscode-textLink-activeForeground);
}
.monaco-editor .iPadShowKeyboard {
  resize: none;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTMiIGhlaWdodD0iMzYiIHZpZXdCb3g9IjAgMCA1MyAzNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwKSI+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNNDguMDM2NCA0LjAxMDQySDQuMDA3NzlMNC4wMDc3OSAzMi4wMjg2SDQ4LjAzNjRWNC4wMTA0MlpNNC4wMDc3OSAwLjAwNzgxMjVDMS43OTcyMSAwLjAwNzgxMjUgMC4wMDUxODc5OSAxLjc5OTg0IDAuMDA1MTg3OTkgNC4wMTA0MlYzMi4wMjg2QzAuMDA1MTg3OTkgMzQuMjM5MiAxLjc5NzIxIDM2LjAzMTIgNC4wMDc3OSAzNi4wMzEySDQ4LjAzNjRDNTAuMjQ3IDM2LjAzMTIgNTIuMDM5IDM0LjIzOTIgNTIuMDM5IDMyLjAyODZWNC4wMTA0MkM1Mi4wMzkgMS43OTk4NCA1MC4yNDcgMC4wMDc4MTI1IDQ4LjAzNjQgMC4wMDc4MTI1SDQuMDA3NzlaTTguMDEwNDIgOC4wMTMwMkgxMi4wMTNWMTIuMDE1Nkg4LjAxMDQyVjguMDEzMDJaTTIwLjAxODIgOC4wMTMwMkgxNi4wMTU2VjEyLjAxNTZIMjAuMDE4MlY4LjAxMzAyWk0yNC4wMjA4IDguMDEzMDJIMjguMDIzNFYxMi4wMTU2SDI0LjAyMDhWOC4wMTMwMlpNMzYuMDI4NiA4LjAxMzAySDMyLjAyNlYxMi4wMTU2SDM2LjAyODZWOC4wMTMwMlpNNDAuMDMxMiA4LjAxMzAySDQ0LjAzMzlWMTIuMDE1Nkg0MC4wMzEyVjguMDEzMDJaTTE2LjAxNTYgMTYuMDE4Mkg4LjAxMDQyVjIwLjAyMDhIMTYuMDE1NlYxNi4wMTgyWk0yMC4wMTgyIDE2LjAxODJIMjQuMDIwOFYyMC4wMjA4SDIwLjAxODJWMTYuMDE4MlpNMzIuMDI2IDE2LjAxODJIMjguMDIzNFYyMC4wMjA4SDMyLjAyNlYxNi4wMTgyWk00NC4wMzM5IDE2LjAxODJWMjAuMDIwOEgzNi4wMjg2VjE2LjAxODJINDQuMDMzOVpNMTIuMDEzIDI0LjAyMzRIOC4wMTA0MlYyOC4wMjZIMTIuMDEzVjI0LjAyMzRaTTE2LjAxNTYgMjQuMDIzNEgzNi4wMjg2VjI4LjAyNkgxNi4wMTU2VjI0LjAyMzRaTTQ0LjAzMzkgMjQuMDIzNEg0MC4wMzEyVjI4LjAyNkg0NC4wMzM5VjI0LjAyMzRaIiBmaWxsPSIjNDI0MjQyIi8+CjwvZz4KPGRlZnM+CjxjbGlwUGF0aCBpZD0iY2xpcDAiPgo8cmVjdCB3aWR0aD0iNTMiIGhlaWdodD0iMzYiIGZpbGw9IndoaXRlIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==") center no-repeat;
  border: 4px solid #f6f6f6;
  border-radius: 4px;
  width: 58px;
  min-width: 0;
  height: 36px;
  min-height: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

.monaco-editor.vs-dark .iPadShowKeyboard {
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTMiIGhlaWdodD0iMzYiIHZpZXdCb3g9IjAgMCA1MyAzNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwKSI+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNNDguMDM2NCA0LjAxMDQySDQuMDA3NzlMNC4wMDc3OSAzMi4wMjg2SDQ4LjAzNjRWNC4wMTA0MlpNNC4wMDc3OSAwLjAwNzgxMjVDMS43OTcyMSAwLjAwNzgxMjUgMC4wMDUxODc5OSAxLjc5OTg0IDAuMDA1MTg3OTkgNC4wMTA0MlYzMi4wMjg2QzAuMDA1MTg3OTkgMzQuMjM5MiAxLjc5NzIxIDM2LjAzMTIgNC4wMDc3OSAzNi4wMzEySDQ4LjAzNjRDNTAuMjQ3IDM2LjAzMTIgNTIuMDM5IDM0LjIzOTIgNTIuMDM5IDMyLjAyODZWNC4wMTA0MkM1Mi4wMzkgMS43OTk4NCA1MC4yNDcgMC4wMDc4MTI1IDQ4LjAzNjQgMC4wMDc4MTI1SDQuMDA3NzlaTTguMDEwNDIgOC4wMTMwMkgxMi4wMTNWMTIuMDE1Nkg4LjAxMDQyVjguMDEzMDJaTTIwLjAxODIgOC4wMTMwMkgxNi4wMTU2VjEyLjAxNTZIMjAuMDE4MlY4LjAxMzAyWk0yNC4wMjA4IDguMDEzMDJIMjguMDIzNFYxMi4wMTU2SDI0LjAyMDhWOC4wMTMwMlpNMzYuMDI4NiA4LjAxMzAySDMyLjAyNlYxMi4wMTU2SDM2LjAyODZWOC4wMTMwMlpNNDAuMDMxMiA4LjAxMzAySDQ0LjAzMzlWMTIuMDE1Nkg0MC4wMzEyVjguMDEzMDJaTTE2LjAxNTYgMTYuMDE4Mkg4LjAxMDQyVjIwLjAyMDhIMTYuMDE1NlYxNi4wMTgyWk0yMC4wMTgyIDE2LjAxODJIMjQuMDIwOFYyMC4wMjA4SDIwLjAxODJWMTYuMDE4MlpNMzIuMDI2IDE2LjAxODJIMjguMDIzNFYyMC4wMjA4SDMyLjAyNlYxNi4wMTgyWk00NC4wMzM5IDE2LjAxODJWMjAuMDIwOEgzNi4wMjg2VjE2LjAxODJINDQuMDMzOVpNMTIuMDEzIDI0LjAyMzRIOC4wMTA0MlYyOC4wMjZIMTIuMDEzVjI0LjAyMzRaTTE2LjAxNTYgMjQuMDIzNEgzNi4wMjg2VjI4LjAyNkgxNi4wMTU2VjI0LjAyMzRaTTQ0LjAzMzkgMjQuMDIzNEg0MC4wMzEyVjI4LjAyNkg0NC4wMzM5VjI0LjAyMzRaIiBmaWxsPSIjQzVDNUM1Ii8+CjwvZz4KPGRlZnM+CjxjbGlwUGF0aCBpZD0iY2xpcDAiPgo8cmVjdCB3aWR0aD0iNTMiIGhlaWdodD0iMzYiIGZpbGw9IndoaXRlIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==") center no-repeat;
  border: 4px solid #252526;
}
.monaco-editor .tokens-inspect-widget {
  z-index: 50;
  -webkit-user-select: text;
  user-select: text;
  color: var(--vscode-editorHoverWidget-foreground);
  background-color: var(--vscode-editorHoverWidget-background);
  border: 1px solid var(--vscode-editorHoverWidget-border);
  padding: 10px;
}

.monaco-editor.hc-black .tokens-inspect-widget, .monaco-editor.hc-light .tokens-inspect-widget {
  border-width: 2px;
}

.monaco-editor .tokens-inspect-widget .tokens-inspect-separator {
  background-color: var(--vscode-editorHoverWidget-border);
  border: 0;
  height: 1px;
}

.monaco-editor .tokens-inspect-widget .tm-token {
  font-family: var(--monaco-monospace-font);
}

.monaco-editor .tokens-inspect-widget .tm-token-length {
  float: right;
  font-size: 60%;
  font-weight: normal;
}

.monaco-editor .tokens-inspect-widget .tm-metadata-table {
  width: 100%;
}

.monaco-editor .tokens-inspect-widget .tm-metadata-value {
  font-family: var(--monaco-monospace-font);
  text-align: right;
}

.monaco-editor .tokens-inspect-widget .tm-token-type {
  font-family: var(--monaco-monospace-font);
}
