/*=========================================
        Phoenix Rise Premium Cursor
=========================================*/
.pr-glow{
    box-shadow:0 0 18px rgba(37,99,235,.18);
    transition:.25s ease;
}
.prpc-cursor{

    position:fixed;

    top:0;
    left:0;

    width:42px;
    height:42px;

    transform:translate(-50%,-50%);

    border-radius:50%;

    pointer-events:none;

    z-index:999999;

    background:radial-gradient(
        circle,
        rgba(37,99,235,.30) 0%,
        rgba(37,99,235,.12) 45%,
        transparent 100%
    );

    filter:blur(8px);

    transition:
        width .20s ease,
        height .20s ease,
        background .20s ease,
        opacity .20s ease;

}

/* Mobile Hide */

@media (max-width:991px){

.prpc-cursor{

    display:none;

}

}

/* Hover Effect */

.prpc-cursor.active{

    width:58px;
    height:58px;

    background:radial-gradient(
        circle,
        rgba(37,99,235,.40) 0%,
        rgba(37,99,235,.18) 45%,
        transparent 100%
    );

}