/* Cursor */
* {
    cursor: none;
}

.dl-cursor {
    background-color: rgba(1250, 87, 92, 1);
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: fixed;
    left: 0;
    top: 0;
    user-select: none;
    pointer-events: none;
    transform: translate(50%, 50%);
    visibility: hidden;
    z-index: 10000;
}

.dl-fill {
    display: block;
    width: 38px;
    height: 38px;
    border: 1px solid #FF6C4B;
    border-radius: 50%;
    position: fixed;
    left: 0;
    top: 0;
    user-select: none;
    pointer-events: none;
    transform: translate(50%, 50%);
    transition: all 0.1s ease;
    visibility: hidden;
    z-index: 10000;
}

.ecc-sahpe-wraper .ecc .dl-fill:before {
    background-color: rgba(250, 87, 92, .95);
    display: block;
    border-radius: 50%;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.ecc-color-hover .ecc .dl-fill {
    border: 0px solid transparent;
}

.ecc-color-hover .ecc .dl-fill:before {
    visibility: visible;
    opacity: 1;
    transform: scale(1.2);
    transition: all 0.5s ease;
}

.ecc-color-hover .ecc .dl-fill .inner {
    transform: scale(0.1);
    transition: transform 0.5s ease;
}


/* style two */
.cursor-style-two {
    position: absolute;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 99999;
    pointer-events: none;
}

.cursor-style-two:nth-child(1) {
    background-color: #3A1C71;
    z-index: 999999;
}

.cursor-style-two:nth-child(2) {
    background-color: #FFAF7B;
}

/* style three */
.cursor-style-three {
    position: absolute;
    transform: translateX(-50%) translateY(-50%);
    z-index: 99999;
    pointer-events: none;
    width: 20px;
    height: 20px;
    background-color: #222;
    border-radius: 50%;

}

/* style four */
.cursor-style-four {
    position: absolute;
    height: 20px;
    width: 20px;
    margin-top: -10px;
    margin-left: -10px;
    border-radius: 50%;
    -webkit-transition: transform 350ms, box-shadow 150ms;
    -moz-transition: transform 350ms, box-shadow 150ms;
    transition: transform 350ms, box-shadow 150ms;
}

.cursor-style-four:nth-child(1) {
    background-color: #222;
    z-index: 1;
    animation: scale 2s infinite;
}

.cursor-style-four:nth-child(2) {
    opacity: .3;
    background: #222;
    box-shadow: #222;
    animation: pulse 2s infinite;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, .4);
    }

    70% {
        -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, .4);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, .4);
    }

    70% {
        -moz-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@-webkit-keyframes scale {
    0% {
        -webkit-transform: scale(.8);
        opacity: .8;
    }

    60% {
        -webkit-transform: scale(.6);
        opacity: .6;
    }

    100% {
        -webkit-transform: scale(.8);
        opacity: 1;
    }
}

@keyframes scale {
    0% {
        -moz-transform: scale(.8);
        transform: scale(.8);
        opacity: 1;
    }

    60% {
        -moz-transform: scale(.6);
        transform: scale(.6);
        opacity: .6;
    }

    100% {
        -moz-transform: scale(.8);
        transform: scale(.8);
        opacity: 1;
    }
}

.animation-link {
    transform: scale(5) !important;
    -moz-transform: scale(5) !important;
    -webkit-transform: scale(5) !important;
    box-shadow: 0 0 50px rgba(0, 0, 0, 1) !important;
    -moz-box-shadow: 0 0 50px rgba(0, 0, 0, 1) !important;
    -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, 1) !important;
}