.hcs-next-section {
	display: flex;
	justify-content: center;
}

.hcs-next-section__btn {
	all: unset;
	cursor: pointer;
	display: inline-flex;
	background: none !important;
	border: none !important;
	box-shadow: none !important;
	outline: none !important;
	padding: 0 !important;
	margin: 0;
	line-height: 1;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.hcs-next-section__btn:hover,
.hcs-next-section__btn:focus,
.hcs-next-section__btn:active {
	background: none !important;
	border: none !important;
	box-shadow: none !important;
	outline: none !important;
	color: inherit !important;
}

.hcs-next-section__icon {
	display: inline-flex;
	animation: hcs-bounce 1.5s ease-in-out infinite;
}

@keyframes hcs-bounce {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(var(--hcs-bounce, 10px));
	}
}
