html,
body {
	padding: 0;
	margin: 0;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	line-height: 1.5rem;
	min-height:100vh;
}

div {
	box-sizing: border-box;
}

.holder {
	max-width: 1050px;
	width:80%;
	display: flex;
	flex-direction: column;
	justify-content:space-between;
	position: relative;
	margin: auto;
	padding: 0;
	min-height:100vh;
}

.section, .colGroup {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	flex-direction: row;
	position: relative;
	font-size: 0;
	width:100%;
}

.col {
	text-align: justify;
	margin-bottom: 1.25rem;
	width: 30%;
	display: inline-block;
	vertical-align: top;
	font-size: 1rem;
	position: relative;
}

.span2 {
	width: 65%;
}

.span3 {
	width: 100%;
}

.crosshead {
	font-weight: bold;
	font-size: 1.5rem;
	padding-top: 16px;
	border-top: 2px black solid;
	line-height: 2.25rem;
}

.crosshead h3,
.crosshead h4 {
	display: inline-block;
	margin-right: 1rem;
	
}

.productShot {
	width: 100%;
	margin: 15px 0;
}

h3 {
	font-size: 3rem;
	margin: 0 0 10px;
	line-height:3rem;
	text-align: left;
}

h4 {
	font-size: 2.25rem;
	line-height:2.25rem;
	font-weight: normal;
	margin: 0 0 10px;
	text-align: left;
}

p {
	margin: 10px 0;
}

a.buyNow, a.downloadLink {
	display: block;
	position: relative;
	width:fit-content;
	padding: 5px 15px;
	background-color: #333;
	color: #fff;
	text-decoration: none;
	margin: -5px 0 0 auto;
	right:0;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

a.downloadLink {
	display: inline-block;
	margin-left: 1rem;
}

.padTop20 {
	margin-top: 20px;
}

input[type="text"] {
	box-sizing: border-box;
	width: 100%;
	padding: 0.5rem;
	font-size:2rem;
	font-family: Roboto;
	border: none;
	border-bottom: 2px solid #000;
	/* box-shadow: inset 0 1px 1px rgba(0,0,0,0.25); */

	background-color:#eee;
	 /* 0 0 1px #000; */
}

input[type="submit"] {
	padding: 0.5rem 2rem;
	font-size:2rem;
	font-family: Roboto;
	font-weight:bold;
	border-radius: 0.5rem;
	border: none;
	background-color: #333;
	color: #fff;
	cursor: pointer;
	right:0;
	margin: -5px 0 0 auto;
	position: relative;
	display: block;
}

.errorMessage {
	color: #fff;
	font-size: 1.5rem;
	background-color:#888;
	padding:1rem 2rem;
	display: block;
	position: relative;
	margin:auto;
	width: fit-content;
	opacity:0;
}

.downloadButtonHolder {
	text-align: right;
}

/* 880 */
@media all and (max-width: 880px) {
	.col {
		width: 46%;
	}

	.span2 {
		width: 46%;
	}

	.span3 {
		width: 100%;
	}

	.span2at2 {
		width: 100%;
	}
}

/* 540 */
@media all and (max-width: 540px) {
	.col {
		width: 100%;
	}

	.span2 {
		width: 100%;
	}
}