.wp-block-misch-glb-viewer-viewer.misch-glb-viewer {
	--misch-glb-viewer-aspect-ratio: 16 / 9;
	--misch-glb-viewer-background: radial-gradient(ellipse at center, #f9fafb 0%, #e8eaeb 58%, #d9dddf 100%);
	--misch-glb-viewer-credit-color: inherit;
	--misch-glb-viewer-space: clamp(12px, 2.4vw, 24px);
	position: relative;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	width: 100%;
	min-width: 0;
	aspect-ratio: var(--misch-glb-viewer-aspect-ratio);
	overflow: hidden;
	background: var(--misch-glb-viewer-background);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	isolation: isolate;
}

.misch-glb-viewer__viewport {
	position: relative;
	z-index: 1;
	flex: 1 1 auto;
	min-height: 0;
	overflow: hidden;
}

.misch-glb-viewer__canvas,
.misch-glb-viewer__webgl {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
}

.misch-glb-viewer__webgl {
	touch-action: none;
	cursor: grab;
	outline-offset: -3px;
}

.misch-glb-viewer__webgl:active {
	cursor: grabbing;
}

.misch-glb-viewer__webgl:focus-visible {
	outline: 2px solid currentColor;
}

.misch-glb-viewer__status {
	position: absolute;
	inset: 0;
	z-index: 3;
	display: grid;
	place-items: center;
	box-sizing: border-box;
	padding: var(--misch-glb-viewer-space);
	color: #555d66;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 13px;
	line-height: 1.45;
	text-align: center;
	pointer-events: none;
}

.misch-glb-viewer__status[hidden] {
	display: none;
}

.misch-glb-viewer.has-error .misch-glb-viewer__status {
	color: #8a2424;
}

.misch-glb-viewer__reset {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 4;
	display: grid;
	place-items: center;
	box-sizing: border-box;
	width: 38px;
	height: 38px;
	padding: 8px;
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.86);
	color: #1e1e1e;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

.misch-glb-viewer__reset:hover {
	background: #fff;
}

.misch-glb-viewer__reset:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

.misch-glb-viewer__reset svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: currentColor;
}

.misch-glb-viewer__view-switch,
.misch-glb-viewer__view-buttons {
	position: absolute;
	top: 12px;
	z-index: 4;
	display: flex;
	padding: 3px;
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.86);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

.misch-glb-viewer__view-switch {
	left: 12px;
}

.misch-glb-viewer__view-buttons {
	left: 50%;
	max-width: calc(100% - 220px);
	transform: translateX(-50%);
	flex-wrap: wrap;
	justify-content: center;
}

.misch-glb-viewer__view-switch button,
.misch-glb-viewer__view-buttons button {
	min-height: 30px;
	padding: 4px 10px;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: #3a3a3a;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 12px;
	line-height: 1;
	cursor: pointer;
}

.misch-glb-viewer__view-switch button[aria-pressed="true"],
.misch-glb-viewer__view-buttons button[aria-pressed="true"] {
	background: #1e1e1e;
	color: #fff;
}

.misch-glb-viewer__view-switch button:focus-visible,
.misch-glb-viewer__view-buttons button:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 1px;
}

.misch-glb-viewer__hint {
	position: absolute;
	bottom: 10px;
	left: 50%;
	z-index: 4;
	max-width: calc(100% - (2 * var(--misch-glb-viewer-space)));
	padding: 5px 9px;
	transform: translateX(-50%);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.82);
	color: #666;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 11px;
	line-height: 1.3;
	text-align: center;
	white-space: nowrap;
	pointer-events: none;
	transition: opacity 180ms ease;
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

.misch-glb-viewer__hint.is-hidden {
	opacity: 0;
}

.misch-glb-viewer__credit {
	position: relative;
	z-index: 2;
	box-sizing: border-box;
	flex: 0 0 auto;
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0.65em var(--misch-glb-viewer-space) 0.8em;
	overflow-wrap: anywhere;
	color: var(--misch-glb-viewer-credit-color);
}

.misch-glb-viewer__credit a {
	color: inherit;
	font: inherit;
	letter-spacing: inherit;
	text-decoration: inherit;
}

.misch-glb-viewer__credit.has-text-align-left {
	text-align: left;
}

.misch-glb-viewer__credit.has-text-align-center {
	text-align: center;
}

.misch-glb-viewer__credit.has-text-align-right {
	text-align: right;
}

@media (max-width: 600px) {
	.misch-glb-viewer__reset {
		top: 8px;
		right: 8px;
		width: 34px;
		height: 34px;
	}

	.misch-glb-viewer__view-switch {
		top: 8px;
		left: 8px;
	}

	.misch-glb-viewer__view-buttons {
		top: 50px;
		max-width: calc(100% - 16px);
	}

	.misch-glb-viewer__view-switch button,
	.misch-glb-viewer__view-buttons button {
		min-height: 28px;
		padding-inline: 8px;
		font-size: 11px;
	}

	.misch-glb-viewer__hint {
		bottom: 8px;
		font-size: 10px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.misch-glb-viewer__hint {
		transition: none;
	}
}
