
.cursor.style-one {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin: 0;
    padding: 0;
    background-color: rgba(255, 64, 129, 0.4);
    border: 2px solid #FF4081;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: background-color 0.25s;
    pointer-events: none;
    z-index: 1000000000000000100000;
  }
  .cursor.style-one:before, .style-one:after {
    position: absolute;
    content: "";
    background-color: rgba(255, 255, 255, 0.5);
    transition: 0.25s;
  }
  .cursor.style-one:before {
    top: 0;
    left: 50%;
    width: 1px;
    height: 50px;
    transform: translateY(-25%);
  }
  .cursor.style-one:after {
    top: 50%;
    left: 0;
    width: 50px;
    height: 1px;
    transform: translateX(-25%);
  }
  .cursor.style-one span.small-cursor {
    position: relative;
    display: flex;
    width: 11px;
    height: 11px;
    background-color: #FF4081;
    border-radius: 50%;
    transition: 0.25s;
    z-index: -1;
  }
  .cursor.style-one.hovered {
    width: 40px;
    height: 40px;
    background-color: rgba(118, 255, 3, 0.4);
    border: 2px solid #76FF03;
  }
  .cursor.style-one.hovered:before {
    transform: translateY(-12.5%) rotate(45deg);
  }
  .cursor.hovered:after {
    transform: translateX(-12.5%) rotate(45deg);
  }
  .cursor.style-one.hovered span.small-cursor {
    background-color: #76FF03;
  }

/*Style Two*/
