.network {
  width: 100%;
  height: 100%;
}

.graph-tooltip {
  position: absolute;
  transform: translate(-50%, 25px);
  font-family: Sans-serif;
  font-size: 16px;
  padding: 4px;
  border-radius: 3px;
  color: #eee;
  background: rgba(0, 0, 0, 0.65);
  visibility: hidden;
}

.grabbable {
  cursor: move;
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}

.grabbable:active {
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}

.context-menu {
  position: absolute;
  background: #fff;
  border-radius: 2px;
  border: 1px solid #ececec;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  text-align: left;
  padding: 0.5em 0;
  font-size: 14px;
  width: 220px;
  max-height: 40em;
  z-index: 20;
  overflow-y: auto;
}

.context-menu > .item {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #6c757d;
  height: 36px;
  line-height: 36px;
  padding: 0 1em 0 1.2em;
  cursor: pointer;
  white-space: nowrap;
}
