* {
  box-sizing: border-box; }

html {
  height: 100%;
  min-height: 100%;
  overflow-y: hidden; }

body {
  margin: 0 auto;
  height: 100%;
  min-height: 100%;
  background: #111; }

#editorApp {
  background: #1d222d;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden; }
  #editorApp .scene {
    width: 10000px;
    height: 10000px;
    position: absolute;
    left: -4000px;
    top: -4700px;
    background-position: 0 0;
    background-size: 100px 100px;
    background-color: #141921;
    background-image: linear-gradient(to right, #343f52 1px, transparent 1px), linear-gradient(to bottom, #343f52 1px, transparent 1px); }

.node {
  width: 350px;
  height: 170px;
  background: #272e3b;
  border-radius: 7px;
  box-shadow: #00000099 0 0 14px -2px;
  position: absolute;
  top: calc(5000px - 25px);
  left: calc(5000px - 25px);
  display: flex;
  flex-direction: row;
  overflow: hidden; }
  .node .leftSide, .node .rightSide {
    width: 30px;
    min-width: 30px;
    background: #353e4f;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column; }
  .node .content {
    width: 100%;
    height: 100%; }
  .node .connector {
    border-radius: 50%;
    width: 15px;
    height: 15px;
    border: 3px solid #566279;
    margin-bottom: 10px; }
    .node .connector:first-child {
      margin-top: auto; }
