body {
	text-align: left;
  display: flex;
	flex-direction: column;
	justify-content: center;
	background-color:#fff;
}
h1 {
	text-align: left;
}
h5 {
	text-align: center;
	--color:#0065ac;
}
#product-photo {
	margin-bottom: var(--header-height);
}

#product-details {
  animation: mymove 1s;
  animation-fill-mode: forwards;
}
@keyframes mymove {
  from {top: 40%;}
  to {top: 0%;}
}

@media (min-width:641px) {
	#product-photo {
		width: 50%;
		float: left;
		margin-bottom: 0;
	}
	
	#product-details {
		width: 50%;
		float: right;
	}
}

dl {
	/*background-color: silver;*/
}
dl>dt:not(:first-of-type) {
	padding-top: 0.5em;
}
dl>dd:not(:last-of-type) {
	/*background-color: yellow;*/
	margin-bottom: 0;
	padding-bottom: 0.5em;
	border: none;
	border-bottom: 1px solid #ccc;
}

a.close {
	font-size: 0;
	position: absolute;
	top: 0;
	right: 0;
	margin: calc( (var(--header-height) - 24px) / 2 );
	text-decoration: none;
}
a.close:after {
	font-family: KYD;
	content: "\0042";
	font-size: 24px;
	line-height: 1;
	
	/* fix blurry icon rendering */
	font-smooth: always;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

