.rows {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.cols {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
}
.command-hub {
  display: flex;
  font-family: 'Andale Mono';
  position: relative;
}
.command-hub.active {
  background: #0285d1;
}
.command-hub.active .logo {
  background: #0285d1;
  color: #fff;
}
.command-hub .logo {
  margin: 20px;
  width: 30px;
  height: 30px;
}
.command-hub .logo:hover {
  cursor: pointer;
}
.command-hub .command-hub-input {
  flex-grow: 1;
  display: flex;
  background: transparent;
  border: none;
  flex-grow: 1;
  font-size: 140%;
  color: #fff;
  font-family: 'Andale Mono';
}
.command-hub .command-hub-input:focus {
  outline: none;
}
.command-hub .command-hub-panel {
  background: #31b2fd;
  color: #fff;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  max-height: calc(100vh - 70px);
  z-index: 10;
}
.command-hub .command-hub-content {
  flex-grow: 1;
}
.command-hub .commands-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 20px;
}
.command-hub .commands {
  margin: 30px 20px 20px 20px;
  user-select: none;
  display: flex;
  line-height: 100%;
}
.command-hub .commands .commands-column {
  width: 100%;
}
.command-hub .commands .commands-column:not(:last-child) {
  margin-right: 30px;
}
.command-hub .commands .commands-section:not(:last-child) {
  margin-bottom: 20px;
}
.command-hub .commands .section-title {
  margin-bottom: 5px;
  margin-top: -2px;
}
.command-hub .commands .command {
  display: flex;
  margin-bottom: 3px;
}
.command-hub .commands .command .title {
  flex-grow: 1;
  position: relative;
}
.command-hub .commands .command .title-mask {
  position: absolute;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 100%;
}
.command-hub .commands .command .binding {
  display: flex;
  padding-left: 5px;
}
.command-hub .commands .command .binding-bubble {
  background: #0285d1;
  color: #fff;
  font-size: 12px;
  padding: 0 5px;
  border-radius: 5px;
  white-space: nowrap;
}
.command-hub .commands .command .binding-bubble:not(:last-child) {
  margin-right: 3px;
}
.command-hub .commands .command.selected {
  background-color: #0285d1;
}
.command-hub .commands .command:hover {
  background-color: #0285d1;
  cursor: pointer;
}
.command-hub .commands .section-title {
  text-decoration: underline;
}
.rows {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.cols {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
}
.devtools {
  height: 30%;
  overflow: scroll;
  background: #696969;
  color: #fff;
  font-family: 'Fira Code', 'Andale Mono';
  min-height: 100px;
}
.data-explorer {
  display: flex;
  height: 100%;
}
.data-explorer-col {
  padding: 10px;
  overflow-y: scroll;
}
.data-explorer-col.grow {
  flex-grow: 1;
}
.data-explorer-col.no-shrink {
  flex-shrink: 0;
}
.path-link {
  white-space: nowrap;
}
.path-link:hover {
  cursor: pointer;
}
.path-link.selected {
  font-weight: bold;
}
.rows {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.cols {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
}
.editor {
  display: flex;
  flex-grow: 1;
  overflow: hidden;
  background: transparent;
  color: #696969;
}
.editor .cm-editor {
  flex-grow: 1;
  min-width: 0;
  min-height: 0;
  height: 100%;
  background: transparent;
  font-family: 'Fira Code', 'Andale Mono';
  line-height: 140%;
}
.editor .cm-editor.cm-focused {
  outline: none;
}
.editor .cm-scroller {
  font-family: inherit;
  overflow: auto;
}
.editor .cm-content {
  padding: 20px 30px;
  caret-color: #696969;
}
.editor .cm-title {
  display: block;
  font-family: Calistoga;
  font-size: 3em;
  font-weight: 400;
  line-height: 1.3;
  padding-bottom: 0.5em;
  color: #696969;
}
.editor .cm-title span {
  color: inherit;
}
.editor .cm-title-empty::before {
  content: 'Untitled';
  display: inline-block;
  width: 0;
  overflow: visible;
  white-space: nowrap;
  opacity: 0.35;
  pointer-events: none;
}
.editor .cm-active-value {
  background-color: rgba(255,225,74,0.35);
  border-radius: 2px;
}
.editor .cm-active-onset {
  border-radius: 2px;
  animation: onset-flash 300ms;
}
.cm-doc-tooltip {
  max-width: 32em;
  padding: 8px 10px;
  font-family: 'Fira Code', 'Andale Mono';
  line-height: 1.45;
}
.cm-doc-tooltip .cm-doc-sig {
  font-weight: 600;
  white-space: pre-wrap;
  color: #696969;
}
.cm-doc-tooltip .cm-doc-body {
  margin-top: 4px;
  color: #6b7280;
  white-space: pre-wrap;
}
.cm-doc-tooltip .cm-doc-meta {
  margin-top: 4px;
  color: #9aa0a6;
  font-style: italic;
}
@-moz-keyframes onset-flash {
  from {
    background-color: rgba(255,225,74,0.85);
  }
}
@-webkit-keyframes onset-flash {
  from {
    background-color: rgba(255,225,74,0.85);
  }
}
@-o-keyframes onset-flash {
  from {
    background-color: rgba(255,225,74,0.85);
  }
}
@keyframes onset-flash {
  from {
    background-color: rgba(255,225,74,0.85);
  }
}
*:focus {
  outline: none;
}
.rows {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.cols {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
}
.home {
  padding: 30px 40px;
  width: 100%;
  display: flex;
  align-items: center;
  color: #696969;
  margin-top: -60px;
}
.home-hero-headline {
  font-size: 350%;
  font-weight: 400;
  font-family: Calistoga;
}
.home-hero-cta {
  padding-top: 20px;
  font-family: 'Fira Code', 'Andale Mono';
}
.sandbox {
  border: none;
  background: #fff;
}
.rows {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.cols {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
}
.button {
  border: none;
  height: 50px;
  width: 50px;
  background-color: #31b2fd;
  color: #fff;
  font-size: 18px;
  font-family: 'Andale Mono';
  display: flex;
  align-items: center;
  justify-content: center;
}
.button:focus {
  outline: none;
}
.button:not(:disabled):hover {
  background-color: #0285d1;
  cursor: none;
}
.button:disabled {
  opacity: 0.5;
}
.icon {
  fill: #fff;
  height: 25px;
  width: 25px;
}
.rotate {
  animation-name: spin;
  animation-duration: 1000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@-moz-keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@-webkit-keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@-o-keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
.rows {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.cols {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
}
.logo {
  background: #0285d1;
  fill: #fff;
}
@font-face {
  font-family: 'Fira Code';
  font-style: normal;
  src: url("/fonts/FiraCode/FiraCode-Regular.woff");
}
@font-face {
  font-family: Calistoga;
  font-style: normal;
  src: url("/fonts/Calistoga/Calistoga-Regular.ttf");
}
html,
body,
#root {
  margin: 0;
  height: 100%;
  font-size: 14px;
}
html {
  overflow: hidden;
}
* {
  box-sizing: border-box;
}
.app {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.main {
  height: 100%;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-grow: 1;
  flex-direction: row;
}
.sink {
  background: #fafafa;
  min-width: 400px;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  width: 45%;
}
.sink-content {
  flex-grow: 1;
  min-height: 0;
  display: flex;
}
.canvas {
  min-width: 50%;
  flex-grow: 1;
  display: flex;
}
.canvas > * {
  width: 100%;
}
@media screen and (max-width: 900px) {
  .main {
    flex-direction: column;
  }
  .sink,
  .canvas {
    max-width: 100%;
    width: 100%;
    flex-grow: 1;
  }
}
