body #QanvaMouseCursor {
  position: fixed;
  width: 35px;
  height: 35px;
  border: 1px solid #fff;
  border-radius: 50%;
  z-index: 9999999999;
  left: 0;
  top: 0;
  transition: transform 0.07s, width 0.3s, height 0.3s;
  pointer-events: none;
}
body #QanvaMouseCursor.cursor-square {
  border-radius: 0;
}
body #QanvaPointer {
  height: 5px;
  width: 5px;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 9999999999;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  transition: background 0.2s, width 0.2s, height 0.2s, box-shadow 0.2s;
}
body #QanvaPointer.is-hover {
  background: red;
}
body .qanva-hover {
  transition: all 0.2s;
}
body .qanva-hover:hover {
  cursor: none;
}
