.custom-cursor {
  width: 2rem;
  height: 2rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  background-color: black;
  backface-visibility: hidden;
  transition: none;
  mix-blend-mode: screen;
  pointer-events: none;
  border-radius: 50%;
  transform: scale(1);
}
.custom-cursor.blend {
  mix-blend-mode: difference;
}
.custom-cursor-icon {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--green-1);
  transition: all 0.2s ease;
  transform-origin: 50% 50%;
}

.custom-cursor.custom_cursor_visible {
  opacity: 1;
}

.custom-cursor.custom_cursor_hidden {
  opacity: 0;
}

@media (pointer: none), (pointer: coarse) {
  #custom_cursor,
  #custom_cursor .custom-cursor-icon {
    display: none !important;
    visibility: hidden;
    opacity: 0;
  }

  * {
    cursor: auto !important;
  }
}

@media (max-width: 768px) {
  .custom-cursor {
    display: none;
  }
}
@media (min-width: 769px) {
  * {
    cursor: none !important;
  }
}

.custom-cursor.custom_cursor_hover .custom-cursor-icon {
  transform: scale(1.6);
}
.custom-cursor.big .custom-cursor-icon {
  transform: scale(6);
}
