/* #00B10A */
:root {
  --fa-style-family: "Font Awesome 6 Sharp";
}
.display-none {
  display: none;
}
html,
body,
#app,
#main {
  background-color: #000;
  height: 100vh;
}
.content a:hover {
  color: #485fc7;
}
body {
  overflow: hidden;
}
body::-webkit-scrollbar {
  display: none;
}
*::-webkit-scrollbar {
  background-color: #777;
  width: 5px;
  height: 5px;
}
*::-webkit-scrollbar-thumb {
  background: white;
}
#main {
  height: 100vh;
  display: flex;
  flex-direction: column;
}
#main .main-content {
  display: flex;
  flex-direction: row;
  background-color: black;
  height: 100%;
}
#main .main-content .session-view,
#main .main-content .history-view,
#main .main-content .bookmarks-view {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  min-width: 300px;
  position: relative;
}
#main .main-content .session-view.is-hidden,
#main .main-content .history-view.is-hidden,
#main .main-content .bookmarks-view.is-hidden {
  display: none;
}
#main .main-content .screen-view {
  flex-grow: 1;
  border-right: 1px solid #ccc;
  position: relative;
}
#main .main-content .window-view {
  display: flex;
  flex-direction: column;
  position: relative;
}
#main .main-content .window-view .rendermode-tag {
  position: absolute;
  top: 0;
  right: 0;
  background-color: rgba(78, 154, 6, 0.65);
  color: black;
  padding: 2px 8px 2px 4px;
  border-bottom-left-radius: 5px;
  z-index: 10;
  font-size: 12px;
}
#main .main-content .window-view .rendermode-tag.is-active {
  color: #ccc;
}
#main .main-content .window-view .rendermode-tag .render-mode {
  padding-top: 2px;
  font-size: 16px;
  position: relative;
  cursor: pointer;
  color: #ccc;
}
#main .main-content .window-view .rendermode-tag .render-mode:hover {
  color: white;
}
#main .main-content .window-view .share-tag {
  color: #ccc;
  position: absolute;
  top: 0;
  left: 40%;
  background-color: #004b04;
  padding: 2px 8px 2px 4px;
  z-index: 11;
  font-size: 12px;
  /* border-radius: 0 0 5px 5px; */
  opacity: 0.8;
  display: flex;
  flex-direction: column;
}
#main .main-content .window-view .share-tag .share-tag-link {
  margin-top: 10px;
  display: none;
}
#main .main-content .window-view .share-tag:hover {
  opacity: 1;
  padding: 20px;
  width: 250px;
  border: 1px solid #ccc;
  border-top: 0;
}
#main .main-content .window-view .share-tag:hover .share-tag-title {
  font-size: 14px;
  font-weight: bold;
}
#main .main-content .window-view .share-tag:hover .share-tag-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
#main .main-content .window-view .window-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px;
  height: 100%;
  color: #ccc;
  font-family: 'JetBrains Mono', monospace;
  font-size: inherit;
  font-weight: inherit;
}
#main .main-content .window-view .window-empty code {
  background-color: black;
  color: #4e9a06;
}
#main .main-content .window-view .window-empty.should-fade {
  opacity: 1;
  animation: fade-in 2.5s;
}
.alt-view {
  background-color: #111;
  overflow-y: auto;
  flex-grow: 1;
}
.alt-view .alt-title {
  margin: 20px 10px 0px 5px;
  padding-left: 10px;
  padding-bottom: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.5rem;
  font-weight: inherit;
  color: #ffffff;
  border-bottom: 1px solid white;
}
.alt-view .alt-list {
  color: white;
  margin: 4px 10px 5px 5px;
  border-bottom: 1px solid white;
}
.alt-view .no-content {
  color: #d3d7cf;
  padding: 30px 10px 35px 10px;
  border-bottom: 1px solid white;
}
.alt-view .close-button {
  position: absolute;
  padding: 4px;
  font-size: 24px;
  color: #aaa;
  right: 15px;
  top: 18px;
  cursor: pointer;
}
.alt-view .close-button:hover {
  color: #fff;
}
.alt-view .alt-help {
  color: #d3d7cf;
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 12px;
  margin-bottom: 10px;
}
.alt-view .alt-help .help-entry {
  margin-left: 20px;
}
.history-view {
  color: #ccc;
}
.history-view .close-div {
  padding-top: 10px;
  font-size: 24px;
}
.history-view .close-div i {
  padding: 5px 5px 5px 10px;
  cursor: pointer;
}
.history-view .close-div i:hover {
  color: #fff;
}
.history-view .header {
  display: flex;
  flex-direction: row;
  margin: 10px;
  align-items: flex-start;
}
.history-view .header .history-title {
  margin-top: 5px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.5rem;
  font-weight: inherit;
  font-weight: bold;
  color: white;
}
.history-view .header input {
  background-color: #333;
  color: white;
}
.history-view .header input i {
  color: white;
}
.history-view .history-search {
  flex-grow: 1;
  margin-top: 5px;
  margin-left: 15px;
}
.history-view .history-search .main-search .field {
  width: 80%;
}
.history-view .history-search .main-search input::placeholder {
  color: #777;
}
.history-view .history-search .advanced-search {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.history-view .history-search .advanced-search .session-dropdown .dropdown-item,
.history-view .history-search .advanced-search .remote-dropdown .dropdown-item {
  color: white;
  cursor: pointer;
}
.history-view .history-search .advanced-search .session-dropdown .dropdown-item:hover,
.history-view .history-search .advanced-search .remote-dropdown .dropdown-item:hover {
  background-color: #666;
}
.history-view .history-search .advanced-search .session-dropdown .dropdown-content,
.history-view .history-search .advanced-search .remote-dropdown .dropdown-content {
  border: 1px solid #333;
  border-radius: 3px;
}
.history-view .history-search .advanced-search .remote-dropdown {
  margin-left: 15px;
}
.history-view .history-search .advanced-search .search-checkbox {
  margin-left: 15px;
  border: 1px solid #777;
  padding: 5px 10px 5px 10px;
  font-size: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.history-view .history-search .advanced-search .search-checkbox.is-active {
  background-color: #666;
}
.history-view .history-search .advanced-search .search-checkbox .checkbox-container {
  position: relative;
  top: 2px;
}
.history-view .history-search .advanced-search .search-checkbox .checkbox-text {
  padding-left: 8px;
  cursor: pointer;
}
.history-view .history-search .advanced-search .fromts {
  font-size: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-left: 15px;
}
.history-view .history-search .advanced-search .reset-button {
  cursor: pointer;
  margin-left: 15px;
  font-size: 12px;
  border: 1px solid #777;
  padding: 5px 10px 5px 10px;
}
.history-view .history-search .advanced-search .reset-button:hover {
  background-color: #666;
}
.history-view .control-bar {
  display: flex;
  flex-direction: row;
  margin-bottom: 5px;
  margin-right: 10px;
  margin-top: 10px;
  margin-left: 10px;
  align-items: center;
}
.history-view .control-bar .is-hidden {
  display: none;
}
.history-view .control-bar.is-top {
  border-top: 1px solid #333;
  padding-top: 4px;
}
.history-view .control-bar .control-checkbox {
  cursor: pointer;
  color: #777;
  font-size: 18px;
  width: 24px;
  margin-left: 14px;
}
.history-view .control-bar .control-checkbox:hover {
  color: white;
}
.history-view .control-bar .control-button {
  cursor: pointer;
  color: #aaa;
  margin-left: 10px;
  font-size: 14px;
}
.history-view .control-bar .control-button.is-disabled {
  cursor: default;
}
.history-view .control-bar .control-button.is-disabled i,
.history-view .control-bar .control-button.is-disabled span {
  display: none;
}
.history-view .control-bar .control-button:hover {
  color: white;
}
.history-view .control-bar .control-button.delete-button.is-active {
  color: #ef2929 !important;
}
.history-view .control-bar .spacer {
  flex-grow: 1;
}
.history-view .control-bar .showing-text {
  font-size: 16px;
  margin-right: 10px;
}
.history-view .control-bar .showing-btn {
  padding: 0 5px 0 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
}
.history-view .control-bar .showing-btn.is-disabled {
  cursor: default;
  color: #777;
  font-weight: normal;
}
.history-view .control-bar .btn-spacer {
  width: 10px;
}
.history-view .no-items {
  display: flex;
  flex-direction: row;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: inherit;
  padding: 30px 0 30px 0;
  border: 1px solid white;
  border-radius: 3px;
  margin: 20px 50px 20px 20px;
}
.history-view .history-table {
  margin: 0px 10px 10px 10px;
  table-layout: fixed;
  border-top: 2px solid #ccc;
}
.history-view .history-table tr.active-history-item td {
  padding-right: 10px;
}
.history-view .history-table tr.active-history-item td .line-container {
  padding: 0px 10px 10px 10px;
  overflow-x: auto;
  background-color: black;
}
.history-view .history-table tr.active-history-item td .line-context {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: inherit;
  margin-left: 20px;
  margin-bottom: 10px;
  margin-top: 10px;
  display: flex;
  flex-direction: row;
}
.history-view .history-table tr.active-history-item td .line-context .vic-btn {
  cursor: pointer;
  color: #ccc;
}
.history-view .history-table tr.active-history-item td .line-context .vic-btn:hover {
  color: white;
}
.history-view .history-table tr.active-history-item td .no-line-context {
  height: 10px;
}
.history-view .history-table tr.active-history-item td .line-container.no-line {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: inherit;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.history-view .history-table tr.history-item {
  padding: 0 10px 0 10px;
  display: flex;
  border-top: 1px solid #333;
  align-items: center;
}
.history-view .history-table tr.history-item.is-selected {
  background-color: #003;
}
.history-view .history-table tr.history-item.is-selected:hover {
  background-color: #336;
}
.history-view .history-table tr.history-item:hover {
  background-color: #333;
}
.history-view .history-table tr.history-item:hover td.bookmark i {
  display: block;
}
.history-view .history-table tr.history-item td {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
}
.history-view .history-table tr.history-item td.selectbox {
  flex: 0 0 auto;
  flex-basis: 24px;
  font-size: 14px;
  cursor: pointer;
}
.history-view .history-table tr.history-item td.bookmark {
  flex: 0 0 auto;
  flex-basis: 20px;
  font-size: 14px;
  cursor: pointer;
}
.history-view .history-table tr.history-item td.bookmark i {
  position: relative;
  top: 1px;
  display: none;
}
.history-view .history-table tr.history-item td.ts {
  font-size: 12px;
  flex: 0 0 auto;
  flex-basis: 65px;
  font-weight: bold;
}
.history-view .history-table tr.history-item td.session {
  font-size: 12px;
  flex: 0 0 auto;
  flex-basis: 120px;
  text-overflow: ellipsis;
}
.history-view .history-table tr.history-item td.remote {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: inherit;
  flex: 0 0 auto;
  flex-basis: 150px;
  text-overflow: ellipsis;
  padding-right: 5px;
  max-width: 150px;
  overflow: hidden;
}
.history-view .history-table tr.history-item td.cmdstr {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: inherit;
  color: white;
  flex: 1 0 0;
  padding-left: 20px;
  border-radius: 3px;
  white-space: pre;
  max-height: 70px;
  cursor: pointer;
  min-width: 300px;
  padding-top: 4px;
  padding-bottom: 4px;
  overflow: hidden;
}
.history-view .history-table tr.history-item td.cmdstr .use-button {
  visibility: hidden;
}
.history-view .history-table tr.history-item td.cmdstr:hover .use-button {
  visibility: visible;
}
.cmdstr-code {
  position: relative;
  display: flex;
  flex-direction: row;
  padding: 0px 10px 0px 0;
}
.cmdstr-code.is-large .use-button {
  height: 28px;
  width: 28px;
}
.cmdstr-code.is-large .code-div code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: inherit;
}
.cmdstr-code.limit-height .code-div {
  max-height: 58px;
}
.cmdstr-code.limit-height.is-large .code-div {
  max-height: 68px;
}
.cmdstr-code .use-button {
  flex-grow: 0;
  padding: 3px;
  border-radius: 3px 0 0 3px;
  font-size: 12px;
  height: 22px;
  width: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  cursor: pointer;
  background-color: black;
}
.cmdstr-code .use-button:hover {
  background-color: #777;
}
.cmdstr-code .code-div {
  background-color: black;
  display: flex;
  flex-direction: row;
  min-width: 100px;
  overflow: auto;
  border-left: 1px solid #777;
}
.cmdstr-code .code-div code {
  flex-shrink: 0;
  min-width: 100px;
  color: white;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: inherit;
  white-space: pre;
  padding: 2px 8px 2px 8px;
  background-color: black;
}
.cmdstr-code .copy-control {
  width: 0;
  position: relative;
  display: block;
  visibility: hidden;
}
.cmdstr-code .copy-control .inner-copy {
  position: absolute;
  bottom: -1px;
  right: -20px;
  font-size: 9px;
  padding: 2px;
  padding-left: 4px;
  cursor: pointer;
  width: 20px;
  background-color: black;
  border: 1px solid #333;
  color: #777;
}
.cmdstr-code .copy-control .inner-copy:hover {
  color: white;
}
.cmdstr-code:hover .copy-control {
  visibility: visible !important;
}
.webshare-view .webshare-item {
  padding: 4px 5px 8px 15px;
  margin-bottom: 4px;
  border-top: 1px solid white;
  display: flex;
  flex-direction: row;
  position: relative;
  min-height: 55px;
  align-items: center;
}
.webshare-view .webshare-item:first-child {
  border-top: 0;
}
.webshare-view .webshare-item .webshare-vic {
  width: 200px;
}
.webshare-view .webshare-item .webshare-vic .webshare-vic-link {
  cursor: pointer;
}
.webshare-view .webshare-item .webshare-vic .webshare-vic-link:hover {
  text-decoration: underline;
}
.webshare-view .webshare-item .actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.webshare-view .webshare-item:hover {
  background-color: #222;
}
.bookmarks-view .bookmarks-list {
  color: white;
  margin: 4px 10px 5px 5px;
}
.bookmarks-view .bookmarks-list .no-bookmarks {
  color: #d3d7cf;
  padding: 30px 10px 35px 10px;
  border-bottom: 1px solid white;
}
.bookmarks-view .bookmark {
  border-bottom: 1px solid #777;
  padding: 4px 5px 8px 15px;
  margin-bottom: 4px;
  position: relative;
  display: flex;
  flex-direction: row;
  max-width: 100%;
}
.bookmarks-view .bookmark .focus-indicator {
  top: 0;
  height: calc(100% - 4px);
}
.bookmarks-view .bookmark.is-editing {
  padding-top: 8px;
  padding-bottom: 12px;
}
.bookmarks-view .bookmark.pending-delete {
  background-color: #522;
}
.bookmarks-view .bookmark .bookmark-content,
.bookmarks-view .bookmark .bookmark-edit {
  flex-grow: 1;
  max-width: calc(100% - 50px);
}
.bookmarks-view .bookmark label {
  color: white;
  margin-bottom: 4px;
}
.bookmarks-view .bookmark textarea {
  width: 80%;
  min-width: 50%;
  color: white;
  background-color: black;
}
.bookmarks-view .bookmark textarea.mono-font {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: inherit;
}
.bookmarks-view .bookmark .bookmark-id-div {
  display: none;
  position: absolute;
  color: #666;
  right: 5px;
  bottom: 2px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  font-weight: inherit;
}
.bookmarks-view .bookmark:hover .bookmark-id-div {
  display: block;
}
.bookmarks-view .bookmark .bookmark-controls {
  display: flex;
  flex-direction: row;
  font-size: 16px;
  visibility: hidden;
  color: #d3d7cf;
}
.bookmarks-view .bookmark .bookmark-controls .bookmark-control:first-child {
  margin-left: 0;
}
.bookmarks-view .bookmark .bookmark-controls .bookmark-control {
  margin-left: 10px;
  cursor: pointer;
  padding: 2px;
}
.bookmarks-view .bookmark .bookmark-controls .bookmark-control:hover {
  color: #ffffff;
}
.bookmarks-view .bookmark:hover .bookmark-controls {
  visibility: visible;
}
.screen-tabs-container {
  position: relative;
}
.screen-tabs-container:hover {
  z-index: 200;
}
.screen-tabs-container:hover .cmd-hints {
  display: flex;
}
.screen-tabs-container .cmd-hints {
  position: absolute;
  bottom: -18px;
  left: 0px;
  display: flex;
}
.screen-tabs {
  height: 30px;
  display: flex;
  flex-direction: row;
  border-top: 1px solid #666;
  border-right: 1px solid #eee;
  overflow-x: overlay;
  overflow-y: visible;
  align-items: center;
}
.screen-tabs::-webkit-scrollbar {
  display: none;
  z-index: 5;
  background-color: #fff;
  height: 4px;
  width: 0;
}
.screen-tabs::-webkit-scrollbar-thumb {
  background: #777;
}
.screen-tabs.scrolling::-webkit-scrollbar {
  display: block;
}
.screen-tabs .screen-tab {
  height: 30px;
  min-width: 80px;
  width: 150px;
  line-height: 1;
  flex-shrink: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: bold;
  padding-left: 10px;
  padding-right: 10px;
  cursor: pointer;
  position: relative;
  border-right: 1px solid #777;
  opacity: 0.8;
}
.screen-tabs .screen-tab.is-active {
  box-shadow: 0 3px 0 #fff inset;
  border-top: none;
  opacity: 1;
}
.screen-tabs .screen-tab.is-archived .fa.fa-archive {
  margin-right: 4px;
}
.screen-tabs .screen-tab .tab-index,
.screen-tabs .screen-tab .tab-gear {
  position: absolute;
  right: 5px;
  font-weight: normal;
  display: none;
}
.screen-tabs .screen-tab:hover .tab-gear {
  display: block;
}
.screen-tabs .screen-tab:hover .tab-gear:hover i {
  display: block;
  position: relative;
  top: 2px;
  font-size: 15px;
}
.screen-tabs:hover .screen-tab .tab-index {
  display: block;
}
.screen-tabs:hover .screen-tab:hover .tab-index {
  display: none;
}
.screen-tabs .screen-tab.new-screen {
  width: 30px;
  min-width: 30px;
  background-color: black;
  border-right: none;
  color: #ccc;
  cursor: pointer;
}
.screen-tabs .screen-tab.new-screen:hover {
  background-color: #666;
  border-right: 1px solid #ccc;
}
.main-sidebar .logo-header {
  display: flex;
  flex-direction: row;
  justify-content: center;
  border-bottom: 2px solid #ddd;
  margin-left: -4px;
  margin-right: -5px;
}
.main-sidebar .logo-header .title.prompt-logo-small {
  padding-left: 5px;
  padding-top: 8px;
  padding-bottom: 8px;
  margin-bottom: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.5rem;
  font-weight: inherit;
  background-color: #001801;
  color: #00b10a;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  flex-shrink: 0;
}
.main-sidebar .logo-header .title.prompt-logo-small.is-dev {
  background-color: #180001;
}
.main-sidebar .logo-header .title.prompt-logo-small.collapsed {
  padding-left: 1px;
}
.main-sidebar .logo-header .title.prompt-logo-small .title-cursor {
  position: relative;
  bottom: 3px;
  left: 3px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.2rem;
  font-weight: inherit;
}
.main-sidebar {
  border-right: 1px solid #aaa;
  padding: 0 5px 5px 5px;
  width: 200px;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  color: #ddd;
  position: relative;
  background-color: #001801;
  flex-shrink: 0;
}
.main-sidebar.is-dev {
  background-color: #180001;
}
.main-sidebar .menu {
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.main-sidebar .menu .spacer {
  flex-grow: 1;
}
.main-sidebar .menu .bottom-spacer {
  height: 10px;
}
.main-sidebar .menu a:hover {
  color: white;
}
.main-sidebar .menu-label {
  color: #bbb;
}
.main-sidebar .menu-label a {
  color: #bbb;
}
.main-sidebar p.menu-label {
  margin-bottom: 0px;
}
.main-sidebar .menu-list li.new-session a,
.main-sidebar .menu-list li.add-remote a {
  color: #666;
  font-size: 13px;
}
.main-sidebar .menu-list li.new-session .fa,
.main-sidebar .menu-list li.add-remote .fa {
  font-size: 10px;
}
.main-sidebar .menu-list li {
  font-family: 'JetBrains Mono', monospace;
  font-size: inherit;
  font-weight: inherit;
}
.main-sidebar .menu-list li.menu-loading-message {
  font-family: 'JetBrains Mono', monospace;
  font-size: inherit;
  font-weight: inherit;
}
.main-sidebar .menu-list li.menu-history,
.main-sidebar .menu-list li.menu-bookmarks,
.main-sidebar .menu-list li.menu-settings,
.main-sidebar .menu-list li.menu-websharing {
  margin-left: -10px;
}
.main-sidebar .menu-list li.menu-bookmarks {
  margin-left: -10px;
}
.main-sidebar .menu-list li .hotkey {
  visibility: hidden;
}
.main-sidebar .menu-list li:hover .hotkey {
  visibility: visible;
}
.main-sidebar .menu-list.session-menu-list li a {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.main-sidebar .menu-list.session-menu-list li a .session-num {
  width: 24px;
  margin-left: -12px;
}
.main-sidebar .menu-list.session-menu-list li a .session-gear {
  visibility: hidden;
}
.main-sidebar .menu-list.session-menu-list li a:hover .session-gear {
  color: #ccc;
  visibility: visible;
}
.main-sidebar .menu-list.session-menu-list li a:hover .session-gear:hover {
  color: white;
}
.main-sidebar .menu-list.remotes-menu-list {
  max-height: 35%;
  overflow-y: auto;
}
.main-sidebar .menu-list li.remote-menu-item a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: inherit;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.main-sidebar .menu-list li a {
  color: #bbb;
  white-space: nowrap;
  padding: 3px 5px 3px 12px;
  vertical-align: middle;
  position: relative;
  font-size: 13px;
}
.main-sidebar .menu-list li a .user-status {
  position: absolute !important;
  top: 24px !important;
  left: 32px !important;
}
.main-sidebar .menu-list li a .avatar {
  width: 24px;
  height: 24px;
  margin-right: 5px;
  vertical-align: middle;
}
.main-sidebar .menu-list li a .session-num {
  color: #777;
  font-size: 10px;
}
.main-sidebar .menu-list li a.is-active .small-text {
  color: white;
}
.main-sidebar .menu-list li a .small-text {
  color: #777;
  font-size: 10px;
}
.main-sidebar .menu-list li a.is-active {
  color: #ddd;
  font-weight: bold;
}
.main-sidebar .menu-list li a.is-active .session-num {
  color: #aaa;
  font-weight: normal;
}
.main-sidebar .menu-list li a .sub-label {
  font-size: 12px;
  font-style: italic;
}
.main-sidebar .menu-list li a.activity {
  font-weight: bold;
  color: #ddd;
}
.main-sidebar .menu-list li a.activity .tag {
  margin-left: 4px;
  padding: 0 5px 0 5px;
  position: relative;
  top: -1px;
}
.main-sidebar .menu-list li a.is-active:hover {
  background-color: #3273dc;
}
.main-sidebar .menu-list li a:hover {
  background-color: #444;
  color: #ddd;
}
.main-sidebar .menu-list li a .status {
  font-size: 8px;
  margin-right: 5px;
  position: relative;
  top: -3px;
  color: #4e9a06;
}
.main-sidebar .menu-list li a .status.offline {
  color: #cc0000;
}
.main-sidebar.collapsed {
  width: 55px;
}
.main-sidebar.collapsed .collapse-container {
  right: 17px;
}
.main-sidebar.collapsed .menu {
  display: none;
}
.main-sidebar .collapse-container {
  position: absolute;
  right: 3px;
  top: 42px;
}
.main-sidebar .collapse-container .arrow-container {
  color: #777;
  padding: 5px;
  cursor: pointer;
}
.main-sidebar .collapse-container .arrow-container:hover {
  color: #ddd;
}
.line.line-text {
  flex-direction: row;
  padding-top: 5px;
}
.line.line-text .line-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin-left: 10px;
}
.line.line-text .line-content .text {
  font-size: 1rem;
  color: #ddd;
}
.line.line-text.collapsed {
  min-height: 20px;
}
.line.line-text.collapsed .meta {
  display: none;
}
.line.line-text.collapsed.top-border {
  min-height: 26px;
}
.line.line-selected.line-focused {
  outline-left: 3px solid blue;
}
.line.line-cmd {
  flex-direction: column;
  scroll-margin-bottom: 20px;
  position: relative;
}
.line.line-cmd .avatar {
  cursor: pointer;
  height: 36px;
}
.line.line-cmd .line-header {
  display: flex;
  flex-direction: row;
  height: 36px;
  width: 100%;
}
.line.line-cmd .line-header.is-expanded {
  height: auto;
}
.line.line-cmd .line-header.is-collapsed {
  height: 24px;
}
.line.line-cmd .line-header.is-expanded.is-collapsed {
  height: auto;
}
.line.line-cmd .line-header .meta-wrap {
  flex: 1 1 0px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-left: 10px;
}
.line.line-cmd .line-header .collapsed-indicator + .meta-wrap {
  margin-left: 0;
}
.line.line-cmd .line-header .line-icon {
  display: block;
  visibility: hidden;
  cursor: pointer;
  padding: 3px;
  font-size: 1.5rem;
}
.line.line-cmd .line-header .line-bookmark:hover {
  color: white;
}
.line.line-cmd .line-header .line-icon + .line-icon {
  margin-left: 5px;
}
.line.line-cmd .line-header .line-icon.active {
  visibility: visible;
  display: block;
}
.line.line-cmd .line-header .line-icon.active i.fa-star,
.line.line-cmd .line-header .line-icon.active i.fa-thumb-tack {
  color: #fce94f;
}
.line.line-cmd .line-header .line-icon.active i.fa-bookmark {
  color: #32afff;
}
.line.line-cmd .line-header:hover .line-icon {
  visibility: visible;
  display: block;
}
.line.line-cmd .meta.meta-line1 {
  margin-left: 2px;
}
.line.line-cmd.has-rtnstate .terminal-wrapper {
  padding-bottom: 0;
  margin-bottom: -5px;
}
.line.line-cmd .image-wrapper {
  padding: 2px 10px 5px 4px;
  margin: 4px 8px 0 -4px;
}
.line.line-cmd .image-wrapper .loading-div {
  height: 20px;
  margin-left: 50px;
  font-family: 'JetBrains Mono', monospace;
  font-size: inherit;
  font-weight: inherit;
}
.line.line-cmd .image-wrapper.collapsed {
  height: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
}
.line.line-cmd .terminal-wrapper {
  background-color: #000;
  padding: 2px 10px 5px 4px;
  margin: 4px 8px 0 -4px;
  align-self: flex-start;
}
.line.line-cmd .terminal-wrapper.zero-height {
  padding: 0;
  margin: 0;
}
.line.line-cmd .terminal-wrapper.collapsed {
  height: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
}
.line.line-cmd .terminal-wrapper .terminal-connectelem {
  overflow-y: hidden;
  overflow-x: hidden;
}
.line.line-cmd .terminal-wrapper .terminal {
  margin-right: 8px;
  /* needed to show scrollbar */
}
.line.line-cmd .terminal-wrapper.cmd-done .terminal .xterm-cursor {
  display: none;
}
.line.line-cmd .terminal-wrapper .terminal-loading-message {
  position: absolute;
  top: calc(40% - 8px);
  left: 50px;
  height: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: inherit;
  font-weight: inherit;
}
.line.line-cmd .cmd-rtnstate {
  position: relative;
}
.line.line-cmd .cmd-rtnstate .cmd-rtnstate-label {
  position: relative;
  z-index: 2;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: inherit;
  margin-left: 10px;
  padding: 2px 5px 2px 5px;
  color: #666;
  background-color: black;
  display: inline-block;
}
.line.line-cmd .cmd-rtnstate .cmd-rtnstate-sep {
  height: 1px;
  border-bottom: 1px solid #222;
  position: relative;
  top: -8px;
  width: min(300px, 50%);
  margin-bottom: -3px;
}
.line.line-cmd .cmd-rtnstate .cmd-rtnstate-diff {
  color: #d3d7cf;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: inherit;
  white-space: pre;
  margin-left: 15px;
}
.cmd-input-info .terminal-wrapper,
.remotes-modal .terminal-wrapper {
  position: relative;
  background-color: #000;
  padding: 2px 10px 5px 4px;
  margin: 5px 5px 10px 5px;
  box-shadow: 0 0 1px 1px rgba(255, 255, 255, 0.3);
}
.cmd-input-info .terminal-wrapper.focus,
.remotes-modal .terminal-wrapper.focus {
  box-shadow: 0 0 3px 3px rgba(255, 255, 255, 0.3);
}
.cmd-input-info .terminal-wrapper .term-tag,
.remotes-modal .terminal-wrapper .term-tag {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #cc0000;
  color: white;
  z-index: 110;
  padding: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: inherit;
}
.line {
  margin: 0px 5px 0px 5px;
  padding: 10px 5px 0px 12px;
  display: flex;
  line-height: 1.25;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.line.collapsed {
  margin: 2px 5px 0px 5px;
  padding: 0px 5px 0px 12px;
}
.line.collapsed .avatar {
  height: 20px;
  width: 38px;
}
.line.collapsed .avatar.num-4 {
  font-size: 13px;
}
.line.collapsed .avatar.num-5 {
  font-size: 11px;
}
.line.collapsed .avatar.num-6 {
  font-size: 9px;
}
.line.collapsed .meta-wrap .meta.meta-line1 {
  display: none;
}
.line.collapsed .focus-indicator {
  height: calc(100% - 8px);
  top: 4px;
}
.line.collapsed .line-icon {
  padding-top: 0;
  padding-bottom: 0;
  font-size: 20px;
  margin-top: -4px;
  margin-bottom: -2px;
}
.line.top-border,
.line.collapsed.top-border {
  border-top: 1px solid #777;
  padding-top: 5px;
  margin-top: 5px;
}
.line:nth-child(2) {
  margin: 0px 5px 5px 5px;
  padding: 0px 5px 5px 12px;
  border-top: none;
}
.line:hover .meta .termopts {
  display: block;
}
.line:hover .meta .settings {
  display: block;
}
.line .avatar {
  max-height: 38px;
  width: 38px;
  background-color: #555;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
  font-size: 16px;
  border-radius: 5px;
  position: relative;
}
.line .avatar.rtnstate {
  border: 1px solid white;
}
.line .avatar .status-icon {
  font-size: 8px;
  position: absolute;
  top: 2px;
  right: 2px;
}
.line .avatar .comment-icon {
  font-size: 10px;
  position: absolute;
  top: 0px;
  right: -4px;
}
.line .avatar.num-4 {
  font-size: 13px;
}
.line .avatar.num-5 {
  font-size: 11px;
}
.line .avatar.num-6 {
  font-size: 9px;
}
.line .avatar.status-done {
  background-color: #555;
}
.line .avatar.ephemeral {
  opacity: 0.5;
  outline: 1px solid white;
}
.line .avatar.status-error .status-icon {
  color: #cc0000;
}
.line .avatar.status-hangup .status-icon {
  color: #c4a000;
}
.line .avatar.status-running {
  background-color: #729fcf;
}
.line .avatar.status-waiting {
  background-color: #c4a000;
}
.line .avatar.status-detached {
  background-color: #729fcf;
}
.line .avatar.status-detached .status-icon {
  top: 3px;
  right: 3px;
  color: white;
}
.line .collapsed-indicator {
  width: 20px;
  font-size: 20px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 2px;
  margin-right: 2px;
  position: relative;
  top: -2px;
}
.line .meta {
  display: flex;
  flex-direction: row;
  font-size: 1rem;
  margin-top: -4px;
}
.line .meta .user {
  color: #98b9dc;
  font-weight: bold;
  margin-top: 1px;
  margin-right: 10px;
}
.line .meta .ts,
.line .meta .termopts,
.line .meta .renderer {
  display: flex;
  color: #aaa;
  margin-top: 5px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: inherit;
}
.line .meta .renderer {
  color: #aaa;
  margin-left: 3px;
  margin-top: 5px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: inherit;
}
.line .meta .renderer i {
  display: inline-block;
  font-size: 9px;
  margin-right: 2px;
  margin-top: 2px;
}
.line .meta .settings {
  display: none;
  color: #aaa;
  font-size: 11px;
  margin-left: 5px;
  margin-top: 5px;
  cursor: pointer;
}
.line .meta .termopts {
  color: #aaa;
  margin-top: 5px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: inherit;
  display: none;
}
.line .meta .termopts .resize-button {
  cursor: pointer;
  padding-left: 3px;
  padding-right: 3px;
}
.line .meta .metapart-mono {
  color: #ddd;
  margin-left: 8px;
  margin-top: 4px;
  white-space: nowrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: inherit;
}
.line .meta .cmdtext {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  overflow: hidden;
  margin-left: 0;
}
.line .meta .cmdtext-overflow {
  flex-shrink: 0;
  padding-right: 2px;
  color: white;
  cursor: pointer;
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  font-weight: inherit;
  margin-top: 4px;
}
.line .cmdtext-expanded-wrapper {
  margin-top: 2px;
  padding-left: 6px;
  overflow-y: auto;
  max-height: 54px;
  border-left: 2px solid #333;
  margin-left: 3px;
}
.line .cmdtext-expanded-wrapper .cmdtext-expanded {
  white-space: pre;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: inherit;
  color: white;
  padding-bottom: 5px;
}
.line .cmd-hints {
  position: absolute;
  bottom: 0px;
  right: 0px;
  display: none;
}
.line .cmd-hints .hint-item {
  border-radius: 3px;
}
.line:hover .cmd-hints {
  display: flex;
}
body .xterm .xterm-viewport {
  overflow-y: auto;
  width: calc(100% + 5px);
}
.terminal-wrapper {
  position: relative;
}
.terminal-wrapper .term-block {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 10;
}
.terminal-wrapper .xterm-screen::-webkit-scrollbar {
  display: none;
}
.terminal-wrapper.focus .xterm .xterm-screen {
  overflow-y: scroll;
  overscroll-behavior: contain;
}
.terminal-wrapper.focus .xterm .xterm-viewport {
  overscroll-behavior: contain;
}
.cmd-input-info::-webkit-scrollbar,
.cmd-history::-webkit-scrollbar {
  background-color: #777;
  width: 5px;
  height: 5px;
}
.cmd-input-info::-webkit-scrollbar-thumb,
.cmd-history::-webkit-scrollbar-thumb {
  background: white;
}
.terminal-wrapper.focus .xterm-viewport::-webkit-scrollbar {
  background-color: #777;
  width: 5px;
  height: 5px;
}
.terminal-wrapper.focus .xterm-viewport::-webkit-scrollbar-thumb {
  background: white;
}
.terminal-wrapper .xterm-viewport::-webkit-scrollbar {
  background-color: #222;
  width: 5px;
  height: 5px;
}
.terminal-wrapper .xterm-viewport::-webkit-scrollbar-thumb {
  background: #555;
}
.line.line-invalid {
  color: #d3d7cf;
  margin-left: 5px;
}
.lines {
  display: flex;
  flex-direction: column;
  height: 80vh;
  overflow-y: scroll;
  padding: 10px 0 10px 0;
  flex-grow: 1;
  position: relative;
}
.lines .line:nth-child(2) {
  padding-top: 1px;
}
.lines .lines-spacer {
  flex-grow: 1;
}
.lines .line-sep {
  display: flex;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: inherit;
  color: #aaa;
}
.lines .line-sep::before,
.lines .line-sep::after {
  content: '';
  height: 2px;
  background-color: #ccc;
  flex-grow: 1;
}
.lines .line-sep::before {
  margin-right: 1rem;
}
.lines .line-sep::after {
  margin-left: 1rem;
}
.cmd-input {
  border-radius: 0;
  border-top: 4px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-bottom-right-radius: 10px;
  max-height: max(300px, 40%);
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px 25px 20px 20px;
  z-index: 100;
}
.cmd-input.has-info {
  padding-top: 10px;
}
.cmd-input .focus-indicator {
  height: 90%;
  top: 5%;
  left: 4px;
}
.cmd-input.has-history {
  padding-top: 5px;
  height: max(300px, 40%);
}
.cmd-input.has-remote {
  max-height: max(300px, 70%);
}
.cmd-input .remote-status-warning {
  display: flex;
  flex-direction: row;
  color: #c4a000;
  align-items: center;
  font-size: 14px;
}
.cmd-input .remote-status-warning .button {
  margin-left: 10px;
}
.cmd-input .remote-status-warning .remote-name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: inherit;
}
.cmd-input .input-minmax-control {
  position: absolute;
  top: 5px;
  right: 5px;
  color: #d3d7cf;
  font-size: 12px;
  padding: 5px;
  cursor: pointer;
}
.cmd-input .cmd-input-grow-spacer {
  flex-grow: 1;
}
.cmd-input .cmd-input-context {
  font-family: 'JetBrains Mono', monospace;
  font-size: inherit;
  font-weight: inherit;
  color: #fff;
  white-space: nowrap;
}
.cmd-input .cmd-input-field {
  position: relative;
}
.cmd-input .cmd-input-field .cmd-input-control {
  line-height: 0;
}
.cmd-input .cmd-input-field .cmd-hints {
  position: absolute;
  bottom: -14px;
  right: 0px;
}
.cmd-input .cmd-input-field textarea {
  color: white;
  background-color: black;
  font-family: 'JetBrains Mono', monospace;
  font-size: inherit;
  font-weight: inherit;
  padding-bottom: calc(0.5em - 1px);
  padding-top: calc(0.5em - 1px);
  resize: none;
  overflow-wrap: anywhere;
}
.cmd-input .cmd-input-field textarea:active,
.cmd-input .cmd-input-field textarea:focus {
  border-color: white !important;
}
.cmd-input .cmd-input-field textarea.display-disabled {
  background-color: #444;
}
.cmd-input .cmd-input-field input.history-input {
  border: 0;
  padding: 0;
  height: 0;
}
.cmd-input .cmd-input-field .cmd-quick-context .button {
  font-family: 'JetBrains Mono', monospace;
  font-size: inherit;
  font-weight: inherit;
  background-color: #000 !important;
  color: white;
}
.cmd-input .cmd-input-field.inputmode-global .cmd-quick-context .button {
  color: black;
  background-color: #00b10a !important;
}
.cmd-input .cmd-input-field.inputmode-comment .cmd-quick-context .button {
  color: black;
  background-color: #2472c8 !important;
}
.cmd-input .cmd-input-field .cmd-exec .button {
  background-color: #000 !important;
  color: #d3d7cf;
}
.cmd-input .cmd-history {
  color: #d3d7cf;
  margin-bottom: 5px;
  overflow: auto;
  flex-shrink: 1;
}
.cmd-input .cmd-history .history-title {
  position: absolute;
  z-index: 102;
  top: 5px;
  left: 20px;
  background-color: black;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: #729fcf;
  padding-bottom: 4px;
  display: flex;
  flex-direction: row;
  width: calc(100% - 40px);
  overflow-x: auto;
}
.cmd-input .cmd-history .history-title .history-opt {
  white-space: nowrap;
}
.cmd-input .cmd-history .history-title .history-clickable-opt {
  white-space: nowrap;
  cursor: pointer;
}
.cmd-input .cmd-history .history-title .grow-spacer {
  flex: 1 0 10px;
}
.cmd-input .cmd-history .history-title .spacer {
  flex: 0 0 10px;
}
.cmd-input .cmd-history .history-items {
  margin-top: 24px;
  color: #d3d7cf;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: inherit;
  padding-bottom: 6px;
}
.cmd-input .cmd-history .history-items .history-line {
  white-space: pre;
}
.cmd-input .cmd-history .history-items .history-item.history-haderror {
  color: #d06c68;
}
.cmd-input .cmd-history .history-items .history-line:first-child {
  margin-left: 0 !important;
}
.cmd-input .cmd-history .history-items .history-item {
  padding-left: 5px;
  cursor: pointer;
}
.cmd-input .cmd-history .history-items .history-item:hover {
  background-color: #222;
}
.cmd-input .cmd-history .history-items .history-item.is-selected {
  font-weight: bold;
  color: #ffffff;
  background-color: #444;
}
.cmd-input .cmd-history .history-items .history-item.is-selected.history-haderror {
  color: #f79494;
}
.cmd-input .cmd-input-info {
  flex-shrink: 1;
  overflow-y: auto;
  margin-bottom: 5px;
}
.cmd-input .cmd-input-info .info-msg {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 400;
  color: #729fcf;
  padding-bottom: 2px;
}
.cmd-input .cmd-input-info .info-msg a {
  color: #3465a4;
}
.cmd-input .cmd-input-info .info-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  color: #729fcf;
  padding-bottom: 2px;
}
.cmd-input .cmd-input-info .info-lines {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: inherit;
  color: #d3d7cf;
  white-space: pre;
  padding-bottom: 6px;
}
.cmd-input .cmd-input-info .info-comps {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding-bottom: 5px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 400;
}
.cmd-input .cmd-input-info .info-comps .info-comp {
  min-width: 200px;
  color: #d3d7cf;
  margin-right: 10px;
}
.cmd-input .cmd-input-info .info-comps .info-comp.has-space {
  text-decoration: underline dotted #777;
}
.cmd-input .cmd-input-info .info-comps .metacmd-comp {
  color: #8ae234;
}
.cmd-input .cmd-input-info .info-error {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  color: #cc0000;
  padding-bottom: 2px;
}
.cmd-input .cmd-input-info .info-remote-showall table.remotes-table th {
  color: white;
  font-weight: bold;
}
.cmd-input .cmd-input-info .info-remote-showall table.remotes-table th,
.cmd-input .cmd-input-info .info-remote-showall table.remotes-table td {
  padding: 3px 8px 3px 8px;
}
.cmd-input .cmd-input-info .info-remote-showall table.remotes-table td {
  cursor: pointer;
}
.cmd-input .cmd-input-info .info-remote-showall table.remotes-table tr:hover td {
  background-color: #333;
}
.cmd-input .cmd-input-info .info-remote {
  color: #d3d7cf;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: inherit;
}
.cmd-input .cmd-input-info .info-remote .info-remote-title {
  font-weight: bold;
  color: #06989a;
}
.cmd-input .cmd-input-info .info-remote .info-error,
.cmd-input .cmd-input-info .info-remote .info-msg {
  margin-top: 5px;
  padding: 5px;
}
.cmd-input .cmd-input-info .info-remote .remote-field {
  display: flex;
  flex-direction: row;
}
.cmd-input .cmd-input-info .info-remote .remote-field .remote-field-def {
  white-space: pre;
  width: 120px;
}
.cmd-input .cmd-input-info .info-remote .remote-field .remote-field-val {
  white-space: pre;
  display: flex;
  flex-direction: row;
}
.cmd-input .cmd-input-info .info-remote .remote-input-field {
  display: flex;
  flex-direction: row;
  height: 25px;
  align-items: center;
}
.cmd-input .cmd-input-info .info-remote .remote-input-field .remote-field-label {
  white-space: pre;
  width: 140px;
  font-weight: bold;
  color: #ffffff;
}
.cmd-input .cmd-input-info .info-remote .remote-input-field .undo-icon {
  margin-left: 4px;
  cursor: pointer;
  padding: 2px;
}
.cmd-input .cmd-input-info .info-remote .remote-input-field .remote-field-control.text-input input[type=text],
.cmd-input .cmd-input-info .info-remote .remote-input-field .remote-field-control.text-input input[type=number],
.cmd-input .cmd-input-info .info-remote .remote-input-field .remote-field-control.text-input input[type=password] {
  background-color: black;
  color: white;
  width: 200px;
}
.cmd-input .cmd-input-info .info-remote .remote-input-field .remote-field-control.checkbox-input input[type=checkbox] {
  position: relative;
  top: 3px;
}
.cmd-input .cmd-input-info .info-remote .remote-input-field .remote-field-control.select-input select {
  width: 200px;
  background-color: black;
  color: white;
}
.cmd-input .cmd-input-info .info-remote-showall {
  color: #d3d7cf;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: inherit;
}
input[type=checkbox] {
  cursor: pointer;
}
.text-button {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: #d3d7cf;
  cursor: pointer;
  background-color: #171717;
  outline: 2px solid #171717;
}
.text-button:hover,
.text-button:focus {
  color: #d3d7cf;
  background-color: #333;
  outline: 2px solid #333;
}
.text-button.connect-button {
  color: #4e9a06;
}
.text-button.connect-button:hover {
  color: #4e9a06;
}
.text-button.disconnect-button {
  color: #cc0000;
}
.text-button.disconnect-button:hover {
  color: #cc0000;
}
.text-button.success-button {
  color: #4e9a06;
}
.text-button.success-button:hover {
  color: #4e9a06;
}
.text-button.error-button {
  color: #cc0000;
}
.text-button.error-button:hover {
  color: #cc0000;
}
.text-button.grey-button {
  color: #666;
}
.text-button.grey-button:hover {
  color: #666;
}
.text-button.disabled-button {
  cursor: default;
}
.text-button.disabled-button:hover,
.text-button.disabled-button:focus {
  outline: none;
  background-color: #171717;
}
.bold {
  font-weight: bold;
}
.term-black {
  color: #000000;
}
.term-red {
  color: #cc0000;
}
.term-green {
  color: #4e9a06;
}
.term-yellow {
  color: #c4a000;
}
.term-blue {
  color: #3465a4;
}
.term-magenta {
  color: #75507b;
}
.term-cyan {
  color: #06989a;
}
.term-white {
  color: #d3d7cf;
}
.term-bright-white {
  color: #ffffff;
}
.term-bright-green {
  color: #8ae234;
}
.term-bright-red {
  color: #ef2929;
}
#main .term-prompt-remote {
  color: #8ae234;
}
#main .term-prompt-remote.color-green {
  color: #8ae234;
}
#main .term-prompt-remote.color-red {
  color: #ef2929;
}
#main .term-prompt-remote.color-blue {
  color: #32afff;
}
#main .term-prompt-remote.color-yellow {
  color: #fce94f;
}
#main .term-prompt-remote.color-magenta {
  color: #ad7fa8;
}
#main .term-prompt-remote.color-cyan {
  color: #34e2e2;
}
#main .term-prompt-remote.color-white {
  color: #ffffff;
}
#main .term-prompt-remote.color-orange {
  color: #ffc706;
}
#main .term-prompt-cwd {
  color: #8ae234;
}
#main .term-prompt-end {
  color: #8ae234;
}
#main .screen-tabs .screen-tab.color-green {
  color: #333;
  background-color: #1b9622;
}
#main .screen-tabs .screen-tab.color-green:hover {
  background-color: #00b10a;
}
#main .screen-tabs .screen-tab.color-green.is-active {
  color: black;
  background-color: #00b10a;
}
#main .screen-tabs .screen-tab.color-orange {
  color: #333;
  background-color: #dab22b;
}
#main .screen-tabs .screen-tab.color-orange:hover {
  background-color: #ffc706;
}
#main .screen-tabs .screen-tab.color-orange.is-active {
  color: black;
  background-color: #ffc706;
}
#main .screen-tabs .screen-tab.color-red {
  color: #333;
  background-color: #b44a4a;
}
#main .screen-tabs .screen-tab.color-red:hover {
  background-color: #cd3131;
}
#main .screen-tabs .screen-tab.color-red.is-active {
  color: black;
  background-color: #cd3131;
}
#main .screen-tabs .screen-tab.color-yellow {
  color: #333;
  background-color: #c0c035;
}
#main .screen-tabs .screen-tab.color-yellow:hover {
  background-color: #e5e510;
}
#main .screen-tabs .screen-tab.color-yellow.is-active {
  background-color: #e5e510;
  color: black;
  box-shadow: 0 3px 0 #fff inset, 0 4px 0 #000 inset;
}
#main .screen-tabs .screen-tab.color-blue {
  color: #333;
  background-color: #3c73b0;
}
#main .screen-tabs .screen-tab.color-blue:hover {
  background-color: #2472c8;
}
#main .screen-tabs .screen-tab.color-blue.is-active {
  color: black;
  background-color: #2472c8;
}
#main .screen-tabs .screen-tab.color-magenta {
  color: #333;
  background-color: #a358a3;
}
#main .screen-tabs .screen-tab.color-magenta:hover {
  background-color: #bc3fbc;
}
#main .screen-tabs .screen-tab.color-magenta.is-active {
  color: black;
  background-color: #bc3fbc;
}
#main .screen-tabs .screen-tab.color-cyan {
  color: #333;
  background-color: #279bb7;
}
#main .screen-tabs .screen-tab.color-cyan:hover {
  background-color: #11a8cd;
}
#main .screen-tabs .screen-tab.color-cyan.is-active {
  color: black;
  background-color: #11a8cd;
}
#main .screen-tabs .screen-tab.color-white {
  color: #333;
  background-color: #d3d7cf;
}
#main .screen-tabs .screen-tab.color-white:hover {
  background-color: #f9f9f9;
}
#main .screen-tabs .screen-tab.color-white.is-active {
  color: black;
  background-color: #f9f9f9;
  box-shadow: 0 3px 0 #fff inset, 0 4px 0 #000 inset;
}
#main .screen-tabs .screen-tab.color-black {
  color: #d7d7d7;
  background-color: #333333;
}
#main .screen-tabs .screen-tab.color-black:hover {
  background-color: #000000;
}
#main .screen-tabs .screen-tab.color-black.is-active {
  color: white;
  background-color: #000000;
}
#main .screen-tabs .screen-tab .web-share-icon {
  position: relative;
  top: 1px;
  margin-right: 3px;
}
.monofont-thin {
  font-family: 'JetBrains Mono', monospace;
  font-size: inherit;
  font-weight: 200;
}
.monofont-normal {
  font-family: 'JetBrains Mono', monospace;
  font-size: inherit;
  font-weight: 400;
}
.monofont-bold {
  font-family: 'JetBrains Mono', monospace;
  font-size: inherit;
  font-weight: 700;
}
.tos-modal a:hover {
  text-decoration: underline;
}
.tos-modal .content {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: inherit;
}
.disconnected-modal .modal-content footer .footer-text-link {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: inherit;
  color: #d3d7cf;
  cursor: pointer;
}
.disconnected-modal .inner-content .ws-log {
  padding: 5px;
  background-color: black;
  height: 250px;
  overflow: auto;
}
.disconnected-modal .inner-content .ws-log .ws-logline {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: inherit;
  color: #d3d7cf;
}
.modal.prompt-modal.client-stop-modal footer {
  justify-content: center;
}
.modal.prompt-modal.client-stop-modal .inner-content {
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.modal.prompt-modal.client-stop-modal .inner-content .progress-container {
  margin-top: 20px;
}
.modal.prompt-modal.client-stop-modal .inner-content .progress-text {
  color: #d3d7cf;
  align-self: center;
  font-size: 12px;
}
.remote-status {
  font-size: 8px;
  margin-right: 5px;
  position: relative;
  top: -3px;
  color: #c4a000;
}
.remote-status.status-init,
.remote-status.status-disconnected {
  color: #c4a000;
}
.remote-status.status-connecting {
  color: #c4a000;
}
.remote-status.status-connected {
  color: #4e9a06;
}
.remote-status.status-error {
  color: #cc0000;
}
.remote-field .remote-status {
  top: 4px;
}
.menu-list .remote-status.status-connecting {
  position: relative;
  top: 0px;
  font-size: 12px;
  margin-left: -3px;
}
.flex-spacer {
  flex-grow: 1;
}
.flex-centered-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.flex-centered-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.loading-spinner {
  display: inline-block;
  position: absolute;
  top: calc(40% - 8px);
  left: 30px;
  width: 20px;
  height: 20px;
}
.loading-spinner div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  margin: 2px;
  border: 2px solid #777;
  border-radius: 50%;
  animation: loader-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #777 transparent transparent transparent;
}
.loading-spinner div:nth-child(1) {
  animation-delay: -0.45s;
}
.loading-spinner div:nth-child(2) {
  animation-delay: -0.3s;
}
.loading-spinner div:nth-child(3) {
  animation-delay: -0.15s;
}
.focus-parent:hover .focus-indicator {
  display: block;
  background-color: #222;
}
.focus-indicator {
  position: absolute;
  display: none;
  width: 5px;
  border-radius: 3px;
  height: calc(100% - 20px);
  top: 10px;
  left: 0;
  z-index: 8;
}
.focus-indicator.selected {
  display: block;
  background-color: #666 !important;
}
.focus-indicator.active,
.focus-indicator.active.selected {
  display: block;
  background-color: #2472c8 !important;
}
.focus-indicator.active.selected.fg-focus {
  display: block;
  background-color: #00b10a !important;
}
@keyframes loader-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in-out {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
  }
}
#measure {
  position: absolute;
  z-index: -1;
  top: -5000px;
}
#measure .mono {
  font-family: 'JetBrains Mono', monospace;
  font-size: inherit;
  font-weight: inherit;
}
#measure .pre {
  white-space: pre;
}
.modal.alert-modal {
  z-index: 205;
}
.modal.alert-modal footer {
  justify-content: center;
}
.modal.alert-modal footer .button {
  margin-left: 20px;
}
.modal.alert-modal footer .button:first-child {
  margin-left: 0;
}
.modal.settings-modal footer {
  justify-content: center;
}
.modal.settings-modal footer .button {
  margin-left: 20px;
}
.modal.settings-modal footer .button:first-child {
  margin-left: 0;
}
.modal.settings-modal .dropdown .dropdown-menu .dropdown-content .dropdown-item {
  color: white;
  cursor: pointer;
}
.modal.settings-modal .dropdown .dropdown-menu .dropdown-content .dropdown-item:hover {
  background-color: #333;
}
.modal.settings-modal .dropdown .dropdown-menu {
  max-height: 120px;
  overflow: auto;
}
.modal.prompt-modal .modal-content {
  border-radius: 5px;
  border: 5px solid #333;
}
.modal.prompt-modal header {
  background-color: #000;
  display: flex;
  flex-direction: row;
  padding: 10px;
  position: relative;
}
.modal.prompt-modal header .modal-title {
  color: #00b10a;
  font-family: 'JetBrains Mono', monospace;
  font-size: 24px;
  font-weight: inherit;
}
.modal.prompt-modal header .close-icon {
  position: absolute;
  right: 10px;
  top: 6px;
  cursor: pointer;
  padding: 3px;
  color: #aaa;
  font-size: 20px;
}
.modal.prompt-modal header .close-icon:hover {
  color: #fff;
}
.modal.prompt-modal .inner-content {
  background-color: #222;
  padding: 15px 10px 15px 10px;
  color: #d3d7cf;
  margin: 0;
}
.modal.prompt-modal .inner-content.is-hidden {
  display: none;
}
.modal.prompt-modal footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #d3d7cf;
  background-color: #222;
  padding: 15px 10px 10px 10px;
  border-top: 1px solid #666;
}
.modal.prompt-modal.remotes-modal .modal-content {
  min-width: 850px;
}
.modal.prompt-modal.remotes-modal .inner-content {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding: 0;
  max-height: 80vh;
}
.modal.prompt-modal.remotes-modal .inner-content .remotes-menu {
  flex: 0 0 200px;
  min-height: 450px;
  border-right: 1px solid #666;
  overflow-y: auto;
  height: 100px;
}
.modal.prompt-modal.remotes-modal .inner-content .remotes-menu .remote-menu-item {
  border-top: 1px solid #666;
  padding: 5px;
  display: flex;
  flex-direction: row;
  cursor: pointer;
}
.modal.prompt-modal.remotes-modal .inner-content .remotes-menu .remote-menu-item.add-remote {
  font-size: 13px;
  padding: 10px 5px 10px 5px;
}
.modal.prompt-modal.remotes-modal .inner-content .remotes-menu .remote-menu-item:hover {
  background-color: #333;
}
.modal.prompt-modal.remotes-modal .inner-content .remotes-menu .remote-menu-item.is-selected {
  background-color: #485fc7;
}
.modal.prompt-modal.remotes-modal .inner-content .remotes-menu .remote-menu-item.is-selected .remote-name .remote-name-secondary {
  color: white;
}
.modal.prompt-modal.remotes-modal .inner-content .remotes-menu .remote-menu-item:first-child {
  border-top: 0;
}
.modal.prompt-modal.remotes-modal .inner-content .remotes-menu .remote-menu-item .remote-status-light {
  width: 15px;
  margin-top: -2px;
}
.modal.prompt-modal.remotes-modal .inner-content .remotes-menu .remote-menu-item .remote-name {
  flex-grow: 1;
}
.modal.prompt-modal.remotes-modal .inner-content .remotes-menu .remote-menu-item .remote-name .remote-name-primary {
  font-size: 12px;
  font-weight: bold;
}
.modal.prompt-modal.remotes-modal .inner-content .remotes-menu .remote-menu-item .remote-name .remote-name-secondary {
  font-size: 11px;
  color: #777;
}
.modal.prompt-modal.remotes-modal .inner-content .remote-detail {
  padding: 10px;
  flex-grow: 1;
  font-size: 12px;
  display: flex;
  flex-direction: column;
}
.modal.prompt-modal.remotes-modal .inner-content .remote-detail .settings-field {
  margin-top: 5px;
}
.modal.prompt-modal.remotes-modal .inner-content .remote-detail * {
  flex-shrink: 0;
}
.modal.prompt-modal.remotes-modal .inner-content .remote-detail .detail-subtitle {
  font-size: 18px;
  margin-bottom: 10px;
  margin-top: 10px;
}
.modal.prompt-modal.remotes-modal .inner-content .remote-detail .title {
  color: white;
  padding-bottom: 8px;
  margin-bottom: 0;
  border-bottom: 1px solid #777;
}
.modal.prompt-modal.remotes-modal .inner-content .remote-detail .terminal-wrapper {
  margin-left: 0;
  margin-bottom: 0;
  box-shadow: none;
  border: 1px solid #777;
}
.modal.prompt-modal.remotes-modal .inner-content .remote-detail .terminal-wrapper.has-message {
  margin-top: 0;
}
.modal.prompt-modal.remotes-modal .inner-content .remote-detail .action-buttons {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 2px;
}
.modal.prompt-modal.remotes-modal .inner-content .remote-detail .remote-message {
  margin-top: 5px;
  padding: 8px;
  border-radius: 5px 5px 0 0;
  background-color: #333;
}
.modal.prompt-modal.remotes-modal .inner-content .remote-detail .remote-message i.fa-check {
  color: #4e9a06;
}
.modal.prompt-modal.remotes-modal .inner-content .remote-detail .remote-message .message-row {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.modal.prompt-modal.remotes-modal .inner-content .remote-detail .remote-message .remote-status {
  position: relative;
  top: -1px;
}
.modal.prompt-modal.remotes-modal .inner-content .remote-detail .remote-message .button {
  height: 22px;
}
.modal.prompt-modal.remotes-modal .inner-content .remote-detail .settings-field .update-auth-button {
  visibility: hidden;
}
.modal.prompt-modal.remotes-modal .inner-content .remote-detail .settings-field:hover .update-auth-button {
  visibility: visible;
}
.modal.prompt-modal.remotes-modal .inner-content .remote-detail .settings-field:hover .hide-hover {
  display: none;
}
.modal.prompt-modal.remotes-modal .inner-content .remote-detail.auth-editing .settings-field.align-top,
.modal.prompt-modal.remotes-modal .inner-content .remote-detail.create-remote .settings-field.align-top {
  align-items: flex-start;
}
.modal.prompt-modal.remotes-modal .inner-content .remote-detail.auth-editing .settings-field.align-top .settings-label,
.modal.prompt-modal.remotes-modal .inner-content .remote-detail.create-remote .settings-field.align-top .settings-label {
  margin-top: 8px;
}
.modal.prompt-modal.remotes-modal .inner-content .remote-detail.auth-editing .settings-field.align-top .settings-input,
.modal.prompt-modal.remotes-modal .inner-content .remote-detail.create-remote .settings-field.align-top .settings-input {
  align-items: flex-start;
}
.modal.prompt-modal.remotes-modal .inner-content .remote-detail.auth-editing .settings-label,
.modal.prompt-modal.remotes-modal .inner-content .remote-detail.create-remote .settings-label {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.modal.prompt-modal.remotes-modal .inner-content .remote-detail.auth-editing .settings-field .settings-input .undo-icon,
.modal.prompt-modal.remotes-modal .inner-content .remote-detail.create-remote .settings-field .settings-input .undo-icon {
  cursor: pointer;
  font-size: 18px;
  margin-left: 5px;
}
.modal.prompt-modal.remotes-modal .inner-content .remote-detail.auth-editing .editremote-dropdown .dropdown-trigger button,
.modal.prompt-modal.remotes-modal .inner-content .remote-detail.create-remote .editremote-dropdown .dropdown-trigger button {
  width: 120px;
  justify-content: flex-start;
}
.modal.prompt-modal.remotes-modal .inner-content .remote-detail.auth-editing .settings-field .raw-input,
.modal.prompt-modal.remotes-modal .inner-content .remote-detail.create-remote .settings-field .raw-input {
  width: 120px;
}
.modal.prompt-modal.remotes-modal .inner-content .remote-detail.auth-editing .settings-input input,
.modal.prompt-modal.remotes-modal .inner-content .remote-detail.create-remote .settings-input input {
  width: 250px;
}
.modal.prompt-modal.remotes-modal .inner-content .remote-detail.auth-editing .dropdown .dropdown-trigger button,
.modal.prompt-modal.remotes-modal .inner-content .remote-detail.create-remote .dropdown .dropdown-trigger button {
  font-size: 12px;
}
.modal.prompt-modal.remotes-modal .inner-content .remote-detail.auth-editing .dropdown .dropdown-item,
.modal.prompt-modal.remotes-modal .inner-content .remote-detail.create-remote .dropdown .dropdown-item {
  font-size: 12px;
  padding: 5px 5px 5px 12px;
}
.modal.prompt-modal.remotes-modal .inner-content .remote-detail.auth-editing .settings-input .info-message,
.modal.prompt-modal.remotes-modal .inner-content .remote-detail.create-remote .settings-input .info-message {
  margin-left: 22px;
}
.modal.prompt-modal.remotes-modal .inner-content .remote-detail.auth-editing .settings-label .info-message,
.modal.prompt-modal.remotes-modal .inner-content .remote-detail.create-remote .settings-label .info-message {
  margin-right: 15px;
}
.info-message {
  position: relative;
  font-weight: normal;
  font-size: 12px;
  color: #d3d7cf;
}
.info-message .message-content {
  position: absolute;
  display: none;
  flex-direction: row;
  align-items: flex-start;
  top: -6px;
  left: -6px;
  padding: 5px;
  border: 1px solid #777;
  background-color: #444;
  border-radius: 5px;
  z-index: 5;
  overflow: hidden;
}
.info-message .message-content .info-icon {
  margin-right: 5px;
  width: 12px;
  flex-shrink: 0;
}
.info-message .message-content .info-children {
  flex: 1 0 0;
  overflow: hidden;
}
.info-message:hover .message-content {
  display: flex;
}
.modal.welcome-modal footer .prev-button {
  margin-left: 15px;
  width: 100px;
}
.modal.welcome-modal footer .prev-spacer {
  margin-left: 15px;
  width: 100px;
}
.modal.welcome-modal footer .next-button {
  margin-right: 15px;
  width: 100px;
}
.modal.welcome-modal footer .dots {
  font-size: 10px;
}
.modal.welcome-modal footer .dots i {
  margin-left: 5px;
}
.modal {
  z-index: 105;
}
.modal .modal-background {
  background-color: rgba(10, 10, 10, 0.6);
}
.flex-spacer {
  flex-grow: 1;
}
.cmd-hints {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: inherit;
  display: flex;
  flex-direction: row;
}
.cmd-hints .hint-item {
  padding: 0px 5px 0px 5px;
  border-radius: 0 0 3px 3px;
  cursor: pointer;
}
.cmd-hints .hint-item:not(:last-child) {
  margin-right: 8px;
}
.cmd-hints .hint-item.color-green {
  color: black;
  background-color: #00b10a;
}
.cmd-hints .hint-item.color-green:hover {
  color: white;
}
.cmd-hints .hint-item.color-nohover-green {
  color: black;
  background-color: #00b10a;
  cursor: default;
}
.cmd-hints .hint-item.color-white {
  color: black;
  background-color: #d3d7cf;
}
.cmd-hints .hint-item.color-white:hover {
  background-color: #ffffff;
}
.cmd-hints .hint-item.color-nohover-white {
  color: black;
  background-color: #d3d7cf;
  cursor: default;
}
.cmd-hints .hint-item.color-blue {
  color: black;
  background-color: #2472c8;
}
.cmd-hints .hint-item.color-blue:hover {
  color: white;
}
.cmd-hints .hint-item.color-nohover-blue {
  color: black;
  background-color: #2472c8;
  cursor: default;
}
.client-settings-modal .settings-field .settings-label {
  width: 150px;
}
.settings-field {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 14px;
}
.settings-field.settings-field.sub-field .settings-label {
  font-weight: normal;
  font-size: 13px;
  text-align: right;
  padding-right: 20px;
}
.settings-field.settings-error {
  font-size: 14px;
  color: #cc0000;
  margin-top: 20px;
  padding: 10px;
  border-radius: 5px;
  background-color: #200707;
  border: 1px solid #cc0000;
  font-weight: bold;
}
.settings-field.settings-error .error-dismiss {
  padding: 2px;
  cursor: pointer;
}
.settings-field .settings-label {
  font-weight: bold;
  color: #fff;
  width: 120px;
}
.settings-field .settings-input {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.settings-field .settings-input.inline-edit.edit-not-active {
  cursor: pointer;
}
.settings-field .settings-input.inline-edit.edit-not-active i.fa-pen {
  margin-left: 5px;
}
.settings-field .settings-input.inline-edit.edit-not-active:hover {
  text-decoration: underline;
  text-decoration-style: dotted;
}
.settings-field .settings-input.settings-clickable {
  cursor: pointer;
}
.settings-field .settings-input.inline-edit.edit-active input.input {
  padding: 0;
  height: 20px;
  font-size: 12px;
}
.settings-field .settings-input.inline-edit.edit-active .button {
  height: 20px;
}
.settings-field .settings-input input {
  padding: 4px;
  border-radius: 3px;
}
.settings-field .settings-input .control {
  font-size: 12px;
}
.settings-field .settings-input .tab-color-icon.color-green {
  color: #1b9622;
}
.settings-field .settings-input .tab-color-icon.color-orange {
  color: #dab22b;
}
.settings-field .settings-input .tab-color-icon.color-red {
  color: #b44a4a;
}
.settings-field .settings-input .tab-color-icon.color-yellow {
  color: #c0c035;
}
.settings-field .settings-input .tab-color-icon.color-blue {
  color: #3c73b0;
}
.settings-field .settings-input .tab-color-icon.color-magenta {
  color: #a358a3;
}
.settings-field .settings-input .tab-color-icon.color-cyan {
  color: #279bb7;
}
.settings-field .settings-input .tab-color-icon.color-white {
  color: #d3d7cf;
}
.settings-field .settings-input .tab-color-icon.color-black {
  color: #333333;
}
.settings-field .settings-input .tab-colors {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.settings-field .settings-input .tab-colors .tab-color-sep {
  padding-left: 10px;
  padding-right: 10px;
  font-weight: bold;
}
.settings-field .settings-input .tab-colors .tab-color-cur {
  font-size: 12px;
  width: 100px;
}
.settings-field .settings-input .tab-colors .tab-color-select {
  cursor: pointer;
  margin: 5px;
  line-height: 1;
}
.settings-field .settings-input .tab-colors .tab-color-select:hover {
  outline: 2px solid white;
}
.settings-field .settings-input .action-text {
  margin-left: 20px;
  font-size: 12px;
  color: #cc0000;
}
.settings-field .settings-input .settings-share-link {
  width: 160px;
}
.settings-field:not(:first-child) {
  margin-top: 10px;
}
.checkbox-toggle {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 23px;
}
.checkbox-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.checkbox-toggle .slider {
  position: absolute;
  content: "";
  cursor: pointer;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #333;
  transition: 0.5s;
  border-radius: 33px;
}
.checkbox-toggle .slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.5s;
  border-radius: 50%;
}
.checkbox-toggle input:checked + .slider {
  background-color: #4e9a06;
}
.checkbox-toggle input:checked + .slider:before {
  transform: translateX(18px);
}
.button.is-prompt-green {
  background-color: #222;
  color: #d3d7cf;
}
.button.is-prompt-green:hover {
  background-color: #4e9a06;
  color: #ffffff;
}
.button.is-plain,
.button.is-prompt-cancel {
  background-color: #222;
  color: #d3d7cf;
}
.button.is-plain:hover,
.button.is-prompt-cancel:hover {
  background-color: #666;
  color: #ffffff;
}
.button.is-prompt-danger {
  background-color: #222;
  color: #d3d7cf;
}
.button.is-prompt-danger:hover {
  background-color: #cd3131;
  color: #ffffff;
}
.button.is-inline-height {
  height: 22px;
}
.button input.confirm-checkbox {
  margin-right: 5px;
}
.simple-image-renderer {
  padding: 10px;
}
.simple-image-renderer img {
  display: block;
}
.markdown {
  color: #d3d7cf;
  margin-bottom: 10px;
}
.markdown code {
  background-color: black;
  color: white;
  font-family: 'JetBrains Mono', monospace;
  font-size: inherit;
  font-weight: inherit;
  padding: 5px;
}
.markdown code.inline {
  padding-top: 0;
  padding-bottom: 0;
}
.markdown .title {
  color: white;
  margin-top: 16px;
  line-height: 1.25;
  margin-bottom: 8px;
}
.markdown strong {
  color: white;
}
.markdown a {
  color: #32afff;
}
.markdown ul {
  list-style-type: disc;
  list-style-position: outside;
  margin-left: 16px;
}
.markdown ol {
  list-style-position: outside;
  margin-left: 19px;
}
.markdown blockquote {
  margin: 4px 10px 4px 10px;
  border-radius: 3px;
  background-color: #444;
  padding: 2px 4px 2px 6px;
}
.markdown pre {
  background-color: inherit;
  margin: 4px 10px 4px 10px;
  padding: 2px 4px 2px 6px;
}
.markdown .title.is-1 {
  font-size: 32px;
  border-bottom: 1px solid #777;
  padding-bottom: 6px;
}
.markdown .title.is-2 {
  font-size: 24px;
  border-bottom: 1px solid #777;
  padding-bottom: 6px;
}
.markdown .title.is-3 {
  font-size: 20px;
}
.markdown .title.is-4 {
  font-size: 16px;
}
.markdown .title.is-5 {
  font-size: 14px;
}
.markdown .title.is-6 {
  font-size: 14px;
}
.markdown > *:first-child {
  margin-top: 0 !important;
}
.markdown-renderer .markdown-error {
  color: #cc0000;
  font-size: 14px;
  padding: 5px;
}
.markdown-renderer .markdown-scroller {
  overflow: auto;
  display: flex;
  flex-diretion: row;
}
.markdown-renderer .markdown {
  padding: 5px;
  line-height: 1.5;
  width: min-content;
}
.markdown-renderer .markdown blockquote {
  background-color: #222;
}
.markdown-renderer .markdown code {
  background-color: #222;
  font-size: 14px;
}
.markdown-renderer .markdown pre {
  background-color: #222;
  margin: 2px 10px 6px 10px;
  padding: 4px 4px 4px 6px;
}
.copied-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  opacity: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: inherit;
  animation-name: fade-in-out;
  animation-duration: 0.3s;
}
body.prompt-webshare #main {
  display: flex;
  flex-direction: column;
  color: white;
}
body.prompt-webshare #main .logo-header {
  display: flex;
  flex-direction: row;
  padding: 10px;
  border-bottom: 1px solid #777;
  align-items: center;
  flex-shrink: 0;
}
body.prompt-webshare #main .logo-header .logo-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 32px;
  font-weight: inherit;
}
body.prompt-webshare #main .logo-header .logo-text a {
  color: #00b10a;
}
body.prompt-webshare #main .logo-header .screen-name {
  color: white;
  font-family: 'JetBrains Mono', monospace;
  font-size: 24px;
  font-weight: inherit;
  margin-left: 20px;
}
body.prompt-webshare #main .logo-header .download-button {
  margin-right: 20px;
}
body.prompt-webshare #main .webshare-controls {
  display: flex;
  flex-direction: row;
  flex-shrink: 0;
  height: 40px;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  background-color: #001801;
  color: white;
}
body.prompt-webshare #main .webshare-controls .screen-sharename {
  font-weight: bold;
}
body.prompt-webshare #main .webshare-controls .sync-control {
  display: flex;
  flex-direction: row;
  color: #d3d7cf;
  font-size: 13px;
  align-items: center;
}
body.prompt-webshare #main .webshare-controls .sync-control div:first-child {
  margin-right: 5px;
}
body.prompt-webshare #main .prompt-content {
  flex-grow: 1;
  padding: 10px 0;
  display: flex;
  flex-direction: row;
  overflow: hidden;
}
body.prompt-webshare #main .prompt-content .web-screen-view {
  height: 100%;
  width: 100%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
body.prompt-webshare #main .prompt-content .web-screen-view .lines {
  height: 100%;
  flex-grow: 1;
  padding-top: 0;
}
body.prompt-webshare #main .prompt-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #aaa;
  border-top: 1px solid #777;
  height: 50px;
  padding-left: 20px;
  padding-right: 20px;
  flex-shrink: 0;
}
body.prompt-webshare #main .prompt-footer .footer-copy {
  font-size: 12px;
}
body.prompt-webshare #main .prompt-footer a {
  display: block;
}
body.prompt-webshare #main #app {
  color: white;
}
body.prompt-webshare #main .lines .line-sep {
  margin-left: 0px;
  margin-right: 10px;
}
body.prompt-webshare #main .lines .line.line-cmd .line-icon.copy-icon {
  color: #d3d7cf;
  font-size: 18px;
}
body.prompt-webshare #main .lines .line.line-cmd .line-icon.copy-icon:hover {
  color: #ffffff;
}
body.prompt-webshare #main .lines .line.line-cmd .copied-indicator {
  z-index: 10;
}
a.a-block {
  display: block;
}

