/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*https://stackoverflow.com/a/45890842*/
button, input[type="submit"], input[type="reset"] {
	background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
}
/* FINISH CSS RESET */
:root {
	--primary-color: #fffefb;
	--primary-compl-color: #fff;
	--contrast-color: #3b1907;
	--accent-color: 217, 39, 70; /* 232, 93, 117; */
	--accent-compl-color: #ff7878;
	--accent2-color: #38369a;
	--accent3-color: #ffdc5e;

	--border-light: #c8c8c8;
	--border-medium: #a7a7a7;

	--main-text: #000;
	--sub-text: #000;
	--grayscale: #c8c8c8;
	--grayscale-2: #717171;

	--green: #258125;
	--red: rgb(179 0 31);
}

html {
	height: auto;

	font-family: "Roboto Slab", serif;

	background-color: var(--primary-color);
}

h1, h2, h3, h4, label {
	color: var(--main-text);
}

p, li {
	color: var(--sub-text);
}

input {
	font-family: inherit;
}

hr {
	border-style: solid;
	border-width: 0;
	border-top-width: 1px;
	min-width: 0;
	width: 100%;
}

button.btn-1 {
	padding: 18px 12px;
	box-sizing: border-box;

	border-radius: 4px;
	border-width: 1px;
	border-style: solid;
	border-color: var(--border-light);
}

button.btn-2 {
	padding: 10px;
	margin-left: 16px;

	border-radius: .2rem;
	border-style: solid;
	border-width: 1px;
	border-color: var(--main-text);
}

button.discard {
	border-color: #e54343;
	color: #e54343;
}

.details-btn.inactive {
	border-color: var(--border-light);
	color: var(--border-light);
}

.details-btn.discard {
	border-color: #e54343;
	color: #e54343;
}

.details-btn.delete {
	--btn-color: #e54343;

	border-color: var(--btn-color);
	background-color: var(--btn-color);
	color: #fff;
}

a.link-1 {
	text-decoration-color: transparent;

	transition-property: text-decoration-color;
	transition-duration: 100ms;
	transition-timing-function: cubic-bezier(.2, 0, .4, 0);
}

input.input-1 {
	padding: 14px;

	font-size: 14px;

	border-radius: 4px;
	border-width: 1px;
	border-style: solid;
	border-color: var(--border-light);
	color: var(--sub-text);
	background-color: var(--primary-compl-color);

	transition-property: border-color;
	transition-duration: 100ms;
	transition-timing-function: cubic-bezier(.2, 0, .4, 0);
}

input.input-1.invalid {
	border-color: #e54343;
}

input.input-2:not([type]),
input.input-2:is([type="password"], [type="text"]) {
	width: 100%;

	padding: 14px;

	outline: none;

	box-sizing: border-box;

	border-radius: 4px;
	border-style: solid;
	border-width: 1px;
	border-color: var(--border-light);
}

input.input-2.invalid {
	border-color: #e54343;
}

/**
 * PASSWORD INPUT WITH VISIBILITY TOGGLE BTN
 */
.password-inp-container {
	display: flex;
	flex-direction: row;
	align-items: center;

	padding: 0;
	margin-bottom: 20px;

	box-sizing: border-box;

	border-radius: .2rem;
	border-style: solid;
	border-width: 1px;
	border-color: var(--border-light);
	color: var(--sub-text);
	background-color: var(--primary-compl-color);
}

.password-inp-container > input {
	flex-grow: 1;

	min-width: 0;

	margin: 0;
	padding: 10px;

	outline: none;
	border: none;

	color: inherit;
	background-color: transparent;
}

.password-inp-container:has(> input.invalid) {
	border-color: #e54343;
}

.password-inp-container > .password-inp-toggle-visibility-btn {
	flex-basis: 20px;
	flex-grow: 0;
	flex-shrink: 0;

	height: 20px;

	margin: 0 12px;

	outline: none;
}

.password-inp-toggle-visibility-btn > svg {
	width: 100%;
	height: 100%;

	color: var(--grayscale-2);
	fill: currentColor;
}
/**
 * END
 */

.heavy {
	font-weight: 700;
}

@media (hover: hover) {
	.hover-1:focus,
	.hover-1:hover {
		outline-width: 3px;
		outline-style: solid;
		outline-color: #d2d2d23d;
	}

	.hover-2:focus,
	.hover-2:hover {
		outline-width: 3px;
		outline-style: solid;
		outline-color: rgba(var(--accent-color), .3);
	}

	.hover-3:focus,
	.hover-3:hover {
		border-color: color-mix(in srgb, var(--btn-color) 20%, transparent);

		outline-width: 3px;
		outline-style: solid;
		outline-color: color-mix(in srgb, var(--btn-color) 20%, transparent);
	}

	a.link-1:focus,
	a.link-1:hover {
		text-decoration-color: currentColor;
		text-decoration-line: underline;
		text-decoration-style: solid;
		text-decoration-thickness: 1px;
	}

	input.input-2:focus,
	input.input-2:hover {
		outline-width: 2px;
		outline-style: solid;

		outline-color: #d2d2d23d;
	}
}

@media (prefers-color-scheme: dark) {
	:root {
		--primary-color: #161616;
		--primary-compl-color: #272727;

		--border-light: #272727;
		--border-medium: #434343;

		--main-text: #fff;
		--sub-text: #dfdfdf;
		--grayscale: #9e9e9e;
		--grayscale-2: #9e9e9e;

		--green: #429b42;
		--red: #e53333;
	}
}
:root {
	--computed-topbar-height: 81px;
}

#topbar-container {
	position: sticky;
	top: 0;

	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;

	width: auto;
	min-width: 0;
	padding: 6px 20px;

	background-color: var(--primary-color);

	font-weight: 600;
	z-index: 99;
}

#topbar-container.scrolled {
	border-bottom-style: solid;
	border-bottom-width: 1px;
	border-bottom-color: var(--border-light);
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

#logo-redirect {
	margin-right: 20%;
}

#logo-redirect > img {
	width: auto;
	height: 34px;

	object-fit: cover;
}

#topbar-desktop-navig-container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;

	flex-grow: 1;
}

#topbar-container a {
	color: var(--sub-text);
	text-decoration: none;

	transition-property: color;
	transition-duration: 100ms;
	transition-timing-function: linear;
}

#topbar-container a:hover,
#topbar-container a:focus {
	color: var(--accent-compl-color);
}

#topbar-container a.active {
	color: rgb(var(--accent-color));
}

#topbar-mobile-component {
	display: none;

	color: var(--main-text);
}

#topbar-mobile-account-details {
	display: flex;
	flex-direction: column;
	align-items: flex-end;

	margin-right: 12px;

	font-size: .9em;
}

#topbar-mobile-account-details.noclass {
	display: none;
}

#topbar-mobile-account-uname {
	font-weight: 400;
	font-size: 14.4px;

	text-decoration: none;

	color: inherit;
}

#topbar-mobile-sidepanel-container {
	position: absolute;
	top: -6px;
	right: -20px;

	display: none;

	width: 100vw;
	height: 100vh;

	backdrop-filter: blur(5px);

	color: inherit;
}

#topbar-mobile-sidepanel-container.active {
	display: block;
}

#topbar-mobile-sidepanel-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;

	position: absolute;
	top: 0;
	right: 0;

	width: 230px;
	max-width: 230px;
	height: 100svh;

	padding: 10px 5px;

	box-sizing: border-box;

	border-left-style: solid;
	border-left-width: 1px;
	border-left-color: var(--border-light);
	background-color: var(--primary-color);

	color: inherit;
}

#topbar-mobile-close-btn {
	margin-left: auto;

	color: inherit;
}

#topbar-mobile-close-btn > svg {
	width: 26px;
	height: 26px;

	padding: 5px;

	color: inherit;
}

#topbar-mobile-close-btn > svg > g {
	stroke: currentColor;
}

#topbar-mobile-navig-container {
	display: flex;
	flex-direction: column;

	margin-top: 15px;
	padding-left: 5px;
}

#topbar-mobile-navig-container > a {
	display: flex;
	flex-direction: row;
	align-items: center;

	padding: 10px 0;
}

#topbar-mobile-navig-container > a > svg {
	width: 24px;
	height: 24px;

	padding-right: 5px;

	color: var(--main-text);
}

#topbar-mobile-navig-container > a > svg > g {
	stroke: currentColor;
}

@media (min-width: 640px) {
	#topbar-container {
		align-items: flex-end;

		padding: 15px 45px 30px;
		padding-right: 160px;
	}
}

@media (max-width: 640px) {
	#logo-redirect {
		margin-bottom: 10px;
		margin-right: 0;
	}

	#topbar-desktop-navig-container {
		display: none;
	}

	#topbar-mobile-component {
		position: relative;

		display: flex;
		flex-direction: row;
		align-items: center;

		margin-left: auto;
	}

	#topbar-mobile-hamburg-btn {
		color: inherit;
	}

	#topbar-mobile-hamburg-btn > svg {
		width: 28px;
		height: 28px;

		padding: 5px;

		object-fit: cover;

		color: inherit;
	}

	#topbar-mobile-hamburg-btn > svg > g {
		stroke: currentColor;
		color: inherit;
	}
}

@media (prefers-color-scheme: dark) {
	#topbar-container.scrolled {
		border-bottom-color: #232323;
		box-shadow: rgb(0 0 0 / 20%) 0px 8px 24px;
	}
}
#footer-container {
	display: flex;
	flex-direction: row;

	height: 600px;

	padding: 20px;

	background-color: #1c1c1c;
}

#footer-left-container {
	display: none;
	flex-direction: column;
	justify-content: space-between;

	flex-grow: 0;
	flex-shrink: 1;
	flex-basis: 100px;

	padding-right: 30px;
}

#footer-company-profile {
}

#footer-company-logo {
	width: 120px;
	height: 120px;

	margin-left: -15px;
}

#footer-company-name {
	font-size: 34px;
	color: white;
}

#footer-left-caption {
	font-size: 14px;
	font-weight: 300;

	line-height: 16px;

	color: #999999;
}

#footer-divider {
	display: none;

	position: relative;
	top: 5%;

	width: 1px;
	height: 90%;

	background-color: white;
}

#footer-right-container {
	display: flex;
	flex-direction: column;
	justify-content: space-between;

	flex-grow: 1;
}

#footer-sitemap-container {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	grid-gap: 15px;

	width: 100%;
}

.footer-sitemap-theme > h2 {
	margin-bottom: 14px;

	font-weight: 500;
	font-size: 24px;

	color: #e1e1e1;
}

.footer-sitemap-theme > p {
	margin-bottom: 6px;

	font-weight: 300;

	color: #9d9d9d;
}

.footer-sitemap-theme > p > a {
	padding: 6px 0;

	color: inherit;
	text-decoration: none;
}

#footer-row {
	width: 100%;
	text-align: center;
}

#footer-row > p {
	color: white;

	font-weight: 300;
	font-size: 14px;
}

#footer-row > p > a {
	color: inherit;
	text-decoration: none;
}

@media (min-width: 1024px) {
	#footer-left-container {
		flex-basis: 500px;
	}
}

@media (min-width: 640px) {
	#footer-container {
		height: 280px;
	}

	#footer-left-container {
		flex-basis: 280px;
	}

	#footer-sitemap-container {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 420px) {
	#footer-container {
		padding: 30px 50px 15px;
	}

	#footer-left-container {
		display: flex;
	}

	#footer-divider {
		display: block;
	}

	#footer-right-container {
		padding: 0 30px;
	}
}

@media (hover: hover) {
	.footer-sitemap-theme > p > a:focus,
	.footer-sitemap-theme > p > a:hover,
	#footer-row > p > a:focus,
	#footer-row > p > a:hover {
		text-decoration-line: underline;
		text-decoration-color: white;
		text-decoration-style: solid;
		text-decoration-thickness: 1px;
	}
}
.screen-overlay {
	position: fixed;
	top: 0;
	left: 0;

	width: 100%;
	height: 100%;

	pointer-events: none;

	z-index: 101;
}

.screen-overlay.hidden {
	display: none;
}

.screen-overlay > .notif-window {
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-end;

	position: absolute;
	bottom: 0;
	right: 0;

	padding-right: 20px;
	padding-bottom: 20px;

	overflow: hidden;
}

.notif-container {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;

	max-width: 80%;
	width: 340px;

	padding: 16px 24px;
	margin-top: 12px;

	pointer-events: auto;
	box-sizing: border-box;

	transform-origin: bottom right;
	transform: translateX(100%);

	border-radius: .4rem;
	border-width: 1px;

	color: black;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	background-color: white;

	transition-duration: 100ms;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-property: transform;
}

.notif-container.active {
	transform: translateX(0);
}

.notif-img-container {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;

	flex-basis: 42px;
	flex-grow: 0;
	flex-shrink: 0;

	height: 42px;

	border-radius: 21px;
}

.notif-container.success > .notif-img-container {
	background-color: #a4f2a485;
}

.notif-container.warning > .notif-img-container {
	background-color: #f2d2a485;
}

.notif-container.failed > .notif-img-container {
	background-color: #ffc2c285;
}

.notif-img-container > img {
	width: 70%;
	height: 70%;
}

.notif-content-container {
	margin-left: 24px;
	margin-right: 12px;
}

.notif-content-container > h3 {
	font-weight: 700;
	font-size: .9em;
}

.notif-container.success > .notif-content-container > h3 {
	color: #2f912bff;
}

.notif-container.warning > .notif-content-container > h3 {
	color: #df9f00;
}

.notif-container.failed > .notif-content-container > h3 {
	color: #d53333;
}

.notif-content-container > p {
	padding-top: 6px;

	font-size: .85em;

	color: #727272;
}

.notif-close-btn {
	margin-left: auto;
}

.notif-close-btn > img {
	width: 16px;
	height: 16px;
}
h1, h2, h3, h4 {
	font-weight: 400;
	color: var(--main-text);
}

p {
	color: var(--sub-text);
}

h1 {
	font-size: 64px;
}

h2 {
	font-size: 34px;
}

span.heavy {
	font-weight: 700;
}

span.tank_stroke {
	text-decoration-line: underline;
	text-decoration-thickness: 6px;
	text-decoration-color: rgb(var(--accent-color));
}

@keyframes fadein {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

#box-overlay-window {
	display: none;
}

#window {
	width: 100%;
}

#window > section {
	height: auto;
	min-height: calc(100svh - var(--computed-topbar-height));

	box-sizing: border-box;
}

#page-1 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

	padding: 15px;
}

#page-1 > h1,
#page-1 > p {
	text-align: center;
}

#page-1 > h1 {
	font-weight: 400;
	font-size: 48px;

	margin-bottom: 40px;
}

#getworksheets-btn {
	padding: 14px;
	margin-top: 18px;

	color: white;
	background-color: rgb(var(--accent-color));
}

#page-2 {
	display: flex;
	flex-direction: column;

	padding: 15px;
}

#page-2-header {
	display: flex;
	flex-direction: column;
	justify-content: center;

	flex-basis: 0;
	flex-grow: 1;
	flex-shrink: 1;
}

#page-2-header > h2 {
	margin-bottom: 25px;
}

#page-2-right-container {
	display: flex;
	flex-direction: row;

	flex-basis: 500px;
	flex-grow: 1;
	flex-shrink: 0;

	margin-left: 0;
	margin-top: 40px;
}

#page-2-qn-container {
	flex-grow: 1;
	flex-shrink: 1;
	flex-basis: 500px;

	padding: 14px;

	border-radius: .4rem 0 0 .4rem;
	border-width: 1px;
	border-style: solid;
	border-color: var(--border-medium);

	color: var(--sub-text);
}

#page-2-qn-toggle-container {
	display: flex;
	flex-direction: column;
	align-items: flex-start;

	margin-left: 20px;
}

.page-2-qn-toggle-btn {
	position: relative;

	display: flex;
	flex-direction: row;

	color: var(--grayscale);

	transition-timing-function: cubic-bezier(.4, 0, .2, 0);
	transition-property: color;
	transition-duration: 100ms;
}

.page-2-qn-toggle-btn.active {
	color: var(--main-text);
}

.page-2-qn-toggle-btn.active > .page-2-qn-toggle-btn-active-mark {
	background-color: rgb(var(--accent-color));
}

.page-2-qn-toggle-btn-active-mark {
	flex-basis: 4px;
	flex-shrink: 0;
	flex-grow: 0;
	align-self: stretch;

	background-color: #f3f3f3;

	transition-timing-function: cubic-bezier(.4, 0, .2, 0);
	transition-property: background-color;
	transition-duration: 100ms;
}

.page-2-qn-toggle-btn > p {
	padding: 14px;

	color: inherit;

	text-align: left;
}

#page-2-qn-toggle-container > hr {
	align-self: center;

	width: calc(100% - 32px);

	margin: 0;
	margin-top: -1px;

	color: var(--border-light);
}

#page-2-qn-toggle-btn-more {
	padding: 20px;
	margin-left: 4px;

	font-size: .9em;
	color: #000;
}

#page-2-explore-more-btn {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
}

#page-2-explore-more-btn > p {
	text-align: left;
	padding-right: 6px;
}

#page-2-qn-toggle-btn-more > p {
	padding-bottom: 8px;
}

#page-3 {
	display: flex;
	flex-direction: column;
	align-items: center;

	padding: 15px;

	text-align: center;
}

#page-3 > h2 {
	margin-bottom: 25px;
}

#page-3-lr-container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 10px;

	width: min(100%, 400px);

	margin-top: 40px;
}

.page-3-card {
	display: flex;
	flex-direction: column;
	align-items: center;

	padding: 14px;

	border-style: dashed;
	border-color: rgb(var(--accent-color));
	border-width: 2px;
}

.page-3-card > h3 {
	margin-bottom: 5px;
}

.page-3-card > p {
	padding-top: 15px;
}

#page-3-row-container {
	display: flex;
	flex-direction: column;

	width: 100%;

	margin-top: auto;
}

#page-3-row-container > .horizontal-stagger-fade-in {
	display: flex;
	flex-direction: column;
}

.page-3-row-item {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;

	flex-grow: 1;

	padding: 50px;

	text-align: center;
}

.page-3-row-divider {
	flex-basis: 1px;
	flex-grow: 0;
	flex-shrink: 0;
	align-self: stretch;

	margin: 0 20px;

	background-color: var(--border-light);
}

.page-3-row-item > h3 {
	margin-bottom: 30px;

	font-size: 40px;
}

.page-3-row-item > p {
	color: #929292;
}

#page-4 {
	display: flex;
	flex-direction: column;

	padding: 15px;
}

#page-4-header {
	display: flex;
	flex-direction: column;

	flex-grow: 0;
	flex-shrink: 1;
}

#page-4-header > h2 {
	margin-bottom: 25px;
}

#page-4-signup {
	display: none;
}

#page-4-right-container {
	display: flex;
	flex-direction: column;

	flex-grow: 1;
	flex-shrink: 1;
	gap: 20px;

	margin-top: 20px;
}

#page-4-style-window {
	position: relative;

	aspect-ratio: 1;

	border-width: 1px;
	border-style: solid;
	border-color: var(--border-medium);

	overflow: hidden;

	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url(/assets/910b5cbb04301576f369.svg);
}

#page-4-style-window-overlay {
	position: absolute;

	bottom: 0;
	left: 0;

	width: 100%;

	transform: translateY(100%);

	color: #fff;
	background-color: #000000d2;

	transition-timing-function: cubic-bezier(.4, 0, .2, 0);
	transition-property: transform;

	transition-duration: 100ms;
}

#page-4-style-window-overlay > p {
	padding: 12px;

	color: inherit;
}

#page-4-style-window:hover > #page-4-style-window-overlay {
	transform: translateY(0);
}

#page-4-style-track {
	display: flex;
	flex-direction: row;
	grid-gap: 15px;

	padding-top: 3px;
	padding-bottom: 15px;

	overflow-x: auto;
	overflow-y: hidden;
}

.page-4-grid-item {
	display: flex;
	flex-direction: column;
}

.page-4-grid-item > .page-4-style-name {
	padding-top: 8px;

	text-align: left;
}

.page-4-selection-window {
	position: relative;

	flex-basis: 74px;
	height: 74px;

	aspect-ratio: 1;

	border-width: 1px;
	border-style: solid;
	border-color: var(--border-medium);

	overflow: hidden;

	transition-property: border-color;
	transition-timing-function: cubic-bezier(.4, 0, .2, 0);
	transition-duration: 100ms;

	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
}

#page-4-mobile-signup {
	margin-top: 40px;
}

#page-4-mobile-signup > h2 {
	margin-bottom: 25px;
}

#page-4-mobile-signup-btn {
	margin-top: 20px;
}

#page-5 {
	--page-5-padding: 15px;
	--page-5-left-container-width: 720px;
}

#page-5-scroll-trigger {
	top: calc(var(--computed-topbar-height) * -1);
}

#page-5-inner-scroll-wrapper {
	position: relative;

	height: 100%;

	padding: var(--page-5-padding);

	overflow-x: hidden;
	box-sizing: border-box;
}

#page-5-bottom-layer-container {
	display: flex;
	flex-direction: row;
	align-items: center;

	width: 100%;
	height: 100%;

	box-sizing: border-box;
}

#page-5-bottom-layer-group {
	display: flex;
	flex-direction: column;

	flex-basis: var(--page-5-left-container-width);
	flex-grow: 1;
	flex-shrink: 1;

	min-width: 0;
}

#page-5-left-container {
	flex-basis: 200px;
	flex-grow: .5;
	flex-shrink: 1;
}

#page-5-left-container > h2 {
	margin-bottom: 25px;
}

#page-5-left-container > p {
	color: var(--sub-text);
}

#page-5-list-container {
	display: flex;
	flex-direction: column;
	align-items: flex-start;

	flex-basis: 200px;
	flex-grow: 1;
	flex-shrink: 1;

	margin: 0;
	margin-bottom: 50px;
}

#page-5-list-container > p {
	font-size: 20px;
}

#page-5-list-container > ol > li {
	margin-bottom: 8px;
}

#page-5-explore-more-btn {
}

#page-5-top-layer-container {
	display: flex;
	flex-direction: row;

	position: absolute;
	top: 0;
	left: calc(20px + var(--page-5-left-container-width) + var(--page-5-padding));

	width: 100%;
	height: 100%;

	padding: var(--page-5-padding) 0;

	box-sizing: border-box;

	background-color: var(--primary-color);
}

#page-5-divider {
	flex-basis: 1px;
	flex-grow: 0;
	flex-shrink: 0;
	align-self: stretch;

	margin: 20px 0;
	margin-right: 20px;
	margin-left: -1px;
	background-color: var(--border-light);
}

#page-5-right-container {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));

	flex-grow: 1;
	flex-shrink: 1;

	padding: 0 8px;
}

.page-5-right-item {
	display: flex;
	flex-direction: column;
	align-items: center;

	flex-basis: 100px;
	flex-grow: 1;
	flex-shrink: 1;

	padding: 6px 12px;

	text-align: center;
}

.page-5-right-item > svg {
	width: 64px;
	height: 64px;

	padding: 6px;
	margin-bottom: 12px;

	color: var(--grayscale-2);
}

.page-5-right-item > svg > path {
	fill: currentColor;
}

.page-5-right-item > h3 {
	margin-bottom: 20px;

	font-size: 24px;
}

.page-scroll-trigger {
	position: relative;
}

.gradient-text {
	color: transparent;
	background-clip: text;
	background: linear-gradient(150deg, rgba(232,93,117,1) 0%, rgba(242,185,168,1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.cta-btn-1 {
	padding: 12px;

	color: #fff;
	background-color: #000;
}

.cta-btn-1 svg {
	width: 24px;
	height: 24px;

	margin-left: 8px;

	color: inherit;
}

.cta-btn-1 svg > path {
	fill: currentColor;
}

#page-6 {
	padding: 15px;
	margin-top: 40px;
}

#page-6-header {
	display: flex;
	flex-direction: row;
	align-items: flex-end;

	margin-bottom: 30px;
}

#page-6-subheader {
	margin-bottom: 20px;
	font-size: 34px;
}

#page-6-header > div > h2 {
	margin-bottom: 20px;
	font-size: 84px;
}

#page-6-cta-btn-container {
	display: flex;
	flex-direction: column;

	margin-top: 40px;
}

#page-6-cta-btn-container > p {
	margin-bottom: 12px;
}

#page-6-grid-container {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));

	max-width: min(100%, 400px);

	padding: 20px;
	margin: 0 auto;

	box-sizing: border-box;
}

#page-6-grid-container > div {
	width: 100%;
	height: auto;

	padding: 12px;

	font-size: 18px;

	color: var(--sub-text);

	aspect-ratio: 1;
	box-sizing: border-box;
}

#page-6-grid-container > div:nth-child(2n + 1) {
	border-style: solid;
	border-right-width: 1px;
	border-color: var(--border-medium);
}

#page-6-grid-container > div:first-child,
#page-6-grid-container > div:nth-child(2) {
	border-style: solid;
	border-bottom-width: 1px;
	border-color: var(--border-medium);
}

#window > section#page-7 {
	display: flex;
	flex-direction: column;
	align-items: center;

	height: auto;
	min-height: 0;

	padding: 20px;
}

#page-7 > hr {
	flex-basis: 1px;
	flex-grow: 0;
	flex-shrink: 0;

	width: min(40%, 150px);
	height: 1px;

	margin-bottom: 60px;

	border: none;
	outline: none;

	background-color: var(--border-medium);
}

#page-7 > p {
	font-size: 32px;
}

#page-7-signup-btn {
	margin-top: 20px;
	margin-bottom: 160px;

	font-size: 24px;
}

@media (min-width: 1440px) {
	#page-3-lr-container {
		margin-top: 100px;
	}
}

@media (min-width: 1024px) {
	#window > section {
		height: calc(100svh - var(--computed-topbar-height));
	}

	.cta-btn-1 {
		padding: 12px;
	}

	#page-1 {
		padding: 0;
	}

	#page-1 > h1,
	#page-1 > p {
		width: 30%
	}

	#page-1 > h1 {
		width: 40%;

		font-size: 64px;
	}

	#page-2 {
		flex-direction: row;
		padding: 60px;
	}

	#page-2-right-container {
		margin-left: 40px;
		margin-top: 0;
	}

	#page-2-qn-container {
		padding: 20px;
	}

	.page-2-qn-toggle-btn > p {
		padding: 20px;
	}

	#page-2-qn-toggle-container > hr {
		width: calc(100% - 44px);
	}

	#page-3 {
		padding: 60px;
	}

	#page-3-lr-container {
		gap: 20px;
	}

	.page-3-card {
		padding: 20px;
	}

	#page-4 {
		flex-direction: row;
		justify-content: space-between;

		padding: 60px;
	}

	#page-4-signup {
		display: block;
		margin-top: auto;
	}

	#page-4-signup > h2 {
		margin-bottom: 25px;
	}

	#page-4-signup-btn {
		margin-top: 20px;
	}

	#page-4-right-container {
		flex-direction: row;
		justify-content: flex-end;

		margin-left: 40px;
		margin-top: 0;
	}

	#page-4-style-track {
		flex-direction: column;

		overflow: hidden;

		padding-bottom: 0;
	}

	.page-4-selection-window {
		flex-basis: auto;
		height: unset;
	}

	#page-4-mobile-signup {
		display: none;
	}

	#page-3-row-container {
		flex-direction: row;
	}

	#page-3-row-container > .horizontal-stagger-fade-in {
		flex-direction: row;
	}

	.page-3-row-divider {
		margin: 60px 0;
	}

	#page-5 {
		--page-5-padding: 60px;
	}

	#page-5-bottom-layer-group {
		flex-direction: row;

		flex-grow: 0;
		flex-shrink: 0;
	}

	#page-5-list-container {
		margin: 0 40px;
		margin-bottom: 50px;
	}

	#page-5-right-container {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;

		padding: 0 20px;
	}

	.page-6-right-item {
		padding: 14px 30px;
	}

	.page-6-right-item > img {
		width: 124px;
		height: 124px;

		padding: 14px;
		margin-bottom: 30px;
	}

	#page-4 {
		padding: 60px;
	}

	#page-4-lr-container {
		flex-direction: row;
		justify-content: space-between;

		padding: 30px;
	}

	#page-4-demo-img {
		margin-left: 0;
		margin-right: 8px;

		border-width: 1px;
	}

	#page-4-right-container {
		margin-top: 0;
	}

	#page-4-rotated-header {
		font-size: 14px;
	}

	#page-4-content-second {
		margin-top: 60px;
	}

	#page-4-try-now-container {
		margin-top: auto;
	}

	#page-6 {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;

		padding: 120px;
		margin-top: 0;
	}

	#page-6-header {
		flex-direction: column;
		align-items: flex-start;

		flex-grow: 1;

		margin-right: 150px;
		margin-bottom: 0;
	}

	#page-6-subheader {
		font-size: 48px;
	}

	#page-6-cta-btn-container {
	}

	#page-6-buy-now-btn {
		font-size: 24px;
	}

	#page-6-grid-container {
		flex-basis: auto;
		flex-shrink: 0;
		flex-grow: 0;

		min-width: 0;

		padding: 0;
		margin: 0;
		margin-left: 60px;
	}

	#page-6-grid-container > div {
		padding: 20px;

		font-size: 24px;
	}
}

@media (min-width: 1024px) {
	#box-overlay-window {
		display: block;

		position: absolute;
		top: var(--computed-topbar-height);

		width: 100%;
		height: calc(100svh - var(--computed-topbar-height));

		padding: 40px;

		pointer-events: none;

		box-sizing: border-box;

		transform-style: preserve-3d;
	}

	#box-left-container {
		width: 32px;
		height: 100%;

		float: left;
		transform-style: preserve-3d;
	}

	#box-center-window {
		position: relative;

		width: calc(100% - 64px);
		height: 100%;

		float: left;
		transform-style: preserve-3d;
	}

	#box-top-container {
		width: 100%;
		height: 32px;

		transform-style: preserve-3d;
	}

	#box-bottom-container {
		position: absolute;
		bottom: 0;

		width: 100%;
		height: 32px;

		transform-style: preserve-3d;
	}

	#box-right-container {
		width: 32px;
		height: 100%;

		float: left;
		transform-style: preserve-3d;
	}

	.box-row-container {
	    display: flex;
	    flex-direction: row;

		pointer-events: initial;
		transform-style: preserve-3d;
	}

	#box-left-inner-container {
		position: relative;
		top: 100%;

		height: 32px;

		transform-origin: top left;
		transform: rotate(-90deg);
	}

	#box-top-inner-container,
	#box-bottom-inner-container {
		width: 100%;
		height: 100%;
	}

	#box-right-inner-container {
		height: 32px;

		transform-origin: top left;
		transform: rotate(90deg) translateY(-100%);
	}

	.box-cell {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: center;

		flex-grow: 1;
		flex-shrink: 1;

		padding: 8px;

		cursor: pointer;

		border-width: 1px;
		border-style: solid;
		border-color: #ff0000;

		background-repeat: repeat;

		transform-style: preserve-3d;
	}

	.box-cell-inner-container {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: center;

		padding: 4px;

		background-color: var(--primary-color);
	}

	.box-cell:hover,
	.box-cell:focus {
		background-image: urL(/assets/4392949ea5c7754c2871.svg);
	}

	#box-left-inner-container > .box-cell,
	#box-right-inner-container > .box-cell {
		border-right-width: 0;
	}

	#box-left-inner-container > .box-cell:last-child,
	#box-right-inner-container > .box-cell:last-child {
		border-right-width: 1px;
	}

	#box-bottom-inner-container > .box-cell,
	#box-top-inner-container > .box-cell {
		border-left-width: 0;
	}

	#box-bottom-inner-container > .box-cell:last-child,
	#box-top-inner-container > .box-cell:last-child {
		border-right-width: 0;
	}

	.box-cell-inner-shape {
		position: relative;

		flex-basis: 12px;
		flex-grow: 0;
		flex-shrink: 0;

		width: 12px;
		height: 12px;

		color: red;
		background-color: #ff0000;

		transform-style: preserve-3d;
	}

	.box-cell-inner-shape.circle {
		border-radius: 6px;
	}

	.box-cell-inner-text {
		margin-left: 6px;
	}

	.box-cell-outer-content {
		position: absolute;

		display: none;

		top: 32px;

		transform: translateZ(1px);
	}

	.box-cell:not(.active) .box-cell-inner-shape > .box-cell-outer-content {
		animation-name: fadein;
		animation-duration: 150ms;
		animation-fill-mode: forwards;
		animation-direction: reverse;
	}

	.box-cell.active .box-cell-inner-shape > .box-cell-outer-content {
		display: block;
		animation-name: fadein;
		animation-duration: 500ms;
		animation-fill-mode: forwards;
	}

	#box-bottom-inner-container > .box-cell .box-cell-inner-shape > .box-cell-outer-content {
		top: unset;
		bottom: calc(100% + 20px);
	}

	.box-cell-outer-content-pointer {
		width: 12px;
		height: 12px;

		color: inherit;
	}

	.box-cell-outer-content-pointer > svg {
		width: 12px;
		height: 12px;

		color: inherit;
	}

	.box-cell-outer-content-pointer > svg > path {
		fill: currentColor;
	}

	.box-cell-outer-content-text {
		width: 200px;

		padding: 14px;
		margin-top: 10px;
		margin-left: -30px;

		line-height: 18px;

		color: white;
		background-color: #141414;
	}

	#box-bottom-inner-container > .box-cell .box-cell-inner-shape > .box-cell-outer-content > .box-cell-outer-content-text {
		margin-top: 0;
		margin-bottom: 6px;
	}

	#box-left-inner-container > .box-cell:first-child .box-cell-inner-shape > .box-cell-outer-content > .box-cell-outer-content-text,
	#box-right-inner-container > .box-cell:first-child .box-cell-inner-shape > .box-cell-outer-content > .box-cell-outer-content-text {
		margin-left: 0;
	}
}

@media (min-width: 420px) {

}

@media (hover: hover) {
	#getworksheets-btn:focus,
	#getworksheets-btn:hover {
		outline-width: 2px;
		outline-color: rgba(var(--accent-color), .4);
		outline-style: solid;
	}

	.cta-btn-1 {
		color: #000;
		border-width: 1px;
		border-style: solid;
		border-color: #000;
		background-color: transparent;

		transition-timing-function: cubic-bezier(.4, 0, .2, 0);
		transition-duration: 100ms;
		transition-property: color, background-color;
	}

	.cta-btn-1:focus,
	.cta-btn-1:hover {
		color: #fff;
		background-color: #000;
	}

	.cta-btn-1 > svg > #right-arrow-2-long-stroke {
		transform-origin: right center;
		transform: scaleX(.7);

		transition-timing-function: cubic-bezier(.4, 0, .2, 0);
		transition-duration: 200ms;
		transition-property: transform;
	}

	.cta-btn-1:focus > svg > #right-arrow-2-long-stroke,
	.cta-btn-1:hover > svg > #right-arrow-2-long-stroke {
		transform: scaleX(1);
	}
}

@media (prefers-color-scheme: dark) {
	.box-cell {
		border-color: #fb336b;
	}

	.box-cell-inner-shape {
		background-color: #fb336b;
		color: #fb336b;
	}

	.cta-btn-1 {
		box-shadow: 0 0 4px 0px #000;
		border-style: solid;
		border-width: 1px;
		border-color: var(--border-medium);
		background-color: transparent;
	}

	.page-2-qn-toggle-btn-active-mark {
		background-color: #252525;
	}
}

@media (hover: hover) and (prefers-color-scheme: dark) {
	.cta-btn-1 {
		color: rgb(var(--accent-color));
		border-color: rgb(var(--accent-color));
	}

	.cta-btn-1:focus,
	.cta-btn-1:hover {
		color: #fff;
		background-color: rgb(var(--accent-color));
	}
}
