@layer reset, layout, desktop, mobile;

@import 'reset.css' layer(reset);
@import 'form.css';
@import 'layout.css' layer(layout);

@layer desktop {

	@font-face {
		font-family: Baudricourt;
		src: url('../fonts/Baudricourt-wght.woff2') format("woff2-variations");
		font-weight: 100 1000;
		font-style: normal;
	}

	:root {
		--bg-color: black;
		--fg-color: white;
		--highlight-color: white;
		--site-margin: 1rem;
	}

	html {
		height: 100%;
		scroll-behavior: smooth;
	}

	body {
		background: var(--bg-color);
		color: var(--fg-color);
		min-height: 100%;
		display: flex;
		flex-direction: column;
		align-items: start;
		margin-top: calc(var(--site-margin)*2 + 2.5rem);
		overflow-x: hidden;
	}

	main {
		width: 100%;
		/*padding: 0 var(--site-margin);*/
	}

	main.full {
		padding: 0;
	}

	nav li {
		list-style: none;
	}

	hr {
		border: 0.75px solid var(--fg-color);
	}

	body.js-enabled .no-js {
		display: none;
	}

	*::selection {
		background-color: color-mix(in srgb, currentColor 15%, transparent);
	}

	.sticky {
		position: sticky;
		top: 1.5rem;
	}

	.rounded {
		border-radius: 0.75rem;
	}

	.blend-multiply {
		mix-blend-mode: multiply;
	}

	.site-header {
		position: fixed;
		padding: var(--site-margin) 1.5rem;
		top: 0;
		width: 100%;
		z-index: 4;
		pointer-events: none;
	}

	.site-header > * {
		pointer-events: auto;
	}

	.site-logo {
		position: relative;
		top: 0.15em;
		height: 2.5rem;
		display: block;
		transition: transform 0.2s, opacity 0.2s, color 0.1s;
	}

	.site-logo:hover {
		transform: scale(102%);
	}

	.page-title {
		color: var(--fg-color);
		transition: opacity 0.2s;
	}

	.site-header.end .site-logo,
	.site-header.end .site-logo-container,
	.site-header.end .page-title {
		opacity: 0;
		pointer-events: none;
	}

	.site-logo svg {
		height: 100%;
		width: auto;
		fill: var(--fg-color);
	}

	.nav-menu-container {
		position: relative;
		flex-shrink: 0;
	}

	.nav-menu-toggle {
		cursor: pointer;
		color: var(--fg-color);
		background-color: transparent;
		border-radius: 0.25rem;
		border: .5px solid color-mix(in srgb, var(--fg-color) 60%, transparent);
		padding: .45rem .4rem;
		margin-right: 0.5rem;
		box-shadow: inset .0625rem .0625rem .375rem .0625rem color-mix(in srgb, var(--highlight-color) 35%, transparent);
		backdrop-filter: blur(2px);
	}

	button.nav-menu-toggle:hover,
	.nav-menu-toggle.active {
		box-shadow: none;
		background-color: var(--fg-color);
		color: var(--bg-color);
	}

	.nav-menu {
		visibility: hidden;
		position: absolute;
		top: 0rem;
		left: 2.5rem;
		border: .5px solid var(--fg-color);	
		padding: .15rem 0.9rem;
		border-radius: 1rem;
		background: var(--fg-color);
		color: var(--bg-color);
		transition: box-shadow 0.25s;
		z-index: 1;
	}

	.nav-menu.open {
		visibility: visible;
	}

	.nav-menu.open:hover {
		box-shadow: 0.125rem 0.25rem 0.5rem rgba(0,0,0,0.12);
	}


	.cart-menu-container {
		position: relative;
	}


	.cart-menu-toggle {
		display: block;
		color: var(--fg-color);
		background-color: transparent;
		border-radius: 0.25rem;
		border: .5px solid color-mix(in srgb, var(--fg-color) 80%, transparent);
		width: 1.8rem;
		height: 1.8rem;
		display: flex;
		font-feature-settings: "tnum" 1;
		align-items: center;
		justify-content: center;
		border-radius: 2rem;
		box-shadow: inset .0625rem .0625rem .375rem .0625rem color-mix(in srgb, var(--highlight-color) 35%, transparent);
		backdrop-filter: blur(2px);
	}

	.cart-menu-toggle:hover,
	.cart-menu-toggle.active {
		box-shadow: none;
		background-color: var(--fg-color);
		color: var(--bg-color);
	}

	.cart-menu {
		text-align: left;
		top: 0;
		right: 2.3rem;
		width: max-content;
		min-width: 14rem;
		padding: 0.4rem 0.55rem 0.35rem;
		background: var(--fg-color);
		color: var(--bg-color);
		position: absolute;
		border-radius: 0.375rem;
		visibility: hidden;
		transition: box-shadow 0.25s;
	}

	.cart-menu-header-arrow {
		transition: margin-left 0.2s;
	}

	.cart-menu.open:hover {
		box-shadow: 0.125rem 0.25rem 0.5rem rgba(0,0,0,0.12);
	}

	.cart-menu.open:hover .cart-menu-header-arrow {
		margin-left: 0.25em;
	}

	.cart-menu.open {
		visibility: visible;
	}

	@media (max-width: 640px) {
		.nav-menu {
			left: 3.5rem;
			padding: 0.45rem 0.7rem 0.5rem;
			border-radius: 0.375rem;
			flex-direction: column;
			min-width: 12rem;
		}

		.nav-menu-toggle {
			padding: .5rem;
		}

		.page-title {
			display: none;
		}

		.nav-menu-toggle svg {
			width: 1.5rem;
			height: auto;
		}

		.cart-menu-toggle {
			width: 2.35rem;
			height: 2.35rem;
			font-size: 1.5rem;
		}

		.cart-menu {
			padding: 0.45rem 0.7rem 0.5rem;
			right: 3rem;
		}
	}

	/* Footer */

	.site-end {
		width: 100%;
	}

	.site-footer {
		width: 100%;
		margin-top: 6rem;
		padding-left: var(--site-margin);
		padding-right: var(--site-margin);
		height: calc(100vh - 1.55rem);
	}

	.footer-logo-container {
		bottom: calc(var(--site-margin)*2 + 1.5rem);
	}

	.footer-logo {
		display: grid;
		place-items: center;
	}

	.footer-logo svg {
		width: 100%;
	}

	.footer-description {
		padding-left: 3.25rem;
	}

	.footer-end {
		/*height: calc(var(--site-margin) + 1.5rem);*/
		padding-bottom: var(--site-margin);
	}

	.logo-stack {
		position: relative;
		width: 100%;
		height: auto;
		display: grid;
		place-items: center;
	}

	.mask-layer {
		position: absolute;
		inset: 0;
		display: grid;
		place-items: center;
		mix-blend-mode: lighten;
	}

	.logo-layer {
		position: absolute;
		inset: 0;
		display: grid;
		place-items: center;
	}

	.logo-layer svg {
		width: 100%;
		height: auto;
		display: block;
	}

	@media (max-width: 640px) {
		.site-footer {
			height: calc(100vh - 4.5rem);
		}

		.footer-description {
			padding-left: 0;
		}

		.footer-end-copyright {
			order: 2;
		}
	}


	/* Typography */
	:root {
		font-family: Baudricourt;
		font-weight: 300;
	}

	.fs-12 {
		font-size: 12px;
		font-weight: 400;
		letter-spacing: 0.03em;
		letter-spacing: 0.02em;
	}

	.fs-14 {
		font-size: 14px;
		font-weight: 350;
		letter-spacing: 0.025em;
		letter-spacing: 0.02em;
	}

	.fs-16 {
		font-size: 16px;
		font-weight: 350;
		letter-spacing: 0.02em;
	}

	.fs-18 {
		font-size: 18px;
		font-weight: 350;
		letter-spacing: 0.015em;
	}

	.fs-24 {
		font-size: 24px;
		letter-spacing: 0.01em;
		font-weight: 350;
	}

	.fs-36 {
		font-size: 36px;
		font-weight: 350;
	}

	.fs-48 {
		font-size: 48px;
		font-weight: 350;
	}

	.fs-72 {
		font-size: 72px;
		font-weight: 350;
	}

	.fs-120 {
		font-size: 120px;
		line-height: 1;
		font-weight: 350;
	}
}

@layer mobile {
	@media (max-width: 1024px) {
		.fs-12--md {
			font-size: 12px;
			font-weight: 400;
			letter-spacing: 0.03em;
		}

		.fs-14--md {
			font-size: 14px;
			font-weight: 350;
			letter-spacing: 0.025em;
		}

		.fs-16--md {
			font-size: 16px;
			font-weight: 350;
			letter-spacing: 0.02em;
		}

		.fs-18--md {
			font-size: 18px;
			font-weight: 350;
			letter-spacing: 0.015em;
		}

		.fs-24--md {
			font-size: 24px;
			letter-spacing: 0.01em;
			font-weight: 350;
		}

		.fs-36--md {
			font-size: 36px;
			font-weight: 350;
		}

		.fs-48--md {
			font-size: 48px;
			font-weight: 350;
		}

		.fs-72--md {
			font-size: 72px;
			font-weight: 350;
		}

		.fs-120--md {
			font-size: 120px;
			line-height: 1;
			font-weight: 350;
		}
	}
	@media (max-width: 640px) {
		.fs-12--sm {
			font-size: 12px;
			font-weight: 400;
			letter-spacing: 0.03em;
		}

		.fs-14--sm {
			font-size: 14px;
			font-weight: 350;
			letter-spacing: 0.025em;
		}

		.fs-16--sm {
			font-size: 16px;
			font-weight: 350;
			letter-spacing: 0.02em;
		}

		.fs-18--sm {
			font-size: 18px;
			font-weight: 350;
			letter-spacing: 0.015em;
		}

		.fs-24--sm {
			font-size: 24px;
			letter-spacing: 0.01em;
			font-weight: 350;
		}

		.fs-36--sm {
			font-size: 36px;
			font-weight: 350;
		}

		.fs-48--sm {
			font-size: 48px;
			font-weight: 350;
		}

		.fs-72--sm {
			font-size: 72px;
			font-weight: 350;
		}

		.fs-120--sm {
			font-size: 120px;
			line-height: 1;
			font-weight: 350;
		}
	}
}

@layer desktop { 

	.text-format h1,
	.text-format h2,
	.text-format h3,
	.text-format h4,
	.text-format h5,
	.text-format h6,
	.text-format p:not(:last-child) {
		margin-bottom: 1em
	}

	.text-format strong {
		font-weight: bold;
	}

	.text-format ul,
	.text-format ol {
		padding-left: 1em;
	}

	.text-format ul li::marker {
		content: '•  ';
	}

	.text-format li p {
		margin-bottom: 0;
	}

	.text-format a {
		text-decoration: underline;
	}

	.text-format a[href^="#"] {
		text-decoration: none;
	}

	.text-format a:hover {
		opacity: 0.6;
	}

	.text-format {
		max-width: max(48rem, 25em);
		position: relative;
	}

	.text-format.align-center {
		margin-left: auto;
		margin-right: auto;
	}

	.text-format.align-right {
		margin-left: auto;
	}

	.o-30 {
		opacity: 0.3;
	}

	.o-70 {
		opacity: 0.7;
	}

	.link {
		opacity: 1;
		transition: opacity .1s;
	}

	.link:hover {
		opacity: 0.7;
	}

	.link.link--underline {
		text-decoration: underline;
	}

	.link.link--underline:hover {
		text-decoration: none;
	}

	.link.o-70 {
		opacity: 0.7;
	}

	.link.o-70:hover {
		opacity: 1;
	}

	.link.primary {
		opacity: 1;
		background: linear-gradient(to bottom, var(--fg-color) 0%, color-mix(in srgb, var(--fg-color) 40%, transparent) 100%);
		color: var(--bg-color);
		background-size: 100% 150%;
		box-shadow: inset 0.02em 0.02em 1em 0.1em var(--highlight-color);
		border-radius: 3em;
		padding: 0.6em 1em;
		transition: background-position 0.25s;
	}

	.link.primary:hover {
		background-position: 0 40%;
	}

	.link.primary--small:hover {
		opacity: 0.8;
	}

	.link[disabled] {
		opacity: 0.4;
		pointer-events: none;
	}

	.link.primary--small {
		opacity: 1;
		background-color: var(--fg-color);
		color: var(--bg-color);
		border-radius: 1.5rem;
		padding: 0.35rem 0.9rem;
	}

	.arrow-link {
		white-space: nowrap;
	}

	.arrow-link::after {
		content: " →";
		display: inline-block;
		margin-left: 0.4em;
		transition: transform 0.2s;
	}

	.arrow-link:hover::after {
		transform: translateX(0.25em);
	}

	.uppercase {
		text-transform: uppercase;
	}

	.bold {
		font-weight: 460;
	}

	/* Forms */

	.disabled {
		opacity: 0.5;
		pointer-events: none;
	}

	.input-container {
		position: relative;
	}

	.input-icon {
		position: absolute;
		right: 0.65rem;
		top: 0.625rem;
	}

	.input-error {
		color: red;
	}

	.input-valid {
		border: 1px solid green;
	}

	.input-tax-id-retry-btn {
		position: absolute;
		right: 1.5rem;
		top: 0.15rem;
		padding: 0;
		background: none;
		border: none;
	}


	/* Notifications */

	.notification {
		color: var(--fg-color);
		background-color: color-mix(in srgb, var(--fg-color) 8%, transparent);
		border: .5px solid color-mix(in srgb, var(--fg-color) 60%, transparent);
		box-shadow: inset .0625rem .0625rem .5rem .125rem  color-mix(in srgb, var(--highlight-color) 25%, transparent);
		padding: 0.625rem 0.75rem;
		border-radius: 0.5rem;
		display: flex;
		align-items: start;
		gap: 0.5rem;
	}

	.notification-icon {
		position: relative;
		top: 0.2em;
	}

	.notification-body {
		flex: 1;
	}

	.notification-body a {
		opacity: 0.7;
	}

	.notification-body a:hover {
		opacity: 1;
	}

	.notification-close-btn {
		position: relative;
		top: 0.25em;
		background: none;
		border: 0;
		padding: 0;
		color: inherit;
		width: .75rem;
		height: auto;
		cursor: pointer;
	}

	/* Tooltips */

	.tooltip-button {
		display: block;
		color: currentColor;
		background-color: transparent;
		border: .5px solid color-mix(in srgb, currentColor 80%, transparent);
		width: 1.6em;
		height: 1.6em;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 2em;
		box-shadow: inset .0625rem .0625rem .375rem .0625rem color-mix(in srgb, var(--highlight-color) 35%, transparent);
		cursor: pointer;
	}

	.tooltip-button:hover {
		box-shadow: none;
		background-color: var(--fg-color);
		color: var(--bg-color);
	}

	.tooltip-bubble {
		color: var(--fg-color);
		background-color: color-mix(in srgb, var(--bg-color) 8%, var(--bg-color));
		border: .5px solid color-mix(in srgb, var(--fg-color) 60%, transparent);
		box-shadow: inset .0625rem .0625rem .5rem .125rem  color-mix(in srgb, var(--highlight-color) 25%, transparent);
		padding: 0.625rem 0.75rem;
		border-radius: 0.5rem;
		max-width: 28rem;
		min-width: 12rem;
		margin: 0.5rem;
		position: absolute;
		position-area: right;
		position-try-fallbacks: left;
		backdrop-filter: blur(2px);
	}

	/* Animation */

	.spinning {
		animation: 2s cubic-bezier(0.65, 0, 0.35, 1) infinite spinning;
	}

	@keyframes spinning {
		0% {
			transform: rotate(0);
		}
		50% {
			transform: rotate(180deg);
		}
		100% {
			transform: rotate(360deg);
		}
	}

	/* Type Tester */

	.type-tester {
		display: flex;
		flex-direction: column;
		justify-content: center;
		max-width: 100%;
	}

	.tester-fullscreen {
		min-height: 80vh;
	}

	.tester.align-center {
		align-items: center;
	}

	.tester-controls {
		font-family: Baudricourt;
		font-style: normal;
		font-weight: normal;
		position: relative;
		margin: 0;
		display: flex;
		align-items: center;
		gap: 1rem 1.5em;
		flex-wrap: wrap;
	}

	.tester-styles,
	.tester-style {
		width: 8rem;
	}

	.tester-controls-spacer {
		flex: 1;
	}

	.tester-text {
		width: 100%;
		min-height: 6rem;
		font-feature-settings: "liga" on;
	}

	.tester-text:focus,
	.tester-text:focus-visible {
		outline: none;
	}

	.tester-controls-group {
		display: flex;
		gap: 0.25rem;
	}

	.tester-size {
		color: var(--fg-color);
	}

	.tester-size-label {
		font-feature-settings: 'tnum' 1; 
		min-width: 3.2ch; 
		display: inline-block; 
		text-align: right;
	}

	.type-tester--single-line {
		position: relative;
	}

	.type-tester--single-line .tester-text {
		overflow-x: scroll;
		padding-left: 1.5rem;
		padding-right: 1.5rem;
		margin-left: -1.5rem;
		width: calc(100% + 3rem);
		white-space: nowrap;
		display: flex;
		align-items: center;
	}

	.type-tester--multi-line .tester-text {
		white-space: normal;
	}

	.type-tester--square {
		aspect-ratio: 1;
	}

	.type-tester--square .tester-text {
		height: initial;
		max-height: initial;
		flex: 1;
	}

	.tester-radio-input {
		display: none;
	}

	.tester-radio-label {
		display: inline-flex;
		justify-content: center;
		align-items: center;
	}

	.tester-radio-input:checked + .tester-radio-label {
		background-color: var(--fg-color);
		color: var(--bg-color);
		box-shadow: none;
	}

	.tester-radio-label svg {
		width: 1em;
		height: auto;
	}

	@media screen and (max-width: 640px) {

		.tester-controls {
			justify-content: space-between;
			font-size: 1rem;
		}

		.tester-style {
			order: -2;
		}

		.tester-size-container {
			width: 100%;
			order: -1;
		}

	}

	.font-preview {
		min-width: 8rem;
		background: rgba(217,217,217,0.08);
		box-shadow: inset .0625rem .0625rem .5rem .125rem rgba(255,255,255,.25);
		border-radius: .5rem;
		border: .5px solid color-mix(in srgb, var(--fg-color) 40%, transparent);
	}

	.font-preview img {
		width: 100%;
		height: auto;
	}

	.badge {
		background-image: linear-gradient(45deg, var(--fg-color), var(--fg-color), var(--fg-color), var(--fg-color), var(--highlight-color), var(--fg-color), var(--fg-color), var(--fg-color), var(--fg-color));
		color: transparent;
		background-clip: text;
		display: inline-block;
		background-size: 400% 400%;
		animation: badge 1.25s ease-in-out infinite alternate;
	}

	@keyframes badge {
		0% {	
			background-position: 50% -20%;
			transform: translateY(0%);
		}
		10% {
			background-position: 50% -20%;
		}
		33% {
			transform: translateY(-25%);
		}
		66% {
			transform: translateY(0%);
		}
		90% {
			background-position: 50% 120%;
		}
		100% {
			background-position: 50% 120%;
			transform: translateY(-25%);
		}
	}

	/* Blocks */

	/* Card */

	.card {
		color: currentColor;
		margin: 0 1.5rem;
		width: calc(100% - 3rem);
		background: linear-gradient(to bottom, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.08) 100%);
		border-radius: 0.25rem;
		border: .5px solid color-mix(in srgb, currentColor 60%, transparent);
		border-radius: 1.5rem;
		box-shadow: inset .0125rem .0125rem 1rem .025rem color-mix(in srgb, var(--highlight-color) 35%, transparent);
		backdrop-filter: blur(2px);
	}

	/* Font block */

	.block-font {
		position: relative;
		height: 100vh;
		background-color: var(--bg-color);
		color: var(--fg-color);
	}

	.block-font-background {
		position: absolute;
		inset: 0;
	}

	.block-font-background img,
	.block-font-background video {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: var(--focus);
	}

	.block-font-content {
		z-index: 1;
	}

	/* Block Gallery */

	/* Gallery */

	.gallery-container {
		position: relative;
		padding: 2rem 0 0.85rem;
		overflow-x: clip;
	}

	.gallery {
		display: flex;
		align-items: start;
		justify-content: flex-start;
		display: flex;
		gap: 1.5rem;
		overflow-x: scroll;
		scroll-snap-type: x mandatory;
		scroll-padding-left: 1.75rem;
		-webkit-overflow-scrolling: touch;
		cursor: grab;
	}

	.gallery.dragging {
		cursor: grabbing;
	}

	.gallery-item {
		scroll-snap-align: start;
		flex-shrink: 0;
		cursor: pointer;
		transition: transform 0.2s;
	}

	.gallery-item:hover {
		transform: scale(0.99);
	}

	.gallery.dragging .gallery-item {
		cursor: grabbing;
	}

	.gallery-item img {
		height: 36rem;
		width: auto;
		border-radius: 1.35rem;
		margin-bottom: 0.35rem;
		overflow: hidden;
	}

	.gallery-item-caption {
		display: flex;
		contain: inline-size;
		justify-content: space-between;
		column-gap: 0.5rem;
		flex-wrap: wrap;
		padding: 0 0.65rem;
	}

	.gallery-zoom {
		padding: 0;
		border: none;
		margin: 0;
		max-height: calc(100vh - 8rem);
		max-width: calc(100vw - 6rem);
		overflow: visible;
		background: transparent;
	}

	.gallery-zoom::backdrop {
		background-color: rgba(0,0,0,0.45);
		animation: backdrop-fade-in 0.2s ease-out;
	}

	@keyframes backdrop-fade-in {
		from { opacity: 0; }
		to { opacity: 1; }
	}

	.gallery-zoom-image {
		display: block;
		max-height: calc(100vh - 8rem);
		max-width: calc(100vw - 6rem);
		width: 100%;
		height: auto;
		border-radius: 1.35rem;
		object-fit: contain;
	}

	.gallery-zoom[open] .gallery-zoom-image {
		animation: dialog-shadow 0.25s ease-in-out forwards;
	}

	@keyframes dialog-shadow {
		from {
			box-shadow: 0 0 0 rgba(0,0,0,0.35);
		}
		to {
			box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.35);
		}
	}

	.gallery-zoom-legend {
		font-size: 0.75rem;
		padding: 0 0.65rem;
		color: white;
		position: absolute;
		line-height: 1lh;
		bottom: -1lh;
	}

	.gallery-zoom-close {
		position: absolute;
		top: 1rem;
		right: -1.5rem;
		cursor: pointer;
		background: none;
		border: none;
		outline: none;
	}

	.gallery-zoom-close svg {
		color: white;
		width: 1rem;
		height: 1rem;
	}

	@media (max-width: 640px) {
		.gallery-item img {
			height: 20rem;
		}
	}

	/* Typefaces */

	.font-list {
		container-type: inline-size;
	}

	.font-list .font:nth-child(odd) {
		background-color: color-mix(in srgb, var(--highlight-color) 40%, transparent);
	}

	.font-list .font {
		margin-left: -1.5rem;
		width: calc(100% + 3rem);
	}


	/* Buy Page */

	.style-item,
	.family-item {
		padding: 0.5rem;
		cursor: pointer;
		border-bottom: 0.005rem solid var(--bg-color);
	}

	.style-item:nth-child(2n-1):not(.family-item) {
		background-color: color-mix(in srgb, var(--fg-color) 9%, transparent);
	}

	.family-item:has(input:checked),
	.style-item:has(input:checked) {
		background-color: var(--fg-color);
		color: var(--bg-color);
	}

	.style-item .checkbox-round:checked {
		border-color: var(--bg-color);
	}

	.style-item .checkbox-round:checked::before {
		background-color: var(--bg-color);
	}

	.style-item:has(input:checked):nth-child(2n-1) {
		background-color: color-mix(in srgb, var(--fg-color) 98%, transparent);
	}

	.style-list .style-item {
		padding-left: 3rem
	}

	.style-item:has(input:checked) .style-price {
		display: none;
	}


	/* Checkout page */

	.checkout-secured {
		vertical-align: center;
		text-align: center;
		opacity: 0.6;
	}

	.checkout-secured svg {
		vertical-align: baseline;
		display: inline-block;
	}

	.checkout-secured .icon-stripe {
		position: relative;
		top: -0.075em;
		vertical-align: middle;
		height: 1.3em;
		width: auto;
	}

	.checkout-processing {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: color-mix(in srgb, var(--bg-color) 80%, transparent);
		z-index: 2;
		justify-content: center;
		flex-direction: column;
		align-items: center;
	}

	.checkout-processing.active {
		display: flex;
	}

	.checkout-spinner {
		user-select: none;
	}

	.checkout-processing .icon-lock {
		height: 0.75em;
		margin-right: 0.2em;
		width: auto;
		display: inline-block;
		vertical-align: baseline;
	}

	.form-section.is-valid .form-section-header::after {
		content: "✅";
	}

}
