.cur,
.curR {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1001;
  border-radius: 50%;
  display: none;
}

@media (pointer: fine) {
  .cur,
  .curR {
    display: block;
  }
}

.cur {
  width: 8px;
  height: 8px;
  background: var(--orange2, #cc785c);
  transform: translate(-50%, -50%);
  transition: opacity .3s, width .25s var(--ease, ease), height .25s var(--ease, ease);
}

.curR {
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(224, 148, 120, .55);
  transform: translate(-50%, -50%);
  transition: width .35s var(--ease, ease), height .35s var(--ease, ease), border-color .3s, background .3s;
}

.curR.hov {
  width: 22px;
  height: 22px;
  border-width: 2px;
  border-color: rgba(224, 148, 120, .95);
}

.cur.hov {
  width: 5px;
  height: 5px;
}

.curR.hide,
.cur.hide {
  opacity: 0;
}
