#custom-cursor-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
}

#custom-cursor-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  background-color: #000;
  color: #fff;
  border-radius: 50%;
  transform: scale(0);
  transform-origin: center;
  transition: transform 0.3s ease-out;
}

#custom-cursor-inner.is-visible {
  transform: scale(1);
}

.cursor-plus {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
  position: relative;
  top: -2px;
}
