body{
	display: flex;
	flex-direction: column;
	background-color: white;
	width: 100%;
	height: 100%;
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
}

.container{
	display: flex;
	position: fixed;
	flex-direction: column;
	width: 100%;
	height: 100%;
}

.header{
	display: flex;
	justify-content: center;
	position: relative;
	height: 100px;
	align-items: center;
}

.header__logo{
	/* display: flex; */
	width: 300px;
}

.header__logo img{
	width: 100%;
	height: auto;
}

.header__back-button{
	background-color: white;
	position: absolute;
	left: 0;
	padding: 6px 12px;
	margin-left: 10px;
	font-weight: 900;
	color: orange;
	text-transform: uppercase;
	cursor: pointer;
}

.body{
	display: flex;
	align-items: center;
	flex-direction: column;
	margin-top: 20px;
	height: 100%;
}

.qr {
	display: none;
}

.model-viewer{
	width: 100%;
	height: 100%;
	contain: initial;
}

.model-viewer button{
	color: red;
	border: 2px solid red;
	padding: 10px 20px 10px 20px;
	font: inherit;
	cursor: pointer;
	position: absolute;
	margin-top: -100px;
	width: calc(100% - 40px);
	left: 20px;
	background-color: white;
	z-index: 9;
}

.model-viewer::part(default-ar-button){
	transform: scale(1.3);
	width: 50px;
	height: 50px;
	/* margin-right: 16px; */
}

.open-camera-button{
	/* top: 0px; */
	bottom: 0;
}

.body__description{
	padding: 20px;
	display: none;
}

.body__description-alt{
	background-color: #ffffffa3;
	bottom: 0;
	padding: 12px 0px 12px 20px;
	z-index: 3;
}

.footer{
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	height: 40px;
}

@media print, screen and (min-width: 960px) and (orientation: landscape){
	.qr{
		display: block;
	}
	.body__description-alt{
		display: none;
	}
	.body__description{
		display: block;
	}
	.model-viewer{
		display: none;
	}
}
