body {
	background: var(--accent_main);
}
main {
	margin: 0 auto;
	width: 400px;
	max-width: 100%;
	padding: 0 24px 24px;
}
main > *,
main > article > * {
	width: 100%;
}
main > article {
	background: #fff;
	border-radius: 24px;
	padding: 20px;
	margin-bottom: 20px;
}
h1 {
	margin-bottom: 20px;
	padding-top: 20px;
	font-size: 1.4rem;
	letter-spacing: .07em;
	text-transform: uppercase;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 10px;
	color: #fff;
	background: var(--accent_main);
}
h1 img {
	height: 20px;
	width: auto;
}
h2 {
	color: var(--accent_main);
	font-size: 1.2rem;
	text-align: center;
	margin-bottom: 10px;
}
h2.room {
	margin-bottom: 20px;
}
.subscription_status {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 100%;
	text-align: center;
	font-size: 2rem;
	color: #888;
	text-transform: uppercase;
}
.subscription_status._active {
	color: var(--accent_green);
}
.store_logo {
	width: 100%;
	height: 40px;
	display: grid;
	grid-template-columns: 1fr 100px;
	gap: 10px;
	margin-bottom: 20px;
}
.file-label {
	height: 40px;
	background: #f1f1f1;
	color: var(--accent_main);
	padding: 0 15px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	transition: all .2s ease-in-out;
}
.file-label:hover {
	background: var(--accent_main);
	color: #fff;
}
.file-name {
	font-size: .9rem;
	color: var(--accent_main);
	transition: all .2s ease-in-out;
}
.file-label:hover .file-name {
	color: #fff;
}
.file-button {
	font-size: 16px;
	font-weight: bold;
}
img.store_logo_preview {
	max-height: 40px;
	max-width: 100%;
	display: block;
	flex: 1;
}
#qrcode {
	width: 100%;
	height: auto;
	flex: 1;
	display: block;
}
.notice.success {
	padding: 20px 20px 0;
	text-align: center;
	color: #fff;
}
.part {
	margin-bottom: 20px;
	padding-top: 20px;
	border-top: 1px solid rgba(var(--accent_main_rgb), .4);
}
.part._topless {
	border-top: 0;
	padding-top: 0;
}
._label {
	color: #000;
	font-size: 1rem;
	font-weight: bold;
	margin-bottom: .3em;
}
.quantity_section {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	width: 122px;
	height: 42px;
	border: 1px solid var(--accent_main);
	border-radius: 10px;
}
.quantity_section input {
	display: flex;	
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 40px;
	width:  40px;
	border: 0;
	border-radius: 0;
	border-left: 1px solid var(--accent_main);
	border-right: 1px solid var(--accent_main);
	color: var(--accent_main);
	font-size: 1.3rem;
	font-weight: bold;
	padding-bottom: .12em;
}
.quantity_section input.bumpee {
	display: none;
}
.quantity_section .bumper {
	display: flex;	
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 40px;
	width:  40px;
	background: rgba(var(--accent_main_rgb),.2);
	cursor: pointer;
	transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	color: var(--accent_main);
	font-size: 1.5rem;
	font-weight: bold;
	padding-bottom: .17em;
}
.quantity_section .bumper:hover {
	background: var(--accent_main);
	color: #fff;
}
.quantity_section .bumper:first-of-type {
	border-radius: 10px 0 0 10px;
}
.quantity_section .bumper:last-of-type {
	border-radius: 0 10px 10px 0;
}
.quantity_section .bumper span {
	pointer-events: none;
}
input.snazzy {
	width: 100%;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border: 1px solid var(--accent_main);
	color: var(--accent_main);
	font-size: .9rem;
	font-weight: bold;
	padding-bottom: .04em;
	border-radius: 10px;
}
.snazzy_button {
	width: 100%;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border: 1px solid var(--accent_main);
	color: #fff;
	font-size: 1.3rem;
	font-weight: bold;
	padding-bottom: .04em;
	border-radius: 10px;
	background: var(--accent_main);
	cursor: pointer;
	transition: all .2s ease-in-out;
}
.snazzy_button:hover {
	box-shadow: 0 0 0 5px var(--accent_main);
}
select,
option {
	font-size: 1.6rem;
	color: var(--accent_main);
}
#special_day_list {
	margin-top: 20px;
	background: #f1f1f1;
	padding: 20px;
	border-radius: 10px;
}
#special_day_list ._title {
	color: var(--accent_main);
	text-align: center;
	margin-bottom: 20px;
	font-size: 1.7rem;
	font-weight: bold;
}