/* =========================================================
   SONAPULP CUSTOM CURSOR
========================================================= */
.sonapulp_custom_cursor {
    position: fixed;
    width: 14px;
    height: 14px;
    left: 0;
    top: 0;
    border-radius: 50%;
    background: #72c86b;
    pointer-events: none;
    z-index: 999999;
    transform:
        translate3d(-50%, -50%, 0)
        scale(1);
    will-change: transform, left, top;
    mix-blend-mode: normal;
    transition:
        width 0.35s cubic-bezier(.16, 1, .3, 1),
        height 0.35s cubic-bezier(.16, 1, .3, 1),
        background-color 0.3s ease,
        mix-blend-mode 0.3s ease,
        opacity 0.3s ease;
    box-shadow:
        0 0 12px rgba(114, 200, 107, 0.65),
        0 0 30px rgba(114, 200, 107, 0.20);
    opacity: 0;
}
/* Cursor active */
.sonapulp_custom_cursor.is-visible {
    opacity: 1;
}
/* =========================================================
   WHEN CURSOR IS OVER TEXT
========================================================= */
.sonapulp_custom_cursor.is-text {
    width: 70px;
    height: 70px;
    background: #ffffff00;
    border: 2px solid #176b4d;
    box-shadow: none;
}
/* =========================================================
   WHEN CURSOR IS OVER BUTTON / LINK
========================================================= */
.sonapulp_custom_cursor.is-link {
    width: 55px;
    height: 55px;
    background: #ffffff00;
    border: 2px solid #72c86b;
    box-shadow: none;
}
/* =========================================================
   MOBILE / TABLET
========================================================= */
@media (max-width: 991px) {
    .sonapulp_custom_cursor {
        display: none !important;
    }
}