  .dpkCursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    height: 2rem;
    width: 2rem;
    color: white;
    border: 2px solid #fff;
    mix-blend-mode: difference;
    border-radius: 5rem;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.3s cubic-bezier(0.51, 1.07, 1, 1), height 0.3s cubic-bezier(0.51, 1.07, 1, 1), opacity 0.25s cubic-bezier(0.51, 1.07, 1, 1);
    /* hover-bg attribute removed if you need background color
       for the cursor then use this 👇 */
  }

  .dpkCursor.hover-active {
    height: 4rem;
    width: 4rem;
    font-size: 0.875rem;
  }

  .dpkCursor.hover-bg {
    border-width: 0;
    mix-blend-mode: normal;
    background-color: limegreen;
    height: 6rem;
    width: 6rem;
  }

  .dpkCursor.noCursor {
    opacity: 0;
  }

  .dpkCursor.emogy {
    height: 6rem;
    width: 6rem;
    font-size: 2rem;
    mix-blend-mode: normal;
  }

  .dpkCursor.mixBlend {
    height: 6rem;
    width: 6rem;
    background: white;
    mix-blend-mode: exclusion;
  }

  .dpkCursor.hover-img {
    height: 10rem;
    width: 10rem;
    border: none;
    border-radius: 0;
    background-size: cover;
    mix-blend-mode: normal;
  }

  /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                   For  Loader 
  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
  .dpkCursor:before {
    content: "";
    position: absolute;
    pointer-events: none;
    top: -8px;
    left: -8px;
    height: 40px;
    width: 40px;
    background-color: transparent;
    border: 2px solid transparent;
    border-bottom-color: white;
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.25s ease-in-out;
  }

  .dpkCursor.loading::before {
    opacity: 1;
    animation: rotating 0.7s ease-in-out infinite;
  }

  @keyframes rotating {
    0% {
      transform: rotate(0deg);
    }

    95% {
      transform: rotate(350deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }