.hide-touchspin button{
	display: none;
}
.shape {
	width: 300px;
	height: 300px;
	border-radius: 50%;
	overflow: hidden;
	position: relative;
	margin: auto;
}

.shape:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
	overflow: hidden;
	z-index: 3;
}


.wave {
	position: absolute;
	top: 0;
	left: 0;
	width: 200%;
	height: 200%;
	transform: translate(-25%, 30%);
	background: #0000ff;
	animation-name: fill-up;
	animation-iteration-count: 1;
	animation-timing-function: ease;
	animation-duration: 7s;
	animation-fill-mode: forwards;
}
@keyframes fill-up {
	0%{
		transform: translate(-25%, 25%);
	}
	100% {
		transform: translate(-25%, -30%);
	}
}
.wave:before,
.wave:after {
	content: '';
	position: absolute;
	width: 110%;
	height: 100%;
	top: 0;
	left: 50%;
	transform: translate(-50%, -75%);
	background: #000;
}

.wave:before {
	border-radius: 45%;
	background: #fff;
	animation: animate 3s linear infinite;
}

.wave:after {
	border-radius: 40%;
	background: #ffffff50;
	animation: animate 3s linear infinite;
}
@keyframes animate {
	0% {
		transform: translate(-50%, -75%) rotate(0deg);
	}
	100% {
		transform: translate(-50%, -75%) rotate(360deg);
	}
}
.shape span{
	position: absolute;
	left: 0;
	top: 0;
	color: black;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 50px;
	font-weight: bold;
}
@keyframes bubbleanimate {
	0% {
		transform: translate(0, -100px);
		opacity: 1;
	}
	100% {
		transform: translate(0, 200px) skewX(30deg) rotateX(-79deg);
		opacity: 0
	}
}