#block-1-main-cursor {
	--cursor_size-width: 40px;
	--cursor_size-height: 40px;
	--cursor_prev-width: 40px;
	--cursor_prev-height: 40px;
	--bubble-radius: 40px;
	--bubble-border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
	--bubble-shadow: calc((var(--bubble-radius) / 25) * -1) calc(var(--bubble-radius) / 18) 8px 0 rgba(0, 0, 0, 0.8);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2), 0 4px 6px rgba(0, 0, 0, 0.2);
	overflow: hidden;
}

.cursor {
	content: "";
	display: none;
	width: 40px;
	height: 40px;
	border-radius: var(--bubble-border-radius);
	position: relative;
	box-shadow: var(--bubble-shadow), inset calc((var(--bubble-radius) / 5) * -1) calc((var(--bubble-radius) / 5)) calc((var(--bubble-radius) / 4)) 0 rgba(0, 0, 0, 0.4);
	position: absolute;
	/* background-color: rgba(255, 255, 255, 0.22); */
	left: 50%;
	top: 50%;
	/* -webkit-transition: border-radius 1s; */
	overflow: hidden;
	transform-origin: center;
	-webkit-backdrop-filter: blur(15px);
	backdrop-filter: blur(1px);
	z-index: 5;
	animation: morphing 4s infinite linear, sizing 0.5s forwards linear;
	/* transition: transform 1s ease; */
}
.cursor:after {
	position: absolute;
	content: " ";
	background: #fff;
	width: 15%;
	height: 15%;
	border-radius: 50%;
	transform: skew(11deg, 2deg);
	top: 20%;
	left: 63%;
	z-index: 10;
	opacity: 0.9;

}

.cursor:before {
	position: absolute;
	content: "";
	background-color: #fff;
	width: 9%;
	height: 9%;
	border-radius: 50%;
	transform: skew(10deg, 0deg);
	top: 40%;
	left: 75%;
	z-index: 20;
	opacity: 0.4;
}

@keyframes morphing {
   0% {
      border-radius: var(--bubble-border-radius);
   }
   25% { 
      border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
   }
   50% {
      border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
   }
   75% {
      border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
   }
   
   
}
/* @keyframes morphing {
	0%,100% {
	   border-radius: var(--bubble-border-radius);
	}
	20% {
	 border-radius: 50% 50% 90% 90%;
	}
	30% { 
	 border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
	  }
	 40% {
		 border-radius: 70% 50% 30% 80%;
	 }
	 60% {
		 border-radius: 50% 50% 90% 90%;
	 }
	 70%{
		 border-radius: 25% 75% 42% 58% / 24% 54% 46% 76%;
	 }
	 80%{
		 border-radius: 70% 50% 30% 80%;
	 }
	
 } */
@keyframes sizing {
	0% {
		width: 40px;
		height: 40px;
		transform: scale(1);

	}
	100% {
		width: var(--cursor_size-width);
		height: var(--cursor_size-height);
		transform: scale(1.2);
	}
}
@keyframes sizing-off {
	0% {
		width: var(--cursor_size-width);
		height: var(--cursor_size-height);
		transform: scale(1.2);
	}
	100% {
		width: 40px;
		height: 40px;
		transform: scale(1);
	}
}