/* #Progress
================================================== */
.cursors .progress-wrap {
  height: 100%;
  width: 100%;
  
  cursor: pointer;

  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;

  display: block;
  border-radius: 50px;

  /*box-shadow: inset  0 0 0 2px rgba(0,0,0,0.2);*/
  
  z-index: 100000;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.cursors .progress-wrap svg path { 
  fill: none; 
}
.cursors .progress-wrap svg.progress-circle path{
  stroke: #000;
  stroke-width: 4;
  stroke-alignment: outer;
  box-sizing: border-box;

  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.cursors .progress-wrap svg.progress-circle path.dce-cursortrack-path1{
  stroke: #999;
}
.cursors .progress-wrap svg.progress-circle path.dce-cursortrack-path2{
  stroke: #000;
}
/*.cursors.hover .progress-wrap svg.progress-circle path.dce-cursortrack-path1{
  
}
.cursors.hover .progress-wrap svg.progress-circle path.dce-cursortrack-path2{
  
}*/

/* #Cursor
================================================== */
.cursors
{
  position: fixed;
  
  height: 46px;
  width: 46px;

  pointer-events: none;
  
  left: 0;
  top: 0%;

  z-index: 100000;
  
  transform-origin: center;
}
.cursors .cursor-wrap{
  transform-origin: top left;

  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);

  transition: transform 0.4s ease-in-out, opacity 0.5s ease-out;
  -webkit-transition: transform 0.4s ease-in-out, opacity 0.5s ease-out;
}
.cursors.hover .progress-wrap svg.progress-circle path.dce-cursortrack-path1{
  opacity: 0;
}
.cursors.hover .progress-wrap svg.progress-circle path{
  transition: all 0.4s ease-in-out;
}
.cursors .cursor{
  border-radius: 50%; 
}
.cursors .cursor{
  height: 100%;
  width: 100%;

  -webkit-transition:all 0.3s ease-out;
  transition:all 0.3s ease-out
}