
.a-cursor .cursor-outer {
  margin-inline-start: -20px;
  margin-block-start: -20px;
  width: 40px;
  height: 40px;
  border: 2px solid var(--theme);
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 1;
  transition: all 0.5s ease-out 0s;
  mix-blend-mode: difference;
}
.a-cursor .cursor-outer.cursor-hover {
  margin-inline-start: -6px;
  margin-block-start: -6px;
  width: 12px;
  height: 12px;
  background-color: var(--theme);
  mix-blend-mode: difference;
  opacity: 1;
}
.a-cursor .cursor-outer.cursor-big {
  width: 100px;
  height: 100px;
  margin-inline-start: -70px;
  margin-block-start: -70px;
  background-color: rgb(255, 255, 255);
  mix-blend-mode: difference;
}
.a-cursor .cursor-outer.cursor-big.drag-cursor {
  opacity: 1;
  cursor: auto !important;
}
.a-cursor .cursor-outer.cursor-big.view-cursor {
  opacity: 1;
}
.a-cursor .cursor-outer.cursor-hover.drag-cursor {
  opacity: 1;
}
.a-cursor .cursor-outer.cursor-hover.view-cursor {
  opacity: 1;
}
.a-cursor .cursor-outer.drag-cursor {
  opacity: 0;
}
.a-cursor .cursor-outer.view-cursor {
  opacity: 0;
}
.a-cursor .cursor-outer.not-cursor-outer {
  opacity: 0;
}
.a-cursor .mouseCursor {
  position: fixed;
  inset-block-start: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  inset-block-end: 0;
  pointer-events: none;
  border-radius: 50%;
  transform: translateZ(0);
  visibility: hidden;
  text-align: center;
}
.a-cursor .cursor-inner {
  margin-inline-start: -5px;
  margin-block-start: -5px;
  width: 10px;
  height: 10px;
  z-index: 10000001;
  background-color: var(--theme);
  opacity: 1;
  transition: all 0.8s ease-out 0s;
  mix-blend-mode: difference;
}
.a-cursor .cursor-inner.cursor-big {
  opacity: 0;
}
.a-cursor .cursor-inner.cursor-hover {
  opacity: 0;
}
.a-cursor .cursor-inner span {
  width: 120px;
  min-width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  margin-inline-start: -60px;
  margin-block-start: -60px;
  background-color: var(--theme);
  color: var(--secondary-color);
  line-height: 1;
  opacity: 0;
  transform: scale(0);
  text-transform: uppercase;
  transition: all 0.4s ease-out 0s;
  letter-spacing: 1px;
  mix-blend-mode: normal !important;
  text-align: center;
}
.a-cursor .cursor-inner span i {
  font-size: 24px;
  margin-block-end: -8px;
}
.a-cursor .cursor-inner.view-cursor {
  margin-block-start: -60px;
}
.a-cursor .cursor-inner.not-cursor-outer {
  opacity: 0;
}
.a-cursor .draggable-cursor {
  cursor: grab !important;
}
.a-cursor .viewable-cursor {
  cursor: pointer !important;
}
.a-cursor .drag-cursor .drag {
  opacity: 1;
  transform: scale(1);
}
.a-cursor .view-cursor .view {
  opacity: 1;
  transform: scale(1);
}
.a-cursor .cursor-none .cursor-inner,
.a-cursor .cursor-none .cursor-outer {
  opacity: 0;
}

