.offmenu-cursor-native-hidden,
.offmenu-cursor-native-hidden a,
.offmenu-cursor-native-hidden button,
.offmenu-cursor-native-hidden input,
.offmenu-cursor-native-hidden textarea,
.offmenu-cursor-native-hidden select,
.offmenu-cursor-native-hidden [role="button"] {
  cursor: none !important;
}

.offmenu-cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 2147483647;
  width: var(--offmenu-cursor-size, 18px);
  height: var(--offmenu-cursor-size, 18px);
  border-radius: 999px;
  background-color: var(--offmenu-cursor-color, #fff);
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-100px, -100px, 0) translate(-50%, -50%);
  mix-blend-mode: var(--offmenu-cursor-blend, difference);
  transition:
    opacity .18s ease,
    width .28s ease,
    height .28s ease,
    background-color .2s ease,
    border-radius .2s ease;
  will-change: transform, width, height;
}

.offmenu-cursor.is-visible {
  opacity: 1;
}

.offmenu-cursor.is-pressed {
  width: var(--offmenu-cursor-pressed-size, 72px);
  height: var(--offmenu-cursor-pressed-size, 72px);
}

.offmenu-cursor.has-svg {
  border-radius: 0;
  background-color: var(--offmenu-cursor-color, #fff);
  -webkit-mask-image: var(--offmenu-cursor-svg);
  mask-image: var(--offmenu-cursor-svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.offmenu-cursor img {
  width: 100%;
  height: 100%;
  display: none;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.offmenu-cursor.has-svg img {
  display: none;
}

@media (hover: none), (pointer: coarse) {
  .offmenu-cursor {
    display: none;
  }

  .offmenu-cursor-native-hidden,
  .offmenu-cursor-native-hidden a,
  .offmenu-cursor-native-hidden button,
  .offmenu-cursor-native-hidden input,
  .offmenu-cursor-native-hidden textarea,
  .offmenu-cursor-native-hidden select,
  .offmenu-cursor-native-hidden [role="button"] {
    cursor: auto !important;
  }
}
