* {
  box-sizing: border-box;
}

body {
  background-color: black;
  align-items: center;
  justify-content: center;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  /*overflow: hidden;*/
}

#all-graphs .one-graph {
  position: relative;
}

#all-graphs .one-graph .canvas {
  background: black;
  position: absolute;
}

#all-graphs .one-graph .canvas_pointer {
  background: transparent;
  position: absolute;
}

.pointerOn {
  cursor: crosshair;
}

.pointerOnGrab {
  cursor: pointer;
}

#isLoading {
  position: absolute;
  z-index: 3;
  width: 100%;
}

#isLoading svg {
  margin: auto;
  display: block;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: draw 5s backwards infinite;
  fill-opacity: 0.3;
}

@keyframes draw {
  from {
    stroke-dashoffset: 1;
  }
  to {
    stroke-dashoffset: 0;
  }
}
