#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: 1.0rem;
    height: 1.0rem;
    margin-top: -50%;
    margin-left: -50%;
    border-radius: 50%;
	background:rgba(234,0,1,0.0);
    border: transparent;

  }

  #cursor.arrow .cursor__circle{
    width: 10.2rem;
    height: 10.2rem;
	background:rgba(234,0,1,1.0);
    border: transparent;
  }

  #cursor.arrow::after{
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
	transform: translate(-67%, -75%);
    width: 100%;
    height: 100%;
	content: 'VIEW';
	font-family: 'anton';
	font-size: 2.0rem;
	color: #fff;
  }

  #cursor.arrowPlay .cursor__circle{
    width: 137px;
    height: 138px;
    border: transparent;
	background: transparent;
    margin-top: 0%;
    margin-left: 0%;
  }
  #cursor.arrowPlay::before{
    content: '';
    position: absolute;
    left: -52%;
    top: -65%;
    width: 100%;
    height: 100%;
	background: url(../../img/main_media_rotate.png);
	    animation: top_rotate_image 15s linear infinite
  }
  #cursor.arrowPlay::after{
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
	transform: translate(-75%, -75%);
    width: 100%;
    height: 100%;
	content: 'PLAY';
	font-size:2.4rem;
	color: #ea0001;
	font-weight: 900;
  }

  #cursor.drag .cursor__circle{
    width: 11.0rem;
    height: 11.0rem;
	background:rgba(230,4,22,1.0);
    border: transparent;
	position: relative;
  }
  #cursor.drag::before{
    content: '';
    position: absolute;
	top: -25%;
    left: -23%;
    width: 100%;
    height: 100%;
	content: 'DRAG';
	font-family: 'Poppins';
	font-size: 1.8rem;
	color: #fff;
	z-index: 9;
	font-weight:bold;
  }
  #cursor.drag::after{
    content: '';
    position: absolute;
	top: -18%;
    left: -43%;
    width: 100%;
    height: 100%;
	content: '◀\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0▶';
	font-family: 'Nanum Gothic';
	font-size: 1.4rem;
	color: #fff;
	z-index: 9;
  }
  #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;
  }
}







