#magicMouseCursor {
  position: fixed;
  width: 35px;
  height: 35px;
  border: 1px solid #fac900;
  border-radius: 50%;
  pointer-events: none;
  transition: transform 0.07s;
  z-index: 9999;
}

.cursor-inner {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fac900;
  pointer-events: none;
  transition: opacity 0.15s ease-in-out;
  z-index: 9999;
}
