.sticky-bottom-on-scroll {
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	background-color: rgba(255, 255, 255, 0.9);
	scroll-behavior: auto;
	scroll-behavior: smooth;
	bottom: 0px;
	left: 0px;
	padding: 15px;
	width: 100%;
	transform: translateY(78px);
	z-index: 11111;
}
.sticky-bottom-on-scroll .button {
	border-radius: 10px;
	background-color: currentColor;
	flex-basis: 100%;
	max-width: 100%;
	width: 100%;
	margin: 0;
	line-height: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	text-transform: initial;
}
@media screen and (min-width: 850px) {
	.sticky-bottom-on-scroll .button {
		max-width: 520px;
		width: 100%;
	}
}