.scroll-indicator-container-40 {
	display: block;
	width: 100%;
}

.scroll-indicator-40 {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: inherit;
	z-index: 3;
	animation: floatUpDown40 2s ease-in-out infinite;
	transform-origin: center top;
}

.scroll-indicator__mouse-40 {
	width: 28px;
	height: 46px;
	border: 2px solid currentColor;
	border-radius: 20px;
	display: flex;
	justify-content: center;
	padding-top: 8px;
	box-sizing: border-box;
}

.scroll-indicator__wheel-40 {
	width: 4px;
	height: 10px;
	border-radius: 999px;
	background: currentColor;
	animation: wheelScroll40 1.6s ease-in-out infinite;
}

.scroll-indicator__text-40 {
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

@keyframes wheelScroll40 {
	0% {
		opacity: 0;
		transform: translateY(0);
	}
	30% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		transform: translateY(12px);
	}
}

@keyframes floatUpDown40 {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(6px);
	}
}
