.easyv-flow {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.easyv__container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.easyv__pane {
  z-index: 1;
}

.easyv__viewport {
  transform-origin: 0 0;
  z-index: 2;
  pointer-events: none;
}

.easyv__renderer {
  z-index: 4;
}

.easyv__selectionpane {
  z-index: 5;
}

.easyv__edges {
  pointer-events: none;
  overflow: visible;
}

.easyv__edge {
  pointer-events: visibleStroke;
}

.easyv__edge.inactive {
    pointer-events: none;
  }

@-webkit-keyframes dashdraw {
  from {
    stroke-dashoffset: 10;
  }
}

@keyframes dashdraw {
  from {
    stroke-dashoffset: 10;
  }
}

.easyv__edge-path {
  fill: none;
}

.easyv__edge-textwrapper {
  pointer-events: all;
}

.easyv__edge-text {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.easyv__connection {
  pointer-events: none;
}

.easyv__connection .animated {
    stroke-dasharray: 5;
    -webkit-animation: dashdraw 0.5s linear infinite;
            animation: dashdraw 0.5s linear infinite;
  }

.easyv__connection-path {
  fill: none;
}

.easyv__nodes {
  pointer-events: none;
  transform-origin: 0 0;
}

.easyv__node {
  position: absolute;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: all;
  transform-origin: 0 0;
  box-sizing: border-box;
}

.easyv__nodesselection {
  z-index: 3;
  transform-origin: left top;
  pointer-events: none;
}

.easyv__nodesselection-rect {
    position: absolute;
    pointer-events: all;
    cursor: -webkit-grab;
    cursor: grab;
  }

.easyv__handle {
  pointer-events: none;
}

.easyv__handle.connectable {
    pointer-events: all;
  }

.easyv__handle-bottom {
  top: auto;
  left: 50%;
  bottom: -4px;
  transform: translate(-50%, 0);
}

.easyv__handle-top {
  left: 50%;
  top: -4px;
  transform: translate(-50%, 0);
}

.easyv__handle-left {
  top: 50%;
  left: -4px;
  transform: translate(0, -50%);
}

.easyv__handle-right {
  right: -4px;
  top: 50%;
  transform: translate(0, -50%);
}

.easyv__edgeupdater {
  cursor: move;
  pointer-events: all;
}

/* additional components */

.easyv__controls {
  position: absolute;
  z-index: 5;
  bottom: 20px;
  left: 15px;
}

.easyv__controls-button {
    width: 24px;
    height: 24px;
    border: none;
  }

.easyv__controls-button svg {
      width: 100%;
    }

.easyv__minimap {
  position: absolute;
  z-index: 5;
  bottom: 20px;
  right: 15px;
}

.easyv__attribution {
  font-size: 10px;
  position: absolute;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.5);
  padding: 2px 3px;
  color: #999;
}

.easyv__attribution a {
    color: #555;
    text-decoration: none;
  }

.easyv__attribution.top {
    top: 0;
  }

.easyv__attribution.bottom {
    bottom: 0;
  }

.easyv__attribution.left {
    left: 0;
  }

.easyv__attribution.right {
    right: 0;
  }

.easyv__attribution.center {
    left: 50%;
    transform: translateX(-50%);
  }
