#mobile-checkout-button {
	position: sticky;
	bottom: 0;
	width: 100%;
	z-index: 999;
	display: none;
	border: 0 none;
	border-radius: 0;
	color: #fff;
	font-weight: bold;
	font-size: 0.8em;
	text-transform: uppercase;
	letter-spacing: 2px;
	background: linear-gradient(
		-45deg,
		rgb(201, 31, 37) 10%,
		rgb(161, 1, 7) 30%,
		rgb(201, 31, 37) 50%,
		rgb(161, 1, 7) 70%,
		rgb(201, 31, 37) 90%
	);
	background-size: 200% 200%;
	animation: gradient 8s ease infinite;
	text-align: center;
	padding: 15px;
}
#mobile-checkout-button.show {
	display: block;
}

@media only screen and (min-width: 767px) {
	#mobile-checkout-button.show {
		/* display: none !important; */
	}
}
@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
