* {
	padding: 0;
	margin: 0;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: none;
	   -moz-text-size-adjust: none;
	        text-size-adjust: none;
}

body {
	min-height: 100vh;
}

img,
iframe,
audio,
video,
canvas {
	display: block;
	max-width: 100%;
	height: auto;
}

input,
button,
textarea,
select {
	font-family: inherit;
	font-size: inherit;
}

ul {
	list-style: none;
}

html {
	--content-max-width: 75rem;
	--content-side-padding: 1rem;
	--gutter: 1rem;

	/*--text-color: black;*/
	--text-color: black;
	--text-color-muted: rgba(255, 255, 255, 0.7);
	/*--bg-color: rgba(0, 0, 0, 0.8);*/
	--bg-color: white;

	--font-small: 0.7rem;
	--font-smaller: 0.55rem;

	--font-h2: 100%;
	/*--font-text: 9.8pt;*/
	--font-text: max(9pt, min(1.5vw, 12pt));
	--font-text-weight: 425;
	--font-longform: 11.5pt;
	--font-caption: 8.8pt;
	--font-header-title: 10pt;
	--font-header-title-weight: 800;
	--font-header-title-single: 8.25pt;

	/*single column*/
	/*--font-text-single: max(9.5pt, min(1.65cqi, 11.2pt));*/
	--font-text-single: 13.5pt;
	--font-caption-single: 11.5pt;

	--font-bluebox: max(22pt, min(7cqi, 150pt));
	--lineheight-bluebox: 115%;
	--padding-bluebox: max(10pt, min(4cqi, 30pt));
	--headline-bluebox: max(30pt, min(12cqi, 200pt));

	--underline: 2px;

	/* Stacking order */
	--z-index-dropdown: 1000; /* Header dropdown */
	--z-index-image: 200; /* Zoomable images */

	--header-height: 35pt;

	--dark-bgcolor: black;
	--bright-textcolor: white;

	/*	too light in small
	--lettErrorBlue: rgba(197, 219, 242, 1);
*/
	/*too dark*/
	/*--lettErrorBlue: rgba(52, 107, 166, 1);*/

	--lettErrorBlue: rgba(180, 210, 230, 1); /* 0.12 */
	--lettErrorDarkBlue: rgba(16, 19, 32, 1);
	--currentPageMark: gray;
	--lettErrorLight: white;

	--typeTesterBackground: rgba(0, 0, 0, 0.04);

	--buyButtonBackground: rgba(135, 206, 250, 0.9);
	--buyButtonHover: rgba(64, 105, 216, 1);

	--oldFontGray: rgba(206, 212, 206, 0.5);

	--limitedBlue: rgba(118, 86, 56, 1);
	--veryBaubleBlue: rgba(55, 76, 122, 1);
}

@font-face {
	font-family: "AGVF";
	src: url("/assets/font/AGVF-Upright.woff2");
	font-weight: 100-900;
	font-display: swap;
}

@font-face {
	font-family: "AGVF";
	src: url("/assets/font/AGVF-Italic.woff2");
	font-style: italic;
	font-weight: 100-900;
	font-display: swap;
}

@font-face {
	font-family: "Things";
	src: url("/assets/font/things.woff2");
	font-display: swap;
}

/* Set up the page and its grid */

body {
	font-family: "AGVF";
	background: var(--bg-color);
	color: var(--text-color);
	display: grid;
	grid-template-columns:
		[full-start] minmax(var(--content-side-padding), 1fr)
		[content-start] min(var(--content-max-width), 100% - 2 * var(--content-side-padding)) [content-end]
		minmax(var(--content-side-padding), 1fr) [full-end];
	grid-template-rows: auto 1fr auto;

	font-synthesis: none;

	/*make room for the menu*/
	margin-top: var(--header-height);
}

/* Also offset the scroll by the header height plus one line height */

html {
	scroll-padding-top: calc(var(--header-height) + 1lh);
}

body > * {
	grid-column: content;
}

body > main {
	grid-column: full;
	grid-row: 2;
	display: grid;
	grid-template-columns: subgrid;
	row-gap: var(--gutter);
	align-content: start;
}

:is(body > main)  > * {
		grid-column: content;
	}

body > header,
body > footer {
	grid-column: 1 / -1;
	background: rgba(1, 1, 10, 1);
	color: white;
}

:is(body > header,body > footer) img {
		width: 2.5rem;
	}

/* Special hover colors for text links */

:is(body > header,body > footer) a:not(:has(img)):hover {
		color: skyblue;
		-webkit-text-decoration: underline dotted rgba(255, 255, 255, 0.6);
		        text-decoration: underline dotted rgba(255, 255, 255, 0.6);
		text-decoration-thickness: var(--underline);
		background-color: inherit;
	}

/* Allow images to scale beyond their intrinsic size */

main img {
	width: 100%;
}

body > header {
	grid-column: full;
	grid-row: 1;
	padding: 0 var(--content-side-padding);
	height: var(--header-height);
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 10;
	display: flex;
	align-items: center;
}

:is(body > header) nav {
		display: flex;
		align-items: center;
		min-height: var(--cart_icon_size, 26px);
		width: 100%;
	}

:is(:is(body > header) nav)  > * {
			flex: 1;
		}

:is(:is(body > header) nav)  > :last-child {
			text-align: right;
		}

:is(:is(body > header) ul) a {
			text-decoration: none;
			border: none;
		}

:is(:is(body > header) ul) li {
			font-weight: 820;
			font-size: 9pt;
			line-height: 150%;
			padding-bottom: 2pt;
		}

/* At this width, a center aligned middle menu item looks better */

@media (max-width: 520px) {
	body > header nav > :nth-child(2) {
		text-align: center;
	}
}

body > footer {
	padding: var(--content-side-padding);
	grid-row: 3;
	grid-column: full;
	display: grid;
	grid-template-columns: subgrid;
}

.footer-inner {
	grid-column: content;
	line-height: 1.8;
	font-size: var(--font-small);
	color: white;
}

.footer-inner .logo-column {
		display: grid;
		grid-template-columns: auto 1fr;
		gap: var(--gutter);
	}

.footer-inner a {
		text-decoration: none;
		width: -moz-fit-content;
		width: fit-content;
	}

.footer-inner .footer-column {
		display: flex;
		flex-direction: column;
	}

.footer-inner p {
		font-size: var(--font-smaller);
		color: var(--text-color-muted);
		max-width: 10rem;
		margin-top: 1rem;
	}

.footer-inner .pad {
		margin-bottom: 1em;
		margin-top: 1em;
	}

/* Generic styles */

/* Note: keep the footnotes link styles in sync (see footnotes.css) */

a:not([role="doc-noteref"]) {
	color: inherit;
	-webkit-text-decoration: underline dotted #eee;
	        text-decoration: underline dotted #eee;
	/*text-decoration-thickness: var(--underline);*/
	/*text-underline-offset: 3px;*/
}

a:not([role="doc-noteref"]):hover {
	color: skyblue;
	/*text-decoration: underline dotted white;*/
	/*text-decoration-thickness: var(--underline);*/
}

strong {
	font-weight: 750;
}

/* Arrow links (or labels, or whatever really). Adds a nbsp for spacing. */

.arrow-left::before {
	content: "←\a0";
}

.arrow-right::before {
	content: "→\a0";
}

.arrow-up::before {
	content: "↑\a0";
}

.arrow-down::before {
	content: "↓\a0";
}

.arrow-right-down::before,
.arrow-down-right::before {
	content: "↘︎\a0";
}

.arrow-left-down::before,
.arrow-down-left::before {
	content: "↙︎\a0";
}

.arrow-right-up::before,
.arrow-up-right::before {
	content: "↗︎\a0";
}

.arrow-left-up::before,
.arrow-up-left::before {
	content: "↖︎\a0";
}

/* Arrow bullets for lists (class on the `ul`!) */

ul.arrow-left,
ul.arrow-right,
ul.arrow-up,
ul.arrow-down,
ul.arrow-right-down,
ul.arrow-down-right,
ul.arrow-left-down,
ul.arrow-down-left,
ul.arrow-right-up,
ul.arrow-up-right,
ul.arrow-left-up,
ul.arrow-up-left {
	padding-inline-start: 1.5em;
}

:is(ul.arrow-left,ul.arrow-right,ul.arrow-up,ul.arrow-down,ul.arrow-right-down,ul.arrow-down-right,ul.arrow-left-down,ul.arrow-down-left,ul.arrow-right-up,ul.arrow-up-right,ul.arrow-left-up,ul.arrow-up-left)::before {
		content: none;
	}

ul.arrow-left {
	list-style-type: "←\a0";
}

ul.arrow-right {
	list-style-type: "→\a0";
}

ul.arrow-up {
	list-style-type: "↑\a0";
}

ul.arrow-down {
	list-style-type: "↓\a0";
}

ul.arrow-right-down,
ul.arrow-down-right {
	list-style-type: "↘︎\a0";
}

ul.arrow-left-down,
ul.arrow-down-left {
	list-style-type: "↙︎\a0";
}

ul.arrow-right-up,
ul.arrow-up-right {
	list-style-type: "↗︎\a0";
}

ul.arrow-left-up,
ul.arrow-up-left {
	list-style-type: "↖︎\a0";
}

/* Zoomable images */

.zoomable {
	cursor: zoom-in;
}

.lightbox {
	position: fixed;
	inset: 0;
	background: rgba(30, 30, 30, 1);
	display: grid;
	place-items: center;
	z-index: var(--z-index-image);
	cursor: zoom-out;
	padding: 1rem;
}

.lightbox img {
	width: calc(100vw - 2rem);
	height: calc(100vh - 2rem);
	-o-object-fit: contain;
	   object-fit: contain;
}

/* Typefaces dropdown */

.dropdown {
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: rgba(40, 40, 40, 0.95);
	padding: 0;
	padding-bottom: 1rem;
	min-width: 14rem;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-0.5rem);
	transition:
		opacity 0.15s,
		transform 0.15s,
		visibility 0.15s;
	z-index: var(--z-index-dropdown);
	display: flex;
	flex-direction: column;
	text-align: left;
}

.dropdown-menu a {
		display: block;
		white-space: nowrap;
		padding: 0.2rem 1.25rem;
		text-decoration: none;
	}

.dropdown-menu li {
		font-weight: 500;
		font-size: 11pt;
	}

.dropdown-menu .separator {
		/*border-top: 1px dotted skyblue;*/
		padding-top: 1rem;
	}

.dropdown-menu .indent {
		margin-left: 1.5rem;
	}

.dropdown-all {
	/*border-top: 1px solid rgba(255, 255, 255, 0.3);*/
	margin-top: 0.5rem;
	padding-top: 0.5rem;
}

/* Only use hover on devices that truly support it (not touch) */

@media (hover: hover) {
	.dropdown:hover .dropdown-menu {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	/* Prevent dropdown from going outside the viewport */
	.dropdown-menu {
		max-height: calc(100dvh - var(--header-height));
		overflow-y: auto;
	}
}

/* JS-controlled open state works on all devices */

.dropdown.open .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* Fullscreen mobile dropdown */

@media (max-width: 520px) {
	.dropdown-menu {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		min-width: 100%;
		max-height: 100vh;
		overflow-y: auto;
		overscroll-behavior: contain;
		padding: var(--content-side-padding);
		background: none;
	}

		.dropdown-menu a {
			display: inline-block;
		}

	/**
	 * Faux background so we can expand beyond the element
	 * and take care of "elastic scroll" bouncing
	 */
	.dropdown-menu::before {
		content: "";
		position: fixed;
		inset: -100vh -100vw;
		background: rgba(40, 40, 40, 0.95);
		z-index: -1;
	}

	.dropdown.open .dropdown-menu {
		transform: none;
	}

	.dropdown-close {
		position: fixed;
		top: 0;
		right: 0;
	}

		.dropdown-close button {
			background: none;
			border: none;
			color: white;
			font-size: 2rem;
			line-height: 1;
			padding: var(--content-side-padding);
			cursor: pointer;
		}
}

/* Hide close button on desktop */

@media (min-width: 521px) {
	.dropdown-close {
		display: none;
	}
}

.footer-column a {
	border: none;
	text-decoration: none;
}

.columns {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: var(--gutter);
}

.columns  > * {
		grid-column: 1 / -1;

		/* First element inside a new column shouldn't get top margin */
	}

:is(.columns > *)  > *:first-child {
			margin-top: 0;
		}

.half {
	grid-column: span 6;
}

.third {
	grid-column: span 4;
}

.two-thirds {
	grid-column: span 8;
}

.sixth {
	grid-column: span 2;
}

.quarter {
	grid-column: span 3;
}

.three-quarters {
	grid-column: span 9;
}

.full-bleed {
	grid-column: full;
}

@media (max-width: 768px) {
	.half,
	.third,
	.two-thirds,
	.quarter,
	.sixth,
	.three-quarters {
		grid-column: 1 / -1;
	}
}

.limitedgrotesque .dunbarhay {
		background-color: gray;
		color: yellow;
		padding: 5pt;
		margin-top: 10pt;
		margin-bottom: 10pt;
		font-size: 20pt;
		font-weight: 500;
	}

.case_hbo {
	background-color: black;
	color: var(--lettErrorBlue);
}

.p104 {
	background-color: red;
	color: var(--bright-textcolor);
}

.postmono {
	background-color: var(--lettErrorBlue);
	font-size: 6.25cqi;
	line-height: 120%;
	padding-top: 1.5rem;
	padding-bottom: 3rem;
	padding-left: 2rem;
	padding-right: 0.5rem;
	color: var(--bright-textcolor);
}

.dev,
.newsltr {
	background-color: rgb(34, 34, 34);
	color: rgba(210, 240, 255, 1);
}

.archive_emigre,
.archive_contracts,
.archive_toolspace {
	background-color: rgb(34, 34, 34);
	color: white;
}

:is(.archive_emigre,.archive_contracts,.archive_toolspace) .caption {
		font-weight: 200;
		color: var(--lettErrorBlue);
	}

:is(.archive_emigre,.archive_contracts,.archive_toolspace) strong {
		font-weight: 800;
	}

:is(.archive_emigre,.archive_contracts,.archive_toolspace) .footnotes__title,:is(.archive_emigre,.archive_contracts,.archive_toolspace) .footnotes__list-item {
		color: var(--lettErrorBlue);
	}

.product_verybauble {
	background-color: var(--oldFontGray);
}

.product_verybauble .type-tester__text__font-style {
		color: var(--veryBaubleBlue);
	}

.product_eames,
.product_principia,
.product_limitedgrotesque {
	background-color: var(--oldFontGray);
}

:is(.product_eames,.product_principia,.product_limitedgrotesque) .type-tester__text__font-style {
		color: gray;
	}

.product_federal,
.product_federal_optical,
.product_federal_reserve,
.product_federal_bureau,
.product_federal_guide,
.product_slabextended {
	background-color: var(--oldFontGray);
	color: black;
}

:is(.product_federal,.product_federal_optical,.product_federal_reserve,.product_federal_bureau,.product_federal_guide,.product_slabextended) .type-tester__text__font-style {
		color: #333;
	}

.research_typecooker {
	background-color: var(--lettErrorBlue);
	color: black;
}

.research_optics,
.tools_superpolator {
	background-color: black;
	color: white;
}

.ncnd,
.product_ncnd_classic,
.product_ncnd,
.product_ncnd_rough,
.product_ncnd_guide,
.product_beowolf,
.product_beosans,
.kosmik {
	background-color: var(--oldFontGray);
}

.xfiles,
.product_trixie,
.scrollerFonts,
.scrollerEverything {
	background-color: black;
	color: white;
}

/*all the actions*/

.home,
.collection,
.scrollerPoster,
.articles,
.product_actiongrotesque,
.product_actioncondensed,
.product_actiontext {
	background-color: var(--lettErrorDarkBlue);
	color: white;
}

.about,
.privacy,
.aftermonotype,
.product_releases,
.product_licenses,
.custom,
.logo,
.scroller_debug {
	background-color: var(--lettErrorBlue);
}

/*	er zal een betere plek zijn voor veel van deze entries
maar ik wil niet in de weg zitten met deze dingen.
*/

.hyphenate {
	hyphens: auto;
	hyphenate-limit-chars: 6 3 2;
	-webkit-hyphenate-limit-lines: 2;
	hyphenate-limit-lines: 2;
}

.nohyphens {
	hyphens: none;
}

h1 {
	font-weight: 750;
	font-size: var(--font-text);
	line-height: 18pt;
	margin-bottom: 9pt;
	margin-top: 0pt;
}

h2,
#footnotes-label {
	font-weight: 825;
	line-height: 150%;
	font-size: var(--font-text);
	margin-top: 8pt;
	margin-bottom: 3pt;
}

.intro {
	font-size: max(1.9cqi, 15pt);
	line-height: 140%;
	font-weight: 150;
	margin-right: 1.5em;
}

.pricing {
	font-size: 10pt;
	line-height: 160%;
}

.text {
	font-size: var(--font-text);
	font-weight: var(--font-text-weight);
	line-height: 160%;
	max-width: 40em;
	margin-bottom: 5pt;
}

.text_small {
	font-size: var(--font-small);
	line-height: 140%;
}

.text_smaller {
	font-size: var(--font-smaller);
	line-height: 140%;
}

.longform {
	font-size: var(--font-longform);
	font-weight: var(--font-text-weight);
	line-height: 165%;
	max-width: 40em;
	margin-bottom: 6pt;
}

.pullout {
	font-size: var(--font-text);
	line-height: 150%;
	font-weight: 200;
	max-width: 25em;
	margin-left: 20pt;
	margin-top: 10pt;
	margin-bottom: 10pt;
	hanging-punctuation: first;
	font-style: italic;
}

.caption {
	font-size: var(--font-caption);
	line-height: 155%;
	margin-bottom: 15pt;
	margin-left: 1pt;
	margin-top: 5pt;
	font-weight: 475;
	max-width: 24em;
}

.captionPad {
	/*if you want to fit a text under an image, it needs some space*/
	margin-top: 5pt;
}

.iconPad {
	/*if you want to fit a text under an image, it needs some space*/
	paddinf-top: 10pt;
}

.customProjectTitle {
	font-size: var(--font-caption);
	margin-bottom: 5pt;
	margin-top: 10pt;
	margin-left: 3pt;
	font-weight: 725;
}

.customProjectCaption {
	font-size: var(--font-caption);
	line-height: 150%;
	margin-bottom: 20pt;
	margin-top: 5pt;
	margin-left: 3pt;
	font-weight: 375;
	max-width: 18rem;
}

.text strong {
	font-weight: 700;
}

.caption b {
	font-weight: 800;
}

.intro b {
	font-weight: 800;
}

.fit {
	-o-object-fit: contain;
	   object-fit: contain;
}

.panelCaptionTitle {
	font-weight: 700;
	font-size: var(--font-text);
	line-height: 12pt;
	margin-top: 5pt;
	max-width: 20em;
}

.panelCaptionTitle a {
	text-decoration: none;
}

.panelCaptionText {
	font-weight: 450;
	font-size: var(--font-caption);
	line-height: 150%;
	max-width: 20em;
	margin-top: 0.7em;
	margin-bottom: 1em;
}

/*attempt to change fontdue styling*/

.buy-button {
	font-size: 18pt;
	font-weight: 550;
	padding: 15pt;
	color: white;
	background-color: var(--buyButtonBackground);
	text-align: left;
	vertical-align: top;
	width: 100%;
	border: none;
	text-decoration: none;
	display: block;
	border-bottom: none;
}

.buy-button:hover {
	font-weight: 600;
	color: white;
	background-color: var(--buyButtonHover);
	border: none;
}

.type-tester__toolbar {
	font-size: 9pt;
	font-weight: 500;
}

.select-button {
	font-size: 10pt;
	font-weight: 600;
}

.type-tester__features {
	font-size: 10pt;
	font-weight: 300;
}

.type-tester__text__font-style {
	color: #333;
}

.type-tester {
	background-color: var(--typeTesterBackground);
	padding: 10pt;
	font-size: 9pt;
	font-weight: 260;
	color: black;
	margin-bottom: 0;
}

.type-tester-select {
	font-weight: 700;
}

.character-viewer__monitor__details {
	font-size: 9pt;
	font-weight: 700;
	line-height: 170%;
}

.character-viewer__block__name {
	font-size: 13pt;
	font-weight: 600;
	line-height: 160%;
	margin-bottom: 10pt;
	margin-top: 20pt;
}

.store-modal__page__body {
	font-weight: 600;
	font-size: 10pt;
}

.store-modal__license-selection__title {
	font-family: "AGVF";
	font-weight: 600;
	font-size: 10pt;
}

.store-modal__family-button__container {
	font-family: "AGVF";
	font-weight: 400;
	font-size: 9pt;
}

.store-modal__product-summary__selection-text {
	font-family: "AGVF";
	font-weight: 800;
	font-size: 10pt;
}

.releasenote {
	padding-bottom: 20pt;
}

.padBottom {
	/*some pages need more space at the bottom*/
	padding-bottom: 30pt;
}

.padTop {
	/*some pages need more space at the top*/
	padding-top: 30pt;
}

.collectionImage {
	vertical-align: bottom;
	-o-object-fit: cover;
	   object-fit: cover;
}

.lined {
	border-top: 1px gray dotted;
}

.pricingBox {
	font-size: 8pt;
	line-height: 150%;
	color: gray;
	padding-bottom: 10pt;
	padding-top: 15pt;
	width: 100%;
	vertical-align: top;
}

.pricingBox td {
	padding-right: 4pt;
	border-top: dotted rgba(0, 0, 0, 0.3) 1px;
	vertical-align: top;
	text-align: left;
	padding-bottom: 7pt;
	padding-top: 2pt;
}

.pricingBox th {
	padding: 0;
	font-weight: normal;
	text-align: left;
	vertical-align: top;
	font-weight: 800;
	font-size: 9pt;
	padding-bottom: 4pt;
}

.pricingCaption {
	text-align: left;
	font-size: 8pt;
	line-height: 140%;
	font-weight: 475;
	padding-bottom: 7pt;
}

.black {
	color: black;
}

/*articles*/

/*novelty size number*/

.articleContractsNumber {
	font-size: 80pt;
	line-height: 120%;
	font-weight: 100;
	color: gray;
}

/*about fontfont table*/

.fontfont {
	font-size: 10pt;
	line-height: 150%;
}

.fontfont b {
	font-weight: 800;
}

.fontfont h2 {
	font-size: 9pt;
	font-weight: 800;
	line-height: 150%;
}

.fontfont td {
	width: 33%;
	margin-left: 5pt;
	margin-top: 10pt;
	padding: 5pt 5pt 0 0;
	vertical-align: top;
	border-top: gray dotted 1px;
}

.fontfont th {
	font-size: 10pt;
	line-height: 130%;
	font-weight: 800;
	margin-bottom: 10pt;
	padding: 5pt 5pt 10pt 0;
	text-align: left;
	vertical-align: top;
}

.fontfont td p {
	max-width: 30rem;
	padding-right: 40pt;
}

.fontfont tr td:nth-child(1) {
	color: #333;
}

/*opentype features table*/

.opentypeFeatures {
	font-size: 9pt;
	text-align: left;
	width: 100%;
}

.opentypeFeatures th {
	font-weight: 800;
}

.opentypeFeatures td {
	border-top: gray dotted 1px;
	padding: 0.2em;
}

.opentypeFeatures tr td:nth-child(2) {
	font-weight: 700;
}

/*hero headline thing*/

.heroHeadline {
	font-weight: 850;
	font-size: 6cqi;
	line-height: 100%;
	padding-top: 2rem;
	padding-left: 5pt;
	padding-bottom: 1.5rem;
	font-feature-settings: "ss05" 1;
}

.bigTypeContainer {
	/*establish the container*/
	/*background: var(--dark-bgcolor);*/
	/*color: var(--bright-textcolor);*/
	background-color: var(--lettErrorBlue);
	color: var(--lettErrorLight);
	font-feature-settings:
		"ss05" 1,
		"ss01" 1;
}

.bigTypeContainer h1 {
	font-weight: 350;
	font-size: var(--headline-bluebox);
	text-decoration: none;
	border-bottom: none;
	padding: var(--padding-bluebox);
	line-height: var(--lineheight-bluebox);
}

.bigTypeContainer h1 a {
	/*border-bottom: dotted 0.4rem var(--bright-textcolor);*/
	text-decoration: none;
}

.bigTypeContainer a.hover {
	/*border-bottom: dotted 0.4rem skyblue;*/
	text-decoration: none;
}

.bigTypeContainer strong {
	font-weight: 850;
}

.bigTypeContainer p {
	/*for text that looks like a caption, but it full page, full width*/
	font-size: var(--font-bluebox);
	line-height: var(--lineheight-bluebox);
	font-weight: 400;
	padding: var(--padding-bluebox);
}

.full-bleed .caption {
	margin-left: 10pt;
}

.seeAlsoBlock {
	padding-top: 10pt;
	padding-bottom: 10pt;
}

.seeAlsoBlock li {
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
}

.licenseTitle {
	margin-top: 50pt;
	padding-top: 20pt;
	font-size: 30pt;
	line-height: 130%;
	font-weight: 800;
}

.licenseList li {
	font-weight: 500;
	font-size: 9pt;
	margin-top: 5pt;
	margin-bottom: 5pt;
	margin-left: 0pt;
	list-style-type: disc;
}

.dropdown-trigger {
	display: block;
	font-size: var(--font-header-title);
	line-height: 120%;
	font-weight: var(--font-header-title-weight);
	text-decoration: none !important;
	border-bottom: none;
	letter-spacing: 0.5px;
	color: lightblue;
}

.dropdown-trigger:hover {
	color: rgba(255, 255, 255, 0.9);
}

.cart-button.cart-button {
	/*attempt to make the fontdue cart-button look more like the menu links*/
	display: block;
	font-size: var(--font-header-title);
	line-height: 120%;
	font-weight: var(--font-header-title-weight);
	text-decoration: none;
	border-bottom: none;
	letter-spacing: 0.5px;
	background-color: black;
	text-transform: uppercase;
}

.things {
	font-family: "Things";
	font-size: 25cqi;
	line-height: 100%;
}

.nodots {
	border: none;
}

.dropdown-title {
	/*this is for the title lines in the dropdown menu*/
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 10pt;
	color: #ddd;
	padding: 0.2rem 1.15rem;
}

.hide {
	opacity: 0.1;
}

.bookBox {
	border: solid gray 1px;
	padding: 5pt;
	background-color: rgba(244, 250, 240, 0.8);
}

.AG_thin {
	font-weight: 100;
}

.AG_light {
	font-weight: 250;
}

.AG_regular {
	font-weight: 400;
}

.AG_regular2 {
	font-weight: 475;
}

.AG_medium {
	font-weight: 550;
}

.AG_Bold {
	font-weight: 700;
}

.AG_Heavy {
	font-weight: 800;
}

.AG_ExtraBold {
	font-weight: 900;
}

/*background for poster images*/

.fill {
	background-color: rgba(255, 255, 255, 0.5);
}

.scrollme {
	display: block;
}

.doNotShowDebug {
	color: white;
}

.tuckIn {
	margin-bottom: -20pt;
}

.ticketShadow {
	filter: drop-shadow(0px 5px 7px gray);
}

.dropdown-currentPageIndicator {
	background-color: var(--currentPageMark);
	color: black;
	font-weight: 700;
}

.markNew {
	color: var(--lettErrorBlue);
	font-weight: 800;
}

/*adjustments for single column*/

@media (max-width: 768px) {
	.text {
		/*color: red;*/
		font-size: var(--font-text-single);
	}
	.caption {
		/*color: red;*/
		font-size: var(--font-caption-single);
		max-width: 80%;
	}
	h1,
	h2 {
		font-size: var(--font-text-single);
	}

	.pricingBox {
		font-size: var(--font-caption-single);
	}
	.pricingBox th {
		font-size: var(--font-caption-single);
	}
	.pricingCaption {
		font-size: var(--font-caption-single);
	}

	.footer-inner.columns {
		font-size: var(--font-caption-single);
	}

	/*header titles at single column*/
	.dropdown-trigger {
		font-size: var(--font-header-title-single);
	}

	.cart-button.cart-button {
		font-size: var(--font-header-title-single);
	}

	.ag-planYourVisit {
		color: var(--lettErrorBlue);
		font-size: 20pt;
	}

	.ag-noveltyNavigation {
		font-size: 10pt;
		padding: 10pt;
	}
}

.scrollerPosterCaption {
	background-color: red;
	padding: 1em;
	color: white;
	z-index: 2000;
	transform: translate(0, 10pt);
}

.scrollerCaption {
	margin-top: 5pt;
	max-width: 30em;
}

.scrollSpace {
	margin-top: 20pt;
}

.panel-hover {
	transition: transform 0.15s ease;
}

.panel-hover:hover {
	transform: scale(1.015) translate(0, 0pt);
}

.logo-hover {
	transition: transform 0.3s ease;
}

.logo-hover:hover {
	transform: rotate(0.5turn) scale(0.65);
}

.scrollerArrow {
	vertical-align: top;
	padding-right: 5pt;
}

.ag-planYourVisit {
	color: var(--lettErrorBlue);
	font-size: 10pt;
}

.fontSpecBox {
	/*called by fs macro, indicates fontsize and weight*/
	font-weight: 150;
	font-size: 5pt;
	color: rgba(255, 255, 255, 0.8);
	padding: none;
	margin: none;
	transition: transform 0.3s ease;
	transform-origin: 10pt;
	transform: translate(0pt, -10pt);
}

.fontSpecPad {
	padding-top: 30pt;
}

.fontSpecBox:hover {
	/*called by fs macro, indicates fontsize and weight*/
	font-weight: 300;
	color: rgba(255, 240, 0, 0.9);
	transform: translate(0, -12pt) scale(1.75) rotate(-2deg);
}

/**
 * 1. Initialiazing a `footnotes` counter on the content wrapper.
 *    `body` can be used if there is only one such wrapper per page
 *    otherwise something more specific should be used.
 *
 * @note: feel free to come up with a better selector for your case
 */

body {
	counter-reset: footnotes;
}

/* Style the list of footnotes. */

.footnotes__list {
	line-height: 150%;
	list-style-type: decimal;
	font-weight: 450;
	max-width: 20rem;
	font-size: var(--font-caption);
	margin-bottom: 20pt;
	margin-left: 10pt;
	margin-right: 10pt;
	margin-top: 10pt;
}

/**
 * 1. Highlight the targeted footnote
 *
 * @note: feel free to come up with a better selector for your case
 */

li:has([role="doc-backlink"]):target {
	/* background-color: #ffa; */
}

/**
 * Inline footnotes references
 * 1. Increment the counter at each new reference
 * 2. Reset link styles to make it appear like regular text
 */

[role="doc-noteref"] {
	counter-increment: footnotes;
	text-decoration: none;
	color: inherit;
	outline: none;
}

/**
 * Actual numbered references
 */

[role="doc-noteref"]::after {
	content: counter(footnotes);
	font-feature-settings:
		"sups" 1,
		"ss05" 1;
	font-variant-position: super;
	padding: 0 1px;
	cursor: pointer;
	border-bottom: dotted 1px #eee;
}

[role="doc-noteref"]:hover::after {
	color: skyblue;
	border-bottom: dotted 1px rgba(255, 255, 255, 0.6);
	text-decoration: none;
}

/**
 * 1. Reseting the default focused styles on the number
 */

[role="doc-noteref"]:focus::after {
	outline: thin dotted;
	outline-offset: var(--underline);
}
