body {
	background: top right / contain no-repeat url('/images/header.webp') fixed;
	margin: 0;
	width: 100%;
	font-family: 'Open Sans', sans-serif;
	font-size: 1.25em;
	line-height: 1.5em;
}
img {
	border: 0;
}
a {
	color: blue;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
p {
	margin: 0;
	text-indent: 2rem;
}
h2 {
	padding: 25px 0;
	font-weight: normal;
	font-family: 'PT Sans', sans-serif;
}
pre {
	margin: 0;
	font-family: 'Open Sans', sans-serif;
	white-space: break-spaces;
}
#msg {
	color: #800;
	text-align: center;
}
.section {
	padding: 0;
	background-image: url('/images/texture.webp');
}
.section > div {
	margin: auto;
}
.slice-top {
	clip-path: polygon(
		0 6vw,
		100% 0,
		100% 100%,
		0 100%
	);
	margin-top: -6vw;
}
.slice-bottom {
	clip-path: polygon(
		0 0,
		100% 0,
		100% calc(100% - 6vw),
		0 100%
	);
	margin-bottom: -6vw;
}
.slice-top-bottom {
	clip-path: polygon(
		0 6vw,
		100% 0,
		100% calc(100% - 6vw),
		0 100%
	);
	margin-top: -6vw;
	margin-bottom: -6vw;
	width: 100%;
}
.slice-top::before, .slice-top-bottom::before,
.slice-bottom::after, .slice-top-bottom::after {
	display: block;
	content: " ";
	height: 8vw;
	width: 100%;
}


.script {
	font-family: 'Handlee', cursive;
	font-size: 2.2rem;
	text-align: center;
	color: #000088;
	text-shadow: 0 0 1px cyan;
}
.angled {
	transform: rotate(-3deg);
	color: white;
	width: 90%;
	margin: 0 auto;
}
.parallax {
	height: 700px;
}
.parallax2 {
	height: 400px;
}
.parallax-footer {
	height: 500px;
}
.spacer {
	height: 600px;
	height: min(500px, calc(100vh - 135px));
}
footer {
	font-size: 1rem;
	line-height: 1.5rem;
	padding-bottom: 20px;
}
footer .social {
	white-space: nowrap;
}
footer .social img {
	width: 24px;
	height: 24px;
	vertical-align: middle;
}


.flex-wrapper {
	display: flex;
	flex-wrap: wrap;
	/*flex-direction: row-reverse;*/
	flex-direction: column;
	justify-content: center;
	max-width: 800px;
}
.flex-column {
	/*flex: 1 1 360px;*/
	padding: 20px;
}
footer .flex-wrapper {
	flex-direction: row-reverse;
}
footer .flex-column {
	flex: 1 1 360px;
}
.margin	 {
	margin: 30px 0;
}
.pad {
	padding: 20px;
}
.center {
	text-align: center;
	margin: 0 auto;
}
.center img {
	margin: 10px;
	vertical-align: middle;
}
.center-grid {
	display: grid;
	place-items: center;
	flex-wrap: nowrap;
}

button {
	display: inline-block;
	margin: 10px 0 0;
	padding: 1rem 3rem;
	font-size: 2.5rem;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	outline: none;
	color: #fff;
	background-color: #6090bf;
	border: none;
	border-radius: 15px;
	box-shadow: -3px 9px 3px #999;
}
button:hover {
	background-color: #70a0df;
}
button:active {
	background-color: #70a0df;
	border: none;
	box-shadow: -2px 5px 3px #999;
	transform: rotate(-3.5deg) translateY(4px);
}


.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
	max-width: 1000px;
	margin: 0 auto;
}
.grid-tile {
    flex: 0 1 150px;
    margin: 10px;
	padding: 15px;
	font-family: 'Merriweather', Georgia, serif;
	font-size: 1.8rem;
	line-height: 2rem;
	color: black;
	text-decoration: none ! important;
	text-align: center;
	border: 1px solid transparent;
}
.grid-tile:hover {
	background-color: #bbe5f5;
	border: 1px solid #ccd;
	border-radius: 15px;
}
.grid-tile img {
	width: 200px;
	height: 133px;
	border-radius: 10px;
	margin-top: 10px;
	box-shadow: 0 6px 10px #ccc;
}

.product-group {
	margin: 30px auto 0 ! important;
	width: 670px;
}
.product-group-name {
	font-weight: bold;
}
.product-group-pack {
	float: left;
	width: 300px;
	text-align: center;
	font-size: 1rem;
}
.product-type {
	border: 1px solid black;
}
.product-item {
	clear: both;
	font-size: 1rem;
	line-height: 1rem;
	height: 1rem;
	width: 650px;
	padding: 10px;
}
.product-item:nth-child(odd) {
	background-color: rgba(0, 0, 0, 0.03);
}
.product-item-size {
	float: left;
	width: 100px;
}
.product-item-name, .product-group-name {
	float: left;
	width: 350px ! important;
}
.anchor {
	display: block;
	position: relative;
	top: -110px;
	visibility: hidden;
}
@media (max-width: 800px) {
	.product-group {
		width: 550px;
	}
	.product-group-pack {
		width: 225px;
	}
	.product-item {
		width: 528px;
	}
	.product-item-size {
		width: 90px;
	}
	.product-item-name, .product-group-name {
		width: 258px ! important;
	}
}





#contact-form > div {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 1rem;
	margin: 5px;
}
#contact-form > div > div:nth-child(1) {
	justify-self: right;
}
#contact-form > div > div:nth-child(2) {
	justify-self: left;
}
#contact-form input[type=text],
#contact-form input[type=tel],
#contact-form input[type=email],
#contact-form input[type=submit],
#contact-form select,
#contact-form textarea {
	width: 300px;
	height: 2rem;
	line-height: 2rem;
	font-size: 1.2rem;
	border: 1px solid grey;
	border-radius: 5px;
}
#contact-form input[type=radio] {
	width: 1.5rem;
	height: 1.5rem;
	line-height: 2rem;
	vertical-align: top;
	border: 1px solid grey;
}
#contact-form select {
	width: 306px;
}
#contact-form textarea {
	height: 6rem;
	font-size: 1.25rem;
}
#contact-form .new-customer {
	display: none;
}












#contact-form > div.careers-sales,
#contact-form > div.careers-warehouse,
#contact-form > div.careers-driver {
	display: none;
}
#contact-form input[type=text].careers-experience {
	width: 240px;
}
#contact-form label {
	margin-right: 20px;
}
.disclaimer {
	display: none;
	width: 550px;
	margin: 0 auto;
	padding-left: 150px;
	font-size: 1rem;
	color: red;
}



.post {
	padding: 30px 0;
}
blockquote {
	margin: 0 auto;
}
.twitter-tweet {
	margin: 0 auto ! important;
	padding: 10px 0;
}
.instagram-media {
	margin: 0 auto ! important;
	padding: 10px 0;
}














#nav-wrapper {
	height: 126px;
	width: 100%;
	margin: 0 0 -1px 0;
	background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 25%);
}
nav {
	width: 100%;
	height: 80px;
	z-index: 1;
}
nav > div {
	display: grid;
	margin: 0 auto;
	min-width: 430px;
	max-width: 800px;
	line-height: 80px;
	grid-template-columns: 340px 1fr;
}
nav a {
	display: inline-block;
	text-decoration: none ! important;
	color: black;
}
nav #logo {
	width: 340px;
	font-size: 1.8rem;
	text-align: left;
	font-weight: bold;
	font-family: Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;
}
nav #logo img {
	width: 125px;
	height: 125px;
	margin: 10px 10px 0 10px;
	vertical-align: top;
	transform: translateY(-32px);
	transition: 0.2s;
}

nav .flex-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	min-width: 132px;
}
nav .flex-grid a {
	flex: 0 0 125px;
	display: inline-block;
	width: 125px;
	height: 80px;
	line-height: 80px;
	font-size: 1.5rem;
	text-align: center;
}



nav .menu {
	position: relative;
	z-index: 1;
}
nav .menu .menu-check {
	display: none;
}
nav .menu .menu-button {
	display: none;
	background-color: white;
	position: relative;
	top: 1px;
	margin: 0 5px;
	border: 1px solid #ccc;
	border-radius: 10px;
	z-index: 1;
	cursor: pointer;
	width: 42px;
	height: 42px;
	padding: 6px;
}

nav .menu-check:checked + label .menu-button {
	background-color: white;
	border: 1px solid #ccc;
	border-bottom-color: white;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
/**/

nav #languages.menu {
	margin-top: 12px;
	height: 56px;
}
nav #languages .menu-button {
	display: block;
}
nav #languages .menu-content {
	position: absolute;
	display: none;
	right: 5px;
	background-color: white;
	border: 1px solid #ccc;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
nav #languages.menu a {
	display: block;
	text-align: right;
	width: calc(100% - 20px);
	font-size: 1.6rem;
	line-height: 3.5rem;
	height: 3.5rem;
	white-space: nowrap;
	padding: 0 10px;
}
nav #languages.menu a img {
	width: 32px;
	height: 32px;
	vertical-align: middle;
}
nav #languages a:hover {
	background-color: #ddd;
}

nav #languages .menu-check:checked + label .menu-button {
	/*content: url("/images/close.png");
	width: 32px;
	height: 32px;
	padding: 3px;
	*/
}
nav #languages .menu-check:checked + label + .menu-content {
	display: block;
}
/**/
@media (max-width: 800px) {
	body {
		background-image: url('/images/small-header.webp');
	}
	.section {
		background-image: url('/images/small-texture.webp');
	}
	#nav-wrapper {
		background-color: white;
	}
	nav #logo img {
		width: 100px !important;
		height: 100px !important;
		transform: translateY(0);
		transition: 0.2s;
	}
	nav .flex-grid {
		flex-direction: row-reverse;
		justify-content: flex-start;
	}
	nav .menu {
		margin-top: 12px;
		height: 56px;
	}
	nav .menu .menu-button {
		display: block;
		/*width: 50px;
		height: 50px;
		padding: 6px;
		*/
	}
	nav .menu-content {
		position: absolute;
		display: none;
		right: 5px;
		background-color: white;
		border: 1px solid #ccc;
		border-top-left-radius: 10px;
		border-bottom-left-radius: 10px;
		border-bottom-right-radius: 10px;
	}
	nav .menu a {
		display: block;
		width: calc(100% - 20px);
		font-size: 2.5rem;
		line-height: 5rem;
		height: 5rem;
		white-space: nowrap;
		padding: 0 10px;
	}
	nav #languages.menu a {
		font-size: 2.5rem;
		line-height: 5rem;
		height: 5rem;
	}
	nav #languages.menu a img {
		width: 48px;
		height: 48px;
	}
	nav .menu a:hover {
		background-color: #ddd;
	}
	
	nav .menu-check:checked + label .menu-button {
		/*content: url("/images/close.png");*/
	}
	nav .menu-check:checked + label + .menu-content {
		display: block;
	}
	/**/
}

nav.fixed {
	position: fixed;
	top: 0;
	left: 0;
	background-color: white;
	border-bottom: 1px solid #dddddd;
}
nav.fixed #logo img {
	width: 100px !important;
	height: 100px !important;
	transform: translateY(0);
	transition: 0.2s;
}