/* #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: 10000;
  -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: #000;
}
.cursors .progress-wrap svg.progress-circle path.dce-cursortrack-path2{
  stroke: #000;
  opacity: 0.2;
}
/* #Cursor
================================================== */
.cursors
{
  position: fixed;
  
  height: 46px;
  width: 46px;

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

  z-index: 100000;
  
  transform-origin: top left;
}
.cursors .cursor1,
.cursors .cursor2,
.cursors .cursor3{
  border-radius: 50%; 
  transform: translate(-50%,-50%);
}
.cursors .cursor1{
  background-color: #000;
  z-index: 99999;
  height: 0;
  width: 0;
}
.cursors .cursor2,.cursors .cursor3{
  height: 100%;
  width: 100%;
  z-index:99998;

  -webkit-transition:all 0.3s ease-out;
  transition:all 0.3s ease-out
}
.cursors .cursor2.hover,
.cursors .cursor3.hover{
  -webkit-transform:scale(1.4) translateX(-35%) translateY(-35%);
  transform:scale(1.4) translateX(-35%) translateY(-35%);
  border:none
}
.cursors .cursor2{
}
.cursors .cursor2.hover{
  
  opacity: 0.1;
}
.cursors .cursor2.hover .progress-wrap {
  box-shadow: inset  0 0 0 2px rgba(0,0,0,0);
}
.cursors .cursor2.hover .progress-wrap svg.progress-circle path {
  opacity: 1;
}