/* 


---------------------------------------------
Cursor Simple
--------------------------------------------- 
*/
.cursor {
    width: 30px;
    height: 30px;
    border: 2px solid #00ff88;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    mix-blend-mode: difference;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.5);
    }

    100% {
        transform: scale(1);
    }
}

/* 


---------------------------------------------
Cursor Gradient Dot
--------------------------------------------- 
*/

.cursor-small-dot {
    position: fixed;
    width: 24px;
    height: 24px;
    background-color: #ffffff;
    border-radius: 50%;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
    pointer-events: none;
    z-index: 9999;
}

.cursor-big-dot {
    position: fixed;
    width: 60px;
    height: 60px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
    pointer-events: none;
    z-index: 9998;
}

.cursor-small-dot.hide,
.cursor-big-dot.hide {
    opacity: 0;
}

@media (max-width: 768px) {
  .cursor-small-dot,
  .cursor-big-dot {
    display: none !important;
  }
}
