.api-keys > :not(:last-child) {
  margin-bottom: 8px;
}

.api-keys .api-keys .loading {
  width: 32px;
  height: 32px;
  flex-grow: 0;
  align-self: center;
}

.api-keys .error-container {
  background: #ffcdd2;
  padding: 16px;
  border-radius: 8px;
}

.api-keys .api-keys-list {
  padding: 8px 0;
}

.api-keys .api-keys-list > :not(:last-child) {
  margin-bottom: 8px;
}

.api-keys .api-key-list-item {
  display: flex;
  align-items: baseline;
  min-height: 40px;
}

.api-keys .api-key-list-item button {
  flex-shrink: 0;
}

.api-keys .api-key-label,
.api-keys .api-key-capabilities {
  display: flex;
  align-self: stretch;
  align-items: center;
}

.api-keys .api-key-label {
  font-weight: 600;
}

.api-keys .api-key-capabilities {
  white-space: nowrap;
  overflow-x: hidden;
  width: 0;
  max-width: 192px;
  flex-basis: 192px;
  flex-shrink: 0;
}

.api-keys .untitled-key {
  color: #757575;
}

.api-keys .api-key-label,
.api-keys .api-key-value {
  width: 0;
  display: flex;
}

.api-keys .api-key-label {
  flex-basis: 224px;
  flex-grow: 1;
  flex-shrink: 1;
}

.api-keys .api-key-value {
  box-sizing: border-box;
  width: fit-content;
  flex-shrink: 0;
}

.api-keys .api-key-label > span {
  flex-grow: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: left;
  overflow-x: hidden;
}

.api-keys .api-key-value {
  font-family: monospace;
  font-size: 12px;
  background: #eee;
  border-radius: 8px;
  padding-left: 16px;
  padding-right: 4px;
  align-self: stretch;
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow-x: hidden;
}

.api-keys .api-key-value .display-value {
  margin-right: 4px;
}

.api-keys .api-key-value button {
  width: 32px;
  height: 32px;
  border-color: transparent;
  min-height: initial;
}

.api-keys .api-key-label svg,
.api-keys .api-key-value svg {
  width: 16px;
  height: 16px;
}

.api-keys .api-key-label svg {
  margin-right: 8px;
}

.api-keys .api-key-label svg {
  margin-right: 0px;
}

.api-keys .api-key-list-item {
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
  max-width: 816px;
}

.api-keys .api-key-list-item > :not(:last-child) {
  margin-right: 8px;
}

.api-keys-form .field-container {
  display: flex;
  flex-direction: column;
}

.api-keys-form .field-container:not(:last-child) {
  margin-bottom: 16px;
}

.api-keys-form .field-container > :not(:last-child) {
  margin-bottom: 4px;
}

.api-keys-form .checkbox-row {
  display: flex;
  align-items: center;
}

.api-keys-form .field-description {
  color: #444;
}

.api-keys-form label {
  user-select: none;
}

.api-keys-form input[type="checkbox"],
.api-keys-form input[type="radio"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  user-select: none;
  margin-right: 8px;
}

.api-keys-delete-modal .delete-modal-key-label {
  font-weight: 700;
}

.api-keys-delete-modal .delete-modal-key-value {
  font-family: monospace;
  font-size: 15px;
  background: #eee;
  padding: 4px 8px;
  border-radius: 4px;
}

.api-keys .no-api-keys-message {
  background: #e1f5fe;
  padding: 16px;
  border-radius: 8px;
}

.audit-logs-page .popup-wrapper {
  position: relative;
  width: fit-content;
  margin-bottom: 10px;
}

.audit-logs {
  margin-top: 32px;
}

.audit-logs .user div,
.audit-logs .resource div {
  margin-bottom: 8px;
}

.audit-logs .request pre {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-all;
}

.audit-logs .icon-text-button > :not(:last-child) {
  margin-right: 8px;
}

.audit-logs .empty-state {
  margin-top: 16px;
}

.audit-logs .audit-logs-table {
  display: grid;
  grid-template-columns:
    minmax(100px, max-content) /*timestamp*/
    minmax(100px, max-content) /*user*/
    minmax(100px, max-content) /*resource*/
    minmax(100px, max-content) /*method*/
    minmax(300px, max-content) /*request*/;
  max-width: fit-content;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  background: #eee;
  gap: 1px;
}

.audit-logs :is(.audit-logs-header, .audit-log-entry) {
  display: contents;
}

.audit-logs :is(.audit-logs-header, .audit-log-entry) > * {
  padding: 8px;
  box-sizing: border-box;
}

.audit-logs .audit-logs-header > * {
  background: #fafafa;
  white-space: nowrap;
}

.audit-logs .audit-log-entry > * {
  background: white;
}

.cli-login {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.cli-login .card {
  flex-grow: 1;
  max-width: 600px;
}

.cli-login .explanation {
  font-size: 16px;
}

.cli-login .details.details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  word-break: initial;
}

.cli-login .controls {
  display: flex;
  gap: 8px;
}

.kms-form .kms-config-row {
  display: flex;
  margin-top: 20px;
  margin-bottom: 16px;
}

.kms-form .kms-title {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.kms-form input[type="radio"] {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.kms-form input[type="text"] {
  width: 300px;
  height: 40px;
  padding: 16px;
}

.kms-form input[type="text"].aws-key-arn {
  width: 700px;
}

.kms-form .kms-fields {
  margin-top: 20px;
}

.kms-form .field-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.kms-form .field-label {
  margin-bottom: 8px;
}

.kms-form .form-error {
  margin-top: 16px;
  color: #f44336;
}

.kms-form .kms-tabs {
  --border: 1px solid #9e9e9e;

  display: flex;
  flex-direction: row;
  width: fit-content;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border: var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 36px;
}

.kms-form .kms-tabs .kms-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 100ms ease-out;
}

.kms-form .kms-tabs > :not(:last-child) {
  border-right: var(--border);
}

.kms-form .kms-tabs .kms-tab::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: #009688;

  transform-origin: left;
  transform: scaleX(0);
  transition: 100ms ease-out;
}

.kms-form .kms-tabs .kms-tab:hover {
  cursor: pointer;
}

.kms-form .kms-tabs .kms-tab:not(.active-tab):hover {
  background: #f5f5f5;
}

.kms-form .kms-tabs .kms-tab.active-tab::before {
  transform: initial;
}

.kms-form .kms-tabs .kms-tab.active-tab {
  background: #f1f8e9;
  color: #004d40;
}

.history a.text-link {
  text-decoration: underline;
}

.history .top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 8px;
  --gap: 8px;
  margin-top: calc(-1 * var(--gap));
  margin-right: calc(-1 * var(--gap));
}

.history .top-bar > * {
  margin-right: var(--gap);
  margin-top: var(--gap);
}

.history .breadcrumbs {
  margin-bottom: 0;
}

.history .details.loading-details {
  display: flex;
  margin-top: 16px;
  gap: 8px;
}

.history .actions {
  margin-top: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.history .actions button {
  display: flex;
  gap: 8px;
  border-radius: 8px;
  border: 1px solid #eee;
  padding: 8px 16px;
  background: transparent;
  cursor: pointer;
  align-items: center;
}

.history .actions svg {
  color: #aaa;
  width: 16px;
  height: 16px;
}

.ip-rules > :not(:last-child) {
  margin-bottom: 8px;
}

.ip-rules .ip-rules-list {
  padding: 8px 0;
}

.ip-rules .ip-rules-list > :not(:last-child) {
  margin-bottom: 8px;
}

.ip-rules .ip-rules-list-item {
  display: flex;
  align-items: baseline;
  min-height: 40px;
}

.ip-rules .ip-rules-list-item button {
  flex-shrink: 0;
}

.ip-rules .ip-rule-cidr,
.ip-rules .ip-rule-description {
  display: flex;
  align-self: stretch;
  align-items: center;
}

.ip-rules .ip-rule-cidr,
.ip-rules .ip-rule-description {
  display: flex;
}

.ip-rules .ip-rule-cidr {
  width: 200px;
}

.ip-rules .ip-rule-description {
  width: 400px;
}

.ip-rules .ip-rules-list-item {
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
  max-width: 816px;
}

.ip-rules .ip-rules-list-item > :not(:last-child) {
  margin-right: 8px;
}

.ip-rule-form .form-error {
  margin-bottom: 16px;
  color: #f44336;
}

.ip-rule-form .field-container {
  display: flex;
  flex-direction: column;
}

.ip-rule-form label,
.ip-rule-form input {
  margin-bottom: 8px;
}

.ip-rule-delete-modal .delete-modal-rule {
  font-weight: bold;
}

.ip-rules .enforcement {
  display: flex;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding-top: 16px;
  padding-bottom: 16px;
  align-items: center;
}

.ip-rules .enforcement-state {
  width: 600px;
}

.ip-rules .ip-rules-table {
  margin-top: 40px;
}

.ip-rules .bulk-add-button {
  margin-left: 16px;
}

.ip-rule-bulk-add-modal .ip-rule-bulk-add-entry,
.ip-rule-bulk-add-modal .ip-rule-bulk-add-error {
  width: 580px;
  height: 400px;
}

.ip-rule-bulk-add-modal .ip-rule-bulk-add-instructions {
  margin-bottom: 16px;
}

.organization-page {
  margin-top: 32px;
}

.organization-page-title {
  font-size: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #eee;
  font-weight: 700;
  margin-bottom: 32px;
}

.organization-page-link {
  font-weight: 600;
  text-decoration: underline;
}

.organization-page .banner {
  margin: 16px 0;
}

.organization-form {
  max-width: 600px;
}

.organization-form .bold {
  font-weight: 600;
}

.organization-form .form-row {
  margin-bottom: 16px;
  display: flex;
}

.organization-form .form-row.stacked {
  flex-direction: column;
}

.organization-form .form-row.stacked > :not(:last-child) {
  margin-bottom: 8px;
}

.organization-form .form-row:not(.stacked) {
  align-items: center;
}

.organization-form .form-row:not(.stacked) > :not(:last-child) {
  margin-right: 8px;
}

.organization-form input[type="text"] {
  display: block;
  width: 400px;
  max-width: 100%;
  height: 40px;
  font-family: inherit;
  font-size: inherit;
  padding: 16px;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid gray;
  border-radius: 2px;
}

.organization-form .input-label-subtitle {
  font-size: 14px;
  color: #9e9e9e;
}

.organization-form .url-input-row {
  display: flex;
  align-items: center;
  align-self: start;
  background: #f5f5f5;
  width: 400px;
  box-sizing: border-box;
}

.organization-form .url-input-row span {
  flex-shrink: 0;
  padding: 8px;
}

.organization-form .url-input-row input {
  width: 0;
  flex-grow: 1;
}

.organization-form .select-wrapper {
  align-self: start;
}

.organization-form input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  align-self: start;
  user-select: none;
}

.base-button.organization-form-submit-button,
.organization-join-page .yes-no-button,
.organization-join-page .already-joined .button {
  padding: 16px 32px;
}

.organization-form .form-error {
  margin-top: 16px;
  color: #f44336;
}

.organization-form .form-success-message {
  margin-top: 16px;
  color: #388e3c;
}

.organization-form .input-help-text,
.organization-form .url-preview {
  font-size: 14px;
  color: #333;
  margin-top: -8px;
}

.organization-details-title {
  margin-bottom: 16px;
}

.organization-edit-form .organization-form-submit-button {
  margin-bottom: 0;
}

.organization-invite-link-container {
  background: #eee;
  border-radius: 8px;
  padding: 16px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.organization-invite-link-container > :not(:last-child) {
  margin-right: 8px;
}

.organization-invite-link-container svg {
  width: 16px;
  height: 16px;
  margin-right: 16px;
}

.organization-invite-link-container .invite-link {
  color: #212121;
  font-weight: 600;
}

.organization-join-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 24px;
}

.organization-join-page .title {
  font-weight: 500;
  font-size: 36px;
  margin: 32px 0;
  text-align: center;
}

.organization-join-page .org-name {
  font-weight: 700;
}

.organization-join-page .yes-no-buttons {
  display: flex;
  align-items: center;
}

.organization-join-page .yes-no-buttons > :not(:last-child) {
  margin-right: 16px;
}

.organization-join-page .illustration {
  width: 128px;
  /* Trim off whitespace for optical alignment. */
  margin-bottom: -24px;
}

.organization-join-page .submit-result,
.organization-join-page .submit-result {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 640px;
}

.organization-join-page .submit-result :not(:last-child) {
  margin-bottom: 32px;
}

.org-join-requests .org-join-requests-header {
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 18px;
}

.org-join-requests {
  background: #e3f2fd;
  padding: 32px 0 38px 0;
  border-radius: 8px;
}

.org-join-requests.with-margin {
  margin: 16px;
}

.org-join-requests .org-join-requests-grid {
  display: grid;
  grid-template-columns: max-content max-content;
  gap: 32px;
  overflow-x: auto;
  align-items: center;
}

.org-join-requests .account {
  font-weight: 600;
}

.org-join-requests .name {
  opacity: 0.7;
  font-size: 14px;
}

.org-join-requests .approve-reject-buttons {
  display: flex;
  flex-wrap: nowrap;
}

.org-join-requests .approve-reject-buttons > :not(:last-child) {
  margin-right: 16px;
}

.org-join-requests .org-join-request-outcome {
  display: flex;
  align-items: center;
}

.org-join-requests .org-join-request-outcome > :not(:last-child) {
  margin-right: 8px;
}

.org-members {
  margin-top: 16px;
  max-width: 600px;
}

.org-members .org-members-list-controls {
  display: flex;
  align-items: center;
  padding: 8px 0px;
  gap: 8px;
  min-height: 40px;
}

.org-members .select-all-button {
  margin-right: auto;
}

.org-members .org-members-list-item {
  user-select: none;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding: 8px 16px;
  min-height: 48px;
  box-sizing: border-box;
  gap: 8px;
  transition: background-color 100ms ease-out;
}

.org-members .org-members-list-item.editable {
  cursor: pointer;
}

.org-members .org-members-list-item.editable:hover {
  background-color: #fafafa;
}

.org-members .org-members-list-item:first-child {
  border-top: 1px solid #eee;
}

.org-members .org-members-list-item.selected {
  background-color: #bbdefb;
}

.org-members .org-member-name {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.org-members .org-member-name svg {
  width: 16px;
  height: 16px;
}

.org-members .org-member-role {
  margin-left: auto;
  padding: 4px 12px;
  border-radius: 13px;
  border: 1px solid transparent;
}

.org-members-edit-modal .select-role-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.org-members-edit-modal .modal-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.org-members-edit-modal .role-description {
  font-size: 14px;
  color: #616161;
  min-height: 40px;
}

.org-members-edit-modal .role-capabilities {
  border-collapse: collapse;
  font-size: 14px;
  width: 100%;
  margin-top: 8px;
}

.org-members-edit-modal .role-capabilities .icon {
  width: 20px;
}

.org-members-edit-modal .role-capabilities th {
  text-align: left;
}

.org-members-edit-modal .role-capabilities :is(td, th) {
  padding: 4px;
}

.org-members-edit-modal .role-capabilities tr {
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
}

.org-members-edit-modal .affected-users-list {
  max-height: 320px;
  overflow-y: auto;
  border: 1px solid #eee;
  border-radius: 8px;
}

.org-members-edit-modal .affected-users-list-item {
  display: flex;
  padding: 8px;
  gap: 8px;
  align-items: center;
}

.org-members-edit-modal .affected-users-list-item svg {
  width: 16px;
  height: 16px;
}

.org-members-edit-modal .affected-users-list > :not(:last-child) {
  border-bottom: 1px solid #eee;
}

.org-members-edit-modal .editing-self-warning {
  background: #ffcdd2;
  border-radius: 8px;
  padding: 16px;
}

.org-members-edit-modal .flagged-self-user {
  font-weight: 600;
  color: #e53935;
}

.org-picker-container .org-picker {
  display: flex;
  flex-direction: column;
}

.org-picker-container .org-picker-header {
  font-size: 15px;
  text-transform: uppercase;
  opacity: 0.7;
  font-weight: 600;
  padding-bottom: 8px;
}

.org-picker-container .org-list {
  display: flex;
  flex-direction: column;
}

.org-picker-container hr {
  margin: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 8px;
  margin-bottom: 8px;
}

.org-picker-container .org-picker-item {
  white-space: nowrap;
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
}

.org-picker-container .org-picker-item-label {
  text-overflow: ellipsis;
  display: block;
  overflow-x: hidden;
  white-space: nowrap;
}

.org-picker-container:not(.expanded) {
  background-color: transparent;
}

.org-picker-container .org-picker-expanded-profile {
  margin-bottom: 0;
}

.org-picker-container .org-picker-profile,
.org-picker-container .org-picker-expanded-profile {
  padding: 24px var(--sidebar-padding);
}

.org-picker-container .org-picker-expanded-profile {
  display: flex;
  flex-direction: column;
}

.org-picker-container .org-picker-expanded-profile {
  margin-bottom: -16px;
}

.org-picker-container .org-picker-profile {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  transition: 300ms ease-in-out;
}

.org-picker-container .org-picker-profile-photo {
  height: 40px;
  width: 40px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.95);
}

.org-picker-container .org-picker-profile-name {
  margin-left: 16px;
  flex-grow: 1;
  overflow: hidden;
  font-weight: 600;
  font-size: 16px;
}

.org-picker-container .org-picker-profile-user {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.org-picker-container .org-picker-profile-org {
  opacity: 0.5;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.org-picker-container .org-picker-profile-arrow {
  stroke: #bdbdbd;
  margin-left: 4px;
  margin-right: -4px;
}

.org-picker-container.org-picker-container.org-picker-container {
  padding: 0;
}

.org-picker-container .default-photo {
  padding: 8px;
  box-sizing: border-box;
}

.org-picker-container .org-picker-item {
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding: 8px;
}

.org-picker-container .org-picker-item-text {
  opacity: 1;
  transition: 300ms ease-in-out;
}

.org-picker-container .org-picker-item svg {
  padding-right: 16px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.org-picker-container .login-button {
  border: 0;
  background-color: transparent;
  font-weight: 600;
  cursor: pointer;
}

/* Default */

.org-picker-container:not(.floating) .org-picker-item {
  color: #bdbdbd;
}

.org-picker-container:not(.floating) .org-picker-item.admin-only {
  color: #ffc107;
}

.org-picker-container:not(.floating) .org-picker-item svg {
  stroke: white;
  opacity: 0.5;
}

.org-picker-container:not(.floating):hover,
.org-picker-container:not(.floating).expanded {
  background-color: #424242;
}

.org-picker-container:not(.floating) .org-picker-item:hover,
.org-picker-container:not(.floating) .org-picker-item.selected {
  color: white;
}

.org-picker-container:not(.floating) .org-picker-item:hover svg,
.org-picker-container:not(.floating) .org-picker-item.selected svg {
  opacity: 1;
}

@media (max-width: 800px) {
  .org-picker-container:not(.floating) .org-picker-profile {
    position: absolute;
    top: 0;
    right: 0;
    padding: 24px;
  }
}

/* Floating */

.org-picker-container.floating {
  position: absolute;
  top: 32px;
  right: 32px;
  display: flex;
  flex-direction: column-reverse;
  z-index: 1;
}

.org-picker-container.floating .org-picker-item {
  color: #000;
  opacity: 0.7;
}

.org-picker-container.floating .org-picker-item svg {
  stroke: #000;
  opacity: 0.7;
}

.org-picker-container.floating .org-picker-item:hover,
.org-picker-container.floating .org-picker-item:hover svg,
.org-picker-container.floating .org-picker-item.selected,
.org-picker-container.floating .org-picker-item.selected svg {
  opacity: 1;
}

.org-picker-container.floating .org-picker-profile {
  justify-content: flex-end;
}

.org-picker-container.floating .org-picker-profile-name {
  flex-grow: 0;
}

.org-picker-container.floating .org-picker-profile-arrow {
  display: none;
}

.org-picker-container.floating .default-photo {
  background-color: #eeeeee;
}

.org-picker-container.floating .org-picker-expanded-profile {
  margin-top: 8px;
  border-radius: 8px;
  padding: 16px;
  border: 2px solid #000;
  background-color: #fff;
}

.org-picker-container.floating hr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 1200px) {
  .org-picker-container.floating .org-picker-profile-name {
    display: none;
  }
}

/* Inline */

.org-picker-container.floating.inline {
  position: relative;
  top: initial;
  right: initial;
  z-index: 6;
}
.org-picker-container.floating.inline .org-picker-profile-name {
  display: none;
}

.org-picker-container.floating.inline .org-picker-expanded-profile {
  position: absolute;
  top: 36px;
  right: 0;
}

.settings .title.settings-title {
  margin-bottom: 0;
}

.settings-section {
  margin-top: 32px;
  border-top: 1px solid #eee;
  padding-top: 32px;
}

.settings-section-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}

.settings-section-subtitle {
  margin-bottom: 16px;
}

.settings-option-title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 1em;
}

.settings-option-description {
  margin-bottom: 16px;
}

.settings .settings-button,
.settings .settings-link-button a {
  padding: 16px 32px;
}

.settings .settings-link-button {
  padding: 0;
}

.settings .settings-button.success {
  background-color: #4caf50;
  cursor: inherit;
}

.settings .organization-form .settings-option-title {
  margin-top: 0;
}

.settings .settings-layout {
  display: flex;
  padding: 32px 0;
}

.github-account-link .deprecation-notice {
  margin: 16px 0;
}

.github-account-link {
  max-width: 600px;
}

.github-account-link .linked-github-account-row {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid #eee;
  padding: 16px;
  border-radius: 8px;
}

.github-account-link .linked-github-account-row .unlink-button {
  margin-left: auto;
}

.github-account-link-delete-modal .checkbox-input {
  margin-top: 3px;
}

.github-account-link .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.github-account-link .controls-row {
  display: flex;
  gap: 16px;
  align-items: center;
}

.github-settings-title {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.github-hovercard {
  margin: 12px;
  background: rgba(255, 255, 255, 1);
  border-radius: 8px;
  padding: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  font-size: 14px;
  backdrop-filter: blur(3px);
  display: flex;
}

.setup-button-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.setup-button-container .left-aligned-button {
  align-self: flex-start;
}

/* Large screen */
@media (min-width: 1281px) {
  .settings .settings-tabs {
    margin-right: 32px;
    width: 200px;
  }
}

.settings .github-app-installations {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  border: 1px solid #eee;
  margin-top: 16px;
}

.settings .github-app-installation {
  padding: 16px;
  box-sizing: border-box;
  min-height: 64px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: space-between;
}

.settings .github-app-installation:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.settings .github-app-installation .installation-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}

.settings .github-app-installation .installation-owner {
  margin-right: auto;
}

.settings .github-app-installation .installation-settings {
  display: flex;
  flex-direction: column;
}

.settings .github-app-installation .installation-settings .input-row .input-label {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.settings .github-app-installation .installation-settings .input-row .input-label > * {
  margin-right: 8px;
}

.settings .github-app-installation .installation-settings .input-description {
  font-size: 14px;
  color: #424242;
  margin-top: 4px;
}

/* Medium to small screen */
@media (max-width: 1280px) {
  .settings .settings-layout {
    flex-direction: column;
  }

  .settings .settings-tabs {
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid #eee;
  }

  .settings .settings-tab-group {
    display: flex;
  }
}

.settings .settings-content {
  width: 800px;
  max-width: 100%;
}

.settings .settings-tab-group {
  --border: 1px solid #9e9e9e;

  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border: var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.settings .settings-tab-group:not(:last-child) {
  margin-bottom: 16px;
}

.settings .settings-tab-group > :not(:last-child) {
  border-bottom: var(--border);
}

.settings .settings-tab-group-header {
  margin-bottom: 8px;
}

.settings .settings-tab-group-title {
  font-weight: 600;
}

.settings .settings-tab-group-subtitle {
  color: #616161;
  white-space: nowrap;
  overflow-x: hidden;
  text-overflow: ellipsis;
}

.settings .settings-tab-group-title:not(:first-child) {
  margin-top: 16px;
}

.settings .settings-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 100ms ease-out;
}

.settings .settings-tab .icon {
  width: 20px;
  height: 20px;
}

.settings .settings-tab:hover {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.settings .settings-tab:not(.active-tab):hover {
  background: #f5f5f5;
}

.settings .settings-tab:active,
.settings .settings-tab.active-tab {
  box-shadow: 0 1px 2px inset rgba(0, 0, 0, 0.2);
}

.settings .settings-tab.active-tab {
  background: #e0f2f1;
  color: #004d40;
}

.settings .settings-tab::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: #009688;

  transform-origin: left;
  transform: scaleX(0);
  transition: 100ms ease-out;
}

.settings .settings-tab.active-tab::before {
  transform: initial;
}

.settings .settings-tab:first-child {
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
}

.settings .settings-tab:last-child {
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
}

.settings .banner-content > p:first-child {
  margin-top: 0;
}

.settings .banner-content > p:last-child {
  margin-bottom: 0;
}

.settings .settings-option-title:not(:first-child) {
  margin-top: 32px;
}

.quota-column-layout {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quota-namespaces,
.quota-bucket {
  max-width: 600px;
}

.quota .quota-breadcrumbs {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.quota .quota-breadcrumb {
  display: flex;
  gap: 8px;
}

.quota .quota-breadcrumb:not(:last-child)::after {
  display: block;
  content: "›";
}

.quota-namespaces .ns-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #eee;
  overflow: hidden;
}

.quota-namespaces .ns-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-bottom: 1px solid #eee;
}

.quota-namespaces .ns-item .name {
  margin-right: auto;
}

.quota .bucket-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}

.quota .bucket-form .labeled-input {
  display: flex;
  flex-direction: column;
}

.quota input:not(.invalid) + .validation-message {
  display: none;
}

.quota .validation-message {
  color: #e53935;
}

.quota-namespace .bucket {
  padding: 8px 16px;
  border: 1px solid #eee;
  border-radius: 8px;
}

.quota-namespace .bucket-info {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid #eee;
  padding-bottom: 8px;
}

.quota-namespace .bucket-details {
  margin-right: auto;
}

.quota-namespace .bucket-empty-message {
  padding: 8px 0;
}

.quota-namespace .bucket-member-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.quota-namespace .bucket-member-key {
  margin-right: auto;
}

.quota-namespace .bucket-empty-message {
  color: #757575;
}

.create-repo-page {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    Segoe UI,
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    Fira Sans,
    Droid Sans,
    Helvetica Neue,
    sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 100%;
}

.create-repo-page .card {
  box-shadow:
    0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid hsl(240 5.9% 90%);
  border-radius: 16px;
}

.create-repo-page .repo-block {
  flex-direction: column;
  width: 90vw;
  max-width: 512px;
  box-sizing: border-box;
  margin: 24px 0 0 0;
}

.create-repo-page .repo-create {
  gap: 16px;
}

.create-repo-page .repo-picker {
  display: flex;
}

.create-repo-page .login-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
}

.create-repo-page .repo-picker {
  width: 100%;
  gap: 16px;
}

.create-repo-page .repo-picker > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.create-repo-page .repo-picker > div:last-of-type {
  flex-grow: 1;
}

.create-repo-page .select-wrapper {
  width: 100%;
}

.create-repo-page .repo-picker input,
.create-repo-page .repo-picker select,
.create-repo-page .repo-picker button,
.create-repo-page .deployment-config input {
  padding: 16px 12px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #aaa;
  font-family: inherit;
  font-weight: inherit;
  font-size: 1.2em;
  height: initial;
}

.create-repo-page .create-button,
.create-repo-page .permissions-button,
.create-repo-page .view-button,
.create-repo-page .code-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 32px;
  font-weight: 600;
  border: 0;
  border-radius: 16px;
  font-size: 18px;
  cursor: pointer;
  border: 3px solid #212121;
  background-color: #fff;
  color: #212121;
  transition: 300ms ease-in-out;
  box-sizing: border-box;
  gap: 12px;
}

.create-repo-page .view-buttons .view-button,
.create-repo-page .view-buttons .code-button {
  width: initial;
  flex-grow: 1;
}

.create-repo-page .view-buttons {
  width: 100%;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.create-repo-page .permissions-button {
  margin-bottom: 0;
}

.create-repo-page .view-button {
  background-color: #fff;
  color: #000;
  border-color: rgba(0, 0, 0, 0.1);
}

.create-repo-page .code-button {
  background-color: #4caf50;
  border: 3px solid rgba(255, 255, 255, 0.9);
  color: #fff;
}

.create-repo-page .create-button:disabled {
  opacity: 0.5;
  cursor: default;
}

.create-repo-page .repo-form {
  display: flex;
  flex-direction: column;
  margin-bottom: 8px;
}

.create-repo-page .repo-form-header {
  display: flex;
  gap: 8px;
  justify-content: space-between;
}

.create-repo-page .repo-form-header input {
  width: initial;
}

.create-repo-page .repo-private {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.create-repo-page .repo-title {
  font-size: 2em;
  border-bottom: 1px solid #eee;
  width: 100%;
  padding-bottom: 16px;
  margin-bottom: 8px;
  font-weight: 700;
}

.create-repo-page .login-buttons .repo-title {
  margin-bottom: 24px;
}

.create-repo-page .repo-block.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.create-repo-page .repo-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.create-repo-page .running-actions {
  font-weight: 600;
}

.create-repo-page .running-actions a {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.create-repo-page .running-actions svg {
  margin-right: 8px;
}

.create-repo-page .deployment-configs {
  width: 100%;
}

.create-repo-page .deployment-config {
  align-items: center;
  margin-bottom: 16px;
}

.create-repo-page .deployment-config div {
}

.create-repo-page .deployment-config div:first-of-type {
  font-family: monospace;
  font-weight: 700;
  margin-bottom: 8px;
}

.create-repo-page .template {
  transition: all 100ms ease-in-out;
  display: flex;
  box-sizing: border-box;
  overflow: hidden;
  width: 100%;
}

.create-repo-page .template-block {
  padding-right: 0 !important;
}

.create-repo-page .template-metadata {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  flex-grow: 1;
  flex-shrink: 0;
  width: calc(100% - 100px);
  overflow: hidden;
  padding-right: 8px;
}

.create-repo-page .template-name {
  font-weight: 800;
  font-size: 2.5em;
  line-height: 1.2em;
  max-height: 2.4em;
  display: block;
  overflow: hidden;
}

.create-repo-page .template-props {
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  max-width: 100%;
  width: 100%;
}

.create-repo-page .template-repo {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-weight: 500;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 100%;
}

.create-repo-page .template-repo-name {
  display: block;
  text-overflow: ellipsis;
  max-width: 100%;
  overflow: hidden;
}

.create-repo-page .template-repo svg {
  flex-shrink: 0;
}

.create-repo-page .template-image {
  width: 100px;
  flex-shrink: 0;
  object-fit: cover;
  object-position: 0 50%;
}

.gcp-picker-footer,
.gcp-picker-empty-state {
  cursor: default;
}

.gcp-picker-footer {
  border-top: 1px solid #eee;
  padding-top: 16px;
  margin-top: 10px;
}

.gcp-picker-footer a,
.gcp-picker-empty-state a {
  font-weight: bold;
  text-decoration: underline;
  cursor: pointer;
}

.gcp-picker-footer button,
.gcp-picker-empty-state button {
  border: 0;
  background: #eee;
  font-family: inherit;
  font-size: inherit;
  padding: 12px;
  width: 100%;
  cursor: pointer;
  border-radius: 8px;
  font-weight: 600;
}

@media (max-width: 540px) {
  .create-repo-page .repo-picker {
    flex-direction: column;
  }
}

.secrets,
.delete-secret-dialog {
  --secret-color: #00796b;
}

.secrets-list .secrets-table {
  padding: 8px 0;
}

.secrets-list .lock-icon {
  width: 20px;
  height: 20px;
  stroke: var(--secret-color);
}

.secrets-list .secret-name {
  color: var(--secret-color);
}

.secrets-list .secrets-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.secrets-list .secrets-row:first-child {
  border-top: 1px solid #eee;
}

.secrets-list .secrets-row > * {
  flex-shrink: 0;
}

.secrets-list .secret-name {
  flex-shrink: 1;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.secrets-list .edit-button {
  margin-left: auto;
}

.delete-secret-dialog .secret-name {
  color: var(--secret-color);
}

.update-secret {
  max-width: 600px;
}

.update-secret .secrets-form label {
  font-weight: 600;
}

.update-secret .form-field-group {
  display: flex;
  flex-direction: column;
}

.update-secret .secrets-form > * {
  margin-bottom: 16px;
}

.update-secret :is(input, textarea) {
  margin-top: 8px;
  font-family: var(--code-font);
}

.update-secret .secrets-form textarea {
  min-height: 300px;
}

.update-secret .secret-name {
  color: var(--secret-color);
}

.update-secret .caption {
  color: #616161;
  font-size: 14px;
}

.update-secret .text-input {
  width: 100%;
}

.update-secret .secrets-breadcrumbs {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 18px;
  margin-bottom: 24px;
}

.update-secret .secrets-breadcrumb {
  display: flex;
  gap: 8px;
}

.update-secret .secrets-breadcrumb:not(:last-child)::after {
  display: block;
  content: "›";
}

.update-secret .secrets-breadcrumb:last-child {
  font-weight: 600;
}

.update-secret .submit-button {
  display: flex;
  gap: 8px;
}

/* WORKFLOWS PAGE */

.workflows-page .shelf .container {
  display: flex;
  align-items: center;
}

.workflows-page .shelf .title {
  margin-right: 16px;
}

.workflows-page .create-new-container {
  margin-left: auto;
}

.workflows-page .no-workflows-container {
  margin: 32px;
  display: flex;
}

.workflows-page .no-workflows-card {
  display: flex;
  flex-direction: column;
  align-items: center;

  border-radius: 8px;
  padding: 32px;
  max-width: 100%;
  width: 440px;
}

.workflows-page .zero-state-animation {
  max-width: 400px;
}

.workflows-page .no-workflows-card .details {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.workflows-page .no-workflows-card > :not(:last-child) {
  margin-bottom: 32px;
}

.workflows-page .no-workflows-card .details > :not(:last-child) {
  margin-bottom: 16px;
}

.workflows-page .buttons {
  display: flex;
}

.workflows-page .buttons > :not(:last-child) {
  margin-right: 8px;
}

.workflows-page .workflow-item {
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}

.workflows-page .workflow-item > :not(:last-child) {
  margin-right: 16px;
}

.workflows-page .workflow-name {
  font-size: 18px;
  font-weight: 600;
}

.workflows-page .workflow-description {
  font-size: 14px;
  color: #aaa;
}

.workflows-page .workflow-dropdown-menu {
  min-width: 180px;
}

.workflows-page .repo-url {
  background: #f8f8f8;
  border-radius: 4px;
  padding: 4px 8px;
}

.workflows-page .workflow-item-row {
  display: flex;
  align-items: center;
  width: 100%;
}

.workflows-page .workflow-item-row > :not(:last-child) {
  margin-right: 16px;
}

.workflows-page .workflow-item-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 40px;
}

.workflows-page .workflow-item-column > :not(:last-child) {
  margin-bottom: 8px;
}

.workflows-page .workflow-buttons-container {
  margin-left: auto;
}

.workflows-page .workflow-button-container {
  position: relative;
}

.workflows-page .run-workflow-button {
  display: flex;
  align-items: center;
  gap: 8px;
}

.workflows-page .history .card .title {
  font-size: 18px;
  margin-right: 8px;
}

.workflows-page .history .card .details {
  margin-top: 8px;
}

.workflows-page .run-results-title,
.workflows-page .history-title {
  font-size: 18px;
  font-weight: 700;
  margin-top: 24px;
}

.workflows-page .error-details {
  margin-top: 4px;
  font-size: 14px;
  color: #d32f2f;
}

.workflows-page .card .detail {
  margin-top: 0;
}

.workflows-page .upgrade-notice {
  margin-top: 12px;
  font-size: 12px;
  color: #757575;
  display: flex;
  gap: 4px;
}

.workflows-page .upgrade-notice .icon {
  width: 16px;
  height: 16px;
}

.workflows-page .workflow-item-row .git-merge-icon {
  width: 16px;
  height: 16px;
  align-self: center;
  margin-right: 8px;
}

.workflows-page .run-workflow-input {
  padding: 12px;
}

.workflows-page .run-workflow-input .title {
  font-weight: 600;
  font-size: 15px;
  background: white;
  padding: 4px;
}

.workflows-page .run-workflow-input button {
  margin-top: 8px;
}

.workflows-page .run-clean-container {
  display: flex;
  align-items: center;
  padding: 8px 0px;
}

.workflows-page .run-clean-container span {
  padding-left: 8px;
}

.action-error-hovercard {
  width: 30%;
  margin: 12px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  padding: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  font-size: 14px;
  backdrop-filter: blur(3px);
}

/* CREATE WORKFLOW PAGE */

.create-workflow-page .content {
  padding: 16px 0;
  max-width: 600px;
}

.create-workflow-page .workflow-form > :not(:last-child) {
  margin-bottom: 16px;
}

.create-workflow-page .form-row {
  display: flex;
  flex-direction: column;
}

.create-workflow-page .explanation {
  color: #555;
  font-size: 13px;
}

.create-workflow-page .error {
  color: #f44336;
}

.workflow-created-dialog .dialog-body > :not(:last-child) {
  margin-bottom: 16px;
}

.workflow-created-dialog input {
  width: 100%;
}

/* GITHUB IMPORT */

.workflows-github-import .content-container {
  width: 600px;
  max-width: 100%;
  padding-top: 32px;
}

.workflows-github-import .content-container > :not(:last-child) {
  margin-bottom: 8px;
}

.workflows-github-import .install-app-banner .banner-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.workflows-github-import .install-app-banner .base-button {
  align-self: start;
}

.workflows-github-import .repo-search {
  display: flex;
  gap: 8px;
}

.workflows-github-import .repo-search.repo-search {
  margin-bottom: 16px;
}

.workflows-github-import .repos-loading {
  margin-top: 16px;
}

.workflows-github-import .owner-picker {
  flex-shrink: 0;
  min-width: 180px;
  max-width: 260px;
}

.workflows-github-import .repo-list {
  margin-top: 16px;
}

.workflows-github-import .repo-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  min-height: 40px;
}

.workflows-github-import .repo-item > :not(:last-child) {
  margin-right: 8px;
}

.workflows-github-import .repo-owner-separator {
  color: #777;
  padding: 0 2px;
}

.workflows-github-import .repo-name {
  font-weight: 600;
}

.workflows-github-import .created-indicator,
.workflows-github-import .create-loading {
  text-align: center;
  flex-grow: initial;

  /* Match button sizing. */
  width: 64px;
  height: 40px;
  padding: 8px 0;
  box-sizing: border-box;
}

.workflows-github-import .show-more-button-container {
  display: flex;
  justify-content: flex-end;
}

.workflows-github-import .show-more-button > :not(:last-child) {
  margin-right: 8px;
}

.workflows-github-import .create-other-container {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

.workflows-github-import .create-other {
  display: flex;
  align-items: center;
  padding: 8px 0;
  font-weight: 600;
  font-size: 14px;
  opacity: 0.7;
  gap: 8px;
}

.workflows-github-import .create-other svg {
  width: 16px;
  height: 16px;
}

.workflows-github-import .create-other > :not(:last-child) {
  margin-right: 8px;
}

.workflows-github-import .create-other:hover {
  opacity: 1;
}

/* ANIMATION STUFF BELOW */

.workflows-page .no-workflows-card {
  animation-name: card-enter;
  animation-delay: 750ms;
  animation-duration: 1000ms;
  animation-fill-mode: forwards;
}

.workflows-page .zero-state-animation .wave {
  animation-name: anim-wave-stroke;
  animation-delay: 500ms;
  animation-duration: 2000ms;
  animation-timing-function: cubic-bezier(0.08, 0.14, 0.23, 0.97);
  animation-fill-mode: forwards;

  stroke-dashoffset: 1000;
  stroke-dasharray: 1000;
}

.workflows-page .zero-state-animation .character {
  animation-name: anim-pop-in, anim-blob-floaty;
  animation-delay: 500ms, 1000ms;
  animation-duration: 500ms, 2000ms;
  animation-timing-function: cubic-bezier(0.08, 0.14, 0.23, 0.97), ease-in-out;
  animation-fill-mode: forwards, forwards;
  animation-iteration-count: 1, infinite;
  animation-direction: normal, alternate;

  opacity: 0;
}

.workflows-page .zero-state-animation .code-icon {
  animation-duration: 500ms, 1900ms;
}

.workflows-page .zero-state-animation .git-blob,
.workflows-page .zero-state-animation .git-icon {
  animation-delay: 750ms, 1250ms;
  animation-duration: 500ms, 1800ms;
}
.workflows-page .zero-state-animation .git-icon {
  animation-duration: 500ms, 1700ms;
}

.workflows-page .zero-state-animation .bb-blob {
  animation-delay: 1000ms, 1500ms;
  animation-duration: 500ms, 2200ms;
}
.workflows-page .zero-state-animation .bb-icon {
  animation-duration: 500ms, 2100ms;
}

.workflows-page .no-workflows-card .details {
  animation-name: details-enter;
  animation-duration: 500ms;
  animation-delay: 1000ms;
  animation-fill-mode: forwards;

  opacity: 0;
}

@keyframes card-enter {
  from {
    box-shadow: none;
  }
  to {
    box-shadow:
      0 1px 3px rgba(0, 0, 0, 0.27),
      0 3px 12px rgba(0, 0, 0, 0.05);
  }
}

@keyframes anim-wave-stroke {
  to {
    stroke-dashoffset: 487;
  }
}

@keyframes anim-pop-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes anim-blob-floaty {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(4px);
  }
}

@keyframes details-enter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.workflows-page .workflow-history {
  padding-top: 16px;
  padding-bottom: 16px;
}

.workflows-page .inline-icon {
  position: relative;
  vertical-align: top;
  top: -2px;
}

.workflows-page .card.action-history-card {
  padding: 24px 32px;
  justify-content: space-between;
}

.workflows-page .card.action-history-card .title-section {
  flex: 0 0 200px;
}

.workflows-page .action-stat {
  display: inline-block;
}

.workflows-page .action-stat:not(:last-child) {
  margin-right: 24px;
}

.workflows-page .action-history-section {
  position: relative;
  top: 6px;
}

.workflows-page .action-stats-section {
  min-width: 300px;
}

.workflows-page .action-history-chart {
  margin: 2px 8px 0;
  min-width: 540px;
}

.workflows-page .action-history-explainer-text {
  position: absolute;
  top: -18px;
  color: #aaa;
  font-size: 12px;
  line-height: 18px;
}

.workflows-page .action-history-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 16px;
}

.workflows-page .action-history-bar-wrapper {
  display: inline-block;
  position: relative;
  height: 36px;
  width: 20px;
}

@media screen and (max-width: 1560px) {
  .workflows-page .action-history-bar {
    width: 8px;
  }

  .workflows-page .action-history-bar-wrapper {
    width: 10px;
  }

  .workflows-page .action-history-chart {
    min-width: 300px;
  }
}

@media screen and (max-width: 1220px) {
  .workflows-page .action-history-bar {
    width: 4px;
  }

  .workflows-page .action-history-bar-wrapper {
    width: 6px;
  }

  .workflows-page .action-history-chart {
    min-width: 180px;
  }
}

@media screen and (max-width: 1090px) {
  .workflows-page .action-history-chart {
    display: none;
  }

  .workflows-page .action-stats-section {
    min-width: auto;
  }
}

.workflows-page .action-history-bar.success {
  background-color: #8bc34a;
}

.workflows-page .action-history-bar.failure {
  background-color: #f44336;
}

.workflows-page .action-history-bar.in-progress {
  background-color: #03a9f4;
}

.workflows-page .action-history-bar.neutral {
  background-color: #aaa;
}

.workflows-page .action-history-bar.no-data {
  border-width: 0.25px;
  border-color: #aaa;
  border-style: dashed;
  box-sizing: border-box;
}

.workflows-page-action-history-tooltip {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 16px;
  box-shadow:
    0 3px 6px rgba(0, 0, 0, 0.16),
    0 3px 6px rgba(0, 0, 0, 0.23);
  pointer-events: none;
  z-index: 1;
}

.reviews {
  padding: 0;
  display: grid;
  width: 100%;
  overflow: hidden;
  grid-template-columns:
    max-content /* PR */
    max-content /* Author */
    max-content /* Status */
    max-content /* Updated */
    1fr /* Reviewers */
    max-content /* Size */
    2fr /* Description */;
}

.reviews .reviews-title {
  font-weight: 700;
  padding: 32px 0 8px 0;
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 8px;
}

.reviews .change-count {
  margin-left: 8px;
  font-weight: 500;
  font-size: 16px;
}

.reviews .reviews-title,
.reviews .empty-state {
  width: 100%;
  grid-column: 1 / -1;
  padding: 0 16px;
}

.reviews .pr {
  display: contents;
}

.reviews .pr-rows {
  display: contents;
}

.reviews .pr-rows .pr:nth-child(odd) > div {
  background-color: #f0f0f0;
}

.reviews .pr-header {
  color: #666;
  display: contents;
}

.reviews .pr > div {
  padding: 6px 8px;
}

.reviews .pr > div:first-child {
  padding-left: 16px;
}

.reviews .pr-status {
  text-transform: capitalize;
}

.reviews .pr-review-approved {
  color: #4caf50;
}

.reviews .pr-review-requested {
  font-weight: 600;
}

.reviews .pr-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reviews .pr-status:before {
  display: block;
  content: " ";
  width: 16px;
  height: 16px;
  border-radius: 4px;
}

.reviews .pr-status:before {
  background-color: #ffc107;
}

.reviews .pr-status-approved:before,
.reviews .pr-status-mergeable:before {
  background-color: #4caf50;
}

.reviews .empty-state {
  margin-top: 8px;
  color: #666;
}

.pr-view {
  padding: 0;
  font-size: 14px;
  height: 100vh;
}

.pr-view .summary-section {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 0;
}

.pr-view .review-header {
  padding: 32px 32px 16px;
  line-height: 36px;
  font-size: 32px;
  background-color: #f8f8f8;
  grid-column: span 2;
  display: flex;
  justify-content: space-between;
}

.pr-view .header-separator {
  height: 6px;
  grid-column: span 2;
  background-color: #ffc107;
}

.pr-view.submitted .header-separator {
  background-color: #9e9e9e;
}

.pr-view.approved .header-separator {
  background-color: #8bc34a;
}

.pr-view .review-title {
  vertical-align: top;
}

.pr-view .review-number {
  font-weight: 600;
  display: inline-block;
}

.pr-view .review-details {
  font-size: 16px;
  vertical-align: baseline;
  display: inline-block;
  padding-right: 8px;
  color: rgba(0, 0, 0, 0.8);
}

.pr-view .review-cell {
  padding: 16px 32px;
  background-color: #ffecb3;
}

.pr-view.approved .icon {
  stroke: #8bc34a;
}

.pr-view .review-actions {
  display: flex;
  gap: 8px;
}

.pr-view .review-actions .filled-button {
  background-color: #d32f2f;
}

.pr-view .description {
  padding: 12px;
  font-size: 12px;
  line-height: 16px;
  border-radius: 4px;
  background-color: #fff;
  font-family: "Source Code Pro", monospace;
  box-sizing: border-box;
  min-height: 150px;
  max-height: 400px;
  overflow-y: auto;
}

.pr-view.submitted .review-cell,
.pr-view.submitted .single-file-header {
  background-color: #fafafa;
}

.pr-view.approved .review-cell,
.pr-view.approved .single-file-header {
  background-color: #f1f8e9;
}

.pr-view .attr-grid {
  display: grid;
  grid-template-columns: max-content 1fr;
  row-gap: 4px;
  column-gap: 24px;
}

.pr-view .attr-label {
  color: #424242;
}

.pr-view .file-section table {
  /* don't use border-spacing so that hover looks nice */
  border-spacing: 0;
  padding: 0 32px;
  width: 100%;
}

.pr-view .file-section td,
.pr-view .file-section th {
  width: auto;
  white-space: nowrap;
  font-size: 14px;
  padding: 2px 4px;
}

.pr-view .file-section td input {
  margin: 0 6px 0 0;
  padding: 0;
}

.pr-view .file-section td.diff-file-name,
.pr-view .file-section th.diff-file-name {
  width: 100%;
}

.pr-view .file-section .file-list-row {
  cursor: pointer;
}

.pr-view .file-section .file-list-row:hover {
  background-color: #e0e0e0;
}

.pr-view .diff-header {
  background-color: #e1f5fe;
  font-size: 12px;
  line-height: 16px;
  font-family: "Source Code Pro", monospace;
  margin: 0;
  padding: 6px 8px;
}

.pr-view .source-line-pair {
  font-size: 12px;
  line-height: 16px;
  min-height: 16px;
  font-family: "Source Code Pro", monospace;
  background-color: #f5f5f5;
}

.pr-view .reply-bar {
  padding: 8px 12px;
  line-height: 18px;
}

.pr-view .reply-fake-link {
  margin-right: 24px;
  cursor: pointer;
  color: #3f51b5;
  font-weight: 600;
  text-decoration: underline;
}

.pr-view .source-line-number,
.pr-view .thread-line-number-space {
  width: 52px;
  display: inline-block;
  margin: 0;
  background-color: #f5f5f5;
  text-align: end;
  box-sizing: border-box;
  padding-right: 8px;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.6);
}

.pr-view .thread-line-number-space {
  display: table-cell;
}

.pr-view .source-line {
  width: calc(50% - 52px);
  display: inline-block;
  background-color: #fff;
  margin: 0;
  vertical-align: top;
  min-height: 16px;
  white-space: pre-wrap;
}

.pr-view .source-line.empty {
  background-color: #f5f5f5;
}

.pr-view .comment-block {
  background-color: #fff;
}

.pr-view .threads {
  display: table;
  table-layout: fixed;
  width: 100%;
}
.pr-view .comment-input {
  resize: vertical;
  width: 100%;
  height: 120px;
}

.pr-view .thread-block {
  background-color: #f5f5f5;
  box-sizing: border-box;
  display: table-row;
}

.pr-view .thread-empty-side {
  width: calc(50% - 52px);
  display: inline-block;
  background-color: #f5f5f5;
  display: table-cell;
}

.pr-view .thread-container {
  width: calc(50% - 52px);
  margin: 0;
  box-sizing: border-box;
  padding: 4px;
  display: inline-block;
  vertical-align: top;
  display: table-cell;
}

.pr-view .reply-modal-thread-container {
  margin: 12px 0;
}

.pr-view .thread {
  display: inline-block;
  background-color: #ffecb3;
  vertical-align: top;
  min-height: 16px;
  white-space: normal;
  font-size: 13px;
  width: 100%;
  box-sizing: border-box;
  border-radius: 2px;
  box-shadow: 0 0 4px #ccc;
}

.pr-view .thread.user-replied {
  background-color: #fff8e1;
}

.pr-view .thread.resolved {
  background-color: #e0e0e0;
}

.pr-view .thread.resolved.user-replied {
  background-color: #eee;
}

.pr-view .resolution-pill-box {
  width: 100px;
  display: inline-block;
}

.pr-view .resolution-pill {
  border-radius: 8px;
  line-height: 16px;
  padding: 0 8px;
  background-color: #ffd54f;
  color: #795548;
  font-weight: 600;
}

.pr-view .user-replied .resolution-pill {
  background-color: #ffe082;
}

.pr-view .resolution-pill.resolved {
  background-color: #bdbdbd;
  color: #616161;
}

.pr-view .user-replied .resolution-pill.resolved {
  background-color: #e0e0e0;
}

.pr-view .thread-comment {
  width: 100%;
  display: flex;
  box-sizing: border-box;
  padding: 8px 12px;
}

.pr-view .comment-divider {
  height: 0.5px;
  background-color: #bbb;
  width: calc(100% - 20px);
  margin: 0 10px;
}

.pr-view .comment-author {
  flex: 0 0 140px;
  display: inline-block;
}

.pr-view .comment-author-text {
  font-weight: 600;
}

.pr-view .comment-timestamp {
  color: #9e9e9e;
}

.pr-view .comment-body {
  flex-grow: 1;
  display: inline-block;
}

.pr-view .action-status {
  display: inline-block;
  border-radius: 4px;
  background-color: #e0e0e0;
  padding: 0 4px;
  margin: 0 2px 2px 0;
  font-size: 12px;
  white-space: nowrap;
}

.pr-view .action-status.failure {
  border-radius: 6px;
  background-color: #f44336;
  color: #fff;
}

.pr-view .source-line.right.new,
.pr-view .source-line.right.modified {
  background-color: #c8e6c9;
}

.pr-view .source-line.left.new,
.pr-view .source-line.left.modified {
  background-color: #ffcdd2;
}

.pr-view .source-line.right.new,
.pr-view .source-line.right.modified {
  background-color: #c8e6c9;
}

.pr-view .source-line.left.new,
.pr-view .source-line.left.modified {
  background-color: #ffcdd2;
}

.pr-view .review-cell.header {
  padding: 8px 32px;
  background-color: #e1f5fe;
  display: flex;
  align-items: center;
  font-weight: 600;
}

.pr-view .review-cell.header.button-bar {
  justify-content: flex-end;
  gap: 12px;
}

.pr-view .diffbase-select {
  width: 200px;
}

.pr-view .diffbase-select-option {
  width: 200px;
}

.pr-view .select-option-sha {
  color: #ccc;
}

.pr-view .expand-button {
  width: 130px;
  display: block;
}

.pr-view .file-list-header {
  font-weight: 600;
  color: #424242;
}

.pr-view .reviewer.strong {
  font-weight: 600;
}

.pr-view .reviewer.approved {
  color: #4caf50;
}

.pr-view .reply-modal-approve-button {
  margin: 12px 0 0 0;
}

.pr-view .file-list-diff td {
  padding: 0;
}

.pr-view .single-file-header {
  padding: 8px 32px;
  background-color: #ffecb3;
  grid-column: span 2;
  display: flex;
  justify-content: space-between;
}

.pr-view .single-file-name {
  font-weight: 600;
}

.pr-view .monaco-thread {
  box-sizing: border-box;
  padding: 12px 4px 12px 48px;
  width: 100%;
}

.pr-view .original .monaco-thread {
  padding: 12px 4px 12px 66px;
}

.pr-view .monaco-editor .cursors-layer > .cursor {
  display: none !important;
}

.pr-view .monaco-mouse-cursor-text,
.pr-view .monaco-editor .margin-view-overlays,
.pr-view .monaco-editor .margin-view-overlays .line-numbers {
  cursor: pointer;
}

.line-with-comment-indicator::before {
  content: "+";
  background-color: #1e88e5;
  color: #fff;
  font-weight: bolder;
  cursor: pointer;
  border-radius: 4px;
  display: inline-block;
  text-align: center;
  line-height: 16px;
  width: 16px;
  height: 16px;
}

.sidebar {
  flex-shrink: 0;
  width: 280px;
  background-color: #212121;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  overflow: auto;
  overflow-x: hidden;
  font-size: 18px;
  user-select: none;
  white-space: nowrap;
  transition: 300ms ease-in-out;
}

.sidebar {
  --sidebar-padding: 32px;
  color: #fff;
}

/* Applying border padding to children so that background colors can extend to the sidebar edges. */

.sidebar > * {
  padding: 0 var(--sidebar-padding);
}

.sidebar > :first-child {
  padding-top: var(--sidebar-padding);
}

.sidebar > :last-child {
  padding-bottom: var(--sidebar-padding);
}

.sidebar .logo {
  height: 36px;
  box-sizing: border-box;
  transition: 300ms ease-in-out;
}

.flipflop:hover {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.sidebar .sidebar-header {
  height: 36px;
  margin-bottom: 24px;
}

.sidebar .sidebar-body {
  flex-grow: 1;
  overflow: auto;

  display: flex;
  flex-direction: column;
  padding: 0 24px;
}

.sidebar .sidebar-body::-webkit-scrollbar {
  display: none;
}

.sidebar .sidebar-item {
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  color: #bdbdbd;
  white-space: nowrap;
  padding: 8px;
}
.sidebar .sidebar-item-text {
  opacity: 1;
  transition: 300ms ease-in-out;
}

.sidebar .sidebar-item.admin-only {
  color: #ffc107;
}

.sidebar .sidebar-item:hover,
.sidebar .sidebar-item.selected {
  color: #fff;
}

.sidebar .sidebar-item svg {
  padding-right: 16px;
  width: 18px;
  height: 18px;
  stroke: #bdbdbd;
  flex-shrink: 0;
}

.sidebar .sidebar-item:hover svg,
.sidebar .sidebar-item.selected svg {
  stroke: white;
}

.sidebar .sidebar-header:after {
  display: block;
  background-color: #212121;
  width: 164px;
  height: 40px;
  left: 50px;
  top: -40px;
  content: " ";
  position: relative;
  transition: 300ms ease-in-out;
  pointer-events: none;
  opacity: 0;
}

.sidebar .sidebar-toggle {
  display: none;
}

@media (min-width: 801px) {
  .sidebar.collapsed {
    width: 81px;
  }

  .sidebar.collapsed .logo {
    height: 30px;
    margin-left: -6px;
  }

  .sidebar.collapsed .sidebar-header:after {
    opacity: 1;
    left: 36px;
    top: -36px;
  }

  .sidebar.collapsed .org-picker-profile {
    padding-left: 21px;
  }

  .sidebar.collapsed .sidebar-item-text {
    opacity: 0;
  }

  .sidebar .sidebar-toggle {
    display: flex;
  }
}

.bazelrc-sidekick .bazelrc-header {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

.bazelrc-sidekick .bazelrc-empty-state button,
.bazelrc-sidekick .bazelrc-header button {
  border: 2px solid #222;
  border-radius: 8px;
  padding: 8px 16px;
  background-color: transparent;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
}

.bazelrc-sidekick .bazelrc-empty-state button .shortcut,
.bazelrc-sidekick .bazelrc-header button .shortcut {
  color: #888;
  font-weight: 400;
}

.bazelrc-sidekick .bazelrc-empty-state button {
  font-size: 1.1em;
  margin: 0 auto;
}

.bazelrc-sidekick .flag-input-options {
  overflow-y: auto;
  max-height: 100%;
}

.bazelrc-sidekick .flag-input-option {
  display: flex;
  padding: 0 16px;
}

.bazelrc-sidekick .flag {
  width: 100%;
  margin: 8px 0;
}

.bazelrc-sidekick .flag img.flag-image {
  width: 24px;
  height: 24px;
  top: 16px;
  right: 16px;
  border-radius: 4px;
}

.bazelrc-sidekick .flag-header {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  margin-bottom: 8px;
  align-items: center;
}

.bazelrc-sidekick .flag-name {
  font-weight: 700;
  font-size: 1.4em;
  text-overflow: ellipsis;
  overflow: hidden;
  flex-grow: 1;
  white-space: nowrap;
}

.bazelrc-sidekick .flag-stats {
  display: flex;
  gap: 8px 16px;
  align-items: center;
  font-weight: 400;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.bazelrc-sidekick .flag-stats a {
  text-decoration: none;
}

.bazelrc-sidekick .flag-stats svg {
  flex-shrink: 0;
}

.bazelrc-sidekick .flag-stats div {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.bazelrc-sidekick .flag-description {
  margin-top: 8px;
  color: #999;
  line-height: 1.4em;
}

.bazelrc-sidekick .flag-remove {
  background-color: #ef9a9a;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-left: 8px;
}

.bazelrc-sidekick .flag-remove:hover {
  cursor: pointer;
  background-color: #f44336;
}

.bazelrc-sidekick .flag-remove svg {
  stroke: #fff;
  width: 12px;
  height: 12px;
}

.bazelrc-sidekick .flag-update {
  background-color: #a5d6a7;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-left: 8px;
}

.bazelrc-sidekick .flag-update:hover {
  cursor: pointer;
  background-color: #4caf50;
}

.bazelrc-sidekick .flag-update svg {
  stroke: #fff;
  width: 12px;
  height: 12px;
}

.bazelrc-sidekick .flag-modal-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;

  padding: 24px;
  box-sizing: border-box;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(1px) saturate(25%);

  z-index: 1000;
}

.bazelrc-sidekick .flag-modal {
  position: absolute;
  background-color: white;
  border-radius: 8px;
  max-height: 80vh;
  width: 50vw;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.bazelrc-sidekick .flag-modal input {
  width: calc(100% - 32px);
  padding: 16px;
  margin: 16px;
  box-sizing: border-box;
  font-family: inherit;
  font-weight: 600;
  font-size: 1.2em;
  border: 2px solid #000;
  outline: none;
  border-radius: 4px;
}

.bazelrc-sidekick .flag-input-option.selected {
  background-color: #eee;
}

.bazelrc-sidekick .bazelrc-empty-state {
  font-size: 1.1em;
  margin-top: 32px;
  text-align: center;
}

.bazelrc-sidekick .bazelrc-controls {
  display: flex;
  gap: 8px;
  margin: 16px 0 16px 0;
}

.bazelrc-sidekick .bazelrc-controls > div {
  flex-grow: 1;
}

.bazelrc-sidekick .flag-properties {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.9em;
}

.bazelrc-sidekick .flag-value {
  background-color: #03a9f4;
  color: #fff;
  padding: 2px 12px;
  border-radius: 16px;
}

.bazelrc-sidekick .flag-command {
  background-color: #eeeeee;
  padding: 2px 12px;
  border-radius: 16px;
}

.bazelrc-sidekick .flag-config {
  background-color: #444;
  color: #fff;
  padding: 2px 12px;
  border-radius: 16px;
}

.bazelversion-sidekick h1 {
  margin-bottom: 16px;
}

.buildfile-sidekick h1 {
  margin-bottom: 16px;
}

.buildfile-command-group {
  margin-bottom: 16px;
}

.buildfile-command-item {
  cursor: pointer;
  margin-bottom: 4px;
  background-color: transparent;
  display: flex;
  gap: 4px;
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 4px 8px;
  align-items: center;
}

.buildfile-command-item svg {
  color: #8bc34a;
  width: 12px;
  height: 12px;
}

.modules-sidekick .modules-header {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

.modules-sidekick .modules-empty-state button,
.modules-sidekick .modules-header button {
  border: 2px solid #222;
  border-radius: 8px;
  padding: 8px 16px;
  background-color: transparent;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
}

.modules-sidekick .modules-empty-state button .shortcut,
.modules-sidekick .modules-header button .shortcut {
  color: #888;
  font-weight: 400;
}

.modules-sidekick .modules-empty-state button {
  font-size: 1.1em;
  margin: 0 auto;
}

.modules-sidekick .module-input-options {
  overflow-y: auto;
  max-height: 100%;
}

.modules-sidekick .module-input-option {
  display: flex;
  padding: 0 16px;
}

.modules-sidekick .module {
  width: 100%;
  margin-top: 8px;
}

.modules-sidekick .module img.module-image {
  width: 24px;
  height: 24px;
  top: 16px;
  right: 16px;
  border-radius: 4px;
}

.modules-sidekick .module-header {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  margin-bottom: 8px;
  align-items: center;
}

.modules-sidekick .module-name {
  font-weight: 700;
  font-size: 1.4em;
  text-overflow: ellipsis;
  overflow: hidden;
  flex-grow: 1;
  white-space: nowrap;
}

.modules-sidekick .module-stats {
  display: flex;
  gap: 8px 16px;
  align-items: center;
  font-weight: 400;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.modules-sidekick .module-stats a {
  text-decoration: none;
}

.modules-sidekick .module-stats svg {
  flex-shrink: 0;
}

.modules-sidekick .module-stats div {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.modules-sidekick .module-description {
  margin-top: 8px;
  color: #999;
  line-height: 1.4em;
}

.modules-sidekick .module-remove {
  background-color: #ef9a9a;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-left: 8px;
}

.modules-sidekick .module-remove:hover {
  cursor: pointer;
  background-color: #f44336;
}

.modules-sidekick .module-remove svg {
  stroke: #fff;
  width: 12px;
  height: 12px;
}

.modules-sidekick .module-update {
  background-color: #a5d6a7;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-left: 8px;
}

.modules-sidekick .module-update:hover {
  cursor: pointer;
  background-color: #4caf50;
}

.modules-sidekick .module-update svg {
  stroke: #fff;
  width: 12px;
  height: 12px;
}

.modules-sidekick .module-modal-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;

  padding: 24px;
  box-sizing: border-box;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(1px) saturate(25%);

  z-index: 1000;
}

.modules-sidekick .module-modal {
  position: absolute;
  background-color: white;
  border-radius: 8px;
  max-height: 80vh;
  width: 50vw;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.modules-sidekick .module-modal input {
  width: calc(100% - 32px);
  padding: 16px;
  margin: 16px;
  box-sizing: border-box;
  font-family: inherit;
  font-weight: 600;
  font-size: 1.2em;
  border: 2px solid #000;
  outline: none;
  border-radius: 4px;
}

.modules-sidekick .module-input-option.selected {
  background-color: #eee;
}

.modules-sidekick .modules-empty-state {
  font-size: 1.1em;
  margin-top: 32px;
  text-align: center;
}

.tap {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tap .popup-wrapper {
  position: relative;
}

.tap button {
  flex-shrink: 0;
}

.tap .empty-state a:not(.button) {
  text-decoration: underline;
}

.tap ul {
  list-style: initial;
  margin: 16px 0;
  padding-left: 24px;
}

.tap ul li {
  margin-bottom: 16px;
}

.tap .tap-top-bar {
  padding: 32px 0 0;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
  top: 0;
}

.tap .tap-top-bar.stick {
  position: sticky;
}

.tap.v2 .tap-top-bar {
  border-bottom: none;
}

.tap .inner-top-bar-underlay {
  display: block;
  position: sticky;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1;
}

.tap .inner-top-bar-underlay::before {
  display: block;
  content: "";
  position: absolute;
  height: 72px;
  width: calc(100% + 64px);
  margin-left: -32px;
  background: white;
  border-bottom: 1px solid #eee;
  z-index: 1;
  opacity: 0.95;
}

.tap .tap-header-left-section {
  display: flex;
  gap: 16px;
  align-items: center;
}

.tap .tap-header-left-section > * {
  flex-shrink: 0;
}

.tap .target-controls {
  display: flex;
  gap: 16px;
  align-items: center;
  padding-bottom: 32px;
}

.tap.v2 .target-controls {
  padding-bottom: 8px;
}

.tap .repo-picker {
  max-width: 300px;
}

.tap .tap-header-group {
  margin-bottom: 16px;
}

.tap .tap-header {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.tap-title {
  font-size: 32px;
  font-weight: 700;
  flex-shrink: 0;
}

.tap .tabs {
  margin-top: 8px;
}

.tap .inner-top-bar {
  position: sticky;
  top: 0;
  z-index: 1;
  padding-bottom: 4px;
}

.tap .tap-grid-container {
  overflow: auto;
  /* Workaround to disable repaint-on-scroll for scrollable flex child,
     which causes bad scroll performance. */
  backface-visibility: hidden;
  flex-grow: 1;
}

/* Workaround to add bottom padding to a scrollable flex child. */
.tap .tap-grid-container::after {
  content: "";
  display: block;
  height: 32px;
}

.tap .tap-row {
  display: flex;
  align-items: center;
}

.tap .commit-timeline-label {
  color: #757575;
  position: sticky;
  top: 0;
  left: 0;
  height: 0;
  z-index: 1;
}

.tap .hovered-commit-row {
  height: 24px;
}

.tap-hovered-commit-info,
.tap-hovered-commit-pointer {
  position: fixed;
  pointer-events: none;
}

.tap-hovered-commit-info {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  height: 24px;
  background: #eceff1;
  border-radius: 12px;
  height: inherit;
  padding: 2px 8px;
}

.tap-hovered-commit-pointer {
  width: 0;
  height: 0;
  overflow: visible;
}

.tap-hovered-commit-pointer::before {
  content: "";
  display: block;
  background: #eceff1;
  width: 12px;
  height: 12px;
  transform-origin: center;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  z-index: -1;
}

.tap .commit-timeline {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Workaround for padding-right not working within horizontally scrollable flex child */
.tap .commit-timeline::after {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  flex-shrink: 0;
}

.tap .commits-list {
  display: inline-flex;
  align-items: center;
  margin: 4px 0; /* to match "Load more" button height */
  position: relative;
}

.tap .commits-list::before {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
  height: 3px;
  left: 0;
  right: 0;
  background: #cfd8dc;
  margin-left: 17px; /* = half of effective .commit-link size */
}

.tap .commit-link {
  width: 32px;
  height: 32px;
  padding: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tap .commit-link::after {
  content: "";
  display: block;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  position: absolute;
  z-index: 1;
  background: white;
  border: 2px solid #212121;
}

.tap .commit-link:hover::after {
  background: #9e9e9e;
  border-color: #9e9e9e;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.tap-target-label {
  font-size: 0.8em;
  color: #444;
  margin-top: 8px;
  margin-bottom: 2px;
  position: sticky;
  left: 0;
}

.tap-target-path {
  color: #888;
}

.tap-target-name {
  font-weight: 600;
}

.tap-target-type {
  color: #aaa;
}

.tap-target-stats {
  margin-left: 8px;
  color: #aaa;
}

.tap .tap-block {
  display: flex;
  margin: 1px;
  border-radius: 2px;
  box-sizing: border-box;
  font-size: 8px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  opacity: 0.8;
  flex-grow: 1;
  position: relative;
  min-width: 6px;
  min-height: 6px;
}

.tap-block svg {
  color: #fff;
  width: 50%;
  height: 50%;
}

.tap .tap-block:hover,
.tap .tap-block:first-of-type {
  opacity: 1;
}

.tap .tap-block:nth-of-type(2) {
  opacity: 0.95;
}

.tap .tap-block:nth-of-type(3) {
  opacity: 0.9;
}

.tap .tap-block:nth-of-type(4) {
  opacity: 0.85;
}

.tap .tap-block.no-status {
  border: 1px solid #e0e0e0;
}

.tap .tap-block.timing {
  background-color: #0d47a1;
}

/* 
STATUS_UNSPECIFIED = 0;
BUILDING = 1;
BUILT = 2;
FAILED_TO_BUILD = 3;
TESTING = 4;
PASSED = 5;
FAILED = 6;
TIMED_OUT = 7;
CANCELLED = 8;
TOOL_FAILED = 9;
INCOMPLETE = 10;
FLAKY = 11;
UNKNOWN = 12;
SKIPPED = 13; 
*/

.tap-commit-container {
  display: flex;
  flex-direction: column;
  width: 32px;
  height: 32px;
  flex-grow: 0;
  flex-shrink: 0;
  overflow: hidden;
  margin: 1px;
}

.tap .tap-invocation-count {
  position: absolute;
  bottom: 1px;
  right: 2px;
  color: #fff;
}

.tap .tap-block-header {
  border: 1px solid #ccc;
  color: #888;
}

.tap .tap-block-header:first-of-type {
  border: 1px solid #888;
  color: #444;
}

.tap .tap-block.cached {
  opacity: 0.5;
}
.tap .tap-block.status-0 {
  background-color: #888;
}

.tap .tap-block.status-1 {
  background-color: #2196f3;
}

.tap .tap-block.status-2 {
  background-color: #0d47a1;
}

.tap .tap-block.status-3 {
  background-color: #212121;
}

.tap .tap-block.status-4 {
  background-color: #1976d2;
}

.tap .tap-block.status-5 {
  background-color: #4caf50;
}

.tap .tap-block.status-6 {
  background-color: #f44336;
}

.tap .tap-block.status-7 {
  background-color: #616161;
}

.tap .tap-block.status-8 {
  background-color: #757575;
}

.tap .tap-block.status-9 {
  background-color: #212121;
}

.tap .tap-block.status-10 {
  background-color: #888;
}

.tap .tap-block.status-11 {
  background-color: #ff9800;
}

.tap .tap-block.status-12 {
  background-color: #888;
}

.tap .tap-block.status-13 {
  background-color: #888;
}

.tap .filter-input {
  vertical-align: middle;
  margin-left: 8px;
}

.tap .filter {
  margin-top: 0;
}

.tap label {
  padding-left: 8px;
  vertical-align: middle;
  user-select: none;
}

.tap .group {
  display: flex;
  align-items: baseline;
}

.tap .group-container {
  background-color: #fafafa;
  border: 1px solid #eee;
  padding: 4px 16px 4px 0;
  min-height: 40px;
  box-sizing: border-box;
  border-radius: 4px;
  flex-grow: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tap .more-targets-button {
  width: 100%;
  justify-content: center;
  padding: 24px 0;
  margin-top: 24px;
  border-radius: 8px;
  position: sticky;
  left: 0;
}

.tap .more-invocations-button {
  gap: 8px;
}

.tap-sort-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  grid-gap: 8px;
}

.tap-sort-title {
  margin-right: 8px;
}

.tap-sort-control {
  display: flex;
  align-items: center;
  margin-left: 8px;
}

.tap .chart-card {
  margin-top: 0;
  display: block;
}

.tap .flakes-chart-header {
  margin: 0 0 16px;
}

.tap .flakes-list-header {
  margin: 16px 0;
}

.tap .flake-table {
  margin-top: 16px;
}

.tap .flake-table-row {
  display: flex;
  border-top: 1px solid #eee;
  padding: 16px 0;
}

.tap .flake-table-row:last-child {
  border-bottom: 1px solid #eee;
}

.tap .flake-table-row:hover {
  background: #fafafa;
}

.tap .flake-table-row.flake-table-summary-row {
  border: none;
  background: transparent;
  padding-top: 0;
}

.tap .flake-table-row-image {
  margin-left: 4px;
  margin-right: 16px;
}

.tap .flake-table-row-header {
  font-weight: 600;
}

.tap .flake-table-row-content {
  flex-grow: 1;
}

.tap .flake-table-row-stats {
  display: flex;
  justify-content: space-between;
}

.tap .flake-stat {
  width: 160px;
  margin: 8px 0;
  font-size: 16px;
}

.tap .flake-stat-value {
  font-size: 20px;
}

.tap .flake-table-header {
  display: flex;
  justify-content: space-between;
  grid-gap: 8px;
}

.tap .flake-table-sort-controls {
  display: flex;
  align-items: center;
  min-width: 300px;
}

/* Some weird padding and margin to make the click target bigger. */
.tap .target-copy-button .copy-icon-wrapper {
  display: inline-block;
  padding: 16px 16px 16px 8px;
  margin: -16px -16px -16px -4px;
}

.tap .target-copy-button .copy-button-text {
  margin-left: 4px;
  font-weight: normal;
  font-size: 14px;
  color: #888;
}

.tap .flakes-list .test-case-info {
  padding-left: 0;
  border-left: none;
}

.trends {
  margin-top: 32px;
}

.trends-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.trends-title {
  font-size: 32px;
  font-weight: 700;
}

.trends .tabs {
  margin-bottom: 32px;
}

.trend-chart {
  margin-bottom: 32px;
  padding-top: 32px;
  border-top: 1px solid #eee;
}

.trend-chart.zoomable {
  user-select: none;
}

.trend-chart.standalone {
  margin: 0;
  border: none;
  padding: 0;
}

/*
 * A hack: cursor is not configurable in recharts, so in we go. This could be
 * better (it currently sets cursor:pointer on the axis grid, too, but there
 * isn't a ton to be done.
 */
.trend-chart.zoomable .recharts-surface {
  cursor: pointer;
}

.trend-chart-title {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 16px;
}

.trend-chart-hover {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 16px;
  box-shadow:
    0 3px 6px rgba(0, 0, 0, 0.16),
    0 3px 6px rgba(0, 0, 0, 0.23);
  pointer-events: none;
  z-index: 1;
}

.trend-chart-hover-label {
  font-weight: 600;
}

.trends-clickable-bar:hover,
.trends-clickable-bar.green:hover {
  fill: #9ccc65;
}

.trends-clickable-bar.red:hover {
  fill: #e57373;
}

.trends-clickable-bar.orange:hover {
  fill: #ff8f00;
}

.trends-clickable-bar.grey:hover {
  fill: #ccc;
}

.trends-clickable-bar.blue:hover {
  fill: #29b6f6;
}

.trends svg.recharts-surface {
  /* Allow axis labels to extend slightly out of bounds */
  overflow: visible;
}

.heatmap-svg {
  user-select: none;
  cursor: pointer;
}

.heatmap-zoom {
  cursor: pointer;
  stroke: #616161;
  fill: #eee;
}

.heatmap-zoom:hover {
  stroke: #414141;
  fill: #ddd;
}

.drilldown-page-warning-section {
  display: inline-block;
  margin: 0 0 16px;
}

.drilldown-page-dd-chart {
  display: inline-block;
}

.drilldown-page-dd-chart-title {
  margin-left: 4px;
  font-weight: 600;
}

.drilldown-page-tooltip-base {
  color: #8782bc;
}

.drilldown-page-tooltip-selected {
  color: #4daf62;
}

.drilldown-by-text {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  vertical-align: top;
}

.drilldown-page-selection-group {
  display: inline-block;
  margin: 0 0 0 16px;
}

.drilldown-page-zoom-summary {
  display: inline-block;
  height: 40px;
  margin: 0 0 0 36px;
  vertical-align: bottom;
}

.drilldown-page-zoom-summary.zoomed {
  /* 1px of extra margin keeps spacing consistent with the button border. */
  margin: 0 0 0 61px;
}

.drilldown-page-zoom-filters {
  display: inline-block;
  vertical-align: bottom;
  margin-left: 8px;
  height: 40px;
  max-height: 40px;
}

@media (max-width: 1200px) {
  .drilldown-page-zoom-summary.zoomed {
    display: block;
    margin: 12px 0 0;
  }
}

.drilldown-page-zoom-summary.zoomed .drilldown-page-zoom-filters {
  margin-right: 16px;
}

.drilldown-page-zoom-filter-attr {
  font-size: 14px;
  height: 20px;
  max-height: 20px;
  text-align: left;
}

.drilldown-page-zoom-button {
  margin-left: 8px;
  max-height: 40px;
}

.drilldown-page-zoom-button.square {
  padding: 8px;
}

.select.drilldown-page-select {
  font-size: 16px;
  margin: 0;
}

.drilldown-selection-summary {
  font-size: 12px;
  margin-bottom: 4px;
}

.selection-summary-indicator {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
}

.selection-summary-indicator.selection {
  background-color: #4daf62;
}

.selection-summary-indicator.baseline {
  background-color: #8782bc;
}

.selection-summary-text {
  vertical-align: top;
}

.card.trend-summary-group {
  flex-direction: column;
  display: inline-block;
  flex-grow: 1;
  margin: 0;
  max-width: 300px;
}

.trend-headline-stat {
  font-size: 20px;
  margin-bottom: 4px;
}

.trend-headline-text {
  font-weight: bold;
  vertical-align: top;
  margin-left: 8px;
}

.trend-sub-item {
  font-size: 12px;
  max-width: 240px;
  margin-bottom: 4px;
}

.trend-change {
  font-weight: bold;
}

.trend-change.up {
  color: #4caf50;
}

.trend-change.down {
  color: #f44336;
}

.trend-summary-block {
  display: flex;
  flex-wrap: wrap;
  row-gap: 16px;
  column-gap: 16px;
}

.usage-page .container.usage-page-container {
  max-width: 768px;
}

.usage-page .org-name {
  color: #616161;
}

.usage-page .usage-header {
  margin: 32px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.usage-page .usage-title {
  font-size: 32px;
  font-weight: 700;
}

.usage-page .usage-period-header .selected-period-label {
  font-size: 16px;
}

.usage-page .usage-period-header {
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
  margin-bottom: 16px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.usage-page .usage-period-header .usage-period {
  font-weight: 600;
}

.usage-page .usage-period-table {
  display: grid;
  grid-template-columns: max-content max-content;
  gap: 4px 16px;
}

.usage-page .card .content {
  gap: 16px;
}

.usage-page .usage-period-selection {
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
  margin-bottom: 8px;
}

.usage-page .usage-resource-name {
  font-weight: 600;
}

body {
  overflow: hidden;
  height: 100vh;
}

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

.page.has-menu {
  flex-direction: column;
}

.impersonation-toolbar {
  background-color: #ffc107;
  padding: 4px 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.12) inset;
}

.impersonation-toolbar .impersonation-caution {
  display: flex;
  flex-wrap: nowrap;
  gap: 4px;
}

.impersonation-toolbar .impersonation-caution .icon {
  margin-top: 3px;
}

.impersonation-toolbar .icon {
  width: 16px;
  height: 16px;
}

.impersonation-toolbar .spacer {
  margin-left: auto;
}

.impersonation-toolbar button {
  min-height: 32px;
  padding: 2px 16px;
  gap: 8px;
  flex-shrink: 0;
}

.root {
  position: relative;
}

.page {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.container.left,
.left .container {
  margin: 0;
  max-width: 100%;
}

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

.root-tests .content {
  max-height: 100%;
}

.root-tests .footer {
  display: none;
}

.history-title {
  margin-right: 18px;
}

.history-button {
  margin-right: 18px;
  padding: 6px 12px;
  color: #444;
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-radius: 8px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.history-button svg {
  margin-right: 8px;
  width: 14px;
  height: 14px;
}

.history-button:hover {
  background-color: rgba(20, 20, 20, 0.1);
}

.history-button:last-of-type {
  margin-right: 0;
}

/** Mobile support **/

@media (max-width: 800px) {
  .page {
    overflow: auto;
  }

  .root-main.root-main {
    overflow: visible;
  }

  .left .page {
    max-height: initial;
  }

  .dense .page,
  .page {
    flex-direction: column;
    max-height: initial;
  }

  /* Duplicate selector for increased specificity. */
  .sidebar.sidebar {
    height: auto;
    width: 100%;
  }

  .sidebar .sidebar-body {
    flex-wrap: wrap;
    flex-direction: row;
    padding-bottom: 16px;
  }

  .dense .sidebar .logo {
    height: 36px;
  }

  .dense .sidebar .org-picker-profile-photo {
    display: block;
  }

  .dense .sidebar .org-picker-profile-name,
  .sidebar .org-picker-profile-name {
    display: none;
  }

  .dense .sidebar .org-picker-profile-arrow,
  .sidebar .org-picker-profile-arrow {
    display: none;
  }
}

.keyboard-shortcut-title {
  border-bottom: 1px solid #eee;
  text-align: center;
  width: 100%;
}

.keyboard-shortcut-body {
  text-align: left;
  padding-left: 8px;
}

.keyboard-shortcut-help {
  margin: 0px;
}

.keyboard-shortcut-th {
  text-align: left;
}

.keyboard-shortcut-key {
  text-align: right;
  padding-right: 32px;
  font-family: "Source Code Pro", monospace;
}

.keyboard-shortcut-close {
  text-align: right;
  margin-left: auto;
  margin-right: 8px;
  text-decoration: underline;
  color: #333;
}

.code-editor {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.code-hover:hover {
  text-decoration: underline;
  cursor: pointer;
}

.code-highlight-modification {
  text-decoration: underline;
  background-color: #f8f0ff;
  cursor: pointer;
  border: 1px solid #9334e6;
}

.code-highlight-reference {
  text-decoration: underline;
  background-color: #fef7e0;
  cursor: pointer;
  border: 1px solid #8f6b00;
}

.code-search-xrefs {
  height: 300px;
  overflow: hidden;
  border: 2px solid #fafafa;
  border-top: 0px;
}

.code-search-xrefs-resize {
  height: 4px;
  background-color: #ccc;
  cursor: ns-resize;
  border-left: 2px solid #fafafa;
  border-right: 2px solid #fafafa;
}

.xrefs-header {
  padding: 10px;
  background-color: #d2e3fc;
  color: #1967d2;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
}

.xrefs-container {
  overflow-y: auto;
  height: calc(100% - 36px);
}

.xrefs-file {
  cursor: pointer;
  color: #185abc;
  font-size: 12px;
  padding: 5px 30px;
}

.xrefs-category {
  background-color: #f8f9fa;
  color: #202124;
  font-size: 12px;
  padding: 5px 10px;
}

.xrefs-snippet {
  font-family: monospace;
  color: #202124;
  font-size: 12px;
  line-height: 20px;
  padding: 0 40px 10px;
  cursor: pointer;
}

.xrefs-snippet-line {
  padding: 0 10px 0 0;
  color: #185abc;
}

.code-menu {
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 16px;
  box-sizing: border-box;
  gap: 16px;
}

.code-menu-logo {
  font-weight: 500;
  font-size: 18px;
  color: #888;
  font-family: monospace;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.code-menu-logo .logo {
  height: 24px;
  width: 29px;
  stroke: #424242;
}

.code-menu-logo .logo:hover {
  fill: #000;
  stroke: #000;
}

.code-menu-logo .code-logo {
  height: 18px;
  margin-left: 4px;
  stroke: #888;
}

.code-menu-logo a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.code-menu-back {
  color: #000;
  margin-right: 8px;
}

.code-menu-actions {
  min-width: 1px;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.code-menu-download-button {
  gap: 8px;
}

.code-menu-breadcrumbs {
  font-size: 0.85em;
  display: flex;
  align-items: center;
  gap: 0 4px;
  flex-wrap: wrap;
}

.code-menu-breadcrumbs svg {
  height: 12px;
  width: 12px;
}

.code-menu-breadcrumbs-environment {
  display: flex;
  font-weight: 600;
  align-items: center;
  gap: 4px;
}

.code-main {
  display: flex;
  flex-grow: 1;
  width: 100vw;
  height: calc(100vh - 60px);
}

.code-sidebar {
  width: 200px;
  flex-shrink: 0;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.code-sidebar-header {
  padding: 8px 4px 8px 16px;
  box-sizing: border-box;
  font-size: 0.8em;
  font-weight: 600;
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
}

.code-sidebar-header svg {
  width: 12px;
  height: 12px;
}

.code-sidebar-tree {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  overflow: auto;
}

.code-sidebar-tree div {
  cursor: pointer;
}

.code-editor-link-github {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 200px);
  height: calc(100% - 60px);
}

.code-editor-link-github button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-weight: 600;
  border: 0;
  border-radius: 100px;
  margin-bottom: 12px;
  font-size: 18px;
  cursor: pointer;
  border: 3px solid rgba(255, 255, 255, 0.9);
  background-color: #000;
  color: #fff;
  min-width: 360px;
  transition: 300ms ease-in-out;
  background-color: #fff;
  color: #212121;
  border: 3px solid #212121;
}

.code-editor-link-github button svg {
  width: 16px;
  margin-right: 8px;
}

.code-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  width: calc(100vw - 200px);
  min-width: 1px;
}

.code-viewer-container {
  flex-grow: 1;
  position: relative;
  width: 100%;
  overflow: hidden;
  border-left: 2px solid #fafafa;
}

.code-viewer {
  position: absolute;
  width: 100%;
  height: 100%;
}

.code-diff-viewer {
  max-height: 200px;
  overflow: scroll;
  flex-shrink: 0;
  border-top: 2px solid #fafafa;
  border-left: 2px solid #fafafa;
  padding: 16px;
}

.code-diff-viewer-title {
  font-weight: bold;
  margin-bottom: 6px;
}

.code-diff-viewer-item {
  margin-bottom: 4px;
  font-size: 13px;
  cursor: pointer;
  display: flex;
}

.code-sidebar-node-row {
  padding-left: calc(12px + 8px * var(--depth));
}

.code-sidebar-node-row:hover {
  background: #eceff1;
}

.code-sidebar-node-row {
  display: flex;
  font-size: 13px;
  align-items: center;
  user-select: none;
  height: 24px;
}

.code-sidebar-node-row svg {
  width: 14px;
  margin-right: 4px;
  flex-shrink: 0;
}

.code-sidebar-node-name {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: clip;
}

.code-diff-viewer-item-path.deleted,
.code-sidebar-node-name.deleted {
  color: #f44336;
  text-decoration: line-through;
}

.code-diff-viewer-item-path.added,
.code-sidebar-node-name.added {
  color: #4caf50;
}

.code-sidebar-node-name.changed {
  color: #ff9800;
}

/* Monaco overrides */

.minimap-shadow-visible,
.scroll-decoration {
  display: none;
}

.minimap-decorations-layer {
  border-left: 2px solid #fafafa;
}

.repo-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: calc(100% - 200px);
  height: calc(100% - 60px);
}

.repo-empty .repo-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.repo-empty .repo-title {
  font-size: 1.2em;
  margin-bottom: 4px;
}

.repo-empty .repo-section {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 4px;
}

.repo-empty .repo-link {
  color: #2196f3;
  font-weight: 600;
  cursor: pointer;
}

.repo-empty .repo-logo {
  font-size: 2em;
  font-weight: 600;
}

.request-review-button {
  display: flex;
  align-items: center;
  margin-right: 8px;
}

.request-review-button .icon {
  margin-right: 8px;
}

.request-review-button svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.request-review-button .spinner {
  --size: 16px;
}

.request-review-button .loading {
  --spinner-size: 18px;

  width: var(--spinner-size);
  height: var(--spinner-size);
  margin-left: -2px;
}

.request-review-button .loading::before {
  width: var(--spinner-size);
  height: var(--spinner-size);
}

.code-revert-button {
  margin-left: 64px;
  color: #aaa;
}

.code-revert-button:hover {
  color: #f44336;
}

.code-request-review-dialog .dialog-footer-buttons {
  width: 100%;
}

.code-request-review-dialog input,
.code-request-review-dialog textarea {
  margin-bottom: 16px;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #888;
  font: inherit;
}

.code-request-review-dialog textarea {
  min-height: 200px;
}

.code-request-review-dialog-body {
  display: flex;
  flex-direction: column;
}

.code-request-review-dialog .code-request-review-button {
  padding: 16px;
  width: 100%;
  justify-content: center;
  gap: 8px;
  flex-shrink: 1;
}

.code-request-review-dialog .code-request-review-button svg {
  margin-right: 8px;
}

.hidden-viewer {
  display: none;
}

.code-update-commit {
  width: 0.8em;
  height: 0.8em;
  cursor: pointer;
  stroke: #2196f3;
}

.codeCoverageHit {
  background-color: #c5e1a5;
}

.codeCoverageMiss {
  background-color: #ef9a9a;
}

.code-editor .sidekick {
  border-left: 2px solid #fafafa;
  width: calc(40vw);
  padding: 8px 16px;
  overflow-y: auto;
  min-width: 1px;
}

.code-editor .context-menu {
  position: absolute;
  z-index: 2;
  background-color: #fff;
  padding: 8px 0;
  border-radius: 8px;
  box-shadow:
    0 0 0 1px #0000000f,
    0 1px 1px -0.5px #0000000f,
    0 3px 3px -1.5px #0000000f,
    0 6px 6px -3px #0000000f;
}

.code-editor .context-menu div {
  padding: 8px 16px;
  cursor: pointer;
}

.code-editor .context-menu div:hover {
  background-color: #fafafa;
}

.code-editor .code-viewer-tabs {
  display: flex;
  white-space: nowrap;
  overflow-y: auto;
  flex-shrink: 1;
  background-color: #fafafa;
  width: 100%;
  min-height: 36px;
  border-top-left-radius: 8px;
  border-top: 2px solid #fafafa;
}

.code-editor .code-viewer-tab {
  padding: 8px 4px 8px 16px;
  border-bottom: 2px solid #fafafa;
  border-left: 2px solid #fafafa;
  cursor: pointer;
  font-size: 0.8em;
  display: flex;
  align-items: center;
  color: #444;
  gap: 4px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.code-editor .code-viewer-tab.selected {
  border-bottom: 2px solid transparent;
  background-color: #fff;
  color: #000;
}

.code-editor .code-viewer-tab svg {
  width: 12px;
  height: 12px;
  color: transparent;
}
.code-editor .code-viewer-tab:hover {
  color: #000;
}

.code-editor .code-viewer-tab:hover svg {
  color: #aaa;
}

.code-editor .code-viewer-tab svg:hover {
  color: #b71c1c;
}

.code-editor .monaco-editor .view-overlays .current-line-exact {
  border: 2px solid #eee;
}

.code-spinner {
  position: absolute;
  z-index: 100;
  width: 64px;
  height: 64px;
  top: calc(50% - 32px);
  left: calc(50% - 32px);
}

.code-query-highlight {
  font-weight: 600;
  background-color: #ffe0b2;
}

.code-editor-search-bar-empty-state {
  margin-top: 8px;
}

.code-editor-search-bar-empty-state ul li code {
  padding: 2px 4px;
  font-size: 0.8em;
  display: inline-flex;
  margin-top: 0px;
}

.code-editor-search-bar-empty-state-description {
}

.code-editor-search-bar-empty-state-examples {
  margin: 16px 0 12px 0;
  color: #888;
  font-size: 0.8em;
}

.code-editor-search-bar-result {
}

.code-editor-search-bar-result pre {
  white-space: pre-wrap;
}

.monaco-action-bar {
  height: 100%;
  white-space: nowrap;
}
.monaco-action-bar .actions-container {
  align-items: center;
  display: flex;
  height: 100%;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
.monaco-action-bar.vertical .actions-container {
  display: inline-block;
}
.monaco-action-bar .action-item {
  align-items: center;
  cursor: pointer;
  display: block;
  justify-content: center;
  position: relative;
}
.monaco-action-bar .action-item.disabled {
  cursor: default;
}
.monaco-action-bar .action-item .codicon,
.monaco-action-bar .action-item .icon {
  display: block;
}
.monaco-action-bar .action-item .codicon {
  align-items: center;
  display: flex;
  height: 16px;
  width: 16px;
}
.monaco-action-bar .action-label {
  border-radius: 5px;
  display: flex;
  font-size: 11px;
  padding: 3px;
}
.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;
  display: block;
  margin-left: 0.8em;
  margin-right: 0.8em;
  padding-top: 1px;
}
.monaco-action-bar .action-item .action-label.separator {
  background-color: #bbb;
  cursor: default;
  height: 16px;
  margin: 5px 4px !important;
  min-width: 1px;
  padding: 0;
  width: 1px;
}
.secondary-actions .monaco-action-bar .action-label {
  margin-left: 6px;
}
.monaco-action-bar .action-item.select-container {
  align-items: center;
  display: flex;
  flex: 1;
  justify-content: center;
  margin-right: 10px;
  max-width: 170px;
  min-width: 60px;
  overflow: hidden;
}
.monaco-action-bar .action-item.action-dropdown-item {
  display: flex;
}
.monaco-action-bar .action-item.action-dropdown-item > .action-dropdown-item-separator {
  align-items: center;
  cursor: default;
  display: flex;
}
.monaco-action-bar .action-item.action-dropdown-item > .action-dropdown-item-separator > div {
  width: 1px;
}
.monaco-aria-container {
  left: -999em;
  position: absolute;
}
.monaco-text-button {
  align-items: center;
  border: 1px solid var(--vscode-button-border, transparent);
  border-radius: 2px;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  justify-content: center;
  line-height: 18px;
  padding: 4px;
  text-align: center;
  width: 100%;
}
.monaco-text-button:focus {
  outline-offset: 2px !important;
}
.monaco-text-button:hover {
  text-decoration: none !important;
}
.monaco-button.disabled,
.monaco-button.disabled:focus {
  cursor: default;
  opacity: 0.4 !important;
}
.monaco-text-button .codicon {
  color: inherit !important;
  margin: 0 0.2em;
}
.monaco-text-button.monaco-text-button-with-short-label {
  flex-direction: row;
  flex-wrap: wrap;
  height: 28px;
  overflow: hidden;
  padding: 0 4px;
}
.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;
  overflow: hidden;
  width: 0;
}
.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 {
  align-items: center;
  display: flex;
  font-style: inherit;
  font-weight: 400;
  justify-content: center;
  padding: 4px 0;
}
.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-dropdown-separator,
.monaco-button-dropdown.disabled > .monaco-button.disabled,
.monaco-button-dropdown.disabled > .monaco-button.disabled:focus {
  opacity: 0.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 {
  height: 100%;
  width: 1px;
}
.monaco-button-dropdown > .monaco-button.monaco-dropdown-button {
  align-items: center;
  border: 1px solid var(--vscode-button-border, transparent);
  border-left-width: 0 !important;
  border-radius: 0 2px 2px 0;
  display: flex;
}
.monaco-button-dropdown > .monaco-button.monaco-text-button {
  border-radius: 2px 0 0 2px;
}
.monaco-description-button {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: 4px 5px;
}
.monaco-description-button .monaco-button-description {
  font-size: 11px;
  font-style: italic;
  padding: 4px 20px;
}
.monaco-description-button .monaco-button-description,
.monaco-description-button .monaco-button-label {
  align-items: center;
  display: flex;
  justify-content: center;
}
.monaco-description-button .monaco-button-description > .codicon,
.monaco-description-button .monaco-button-label > .codicon {
  color: inherit !important;
  margin: 0 0.2em;
}
.monaco-button-dropdown.default-colors > .monaco-button,
.monaco-button.default-colors {
  background-color: var(--vscode-button-background);
  color: var(--vscode-button-foreground);
}
.monaco-button-dropdown.default-colors > .monaco-button:hover,
.monaco-button.default-colors:hover {
  background-color: var(--vscode-button-hoverBackground);
}
.monaco-button-dropdown.default-colors > .monaco-button.secondary,
.monaco-button.default-colors.secondary {
  background-color: var(--vscode-button-secondaryBackground);
  color: var(--vscode-button-secondaryForeground);
}
.monaco-button-dropdown.default-colors > .monaco-button.secondary:hover,
.monaco-button.default-colors.secondary:hover {
  background-color: var(--vscode-button-secondaryHoverBackground);
}
.monaco-button-dropdown.default-colors .monaco-button-dropdown-separator {
  background-color: var(--vscode-button-background);
  border-bottom: 1px solid var(--vscode-button-border);
  border-top: 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);
}
@font-face {
  font-display: block;
  font-family: codicon;
  src: url(https://cdnjs.cloudflare.com/ajax/libs/monaco-editor/0.46.0/min/vs/base/browser/ui/codicons/codicon/codicon.ttf)
    format("truetype");
}
.codicon[class*="codicon-"] {
  display: inline-block;
  font: normal normal normal 16px/1 codicon;
  text-align: center;
  text-decoration: none;
  text-rendering: auto;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  user-select: none;
  -webkit-user-select: none;
}
.codicon-wrench-subaction {
  opacity: 0.5;
}
@keyframes codicon-spin {
  to {
    transform: rotate(1turn);
  }
}
.codicon-gear.codicon-modifier-spin,
.codicon-loading.codicon-modifier-spin,
.codicon-notebook-state-executing.codicon-modifier-spin,
.codicon-sync.codicon-modifier-spin {
  animation: codicon-spin 1.5s steps(30) infinite;
}
.codicon-modifier-disabled {
  opacity: 0.4;
}
.codicon-loading,
.codicon-tree-item-loading:before {
  animation-duration: 1s !important;
  animation-timing-function: cubic-bezier(0.53, 0.21, 0.29, 0.67) !important;
}
.context-view {
  position: absolute;
}
.context-view.fixed {
  all: initial;
  color: inherit;
  font-family: inherit;
  font-size: 13px;
  position: fixed;
}
.monaco-count-badge {
  border-radius: 11px;
  box-sizing: border-box;
  display: inline-block;
  font-size: 11px;
  font-weight: 400;
  line-height: 11px;
  min-height: 18px;
  min-width: 18px;
  padding: 3px 6px;
  text-align: center;
}
.monaco-count-badge.long {
  border-radius: 2px;
  line-height: normal;
  min-height: auto;
  padding: 2px 3px;
}
.monaco-dropdown {
  height: 100%;
  padding: 0;
}
.monaco-dropdown > .dropdown-label {
  align-items: center;
  cursor: pointer;
  display: flex;
  height: 100%;
  justify-content: center;
}
.monaco-dropdown > .dropdown-label > .action-label.disabled {
  cursor: default;
}
.monaco-dropdown-with-primary {
  border-radius: 5px;
  display: flex !important;
  flex-direction: row;
}
.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-"] {
  font-size: 12px;
  line-height: 16px;
  margin-left: -3px;
  padding-left: 0;
  padding-right: 0;
}
.monaco-dropdown-with-primary > .dropdown-action-container > .monaco-dropdown > .dropdown-label > .action-label {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 16px;
  display: block;
}
.monaco-findInput {
  position: relative;
}
.monaco-findInput .monaco-inputbox {
  font-size: 13px;
  width: 100%;
}
.monaco-findInput > .controls {
  position: absolute;
  right: 2px;
  top: 3px;
}
.vs .monaco-findInput.disabled {
  background-color: #e1e1e1;
}
.vs-dark .monaco-findInput.disabled {
  background-color: #333;
}
.hc-light .monaco-findInput.highlight-0 .controls,
.monaco-findInput.highlight-0 .controls {
  animation: monaco-findInput-highlight-0 0.1s linear 0s;
}
.hc-light .monaco-findInput.highlight-1 .controls,
.monaco-findInput.highlight-1 .controls {
  animation: monaco-findInput-highlight-1 0.1s linear 0s;
}
.hc-black .monaco-findInput.highlight-0 .controls,
.vs-dark .monaco-findInput.highlight-0 .controls {
  animation: monaco-findInput-highlight-dark-0 0.1s linear 0s;
}
.hc-black .monaco-findInput.highlight-1 .controls,
.vs-dark .monaco-findInput.highlight-1 .controls {
  animation: monaco-findInput-highlight-dark-1 0.1s linear 0s;
}
@keyframes monaco-findInput-highlight-0 {
  0% {
    background: rgba(253, 255, 0, 0.8);
  }
  to {
    background: transparent;
  }
}
@keyframes monaco-findInput-highlight-1 {
  0% {
    background: rgba(253, 255, 0, 0.8);
  }
  99% {
    background: transparent;
  }
}
@keyframes monaco-findInput-highlight-dark-0 {
  0% {
    background: hsla(0, 0%, 100%, 0.44);
  }
  to {
    background: transparent;
  }
}
@keyframes monaco-findInput-highlight-dark-1 {
  0% {
    background: hsla(0, 0%, 100%, 0.44);
  }
  99% {
    background: transparent;
  }
}
.monaco-hover {
  animation: fadein 0.1s linear;
  box-sizing: border-box;
  cursor: default;
  line-height: 1.5em;
  overflow: hidden;
  position: absolute;
  user-select: text;
  -webkit-user-select: text;
  white-space: var(--vscode-hover-whiteSpace, normal);
}
.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 .code,
.monaco-hover h1,
.monaco-hover h2,
.monaco-hover h3,
.monaco-hover h4,
.monaco-hover h5,
.monaco-hover h6,
.monaco-hover p,
.monaco-hover ul {
  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 {
  border-left: 0;
  border-right: 0;
  box-sizing: border-box;
  height: 1px;
  margin: 4px -8px -4px;
}
.monaco-hover .code:first-child,
.monaco-hover p:first-child,
.monaco-hover ul:first-child {
  margin-top: 0;
}
.monaco-hover .code:last-child,
.monaco-hover p:last-child,
.monaco-hover ul:last-child {
  margin-bottom: 0;
}
.monaco-hover ol,
.monaco-hover ul {
  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 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 {
  font-style: italic;
  padding: 0 8px;
}
.monaco-hover .hover-row.status-bar .actions {
  display: flex;
  padding: 0 8px;
}
.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 .markdown-hover .hover-contents .codicon {
  color: inherit;
  font-size: inherit;
  vertical-align: middle;
}
.monaco-hover .hover-contents a.code-link,
.monaco-hover .hover-contents a.code-link:hover {
  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 {
  border-bottom: 1px solid transparent;
  color: var(--vscode-textLink-foreground);
  text-decoration: underline;
  text-underline-position: under;
}
.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 {
  display: inline-block;
  margin-bottom: 4px;
}
.monaco-hover-content .action-container a {
  -webkit-user-select: none;
  user-select: none;
}
.monaco-hover-content .action-container.disabled {
  cursor: default;
  opacity: 0.4;
  pointer-events: none;
}
.monaco-icon-label {
  display: flex;
  overflow: hidden;
  text-overflow: ellipsis;
}
.monaco-icon-label:before {
  background-position: 0;
  background-repeat: no-repeat;
  background-size: 16px;
  display: inline-block;
  height: 22px;
  line-height: inherit !important;
  padding-right: 6px;
  width: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  flex-shrink: 0;
  vertical-align: top;
}
.monaco-icon-label-container.disabled {
  color: var(--vscode-disabledForeground);
}
.monaco-icon-label > .monaco-icon-label-container {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.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 {
  margin: 0 2px;
  opacity: 0.5;
}
.monaco-icon-label > .monaco-icon-label-container > .monaco-icon-suffix-container > .label-suffix {
  opacity: 0.7;
  white-space: pre;
}
.monaco-icon-label > .monaco-icon-label-container > .monaco-icon-description-container > .label-description {
  font-size: 0.9em;
  margin-left: 0.5em;
  opacity: 0.7;
  white-space: pre;
}
.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: 0.95;
}
.monaco-icon-label.italic > .monaco-icon-label-container > .monaco-icon-description-container > .label-description,
.monaco-icon-label.italic > .monaco-icon-label-container > .monaco-icon-name-container > .label-name {
  font-style: italic;
}
.monaco-icon-label.deprecated {
  opacity: 0.66;
  text-decoration: line-through;
}
.monaco-icon-label.italic:after {
  font-style: italic;
}
.monaco-icon-label.strikethrough
  > .monaco-icon-label-container
  > .monaco-icon-description-container
  > .label-description,
.monaco-icon-label.strikethrough > .monaco-icon-label-container > .monaco-icon-name-container > .label-name {
  text-decoration: line-through;
}
.monaco-icon-label:after {
  font-size: 90%;
  font-weight: 600;
  margin: auto 16px 0 5px;
  opacity: 0.75;
  text-align: center;
}
.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: 0.8;
}
.monaco-inputbox {
  border-radius: 2px;
  box-sizing: border-box;
  display: block;
  font-size: inherit;
  padding: 0;
  position: relative;
}
.monaco-inputbox > .ibwrapper > .input,
.monaco-inputbox > .ibwrapper > .mirror {
  padding: 4px 6px;
}
.monaco-inputbox > .ibwrapper {
  height: 100%;
  position: relative;
  width: 100%;
}
.monaco-inputbox > .ibwrapper > .input {
  border: none;
  box-sizing: border-box;
  color: inherit;
  display: inline-block;
  font-family: inherit;
  font-size: inherit;
  height: 100%;
  line-height: inherit;
  resize: none;
  width: 100%;
}
.monaco-inputbox > .ibwrapper > input {
  text-overflow: ellipsis;
}
.monaco-inputbox > .ibwrapper > textarea.input {
  display: block;
  outline: none;
  scrollbar-width: none;
}
.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;
  display: inline-block;
  left: 0;
  position: absolute;
  top: 0;
  visibility: hidden;
  white-space: pre-wrap;
  width: 100%;
  word-wrap: break-word;
}
.monaco-inputbox-container {
  text-align: right;
}
.monaco-inputbox-container .monaco-inputbox-message {
  box-sizing: border-box;
  display: inline-block;
  font-size: 12px;
  line-height: 17px;
  margin-top: -1px;
  overflow: hidden;
  padding: 0.4em;
  text-align: left;
  width: 100%;
  word-wrap: break-word;
}
.monaco-inputbox .monaco-action-bar {
  position: absolute;
  right: 2px;
  top: 4px;
}
.monaco-inputbox .monaco-action-bar .action-item {
  margin-left: 2px;
}
.monaco-inputbox .monaco-action-bar .action-item .codicon {
  background-repeat: no-repeat;
  height: 16px;
  width: 16px;
}
.monaco-keybinding {
  align-items: center;
  display: flex;
  line-height: 10px;
}
.monaco-keybinding > .monaco-keybinding-key {
  border-radius: 3px;
  border-style: solid;
  border-width: 1px;
  display: inline-block;
  font-size: 11px;
  margin: 0 2px;
  padding: 3px 5px;
  vertical-align: middle;
}
.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;
}
.monaco-list {
  height: 100%;
  position: relative;
  white-space: nowrap;
  width: 100%;
}
.monaco-list.mouse-support {
  user-select: none;
  -webkit-user-select: none;
}
.monaco-list > .monaco-scrollable-element {
  height: 100%;
}
.monaco-list-rows {
  height: 100%;
  position: relative;
  width: 100%;
}
.monaco-list.horizontal-scrolling .monaco-list-rows {
  min-width: 100%;
  width: auto;
}
.monaco-list-row {
  box-sizing: border-box;
  overflow: hidden;
  position: absolute;
  width: 100%;
}
.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-multiple,
.monaco-list.selection-single {
  outline: 0 !important;
}
.monaco-drag-image {
  border-radius: 10px;
  display: inline-block;
  font-size: 12px;
  padding: 1px 7px;
  position: absolute;
  z-index: 1000;
}
.monaco-list-type-filter-message {
  box-sizing: border-box;
  height: 100%;
  left: 0;
  opacity: 0.7;
  padding: 40px 1em 1em;
  pointer-events: none;
  position: absolute;
  text-align: center;
  top: 0;
  white-space: normal;
  width: 100%;
}
.monaco-list-type-filter-message:empty {
  display: none;
}
.monaco-mouse-cursor-text {
  cursor: text;
}
.monaco-progress-container {
  height: 2px;
  overflow: hidden;
  width: 100%;
}
.monaco-progress-container .progress-bit {
  display: none;
  height: 2px;
  left: 0;
  position: absolute;
  width: 2%;
}
.monaco-progress-container.active .progress-bit {
  display: inherit;
}
.monaco-progress-container.discrete .progress-bit {
  left: 0;
  transition: width 0.1s linear;
}
.monaco-progress-container.discrete.done .progress-bit {
  width: 100%;
}
.monaco-progress-container.infinite .progress-bit {
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-name: progress;
  animation-timing-function: linear;
  transform: translateZ(0);
}
.monaco-progress-container.infinite.infinite-long-running .progress-bit {
  animation-timing-function: steps(100);
}
@keyframes progress {
  0% {
    transform: translateX(0) scaleX(1);
  }
  50% {
    transform: translateX(2500%) scaleX(3);
  }
  to {
    transform: translateX(4900%) scaleX(1);
  }
}
:root {
  --vscode-sash-size: 4px;
  --vscode-sash-hover-size: 4px;
}
.monaco-sash {
  position: absolute;
  touch-action: none;
  z-index: 35;
}
.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;
  height: 100%;
  top: 0;
  width: var(--vscode-sash-size);
}
.monaco-sash.horizontal {
  cursor: ns-resize;
  height: var(--vscode-sash-size);
  left: 0;
  width: 100%;
}
.monaco-sash:not(.disabled) > .orthogonal-drag-handle {
  content: " ";
  cursor: all-scroll;
  display: block;
  height: calc(var(--vscode-sash-size) * 2);
  position: absolute;
  width: calc(var(--vscode-sash-size) * 2);
  z-index: 100;
}
.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) * -0.5);
  top: calc(var(--vscode-sash-size) * -1);
}
.monaco-sash.vertical > .orthogonal-drag-handle.end {
  bottom: calc(var(--vscode-sash-size) * -1);
  left: calc(var(--vscode-sash-size) * -0.5);
}
.monaco-sash.horizontal > .orthogonal-drag-handle.start {
  left: calc(var(--vscode-sash-size) * -1);
  top: calc(var(--vscode-sash-size) * -0.5);
}
.monaco-sash.horizontal > .orthogonal-drag-handle.end {
  right: calc(var(--vscode-sash-size) * -1);
  top: calc(var(--vscode-sash-size) * -0.5);
}
.monaco-sash:before {
  background: transparent;
  content: "";
  height: 100%;
  pointer-events: none;
  position: absolute;
  width: 100%;
}
.monaco-workbench:not(.reduce-motion) .monaco-sash:before {
  transition: background-color 0.1s ease-out;
}
.monaco-sash.active:before,
.monaco-sash.hover:before {
  background: var(--vscode-sash-hoverBorder);
}
.monaco-sash.vertical:before {
  left: calc(50% - var(--vscode-sash-hover-size) / 2);
  width: var(--vscode-sash-hover-size);
}
.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: cyan;
}
.monaco-sash.debug.disabled {
  background: rgba(0, 255, 255, 0.2);
}
.monaco-sash.debug:not(.disabled) > .orthogonal-drag-handle {
  background: red;
}
.monaco-scrollable-element > .scrollbar > .scra {
  cursor: pointer;
  font-size: 11px !important;
}
.monaco-scrollable-element > .visible {
  background: transparent;
  opacity: 1;
  transition: opacity 0.1s linear;
  z-index: 11;
}
.monaco-scrollable-element > .invisible {
  opacity: 0;
  pointer-events: none;
}
.monaco-scrollable-element > .invisible.fade {
  transition: opacity 0.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;
  display: block;
  height: 3px;
  left: 3px;
  top: 0;
  width: 100%;
}
.monaco-scrollable-element > .shadow.left {
  box-shadow: var(--vscode-scrollbar-shadow) 6px 0 6px -6px inset;
  display: block;
  height: 100%;
  left: 0;
  top: 3px;
  width: 3px;
}
.monaco-scrollable-element > .shadow.top-left-corner {
  display: block;
  height: 3px;
  left: 0;
  top: 0;
  width: 3px;
}
.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-select-box {
  border-radius: 2px;
  cursor: pointer;
  width: 100%;
}
.monaco-select-box-dropdown-container {
  font-size: 13px;
  font-weight: 400;
  text-transform: none;
}
.monaco-action-bar .action-item.select-container {
  cursor: default;
}
.monaco-action-bar .action-item .monaco-select-box {
  cursor: pointer;
  min-height: 18px;
  min-width: 100px;
  padding: 2px 23px 2px 8px;
}
.mac .monaco-action-bar .action-item .monaco-select-box {
  border-radius: 5px;
  font-size: 11px;
}
.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 {
  font-family: var(--monaco-monospace-font);
  line-height: 15px;
}
.monaco-select-box-dropdown-container.visible {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-align: left;
  width: 1px;
}
.monaco-select-box-dropdown-container > .select-box-dropdown-list-container {
  align-self: flex-start;
  box-sizing: border-box;
  flex: 0 0 auto;
  overflow: hidden;
  padding-bottom: var(--dropdown-padding-bottom);
  padding-left: 1px;
  padding-right: 1px;
  padding-top: var(--dropdown-padding-top);
  width: 100%;
}
.monaco-select-box-dropdown-container > .select-box-details-pane {
  padding: 5px;
}
.hc-black .monaco-select-box-dropdown-container > .select-box-dropdown-list-container {
  padding-bottom: var(--dropdown-padding-bottom);
  padding-top: var(--dropdown-padding-top);
}
.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 {
  float: left;
  overflow: hidden;
  padding-left: 3.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.monaco-select-box-dropdown-container
  > .select-box-dropdown-list-container
  .monaco-list
  .monaco-list-row
  > .option-detail {
  float: left;
  opacity: 0.7;
  overflow: hidden;
  padding-left: 3.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.monaco-select-box-dropdown-container
  > .select-box-dropdown-list-container
  .monaco-list
  .monaco-list-row
  > .option-decorator-right {
  float: right;
  overflow: hidden;
  padding-right: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.monaco-select-box-dropdown-container
  > .select-box-dropdown-list-container
  .monaco-list
  .monaco-list-row
  > .visually-hidden {
  height: 1px;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}
.monaco-select-box-dropdown-container > .select-box-dropdown-container-width-control {
  align-self: flex-start;
  flex: 1 1 auto;
  opacity: 0;
}
.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 {
  padding-left: 4px;
  padding-right: 8px;
  white-space: nowrap;
}
.monaco-split-view2 {
  height: 100%;
  position: relative;
  width: 100%;
}
.monaco-split-view2 > .sash-container {
  height: 100%;
  pointer-events: none;
  position: absolute;
  width: 100%;
}
.monaco-split-view2 > .sash-container > .monaco-sash {
  pointer-events: auto;
}
.monaco-split-view2 > .monaco-scrollable-element {
  height: 100%;
  width: 100%;
}
.monaco-split-view2 > .monaco-scrollable-element > .split-view-container {
  height: 100%;
  position: relative;
  white-space: nowrap;
  width: 100%;
}
.monaco-split-view2 > .monaco-scrollable-element > .split-view-container > .split-view-view {
  position: absolute;
  white-space: normal;
}
.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 {
  background-color: var(--separator-border);
  content: " ";
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  z-index: 5;
}
.monaco-split-view2.separator-border.horizontal
  > .monaco-scrollable-element
  > .split-view-container
  > .split-view-view:not(:first-child):before {
  height: 100%;
  width: 1px;
}
.monaco-split-view2.separator-border.vertical
  > .monaco-scrollable-element
  > .split-view-container
  > .split-view-view:not(:first-child):before {
  height: 1px;
  width: 100%;
}
.monaco-table {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  width: 100%;
}
.monaco-table > .monaco-split-view2 {
  border-bottom: 1px solid transparent;
}
.monaco-table > .monaco-list {
  flex: 1;
}
.monaco-table-tr {
  display: flex;
  height: 100%;
}
.monaco-table-th {
  font-weight: 700;
  height: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}
.monaco-table-td,
.monaco-table-th {
  box-sizing: border-box;
  flex-shrink: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.monaco-table > .monaco-split-view2 .monaco-sash.vertical:before {
  border-left: 1px solid transparent;
  content: "";
  left: calc(var(--vscode-sash-size) / 2);
  position: absolute;
  width: 0;
}
.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 0.2s ease-out;
}
.monaco-custom-toggle {
  border: 1px solid transparent;
  border-radius: 3px;
  box-sizing: border-box;
  cursor: pointer;
  float: left;
  height: 20px;
  margin-left: 2px;
  overflow: hidden;
  padding: 1px;
  user-select: none;
  -webkit-user-select: none;
  width: 20px;
}
.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-black .monaco-custom-toggle:hover,
.hc-light .monaco-custom-toggle,
.hc-light .monaco-custom-toggle:hover {
  background: none;
}
.monaco-custom-toggle.monaco-checkbox {
  background-size: 16px !important;
  border: 1px solid transparent;
  border-radius: 3px;
  height: 18px;
  margin-left: 0;
  margin-right: 9px;
  opacity: 1;
  padding: 0;
  width: 18px;
}
.monaco-action-bar .checkbox-action-item {
  align-items: center;
  display: flex;
}
.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;
}
.monaco-toolbar {
  height: 100%;
}
.monaco-toolbar .toolbar-toggle-more {
  display: inline-block;
  padding: 0;
}
.monaco-tl-row {
  align-items: center;
  display: flex;
  height: 100%;
  position: relative;
}
.monaco-tl-row.disabled {
  cursor: default;
}
.monaco-tl-indent {
  height: 100%;
  left: 16px;
  pointer-events: none;
  position: absolute;
  top: 0;
}
.hide-arrows .monaco-tl-indent {
  left: 12px;
}
.monaco-tl-indent > .indent-guide {
  border-left: 1px solid transparent;
  box-sizing: border-box;
  display: inline-block;
  height: 100%;
}
.monaco-workbench:not(.reduce-motion) .monaco-tl-indent > .indent-guide {
  transition: border-color 0.1s linear;
}
.monaco-tl-contents,
.monaco-tl-twistie {
  height: 100%;
}
.monaco-tl-twistie {
  align-items: center;
  display: flex !important;
  flex-shrink: 0;
  font-size: 10px;
  justify-content: center;
  padding-right: 6px;
  text-align: right;
  transform: translateX(3px);
  width: 16px;
}
.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: codicon-spin 1.25s steps(30) infinite;
}
.monaco-tree-type-filter {
  border: 1px solid var(--vscode-widget-border);
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  display: flex;
  margin: 0 6px;
  max-width: 200px;
  padding: 3px;
  position: absolute;
  top: 0;
  z-index: 100;
}
.monaco-workbench:not(.reduce-motion) .monaco-tree-type-filter {
  transition: top 0.3s;
}
.monaco-tree-type-filter.disabled {
  top: -40px !important;
}
.monaco-tree-type-filter-grab {
  align-items: center;
  cursor: grab;
  display: flex !important;
  justify-content: center;
  margin-right: 2px;
}
.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 {
  background-color: var(--vscode-sideBar-background);
  height: 0;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 13;
}
.monaco-list .monaco-scrollable-element .monaco-tree-sticky-container .monaco-tree-sticky-row.monaco-list-row {
  background-color: var(--vscode-sideBar-background);
  opacity: 1 !important;
  overflow: hidden;
  position: absolute;
  width: 100%;
}
.monaco-list .monaco-scrollable-element .monaco-tree-sticky-container .monaco-tree-sticky-row:hover {
  background-color: var(--vscode-list-hoverBackground) !important;
  cursor: pointer;
}
.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 {
  bottom: -3px;
  box-shadow: var(--vscode-scrollbar-shadow) 0 6px 6px -6px inset;
  height: 3px;
  left: 0;
  position: absolute;
  width: 100%;
}
.monaco-list .monaco-scrollable-element .monaco-tree-sticky-container[tabindex="0"]:focus {
  outline: none;
}
.monaco-editor .inputarea {
  background-color: transparent;
  border: none;
  color: transparent;
  margin: 0;
  min-height: 0;
  min-width: 0;
  outline: none !important;
  overflow: hidden;
  padding: 0;
  position: absolute;
  resize: none;
  z-index: -10;
}
.monaco-editor .inputarea.ime-input {
  caret-color: var(--vscode-editorCursor-foreground);
  color: var(--vscode-editor-foreground);
  z-index: 10;
}
.monaco-editor .blockDecorations-container {
  pointer-events: none;
  position: absolute;
  top: 0;
}
.monaco-editor .blockDecorations-block {
  box-sizing: border-box;
  position: absolute;
}
.monaco-editor .margin-view-overlays .current-line,
.monaco-editor .view-overlays .current-line {
  box-sizing: border-box;
  display: block;
  left: 0;
  position: absolute;
  top: 0;
}
.monaco-editor .margin-view-overlays .current-line.current-line-margin.current-line-margin-both {
  border-right: 0;
}
.monaco-editor .lines-content .cdr {
  position: absolute;
}
.monaco-editor .glyph-margin {
  position: absolute;
  top: 0;
}
.monaco-editor .glyph-margin-widgets .cgmr {
  align-items: center;
  display: flex;
  justify-content: center;
  position: absolute;
}
.monaco-editor .glyph-margin-widgets .cgmr.codicon-modifier-spin:before {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
.monaco-editor .lines-content .core-guide {
  box-sizing: border-box;
  position: absolute;
}
.monaco-editor .margin-view-overlays .line-numbers {
  box-sizing: border-box;
  cursor: default;
  display: inline-block;
  font-variant-numeric: tabular-nums;
  height: 100%;
  position: absolute;
  text-align: right;
  vertical-align: middle;
}
.monaco-editor .relative-current-line-number {
  display: inline-block;
  text-align: left;
  width: 100%;
}
.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);
}
.mtkcontrol {
  background: #960000 !important;
  color: #fff !important;
}
.mtkoverflow {
  background-color: var(--vscode-button-background, var(--vscode-editor-background));
  border-color: var(--vscode-contrastBorder);
  border-radius: 2px;
  border-style: solid;
  border-width: 1px;
  color: var(--vscode-button-foreground, var(--vscode-editor-foreground));
  cursor: pointer;
  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 {
  user-select: none;
  -webkit-user-select: none;
}
.monaco-editor.mac .lines-content:hover,
.monaco-editor.mac .view-line:hover,
.monaco-editor.mac .view-lines:hover {
  user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text;
}
.monaco-editor.enable-user-select {
  user-select: auto;
  -webkit-user-select: initial;
}
.monaco-editor .view-lines {
  white-space: nowrap;
}
.monaco-editor .view-line {
  position: absolute;
  width: 100%;
}
.monaco-editor .mtkw,
.monaco-editor .mtkz {
  color: var(--vscode-editorWhitespace-foreground) !important;
}
.monaco-editor .mtkz {
  display: inline-block;
}
.monaco-editor .lines-decorations {
  background: #fff;
  position: absolute;
  top: 0;
}
.monaco-editor .margin-view-overlays .cldr {
  height: 100%;
  position: absolute;
}
.monaco-editor .margin {
  background-color: var(--vscode-editorGutter-background);
}
.monaco-editor .margin-view-overlays .cmdr {
  height: 100%;
  left: 0;
  position: absolute;
  width: 100%;
}
.monaco-editor .minimap.slider-mouseover .minimap-slider {
  opacity: 0;
  transition: opacity 0.1s linear;
}
.monaco-editor .minimap.slider-mouseover .minimap-slider.active,
.monaco-editor .minimap.slider-mouseover:hover .minimap-slider {
  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 {
  position: absolute;
  width: 0;
}
.monaco-editor .minimap-shadow-visible {
  left: -6px;
  position: absolute;
  width: 6px;
}
.monaco-editor.no-minimap-shadow .minimap-shadow-visible {
  left: -1px;
  position: absolute;
  width: 1px;
}
.minimap.autohide {
  opacity: 0;
  transition: opacity 0.5s;
}
.minimap.autohide:hover {
  opacity: 1;
}
.monaco-editor .minimap {
  z-index: 5;
}
.monaco-editor .overlayWidgets {
  left: 0;
  position: absolute;
  top: 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;
  left: 0;
  position: absolute;
  top: 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;
  overflow: hidden;
  position: absolute;
}
.monaco-editor .cursors-layer.cursor-smooth-caret-animation > .cursor {
  transition: all 80ms;
}
.monaco-editor .cursors-layer.cursor-block-outline-style > .cursor {
  background: transparent !important;
  border-style: solid;
  border-width: 1px;
}
.monaco-editor .cursors-layer.cursor-underline-style > .cursor {
  background: transparent !important;
  border-bottom-style: solid;
  border-bottom-width: 2px;
}
.monaco-editor .cursors-layer.cursor-underline-thin-style > .cursor {
  background: transparent !important;
  border-bottom-style: solid;
  border-bottom-width: 1px;
}
@keyframes monaco-cursor-smooth {
  0%,
  20% {
    opacity: 1;
  }
  60%,
  to {
    opacity: 0;
  }
}
@keyframes monaco-cursor-phase {
  0%,
  20% {
    opacity: 1;
  }
  90%,
  to {
    opacity: 0;
  }
}
@keyframes monaco-cursor-expand {
  0%,
  20% {
    transform: scaleY(1);
  }
  80%,
  to {
    transform: scaleY(0);
  }
}
.cursor-smooth {
  animation: monaco-cursor-smooth 0.5s ease-in-out 0s 20 alternate;
}
.cursor-phase {
  animation: monaco-cursor-phase 0.5s ease-in-out 0s 20 alternate;
}
.cursor-expand > .cursor {
  animation: monaco-cursor-expand 0.5s ease-in-out 0s 20 alternate;
}
.monaco-editor .mwh {
  color: var(--vscode-editorWhitespace-foreground) !important;
  position: absolute;
}
.monaco-component.diff-review {
  user-select: none;
  -webkit-user-select: none;
  z-index: 99;
}
.monaco-diff-editor .diff-review {
  position: absolute;
}
.monaco-component.diff-review .diff-review-line-number {
  color: var(--vscode-editorLineNumber-foreground);
  display: inline-block;
  text-align: right;
}
.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 {
  display: table;
  min-width: 100%;
}
.monaco-component.diff-review .diff-review-row {
  display: table-row;
  width: 100%;
}
.monaco-component.diff-review .diff-review-spacer {
  display: inline-block;
  vertical-align: middle;
  width: 10px;
}
.monaco-component.diff-review .diff-review-spacer > .codicon {
  font-size: 9px !important;
}
.monaco-component.diff-review .diff-review-actions {
  display: inline-block;
  position: absolute;
  right: 10px;
  top: 2px;
  z-index: 100;
}
.monaco-component.diff-review .diff-review-actions .action-label {
  height: 16px;
  margin: 2px 0;
  width: 16px;
}
.monaco-component.diff-review .revertButton {
  cursor: pointer;
}
.monaco-editor .diff-hidden-lines-widget {
  width: 100%;
}
.monaco-editor .diff-hidden-lines {
  font-size: 13px;
  height: 0;
  line-height: 14px;
  transform: translateY(-10px);
}
.monaco-editor .diff-hidden-lines .bottom.dragging,
.monaco-editor .diff-hidden-lines .top.dragging,
.monaco-editor .diff-hidden-lines:not(.dragging) .bottom:hover,
.monaco-editor .diff-hidden-lines:not(.dragging) .top:hover {
  background-color: var(--vscode-focusBorder);
}
.monaco-editor .diff-hidden-lines .bottom,
.monaco-editor .diff-hidden-lines .top {
  background-clip: padding-box;
  background-color: transparent;
  border-bottom: 2px solid transparent;
  border-top: 4px solid transparent;
  height: 4px;
  transition: background-color 0.1s ease-out;
}
.monaco-editor .diff-hidden-lines .bottom.canMoveTop:not(.canMoveBottom),
.monaco-editor .diff-hidden-lines .top.canMoveTop:not(.canMoveBottom),
.monaco-editor.draggingUnchangedRegion.canMoveTop:not(.canMoveBottom) * {
  cursor: n-resize !important;
}
.monaco-editor .diff-hidden-lines .bottom:not(.canMoveTop).canMoveBottom,
.monaco-editor .diff-hidden-lines .top:not(.canMoveTop).canMoveBottom,
.monaco-editor.draggingUnchangedRegion:not(.canMoveTop).canMoveBottom * {
  cursor: s-resize !important;
}
.monaco-editor .diff-hidden-lines .bottom.canMoveTop.canMoveBottom,
.monaco-editor .diff-hidden-lines .top.canMoveTop.canMoveBottom,
.monaco-editor.draggingUnchangedRegion.canMoveTop.canMoveBottom * {
  cursor: ns-resize !important;
}
.monaco-editor .diff-hidden-lines .top {
  transform: translateY(4px);
}
.monaco-editor .diff-hidden-lines .bottom {
  transform: translateY(-6px);
}
.monaco-editor .diff-unchanged-lines {
  background: var(--vscode-diffEditor-unchangedCodeBackground);
}
.monaco-editor .noModificationsOverlay {
  align-items: center;
  background: var(--vscode-editor-background);
  display: flex;
  justify-content: center;
  z-index: 1;
}
.monaco-editor .diff-hidden-lines .center {
  background: var(--vscode-diffEditor-unchangedRegionBackground);
  box-shadow:
    inset 0 -5px 5px -7px var(--vscode-diffEditor-unchangedRegionShadow),
    inset 0 5px 5px -7px var(--vscode-diffEditor-unchangedRegionShadow);
  color: var(--vscode-diffEditor-unchangedRegionForeground);
  display: block;
  height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.monaco-editor .diff-hidden-lines .center span.codicon {
  vertical-align: middle;
}
.monaco-editor .diff-hidden-lines .center a:hover .codicon {
  color: var(--vscode-editorLink-activeForeground) !important;
  cursor: pointer;
}
.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 .movedModified,
.monaco-editor .movedOriginal {
  border: 2px solid var(--vscode-diffEditor-move-border);
}
.monaco-editor .movedModified.currentMove,
.monaco-editor .movedOriginal.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: 2;
}
.monaco-editor .char-delete.diff-range-empty {
  border-left: 3px solid var(--vscode-diffEditor-removedTextBackground);
  margin-left: -1px;
}
.monaco-editor .char-insert.diff-range-empty {
  border-left: 3px solid var(--vscode-diffEditor-insertedTextBackground);
}
.monaco-editor .fold-unchanged {
  cursor: pointer;
}
.monaco-diff-editor .diff-moved-code-block {
  display: flex;
  justify-content: flex-end;
  margin-top: -4px;
}
.monaco-diff-editor .diff-moved-code-block .action-bar .action-label.codicon {
  font-size: 12px;
  height: 12px;
  width: 12px;
}
.monaco-diff-editor .diffOverview {
  z-index: 9;
}
.monaco-diff-editor .diffOverview .diffViewport {
  z-index: 10;
}
.monaco-diff-editor.vs .diffOverview {
  background: rgba(0, 0, 0, 0.03);
}
.monaco-diff-editor.vs-dark .diffOverview {
  background: hsla(0, 0%, 100%, 0.01);
}
.monaco-scrollable-element.modified-in-monaco-diff-editor.vs .scrollbar,
.monaco-scrollable-element.modified-in-monaco-diff-editor.vs-dark .scrollbar {
  background: transparent;
}
.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: hsla(0, 0%, 67%, 0.4);
}
.modified-in-monaco-diff-editor.hc-black .slider.active,
.modified-in-monaco-diff-editor.hc-light .slider.active {
  background: none;
}
.monaco-diff-editor .delete-sign,
.monaco-diff-editor .insert-sign,
.monaco-editor .delete-sign,
.monaco-editor .insert-sign {
  align-items: center;
  display: flex !important;
  font-size: 11px !important;
  opacity: 0.7 !important;
}
.monaco-diff-editor.hc-black .delete-sign,
.monaco-diff-editor.hc-black .insert-sign,
.monaco-diff-editor.hc-light .delete-sign,
.monaco-diff-editor.hc-light .insert-sign,
.monaco-editor.hc-black .delete-sign,
.monaco-editor.hc-black .insert-sign,
.monaco-editor.hc-light .delete-sign,
.monaco-editor.hc-light .insert-sign {
  opacity: 1;
}
.monaco-editor .inline-added-margin-view-zone,
.monaco-editor .inline-deleted-margin-view-zone {
  text-align: right;
}
.monaco-editor .arrow-revert-change {
  position: absolute;
  z-index: 10;
}
.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-diff-editor .char-insert,
.monaco-editor .char-insert {
  background-color: var(--vscode-diffEditor-insertedTextBackground);
}
.monaco-diff-editor .line-insert,
.monaco-editor .line-insert {
  background-color: var(--vscode-diffEditor-insertedLineBackground, var(--vscode-diffEditor-insertedTextBackground));
}
.monaco-editor .char-insert,
.monaco-editor .line-insert {
  border: 1px solid var(--vscode-diffEditor-insertedTextBorder);
  box-sizing: border-box;
}
.monaco-editor.hc-black .char-insert,
.monaco-editor.hc-black .line-insert,
.monaco-editor.hc-light .char-insert,
.monaco-editor.hc-light .line-insert {
  border-style: dashed;
}
.monaco-editor .char-delete,
.monaco-editor .line-delete {
  border: 1px solid var(--vscode-diffEditor-removedTextBorder);
  box-sizing: border-box;
}
.monaco-editor.hc-black .char-delete,
.monaco-editor.hc-black .line-delete,
.monaco-editor.hc-light .char-delete,
.monaco-editor.hc-light .line-delete {
  border-style: dashed;
}
.monaco-diff-editor .gutter-insert,
.monaco-editor .gutter-insert,
.monaco-editor .inline-added-margin-view-zone {
  background-color: var(
    --vscode-diffEditorGutter-insertedLineBackground,
    var(--vscode-diffEditor-insertedLineBackground),
    var(--vscode-diffEditor-insertedTextBackground)
  );
}
.monaco-diff-editor .char-delete,
.monaco-editor .char-delete {
  background-color: var(--vscode-diffEditor-removedTextBackground);
}
.monaco-diff-editor .line-delete,
.monaco-editor .line-delete {
  background-color: var(--vscode-diffEditor-removedLineBackground, var(--vscode-diffEditor-removedTextBackground));
}
.monaco-diff-editor .gutter-delete,
.monaco-editor .gutter-delete,
.monaco-editor .inline-deleted-margin-view-zone {
  background-color: var(
    --vscode-diffEditorGutter-removedLineBackground,
    var(--vscode-diffEditor-removedLineBackground),
    var(--vscode-diffEditor-removedTextBackground)
  );
}
.monaco-diff-editor.side-by-side .editor.modified {
  border-left: 1px solid var(--vscode-diffEditor-border);
  box-shadow: -6px 0 5px -5px var(--vscode-scrollbar-shadow);
}
.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-workbench .workbench-hover {
  background: var(--vscode-editorHoverWidget-background);
  border: 1px solid var(--vscode-editorHoverWidget-border);
  border-radius: 3px;
  box-shadow: 0 2px 8px var(--vscode-widget-shadow);
  color: var(--vscode-editorHoverWidget-foreground);
  font-size: 13px;
  line-height: 19px;
  max-width: 700px;
  overflow: hidden;
  position: relative;
  z-index: 40;
}
.monaco-workbench .workbench-hover hr {
  border-bottom: none;
}
.monaco-workbench .workbench-hover:not(.skip-fade-in) {
  animation: fadein 0.1s linear;
}
.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 {
  pointer-events: none;
  position: absolute;
  z-index: 41;
}
.monaco-workbench .workbench-hover-pointer:after {
  background-color: var(--vscode-editorHoverWidget-background);
  border-bottom: 1px solid var(--vscode-editorHoverWidget-border);
  border-right: 1px solid var(--vscode-editorHoverWidget-border);
  content: "";
  height: 5px;
  position: absolute;
  width: 5px;
}
.monaco-workbench .locked .workbench-hover-pointer:after {
  border-bottom-width: 2px;
  border-right-width: 2px;
  height: 4px;
  width: 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: 1px solid;
  outline-color: var(--vscode-focusBorder);
  outline-offset: -1px;
  text-decoration: underline;
}
.monaco-workbench .workbench-hover a:active,
.monaco-workbench .workbench-hover a:hover {
  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-editor .rendered-markdown kbd {
  background-color: var(--vscode-keybindingLabel-background);
  border-color: var(--vscode-keybindingLabel-border);
  border-bottom-color: var(--vscode-keybindingLabel-bottomBorder);
  border-radius: 3px;
  border-style: solid;
  border-width: 1px;
  box-shadow: inset 0 -1px 0 var(--vscode-widget-shadow);
  color: var(--vscode-keybindingLabel-foreground);
  padding: 1px 3px;
  vertical-align: middle;
}
.rendered-markdown li:has(input[type="checkbox"]) {
  list-style-type: none;
}
::-ms-clear {
  display: none;
}
.monaco-editor .editor-widget input {
  color: inherit;
}
.monaco-editor {
  overflow: visible;
  position: relative;
  -webkit-text-size-adjust: 100%;
  color: var(--vscode-editor-foreground);
}
.monaco-editor,
.monaco-editor-background {
  background-color: var(--vscode-editor-background);
}
.monaco-editor .rangeHighlight {
  background-color: var(--vscode-editor-rangeHighlightBackground);
  border: 1px solid var(--vscode-editor-rangeHighlightBorder);
  box-sizing: border-box;
}
.monaco-editor.hc-black .rangeHighlight,
.monaco-editor.hc-light .rangeHighlight {
  border-style: dotted;
}
.monaco-editor .symbolHighlight {
  background-color: var(--vscode-editor-symbolHighlightBackground);
  border: 1px solid var(--vscode-editor-symbolHighlightBorder);
  box-sizing: border-box;
}
.monaco-editor.hc-black .symbolHighlight,
.monaco-editor.hc-light .symbolHighlight {
  border-style: dotted;
}
.monaco-editor .overflow-guard {
  overflow: hidden;
  position: relative;
}
.monaco-editor .view-overlays {
  position: absolute;
  top: 0;
}
.monaco-editor .squiggly-error {
  border-bottom: 4px double var(--vscode-editorError-border);
}
.monaco-editor .squiggly-error:before {
  background: var(--vscode-editorError-background);
  content: "";
  display: block;
  height: 100%;
  width: 100%;
}
.monaco-editor .squiggly-warning {
  border-bottom: 4px double var(--vscode-editorWarning-border);
}
.monaco-editor .squiggly-warning:before {
  background: var(--vscode-editorWarning-background);
  content: "";
  display: block;
  height: 100%;
  width: 100%;
}
.monaco-editor .squiggly-info {
  border-bottom: 4px double var(--vscode-editorInfo-border);
}
.monaco-editor .squiggly-info:before {
  background: var(--vscode-editorInfo-background);
  content: "";
  display: block;
  height: 100%;
  width: 100%;
}
.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;
  text-decoration-color: var(--vscode-editor-foreground, inherit);
}
.monaco-component.multiDiffEditor {
  background: var(--vscode-multiDiffEditor-background);
  overflow-y: hidden;
}
.monaco-component.multiDiffEditor .focused {
  --vscode-multiDiffEditor-border: var(--vscode-focusBorder);
}
.monaco-component.multiDiffEditor .multiDiffEntry {
  display: flex;
  flex: 1;
  flex-direction: column;
  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 {
  background: var(--vscode-editor-background);
  z-index: 1000;
}
.monaco-component.multiDiffEditor .multiDiffEntry .header:not(.collapsed) .header-content {
  border-bottom: 1px solid var(--vscode-sideBarSectionHeader-border);
}
.monaco-component.multiDiffEditor .multiDiffEntry .header .header-content {
  align-items: center;
  background: var(--vscode-multiDiffEditor-headerBackground);
  border-left: 1px solid var(--vscode-multiDiffEditor-border);
  border-right: 1px solid var(--vscode-multiDiffEditor-border);
  border-top: 1px solid var(--vscode-multiDiffEditor-border);
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  color: var(--vscode-foreground);
  display: flex;
  margin: 8px 8px 0;
  padding: 8px 5px;
}
.monaco-component.multiDiffEditor .multiDiffEntry .header .header-content.shadow {
  box-shadow: var(--vscode-scrollbar-shadow) 0 6px 6px -6px;
}
.monaco-component.multiDiffEditor .multiDiffEntry .header .header-content .file-path {
  display: flex;
  flex: 1;
  min-width: 0;
}
.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 {
  flex: 1;
  min-width: 0;
  text-overflow: ellipsis;
}
.monaco-component.multiDiffEditor .multiDiffEntry .header .header-content .file-path .status {
  font-weight: 600;
  line-height: 22px;
  margin: 0 10px;
  opacity: 0.75;
}
.monaco-component.multiDiffEditor .multiDiffEntry .header .header-content .actions {
  padding: 0 8px;
}
.monaco-component.multiDiffEditor .multiDiffEntry .editorParent {
  border-bottom: 1px solid var(--vscode-multiDiffEditor-border);
  border-left: 1px solid var(--vscode-multiDiffEditor-border);
  border-radius: 2px;
  border-right: 1px solid var(--vscode-multiDiffEditor-border);
  display: flex;
  flex: 1;
  flex-direction: column;
  margin-left: 8px;
  margin-right: 8px;
  overflow: hidden;
}
.monaco-component.multiDiffEditor .multiDiffEntry .editorContainer {
  flex: 1;
}
.monaco-editor .selection-anchor {
  background-color: #007acc;
  width: 2px !important;
}
.monaco-editor .bracket-match {
  background-color: var(--vscode-editorBracketMatch-background);
  border: 1px solid var(--vscode-editorBracketMatch-border);
  box-sizing: border-box;
}
.monaco-editor .lightBulbWidget {
  align-items: center;
  display: flex;
  justify-content: center;
}
.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 {
  position: relative;
  z-index: 2;
}
.monaco-editor .lightBulbWidget:after {
  background-color: var(--vscode-editor-background);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  opacity: 0.3;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.monaco-editor .codelens-decoration {
  color: var(--vscode-editorCodeLens-foreground);
  display: inline-block;
  font-family: var(--vscode-editorCodeLens-fontFamily), var(--vscode-editorCodeLens-fontFamilyDefault);
  font-feature-settings: var(--vscode-editorCodeLens-fontFeatureSettings);
  font-size: var(--vscode-editorCodeLens-fontSize);
  line-height: var(--vscode-editorCodeLens-lineHeight);
  overflow: hidden;
  padding-right: calc(var(--vscode-editorCodeLens-fontSize) * 0.5);
  text-overflow: ellipsis;
  white-space: nowrap;
}
.monaco-editor .codelens-decoration > a,
.monaco-editor .codelens-decoration > span {
  user-select: none;
  -webkit-user-select: none;
  vertical-align: sub;
  white-space: nowrap;
}
.monaco-editor .codelens-decoration > a {
  text-decoration: none;
}
.monaco-editor .codelens-decoration > a:hover {
  cursor: pointer;
}
.monaco-editor .codelens-decoration > a:hover,
.monaco-editor .codelens-decoration > a:hover .codicon {
  color: var(--vscode-editorLink-activeForeground) !important;
}
.monaco-editor .codelens-decoration .codicon {
  color: currentColor !important;
  color: var(--vscode-editorCodeLens-foreground);
  font-size: var(--vscode-editorCodeLens-fontSize);
  line-height: var(--vscode-editorCodeLens-lineHeight);
  vertical-align: middle;
}
.monaco-editor .codelens-decoration > a:hover .codicon:before {
  cursor: pointer;
}
@keyframes fadein {
  0% {
    opacity: 0;
    visibility: visible;
  }
  to {
    opacity: 1;
  }
}
.monaco-editor .codelens-decoration.fadein {
  animation: fadein 0.1s linear;
}
.colorpicker-widget {
  height: 190px;
  user-select: none;
  -webkit-user-select: none;
}
.colorpicker-color-decoration,
.hc-light .colorpicker-color-decoration {
  border: 0.1em solid #000;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  height: 0.8em;
  line-height: 0.8em;
  margin: 0.1em 0.2em 0;
  width: 0.8em;
}
.hc-black .colorpicker-color-decoration,
.vs-dark .colorpicker-color-decoration {
  border: 0.1em solid #eee;
}
.colorpicker-header {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAZdEVYdFNvZnR3YXJlAHBhaW50Lm5ldCA0LjAuMTZEaa/1AAAAHUlEQVQYV2PYvXu3JAi7uLiAMaYAjAGTQBPYLQkAa/0Zef3qRswAAAAASUVORK5CYII=);
  background-size: 9px 9px;
  display: flex;
  height: 24px;
  image-rendering: pixelated;
  position: relative;
}
.colorpicker-header .picked-color {
  align-items: center;
  color: #fff;
  cursor: pointer;
  display: flex;
  flex: 1;
  justify-content: center;
  line-height: 24px;
  overflow: hidden;
  white-space: nowrap;
  width: 240px;
}
.colorpicker-header .picked-color .picked-color-presentation {
  margin-left: 5px;
  margin-right: 5px;
  white-space: nowrap;
}
.colorpicker-header .picked-color .codicon {
  color: inherit;
  font-size: 14px;
}
.colorpicker-header .picked-color.light {
  color: #000;
}
.colorpicker-header .original-color {
  cursor: pointer;
  width: 74px;
  z-index: inherit;
}
.standalone-colorpicker {
  background-color: var(--vscode-editorHoverWidget-background);
  border: 1px solid var(--vscode-editorHoverWidget-border);
  color: var(--vscode-editorHoverWidget-foreground);
}
.colorpicker-header.standalone-colorpicker {
  border-bottom: none;
}
.colorpicker-header .close-button {
  background-color: var(--vscode-editorHoverWidget-background);
  border-left: 1px solid var(--vscode-editorHoverWidget-border);
  cursor: pointer;
}
.colorpicker-header .close-button-inner-div {
  height: 100%;
  text-align: center;
  width: 100%;
}
.colorpicker-header .close-button-inner-div:hover {
  background-color: var(--vscode-toolbar-hoverBackground);
}
.colorpicker-header .close-icon {
  padding: 3px;
}
.colorpicker-body {
  display: flex;
  padding: 8px;
  position: relative;
}
.colorpicker-body .saturation-wrap {
  flex: 1;
  height: 150px;
  min-width: 220px;
  overflow: hidden;
  position: relative;
}
.colorpicker-body .saturation-box {
  height: 150px;
  position: absolute;
}
.colorpicker-body .saturation-selection {
  border: 1px solid #fff;
  border-radius: 100%;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
  height: 9px;
  margin: -5px 0 0 -5px;
  position: absolute;
  width: 9px;
}
.colorpicker-body .strip {
  height: 150px;
  width: 25px;
}
.colorpicker-body .standalone-strip {
  height: 122px;
  width: 25px;
}
.colorpicker-body .hue-strip {
  background: linear-gradient(180deg, red 0, #ff0 17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, red);
  cursor: grab;
  margin-left: 8px;
  position: relative;
}
.colorpicker-body .opacity-strip {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAZdEVYdFNvZnR3YXJlAHBhaW50Lm5ldCA0LjAuMTZEaa/1AAAAHUlEQVQYV2PYvXu3JAi7uLiAMaYAjAGTQBPYLQkAa/0Zef3qRswAAAAASUVORK5CYII=);
  background-size: 9px 9px;
  cursor: grab;
  image-rendering: pixelated;
  margin-left: 8px;
  position: relative;
}
.colorpicker-body .strip.grabbing {
  cursor: grabbing;
}
.colorpicker-body .slider {
  border: 1px solid hsla(0, 0%, 100%, 0.71);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.85);
  box-sizing: border-box;
  height: 4px;
  left: -2px;
  position: absolute;
  top: 0;
  width: calc(100% + 4px);
}
.colorpicker-body .strip .overlay {
  height: 150px;
  pointer-events: none;
}
.colorpicker-body .standalone-strip .standalone-overlay {
  height: 122px;
  pointer-events: none;
}
.standalone-colorpicker-body {
  border: 1px solid transparent;
  border-bottom: 1px solid var(--vscode-editorHoverWidget-border);
  display: block;
  overflow: hidden;
}
.colorpicker-body .insert-button {
  background: var(--vscode-button-background);
  border: none;
  border-radius: 2px;
  bottom: 8px;
  color: var(--vscode-button-foreground);
  cursor: pointer;
  height: 20px;
  padding: 0;
  position: absolute;
  right: 8px;
  width: 58px;
}
.colorpicker-body .insert-button:hover {
  background: var(--vscode-button-hoverBackground);
}
.monaco-editor.hc-light .dnd-target,
.monaco-editor.vs .dnd-target {
  border-right: 2px dotted #000;
  color: #fff;
}
.monaco-editor.vs-dark .dnd-target {
  border-right: 2px dotted #aeafad;
  color: #51504f;
}
.monaco-editor.hc-black .dnd-target {
  border-right: 2px dotted #fff;
  color: #000;
}
.monaco-editor.hc-black.mac.mouse-default .view-lines,
.monaco-editor.hc-light.mac.mouse-default .view-lines,
.monaco-editor.mouse-default .view-lines,
.monaco-editor.vs-dark.mac.mouse-default .view-lines {
  cursor: default;
}
.monaco-editor.hc-black.mac.mouse-copy .view-lines,
.monaco-editor.hc-light.mac.mouse-copy .view-lines,
.monaco-editor.mouse-copy .view-lines,
.monaco-editor.vs-dark.mac.mouse-copy .view-lines {
  cursor: copy;
}
.post-edit-widget {
  background-color: var(--vscode-editorWidget-background);
  border: 1px solid var(--vscode-widget-border, transparent);
  border-radius: 4px;
  box-shadow: 0 0 8px 2px var(--vscode-widget-shadow);
  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;
}
.monaco-editor .findOptionsWidget {
  border: 2px solid var(--vscode-contrastBorder);
}
.monaco-editor .find-widget,
.monaco-editor .findOptionsWidget {
  background-color: var(--vscode-editorWidget-background);
  box-shadow: 0 0 8px 2px var(--vscode-widget-shadow);
  color: var(--vscode-editorWidget-foreground);
}
.monaco-editor .find-widget {
  border-bottom: 1px solid var(--vscode-widget-border);
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-left: 1px solid var(--vscode-widget-border);
  border-right: 1px solid var(--vscode-widget-border);
  box-sizing: border-box;
  height: 33px;
  line-height: 19px;
  overflow: hidden;
  padding: 0 4px;
  position: absolute;
  transform: translateY(calc(-100% - 10px));
  transition: transform 0.2s linear;
  z-index: 35;
}
.monaco-workbench.reduce-motion .monaco-editor .find-widget {
  transition: transform 0ms 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-color: var(--vscode-focusBorder);
  outline-offset: -1px;
}
.monaco-editor .find-widget .monaco-inputbox .input {
  background-color: transparent;
  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 {
  display: flex;
  font-size: 12px;
  margin: 3px 25px 0 17px;
}
.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-bottom: 2px;
  padding-top: 2px;
}
.monaco-editor .find-widget > .find-part .find-actions,
.monaco-editor .find-widget > .replace-part .replace-actions {
  align-items: center;
  display: flex;
  height: 25px;
}
.monaco-editor .find-widget .monaco-findInput {
  display: flex;
  flex: 1;
  vertical-align: middle;
}
.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 {
  box-sizing: border-box;
  display: flex;
  flex: initial;
  height: 25px;
  line-height: 23px;
  margin: 0 0 0 3px;
  padding: 2px 0 0 2px;
  text-align: center;
  vertical-align: middle;
}
.monaco-editor .find-widget .button {
  align-items: center;
  background-position: 50%;
  background-repeat: no-repeat;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  flex: initial;
  height: 16px;
  justify-content: center;
  margin-left: 3px;
  padding: 3px;
  width: 16px;
}
.monaco-editor .find-widget .codicon-find-selection {
  border-radius: 5px;
  height: 22px;
  padding: 3px;
  width: 22px;
}
.monaco-editor .find-widget .button.left {
  margin-left: 0;
  margin-right: 3px;
}
.monaco-editor .find-widget .button.wide {
  padding: 1px 6px;
  top: -1px;
  width: auto;
}
.monaco-editor .find-widget .button.toggle {
  border-radius: 0;
  box-sizing: border-box;
  height: 100%;
  left: 3px;
  position: absolute;
  top: 0;
  width: 18px;
}
.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 {
  display: flex;
  flex: auto;
  flex-grow: 0;
  flex-shrink: 0;
  position: relative;
  vertical-align: middle;
}
.monaco-editor .find-widget > .replace-part > .monaco-findInput > .controls {
  position: absolute;
  right: 2px;
  top: 3px;
}
.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.next,
.monaco-editor .find-widget.collapsed-find-widget .button.previous,
.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;
  animation-name: inherit !important;
  background-color: var(--vscode-editor-findMatchHighlightBackground);
}
.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 {
  left: 2px;
  position: relative;
  top: 1px;
}
.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.findMatch {
  background-color: var(--vscode-editor-findMatchHighlightBackground);
}
.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;
  right: 4px;
  top: 5px;
}
.monaco-editor .margin-view-overlays .codicon-folding-collapsed,
.monaco-editor .margin-view-overlays .codicon-folding-expanded,
.monaco-editor .margin-view-overlays .codicon-folding-manual-collapsed,
.monaco-editor .margin-view-overlays .codicon-folding-manual-expanded {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 140%;
  justify-content: center;
  margin-left: 2px;
  opacity: 0;
  transition: opacity 0.5s;
}
.monaco-workbench.reduce-motion .monaco-editor .margin-view-overlays .codicon-folding-collapsed,
.monaco-workbench.reduce-motion .monaco-editor .margin-view-overlays .codicon-folding-expanded,
.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 {
  transition: initial;
}
.monaco-editor .margin-view-overlays .codicon.alwaysShowFoldIcons,
.monaco-editor .margin-view-overlays .codicon.codicon-folding-collapsed,
.monaco-editor .margin-view-overlays .codicon.codicon-folding-manual-collapsed,
.monaco-editor .margin-view-overlays:hover .codicon {
  opacity: 1;
}
.monaco-editor .inline-folded:after {
  color: grey;
  content: "\22EF";
  cursor: pointer;
  display: inline;
  line-height: 1em;
  margin: 0.1em 0.2em 0;
}
.monaco-editor .folded-background {
  background-color: var(--vscode-editor-foldBackground);
}
.monaco-editor .cldr.codicon.codicon-folding-collapsed,
.monaco-editor .cldr.codicon.codicon-folding-expanded,
.monaco-editor .cldr.codicon.codicon-folding-manual-collapsed,
.monaco-editor .cldr.codicon.codicon-folding-manual-expanded {
  color: var(--vscode-editorGutter-foldingControlForeground) !important;
}
.monaco-editor .peekview-widget .head .peekview-title .severity-icon {
  display: inline-block;
  margin-right: 4px;
  vertical-align: text-top;
}
.monaco-editor .marker-widget {
  text-overflow: ellipsis;
  white-space: nowrap;
}
.monaco-editor .marker-widget > .stale {
  font-style: italic;
  opacity: 0.6;
}
.monaco-editor .marker-widget .title {
  display: inline-block;
  padding-right: 5px;
}
.monaco-editor .marker-widget .descriptioncontainer {
  padding: 8px 12px 0 20px;
  position: absolute;
  user-select: text;
  -webkit-user-select: text;
  white-space: pre;
}
.monaco-editor .marker-widget .descriptioncontainer .message {
  display: flex;
  flex-direction: column;
}
.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: 0.6;
}
.monaco-editor .marker-widget .descriptioncontainer .message a.code-link {
  color: inherit;
  opacity: 0.6;
}
.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 {
  border-bottom: 1px solid transparent;
  color: var(--vscode-textLink-activeForeground);
  text-decoration: underline;
  text-underline-position: under;
}
.monaco-editor .marker-widget .descriptioncontainer .filename {
  color: var(--vscode-textLink-activeForeground);
  cursor: pointer;
}
.monaco-editor .goto-definition-link {
  color: var(--vscode-editorLink-activeForeground) !important;
  cursor: pointer;
  text-decoration: underline;
}
.monaco-editor .zone-widget .zone-widget-container.reference-zone-widget {
  border-bottom-width: 1px;
  border-top-width: 1px;
}
.monaco-editor .reference-zone-widget .inline {
  display: inline-block;
  vertical-align: top;
}
.monaco-editor .reference-zone-widget .messages {
  height: 100%;
  padding: 3em 0;
  text-align: center;
  width: 100%;
}
.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 {
  overflow: hidden;
  text-overflow: ellipsis;
}
.monaco-editor .reference-zone-widget .ref-tree .reference-file {
  color: var(--vscode-peekViewResult-fileForeground);
  display: inline-flex;
  height: 100%;
  width: 100%;
}
.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 .inputarea.ime-input,
.monaco-editor .reference-zone-widget .preview .monaco-editor .monaco-editor-background {
  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: 700;
}
.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 {
  background-color: var(--vscode-editorHoverWidget-background);
  border: 1px solid var(--vscode-editorHoverWidget-border);
  border-radius: 3px;
  color: var(--vscode-editorHoverWidget-foreground);
}
.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 .actions {
  background-color: var(--vscode-editorHoverWidget-statusBarBackground);
}
.monaco-editor .monaco-hover code {
  background-color: var(--vscode-textCodeBlock-background);
}
.monaco-editor.vs .valueSetReplacement {
  outline: solid 2px var(--vscode-editorBracketMatch-border);
}
.monaco-editor .suggest-preview-additional-widget {
  white-space: nowrap;
}
.monaco-editor .suggest-preview-additional-widget .content-spacer {
  color: transparent;
  white-space: pre;
}
.monaco-editor .suggest-preview-additional-widget .button {
  cursor: pointer;
  display: inline-block;
  text-decoration: underline;
  text-underline-position: under;
}
.monaco-editor .ghost-text-hidden {
  font-size: 0;
  opacity: 0;
}
.monaco-editor .ghost-text-decoration,
.monaco-editor .suggest-preview-text .ghost-text {
  font-style: italic;
}
.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 .inlineSuggestionsHints.withBorder {
  background-color: var(--vscode-editorHoverWidget-background);
  border: 1px solid var(--vscode-editorHoverWidget-border);
  color: var(--vscode-editorHoverWidget-foreground);
  z-index: 39;
}
.monaco-editor .inlineSuggestionsHints a,
.monaco-editor .inlineSuggestionsHints a:hover {
  color: var(--vscode-foreground);
}
.monaco-editor .inlineSuggestionsHints .keybinding {
  display: flex;
  margin-left: 4px;
  opacity: 0.6;
}
.monaco-editor .inlineSuggestionsHints .keybinding .monaco-keybinding-key {
  font-size: 8px;
  padding: 2px 3px;
}
.monaco-editor .inlineSuggestionsHints .availableSuggestionCount a {
  display: flex;
  justify-content: center;
  min-width: 19px;
}
.monaco-editor .inlineSuggestionStatusBarItemLabel {
  margin-right: 2px;
}
.monaco-editor .inline-edit-remove {
  background-color: var(--vscode-editorGhostText-background);
  font-style: italic;
  text-decoration: line-through;
}
.monaco-editor .inline-edit-remove.backgroundColoring {
  background-color: var(--vscode-diffEditor-removedLineBackground);
}
.monaco-editor .inline-edit-hidden {
  font-size: 0;
  opacity: 0;
}
.monaco-editor .inline-edit-decoration,
.monaco-editor .suggest-preview-text .inline-edit {
  font-style: italic;
}
.monaco-editor .inline-completion-text-to-replace {
  text-decoration: underline;
  text-underline-position: under;
}
.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 {
  background-color: var(--vscode-editorHoverWidget-background);
  border: 1px solid var(--vscode-editorHoverWidget-border);
  color: var(--vscode-editorHoverWidget-foreground);
  z-index: 39;
}
.monaco-editor .inlineEditHints a,
.monaco-editor .inlineEditHints a:hover {
  color: var(--vscode-foreground);
}
.monaco-editor .inlineEditHints .keybinding {
  display: flex;
  margin-left: 4px;
  opacity: 0.6;
}
.monaco-editor .inlineEditHints .keybinding .monaco-keybinding-key {
  font-size: 8px;
  padding: 2px 3px;
}
.monaco-editor .inlineEditStatusBarItemLabel {
  margin-right: 2px;
}
.inline-editor-progress-decoration {
  display: inline-block;
  height: 1em;
  width: 1em;
}
.inline-progress-widget {
  align-items: center;
  display: flex !important;
  justify-content: center;
}
.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: "\ea76";
}
.monaco-editor .linked-editing-decoration {
  background-color: var(--vscode-editor-linkedEditingBackground);
  min-width: 1px;
}
.monaco-editor .detected-link,
.monaco-editor .detected-link-active {
  text-decoration: underline;
  text-underline-position: under;
}
.monaco-editor .detected-link-active {
  color: var(--vscode-editorLink-activeForeground) !important;
  cursor: pointer;
}
.monaco-editor .monaco-editor-overlaymessage {
  padding-bottom: 8px;
  z-index: 10000;
}
.monaco-editor .monaco-editor-overlaymessage.below {
  padding-bottom: 0;
  padding-top: 8px;
  z-index: 10000;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.monaco-editor .monaco-editor-overlaymessage.fadeIn {
  animation: fadeIn 0.15s ease-out;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.monaco-editor .monaco-editor-overlaymessage.fadeOut {
  animation: fadeOut 0.1s ease-out;
}
.monaco-editor .monaco-editor-overlaymessage .message {
  background-color: var(--vscode-editorHoverWidget-background);
  border: 1px solid var(--vscode-inputValidation-infoBorder);
  border-radius: 3px;
  color: var(--vscode-editorHoverWidget-foreground);
  padding: 2px 4px;
}
.monaco-editor .monaco-editor-overlaymessage .message p {
  margin-block: 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 {
  border: 8px solid transparent;
  height: 0 !important;
  left: 2px;
  position: absolute;
  width: 0 !important;
  z-index: 1000;
}
.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.below .anchor.below,
.monaco-editor .monaco-editor-overlaymessage:not(.below) .anchor.top {
  display: none;
}
.monaco-editor .monaco-editor-overlaymessage.below .anchor.top {
  display: inherit;
  top: -8px;
}
.monaco-editor .parameter-hints-widget {
  background-color: var(--vscode-editorHoverWidget-background);
  border: 1px solid var(--vscode-editorHoverWidget-border);
  color: var(--vscode-editorHoverWidget-foreground);
  cursor: default;
  display: flex;
  flex-direction: column;
  line-height: 1.5em;
  z-index: 39;
}
.hc-black .monaco-editor .parameter-hints-widget,
.hc-light .monaco-editor .parameter-hints-widget {
  border-width: 2px;
}
.monaco-editor .parameter-hints-widget > .phwrapper {
  display: flex;
  flex-direction: row;
  max-width: 440px;
}
.monaco-editor .parameter-hints-widget.multiple {
  min-height: 3.3em;
  padding: 0;
}
.monaco-editor .parameter-hints-widget.multiple .body:before {
  border-left: 1px solid var(--vscode-editorHoverWidget-border);
  content: "";
  display: block;
  height: 100%;
  opacity: 0.5;
  position: absolute;
}
.monaco-editor .parameter-hints-widget p,
.monaco-editor .parameter-hints-widget ul {
  margin: 8px 0;
}
.monaco-editor .parameter-hints-widget .body,
.monaco-editor .parameter-hints-widget .monaco-scrollable-element {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 100%;
}
.monaco-editor .parameter-hints-widget .signature {
  padding: 4px 5px;
  position: relative;
}
.monaco-editor .parameter-hints-widget .signature.has-docs:after {
  border-bottom: 1px solid var(--vscode-editorHoverWidget-border);
  content: "";
  display: block;
  left: 0;
  opacity: 0.5;
  padding-top: 4px;
  position: absolute;
  width: 100%;
}
.monaco-editor .parameter-hints-widget .docs {
  padding: 0 10px 0 5px;
  white-space: pre-wrap;
}
.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: normal;
}
.monaco-editor .parameter-hints-widget .docs code {
  background-color: var(--vscode-textCodeBlock-background);
  border-radius: 3px;
  font-family: var(--monaco-monospace-font);
  padding: 0 0.4em;
}
.monaco-editor .parameter-hints-widget .docs .code,
.monaco-editor .parameter-hints-widget .docs .monaco-tokenized-source {
  white-space: pre-wrap;
}
.monaco-editor .parameter-hints-widget .controls {
  align-items: center;
  display: none;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 22px;
}
.monaco-editor .parameter-hints-widget.multiple .controls {
  display: flex;
  padding: 0 2px;
}
.monaco-editor .parameter-hints-widget.multiple .button {
  background-repeat: no-repeat;
  cursor: pointer;
  height: 16px;
  width: 16px;
}
.monaco-editor .parameter-hints-widget .button.previous {
  bottom: 24px;
}
.monaco-editor .parameter-hints-widget .overloads {
  font-family: var(--monaco-monospace-font);
  height: 12px;
  line-height: 12px;
  text-align: center;
}
.monaco-editor .parameter-hints-widget .signature .parameter.active {
  color: var(--vscode-editorHoverWidget-highlightForeground);
  font-weight: 700;
}
.monaco-editor .parameter-hints-widget .documentation-parameter > .parameter {
  font-weight: 700;
  margin-right: 0.5em;
}
.monaco-editor .peekview-widget .head {
  box-sizing: border-box;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.monaco-editor .peekview-widget .head .peekview-title {
  align-items: baseline;
  display: flex;
  font-size: 13px;
  margin-left: 20px;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.monaco-editor .peekview-widget .head .peekview-title.clickable {
  cursor: pointer;
}
.monaco-editor .peekview-widget .head .peekview-title .dirname:not(:empty) {
  font-size: 0.9em;
  margin-left: 0.5em;
}
.monaco-editor .peekview-widget .head .peekview-title .dirname,
.monaco-editor .peekview-widget .head .peekview-title .filename,
.monaco-editor .peekview-widget .head .peekview-title .meta {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.monaco-editor .peekview-widget .head .peekview-title .meta:not(:empty):before {
  content: "-";
  padding: 0 0.3em;
}
.monaco-editor .peekview-widget .head .peekview-actions {
  flex: 1;
  padding-right: 2px;
  text-align: right;
}
.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 .rename-box {
  border-radius: 4px;
  color: inherit;
  z-index: 100;
}
.monaco-editor .rename-box.preview {
  padding: 4px 4px 0;
}
.monaco-editor .rename-box .rename-input {
  border-radius: 2px;
  padding: 3px;
  width: calc(100% - 8px);
}
.monaco-editor .rename-box .rename-label {
  display: none;
  opacity: 0.8;
}
.monaco-editor .rename-box.preview .rename-label {
  display: inherit;
}
.monaco-editor .snippet-placeholder {
  background-color: var(--vscode-editor-snippetTabstopHighlightBackground, transparent);
  min-width: 2px;
  outline-color: var(--vscode-editor-snippetTabstopHighlightBorder, transparent);
  outline-style: solid;
  outline-width: 1px;
}
.monaco-editor .finish-snippet-placeholder {
  background-color: var(--vscode-editor-snippetFinalTabstopHighlightBackground, transparent);
  outline-color: var(--vscode-editor-snippetFinalTabstopHighlightBorder, transparent);
  outline-style: solid;
  outline-width: 1px;
}
.monaco-editor .sticky-widget {
  overflow: hidden;
}
.monaco-editor .sticky-widget-line-numbers {
  background-color: inherit;
  float: left;
}
.monaco-editor .sticky-widget-lines-scrollable {
  background-color: inherit;
  display: inline-block;
  overflow: hidden;
  position: absolute;
  width: var(--vscode-editorStickyScroll-scrollableWidth);
}
.monaco-editor .sticky-widget-lines {
  background-color: inherit;
  position: absolute;
}
.monaco-editor .sticky-line-content,
.monaco-editor .sticky-line-number {
  background-color: inherit;
  color: var(--vscode-editorLineNumber-foreground);
  display: inline-block;
  position: absolute;
  white-space: nowrap;
}
.monaco-editor .sticky-line-number .codicon-folding-collapsed,
.monaco-editor .sticky-line-number .codicon-folding-expanded {
  float: right;
  transition: var(--vscode-editorStickyScroll-foldingOpacityTransition);
}
.monaco-editor .sticky-line-content {
  background-color: inherit;
  white-space: nowrap;
  width: var(--vscode-editorStickyScroll-scrollableWidth);
}
.monaco-editor .sticky-line-number-inner {
  display: inline-block;
  text-align: right;
}
.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 {
  background-color: var(--vscode-editorStickyScroll-background);
  box-shadow: var(--vscode-editorStickyScroll-shadow) 0 3px 2px -2px;
  width: 100%;
  z-index: 4;
}
.monaco-editor .sticky-widget.peek {
  background-color: var(--vscode-peekViewEditorStickyScroll-background);
}
.monaco-editor .suggest-widget {
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  width: 430px;
  z-index: 40;
}
.monaco-editor .suggest-widget.message {
  align-items: center;
  flex-direction: row;
}
.monaco-editor .suggest-details,
.monaco-editor .suggest-widget {
  background-color: var(--vscode-editorSuggestWidget-background);
  border-color: var(--vscode-editorSuggestWidget-border);
  border-style: solid;
  border-width: 1px;
  flex: 0 1 auto;
  width: 100%;
}
.monaco-editor.hc-black .suggest-details,
.monaco-editor.hc-black .suggest-widget,
.monaco-editor.hc-light .suggest-details,
.monaco-editor.hc-light .suggest-widget {
  border-width: 2px;
}
.monaco-editor .suggest-widget .suggest-status-bar {
  border-top: 1px solid var(--vscode-editorSuggestWidget-border);
  box-sizing: border-box;
  display: none;
  flex-flow: row nowrap;
  font-size: 80%;
  justify-content: space-between;
  overflow: hidden;
  padding: 0 4px;
  width: 100%;
}
.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: 0.3em;
}
.monaco-editor
  .suggest-widget.with-status-bar
  .monaco-list
  .monaco-list-row.focused.string-label
  > .contents
  > .main
  > .right
  > .readMore,
.monaco-editor .suggest-widget.with-status-bar .monaco-list .monaco-list-row > .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 {
  height: 100%;
  width: 100%;
}
.monaco-editor .suggest-widget .monaco-list {
  user-select: none;
  -webkit-user-select: none;
}
.monaco-editor .suggest-widget .monaco-list .monaco-list-row {
  background-position: 2px 2px;
  background-repeat: no-repeat;
  -mox-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  padding-right: 10px;
  touch-action: none;
  white-space: nowrap;
}
.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%;
  overflow: hidden;
  padding-left: 2px;
}
.monaco-editor .suggest-widget .monaco-list .monaco-list-row > .contents > .main {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: pre;
}
.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: 700;
}
.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;
  cursor: pointer;
  font-size: 14px;
  opacity: 1;
}
.monaco-editor .suggest-details > .monaco-scrollable-element > .body > .header > .codicon-close {
  position: absolute;
  right: 2px;
  top: 6px;
}
.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: 0.7;
}
.monaco-editor .suggest-widget .monaco-list .monaco-list-row > .contents > .main > .left > .signature-label {
  opacity: 0.6;
  overflow: hidden;
  text-overflow: ellipsis;
}
.monaco-editor .suggest-widget .monaco-list .monaco-list-row > .contents > .main > .left > .qualifier-label {
  align-self: center;
  font-size: 85%;
  line-height: normal;
  margin-left: 12px;
  opacity: 0.4;
  overflow: hidden;
  text-overflow: ellipsis;
}
.monaco-editor .suggest-widget .monaco-list .monaco-list-row > .contents > .main > .right > .details-label {
  font-size: 85%;
  margin-left: 1.1em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.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
  .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,
.monaco-editor
  .suggest-widget:not(.shows-details)
  .monaco-list
  .monaco-list-row.focused
  > .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 {
  display: inline-block;
  height: 18px;
  position: absolute;
  right: 10px;
  visibility: hidden;
  width: 18px;
}
.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: 0.66;
  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: 50%;
  background-repeat: no-repeat;
  background-size: 80%;
  display: block;
  height: 16px;
  margin-left: 2px;
  width: 16px;
}
.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;
  display: flex;
  margin-right: 4px;
}
.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: 0.1em solid #000;
  display: inline-block;
  height: 0.7em;
  margin: 0 0 0 0.3em;
  width: 0.7em;
}
.monaco-editor .suggest-details-container {
  z-index: 41;
}
.monaco-editor .suggest-details {
  color: var(--vscode-editorSuggestWidget-foreground);
  cursor: default;
  display: flex;
  flex-direction: column;
}
.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;
  height: 100%;
  width: 100%;
}
.monaco-editor .suggest-details > .monaco-scrollable-element > .body > .header > .type {
  flex: 2;
  margin: 0 24px 0 0;
  opacity: 0.7;
  overflow: hidden;
  padding: 4px 0 12px 5px;
  text-overflow: ellipsis;
  white-space: pre;
}
.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 {
  margin: 0;
  padding: 4px 5px;
  white-space: pre-wrap;
}
.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 {
  min-height: calc(1rem + 8px);
  padding: 0;
  white-space: normal;
}
.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 0.4em;
}
.monaco-editor .suggest-details ol,
.monaco-editor .suggest-details ul {
  padding-left: 20px;
}
.monaco-editor .suggest-details p code {
  font-family: var(--monaco-monospace-font);
}
.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-enum,
.monaco-editor .codicon.codicon-symbol-value,
.monaco-workbench .codicon.codicon-symbol-enum,
.monaco-workbench .codicon.codicon-symbol-value {
  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);
}
.editor-banner {
  background: var(--vscode-banner-background);
  box-sizing: border-box;
  cursor: default;
  display: flex;
  font-size: 12px;
  height: 26px;
  overflow: visible;
  width: 100%;
}
.editor-banner .icon-container {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  padding: 0 6px 0 10px;
}
.editor-banner .icon-container.custom-icon {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 16px;
  margin: 0 6px 0 10px;
  padding: 0;
  width: 16px;
}
.editor-banner .message-container {
  align-items: center;
  display: flex;
  line-height: 26px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.editor-banner .message-container p {
  margin-block-end: 0;
  margin-block-start: 0;
}
.editor-banner .message-actions-container {
  flex-grow: 1;
  flex-shrink: 0;
  line-height: 26px;
  margin: 0 4px;
}
.editor-banner .message-actions-container a.monaco-button {
  margin: 2px 8px;
  padding: 0 12px;
  width: inherit;
}
.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-editor .unicode-highlight {
  background-color: var(--vscode-editorUnicodeHighlight-background);
  border: 1px solid var(--vscode-editorUnicodeHighlight-border);
  box-sizing: border-box;
}
.monaco-editor .focused .selectionHighlight {
  background-color: var(--vscode-editor-selectionHighlightBackground);
  border: 1px solid var(--vscode-editor-selectionHighlightBorder);
  box-sizing: border-box;
}
.monaco-editor.hc-black .focused .selectionHighlight,
.monaco-editor.hc-light .focused .selectionHighlight {
  border-style: dotted;
}
.monaco-editor .wordHighlight {
  background-color: var(--vscode-editor-wordHighlightBackground);
  border: 1px solid var(--vscode-editor-wordHighlightBorder);
  box-sizing: border-box;
}
.monaco-editor.hc-black .wordHighlight,
.monaco-editor.hc-light .wordHighlight {
  border-style: dotted;
}
.monaco-editor .wordHighlightStrong {
  background-color: var(--vscode-editor-wordHighlightStrongBackground);
  border: 1px solid var(--vscode-editor-wordHighlightStrongBorder);
  box-sizing: border-box;
}
.monaco-editor.hc-black .wordHighlightStrong,
.monaco-editor.hc-light .wordHighlightStrong {
  border-style: dotted;
}
.monaco-editor .wordHighlightText {
  background-color: var(--vscode-editor-wordHighlightTextBackground);
  border: 1px solid var(--vscode-editor-wordHighlightTextBorder);
  box-sizing: border-box;
}
.monaco-editor.hc-black .wordHighlightText,
.monaco-editor.hc-light .wordHighlightText {
  border-style: dotted;
}
.monaco-editor .zone-widget {
  position: absolute;
  z-index: 10;
}
.monaco-editor .zone-widget .zone-widget-container {
  border-bottom-style: solid;
  border-bottom-width: 0;
  border-top-style: solid;
  border-top-width: 0;
  position: relative;
}
.monaco-editor .iPadShowKeyboard {
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MyIgaGVpZ2h0PSIzNiIgZmlsbD0ibm9uZSI+PGcgY2xpcC1wYXRoPSJ1cmwoI2EpIj48cGF0aCBmaWxsPSIjNDI0MjQyIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00OC4wMzYgNC4wMUg0LjAwOFYzMi4wM2g0NC4wMjh6TTQuMDA4LjAwOEE0LjAwMyA0LjAwMyAwIDAgMCAuMDA1IDQuMDFWMzIuMDNhNC4wMDMgNC4wMDMgMCAwIDAgNC4wMDMgNC4wMDJoNDQuMDI4YTQuMDAzIDQuMDAzIDAgMCAwIDQuMDAzLTQuMDAyVjQuMDFBNC4wMDMgNC4wMDMgMCAwIDAgNDguMDM2LjAwOHpNOC4wMSA4LjAxM2g0LjAwM3Y0LjAwM0g4LjAxem0xMi4wMDggMGgtNC4wMDJ2NC4wMDNoNC4wMDJ6bTQuMDAzIDBoNC4wMDJ2NC4wMDNoLTQuMDAyem0xMi4wMDggMGgtNC4wMDN2NC4wMDNoNC4wMDN6bTQuMDAyIDBoNC4wMDN2NC4wMDNINDAuMDN6bS0yNC4wMTUgOC4wMDVIOC4wMXY0LjAwM2g4LjAwNnptNC4wMDIgMGg0LjAwM3Y0LjAwM2gtNC4wMDN6bTEyLjAwOCAwaC00LjAwM3Y0LjAwM2g0LjAwM3ptMTIuMDA4IDB2NC4wMDNoLTguMDA1di00LjAwM3ptLTMyLjAyMSA4LjAwNUg4LjAxdjQuMDAzaDQuMDAzem00LjAwMyAwaDIwLjAxM3Y0LjAwM0gxNi4wMTZ6bTI4LjAxOCAwSDQwLjAzdjQuMDAzaDQuMDAzeiIgY2xpcC1ydWxlPSJldmVub2RkIi8+PC9nPjxkZWZzPjxjbGlwUGF0aCBpZD0iYSI+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTAgMGg1M3YzNkgweiIvPjwvY2xpcFBhdGg+PC9kZWZzPjwvc3ZnPg==)
    50% no-repeat;
  border: 4px solid #f6f6f6;
  border-radius: 4px;
  height: 36px;
  margin: 0;
  min-height: 0;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  resize: none;
  width: 58px;
}
.monaco-editor.vs-dark .iPadShowKeyboard {
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MyIgaGVpZ2h0PSIzNiIgZmlsbD0ibm9uZSI+PGcgY2xpcC1wYXRoPSJ1cmwoI2EpIj48cGF0aCBmaWxsPSIjQzVDNUM1IiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00OC4wMzYgNC4wMUg0LjAwOFYzMi4wM2g0NC4wMjh6TTQuMDA4LjAwOEE0LjAwMyA0LjAwMyAwIDAgMCAuMDA1IDQuMDFWMzIuMDNhNC4wMDMgNC4wMDMgMCAwIDAgNC4wMDMgNC4wMDJoNDQuMDI4YTQuMDAzIDQuMDAzIDAgMCAwIDQuMDAzLTQuMDAyVjQuMDFBNC4wMDMgNC4wMDMgMCAwIDAgNDguMDM2LjAwOHpNOC4wMSA4LjAxM2g0LjAwM3Y0LjAwM0g4LjAxem0xMi4wMDggMGgtNC4wMDJ2NC4wMDNoNC4wMDJ6bTQuMDAzIDBoNC4wMDJ2NC4wMDNoLTQuMDAyem0xMi4wMDggMGgtNC4wMDN2NC4wMDNoNC4wMDN6bTQuMDAyIDBoNC4wMDN2NC4wMDNINDAuMDN6bS0yNC4wMTUgOC4wMDVIOC4wMXY0LjAwM2g4LjAwNnptNC4wMDIgMGg0LjAwM3Y0LjAwM2gtNC4wMDN6bTEyLjAwOCAwaC00LjAwM3Y0LjAwM2g0LjAwM3ptMTIuMDA4IDB2NC4wMDNoLTguMDA1di00LjAwM3ptLTMyLjAyMSA4LjAwNUg4LjAxdjQuMDAzaDQuMDAzem00LjAwMyAwaDIwLjAxM3Y0LjAwM0gxNi4wMTZ6bTI4LjAxOCAwSDQwLjAzdjQuMDAzaDQuMDAzeiIgY2xpcC1ydWxlPSJldmVub2RkIi8+PC9nPjxkZWZzPjxjbGlwUGF0aCBpZD0iYSI+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTAgMGg1M3YzNkgweiIvPjwvY2xpcFBhdGg+PC9kZWZzPjwvc3ZnPg==)
    50% no-repeat;
  border: 4px solid #252526;
}
.monaco-editor .tokens-inspect-widget {
  background-color: var(--vscode-editorHoverWidget-background);
  border: 1px solid var(--vscode-editorHoverWidget-border);
  color: var(--vscode-editorHoverWidget-foreground);
  padding: 10px;
  user-select: text;
  -webkit-user-select: text;
  z-index: 50;
}
.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: 400;
}
.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);
}
.quick-input-widget {
  font-size: 13px;
}
.quick-input-widget .monaco-highlighted-label .highlight {
  color: #0066bf;
}
.vs .quick-input-widget .monaco-list-row.focused .monaco-highlighted-label .highlight {
  color: #9dddff;
}
.vs-dark .quick-input-widget .monaco-highlighted-label .highlight {
  color: #0097fb;
}
.hc-black .quick-input-widget .monaco-highlighted-label .highlight {
  color: #f38518;
}
.hc-light .quick-input-widget .monaco-highlighted-label .highlight {
  color: #0f4a85;
}
.monaco-keybinding > .monaco-keybinding-key {
  background-color: hsla(0, 0%, 87%, 0.4);
  border: 1px solid hsla(0, 0%, 80%, 0.4);
  border-bottom-color: hsla(0, 0%, 73%, 0.4);
  box-shadow: inset 0 -1px 0 hsla(0, 0%, 73%, 0.4);
  color: #555;
}
.hc-black .monaco-keybinding > .monaco-keybinding-key {
  background-color: transparent;
  border: 1px solid #6fc3df;
  box-shadow: none;
  color: #fff;
}
.hc-light .monaco-keybinding > .monaco-keybinding-key {
  background-color: transparent;
  border: 1px solid #0f4a85;
  box-shadow: none;
  color: #292929;
}
.vs-dark .monaco-keybinding > .monaco-keybinding-key {
  background-color: hsla(0, 0%, 50%, 0.17);
  border: 1px solid rgba(51, 51, 51, 0.6);
  border-bottom-color: rgba(68, 68, 68, 0.6);
  box-shadow: inset 0 -1px 0 rgba(68, 68, 68, 0.6);
  color: #ccc;
}
.monaco-editor {
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    Segoe WPC,
    Segoe UI,
    HelveticaNeue-Light,
    system-ui,
    Ubuntu,
    Droid Sans,
    sans-serif;
  --monaco-monospace-font: "SF Mono", Monaco, Menlo, Consolas, "Ubuntu Mono", "Liberation Mono", "DejaVu Sans Mono",
    "Courier New", monospace;
}
.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,
.monaco-editor.vs-dark .monaco-menu .monaco-action-bar.vertical .action-menu-item:focus .action-label,
.monaco-menu .monaco-action-bar.vertical .action-item .action-menu-item:focus .action-label {
  stroke-width: 1.2px;
}
.monaco-hover p {
  margin: 0;
}
.monaco-aria-container {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  top: 0;
  width: 1px;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
}
.monaco-diff-editor .synthetic-focus,
.monaco-diff-editor [tabindex="-1"]:focus,
.monaco-diff-editor [tabindex="0"]:focus,
.monaco-diff-editor button:focus,
.monaco-diff-editor input[type="button"]:focus,
.monaco-diff-editor input[type="checkbox"]:focus,
.monaco-diff-editor input[type="search"]:focus,
.monaco-diff-editor input[type="text"]:focus,
.monaco-diff-editor select:focus,
.monaco-diff-editor textarea:focus,
.monaco-editor {
  opacity: 1;
  outline-color: var(--vscode-focusBorder);
  outline-offset: -1px;
  outline-style: solid;
  outline-width: 1px;
}
.action-widget {
  background-color: var(--vscode-editorWidget-background);
  border: 1px solid var(--vscode-editorWidget-border) !important;
  border-radius: 0;
  border-radius: 2px;
  color: var(--vscode-editorWidget-foreground);
  display: block;
  font-size: 13px;
  max-width: 80vw;
  min-width: 160px;
  width: 100%;
  z-index: 40;
}
.context-view-block {
  z-index: -1;
}
.context-view-block,
.context-view-pointerBlock {
  cursor: auto;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
}
.context-view-pointerBlock {
  z-index: 2;
}
.action-widget .monaco-list {
  border: 0 !important;
  user-select: none;
  -webkit-user-select: none;
}
.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 {
  cursor: pointer;
  padding: 0 10px;
  touch-action: none;
  white-space: nowrap;
  width: 100%;
}
.action-widget .monaco-list .monaco-list-row.action.focused:not(.option-disabled) {
  background-color: var(--vscode-quickInputList-focusBackground) !important;
  color: var(--vscode-quickInputList-focusForeground);
  outline: 1px solid var(--vscode-menu-selectionBorder, transparent);
  outline-offset: -1px;
}
.action-widget .monaco-list-row.group-header {
  color: var(--vscode-descriptionForeground) !important;
  font-weight: 600;
}
.action-widget .monaco-list .group-header,
.action-widget .monaco-list .option-disabled,
.action-widget .monaco-list .option-disabled .focused,
.action-widget .monaco-list .option-disabled .focused:before,
.action-widget .monaco-list .option-disabled:before {
  cursor: default !important;
  -webkit-touch-callout: none;
  background-color: transparent !important;
  outline: 0 solid !important;
  -webkit-user-select: none;
  user-select: none;
}
.action-widget .monaco-list-row.action {
  align-items: center;
  display: flex;
  gap: 6px;
}
.action-widget .monaco-list-row.action.option-disabled,
.action-widget .monaco-list-row.action.option-disabled .codicon,
.action-widget .monaco-list:focus .monaco-list-row.focused.action.option-disabled,
.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 {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.action-widget .monaco-list-row.action .monaco-keybinding > .monaco-keybinding-key {
  background-color: var(--vscode-keybindingLabel-background);
  border-color: var(--vscode-keybindingLabel-border);
  border-bottom-color: var(--vscode-keybindingLabel-bottomBorder);
  border-radius: 3px;
  border-style: solid;
  border-width: 1px;
  box-shadow: inset 0 -1px 0 var(--vscode-widget-shadow);
  color: var(--vscode-keybindingLabel-foreground);
}
.action-widget .action-widget-action-bar {
  background-color: var(--vscode-editorHoverWidget-statusBarBackground);
  border-top: 1px solid var(--vscode-editorHoverWidget-border);
}
.action-widget .action-widget-action-bar:before {
  content: "";
  display: block;
  width: 100%;
}
.action-widget .action-widget-action-bar .actions-container {
  padding: 0 8px;
}
.action-widget-action-bar .action-label {
  color: var(--vscode-textLink-activeForeground);
  font-size: 12px;
  line-height: 22px;
  padding: 0;
  pointer-events: all;
}
.action-widget-action-bar .action-item {
  margin-right: 16px;
  pointer-events: none;
}
.action-widget-action-bar .action-label:hover {
  background-color: transparent !important;
}
.monaco-action-bar .actions-container.highlight-toggled .action-label.checked {
  background: var(--vscode-actionBar-toggledBackground) !important;
}
.monaco-action-bar .action-item.menu-entry .action-label.icon {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 16px;
  height: 16px;
  width: 16px;
}
.monaco-dropdown-with-default {
  border-radius: 5px;
  display: flex !important;
  flex-direction: row;
}
.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;
  height: 16px;
  width: 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-"] {
  font-size: 12px;
  line-height: 16px;
  margin-left: -3px;
  padding-left: 0;
  padding-right: 0;
}
.monaco-dropdown-with-default > .dropdown-action-container > .monaco-dropdown > .dropdown-label > .action-label {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 16px;
  display: block;
}
.monaco-link {
  color: var(--vscode-textLink-foreground);
}
.monaco-link:hover {
  color: var(--vscode-textLink-activeForeground);
}
.quick-input-widget {
  left: 50%;
  margin-left: -300px;
  position: absolute;
  width: 600px;
  z-index: 2550;
  -webkit-app-region: no-drag;
  border-radius: 6px;
}
.quick-input-titlebar {
  align-items: center;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  display: flex;
}
.quick-input-left-action-bar {
  display: flex;
  flex: 1;
  margin-left: 4px;
}
.quick-input-title {
  overflow: hidden;
  padding: 3px 0;
  text-align: center;
  text-overflow: ellipsis;
}
.quick-input-right-action-bar {
  display: flex;
  flex: 1;
  margin-right: 4px;
}
.quick-input-right-action-bar > .actions-container {
  justify-content: flex-end;
}
.quick-input-titlebar .monaco-action-bar .action-label.codicon {
  background-position: 50%;
  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 {
  display: flex;
  padding: 8px 6px 6px;
}
.quick-input-widget.hidden-input .quick-input-header {
  margin-bottom: 0;
  padding: 0;
}
.quick-input-and-message {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-width: 0;
  position: relative;
}
.quick-input-check-all {
  align-self: center;
  margin: 0;
}
.quick-input-filter {
  display: flex;
  flex-grow: 1;
  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 {
  left: -10000px;
  position: absolute;
}
.quick-input-count {
  align-items: center;
  align-self: center;
  display: flex;
  position: absolute;
  right: 4px;
}
.quick-input-count .monaco-count-badge {
  border-radius: 2px;
  line-height: normal;
  min-height: auto;
  padding: 2px 4px;
  vertical-align: middle;
}
.quick-input-action {
  margin-left: 6px;
}
.quick-input-action .monaco-text-button {
  align-items: center;
  display: flex;
  font-size: 11px;
  height: 25px;
  padding: 0 6px;
}
.quick-input-message {
  margin-top: -1px;
  overflow-wrap: break-word;
  padding: 5px;
}
.quick-input-message > .codicon {
  margin: 0 0.2em;
  vertical-align: text-bottom;
}
.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;
  overflow: hidden;
  padding-bottom: 5px;
}
.quick-input-list .monaco-scrollable-element {
  padding: 0 5px;
}
.quick-input-list .quick-input-list-entry {
  box-sizing: border-box;
  display: flex;
  height: 100%;
  overflow: hidden;
  padding: 0 6px;
}
.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 {
  display: flex;
  flex: 1;
  height: 100%;
  overflow: hidden;
}
.quick-input-list .quick-input-list-checkbox {
  align-self: center;
  margin: 0;
}
.quick-input-list .quick-input-list-icon {
  align-items: center;
  background-position: 0;
  background-repeat: no-repeat;
  background-size: 16px;
  display: flex;
  height: 22px;
  justify-content: center;
  padding-right: 6px;
  width: 16px;
}
.quick-input-list .quick-input-list-rows {
  display: flex;
  flex: 1;
  flex-direction: column;
  height: 100%;
  margin-left: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.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 {
  line-height: normal;
  opacity: 0.7;
  overflow: hidden;
  text-overflow: ellipsis;
}
.quick-input-list .monaco-highlighted-label .highlight {
  font-weight: 700;
}
.quick-input-list .quick-input-list-entry .quick-input-list-separator {
  margin-right: 4px;
}
.quick-input-list .quick-input-list-entry-action-bar {
  display: flex;
  flex: 0;
  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: 0 2px 2px;
}
.quick-input-list .quick-input-list-entry-action-bar {
  margin-right: 4px;
  margin-top: 1px;
}
.quick-input-list .monaco-list-row.focused .quick-input-list-entry-action-bar .action-label,
.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 {
  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 {
  font-size: 12px;
  font-weight: 600;
}
.extension-editor .codicon.codicon-error,
.extensions-viewlet > .extensions .codicon.codicon-error,
.markers-panel .marker-icon .codicon.codicon-error,
.markers-panel .marker-icon.error,
.monaco-editor .zone-widget .codicon.codicon-error,
.preferences-editor .codicon.codicon-error,
.text-search-provider-messages .providerMessage .codicon.codicon-error {
  color: var(--vscode-problemsErrorIcon-foreground);
}
.extension-editor .codicon.codicon-warning,
.extensions-viewlet > .extensions .codicon.codicon-warning,
.markers-panel .marker-icon .codicon.codicon-warning,
.markers-panel .marker-icon.warning,
.monaco-editor .zone-widget .codicon.codicon-warning,
.preferences-editor .codicon.codicon-warning,
.text-search-provider-messages .providerMessage .codicon.codicon-warning {
  color: var(--vscode-problemsWarningIcon-foreground);
}
.extension-editor .codicon.codicon-info,
.extensions-viewlet > .extensions .codicon.codicon-info,
.markers-panel .marker-icon .codicon.codicon-info,
.markers-panel .marker-icon.info,
.monaco-editor .zone-widget .codicon.codicon-info,
.preferences-editor .codicon.codicon-info,
.text-search-provider-messages .providerMessage .codicon.codicon-info {
  color: var(--vscode-problemsInfoIcon-foreground);
}

/* I can't have this start on line 1 it kills me */

.code-search .header {
}

.code-search .result-title-bar {
  display: flex;
  align-items: center;
  background: #e1f5fe;
  padding: 2px 32px;
}

.code-search .repo-name {
  font-size: 14px;
  margin: 0 12px;
  color: #757575;
}

.code-search .filename {
  font-size: 14px;
  font-weight: 600;
}

.code-search .filename:hover {
  text-decoration: underline;
}

.code-search .snippet {
  border-bottom: solid #e5e5e5 1px;
  padding: 2px 32px;
}

.code-search .code-line {
  margin: 2px 0;
}

.code-search .title-bar {
  display: flex;
  align-items: center;
  gap: 24px;
}

.code-search .search-input {
  margin: 0 16px 0 32px;
}

.code-search .snippet:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.code-search .spinner-center {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.code-search .highlight {
  background-color: #ceead6;
}

.code-search .cs-title {
  font-size: 32px;
  font-weight: 700;
  margin-left: 32px;
}

.code-search .form-bs {
  margin: 0;
  margin-block-end: 0;
  display: contents;
}

.code-search .searchbox {
  display: block;
  width: 400px;
  max-width: 100%;
  height: 40px;
  font-family: inherit;
  font-size: inherit;
  padding: 16px;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid gray;
  border-radius: 2px;
}

.code-search .no-results {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.code-search .icon {
  width: 180px;
  height: 180px;
}

.code-search .circle {
  width: 400px;
  height: 400px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.code-search ul {
  list-style: initial;
  margin: 16px 0;
  list-style-type: none;
}

.code-search ul li {
  margin-bottom: 16px;
}

.code-search .code-line:hover {
  background: #f5f5f5;
}

.code-search .more-button {
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px;
  cursor: pointer;
  font-size: 13px;
}

.code-search .more-button svg {
  width: 12px;
  height: 12px;
}

.code-search .more-button:hover {
  background: #f5f5f5;
}

.code-search .statsForNerds {
  color: #aaa;
  font-size: 0.8em;
  padding: 10px 10px 10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* EXECUTORS PAGE */

.executors-page .title {
  font-size: 32px;
  font-weight: 700;
}

.executors-page .executor-section {
  display: flex;
}

.executors-page .executor-section div {
  flex-grow: 1;
}

.executor-section div.executor-section-title {
  width: 200px;
  flex-grow: 0;
  flex-shrink: 0;
  text-align: left;
  margin-right: 16px;
  font-weight: 700;
}

.executor-section .executor-history-button {
  font-weight: 600;
  margin-top: 8px;
}

.executors-page .manage-keys-button {
  margin-top: 16px;
}

.executors-page hr {
  margin-top: 32px;
  border: 0;
  background-color: #eee;
  height: 1px;
}

.executors-page h1 {
  margin-top: 32px;
}

.executors-page h2 {
  margin-top: 32px;
}

.executors-page .credential-picker {
  margin-left: 16px;
}

.executors-page .organization-settings-button {
  margin-top: 16px;
}

.executors-page .banner {
  margin-top: 32px;
  margin-bottom: 32px;
  max-width: 600px;
}

.executors-page .executor-details {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.executors-page .executor-detail {
  display: flex;
  align-items: center;
  gap: 8px;
}

.executors-page .pool-size-warning {
  margin: 0;
  margin-top: 16px;
  max-width: initial;
  display: inline-flex;
}

.global-filter {
  display: flex;
  align-self: flex-start;
  transition: background-color 300ms;
  border-radius: 8px;
  font-size: 15px;
  margin-left: auto;

  --row-height: 40px;
}

.global-filter > * {
  flex-shrink: 0;
}

.global-filter .filter-menu-popup {
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
}

.global-filter .filter-menu-popup .text-input {
  height: 32px;
  min-width: 320px;
}

.global-filter .filter-menu-popup .input-row-title {
  font-weight: 600;
  font-size: 15px;
  min-width: 80px;
}

.global-filter .filter-menu-popup .option-groups-row {
  display: flex;
}

.global-filter .option-group-title {
  font-weight: 600;
  font-size: 15px;
  background: white;
  padding: 4px 16px;
}

.global-filter .option-group {
  padding: 4px 0;
  padding-right: 16px;
}

.global-filter .option-group-options {
  display: flex;
  flex-direction: column;
}

.global-filter .option-group-options label {
  padding: 4px 16px;
  cursor: pointer;
  white-space: nowrap;
  min-height: 24px;
  display: flex;
  align-items: center;
  user-select: none;
}

.global-filter .option-group-options label > :not(:last-child) {
  margin-right: 8px;
}

.global-filter .option-group-input {
  padding: 0 16px;
}

.global-filter .option-group-input button {
  width: 100%;
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.global-filter .status-badge {
  flex-grow: 1;
  border: 1px solid #eee;
  border-left: 4px solid var(--status-color);
  border-radius: 4px;
  padding: 2px 8px;
}

.global-filter .status-block {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background-color: var(--status-color);
}

.global-filter .success {
  --status-color: #8bc34a;
}
.global-filter .failure {
  --status-color: #f44336;
}
.global-filter .in-progress {
  --status-color: #03a9f4;
}
.global-filter .disconnected {
  --status-color: #aaa;
}

.global-filter .role-badge.DEFAULT {
  background: #eee;
}

.global-filter .square {
  width: var(--row-height);
  height: var(--row-height);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.global-filter .subtle-icon {
  opacity: 0.5;
}

.global-filter > :not(:last-child) {
  margin-right: 8px;
}

.global-filter .popup-wrapper {
  position: relative;
}

.global-filter .icon-text-button {
  max-height: var(--row-height);
}

.global-filter .icon-text-button > :not(:last-child) {
  margin-right: 8px;
}

.global-filter .filter-menu-button {
  max-width: 400px;
  flex-shrink: 1;
}

.global-filter .filter-menu-button .role-badge {
  font-size: 14px;
  font-weight: 500;
}

.global-filter .advanced-badge {
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  font-weight: 500;
  background-color: #eceff1;
  border: 1px solid #eee;
  border-left: 4px solid var(--status-color);
  border-radius: 20px;
  padding: 2px 8px;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.global-filter .advanced-badge svg {
  width: 12px;
  opacity: 0.5;
  margin-right: 4px;
  flex-shrink: 0;
}

.global-filter .filter-menu-button-label {
  color: #616161;
}

.global-filter .filter-menu-advanced-filter-toggle {
  padding: 16px 16px 0 16px;
  font-weight: 600;
  color: #9e9e9e;
  cursor: pointer;
}

.date-picker-button-wrapper.popup-wrapper {
  position: relative;
}

.date-picker-button-wrapper .date-picker-popup {
  border-radius: 8px;
  overflow: hidden;
}

.date-picker-button-wrapper .icon-text-button {
  max-height: var(--row-height);
}

.date-picker-button-wrapper .icon-text-button > :not(:last-child) {
  margin-right: 8px;
}

.rdrCalendarWrapper {
  box-sizing: border-box;
  background: #ffffff;
  display: inline-flex;
  flex-direction: column;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

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

.rdrDateDisplayItem {
  flex: 1 1;
  width: 0;
  text-align: center;
  color: inherit;
}

.rdrDateDisplayItem + .rdrDateDisplayItem {
  margin-left: 0.833em;
}

.rdrDateDisplayItem input {
  text-align: inherit;
}

.rdrDateDisplayItem input:disabled {
  cursor: default;
}

.rdrDateDisplayItemActive {
}

.rdrMonthAndYearWrapper {
  box-sizing: inherit;
  display: flex;
  justify-content: space-between;
}

.rdrMonthAndYearPickers {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rdrMonthPicker {
}

.rdrYearPicker {
}

.rdrNextPrevButton {
  box-sizing: inherit;
  cursor: pointer;
  outline: none;
}

.rdrPprevButton {
}

.rdrNextButton {
}

.rdrMonths {
  display: flex;
}

.rdrMonthsVertical {
  flex-direction: column;
}

.rdrMonthsHorizontal > div > div > div {
  display: flex;
  flex-direction: row;
}

.rdrMonth {
  width: 27.667em;
}

.rdrWeekDays {
  display: flex;
}

.rdrWeekDay {
  flex-basis: calc(100% / 7);
  box-sizing: inherit;
  text-align: center;
}

.rdrDays {
  display: flex;
  flex-wrap: wrap;
}

.rdrDateDisplayWrapper {
}

.rdrMonthName {
}

.rdrInfiniteMonths {
  overflow: auto;
}

.rdrDateRangeWrapper {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.rdrDateInput {
  position: relative;
}

.rdrDateInput input {
  outline: none;
}

.rdrDateInput .rdrWarning {
  position: absolute;
  font-size: 1.6em;
  line-height: 1.6em;
  top: 0;
  right: 0.25em;
  color: #ff0000;
}

.rdrDay {
  box-sizing: inherit;
  width: calc(100% / 7);
  position: relative;
  font: inherit;
  cursor: pointer;
}

.rdrDayNumber {
  display: block;
  position: relative;
}

.rdrDayNumber span {
  color: #1d2429;
}

.rdrDayDisabled {
  cursor: not-allowed;
}

@supports (-ms-ime-align: auto) {
  .rdrDay {
    flex-basis: 14.285% !important;
  }
}

.rdrSelected,
.rdrInRange,
.rdrStartEdge,
.rdrEndEdge {
  pointer-events: none;
}

.rdrInRange {
}

.rdrDayStartPreview,
.rdrDayInPreview,
.rdrDayEndPreview {
  pointer-events: none;
}

.rdrDayHovered {
}

.rdrDayActive {
}

.rdrDateRangePickerWrapper {
  display: inline-flex;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.rdrDefinedRangesWrapper {
}

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

.rdrStaticRange {
  font-size: inherit;
}

.rdrStaticRangeLabel {
}

.rdrInputRanges {
}

.rdrInputRange {
  display: flex;
}

.rdrInputRangeInput {
}

.rdrCalendarWrapper {
  color: #000000;
  font-size: 12px;
}

.rdrDateDisplayWrapper {
  background-color: rgb(239, 242, 247);
}

.rdrDateDisplay {
  margin: 0.833em;
}

.rdrDateDisplayItem {
  border-radius: 4px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.21);
  border: 1px solid transparent;
}

.rdrDateDisplayItem input {
  height: 2.5em;
  line-height: 2.5em;
  border: 0px;
  background: transparent;
  width: 100%;
  color: black;
  text-align: left;
  padding: 0 8px;
}

.rdrDateDisplayItem input::placeholder {
  color: #bdbdbd;
}

.rdrDateDisplayItemActive {
  border-color: currentColor;
}

.rdrDateDisplayItemActive input {
  color: black;
}

.rdrMonthAndYearWrapper {
  align-items: center;
  height: 60px;
  padding-top: 10px;
}

.rdrMonthAndYearPickers {
  font-weight: 600;
}

.rdrMonthAndYearPickers select {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  padding: 10px 30px 10px 10px;
  border-radius: 4px;
  outline: 0;
  color: #3e484f;
  background: url("data:image/svg+xml;utf8,<svg width='9px' height='6px' viewBox='0 0 9 6' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'><g id='Artboard' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' transform='translate(-636.000000, -171.000000)' fill-opacity='0.368716033'><g id='input' transform='translate(172.000000, 37.000000)' fill='%230E242F' fill-rule='nonzero'><g id='Group-9' transform='translate(323.000000, 127.000000)'><path d='M142.280245,7.23952813 C141.987305,6.92353472 141.512432,6.92361662 141.219585,7.23971106 C140.926739,7.5558055 140.926815,8.06821394 141.219755,8.38420735 L145.498801,13 L149.780245,8.38162071 C150.073185,8.0656273 150.073261,7.55321886 149.780415,7.23712442 C149.487568,6.92102998 149.012695,6.92094808 148.719755,7.23694149 L145.498801,10.7113732 L142.280245,7.23952813 Z' id='arrow'></path></g></g></g></svg>")
    no-repeat;
  background-position: right 8px center;
  cursor: pointer;
  text-align: center;
}

.rdrMonthAndYearPickers select:hover {
  background-color: rgba(0, 0, 0, 0.07);
}

.rdrMonthPicker,
.rdrYearPicker {
  margin: 0 5px;
}

.rdrNextPrevButton {
  display: block;
  width: 24px;
  height: 24px;
  margin: 0 0.833em;
  padding: 0;
  border: 0;
  border-radius: 5px;
  background: #eceff1;
}

.rdrNextPrevButton:hover {
  background: #e1e7f0;
}

.rdrNextPrevButton i {
  display: block;
  width: 0;
  height: 0;
  padding: 0;
  text-align: center;
  border-style: solid;
  margin: auto;
  transform: translate(-3px, 0px);
}

.rdrPprevButton i {
  border-width: 4px 6px 4px 4px;
  border-color: transparent rgb(52, 73, 94) transparent transparent;
  transform: translate(-3px, 0px);
}

.rdrNextButton i {
  margin: 0 0 0 7px;
  border-width: 4px 4px 4px 6px;
  border-color: transparent transparent transparent rgb(52, 73, 94);
  transform: translate(3px, 0px);
}

.rdrWeekDays {
  padding: 0 0.833em;
}

.rdrMonth {
  padding: 0 0.833em 1.666em 0.833em;
}

.rdrMonth .rdrWeekDays {
  padding: 0;
}

.rdrMonths.rdrMonthsVertical .rdrMonth:first-child .rdrMonthName {
  display: none;
}

.rdrWeekDay {
  font-weight: 400;
  line-height: 2.667em;
  color: rgb(132, 144, 149);
}

.rdrDay {
  background: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 0;
  padding: 0;
  line-height: 3em;
  height: 3em;
  text-align: center;
  color: #1d2429;
}

.rdrDay:focus {
  outline: 0;
}

.rdrDayNumber {
  outline: 0;
  font-weight: 300;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  top: 5px;
  bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rdrDayToday .rdrDayNumber span {
  font-weight: 500;
}

.rdrDayToday .rdrDayNumber span:after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #3d91ff;
}

.rdrDayToday:not(.rdrDayPassive) .rdrInRange ~ .rdrDayNumber span:after,
.rdrDayToday:not(.rdrDayPassive) .rdrStartEdge ~ .rdrDayNumber span:after,
.rdrDayToday:not(.rdrDayPassive) .rdrEndEdge ~ .rdrDayNumber span:after,
.rdrDayToday:not(.rdrDayPassive) .rdrSelected ~ .rdrDayNumber span:after {
  background: #fff;
}

.rdrDay:not(.rdrDayPassive) .rdrInRange ~ .rdrDayNumber span,
.rdrDay:not(.rdrDayPassive) .rdrStartEdge ~ .rdrDayNumber span,
.rdrDay:not(.rdrDayPassive) .rdrEndEdge ~ .rdrDayNumber span,
.rdrDay:not(.rdrDayPassive) .rdrSelected ~ .rdrDayNumber span {
  color: rgba(255, 255, 255, 0.85);
}

.rdrSelected,
.rdrInRange,
.rdrStartEdge,
.rdrEndEdge {
  background: currentColor;
  position: absolute;
  top: 5px;
  left: 0;
  right: 0;
  bottom: 5px;
}

.rdrSelected {
  left: 2px;
  right: 2px;
}

.rdrInRange {
}

.rdrStartEdge {
  border-top-left-radius: 1.042em;
  border-bottom-left-radius: 1.042em;
  left: 2px;
}

.rdrEndEdge {
  border-top-right-radius: 1.042em;
  border-bottom-right-radius: 1.042em;
  right: 2px;
}

.rdrSelected {
  border-radius: 1.042em;
}

.rdrDayStartOfMonth .rdrInRange,
.rdrDayStartOfMonth .rdrEndEdge,
.rdrDayStartOfWeek .rdrInRange,
.rdrDayStartOfWeek .rdrEndEdge {
  border-top-left-radius: 1.042em;
  border-bottom-left-radius: 1.042em;
  left: 2px;
}

.rdrDayEndOfMonth .rdrInRange,
.rdrDayEndOfMonth .rdrStartEdge,
.rdrDayEndOfWeek .rdrInRange,
.rdrDayEndOfWeek .rdrStartEdge {
  border-top-right-radius: 1.042em;
  border-bottom-right-radius: 1.042em;
  right: 2px;
}

.rdrDayStartOfMonth .rdrDayInPreview,
.rdrDayStartOfMonth .rdrDayEndPreview,
.rdrDayStartOfWeek .rdrDayInPreview,
.rdrDayStartOfWeek .rdrDayEndPreview {
  border-top-left-radius: 1.333em;
  border-bottom-left-radius: 1.333em;
  border-left-width: 1px;
  left: 0px;
}

.rdrDayEndOfMonth .rdrDayInPreview,
.rdrDayEndOfMonth .rdrDayStartPreview,
.rdrDayEndOfWeek .rdrDayInPreview,
.rdrDayEndOfWeek .rdrDayStartPreview {
  border-top-right-radius: 1.333em;
  border-bottom-right-radius: 1.333em;
  border-right-width: 1px;
  right: 0px;
}

.rdrDayStartPreview,
.rdrDayInPreview,
.rdrDayEndPreview {
  background: rgba(255, 255, 255, 0.09);
  position: absolute;
  top: 3px;
  left: 0px;
  right: 0px;
  bottom: 3px;
  pointer-events: none;
  border: 0px solid currentColor;
  z-index: 1;
}

.rdrDayStartPreview {
  border-top-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-top-left-radius: 1.333em;
  border-bottom-left-radius: 1.333em;
  left: 0px;
}

.rdrDayInPreview {
  border-top-width: 1px;
  border-bottom-width: 1px;
}

.rdrDayEndPreview {
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-top-right-radius: 1.333em;
  border-bottom-right-radius: 1.333em;
  right: 2px;
  right: 0px;
}

.rdrDefinedRangesWrapper {
  font-size: 12px;
  width: 226px;
  border-right: solid 1px #eceff1;
  background: #fff;
}

.rdrDefinedRangesWrapper .rdrStaticRangeSelected {
  color: currentColor;
  font-weight: 600;
}

.rdrStaticRange {
  border: 0;
  cursor: pointer;
  display: block;
  outline: 0;
  border-bottom: 1px solid #eceff1;
  padding: 0;
  background: #fff;
}

.rdrStaticRange:hover .rdrStaticRangeLabel,
.rdrStaticRange:focus .rdrStaticRangeLabel {
  background: #eceff1;
}

.rdrStaticRangeLabel {
  display: block;
  outline: 0;
  line-height: 18px;
  padding: 10px 20px;
  text-align: left;
}

.rdrInputRanges {
  padding: 10px 0;
}

.rdrInputRange {
  align-items: center;
  padding: 5px 20px;
}

.rdrInputRangeInput {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 4px;
  text-align: center;
  border: solid 1px rgb(222, 231, 235);
  margin-right: 10px;
  color: rgb(108, 118, 122);
}

.rdrInputRangeInput:focus,
.rdrInputRangeInput:hover {
  border-color: rgb(180, 191, 196);
  outline: 0;
  color: #333;
}

.rdrCalendarWrapper:not(.rdrDateRangeWrapper) .rdrDayHovered .rdrDayNumber:after {
  content: "";
  border: 1px solid currentColor;
  border-radius: 1.333em;
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: 0px;
  right: 0px;
  background: transparent;
}

.rdrDayPassive {
  pointer-events: none;
}

.rdrDayPassive .rdrDayNumber span {
  color: #d5dce0;
}

.rdrDayPassive .rdrInRange,
.rdrDayPassive .rdrStartEdge,
.rdrDayPassive .rdrEndEdge,
.rdrDayPassive .rdrSelected,
.rdrDayPassive .rdrDayStartPreview,
.rdrDayPassive .rdrDayInPreview,
.rdrDayPassive .rdrDayEndPreview {
  display: none;
}

.rdrDayDisabled {
  background-color: rgb(248, 248, 248);
}

.rdrDayDisabled .rdrDayNumber span {
  color: #aeb9bf;
}

.rdrDayDisabled .rdrInRange,
.rdrDayDisabled .rdrStartEdge,
.rdrDayDisabled .rdrEndEdge,
.rdrDayDisabled .rdrSelected,
.rdrDayDisabled .rdrDayStartPreview,
.rdrDayDisabled .rdrDayInPreview,
.rdrDayDisabled .rdrDayEndPreview {
  filter: grayscale(100%) opacity(60%);
}

.rdrMonthName {
  text-align: left;
  font-weight: 600;
  color: #849095;
  padding: 0.833em;
}

h1,
h2,
h3,
h4,
h5,
body {
  padding: 0;
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

body {
  font-family: "Open Sans", sans-serif;
  display: flex;
  flex-direction: column;
  word-break: break-word;
  background-color: #fff;

  --code-font: "Source Code Pro", monospace;
}

button,
input,
select {
  font-family: inherit;
}

#app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

a {
  text-decoration: none;
  color: inherit;
  outline: 0;
  /*
    If we do set an underline, offset it.
    We often render underscores in links, and the underscores
    are not clearly visible unless we offset the underline.
  */
  text-underline-offset: 4px;
}

button {
  outline: 0;
  margin: 0;
}

/** Container **/

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 32px;
  box-sizing: border-box;
}

.container.narrow {
  max-width: 800px;
}

/** Menu **/

.menu {
  height: 90px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  font-weight: 700;
  font-size: 24px;
  z-index: 2;
  position: relative;
  background-color: #212121;
  color: #fff;
}

.menu.light {
  background-color: #fff;
  color: #000;
}

.menu .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.menu .container div {
  display: flex;
  align-items: center;
}

.menu .title img {
  height: 40px;
}

.menu-child-title {
  margin-left: 8px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}

.menu .icon {
  padding-top: 1px;
  cursor: pointer;
}

.menu .profile-photo {
  height: 40px;
  width: 40px;
  border-radius: 20px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.95);
}

.menu .default-photo {
  padding: 8px;
  box-sizing: border-box;
}

.menu-control {
  cursor: pointer;
  opacity: 0.8;
}

.menu .title {
  color: rgba(255, 255, 255, 0.9);
}

.menu-child {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/** Side menu **/

.side-menu-container {
  position: absolute;
}

.side-menu-shade {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.side-menu {
  position: absolute;
  top: 46px;
  right: 8px;
  background-color: #212121;
  color: #fff;
  padding: 8px 32px 32px 32px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  z-index: 1;
  font-size: 18px;
}

.side-menu li {
  margin-top: 16px;
  font-weight: 700;
  cursor: pointer;
}

/** Shelf **/

.shelf {
  background-color: #f8f8f8;
  border-bottom: 1px solid #eaeaea;
  padding: 32px 0;
  font-size: 14px;
}

.shelf b {
  font-weight: 600;
}

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

.shelf .title {
  font-weight: 600;
  font-size: 32px;
  margin-right: 16px;
  margin-bottom: 8px;
}

.shelf .subtitle {
  font-size: 18px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 8px;
}

.shelf.success {
  border-bottom: 6px solid #8bc34a;
}

.shelf.failure {
  border-bottom: 6px solid #f44336;
}

.shelf.in-progress {
  border-bottom: 6px solid #03a9f4;
}

.shelf.disconnected {
  border-bottom: 6px solid #aaa;
}

.shelf.neutral {
  border-bottom: 6px solid #888;
}

.breadcrumbs {
  font-size: 16px;
  color: #aaa;
  margin-bottom: 8px;
}

.breadcrumbs > :not(:last-child)::after {
  content: "›";
  padding: 0 8px;
  color: #ccc;
  font-weight: 600;
}

.shelf .details {
  font-size: 16px;
  line-height: 1.6em;
  color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.shelf .detail {
  display: flex;
  align-items: center;
  margin-right: 32px;
  margin-top: 8px;
}

.shelf .details .icon {
  margin-right: 8px;
}

.shelf .details img:first-of-type {
  margin-left: 0;
}

svg.icon {
  /* Default icon color is gray */
  stroke: #616161;
  /* By default, icons should not get squished */
  flex-shrink: 0;
}

svg.icon.white {
  stroke: #fff;
}

svg.icon.gray,
svg.icon.grey {
  stroke: #616161;
}

svg.icon.black {
  stroke: #000;
}

svg.icon.green {
  stroke: #8bc34a;
}

svg.icon.red {
  stroke: #f44336;
}

svg.icon.blue {
  stroke: #03a9f4;
}

svg.icon.brown {
  stroke: #774a21;
}

svg.icon.purple {
  stroke: #673ab7;
}

svg.icon.orange {
  stroke: #ff6f00;
}

.rotate-90 {
  transform: rotate(90deg);
}

.org-button {
  float: right;
  background-color: #212121;
  padding: 8px 16px;
  border-radius: 32px;
  margin-top: -6px;
  color: #fff;
  font-weight: 600;
}

/** Tabs **/

.tabs {
  display: flex;
  align-items: center;
  margin-top: 16px;
  flex-wrap: wrap;
}

.tab {
  border-radius: 50px;
  border: 1px solid #eee;
  margin-right: 8px;
  padding: 12px 24px;
  cursor: pointer;
  margin-top: 8px;
  color: #9e9e9e;
  text-align: center;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  user-select: none;
  background: #fff;
}

.tab:hover {
  background: #fafafa;
}

.tab:active {
  background: #f5f5f5;
}

.tab.selected {
  background: #212121;
  color: #fff;
}

/** Runs **/

.runs {
  display: flex;
  align-items: center;
  margin-top: 16px;
  flex-wrap: wrap;
}

.run {
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  margin-right: 8px;
  padding: 12px 32px 8px 32px;
  cursor: pointer;
  margin-top: 8px;
  text-align: center;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 4px solid transparent;
}

.run-grid .run {
  margin-right: 6px;
  margin-top: 6px;
  width: 20px;
  height: 20px;
  padding: 0;
  border-radius: 2px;
  color: transparent;
  overflow: hidden;
}

.run.test-passed {
  background-color: #8bc34a;
}

.run.test-failed {
  background-color: #f44336;
}

.run.test-error {
  background-color: #000;
}

.run.test-flaky {
  background-color: #888;
}

.run.selected {
  border-bottom: 4px solid rgba(0, 0, 0, 0.2);
}

/** Card **/

body {
  /* Shadow stacks based on: https://twitter.com/pixeljanitor/status/1735758919509684360 */
  --shadow-2: 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-4: 0px 0px 0px 1px rgba(0, 0, 0, 0.06), 0px 1px 1px -0.5px rgba(0, 0, 0, 0.06),
    0px 3px 3px -1.5px rgba(0, 0, 0, 0.06), 0px 6px 6px -3px rgba(0, 0, 0, 0.06);
  --shadow-6: 0px 0px 0px 1px rgba(0, 0, 0, 0.06), 0px 1px 1px -0.5px rgba(0, 0, 0, 0.06),
    0px 3px 3px -1.5px rgba(0, 0, 0, 0.06), 0px 6px 6px -3px rgba(0, 0, 0, 0.06), 0px 8px 12px -6px rgba(0, 0, 0, 0.06),
    0px 10px 24px -12px rgba(0, 0, 0, 0.06);
}

.card {
  box-shadow: var(--shadow-4);
  margin: 32px 0;
  padding: 32px;
  border-radius: 8px;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  background-color: #fff;
}

a.card:hover {
  box-shadow: var(--shadow-6);
}

.card.selected-keyboard-shortcuts {
  outline: 2px solid #2196f3;
}

.card.card-success {
  border-left: 6px solid #8bc34a;
}

.card.card-skipped {
  border-left: 6px solid #673ab7;
}

.card.card-failure {
  border-left: 6px solid #f44336;
}

.card.card-flaky {
  border-left: 6px solid #ff6f00;
}

.card.card-timeout {
  border-left: 6px solid #616161;
}

.card.card-broken {
  border-left: 6px solid #000;
}

.card.card-neutral {
  border-left: 6px solid #888;
}

.card.card-disconnected {
  border-left: 6px solid #aaa;
}

.card.card-in-progress {
  border-left: 6px solid #03a9f4;
}

.card.card-suggestion {
  border-left: 6px solid transparent;
}

.card-suggestion.card-suggestion-bot {
  background: #2196f3;
  color: #fff;
}

.card-suggestion.card-suggestion-bot svg {
  stroke: white;
}

.card.dark {
  background-color: #212121;
  color: #fff;
}

.card.light-terminal {
  background-color: #fff;
}

.dense .card.light-terminal:hover {
  box-shadow: none;
}

.history .card-hover {
  display: flex;
}

.history .card-hover .details {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.history .card-hover .details.details {
  margin-top: 8px;
  gap: 4px;
}

.history .card-hover .role-badge {
  font-size: 13px;
  padding: 1px 8px;
  border-radius: 12px;
}

.history .card-hover .details .detail {
  margin-right: 0;
  margin-top: 0;
}

.history .card-hover .icon {
  width: 16px;
  height: 16px;
}

.history .card .details:empty {
  display: none;
}

.card.card-success:hover {
  border-left: 6px solid #7cb342;
}

.card.card-failure:hover {
  border-left: 6px solid #e53935;
}

.card-hover {
  margin: 8px;
  min-width: 400px;
  padding: 16px 24px;
  box-sizing: border-box;
}

.card.card-hover .title.title {
  font-size: 16px;
  margin-right: 16px;
}

.card.card-hover .subtitle {
  font-size: 14px;
}

.card > .icon,
.card .title .icon {
  margin-right: 16px;
  padding-top: 1px;
}

.card .title {
  font-weight: 700;
  font-size: 18px;
}

.card .content {
  flex-grow: 1;
  width: 1px;
}

.card .details {
  line-height: 1.6em;
  word-break: break-all;
  white-space: pre-wrap;
}

.card .details:not(:first-child) {
  margin-top: 16px;
}

.card .more {
  margin-top: 16px;
  font-weight: 600;
  color: #212121;
  cursor: pointer;
  user-select: none;
}

.card .more-loading {
  margin-top: 16px;
  color: #757575;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 16px;
  user-select: none;
}

.card-suggestion-message {
  word-break: normal;
  max-width: 800px;
}

.card-suggestion-message a {
  text-decoration: underline;
}

.card-suggestion-reason {
  margin-top: 8px;
  font-size: 0.8em;
  opacity: 0.7;
  max-width: 800px;
}

.card-suggestion .bazel-flag {
  white-space: nowrap;
}

.card-suggestion p {
  margin-top: 0;
}

.card-suggestion .suggestions-tab-link {
  margin-top: 8px;
}

.card-suggestion .break-all {
  word-break: break-all;
}

.card-suggestion .details {
  word-break: initial;
}

.suggestions .settings-link {
  font-size: 14px;
}

.dense .suggestions .settings-link {
  margin-left: 20px;
}

/** Home **/

.home {
  margin-top: 32px;
  margin-bottom: 72px;
}

.home .title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.home h2 {
  margin-top: 48px;
  margin-bottom: 16px;
}

.home b {
  font-weight: 600;
}

code {
  border: 1px solid #eee;
  border-radius: 4px;
  background-color: #fafafa;
  font-family: "Source Code Pro", monospace;
  box-sizing: border-box;
}

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

code:not(.inline-code) {
  display: block;
  padding: 24px 32px;
  border-radius: 8px;
  margin-top: 16px;
  margin-bottom: 16px;
  line-height: 1.6em;
  white-space: nowrap;
  overflow-y: auto;
  max-width: 100%;
  position: relative;
}

code.wrap {
  white-space: pre-wrap;
}

code button {
  position: absolute;
  top: 4px;
  right: 4px;
  padding: 2px 16px;
  border: 0;
  background-color: #eee;
  border-radius: 8px;
  font-size: 0.6em;
  font-weight: bold;
  outline: 0;
  box-shadow: 0;
  cursor: pointer;
  line-height: inherit;
  text-transform: uppercase;
}

code[data-header] {
  padding: 40px 32px 24px 32px;
}

code[data-header]:before {
  content: attr(data-header);
  position: absolute;
  top: 0;
  left: 0;
  padding: 2px 32px;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
  border-bottom-right-radius: 8px;
  font-size: 0.8em;
  font-weight: bold;
  pointer-events: none;
}

.code {
  font-family: "Source Code Pro", monospace;
}

code .comment {
  color: #888;
}

.home p {
  margin-top: 32px;
}

.home p.callout {
  background-color: #ffe082;
  padding: 16px 32px;
  border-radius: 8px;
}

.home a:not(.link-button) {
  text-decoration: underline;
}

.setup .setup-step-header {
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 600;
}

.setup-controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
  /* negate 8px margin-top on children, to prevent the first row from having a top margin */
  margin-top: -8px;
}

.setup-controls > * {
  margin-top: 8px;
  margin-right: 8px;
}

.setup-controls .group-container {
  background-color: #fafafa;
  border: 1px solid #eee;
  padding: 4px 16px 4px 0;
  min-height: 40px;
  box-sizing: border-box;
  border-radius: 4px;
  flex-grow: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.setup-controls input {
  vertical-align: middle;
  margin-left: 16px;
}

.setup-controls label {
  padding-left: 8px;
  vertical-align: middle;
  user-select: none;
}

.setup-controls input,
.setup-controls label {
  cursor: pointer;
}

.setup-controls .group {
  display: flex;
  align-items: baseline;
}

.setup-controls .credential-picker {
  max-width: 256px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.setup .no-api-keys {
  background: #e1f5fe;
  padding: 16px;
  border-radius: 8px;
}

.setup .no-api-keys-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  /* negate margin-top on children */
  margin-top: -8px;
}

.setup .no-api-keys-content > * {
  margin-top: 8px;
  margin-right: 8px;
}

.setup .downloads {
  display: flex;
  margin-top: 16px;
  margin-bottom: 16px;
}

.setup .downloads a {
  background-color: #212121;
  color: #fff;
  padding: 7px 16px;
  margin-right: 8px;
  border-radius: 8px;
  text-decoration: none;
}

.setup-notice {
  padding: 16px 24px;
  border-radius: 8px;
  background-color: #e1f5fe;
  margin-top: -16px;
  margin-bottom: 16px;
}

.group-section {
  display: flex;
  align-items: baseline;
}

/** Footer **/

.footer {
  color: #aaa;
  font-size: 0.8em;
  padding: 32px 32px 32px 32px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.footer > :not(:last-child) {
  margin-right: 16px;
}

.footer img {
  height: 16px;
  opacity: 0.7;
}

/** History **/

.history .card {
  padding: 24 32px;
  margin: 32px 0;
}

.card .titles {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 0;
}

.history .card .title {
  font-size: 24px;
  flex-shrink: 0;
  margin-right: 16px;

  max-width: 100%;
  overflow-x: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card .subtitle {
  color: #aaa;
}

.history .details {
  font-size: 14px;
  line-height: 1.6em;
  color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
  flex-shrink: 1;
}

.history .detail {
  display: flex;
  align-items: center;
  margin-right: 24px;
  margin-top: 8px;
}

.history .details .icon {
  margin-right: 8px;
}

.history .details .icon:first-of-type {
  margin-left: 0;
}

.titles .role-badge {
  margin-right: 8px;
}

.role-badge {
  border-radius: 14px;
  padding: 2px 8px;
  flex-shrink: 0;
}

.role-badge.CI_RUNNER {
  background: #212121;
  color: white;
}

.role-badge.CI {
  background: #cfd8dc;
}

.role-badge.HOSTED_BAZEL {
  background: #0d47a1;
  color: white;
}

.empty-state .button {
  width: 100%;
  padding: 16px 32px;
  border: 2px solid #000;
  font-size: 16px;
  font-weight: 600;
  border-radius: 64px;
  margin-bottom: 32px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  box-sizing: border-box;
  line-height: 24px;
  max-width: 560px;
}

.empty-state b {
  font-weight: 600;
}

.load-more {
  width: 100%;
  padding: 24px 0;
  background-color: #212121;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: 0;
  border-radius: 8px;
  margin-bottom: 32px;
  cursor: pointer;
}

.load-more:disabled {
  background-color: #aaa;
  color: #fff;
}

/** Misc **/

.build-logs-card {
  position: relative;
  padding-bottom: 24px;
}

.inline-code {
  font-family: "Source Code Pro", monospace;
  background: #eee;
  border-radius: 4px;
  padding: 2px;
}

.disclaimer {
  color: #aaa;
  margin-top: 4px;
}

.list-grid {
  display: flex;
  color: #888;
  line-height: 1.8em;
}

.list-grid div:first-of-type {
  width: 1px;
  flex-grow: 2;
  color: #444;
  font-weight: 600;
}

.list-grid div {
  width: 1px;
  flex-grow: 1;
}

.list-grid div:last-of-type {
  text-align: right;
  color: #aaa;
}

.list-title {
  margin: 32px 0 8px 0;
  font-weight: 700;
  display: flex;
  font-size: 20px;
}

.timing .list-grid div:first-of-type {
  font-size: 12px;
  font-weight: 500;
}

.list-percent {
  background-color: #8bc34a;
  height: 6px;
  min-width: 1px;
  max-width: 100%;
  margin-top: 2px;
  margin-bottom: 2px;
  position: relative;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.list-percent:after {
  content: attr(data-percent);
  font-size: 8px;
  color: #888;
  font-weight: 300;
  display: block;
  position: absolute;
  right: -104px;
  top: -8px;
  width: 100px;
}

.sort-controls {
  display: flex;
  flex-wrap: wrap;
}

.sort-control {
  color: #888;
  margin-top: 4px;
  margin-right: 12px;
}

.sort-control:after {
  content: "•";
  margin-left: 12px;
}

.sort-control:last-of-type:after {
  display: none;
}

.sort-control .selected {
  color: #000;
  font-weight: 600;
}

.empty-state {
  margin-top: 16px;
  font-size: 16px;
}

.empty-state h2 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.empty-state .link {
  font-weight: bold;
  text-decoration: underline;
}

.target-status-icon {
  display: none;
}

.clickable {
  cursor: pointer;
}

.artifact-line {
  display: flex;
}

.artifact-line.sub-item {
  padding-left: 16px;
}

.artifact-view {
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  color: #888;
  white-space: nowrap;
}

.artifact-view svg {
  width: 16px;
  height: 16px;
}

.artifact-section-title {
  color: #757575;
  margin-top: 8px;
}

.artifacts .artifact-list {
  padding-left: 32px;
}

.artifacts :is(.artifact-line, .artifact-hidden-count) {
  margin-top: 4px;
}

.artifacts .artifact-hidden-count {
  color: #bdbdbd;
  margin-bottom: 8px;
}

.scorecard-target-name {
  margin-top: 8px;
  color: #757575;
  display: block;
}

.scorecard-action-id {
  display: block;
  margin-top: 4px;
  font-weight: 600;
  text-decoration: underline;
}

.scorecard-action-id-list {
  padding-left: 32px;
  margin-bottom: 8px;
}

.scorecard-hidden-count {
  color: #bdbdbd;
  margin-top: 4px;
  margin-bottom: 8px;
}

.stat-cards {
  display: flex;
  flex-wrap: wrap;
}

.stat-cards .card {
  margin-right: 16px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  padding: 16px 32px;
  flex-grow: 1;
  flex-shrink: 0;
}

.stat-cards .stat {
  font-size: 32px;
  font-weight: 600;
}

/** Tests **/

.target-page button {
  display: flex;
  margin-left: 8px;
  gap: 8px;
}

.flaky-target-chip {
  display: flex;
  margin-left: 8px;
  gap: 8px;
}

.flaky-target-chip .icon.icon {
  margin-right: 0;
}

.test-subtitle {
  margin-bottom: 8px;
  color: #aaa;
}

.test-suite-metrics {
  display: flex;
}

.test-case {
  display: flex;
  color: #888;
  line-height: 1.8em;
}

.test-case div:first-of-type {
  width: 1px;
  flex-grow: 2;
  color: #444;
  font-weight: 600;
}

.test-case div {
  width: 1px;
  flex-grow: 1;
}

.test-case div:last-of-type {
  text-align: right;
  color: #aaa;
}

.test-case-info {
  padding-left: 16px;
  border-left: 4px solid #eee;
}

.test-case-message {
  font-weight: 700;
}

.test-case-contents {
  white-space: pre-wrap;
  font-family: "Source Code Pro", monospace;
}

.test-class {
  font-weight: 300;
}

.command-line-arg {
  margin-left: 32px;
  margin-top: 8px;
  font-family: "Source Code Pro", monospace;
}

.command-line-arg:first-of-type {
  margin-left: 0;
}

/** Invocation */

.invocation-section {
  display: flex;
}

.invocation-section div {
  flex-grow: 1;
}

.invocation-command-line {
  border-top: 1px solid #eee;
  margin-top: 32px;
  padding-top: 32px;
}

.invocation-command-line:last-of-type {
  border-bottom: 0px;
  margin-bottom: 0;
}

.invocation-command-line-title {
  font-weight: 700;
  font-size: 18px;
  color: #212121;
  margin-bottom: 16px;
}

.invocation-section div.invocation-section-title {
  width: 20%;
  flex-grow: 0;
  flex-shrink: 0;
  text-align: right;
  margin-right: 16px;
  font-weight: 700;
}

.invocation-option-name {
  font-weight: 600;
  color: #444;
  margin-right: 4px;
}

.invocation-option-value {
  color: #212121;
}

.invocation-option-dash,
.invocation-option-equal {
  color: #aaa;
  margin-right: 4px;
}

.invocation-chunk {
  color: #444;
  font-weight: 600;
}

.raw-event-title {
  font-weight: 600;
  cursor: pointer;
  margin-top: 4px;
}

/** Login **/

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

.login .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  flex-direction: column;
}

.login-hero {
  line-height: 1.6em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-hero-title {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.3em;
  margin-bottom: 8px;
  display: block;
}

.login-box {
  display: flex;
  justify-content: center;
}

.login-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.login-buttons button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 32px;
  font-weight: 600;
  border: 0;
  border-radius: 100px;
  margin-bottom: 12px;
  font-size: 18px;
  cursor: pointer;
  border: 3px solid rgba(255, 255, 255, 0.9);
  background-color: #000;
  color: #fff;
  min-width: 360px;
  transition: 300ms ease-in-out;
}

.login-buttons .login-button,
.login-buttons .sso-button,
.login-buttons .google-button,
.login-buttons .github-button {
  background-color: #fff;
  color: #212121;
  border: 3px solid #212121;
}

.login-buttons .login-button:hover,
.login-buttons .sso-button:hover,
.login-buttons .google-button:hover,
.login-buttons .github-button:hover {
  background-color: #f5f5f5;
  color: #000;
  border-color: #000;
}

.login-buttons .anon-button {
  border: 0;
  background: transparent;
  color: #9e9e9e;
}

.login-buttons .anon-button:hover {
  color: #757575;
}

.login-buttons button svg {
  margin-right: 16px;
}

.login-interstitial {
  background-color: #212121;
  min-height: calc(100vh - 200px);
}

.login-interstitial,
.login-interstitial .container,
.login-interstitial .login-box {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.login-interstitial .login-buttons {
  padding: 32px;
  border-radius: 16px;
}

.login-interstitial .login-buttons h2 {
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}

.sso {
  margin: 0;
}

.sso-prompt {
  transition: all 300ms ease-in-out;
  max-height: 500px;
  opacity: 1;
  overflow: hidden;
}

.sso-prompt.hidden {
  max-height: 0;
  opacity: 0;
}

.sso-title {
  margin-top: 16px;
  margin-bottom: 4px;
  font-weight: 700;
}

.sso input {
  margin-bottom: 8px;
  width: 100%;
  padding: 16px 32px;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 12px;
  font-size: 18px;
  border: 3px solid #9e9e9e;
  height: initial;
}

.sso input:focus {
  outline: none;
  border: 3px solid #2196f3;
}

@media (min-width: 801px) {
  .login-hero {
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    padding-right: 32px;
    margin-right: 32px;
    max-width: 40%;
  }
}

@media (max-width: 800px) {
  .hide-on-mobile {
    display: none !important;
  }

  .login-box {
    flex-direction: column;
  }

  .login-hero {
    padding: 24px;
    text-align: center;
  }

  .login-buttons {
    padding: 0 8px;
  }
}

/** Grid **/

.grid {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
}

.grid-grow .grid-block {
  flex-grow: 1;
}

.grid-block {
  display: block;
  min-width: 16px;
  height: 16px;
  margin-right: 2px;
  margin-bottom: 2px;
  border-radius: 2px;
  flex-shrink: 0;
  box-sizing: border-box;
}

.grid-block-success {
  background-color: #8bc34a;
}

.grid-block-failure {
  background-color: #f44336;
}

.grid-block-neutral {
  background-color: #888;
}

.grid-block-disconnected {
  background-color: #aaa;
}

.grid-block-in-progress {
  background-color: #03a9f4;
}

.grid-block-success:hover {
  background-color: #7cb342;
}

.grid-block-failure:hover {
  background-color: #e53935;
}

.grid-block-neutral:hover {
  background-color: #666;
}

.grid-block-disconnected:hover {
  background-color: #bbb;
}

.grid-block-in-progress:hover {
  background-color: #039be5;
}

/** Dense mode **/

.dense .container {
  max-width: 100%;
  padding: 0 16px;
}

.dense .nopadding-dense {
  padding: 0;
}

.dense .shelf {
  padding: 16px 0;
  border-bottom: 0;
}

.dense .menu {
  height: 64px;
}

.dense .menu .title img {
  height: 32px;
}

.dense .grid {
  padding: 0 16px;
  margin-bottom: 8px;
}

.dense .empty-state {
  padding: 0;
}

.dense .tabs {
  margin: 0;
}

.dense .filter {
  border-radius: 0;
  margin-top: 0;
  height: 36px;
}

.dense .tab {
  margin-top: 0;
  padding: 12px 16px;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  color: #444;
}

.dense .tab.selected {
  background-color: transparent;
  color: #616161;
  position: relative;
}

.dense .tab.selected:after {
  display: block;
  content: " ";
  background-color: #616161;
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.dense .card {
  margin: 0;
  border-radius: 0;
  padding: 16px;
  box-shadow: none;
  border-top: 1px solid #eee;
}

.dense .card.card-hover {
  margin-top: 4px;
  border-radius: 8px;
  border-top: 0;
  box-shadow:
    0px 1px 4px rgba(0, 0, 0, 0.1),
    0px 1px 6px rgba(0, 0, 0, 0.05);
}

.dense .card .details {
  margin-top: 0px;
}

.dense .card > .icon,
.dense .card .title .icon {
  display: none;
}

.dense .list-grid div:first-of-type {
  font-weight: 400;
}

.dense .list-grid div:last-of-type {
  color: #888;
}

.dense .card .target-status-icon.target-status-icon {
  flex-grow: 0;
  display: initial;
  width: 16px;
}

.dense .card .target-status-icon .icon {
  display: initial;
  width: 16px;
  padding-top: 0;
}

.dense-invocation {
  padding: 8px 16px;
}

.dense-invocation-title {
  font-weight: 700;
  font-size: 12px;
}

.dense-invocation-status-bar {
  border-top: 4px solid #888;
  background-color: #eee;
  padding: 4px 16px;
  display: flex;
  justify-content: space-between;
}

.dense-invocation-status-bar.success {
  border-top: 4px solid #8bc34a;
  background-color: #e8f5e9;
}

.dense-invocation-status-bar.failure {
  border-top: 4px solid #f44336;
  background-color: #ffebee;
}

.dense-invocation-status-bar.in-progress {
  border-top: 4px solid #03a9f4;
  background-color: #e3f2fd;
}

.dense-invocation-status-bar.disconnected {
  border-top: 4px solid #aaa;
  background-color: #eee;
}

.dense-invocation-status-bar.neutral {
  border-top: 4px solid #888;
  background-color: #eee;
}

.dense-invocation-overview-grid {
  display: flex;
  background-color: #fff;
  overflow: auto;
}

.dense-invocation-overview-grid-chunk {
  flex-grow: 1;
  padding: 8px 16px;
  border-right: 1px solid #eee;
}

.dense-invocation-overview-grid-value {
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.dense-invocation-overview-grid-value .icon {
  margin-right: 8px;
}

.dense .load-more {
  margin-bottom: 0;
  border-radius: 0;
}

.dense .history .card .title {
  font-size: 20px;
}

.dense .detail {
  margin-top: 4px;
}

/* Scrollbars */

.root-main {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  overflow: auto;
  background-color: #fff;
}

.root-code,
.root-login {
  overflow-y: initial;
}

.content {
  flex-grow: 1;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

.sticky-loading-overlay {
  position: sticky;
  top: 0;
  z-index: 1;
}

.loading {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.loading:not(.loading-slim) {
  height: 100%;
}

.sticky-loading-overlay .loading {
  height: 100vh;
  position: absolute;
  background: #fffc;
}

.loading:before {
  content: "";
  display: block;
  animation: rotate 2s linear infinite;
  width: 32px;
  height: 32px;
  opacity: 0.8;
  background-image: url("/image/loader.svg");
  background-size: cover;
}

.loading.loading-dark {
  background: #212121;
}

.loading.loading-dark-terminal {
  background: #212121;
}

.loading.loading-dark:before,
.loading.loading-dark-terminal:before {
  background-image: url("/image/loader-white.svg");
}

.copy-icon {
  color: #888;
  cursor: pointer;
  height: 0.8em;
  width: 0.8em;
  margin-left: 0.2em;
}

.copy-icon.green {
  color: #4caf50;
}

.coverage-percent {
  font-weight: 700;
}

.coverage-details {
  color: #aaa;
}

.coverage-record-total {
  border-top: 1px solid #eee;
  padding-top: 8px;
  margin-top: 8px;
}

.coverage-total-label {
  font-weight: 600;
}

.alert-banner {
  position: absolute;
  z-index: 9000;

  left: 50%;
  margin-top: 32px;

  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.27),
    0 3px 5px rgba(0, 0, 0, 0.12);
}

.alert-banner.hidden {
  pointer-events: none;
  opacity: 0;
  transform: translateX(-50%) translateY(-16px);
  transition: 128ms ease-in;
}

.alert-banner.visible {
  opacity: 1;
  transform: translateX(-50%);
  transition: 128ms ease-out;
}

.alert-banner > :not(:last-child) {
  margin-right: 8px;
}

.picker-container {
  height: 50vh;
}

.picker {
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  max-width: 450px;
  width: 80vw;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  max-height: 50vh;
  display: flex;
  flex-direction: column;
}

.picker-options {
  padding: 4px 0;
  overflow-y: auto;
}

.picker-option {
  cursor: pointer;
  padding: 6px 16px;
}

.picker-option.selected {
  background-color: #f0f0f0;
}

.picker-options-label {
  padding: 8px 16px 4px 16px;
  color: #888;
  font-size: 0.8em;
}

.picker-search {
  display: flex;
  align-items: center;
}

.picker-search svg {
  position: absolute;
  width: 16px;
  height: 16px;
  padding: 12px;
  color: #888;
}

.picker input {
  width: 100%;
  border: 0;
  padding: 12px 8px;
  padding-left: 40px;
  outline: 0;
  border-bottom: 1px solid #eee;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
}

.search-bar-container {
  position: relative;
  z-index: 100;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 10px;
  max-height: 42px;
}

.search-bar {
  background-color: #eeeeee;
  border-radius: 0.5rem;
  border: 1px solid #eeeeee;
  max-height: 50vh;
  display: flex;
  flex-direction: column;
}

.search-bar-container.focused .search-bar {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.search-bar-results {
  padding: 4px 0;
  overflow-y: auto;
  border-top: 1px solid #eee;
}

.search-bar-result {
  cursor: pointer;
  padding: 6px 16px;
}

.search-bar-result pre {
  font-size: 0.8em;
}

.search-bar-result.selected {
  background-color: #f0f0f0;
}

.search-bar-results-label {
  padding: 8px 16px 4px 16px;
  color: #888;
  font-size: 0.8em;
}

.search-bar-input {
  display: flex;
  align-items: center;
  height: 40px;
}

.search-bar-input svg {
  position: absolute;
  width: 16px;
  height: 16px;
  padding: 12px;
  color: #888;
}

.search-bar-input input {
  width: 100%;
  border: 0;
  padding: 12px 8px;
  padding-left: 40px;
  outline: 0;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
}

.compare-invocations .header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.compare-invocations .header > :not(:last-child) {
  margin-right: 16px;
}

.compare-invocations .show-changes-only-button {
  margin-left: auto;
}

@media (max-width: 1024px) {
  .compare-invocations .header {
    flex-direction: column;
    align-items: start;
  }

  .compare-invocations .header > :not(:last-child) {
    margin-right: 0;
    margin-bottom: 8px;
  }

  .compare-invocations .show-changes-only-button {
    margin-left: 0;
    margin-right: auto;
  }
}

.compare-invocations .tabs {
  margin-top: 0;
}

.compare-invocations .error-container {
  background: #ffebee;
  padding: 16px;
  border-radius: 8px;
  margin: 16px 0;

  display: flex;
  align-items: center;
}

.compare-invocations .error-container > :not(:last-child) {
  margin-right: 8px;
}

.compare-invocations .error-container img {
  width: 24px;
  height: 24px;
}

.compare-invocations .compare-table {
  display: table;
  padding-top: 16px;
  width: 100%;
}

.compare-invocations .compare-row {
  display: table-row;
  white-space: pre-wrap;
}

.compare-invocations .compare-row.different {
  background: #fff8e1;
}

.compare-invocations .compare-row div {
  display: table-cell;
  padding: 4px 16px;
  width: 40%;
}

.compare-invocations .compare-row div:first-of-type {
  font-weight: 600;
  text-align: right;
  width: 20%;
  text-decoration: none !important;
}

.compare-invocations .difference-left {
  font-weight: 600;
  color: #d84315;
  background-color: #ffe0b2;
}

.compare-invocations .difference-right {
  font-weight: 600;
  color: #1565c0;
  background-color: #bbdefb;
}

.invocation-execution-row-file {
  display: flex;
  align-items: center;
  gap: 2px;
}

.invocation-execution-row-file svg {
  height: 16px;
}

.invocation-execution-row-file .invocation-execution-row-header {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  flex-grow: 1;
}

.invocation-execution-row-file .invocation-execution-row-header-status {
  flex-grow: 1;
}

.invocation .invocation-filter,
.invocation .raw-logs-filter {
  margin-top: 24px;
}

.dense .invocation .filter-input-container {
  border-radius: 0;
  margin-top: 0;
  height: 36px;
}

.invocation-raw-logs-card .download-raw-logs-button {
  display: flex;
  gap: 8px;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 14px;
}

.invocation-raw-logs-card .content {
  position: relative;
}

.input-tree {
  width: 200px;
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 6px 4px 4px 14px;
  flex-shrink: 0;
  overflow: scroll;
  box-sizing: border-box;
}

.input-tree-node {
  cursor: pointer;
  user-select: none;
}

.input-tree-node .input-tree-node-size {
  background-color: #eee;
  border-radius: 4px;
  color: #000;
  margin-left: 8px;
  padding: 0 8px;
  white-space: nowrap;
}

.input-tree-node-name .digest-component {
  margin-left: 8px;
}

.input-tree-node-name .icon {
  opacity: 0.7;
}

.input-tree-node-name:hover .icon {
  opacity: 1;
}

.input-tree-node-children {
  border-left: 1px solid #ccc;
  padding-left: 8px;
  margin-left: 8px;
}

.input-tree-node-name {
  display: flex;
  margin-bottom: 2px;
  align-items: flex-start;
}

.input-tree-node-name .folder-icon {
  /* Adjust optical alignment of folder icons */
  transform: translateY(-1px);
}

.input-tree-node-label {
  padding-top: 1px;
}

.invocation-action-card .text-link {
  font-weight: 600;
  text-decoration: underline;
  color: #212121;
}

.invocation-targets-card .targets-table {
  display: grid;
  grid-template-columns: auto max-content;

  --border-color: #eee;
  border: 1px solid var(--border-color);
  border-radius: 4px;
}

.invocation-targets-card .target-row {
  display: contents;
  user-select: text;
}

.invocation-targets-card .target-row > * {
  padding: 4px;
  display: flex;
  align-items: center;
  line-height: initial;
}

.invocation-targets-card .target-row > :first-child {
  padding-left: 8px;
}

.invocation-targets-card .target-row > :last-child {
  padding-right: 8px;
}

.invocation-targets-card .target-row:hover > * {
  background: #f5f5f5;
}

.invocation-targets-card .target-row:not(:last-child) > * {
  border-bottom: 1px solid var(--border-color);
}

.invocation-targets-card .target-row > * {
  min-height: 26px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.invocation-targets-card .chevron-icon .icon {
  width: 20px;
  height: 20px;
  margin-right: -4px; /* offset flex gap */
}

.dense .invocation-targets-card .chevron-icon {
  display: none; /* show target status icon instead */
}

.dense .invocation-targets-card .title {
  margin-bottom: 4px;
}

.invocation-targets-card .target-label {
  display: flex;
  gap: 8px;
  font-weight: 600;
  color: #212121;
}

.invocation-targets-card .target-cache-status {
  border-radius: 16px;
  color: #212121ad;
  background: #eee;
  line-height: 1;
  flex-shrink: 0;

  font-size: 0.8em;
  word-break: break-word;
  white-space: nowrap;
  margin-left: auto;
  margin-right: 8px;
  padding: 2px 6px;
}

.invocation-targets-card .root-cause-badge {
  background: #eee;
  flex-shrink: 0;
  padding: 0 8px;
  border-radius: 16px;
  word-break: break-word;
}

.invocation-targets-card .target-duration {
  padding-left: 8px;
  color: #757575;
}

.invocation-flaky-chip-alignment-hack {
  display: inline-block;
  vertical-align: top;
  margin-top: -10px;
}

.invocation-action-card .icon.file-icon,
.invocation-action-card .icon.folder-icon,
.invocation-action-card .icon.file-question-icon {
  margin-right: 4px;
  width: 18px;
  height: 18px;
}

.invocation-action-card .tree-node-symlink {
  display: flex;
  align-items: center;
  gap: 4px;

  .icon {
    opacity: 0.7;
    width: 18px;
    height: 18px;
  }

  .icon:hover {
    opacity: 1;
  }
}

.invocation-error-card .error-contents {
  background: #fafafa;
  border-radius: 8px;
  padding: 8px 16px;
  max-height: 360px;
  white-space: pre-wrap;
  overflow-y: scroll;
}

.file-name {
  display: flex;
  align-items: flex-start;
}

.file-name:hover {
  color: #888;
}

.file-name .digest-component {
  margin-left: 8px;
}

.invocation .trace-viewer {
  margin-top: 24px;
}

.cache-requests-card.card {
  /* 'overflow: hidden' styling prevents sticky spinner from working properly. */
  overflow: initial;
}

.cache-requests-card .action-id {
  font-weight: 600;
}

.cache-requests-card .action-id .digest-component {
  text-decoration: underline;
}

.cache-requests-card .chevron {
  margin-right: 0;
  width: 12px;
  height: 12px;
}

.cache-requests-card .title {
  display: flex;
  align-items: center;
}

.cache-requests-card .row {
  display: flex;
  align-items: center;
}

.cache-requests-card .column {
  display: flex;
  flex-direction: column;
}

.cache-requests-card .controls {
  gap: 8px;
}

.cache-requests-card .controls .separator {
  border-left: 1px solid #eee;
  align-self: stretch;
}

.cache-requests-card .controls button {
  font-weight: inherit;
  font-size: inherit;
}

.cache-requests-card .column-headers > div {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.cache-requests-card .row.action-label {
  gap: 4px;
  overflow: hidden;
}

.cache-requests-card .action-label > div {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cache-requests-card .action-mnemonic {
  /* Don't let a really long target label cause the mnemonic to get truncated. */
  flex-shrink: 0;
}

.cache-requests-card .details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cache-requests-card .caption {
  color: #757575;
}

.cache-requests-card .group-title {
  display: flex;
  align-items: baseline;
  width: 100%;
  box-sizing: border-box;
  background: #eee;
}

.cache-requests-card .group-title > * {
  padding: 4px;
}

.cache-requests-card .target-id {
  background: #f5f5f5;
}

.cache-requests-card .group-contents {
  font-size: 14px;
}

.cache-requests-card .results-table {
  border: 1px solid #eee;
  border-radius: 4px;
  position: relative;
}

.cache-requests-card .loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;

  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: grayscale(100%);
}

.cache-requests-card .loading.results-updating {
  position: sticky;
  top: 0;
  height: 0;
  overflow: visible;
  z-index: 1;
  transform: translateY(32px);
}

.cache-requests-card .column-headers {
  border-bottom: 1px solid #eee;
}

.cache-requests-card .results-list,
.cache-requests-card .column-headers {
  display: flex;
  width: 100%;
}

.cache-requests-card .results-list > :nth-child(2n + 1) {
  background: #fafafa;
}

.cache-requests-card .results-list > .row {
  gap: 0;
}

.cache-requests-card .results-list > .row > div,
.cache-requests-card .row.column-headers > div {
  padding: 4px;

  display: flex;
  align-items: center;
  gap: 6px;
}

.cache-requests-card .row.column-headers svg {
  width: 16px;
  height: 16px;
}

.cache-requests-card :is(.results-list .row, .column-headers.row) > div:not(:first-child) {
  border-left: 1px solid #eee;
}

.cache-requests-card .digest-column {
  width: 168px;
}

.cache-requests-card .digest-component-size {
  text-align: right;
}

.cache-requests-card .compressed-size-column {
  width: 88px;
  text-align: right;
}

.cache-requests-card .cache-type-column {
  width: 42px;
}

.cache-requests-card .duration-column {
  width: 80px;
  text-align: right;
}

.cache-requests-card .status-column {
  width: 60px;
}

.cache-requests-card .download-button {
  width: 18px;
  height: 18px;
  padding: 4px;
  margin: -2px;
  border-radius: 8px;
  stroke: #2196f3;
  cursor: pointer;
}

.cache-requests-card .download-button:hover {
  stroke: #03a9f4;
  background: #eee;
}

.cache-requests-card .name-column {
  width: 28%;
  max-width: 300px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;

  .name-content {
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.cache-requests-card.group-by-target .name-column {
  /* When showing only action mnemonic, make the name column a bit smaller */
  width: 20%;
  max-width: 220px;
}

.cache-requests-card .column-with-icon {
  position: relative;
}

.cache-requests-card .column-with-icon > span {
  padding-left: 20px;
}

.cache-requests-card .column-with-icon .icon {
  /* remove icon from normal flow */
  position: absolute;
  left: 4px;
  width: 16px;
  height: 16px;
  padding-top: 3px;
}

.cache-requests-card .compressed-size-column .icon {
  stroke: #bdbdbd;
}

.cache-requests-card .compressed-size-column.uncompressed {
  color: #bdbdbd;
}

.cache-requests-card .icon.green {
  stroke: #4caf50;
}

.cache-requests-card .results-list div.waterfall-column {
  display: flex;
  align-items: center;
  align-self: stretch;
  flex-grow: 1;
  --min-bar-width: 2px;
  padding-left: 0;
  /* prevent bars from rendering slightly outside the table */
  padding-right: var(--min-bar-width);
  position: relative;
}

@media (max-width: 1300px) {
  .cache-requests-card div.waterfall-column.waterfall-column {
    display: none;
  }
}

.cache-requests-card .waterfall-bar {
  background-color: #2196f3;
  border-radius: 2px;
  min-width: var(--min-bar-width);
  height: 8px;
}

.cache-requests-card .waterfall-gridlines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
}

.cache-requests-card .waterfall-gridlines > :first-child {
  border-left: 1px solid #eee;
}

.cache-requests-card .waterfall-gridlines > div:not(:last-child) {
  border-right: 1px solid #f5f5f5;
}

.cache-requests-card .waterfall-gridlines > div {
  flex-grow: 1;
}

.cache-requests-card .load-more-button {
  gap: 8px;
}

.cache-requests-card-hovercard {
  margin: 12px;
  background: rgba(255, 255, 255, 1);
  border-radius: 8px;
  padding: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  font-size: 14px;
  backdrop-filter: blur(3px);
  display: flex;
}

.cache-result-hovercard {
  margin: 12px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  padding: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  font-size: 14px;
  backdrop-filter: blur(3px);

  display: grid;
  grid-template-columns: min-content auto;
  grid-gap: 0 16px;
}

.cache-result-hovercard > * {
  white-space: nowrap;
}

.cache-result-hovercard .compression-savings.positive,
.cache-requests-card .compression-savings.positive {
  color: #43a047;
}

.cache-result-hovercard .compression-savings.negative,
.cache-requests-card .compression-savings.negative {
  color: #757575;
}

.link-repo-modal {
  outline: none;
}

.link-repo-modal .dialog-footer {
  justify-content: end;
}

.link-repo-modal .dialog-footer button {
  margin-right: 10px;
}

.popup.cache-miss-popup {
  right: auto;
  flex-direction: column;
  padding: 12px;
  width: max-content;
}

.popup.cache-miss-popup .title {
  font-weight: 600;
  font-size: 15px;
  background: white;
  padding: 4px;
}

.popup.cache-miss-popup button {
  margin-top: 5px;
}

.popup.cache-miss-popup .checkbox-row {
  display: flex;
  width: 100%;
  margin-bottom: 5px;
}

.debug-cache-miss-container {
  position: relative;
}

.debug-cache-miss-container button {
  font-size: 14px;
}

.debug-cache-miss-button {
  padding-left: 5px;
}

.action-line {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgb(238, 238, 238);
}

.action-title {
  font-weight: 700;
  font-size: 18px;
  color: #212121;
}

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

.action-list {
  display: block;
}

.action-section {
  display: flex;
  margin-bottom: 16px;
  color: #212121;
}

.action-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.action-header .base-button {
  flex-shrink: 0;
}

.action-header .base-button .icon.copy-icon {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}

.action-section > div {
  flex-grow: 1;
}

.action-section .action-property-title {
  width: 20%;
  flex-grow: 0;
  flex-shrink: 0;
  word-break: break-word;
  text-align: right;
  margin-right: 16px;
  font-weight: 700;
  font-size: 14px;
}

.action-section .platform-property-overridden * {
  color: #757575;
}

.action-section .platform-property-note {
  color: #757575;
}

.action-section .grpc-status-error {
  color: #d32f2f;
}

.action-section .server-log-title {
  align-self: center;
}

.cache-sections {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
}

.cache-section {
  min-width: 350px;
  width: calc(50% - 32px);
  margin-bottom: 32px;
  margin-right: 32px;
}

.cache-title {
  margin-top: 32px;
  font-weight: 700;
  display: flex;
  font-size: 20px;
}

.cache-subtitle {
  margin-bottom: 24px;
  margin-top: 4px;
  color: #888;
  font-size: 14px;
}

.cache-details {
  color: #888;
  display: flex;
  flex-wrap: wrap;
}

.cache-details .icon {
  opacity: 0.7;
  margin-right: 6px;
  margin-top: 2px;
  width: 18px;
  height: 18px;
}

.cache-chart {
  display: flex;
  font-size: 16px;
  align-items: center;
}

.cache-chart-container {
  height: 80px;
  width: 80px;
  margin-right: 32px;
}

.cache-chart .recharts-responsive-container {
  flex-shrink: 0;
  margin-right: 32px;
}

.cache-stat {
  font-weight: 600;
  font-weight: 20px;
}

.cache-stat-duration {
  min-width: 60px;
  display: inline-block;
}

.cache-stat-description {
  font-weight: normal;
}

.cache-chart-label {
  display: flex;
  white-space: nowrap;
}

.color-swatch {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  margin-right: 8px;
  margin-top: 3px;
  display: block;
  background-color: #eee;
}

.cache-chart-label .compressed-size {
  font-size: 14px;
  margin-bottom: 2px;
}

.cache-chart-label .size-savings.positive {
  color: #388e3c;
}

.cache-chart-label .size-savings.negative {
  color: #888;
}

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

.header .button {
  flex-grow: 0;
}

.button .download-gz-file {
  font-size: 14px;
}

.download-color-swatch {
  background-color: #03a9f4;
}

.upload-color-swatch {
  background-color: #3f51b5;
}

.cache-hit-color-swatch {
  background-color: #4caf50;
}

.cache-miss-color-swatch {
  background-color: #f44336;
}

.no-cache-stats {
  margin-top: 32px;
  font-size: 16px;
}

.fetch-url {
  font-weight: 300;
  text-decoration: italic;
  margin-top: 8px;
}

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

.invocation .breadcrumbs-and-buttons {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap-reverse;
  gap: 8px;
}

.invocation .breadcrumbs-and-buttons .breadcrumbs {
  width: 260px;
  flex-grow: 10;
}

.invocation-share-button svg,
.invocation-ask-button svg {
  margin-right: 12px;
  margin-left: -4px;
  width: 16px;
  height: 16px;
}

.filled-button.invocation-ask-button {
  background-color: #2196f3;
}

.invocation-share-dialog .row {
  display: flex;
  flex-direction: row;
}

.invocation-share-dialog .row > :not(:last-child) {
  margin-right: 8px;
}

.invocation-share-dialog .link-input {
  flex-grow: 1;
  text-overflow: ellipsis;
}

.invocation-share-dialog > :not(:last-child) {
  margin-bottom: 32px;
}

.invocation-share-dialog .visibility-explanation {
  margin-top: 8px;
  color: #333;
}

.invocation-share-dialog select {
  min-width: 50%;
}

.invocation-share-dialog .visibility-header {
  font-weight: 600;
  margin-bottom: 8px;
}

.invocation-share-dialog .changing-permissions-disabled-explanation {
  margin-top: 16px;
  padding: 16px;
  border-radius: 8px;
  background: #e1f5fe;
}

.invocation-share-dialog .error-message {
  margin-top: 16px;
  padding: 16px;
  border-radius: 8px;
  background: #ffebee;
}

.invocation-share-dialog-footer .loading-message {
  flex-shrink: 0;
}

.invocation-execution-table {
  margin-top: 16px;
}

.invocation-execution-row {
  display: flex;
  border-top: 1px solid #eee;
  padding: 16px 0;
}

.invocation-execution-row.nested {
  padding-left: 32px;
}

.invocation-execution-row:last-child {
  border-bottom: 1px solid #eee;
}

.invocation-execution-row:hover {
  background: #fafafa;
}

.invocation-execution-row-image {
  margin-left: 4px;
  margin-right: 16px;
}

.invocation-execution-row-image .rotating {
  animation: rotate 2s linear infinite;
}

.invocation-execution-row .execution-header {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
  font-size: 15px;
}

.invocation-execution-row .execution-label {
  font-weight: 600;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}

.invocation-execution-row .breadcrumb-separator {
  /* Use em units to match text size. */
  width: 1em;
  height: 1em;
  /* Offset for optical alignment. */
  transform: translateY(0.15em);
}

.invocation-execution-row .command-snippet {
  font-size: 12px;
  color: #757575;
  border-radius: 4px;
  margin-bottom: 8px;
}

.invocation-execution-row-header-status {
  font-weight: 600;
}

.invocation-execution-row .status {
  color: #000;
  display: flex;
  gap: 8px;
  margin-bottom: 2px;
}

.invocation-execution-row .status-name {
  font-weight: 600;
}

.invocation-execution-row .status-name.error {
  color: #f44336;
}

.invocation-execution-row .invocation-execution-row-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0 8px;

  color: #757575;
  font-size: 12px;
}

.invocation-execution-empty-state {
  margin-top: 32px;
}

.invocation-execution-empty-actions {
  margin-top: 8px;
}

.invocation-top-right-buttons {
  display: flex;
  align-items: center;
  margin-left: 8px;
  flex-shrink: 0;
  justify-content: flex-end;
  flex-grow: 1;
}

.invocation-top-right-buttons > :not(:last-child) {
  margin-right: 8px;
}

.invocation-compare-button-container {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.comparison-buffer-illustration {
  display: flex;
  align-items: center;
  margin-left: -4px;
  margin-right: 8px;

  --illustration-color: #ddd;
}

.base-button:hover .comparison-buffer-illustration,
.comparison-buffer-illustration.buffered {
  --illustration-color: #212121;
}

.comparison-buffer-icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  box-sizing: border-box;
  transition: 100ms;
}

.comparison-buffer-icon-a {
  background: var(--illustration-color);
  margin-right: 4px;
}

.comparison-buffer-icon-b {
  background: transparent;
  border: 1px solid var(--illustration-color);
}

.invocation-cancel-button-container {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.invocation-cancel-button-container .icon {
  margin-right: 6px;
  margin-top: 2px;
  width: 16px;
  height: 16px;
}

.invocation-menu-container {
  position: relative;
}

.invocation-menu-container .base-button.invocation-menu-button {
  width: 40px;
  height: 40px;
  border: none;
  padding: 0;
  justify-content: center;
}

.invocation-delete-dialog .error-description {
  margin-top: 16px;
  background: #ffebee;
  padding: 16px;
  border-radius: 8px;
}

.invocation-sort-title {
  margin-right: 8px;
  margin-left: 12px;
}

.invocation-filter-title {
  margin-right: 8px;
}

.invocation-sort-controls {
  display: flex;
  align-items: center;
}

.invocation-content-header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  grid-gap: 8px;
}

.invocation-content-header .title {
  display: flex;
  gap: 8px;
  align-items: center;
}

.download-exec-log-button {
  width: 16px;
  height: 16px;
  cursor: pointer;
  color: #888;
}

.metadata-title {
  font-weight: 600;
  color: #212121;
  margin-bottom: 2px;
}

.metadata-title:not(:first-child),
.snapshot-id-container {
  margin-top: 8px;
  border-top: 1px solid #eee;
  padding-top: 8px;
}

.metadata-detail {
  font-weight: 300;
  color: #444;
  display: flex;
  justify-content: space-between;
}

.snapshot-id-details {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.snapshot-id-container {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}

.invalidate-button {
  font-weight: bold;
  color: #d32f2f;
  text-decoration: underline;
  cursor: default;
}

.invalidate-button:hover {
  color: #af2626;
}

.snapshot-more-button {
  margin-left: 10px;
}

.prop-name {
  color: #212121;
  font-weight: 600;
}

.prop-value .detail {
  color: #aaa;
}

.action-list .expected-output {
  display: flex;
  align-items: center;
  gap: 4px;

  .icon {
    opacity: 0.7;
  }

  .expected-output-label {
    color: #444;
  }
}

.action-list .missing-output {
  display: flex;
  align-items: center;

  .icon {
    height: 18px;
    width: 18px;
    opacity: 0.7;
  }

  .expected-output-label {
    color: #444;
  }
}

.state-page .runner-execution-status {
  display: flex;
  align-items: center;
}

.state-page button.impersonate-button,
.stage-page button.impersonate-button:hover {
  margin-top: 8px;
  background-color: #ffc107;
  color: black;
}

.state-page button.request-button {
  margin-top: 16px;
}

.state-page button.switch-button {
  margin-top: 8px;
}

.state-page .error-text {
  color: #d32f2f;
}

.workflow-rerun-button > :not(:last-child) {
  margin-right: 8px;
}

.workflow-rerun-button svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.workflow-rerun-button .spinner {
  --size: 16px;
}

.workflow-rerun-button .loading {
  --spinner-size: 18px;

  width: var(--spinner-size);
  height: var(--spinner-size);
  margin-left: -2px;
}

.workflow-rerun-button .loading::before {
  width: var(--spinner-size);
  height: var(--spinner-size);
}

.invocation-query-graph-card {
  padding: 0;
  background: #fafafa;
  box-shadow:
    0px 1px 4px rgba(0, 0, 0, 0.2),
    0px 1px 6px rgba(0, 0, 0, 0.1);
}

.invocation-query-graph-card:hover {
  box-shadow:
    0px 2px 6px rgba(0, 0, 0, 0.2),
    0px 1px 10px rgba(0, 0, 0, 0.1);
}

svg.invocation-query-graph {
  width: 100%;
  cursor: all-scroll;
}

svg.invocation-query-graph .nodes {
  fill: #fff;
  stroke: #212121;
  stroke-width: 4px;
}
svg.invocation-query-graph .nodes text {
  fill: #000;
}

svg.invocation-query-graph path {
  stroke: #212121;
  fill: #212121;
  stroke-width: 2px;
}

svg.invocation-query-graph .nodes text {
  stroke-width: 0;
  font-size: 0.9em;
}

svg.invocation-query-graph .nodes rect {
  rx: 8px;
  ry: 8px;
}

.invocation-query-graph-hidden-card .show-anyway {
  font-weight: 600;
  text-decoration: underline;
}

.invocation-query-graph-summary-card .graph-summary {
  margin-top: 16px;
}

.invocation-query-graph-summary-card .summary-section {
  margin-top: 16px;
}

.invocation-query-graph-summary-card .summary-header {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.invocation-query-graph-summary-card .summary-explanation {
  margin-bottom: 8px;
  color: #616161;
}

.invocation-query-graph-summary-card .summary-table {
  display: grid;
  margin-top: 8px;
  gap: 4px 16px;
  grid-template-columns: auto 1fr;
}

.invocation-query-graph-summary-card .summary-numeric-value {
  font-weight: 600;
  min-width: 48px;
  color: #212121;
  text-align: right;
}

.invocation .build-logs-card .loading.loading-dark {
  background: transparent;
}

.invocation .invocation-tab-loading {
  margin-top: 32px;
}

.invocation .more-buttons button {
  margin-top: 16px;
  margin-right: 16px;
}

.invocation .more-buttons.nested {
  margin-top: 0;
  margin-bottom: 32px;
  margin-left: 32px;
}

.workflow-details-header {
  margin-top: 32px;
  margin-bottom: 16px;
}

.child-invocations-section {
  margin-top: 16px;
}

.child-invocations-section .child-invocations-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 8px 0;
}

.child-invocation-card.status-succeeded {
  --status-color: #8bc34a;
}
.child-invocation-card.status-failed {
  --status-color: #f44336;
}
.child-invocation-card.status-in-progress {
  --status-color: #03a9f4;
}
.child-invocation-card:is(.status-queued, .status-not-run) {
  --status-color: #3f51b5;
}

.child-invocation-card {
  margin: 0;
  padding: 16px;

  border-radius: 4px;
  border-left: 4px solid var(--status-color);

  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
}

.child-invocation-card.status-failed {
  border: 1px solid var(--status-color);
  border-left: 4px solid var(--status-color);
}

.child-invocation-card .command {
  font-weight: 600;
}

.child-invocation-card .duration {
  color: #616161;
}

.child-invocation-card:is(.status-not-run, .status-queued) :is(.duration, .command) {
  color: var(--status-color);
}

.child-invocation-card.clickable {
  box-shadow: var(--shadow-2);
  transition: box-shadow 100ms ease-out;
}

.child-invocation-card.clickable:hover {
  box-shadow: var(--shadow-4);
  background: #fafafa;
}

.child-invocation-card .icon {
  width: 20px;
  height: 20px;
}

.child-invocation-card .icon {
  stroke: var(--status-color);
}

.child-invocation-card .duration {
  text-align: right;
  margin-left: auto;
  white-space: nowrap;
}

.timing.card .progress-bar {
  height: 8px;
  border-radius: 4px;
  max-width: 300px;
  overflow: clip;
  background: #bbdefb;
}

.timing.card .progress-label {
  margin-bottom: 4px;
  font-size: 13px;
  color: #616161;
}

.timing.card .progress-bar-inner {
  height: 100%;
  background: #2196f3;
  transform-origin: left;
}

.invocation-card {
  position: relative;

  .comparison-buffer-illustration {
    position: absolute;
    top: 0;
    right: 0;
    padding: 16px;
    margin-right: 0;
  }
}

.target-more-buttons {
  display: flex;
  gap: 16px;
}

.target-more-buttons div {
  display: flex;
  align-items: center;
}

.target-more-buttons svg {
  height: 16px;
  color: rgba(0, 0, 0, 0.5);
}

.trace-viewer {
  width: 100%;
  /* Disable text selection since it conflicts with mouse panning.
     (Also, canvas text isn't selectable.) */
  user-select: none;
}

.trace-viewer .panel {
  position: absolute;
  inset: 0;
  overflow-x: scroll;
  overflow-y: scroll;
}

.trace-viewer canvas {
  position: sticky;
  top: 0;
  left: 0;
}

.trace-viewer .panel-container:not(:last-child) {
  margin-bottom: 16px;
}

.trace-viewer .panel-container {
  border-radius: 2px;
  border: 2px solid #eee;
  box-sizing: border-box;
}

.trace-viewer .panel::-webkit-scrollbar-thumb {
  background: #bdbdbd;
  border-radius: 1px;
}
.trace-viewer .panel::-webkit-scrollbar-thumb:hover {
  background: #9e9e9e;
}
.trace-viewer .panel::-webkit-scrollbar-thumb:active {
  background: #757575;
}
.trace-viewer .panel::-webkit-scrollbar-corner {
  background: #e0e0e0;
}

.trace-viewer .panel::-webkit-scrollbar {
  width: var(--scrollbar-size);
  height: var(--scrollbar-size);
  background: #fafafa;
}

.trace-viewer .panel-controls {
  position: absolute;
  right: var(--scrollbar-size);
  display: flex;
  padding: 8px;
  gap: 4px;
}

.trace-viewer .button {
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
  outline: none;
  background: rgba(250, 250, 250, 0.6);
  backdrop-filter: blur(3px);
  border-radius: 4px;
  color: #616161;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: 70ms ease-out;
  border: 1px solid transparent;
  box-sizing: border-box;
  cursor: pointer;
}

.trace-viewer .button:hover {
  opacity: 1;
}

.trace-viewer .button:focus {
  border: 1px solid #64b5f6;
}

.trace-viewer .button:active {
  background: #f5f5f5;
  border: 1px solid #757575;
  color: black;
}

.trace-viewer .icon-button {
  padding: 0;
  width: 32px;
}

.trace-viewer .button .icon {
  width: 20px;
  height: 20px;
}

.trace-viewer-hovercard {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.27);
  padding: 8px;
  border-radius: 4px;
  font-size: 12px;
  backdrop-filter: blur(3px);
  max-width: calc(min(640px, 100vw));
  word-break: break-all;
}

.trace-viewer-hovercard .data {
  color: #000;
}

.trace-viewer-hovercard.no-block-hovered {
  color: #888;
}

.trace-viewer-hovercard .hovercard-title {
  font-size: 13px;
  font-weight: bold;
}

.trace-viewer-hovercard .hovercard-details {
  color: #888;
}

.trace-viewer-hovercard .duration {
  font-size: 14px;
  margin-top: 4px;
  padding-top: 4px;
  border-top: 1px solid #eee;
  margin-bottom: 4px;
}

.trace-viewer .filter {
  margin-bottom: 16px;
}

.trace-viewer .zoom-factor {
  background: rgba(255, 240, 130, 0.6);
  padding: 6px 8px;
  margin-right: 4px;
  font-variant-numeric: tabular-nums;
  text-align: center;
}

.terminal {
  --scrollbar-width: 8px;
  background: #212121;
  display: flex;
}
.terminal.light-terminal {
  background: #fff;
}

.terminal .terminal-search {
  display: flex;
  align-items: center;
}

@media (max-width: 1024px) {
  .terminal .terminal-search {
    display: none;
  }
}

.terminal .search-navigation {
  display: flex;
  align-items: center;
}

@media (max-width: 1280px) {
  .terminal .search-navigation {
    display: none;
  }
}

.terminal .terminal-search-input {
  height: 32px;
  max-width: 180px;
  border: 1px solid #eee;
  border-radius: 8px;
}

.terminal .terminal-text {
  height: 400px;
  overflow: visible;
}

.terminal .terminal-top-bar {
  display: flex;
  padding-right: var(--scrollbar-width);
}

.terminal .terminal-titles {
  display: flex;
  color: white;
}

.terminal.light-terminal .terminal-titles {
  color: black;
}

.terminal .terminal-actions {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.terminal button.terminal-action {
  appearance: none;
  background: none;
  border: none;
  background: none;
  cursor: pointer;

  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.terminal .terminal-action .icon {
  width: 20px;
  height: 20px;
}

.terminal .terminal-action:disabled {
  opacity: 0.3;
}

.terminal .terminal-action:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.1);
}
.terminal.light-terminal .terminal-action:hover:not(:disabled) {
  background: #eee;
}

.terminal .terminal-action:focus:not(:disabled) {
  border: 2px solid rgba(255, 255, 255, 0.1);
}
.terminal.light-terminal .terminal-action:focus:not(:disabled) {
  border: 2px solid #eee;
}

.terminal .terminal-action:active:not(:disabled) {
  background: rgba(255, 255, 255, 0.2);
}
.terminal.light-terminal .terminal-action:active:not(:disabled) {
  background: #bdbdbd;
}

.terminal .terminal-action:not(.active) .icon {
  stroke: #9e9e9e;
}
.terminal.light-terminal .terminal-action:not(.active) .icon {
  stroke: #cfd8dc;
}

.terminal .terminal-line {
  /* Render whitespace as-is and disable native line wrapping, since wrapping is
     handled programmatically. Lines need to be fixed height so that
     react-window can efficiently determine which lines are currently in the
     viewport and need to be rendered. */
  white-space: pre;
  font-family: "Source Code Pro", monospace;
}

.terminal .terminal-line.selected {
  background-color: rgba(255, 255, 255, 0.25);
}

.terminal .search-result-count {
  /* Fit 6-digit result counts without layout shifting. */
  min-width: 128px;
  font-size: 13px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  color: white;
}

.terminal.light-terminal .search-result-count {
  color: black;
}

.terminal .no-results {
  opacity: 0.3;
}

.terminal .lines-list {
  /* See https://github.com/mozilla-frontend-infra/react-lazylog/issues/90#issuecomment-988285254 */
  overflow-x: scroll !important;
}

.terminal .terminal-line {
  color: white;
}
.terminal.light-terminal .terminal-line {
  color: #212121;
}

/* Scrollbars */

.terminal ::-webkit-scrollbar {
  width: var(--scrollbar-width);
  height: var(--scrollbar-width);
}

.terminal ::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: calc(var(--scrollbar-width) / 2);
}

.terminal.light-terminal ::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
}

.terminal ::-webkit-scrollbar-corner {
  background-color: transparent;
}

/* ANSI styles */

.terminal .ansi-bold {
  font-weight: bold;
}
.terminal .ansi-italic {
  font-style: italic;
}
.terminal .ansi-underline {
  text-decoration: underline;
}

/* Dark terminal colors */

.terminal .ansi-fg-black {
  color: black;
}
.terminal .ansi-fg-green {
  color: #66bb6a;
}
.terminal .ansi-fg-red {
  color: #ef5350;
}
.terminal .ansi-fg-yellow {
  color: #ffee58;
}
.terminal .ansi-fg-blue {
  color: #42a5f5;
}
.terminal .ansi-fg-magenta {
  color: #ab47bc;
}
.terminal .ansi-fg-cyan {
  color: #26c6da;
}
.terminal .ansi-fg-white {
  color: white;
}
.terminal .ansi-fg-grey {
  color: #bdbdbd;
}
.terminal .ansi-bg-black {
  background-color: black;
}
.terminal .ansi-bg-green {
  background-color: #66bb6a;
}
.terminal .ansi-bg-red {
  background-color: #ef5350;
}
.terminal .ansi-bg-yellow {
  background-color: #ffee58;
}
.terminal .ansi-bg-blue {
  background-color: #42a5f5;
}
.terminal .ansi-bg-magenta {
  background-color: #ab47bc;
}
.terminal .ansi-bg-cyan {
  background-color: #26c6da;
}
.terminal .ansi-bg-white {
  background-color: white;
}
.terminal .ansi-bg-grey {
  background-color: #bdbdbd;
}

/* Light terminal color overrides */

.terminal.light-terminal .ansi-fg-green {
  color: #388e3c;
}
.terminal.light-terminal .ansi-fg-red {
  color: #e53935;
}
.terminal.light-terminal .ansi-fg-yellow {
  color: #f9a825;
}
.terminal.light-terminal .ansi-fg-blue {
  color: #1e88e5;
}
.terminal.light-terminal .ansi-fg-magenta {
  color: #8e24aa;
}
.terminal.light-terminal .ansi-fg-cyan {
  color: #00acc1;
}
.terminal.light-terminal .ansi-fg-grey {
  color: #757575;
}

.terminal .search-match {
  background: #424242;
  color: white;
}
.terminal.light-terminal .search-match {
  background: #eceff1;
  color: black;
}

.terminal .active-search-match {
  background: #757575;
}
.terminal.light-terminal .active-search-match {
  background: #b0bec5;
}

/* Page-specific overrides */

.expanded .terminal .terminal-text,
.test-log .terminal-text {
  height: calc(100vh - 200px);
}

.invocation-action-card .terminal {
  padding: 8px 16px;
  border-radius: 8px;
}

.banner {
  border-radius: 8px;
  padding: 16px;

  display: flex;
  align-items: start;
}

.banner.banner-info {
  background: #e1f5fe;
}

.banner.banner-success {
  background: #c8e6c9;
}

.banner.banner-warning {
  background: #fff3e0;
}

.banner.banner-error {
  background: #ffcdd2;
}

.banner > :not(:last-child) {
  margin-right: 8px;
}

.base-button {
  padding: 8px 16px;
  min-height: 40px;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  border: 0;
  border-radius: 8px;
  transition: border 200ms ease;
  cursor: pointer;
  box-sizing: border-box;
  text-align: center;
  line-height: normal;
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;

  flex-shrink: 0;
  align-self: center;
  display: inline-flex;
  align-items: center;
  outline: 2px solid transparent;
}

.filled-button {
  background-color: #212121;
  color: #fff;
}

.filled-button:focus {
  outline: 2px solid #2196f3;
}

.filled-button.destructive {
  background-color: #c62828;
}

.filled-button:hover {
  background-color: #616161;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.filled-button.destructive:hover {
  background-color: #d32f2f;
}

.filled-button.destructive:active {
  background-color: #b71c1c;
}

.filled-button:active {
  box-shadow: none;
}

/* Extra specificity here so the [disabled] style takes precedence. */
.filled-button.filled-button.filled-button[disabled],
.filled-button.filled-button.filled-button[disabled]:hover {
  background: #bbb;
  cursor: not-allowed;
  box-shadow: none;
}

.outlined-button {
  background: transparent;
  border: 1px solid rgba(20, 20, 20, 0.1);
  flex-shrink: 1;
  overflow: hidden;
}

.outlined-button:focus {
  border: 1px solid black;
}

.outlined-button.destructive {
  color: #c62828;
}

.outlined-button:hover:not(:active) {
  transition: background-color 200ms ease;
  background: rgba(20, 20, 20, 0.1);
}

.outlined-button:hover:not(:focus) {
  border: 1px solid #9e9e9e;
}

.outlined-button:active {
  background: rgba(20, 20, 20, 0.2);
}

/* Extra specificity here so the [disabled] style takes precedence. */
.outlined-button.outlined-button.outlined-button[disabled],
.outlined-button.outlined-button.outlined-button[disabled]:hover {
  background: transparent;
  border: 1px solid rgba(20, 20, 20, 0.1);
  cursor: not-allowed;
}

.outlined-button span {
  text-overflow: ellipsis;
  overflow: hidden;
}

.base-button.checkbox-button {
  padding: 0;
}

.checkbox-button label {
  padding: 8px 16px;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.checkbox-button input {
  cursor: pointer;
}

.checkbox-button label > :not(:last-child) {
  margin-right: 8px;
}

.outlined-button-group {
  background: transparent;
  display: flex;
  border-radius: 8px;
  box-sizing: border-box;
  border: 1px solid rgba(20, 20, 20, 0.1);
}

.outlined-button-group > .outlined-button.outlined-button.outlined-button,
.outlined-button-group > .outlined-button.outlined-button.outlined-button:hover {
  border: none;
  min-height: 38px; /* = 40px usual min-height - 1px for top + bottom border from parent */
}

.outlined-button-group > .outlined-button.outlined-button:not(:last-child),
.outlined-button-group > .outlined-button.outlined-button:not(:last-child):hover {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: 1px solid rgba(20, 20, 20, 0.1);
}

.outlined-button-group > .outlined-button:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.icon-button {
  padding: 0;
  width: 40px;
  justify-content: center;
  flex-shrink: 0;
}

.big-button {
  padding: 16px 32px;
}

.small-button {
  font-size: 14px;
  padding: 4px 16px;
  line-height: 14px;
  min-height: 28px;
}

.dialog-wrapper {
  max-height: 100%;
}

.dialog-card {
  max-height: inherit;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  overflow: clip;

  max-width: 80vw;
  width: 640px;
  background: white;
  border-radius: 8px;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.27),
    0 3px 5px rgba(0, 0, 0, 0.12);

  padding: 16px 0;
  --dialog-side-padding: 24px;
}

.dialog-card .dialog-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  margin-top: 8px;
  padding: 0 var(--dialog-side-padding);
}

.dialog-header > :not(:last-child) {
  margin-right: 8px;
}

.dialog-title {
  font-size: 28px;
}

.dialog-body {
  padding: 8px var(--dialog-side-padding);
  overflow-y: auto;
}

.dialog-body p {
  margin-top: 0;
}

.dialog-footer {
  display: flex;
  padding: 0 var(--dialog-side-padding);
  margin-top: 8px;
  /* Convert bottom margin to padding so that the shadow can render. */
  padding-bottom: 8px;
  margin-bottom: -8px;
}

.dialog-footer-buttons {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.dialog-footer-buttons > :not(:last-child) {
  margin-right: 16px;
}

.dialog-form {
  margin: 0;
}

.digest-component {
  display: inline-flex;
  align-items: center;
  color: #000;
  border-radius: 4px;
  overflow: hidden;
}

.digest-component-hash {
  padding: 0 8px;
  max-width: 64px;
  min-width: 24px;
  overflow: hidden;
  display: inline-block;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: all 0.5s ease;
}

.digest-component .digest-component-hash.fixed-width,
.digest-component .digest-component-size.fixed-width {
  max-width: initial;
  min-width: initial;
  box-sizing: border-box;
}

.digest-component.expand-on-hover .digest-component-hash:hover {
  max-width: 500px;
}

.digest-component.expanded .digest-component-hash {
  max-width: initial;
}

.digest-component.expanded .digest-component-hash:hover {
  max-width: initial;
}

.digest-component-size {
  padding: 0 8px;
  display: inline-block;
  white-space: nowrap;
  background-color: #eee;
}

.text-input {
  height: 40px;
  font-family: inherit;
  font-size: inherit;
  padding: 8px 16px;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid #9e9e9e;
  border-radius: 8px;
}

.text-input.dark {
  background-color: #212121;
  color: white;
  caret-color: white;
}

.text-input::placeholder {
  color: #aaa;
}

.text-input[readonly] {
  background: #eee;
}

.text-input.invalid {
  border: 1px solid #e53935;
}

/* Hide up/down buttons on number inputs. */
.text-input::-webkit-outer-spin-button,
.text-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.text-input[type="number"] {
  -moz-appearance: textfield;
}

.filter-input-container {
  border-radius: 21px;
  height: 42px;
  background-color: #f3f3f3;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.filter-input-container .right-element {
  position: absolute;
  right: 16px;
  font-size: 12px;
  color: #555;
  white-space: nowrap;
  pointer-events: none;
}

.filter-input-container .icon {
  width: 16px;
  height: 100%;
  position: absolute;
  left: 20px;
  pointer-events: none;
  transition: stroke 300ms ease-out;
}

.filter-input-container .filter-input {
  outline: 0;
  border: 0;
  appearance: none;
  background: transparent;
  padding: 0 42px;
  height: 100%;
  font-family: inherit;
  font-size: 14px;
  color: black;
  width: 100%;
}

.filter-input-container .filter-input::placeholder {
  color: #aaa;
}

.filter-input-container.is-filtering .icon {
  stroke: #1e88e5;
}

.text-link {
  text-decoration: underline;
  cursor: pointer;
  color: #1565c0;
}

.text-link.plain {
  font-weight: 600;
}

.text-link.plain:not(:hover) {
  color: #000;
}

.text-link:hover {
  color: #2196f3;
}

.menu-list {
  margin: 0;
  padding: 8px 0;
  list-style: none;
}

.menu-list-item {
  margin: 0;
  padding: 8px 16px;
  font-size: 16px;
  cursor: pointer;

  white-space: nowrap;
}

.menu-list-item:hover {
  background: #eee;
}

.menu-list-item.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: transparent;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;

  padding: 24px;
  box-sizing: border-box;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(1px) saturate(25%);

  z-index: 1000;
}

.modal-content:focus {
  outline: none;
}

.modal-content {
  animation: 50ms ease-out modal-content-animate-in;
}

.modal-content .bold {
  font-weight: 600;
}

@keyframes modal-content-animate-in {
  from {
    opacity: 0.5;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    perspective: none;
    transform: none;
  }
}

.popup-shade {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 6;
}

.popup {
  position: absolute;
  top: 100%;

  z-index: 6;

  border-radius: 4px;
  background: white;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.27),
    0 3px 5px rgba(0, 0, 0, 0.12);
}

.popup.anchor-right {
  right: 0;
}

.popup.anchor-left {
  left: 0;
}

.popup-container {
  position: relative;
}

.select-wrapper {
  position: relative;
  display: inline-block;
}

.select {
  font-size: inherit;
  font-family: inherit;
  height: 40px;
  padding: 8px 16px;
  box-sizing: border-box;
  border-radius: 8px;
  border: 1px solid #9e9e9e;
  transition: border 200ms ease;
  background-color: transparent;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  cursor: pointer;
  text-overflow: ellipsis;
  overflow: clip;
  /** make the select element fill the .select-wrapper parent */
  width: 100%;
}

.select:focus {
  border: 1px solid black;
}

.select:hover:not(:active) {
  transition: background-color 200ms ease;
  background-color: rgba(20, 20, 20, 0.1);
}

.select:hover:not(:focus) {
  border: 1px solid #9e9e9e;
}

.select-wrapper .dropdown-icon-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40px;
  height: 100%;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}

.select:disabled {
  color: black;
  background: #bbb;
}

.small-select {
  font-size: 14px;
  padding: 4px 40px 4px 16px;
  line-height: 14px;
  min-height: 28px;
  height: auto;
}

.horizontal-slider {
  padding: 8px 16px 24px 16px;
}

.slider-track {
  height: 4px;
  margin-top: 4px;
  background-color: #212121;
}

.slider-track-0 {
  background-color: #e0e0e0;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}

.slider-track-2 {
  background-color: #e0e0e0;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}

.slider-thumb {
  width: 12px;
  height: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slider-thumb-circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #212121;
}

.slider-thumb-value {
  position: absolute;
  width: 36px;
  height: 36px;
  font-size: 12px;
  margin-top: 14px;
}

.slider-thumb-0 .slider-thumb-value {
  text-align: right;
  padding-right: 30px;
}

.slider-thumb-1 .slider-thumb-value {
  text-align: left;
  padding-left: 30px;
}

.radio-input {
  --radio-size: 16px;

  cursor: pointer;
  margin: 0;
  width: var(--radio-size);
  height: var(--radio-size);
}

.checkbox-input {
  --checkbox-size: 16px;

  cursor: pointer;
  margin: 0;
  width: var(--checkbox-size);
  height: var(--checkbox-size);
}

.spinner {
  --size: 24px;

  width: var(--size);
  height: var(--size);

  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner:before {
  content: "";
  display: block;
  animation: rotate 2s linear infinite;
  width: inherit;
  height: inherit;
  background-image: url("/image/loader.svg");
  background-size: cover;
}

.spinner.white:before {
  background-image: url("/image/loader-white.svg");
}

.spinner.small-spinner {
  --size: 16px;
}


