@charset "UTF-8";
.context-menu {
  left: 0;
  top: 0;
  position: absolute;
  padding: 10px;
  margin-top: -20px; }
  .context-menu > .item {
    margin-left: -80%;
    padding-right: 16px; }
    .context-menu > .item .subitems {
      position: absolute;
      display: none;
      left: 100%;
      top: 0;
      border-radius: 7px;
      overflow: overlay; }
    .context-menu > .item:hover .subitems {
      display: block; }
    .context-menu > .item.have-subitems:after {
      content: '►';
      position: absolute;
      opacity: 0.6;
      right: 5px;
      top: 5px; }
  .context-menu .search input {
    color: white;
    padding: 1px 8px;
    border: 1px solid white;
    border-radius: 10px;
    font-size: 16px;
    font-family: serif;
    width: 100%;
    box-sizing: border-box;
    background: transparent; }
  .context-menu .item {
    padding: 4px;
    border-bottom: 1px solid rgba(69, 103, 255, 0.8);
    color: #fff;
    background-color: rgba(110, 136, 255, 0.8);
    cursor: pointer;
    width: 100px;
    position: relative; }
    .context-menu .item:first-child {
      border-top-left-radius: 7px;
      border-top-right-radius: 7px; }
    .context-menu .item:last-child {
      border-bottom-left-radius: 7px;
      border-bottom-right-radius: 7px; }
    .context-menu .item:hover {
      background-color: rgba(130, 153, 255, 0.8); }

.node-editor {
  overflow: hidden;
  background: transparent;
  text-align: left; }
  .node-editor * {
    box-sizing: border-box; }
  .node-editor .node {
    background: rgba(110, 136, 255, 0.8);
    border: 2px solid #4e58bf;
    border-radius: 10px;
    cursor: pointer;
    width: 180px;
    height: auto;
    padding-bottom: 6px;
    box-sizing: content-box;
    position: absolute;
    user-select: none; }
    .node-editor .node:hover {
      background: rgba(130, 153, 255, 0.8); }
    .node-editor .node.selected {
      background: #ffd92c;
      border-color: #e3c000; }
    .node-editor .node .title {
      color: white;
      font-family: sans-serif;
      font-size: 18px;
      padding: 8px; }
    .node-editor .node .socket {
      display: inline-block;
      cursor: pointer;
      border: 1px solid white;
      border-radius: 12px;
      width: 24px;
      height: 24px;
      margin: 6px;
      vertical-align: middle;
      z-index: 2; }
      .node-editor .node .socket:hover {
        border-width: 4px; }
      .node-editor .node .socket.multiple {
        border-color: yellow; }
      .node-editor .node .socket.output {
        margin-right: -12px; }
      .node-editor .node .socket.input {
        margin-left: -12px; }
    .node-editor .node .input-title, .node-editor .node .output-title {
      vertical-align: middle;
      color: white;
      display: inline-block;
      font-family: sans-serif;
      font-size: 14px;
      margin: 6px;
      line-height: 24px; }
    .node-editor .node .input-control {
      z-index: 1;
      width: 144px;
      vertical-align: middle;
      display: inline-block; }
    .node-editor .node .control {
      padding: 6px 18px; }
  .node-editor .group {
    border-radius: 16px;
    background: rgba(15, 80, 255, 0.2);
    cursor: pointer;
    width: inherit;
    height: inherit;
    border: 6px solid transparent;
    position: absolute; }
    .node-editor .group.selected {
      border-color: #ffd92c; }
    .node-editor .group .group-title {
      color: white;
      font-family: sans-serif;
      font-size: 18px;
      padding: 12px; }
    .node-editor .group .group-handler {
      background: transparent;
      width: 40px;
      height: 40px;
      position: absolute; }
      .node-editor .group .group-handler.right.bottom {
        cursor: se-resize;
        right: -10px;
        bottom: -10px; }
      .node-editor .group .group-handler.left.top {
        cursor: nw-resize;
        left: -10px;
        top: -10px; }
      .node-editor .group .group-handler.right.top {
        cursor: ne-resize;
        right: -10px;
        top: -10px; }
      .node-editor .group .group-handler.left.bottom {
        cursor: sw-resize;
        left: -10px;
        bottom: -10px; }
  .node-editor .connections {
    position: absolute;
    overflow: visible;
    pointer-events: none; }
    .node-editor .connections .connection {
      fill: none;
      stroke: steelblue;
      stroke-width: 5px;
      pointer-events: none; }
      .node-editor .connections .connection.selected {
        stroke: powderblue; }
  .node-editor select, .node-editor input {
    width: 100%;
    border-radius: 30px;
    background-color: white;
    padding: 2px 6px;
    border: 1px solid #999;
    font-size: 110%; }
