@font-face {
	font-family: Cooper;
	src: url("fonts/Cooper-Medium.woff2");
}
@font-face {
	font-family: Bricolage Grotesque;
	src: url("fonts/BricolageGrotesque-Regular.ttf");
}
@property --bg-color {
	syntax: "<color>";
	inherits: true;
	initial-value: #101828;
}
@property --text-color {
	syntax: "<color>";
	inherits: true;
	initial-value: white;
}
@property --outline-color {
	syntax: "<color>";
	inherits: true;
	initial-value: white;
}
body {
	background-color: var(--bg-color);
	color: var(--text-color);
	font-family: Bricolage Grotesque;
	font-size: 1.5rem;
	margin: 0;
}
body[light] {
	--bg-color: white;
	--text-color: black;
	--outline-color: black;
}
body[light] .filter {
	filter: invert(100%);
}
#content {
	display: grid;
	gap: 0;
	grid-template-areas: "overlay";
	margin-left: 10vw;
	margin-right: 10vw;
	max-width: 80vw;
	max-height: 100vh;
}
#logo,
button,
select,
label,
input[type="checkbox"] {
	cursor: pointer;
}
button,
input,
.form_cell,
select,
textarea {
	font-family: Bricolage Grotesque;
	font-size: 1.5rem;
}
.form_cell,
.form_box_cell,
.remove_recipient_button_cell,
.recipient_subtotal,
.unusual_box_price {
	display: grid;
	margin: 0.5em;
}
.remove_recipient_button_cell {
	justify-content: center;
	grid-template-columns: repeat(auto-fit, minmax(25%, 11em));
}
/*input,*/
form,
#recipient_fieldsets_container {
	display: grid;
}
form,
#recipient_fieldsets_container {
	gap: 2em;
}
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
select,
.remove_recipient_button {
	/*box-sizing: border-box;*/
	width: 100%;
}
input[type="checkbox"] {
	width: 1em;
}
.normal_box_input_price {
	display: grid;
	grid-template-columns: 50% 50%;
}
.box_input,
.normal_box_price,
.unusual_box_price,
.recipient_subtotal {
	text-align: center;
}
.unusual_box_price {
	margin-top: 1em;
}
.checkmark_label {
	display: flex;
	gap: 0.5em;
}
#headerbar_left,
#headerbar_right {
	display: flex;
	height: 33px;
}
#headerbar {
	grid-area: overlay;
	height: 33px;
}
#headerbar_left {
	margin-top: 5vh;
}
#headerbar_right {
	width: 100%;
	justify-content: right;
}
#headerbar_right button {
	background-color: transparent;
	color: var(--text-color);
	border: none;
	font-size: 1rem;
}
body:not([page="home"]) #home_page {
	visibility: hidden;
}
body:not([page="order"]):not([page="request_boxes"]) #order_page,
body:not([page="order"]) .order_exclusive,
body:not([page="request_boxes"]) .request_boxes_exclusive,
body[page="request_boxes"] #request_boxes_button,
body:not([page="thank_you"]) #thank_you_page {
	display: none !important;
}
.page,
.subpage,
.cell,
#full_order_details {
	display: grid;
	gap: 1em;
}
.page,
.sub_page {
	grid-area: overlay;
	height: 100vh;
	align-content: center;
	justify-content: center;
	align-items: center;
	max-height: 100vh;
}
.cell {
	display: grid;
	gap: 0.25em;
	align-content: center;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.cell_agent {
	overflow: scroll;
	gap: 0em;
	align-content: center;
	justify-content: center;
	align-items: center;
	text-align: center;
}
fieldset {
	margin: 0.5em;
}
.outer_fieldset {
	margin: 0;
	width: 80vw;
}
.info_container {
	margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(25%, 12em));
	justify-content: center;
	width: 100%;
}
body:not([multiple_recipients]) #recipient_remove_button_cell_0,
body:not([multiple_recipients]) .recipient_subtotal {
	visibility: hidden;
}
.unusual_box_fieldset {
	margin-top: 0.75em;
}
#order_page {
	margin-top: calc(5vh + 33px + 2em);
	align-content: start;
	height: auto;
	gap: 2em;
}
#order_total_price,
.select {
	text-align: center;
}
#order_footer,
#request_boxes_footer {
	display: grid;
	gap: 1em;
	padding-bottom: min(10vw, 2em);
	justify-content: center;
	grid-template-columns: repeat(auto-fit, minmax(25%, 15em));
}
#home_heading,
#about_heading {
	display: grid;
	justify-content: center;
	align-items: center;
	text-align: center;
}
#home_heading {
	font-size: 3rem;
	font-family: Cooper;
}
#about_heading {
	font-size: 1.5rem;
}
#home_button {
	margin-top: 1em;
	margin-bottom: 1em;
	display: grid;
	justify-content: center;
}
* {
	box-sizing: border-box;
}
html {
	visibility: visible;
	opacity: 1;
}
