@import url('./fonts/font-face.css');

html {
	font-size: 3.72vmin;
	font-weight: 400;
	--colour-solar: #FFA000;
	--colour-twilight: #1E344D;
	--colour-midnight: #010E19;
	--colour-2am: #031C30;
	--colour-3am: #0A2943;

	/* Safe area fallbacks for older browsers */
	--safe-area-inset-top: 0px;
	--safe-area-inset-bottom: 0px;
	--safe-area-inset-left: 0px;
	--safe-area-inset-right: 0px;

	/* Update with actual safe area values when supported */
	--safe-area-inset-top: env(safe-area-inset-top, 0px);
	--safe-area-inset-bottom: env(safe-area-inset-bottom, 0px);
	--safe-area-inset-left: env(safe-area-inset-left, 0px);
	--safe-area-inset-right: env(safe-area-inset-right, 0px);
}

html.is-desktop {
	font-size: 3.4vmin;
}

* {
	box-sizing: border-box;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

html,
body {
	margin: 0;
	padding: 0;
	overflow: hidden;
	width: 100vw;
	height: 100vh;
	height: 100dvh;
	/* Use dynamic viewport height when supported */
	touch-action: none;
	overscroll-behavior: none;
}

.is-mobile .only-desktop {
	display: none !important;
}

.is-desktop .only-mobile {
	display: none !important;
}

.is-landscape .only-portrait {
	display: none !important;
}

.is-portrait .only-landscape {
	display: none !important;
}

body {
	background: radial-gradient(circle, var(--colour-midnight), black);
	/* background-color: cornflowerblue; */
	font-family: 'Audible Sans', 'Helvetica Neue', Arial, sans-serif;
	width: 100vw;
	height: 100vh;
	height: 100dvh;
	/* Use dynamic viewport height when supported */
	position: fixed;
	top: 0;
	left: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
	padding: 0;
}

h1 {
	font-size: 2.25rem;
}

h2 {
	font-size: 2rem;
}

h3 {
	font-size: 1.5rem;
	font-weight: 700;
	color: white;
}

.small-text {
	font-size: 0.75rem;
}

.container {
	width: 100vw;
	height: 100vh;
	height: 100dvh;
	/* Use dynamic viewport height when supported */
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.view,
.subview {
	width: 100vw;
	height: 100vh;
	height: 100dvh;
	/* Use dynamic viewport height when supported */
	flex-direction: column;
	justify-content: center;
	align-items: center;
	display: none;
	position: absolute;
}

.view.__visible,
.subview.__visible {
	display: flex;

}

/* icon shortcodes */

span.icon {
	width: 1.25em;
	height: 1.25em;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	display: inline-block;
	vertical-align: baseline;
	margin-bottom: -0.25rem;

}

span.icon_question {
	background-image: url(img/icon-help.png);
}

span.icon_rightChevron {
	background-image: url(img/icon-arrow-right.png);
}

span.icon_reposition {
	background-image: url(img/icon-centralized.png);
}

span.icon_headphones {
	background-image: url(img/icon-headphones.png);
}

span.icon_speaker {
	background-image: url(img/icon-volume-high.png);
}

span.icon_close {
	background-image: url(img/icon-close.png);
}

span.icon_leftChevron {
	background-image: url(img/icon-arrow-right.png);
	transform: scaleX(-1);
	/* Flip the right arrow to make it a left arrow */
	margin-right: 0.25rem;
}

/* buttons */

.button {
	height: 2.75rem;
	background: var(--colour-twilight);
	border-radius: 1.5rem;
	justify-content: center;
	align-items: center;
	color: white;
	font-size: 1rem;
	font-weight: bold;
	user-select: none;
	cursor: pointer;
	display: inline-block;
	line-height: 2.7rem;
	padding: 0.05rem 1.375rem 0;
	pointer-events: all;
}

.button._solar {
	background: var(--colour-solar);
	color: var(--colour-midnight);
}

.button._midnight {
	background: var(--colour-midnight);
	color: white;
}

.button._phantom {
	background: transparent;
	color: white;
	border: none;
	box-shadow: none;
	text-decoration: underline;
}

.button._round {
	border-radius: 2.75rem;
	width: 2.75rem;
	padding: 0;
	text-align: center;
}

.button._round._small {
	height: 2.25rem;
	width: 2.25rem;
	line-height: 2.25rem;
	padding: 0;
}

.button._large {
	height: 3.25rem;
	font-size: 1.125rem;
	line-height: 3.225rem;
	border-radius: 2rem;
}

.button._small {
	height: 2.25rem;
	font-size: 0.875rem;
	line-height: 2.235rem;
	padding: 0.015rem 1rem 0;
}

.button._outline {
	background: transparent;
	border: 2px solid var(--colour-twilight);
	box-sizing: content-box;
}

.button.__disabled {
	opacity: 0.5;
	pointer-events: none;
}

.button.__visible {
	display: inline-block !important;
}


/* AR Marker Tray */

#MarkerTray {
	position: absolute;
	bottom: 0;
	bottom: env(safe-area-inset-bottom);
	/* Respect iOS safe area */
	left: 0;
	width: 100vw;
	height: 13.5rem;
	display: flex;
	gap: 0.75rem;
	padding: 2rem 1rem;
	padding-bottom: calc(2rem + env(safe-area-inset-bottom));
	/* Add safe area padding */
	box-sizing: border-box;
	transition: bottom 0.8s ease;
}

#MarkerTray.__initial {
	bottom: -10rem;
	bottom: calc(-10rem + env(safe-area-inset-bottom));
}

#MarkerTray ._traybase {
	position: absolute;
	top: 66%;
	left: -0.5rem;
	right: -0.5rem;
	height: 100%;
	background: linear-gradient(to top, var(--colour-midnight) 66%, var(--colour-2am) 100%);
	box-shadow: 0 0 1rem #00000044;
	border-radius: 2rem;
}

#Marker-har ._shadow {
	background-image: url(img/har-ghost.png);
}

#Marker-har ._icon {
	background-image: url(img/har.png);
}

#Marker-vol ._shadow {
	background-image: url(img/vol-ghost.png);
}

#Marker-vol ._icon {
	background-image: url(img/vol.png);
}

#Marker-nar ._shadow {
	background-image: url(img/nar-ghost.png);
}

#Marker-nar ._icon {
	background-image: url(img/nar.png);
}

#Marker-sna ._shadow {
	background-image: url(img/sna-ghost.png);
}

#Marker-sna ._icon {
	background-image: url(img/sna.png);
}

#Marker-dum ._shadow {
	background-image: url(img/dum-ghost.png);
}

#Marker-dum ._icon {
	background-image: url(img/dum.png);
}

.marker {
	position: relative;
	display: inline-block;
	flex: 1;
	height: 10rem;
	margin: 0;
}

.marker>div {
	pointer-events: none;
}

.marker ._shadow,
.marker ._icon {
	position: absolute;
	left: 0;
	height: 100%;
	right: 0;
	bottom: 0;
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: 50% 100%;
}

.marker.__50percent ._icon {
	height: 50%;
}

.marker ._audio {
	position: absolute;
	top: 0;
	left: 0.5rem;
	right: 0.5rem;
	height: 1rem;
	background-image: url(img/audio-wave.gif);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	display: none;
}

.marker ._tick {
	position: absolute;
	top: 1.25rem;
	right: -0.5rem;
	width: 1.5rem;
	height: 1.5rem;
	background-image: url(img/icon-tick2.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	display: none;
}

.marker.__0percent ._icon {
	height: 0;
}

.marker.__playing ._audio {
	display: block;
}

.marker.__completed ._tick {
	display: block;
}

#AttractArrows {
	position: absolute;
	bottom: 12rem;
	bottom: calc(12rem + env(safe-area-inset-bottom));
	/* Account for safe area */
	left: 0;
	width: 100vw;
	height: 3.5rem;
	background-image: url(img/attract-arrows.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	pointer-events: none;
	animation: bounce 1s infinite;
	display: none;
}

#AttractArrows.__visible {
	display: block !important;
}

/* vertical bounce animation for attract arrows */
@keyframes bounce {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-0.5rem);
	}
}


/* AR Topbar */

#TopBar {
	position: absolute;
	top: 0;
	top: env(safe-area-inset-top);
	/* Respect iOS safe area */
	left: 0;
	width: 100vw;
	padding-top: env(safe-area-inset-top);
	/* Add safe area padding */
}

#Button_Help {
	position: absolute;
	top: 0.75rem;
	top: calc(0.75rem + env(safe-area-inset-top));
	/* Account for safe area */
	left: 0.75rem;
}

#Button_Reposition {
	position: absolute;
	top: 0.75rem;
	top: calc(0.75rem + env(safe-area-inset-top));
	/* Account for safe area */
	left: 4.5rem;
	display: none;
}

#Button_Reposition.__visible {
	display: block !important;
}

#Button_Reposition>span.icon {
	margin-left: -0.25rem;
	margin-right: 0.5rem;
}

#Button_UnlockChapter {
	position: absolute;
	top: 0.75rem;
	top: calc(0.75rem + env(safe-area-inset-top));
	/* Account for safe area */
	right: 0.75rem;
}

#Button_Skip {
	position: absolute;
	top: 4.25rem;
	top: calc(4.25rem + env(safe-area-inset-top));
	/* Account for safe area */
	right: 0.75rem;
	display: none;
}

.cta {
	position: absolute;
	top: 6rem;
	top: calc(6rem + env(safe-area-inset-top));
	/* Account for safe area */
	left: 2.75rem;
	right: 2.75rem;
	height: 4rem;
	background: linear-gradient(to right, var(--colour-midnight), var(--colour-2am));
	text-align: left;
	color: white;
	font-size: 1rem;
	line-height: 1.2rem;
	user-select: none;
	padding: 0.75rem 0.75rem 0.75rem 6.75rem;
	border-radius: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	display: none;
}

.cta ._icon {
	position: absolute;
	top: -1rem;
	left: 1rem;
	width: 8rem;
	height: 7rem;
	background-image: url(img/instructions-icon-2.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: 0 0;
}

.cta.__visible {
	display: flex !important;
}

#CTA_TapToSelect {
	left: 4rem;
	right: 4rem;
	padding-left: 3rem;
}

#CTA_TapToSelect ._icon {
	background-image: url(img/instructions-icon-1.png);
}

#CTA_PointAtNewspaper {
	left: 6rem;
	right: 6rem;
	padding-left: 3rem;
}

#CTA_PointAtNewspaper ._icon {
	background-image: url(img/instructions-icon-0.png);
}

/* overlays */

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	height: 100dvh;
	/* Use dynamic viewport height when supported */
	display: none;
	justify-content: center;
	align-items: center;
	color: white;
	text-align: center;
	padding: 2rem;
	padding-top: calc(2rem + env(safe-area-inset-top));
	/* Add safe area padding */
	padding-bottom: calc(2rem + env(safe-area-inset-bottom));
	/* Add safe area padding */
	box-sizing: border-box;
	backdrop-filter: blur(0.5rem);
	pointer-events: none;
}

.overlay ._content {
	max-width: 30rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.75rem;
	background: radial-gradient(circle, var(--colour-midnight), black);
	padding: 2rem;
	border-radius: 1rem;
}

.overlay.__visible {
	display: flex !important;
	/* pointer-events: all; */
}

#UnlockOverlay ._img {
	width: 100%;
	height: 14rem;
	background-image: url(img/icon-key.png);
	background-size: auto 85%;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	display: block;
}

#HelpOverlay ._img {
	width: 100%;
	height: 14rem;
	background-image: url(img/artwork-help.png);
	background-size: auto 85%;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	display: block;
}

#ARFrame {
	width: 100vw;
	height: 100vh;
	height: 100dvh;
	/* Use dynamic viewport height when supported */
	border: none;
	position: absolute;
	top: 0;
	left: 0;
	display: none;
	pointer-events: all;
	/* Ensure touch events work for 8th Wall permission dialogs */
}

#ARFrame.__visible {
	display: block !important;
}

/* INTRO */

#IntroView {
	color: white;
	justify-content: space-between;
	padding: 2rem 2rem 1rem;
	padding-top: calc(2rem + env(safe-area-inset-top));
	/* Add safe area padding */
	padding-bottom: calc(1rem + env(safe-area-inset-bottom));
	/* Add safe area padding */
	text-align: center;
	gap: 0.5rem;
}

#IntroView>div {
	z-index: 50;
}

#IntroView>* {
	visibility: hidden;
	opacity: 0;
}

.hpaLogoLockup {
	width: 12rem;
	min-height: 2.5rem;
	background-image: url(img/hp-aud-lockup.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	margin: 0 auto;
	font-size: 0;
	position: relative;
}

.hpaLogoLockup::before {
	content: 'TM';
	font-size: 4px;
	position: absolute;
	left: 44.5%;
	display: block;
	bottom: 30%;
	margin-right: 0.3rem;
	letter-spacing: 0.1px;
	color: white;
	font-family: Magorian;
}

#IntroView ._masthead h1,
#IntroView ._masthead h2,
#AudioOverView ._masthead h1,
#AudioOverView ._masthead h2 {
	font-family: Magorian !important;
	font-weight: 400 !important;
}

#IntroView ._masthead {
	margin: 1rem 0 0;
}

#IntroView ._artwork {
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;

}

#IntroView ._newspaper {
	/* width: 60vw;
	height: 60vw; */
	flex: 2;
	width: 100%;
	z-index: 2;
	/* left:20vw;
	top:calc(50vh - 30vw);
	position: absolute; */
	position: relative;
	display: block;
	mix-blend-mode: lighten;
	/* background-image: url(img/cover-tilt.png); */
	/* background-size: contain;
	background-position: 50% 50%;
	background-repeat: no-repeat; */
}

#IntroView ._phone {
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	position: absolute;
	display: block;
	background-image: url(img/phone-highlight.png);
	background-size: 100vw auto;
	background-position: 50% 40%;
	background-repeat: no-repeat;
	animation: phone-roam 6s infinite;
}

/*roaming phone animation*/
@keyframes phone-roam {
	0% {
		background-position: 50% 40%;
	}

	16% {
		background-position: 20% 50%;
	}

	33% {
		background-position: 48% 52%;
	}

	50% {
		background-position: 70% 50%;
	}

	66% {
		background-position: 90% 42%;
	}

	87% {
		background-position: 70% 39%;
	}

	100% {
		background-position: 50% 40%;
	}
}

#IntroView video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 0;
	pointer-events: none;
	z-index: -1;
}

#IntroView ._gifanim {
	position: absolute;
	top: -1rem;
	left: -2rem;
	width: calc(100% + 4rem);
	height: calc(100% + 2rem);
	pointer-events: none;
	z-index: 10;
	object-fit: contain;
	object-position: center;
}

#IntroView ._buttons {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	width: 100%;
	margin: 1rem 0;
}

#IntroView a {
	color: white;
}

#IntroView ._permissions {
	position: absolute;
	left: 2.5rem;
	top: 50%;
	transform: translate(0, -50%);
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	width: calc(100% - 5rem);
	/* margin:2rem; */
	text-align: center;
	font-size: 1rem;
	background-color: white;
	color: var(--colour-midnight);
	padding: 2rem;
	border-radius: 1rem;
}

#IntroView ._loading {
	font-weight: 500;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 4rem;
}

#IntroView ._volumeUp {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 8rem;
}

.__view1 ._view1 {
	visibility: visible !important;
	opacity: 1 !important;
}

.__view2 ._view2 {
	visibility: visible !important;
	opacity: 1 !important;
}

.__view3 ._view3 {
	visibility: visible !important;
	opacity: 1 !important;
}

/* UNLOCK VIEW */

/* #UnlockView, */
#UnlockView .subview {
	color: white;
	justify-content: space-between;
	padding: 2rem 2rem 1rem;
	padding-top: calc(2rem + env(safe-area-inset-top));
	/* Add safe area padding */
	padding-bottom: calc(1rem + env(safe-area-inset-bottom));
	/* Add safe area padding */
	text-align: center;
	gap: 2rem;
	background: radial-gradient(circle, var(--colour-midnight), black);
	pointer-events: all;
}

#UnlockView ._topButtons {
	text-align: left;
	width: 100%;
}

#UnlockView ._content {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

#UnlockView ._keys {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	width: 100%;
	max-width: 16rem;
	margin: auto 0;
}

#UnlockView ._unlockKey {
	aspect-ratio: 1;
	border-radius: 1rem;
	position: relative;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	border: 2px solid transparent;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

#UnlockView ._unlockKey.__selected {
	border-color: white;
	box-shadow: 0 0 2rem rgba(255, 160, 0, 0.5);
}

/* Individual key colors based on Hogwarts houses */
#Unlock-huf {
	background-image: url(img/key-huf.png);
}

#Unlock-sly {
	background-image: url(img/key-sly.png);
}

#Unlock-gri {
	background-image: url(img/key-gri.png);
}

#Unlock-rav {
	background-image: url(img/key-rav.png);
}

#UnlockView ._lowerButtons {
	display: flex;
	gap: 1.5rem;
	padding: 1rem;
	justify-content: space-between;
	width: 100%;
}

#UnlockView ._lowerButtons .button {
	flex: 1;
}

#UnlockVideo {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	pointer-events: none;

}

#UnlockView ._videoPlayerSubview .hpaLogoLockup {
	position: absolute;
	top: calc(1rem + env(safe-area-inset-top));
	left: 50%;
	transform: translateX(-50%);
}

#UnlockView ._videoPlayerSubview .button {
	position: absolute;
	top: calc(1rem + env(safe-area-inset-top));
	right: 1rem;
}

#UnlockView ._videoDownloadSubview {
	color: white;
	justify-content: space-between;
	padding: 2rem;
}

#UnlockView ._videoDownloadSubview .videoThumbnail {
	background-image: url(video/unlock-thumb-huf.jpg);
	height: 40dvh;
	width: 22.5dvh;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

#UnlockView ._videoDownloadSubview .playButton {
	width: 3.375rem;
	height: 3.375rem;
	background-image: url(img/icon-play.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	margin: 1rem auto 0;
	cursor: pointer;
	border-radius: 5rem;
}

.ctaButtons {
	display: flex;
	gap: 0.75rem;
	padding: 1rem;
	flex-direction: column;
	width: 100%;
}

#AudioView {
	background: radial-gradient(circle, var(--colour-midnight), black);
	pointer-events: all;
	justify-content: space-between;
	padding: 3rem 2rem;
	color: white;
}

#AudioView ._audiocover {
	width: 70vw;
	height: 70vw;
	background-image: url(audio/book-2-cover.png);
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	border-radius: 1rem;
	margin: 0 auto;
}

#AudioView ._text {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.audioPlayerControls {
	width: 100%;
	display: block;
	position: relative;
	flex-direction: column;
	align-items: center;
	font-size: 0.75rem;
}

.audioPlayerControls ._channel {
	width: 100%;
	height: 0.3rem;
	background: #4A6687;
	border-radius: 0.25rem;
	position: relative;
	cursor: pointer;
}

.audioPlayerControls ._channel ._progress {
	width: 0%;
	height: 100%;
	background: var(--colour-solar);
	border-radius: 0.25rem;
}

.audioPlayerControls ._channel ._handle {
	width: 2rem;
	height: 2rem;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	left: 0%;
	cursor: pointer;
	/* background-color: turquoise; */

}

.audioPlayerControls ._channel ._innerHandle {
	width: 0.6rem;
	height: 0.6rem;
	background: var(--colour-solar);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.audioPlayerControls ._timeElapsed {
	left: 0.5rem;
	position: absolute;
	top: 1rem;
}

.audioPlayerControls ._timeRemaining {
	right: 0.5rem;
	position: absolute;
	top: 1rem;
}

#Button_PlayPause {
	width: 4.4rem;
	height: 4.4rem;
	border-radius: 50%;
	background: white;
	position: relative;
	cursor: pointer;
	background-image: url(img/loading-circle.gif);
	background-size: auto 160%;
	background-repeat: no-repeat;
	background-position: 50% 50%;
}

#Button_PlayPause.__playing {
	background-image: url(img/icon-pause.png);
	background-size: contain;
}

#Button_PlayPause.__paused {
	background-image: url(img/icon-play.png);
	background-size: contain;
}

#AudioFrameView .button {
	position: absolute;
	top: calc(1rem + env(safe-area-inset-top));
	left: 1rem;

}

#AudioFrameView iframe {
	width: 100%;
	height: 100%;
	border: none;
	position: absolute;
}

#AudioOverView {
	color: white;
	justify-content: center;
	align-items: center;
	text-align: center;
}

#AudioOverView ._masthead {
	margin: 2rem 0 3rem;
}

#Button_Audible {
	width: 100%;
}


#DesktopView {
	color: white;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	text-align: center;
	padding: 1rem;
	height: 100vh;
	height: 100dvh;
}

#DesktopView .hpaLogoLockup {
	margin-top: 1rem;
}

#DesktopView ._masthead {
	font-family: Magorian !important;
	font-weight: 400 !important;
}

#DesktopView .qrCode {
	width: 7.5rem;
}

#DesktopView .qrCodeHolder {
	height: 7.5rem;
	background: white;
	border-radius: 0.5rem;
	/* background-image:url(img/qrcode.svg); */
	background-size: 94% auto;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	position: relative;
}

#DesktopView .qrCodeHolder img {
	width: 90% !important;
	left: 5%;
	top: 5%;
	position: absolute;
}

#DesktopView .qrCode p {
	margin: 0.5rem 0 0 0;
	font-size: 0.66rem;
	color: white;

}

#DesktopView p.small-text {
	font-size: 0.5rem;
}

#DesktopView p a {
	color: white;
	text-decoration: underline;
}

#DesktopBackgroundVideo {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	height: 100dvh;
	/* Use dynamic viewport height when supported */
	object-fit: cover;
	object-position: 50% 0%;
	z-index: -1;
	display: none;
}

#DesktopBackgroundVideo.__visible {
	display: block !important;
}

.is-desktop #DesktopBackgroundVideo {
	display: block;
}

#LandscapeView {
	color: white;
	justify-content: center;
	align-items: center;
	text-align: center;
	display: flex;
	flex-direction: column;
	padding: 2rem;
	height: 100vh;
	height: 100dvh;
	background: radial-gradient(circle, var(--colour-midnight), black);
}

#LandscapeView ._content {
	max-width: 30rem;
	/* padding-left:9rem; */
	padding: 1rem 0 1rem 9rem;
	text-align: left;
	background-image: url(img/landscape-icon.png);
	background-size: auto 100%;
	background-repeat: no-repeat;
	background-position: 0 50%;
}

#LandscapeView h3 {
	margin-bottom: 1rem;
}

#LandscapeView .hpaLogoLockup {
	position: absolute;
	top: calc(2rem + env(safe-area-inset-top));
	left: 50%;
	transform: translateX(-50%);
}

#VirtualNewspaperSetup {
	position: absolute;
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	bottom: 1.5rem;
	gap: 1rem;
}

#VirtualNewspaperSetup.__visible {
	display: flex !important;
}

#VirtualNewspaperSetup .button {
	width: 20rem;
	text-align: center;
}