#cursor {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  pointer-events: none;
  will-change: transform;
  /*mix-blend-mode: difference;*/
}

@media (hover: hover) and (pointer: fine) {
  .cursor__circle {
    width: 0rem;
    height: 0rem;
    margin-top: -50%;
    margin-left: -50%;
    border-radius: 50%;
	background:rgba(0,94,233,0.8);
    border: transparent;

  }

  #cursor.arrow .cursor__circle{
    width: 11.0rem;
    height: 11.0rem;
	background:rgba(0,94,233,0.8);
    border: transparent;
  }

  #cursor.arrow::after{
    content: '';
    position: absolute;
    left: -50%;
    top: -50%;
    width: 100%;
    height: 100%;
	/*
    background-image: url('https://svgshare.com/i/MzQ.svg');
    background-repeat: no-repeat;
    background-position: center;
	*/
  }

  #cursor.arrowDrag .cursor__circle{
    width: 11.0rem;
    height: 11.0rem;
	background:rgba(7,145,58,1);
    border: transparent;
  }

  #cursor.arrowDrag::after{
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
	transform: translate(-90%, -75%);
    width: 100%;
    height: 100%;
	content: '◂ Drag ▸';
	font-family: 'Poppins';
	font-size: 1.8rem;
	color: #fff;
	font-weight: 700;
	/*
    background-image: url('https://svgshare.com/i/MzQ.svg');
    background-repeat: no-repeat;
    background-position: center;
	*/
  }


  #cursor.subtle .cursor__circle{
    width: 5.0rem;
    height: 5.0rem;
	opacity: 0.3;
  }

  #cursor.subLink .cursor__circle{
    width: 5.0rem;
    height: 5.0rem;
	opacity: 0.8;
  }

  #cursor.overlay .cursor__circle{
    width: 4.8rem;
    height: 4.8rem;
    background-color: rgba(227, 222, 193, 1);
    border-color: transparent;
  }
}







