body {
	background: var(--accent_main);
	color: #fff;
}
main {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: start;
	text-align: center;
	flex-flow: column;
	padding-bottom: 50px;
}

#store_branding {
	background: #fff;
	padding: 10px;
	width: 100%;
	margin-bottom: 20px;
}
.header_store_logo {
	max-width: 100%;
	max-height: 40px;
}
.header_store_name {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 1rem;
}
#promotion {
	font-size: 1.3rem;
	line-height: 1;
	margin-bottom: 10px;
}
#promotion strong {
	text-transform: uppercase;
}
#promotion .promotion_text {
	display: block;
	text-transform: uppercase;
	font-size: 2.1rem;
}
#special_day {
	background: rgba(255,255,255,.2);
	color: #fff;
	width: 100%;
	padding: 20px;
	font-size: 1.4rem;
	font-weight: bold;
	margin: -20px 0 20px;
}
.alert {
	background: #fff;
	color: var(--accent_main);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: fit-content;
	border-radius: 100px;
	padding: 10px 20px;
	font-size: .9rem;
	font-weight: bold;
	margin-bottom: 10px;
}
#phone-number-form {	
	width: calc(100% - 40px);
	padding: 15px 20px 20px;
	border-radius: 50px;
	background: #fff;
}
body.submitted #phone-number-form {
	display: none;
}
#phone-number {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 1.3rem;
	text-transform: uppercase;
	color: var(--accent_main);
	margin-bottom: 5px;
}
#keypad {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	width: 230px;
	margin: 0 auto;
}
.keypad-button {
	font-size: 2rem;
	background-color: #fff;
	color: var(--accent_main);
	border: 1px solid var(--accent_main);
	border-radius: 100%;
	cursor: pointer;
	user-select: none;
	height: 70px;
	width: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	touch-action: manipulation; /* Prevent zooming on iOS */
}
.keypad-button:hover,
.special-button:hover {
	background-color: var(--accent_main);
	color: #fff;
}
.special-button {
	background-color: rgba(255, 0, 122, .2);
	color: var(--accent_main);
	font-size: .8rem;
	font-weight: bold;
	border: 1px solid var(--accent_main);
	text-transform: uppercase;
	letter-spacing: .03em;
}
.button-primary:active,
.button-primary:hover {	
	box-shadow: 0 0 0 4px var(--accent_main);
	background-color: var(--accent_main);
	transition: all .2s ease-in-out;
}
#stamps_to_go {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 100%;
	width: calc(100% - 40px);
	padding: 20px;
	gap: 10px;	
	border-radius: 50px;
	background: #fff;
	flex-wrap: wrap;
}
#stamps_to_go .stamp {
	font-size: 2rem;
	color: var(--accent_main);
	border-radius: 100%;
	cursor: pointer;
	user-select: none;
	height: 62px;
	width:  62px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	isolation: isolate;
}
#stamps_to_go .stamp.stamped {
	color: #fff;
}
#stamps_to_go .stamp svg {
	width:  100%;
	height: 100%;
	position: absolute;
	top:  0;
	left: 0;
	z-index: -1;
	overflow: visible;
}
#stamps_to_go .stamp svg path {
	stroke: var(--accent_main);;
	stroke-width: 6;
	fill: #fff;
}
#stamps_to_go .stamp.stamped svg path {
	fill: var(--accent_main);
}
.stamp_message {
	width: 100%;
	font-size: 1.3rem;
	color: var(--accent_main);
}
.stamp_message span {
	display: block;
}