sticky {
	position: fixed;
	bottom: 0;
	left: 0;

	display: flex;
	align-items: center;
	justify-content: space-between;
	column-gap: 16px;

	width: 100%;
	height: auto;
	padding: 12px;
	overflow: hidden;

	background: white;
	box-shadow: 0 -4px 4px -4px rgba(0, 0, 0, 0.1);
}

@media (min-width: 800px) { sticky { display: none; }}