/* CURSOR EFFECT */
body {
    position: relative;
}

@media (hover: hover) {
    .cursor-tracker {
        /* --cursorrTrackerColor:  */
        position: absolute;
        width: 22.4px;
        height: 22.4px;
        border-radius: 50%;
        background: #e2372530;
        box-shadow: 0 0 0 0 rgba(226, 55, 37, 0.3);
        animation: cursor-tracker-kefe91md 1.5s infinite linear;
        /* transition: .03s ease-in; */
    }
}


.floatting-navigator,
.floating-socials-btn {
    z-index: 10;
}

.cursor-tracker:before,
.cursor-tracker:after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 0 rgba(226, 55, 37, 0.2);
    animation: inherit;
    animation-delay: -0.8s;
}

.cursor-tracker:after {
    animation-delay: -1.3s;
}

@keyframes cursor-tracker-kefe91md {
    100% {
        box-shadow: 0 0 0 44.8px #0000;
    }
}


@keyframes propagateRadial {}



/* END CURSOR EFFECT */