#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: 4.5rem;
    height: 6rem;
    margin-top: -40%;
    margin-left: -50%;
    border-radius: 50%;

    background: url(../../img/mouse_arrow.png) no-repeat;
    background-position: center;
    border: transparent;

  }

  #cursor.arrow .cursor__circle{
    width: 12.8rem;
    height: 12.8rem;
	background: url(../../img/mouse_arrow.png) no-repeat;
    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: 8.0rem;
    height: 8.0rem;
	background:rgba(17,17,17,1.0);
    border: transparent;
  }

  #cursor.arrowDrag::after{
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
	transform: translate(-80%, -50%);
    width: 100%;
    height: 100%;
	content: 'MORE';
	font-family: 'Syncopate';
	font-size: 1.4rem;
	color: #fff;
	/*
    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: 10.3rem;
    height: 10.3rem;
    background: url(../../img/mouse_arrow_round.png);
	background-position: center;

  }
}







