body #magicMouseCursor {
  position: fixed;
  border: 2px solid var(--black);
  z-index: 9999999;
  left: 0;
  top: 0;
  transition: transform 0.05s, width 0.2s, height 0.2s;
  border-radius: 5px;
  pointer-events: none;
}

body #magicMouseCursor.is-hover {
  border-radius: 30px;
  box-sizing: content-box;
  padding: 5px;
  top: -7.5px;
  left: -7.5px;
  border-color: var(--primary-color);
}

body #magicPointer {
  height: 30px;
  width: 30px;
  border-radius: 5px;
  top: 0;
  left: 0;
  position: fixed;
  pointer-events: none;
  transition: background 0.2s, width 0.2s, height 0.2s, box-shadow 0.2s;
  z-index: 9999999;
  border: 1px solid var(--black);
  content: url(./icons/mouse-cursor.svg);
}

body #magicPointer.is-hover {
  background: var(--primary-color);
}

body .magic-hover {
  transition: all 0.2s;
}

body .magic-hover:hover {
  cursor: none;
}
