/* Custom Cursor */

* {
    cursor: none !important;
}

/* Inner cursor */
.cursor {
    width: 20px;
    height: 20px;
    bottom: 0;
    border-radius: 50%;
    position: fixed;
    transform: scale(1);
    background-color: white;
    mix-blend-mode: difference;
    
    pointer-events: none;
    transition: cubic-bezier(0.215, 0.610, 0.355, 1);
    transition-duration: 500ms;
    animation: fade-in-cursor 2s;
    z-index: 999999999;
}

/* Outer cursor */
.cursor2 {
    width: 20px;
    height: 20px;
    bottom: 0;
    border-radius: 50%;
    position: fixed;
    transform: scale(0.5);
    background-color: white;
    mix-blend-mode: color-dodge;
    
    pointer-events: none;
    transition: 0.8s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
    transition-duration: 150ms;
    animation: fade-in-cursor 2s;
    z-index: 999999998;
}

/* Media Queries */

@media only screen and (max-width: 1000px) {
    /* Cursor disappears when viewport width <= 1000px */
    .cursor {
        transform: scale(0%) !important;
        display: none !important;
    }
    
    .cursor2 {
        transform: scale(0%) !important;
        display: none !important;
    }

    *,
    *::before,
    *::after {
        box-sizing: initial;
        cursor: auto !important;
    }

    a, img, video, .checkmark, .radio-button {
        cursor: pointer !important;
    }
}