body {
	margin: 0;
	--header-height: 3rem;
	--top-attn-height: 2rem;
	font-family: "Helvetica", "Arial", sans-serif;
}
header {
	padding: 0 1em;
	background-color: #000;
	height: var(--header-height);
	width: 100%;
	box-sizing: border-box;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	color: #fff;
	position: relative;
}
main {
	width: 100%;
	box-sizing: border-box;
	margin: 0 auto;
	padding: 0 1rem;
}
#top-attn {
	text-align: center;
	color: white;
	background-color: #cd1542;
	height: var(--top-attn-height);
	line-height: var(--top-attn-height);
	vertical-align: middle;
	width: 100%;
}
#menu-btn {
	height: calc(var(--header-height) * 0.6);
	border: none;
	background-color: inherit;
	padding: 0;
	color: inherit;
}
#menu-btn:focus {
	outline: none;
}
.logo-img {
	display: block;
	height: calc(var(--header-height) * 0.90);
	width: auto;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.header-nav {
	/*
	transform: translateX(-100%);
	position: fixed;
	top: 0;
	left: 0;
	background-color: #000;
	width: 66%;
	height: 100%;
	line-height: inherit;
	transition: transform 0.25s ease-in-out;
	*/
	display: block;
	position: absolute;
	top: calc(var(--header-height));
	left: 0;
	background-color: #000;
	width: 100%;
	height: 0;
	overflow: hidden;
	text-align: center;
	z-index: 1;
}
.slide-out {
	height: auto;
}
.header__checkout {
	background-color: #000;
	border: none;
	color: inherit;
	padding: 0;
	font-size: 1rem;
	height: 1.5rem;
	vertical-align: text-bottom;
}
#header-cart {
	fill: currentColor;
}
#header-nav-container {
	line-height: var(--header-height);
	font-weight: 600;
}
#header-links {
	margin: 0;
	line-height: inherit;
}
.inline {
	display: inline;
}
.btn {
	text-decoration: none;
	border-radius: 8px;
	display: inline-block;
	color: #fff;
	background-color: #0070c0;
}
.header-link {
	display: block;
	color: inherit;
	padding: 0.1em;
	text-decoration: none;
	box-sizing: border-box;
}
.active-header-link {
	background-color: #888;
}
#header-nav-logo {
	margin: 1rem 0;
}
#body-container {
	min-height: calc(100vh - var(--header-height) - var(--top-attn-height));
	justify-content: space-between;
	display: flex;
	flex-direction: column;
}
footer {
	padding: 0.5em;
	background-color: #000;
	color: #fff;
	text-align: center;
}
/*
footer > * {
	margin: 1em 0;
}
*/
.footer-link {
	text-decoration: none;
	color: inherit;
	margin: 0 0.5em;
	font-size: 1rem;
	text-size-adjust: none;
}
.footer-underline-link {
	border-bottom: 0.08em dotted#fff;
}
.footer-underline-link:hover {
	border-bottom: solid;
}
#footer-terms {
	line-height: 2;
}
#footer-email-link {
	overflow-wrap: break-word;
}
#footer-sourcebase {
	margin: 1rem 0;
}
address {
	margin: 1em 0;
}
#hero {
	margin: 3em auto;
	max-width: 40em;
}
.home-hero-btn {
	display: block;
	white-space: nowrap;
	width: max-content;
	padding: 1rem 2rem;
	margin: 1rem auto 0;
	font-size: 1.4rem;
	line-height: 1;
	font-weight: 500;
}
#hero-content {
	box-sizing: border-box;
	text-align: center;
	font-weight: 400;
}
#hero-header {
	color: #0070c0;
	margin: 1em 0 0.5em;
	font-weight: inherit;
}
#big-hero-content {
	font-size: 1.4em;
	color: #a00;
	margin-bottom: 0.5em;
	font-weight: inherit;
}
#bottom-hero-content {
	font-size: 1.2em;
}
#hero-img {
	display: block;
	box-sizing: border-box;
	width: 100%;
	height: auto;
	border-radius: 16px;
	box-shadow: 0px 0 16px #000;
}
#page-header {
	text-align: center;
	color: #0070c0;
}
#gabe-portrait {
	border-radius: 100%;
	display: block;
	margin: 0 auto;
}
#about-quote-name {
	float: right;
	margin-bottom: 3rem;
}
.big-text {
	font-size: 1.4em;
}
.bigger-text {
	font-size: 1.6em;
}
.no-bullets {
	list-style-type: none;
	padding: 0;
}
.product-thumb {
	position: relative;
}
.product-thumb-link {
	color: #000;
	text-decoration: none;
}
.product-thumb-image {
	display: block;
	width: 100%;
	height: auto;
}
.product-thumb-title, .product-thumb-price, .product-thumb-discount-price {
	font-size: 1.1rem;
}
.product-thumb-old-price {
	color: #888;
}
.product-thumb-title {
	margin: 0.3em 0;
}
.product-thumb-price, .product-thumb-discount-price {
	color: #080;
}
.product-thumb-sale-sign {
	background-color: #b00;
	color: #fff;
	padding: 1em 0.5em;
	border-radius: 100%;
	position: absolute;
	top: -0.5em;
	right: -0.5em;
}
#product-container {
	margin: 0 auto 4em;
	max-width: 40em;
}
#product-image {
	width: 100%;
	display: block;
}
#product-preconfig-selector {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: start;
	margin-top: 4px;
}
.product-preconfig-image {
	display: block;
	width: 33.33%;
	height: auto;
	box-sizing: border-box;
	border: solid 2px rgba(0, 0, 0, 0);
}
.product-preconfig-selected {
	border-color: #44f;
}
#product-info {
	box-sizing: border-box;
}
#product-price, #product-discount-price {
	color: #080;
	font-size: 1.6rem;
	font-weight: 500;
	margin: 1em 0;
}
#product-old-price {
	color: #888;
}
#product-name {
	color:  #0070c0;
	font-size: 2rem;
}
#product-description {
	font-size: 1.1rem;
}
#product-tags {
	max-width: 40em;
	margin: 4em auto;
}
/*
#product-buy-btn-container {
	max-width: 30rem;
	margin: 3rem auto;
}
#buy-btn {
	background-color: #06d;
	color: #fff;
	border: none;
	padding: 1rem 0;
	font-size: 1.2rem;
	width: 100%;
}
#buy-quantity-widget {
	margin-bottom: 1rem;
	text-align: center;
}
.buy-quantity-elem {
	font-size: 1.1rem;
	padding: 0.5rem 1rem;
	margin: 0;
}
#buy-quantity-value {
	width: 2em;
	text-align: center;
}
*/
#visit-store-btn {
	background-color: #06d;
	color: #fff;
	border: none;
	font-size: 1.2rem;
	display: block;
	max-width: 20rem;
	padding: 1rem 0;
	text-align: center;
	text-decoration: none;
}
#customize-container {
	margin: 0 auto 2em;
	text-align: center;
	color: #0070c0;
	width: 100%;
}
#customize-header {
	margin-block-end: 0.5em;
}
#customize-btn {
	display: block;
	padding: 0.2em;
	font-size: 1.8rem;
	border: none;
	background: linear-gradient(to right, #880000, #de0000, #fffa00, #028100, #00fd00, #000bf4, #860086, #fd00fd);
	border-radius: 16px;
	margin: 0 auto;
	width: 100%;
	position: relative;
}
#customize-link {
	box-sizing: border-box;
	display: block;
	background-color: #fff;
	text-decoration: none;
	color: #000;
	width: 100%;
	padding: 0.2em 0;
	transition: background-color ease-in-out 0.4s;
	border-radius: 16px;
}
#customize-click-icon {
	position: absolute;
	bottom: -1.6875rem;
	right: 0px;
	width: 5rem;
	height: auto;
	pointer-events: none;
}
#customize-link:hover {
	background-color: transparent;
	color: #fff;
}
#product-customize-registered {
	font-size: 0.7em;
	vertical-align: top;
}
#bottom-home {
	margin: 2rem 0;
	background-color: #0070c0;
	color: #fff;
	text-align: center;
	border-radius: 8px;
	padding: 0.1em 1em 1.4em;
}
.white-text {
	color: white;
}
.snipcart-add-item {
	display: none;
}
#product-custom-container {
	margin-bottom: 4em;
}
#svg8, #color-customizer, #shape-customizer, #product-custom-demo-image {
	width: 100%;
	height: auto;
	border-radius: 8px;
	border-style: solid;
	box-sizing: border-box;
	margin-bottom: 1em;
}
#product-custom-instructions {
	margin-bottom: 1em;
}
#product-custom-instructions-list {
	margin-top: 0;
}
#product-custom-main {
	margin-bottom: 1em;
}
#svg8 {
	border-color: purple;
}
#shape-customizer {
	border-color: green;
}
#color-customizer {
	border-color: red;
}
#middle-home {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 5px;
}
.home-mobile-column {
	width: 100%;
	height: auto;
}
#home-customize-mobile {
	border-radius: 8px;
	font-size: 1.4em;
	text-align: center;
	line-height: 1.8em;
	background-image: url(/images/Constellation-16-original-Background.jpg);
	background-position: bottom;
	background-size: cover;
	margin: 2rem 0;
	padding: 2em;
}
#home-customize-mobile-header {
	font-size: 1.3em;
}
.no-deco-link {
	text-decoration: none;
	color: initial;
}
.red {
	color: red;
}
.green {
	color: green;
}
.purple {
	color: purple;
}
.blue {
	color: blue;
}
.social-link-logo {
	fill: currentColor;
}
.social-link-logo:hover {
	fill: #888;
}
#sort-wrap {
	font-size: 1.1rem;
	overflow: auto;
}
#sort-selector-container {
	float: right;
}
#sort-selector {
	font-size: 1.1rem;
}
#products-container {
	margin: 1.5rem 0 3rem;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(12rem, 18rem));
	grid-gap: 1.5rem;
	justify-content: center;
}
#blog-post-container {
	margin: 0 0 4em;
}
.blog-post-thumb-link {
	text-decoration: none;
	color: #000;
}
.blog-post-thumb-image {
	max-width: 100%;
	display: block;
	margin: 1em auto;
	height: auto;
}
.blog-post-date {
	margin-bottom: 0.5em;
}
#home-customize-mobile-link {
	display: block;
	margin: 1rem 0;
	text-decoration: none;
	color: #0070c0;
}
#home-customize-mobile-link:hover {
	color: #f00;
}
#contact-container {
	margin-bottom: 4rem;
}
#contact-info {
	text-align: center;
}
#contact-phone-img {
	height: 1em;
	vertical-align: middle;
}
#contact-form {
	position: relative;
}
.contact-input, #contact-message {
	font-size: 1.2rem;
	padding: 0.5em;
	border-radius: 8px;
	border: solid 0.1em;
	width: 100%;
	margin-bottom: 1em;
	box-sizing: border-box;
}
#contact-message {
	font-size: 1.4rem;
}
#contact-form-status, #home-subscribe-email-status {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	font-size: 1.5rem;
	background-color: #fff;
	text-align: center;
}
#contact-socials {
	margin: 2em 0;
}
.contact-social-link {
	color: inherit;
	text-decoration: none;
	margin: 0 0.5rem;
}
#send-btn {
	display: block;
	width: 100%;
	margin: 0 auto;
	padding: 0.5em 3em;
}
.faq-item {
	margin-bottom: 3em;
}
.about-content {
	font-size: 1.1rem;
}
#home-subscribe-email {
	margin: 3rem 0;
	text-align: center;
	position: relative;
}
#home-subscribe-email-input, #home-subscribe-email-submit {
	width: 100%;
	font-size: inherit;
	box-sizing: border-box;
	margin: 0.4em 0;
}
#home-subscribe-email-input {	
	padding: 0.5em;
	border: 1px solid #888;
}
#home-subscribe-email-submit {
	padding: 0.5em 1em;
	background-color: #dc3545;
	color: #fff;
	border: none;
}
#home-subscribe-email-input:focus, #home-subscribe-email-submit:focus {
	outline: none;
}
#home-subscribe-email-message {
	margin-top: 1em;
	font-size: 1.4rem;
	color: #0070c0;
}
#blog-content {
	margin: 2rem 0 3rem;
}
/*
.snipcart-item-line__container {
	padding-left: 16px;
	padding-right: 16px;
}
.snipcart-item-line__media--small {
	height: 120px;
}
*/
.snipcart-header {
	color: #000;
}
.snipcart-modal__close-title {
	font-size: 1rem;
	display: inline;
}
#videos-overlay {
	display: none;
	background-color: rgba(255, 255, 255, 0.75);
	position: fixed;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
}
#videos-modal {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #000;
	box-shadow: 0 0 16px 4px #000;
}
#videos-player {
	--max-width: 80vw;
	max-width: var(--max-width);
	max-height: calc(90vh - 2rem);
	height: min(720px, calc(var(--max-width) * (9 / 16)));
}
#videos-overlay-link {
	color: #fff;
	display: block;
	text-align: center;
	margin: 0.4rem 0;
	font-size: 1.2rem;
	text-decoration: none;
}
#videos-overlay-link:hover {
	color: #f00;
}
#videos-container {
	display: grid;
	grid-gap: 2rem;
	grid-template-columns: repeat(auto-fit, minmax(18rem, 24rem));
	justify-content: center; 
}
.videos-item-thumb {
	cursor: pointer;
	font-weight: 700;
}
.videos-item-thumb-image {
	width: 100%;
	height: auto;
}
/* temp start */
#hero-slideshow {
	position: relative;
	width: 100%;
	padding-top: 75%;
	box-shadow: 0px 0 16px #000;
	border-radius: 16px;
	background-color: #c9c4be;
}
.hero-slideshow-img {
	transition: opacity 1s;
	position: absolute;
	border-radius: 16px;
	width: 100%;
	height: auto;
	top: 0;
	left: 0;
	opacity: 0;
}
#hero-slideshow-img-1 {
	opacity: 1;
}
#product-customize {
	text-align: center;
	text-decoration: none;
	display: block;
	color: #0070c0;
	margin: 2rem 0;
}
#product-customize:hover {
	color: #f00;
}
/* temp end */


@media screen and (min-width: 39rem) {
	body {
		--header-height: 3.5rem;
	}
	header {
		padding: 0 1em;
	}
	#gabe-portrait {
		margin-right: 4em;
		float: left;
	}
	footer {
		display: grid;
		grid-template-columns: 50% 50%;
		padding: 1em;
		align-items: center;
		/*grid-template-areas: "term soci"
												 "addr sour"
													 "copy copy";*/
	}
	/*
	#footer-terms {
		grid-area: term;
	}
	#footer-socials {
		grid-area: soci;
	}
	#footer-address {
		grid-area: addr;
	}
	#footer-sourcebase {
		grid-area: sour;
	}
	*/
	#footer-copyright {
		grid-column-start: 1;
		grid-column-end: 3;
	}
	.product-preconfig-image {
		width: 25%;
	}
	#product-custom-container {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		grid-template-areas: "svg svg con"
												 "svg svg con"
												 "ins ins dem";
		grid-gap: 2em;
	}
	#svg8 {
		grid-area: svg;
	}
	#product-custom-demo-image {
		grid-area: dem;
	}
	#product-custom-instructions {
		font-size: 1.2em;
		grid-area: ins
	}
	#product-custom-main {
		grid-area: con;
		margin-bottom: 0;
	}
	#svg8, #color-customizer, #shape-customizer, #product-custom-demo-image, #product-custom-instructions {
		margin-bottom: 0em;
	}
	#color-customizer {
		margin: 1em 0;
	}
	.header__checkout {
		margin-left: 2em;
	}
	#middle-home {
		grid-template-columns: 1fr 1fr;
	}
	#home-customize-mobile {
		font-size: 1.5rem;
		padding: 3em;
		margin: 4rem 0;
	}
	#home-customize-mobile-link {
		margin: 3rem 0;
	}
	#customize-container {
		width: 30em;
	}
	#bottom-home {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		margin: 3rem 0;
	}
	.bottom-home-item {
		flex: 1 1 0;
		margin: 0 2rem;
	}
	#home-subscribe-email {
		margin: 4rem 0;
		text-align: center;
	}
	#home-subscribe-email-input, #home-subscribe-email-submit {
		height: 3rem;
		line-height: 2.5rem;
		vertical-align: middle;
		padding: 0 0.5em;
		margin: 0;
	}
	#home-subscribe-email-input {	
		width: 20em;
		max-width: 50%;
		border-radius: 8px 0 0 8px;
	}
	#home-subscribe-email-submit {
		width: auto;
		padding: 0 1em;
		border-radius: 0 8px 8px 0;
	}
	#home-subscribe-email-input:focus, #home-subscribe-email-submit:focus {
		outline: none;
	}
	#home-subscribe-email-message {
		margin-top: 1em;
		font-size: 1.4rem;
		color: #0070c0;
	}
	#blog-post-container {
		margin: 0 0 4em;
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-gap: 4rem;
		justify-content: space-between;
	}
	/*
	.snipcart-item-line__container {
		//padding: 32px;
	}
	*/

}
@media screen and (min-width: 68rem) {
	header {
		padding: 0 3em;
		position: fixed;
		z-index: 1;
		top: var(--top-attn-height);
	}
	main {
		max-width: 90rem;
		padding: 0 2rem;
	}
	#top-attn {
		position: fixed;
		z-index: 1;
		top: 0;
	}
	.logo-img {
		position: static;
		transform: none;
	}
	#body-container {
		margin-top: calc(var(--top-attn-height) + var(--header-height));
	}
	#menu-btn {
		display: none;
	}
	.header-nav {
		display: inline;
		position: static;
		padding: 0;
	}
	#header-nav-logo {
		display: none;
	}
	#header-links {
		display: inline;
	}
	.header-link {
		display: inline-block;
		margin: 0 0.5em;
		height: var(--header-height);
		padding: 0;
		border-bottom: 0.2em solid rgba(0, 0, 0, 0);
	}
	.header-link:hover, .active-header-link {
		border-bottom-color: #fff;
	}
	.active-header-link {
		background-color: inherit;
	}
	#middle-home {
		grid-template-columns: repeat(4, 1fr);
	}
	main {
		padding: 0 3em;
	}
	#hero {
		margin: 6em 0;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		max-width: none;
	}
	#hero-header {
		font-size: 1.9em;
		margin-top: 0;
	}
	#hero-content {
		order: 0;
		width: 40%;
		font-size: 1.3rem;
	}
	#hero-img {
		margin: 0;
		order: 1;
		width: 50%;
	}
	#contact-container {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
	}
	#contact-info {
		width: 30%;
		text-align: left;
	}
	#contact-form {
		width: 60%;
		max-width: unset;
	}
	#send-btn {
		width: fit-content;
	}
	#product-container {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		max-width: unset;
	}
	#product-preconfig-container {
		width: 45%;
	}
	#product-preconfig-selector {
		grid-template-columns: repeat(4, 1fr);
	}
	#product-info {
		width: 45%;
	}
	#product-tags {
		margin-left: 0;
		margin-right: 0;
	}
	/* temp start */
	#hero-slideshow {
		margin: 0;
		order: 1;
		width: 50%;
		padding-top: 37.5%;
	}
	/* temp end */
}