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