* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}



.containermouse {
	width: 100%;
	height: 100%;
	background-color: none;
	display: flex;
	align-items: center;
	justify-content: center;
    bottom: 0;
}

.field {
	display: flex;
	align-items: center;
	justify-content: space-around;
    background-color: transparent;
	width: 100px;
    bottom: 0;
}

.mouse {
	width: 30px;
	height: 60px;
	border: 3px solid white;
	border-radius: 60px;
	position: relative;
	&::before {
		content: '';
		width: 8px;
		height: 8px;
		position: absolute;
		top: 10px;
		left: 50%;
		transform: translateX(-50%);
		background-color: white;
		border-radius: 50%;
		opacity: 1;
		animation: wheel 2s infinite;
		-webkit-animation: wheel 2s infinite;
	}
}

@keyframes wheel {
	to {
		opacity: 0;
		top: 60px;
	}
}

@-webkit-keyframes wheel {
	to {
		opacity: 0;
		top: 60px;
	}
}