/*
 * Theme Name: Radian LLC
 * Description: Custom Radian LLC Theme built with Timber.
 * Author: Eric Lorentz
 * Author URI: https://ericlorentz.com/
 * Version: 1.0.2
*/

:root {
	--8px: 0.5rem;
	--13px: .8125rem;
	--16px: 1rem;
  	--18px: 1.125rem;
	--20px: 1.25rem;
	--22px: 1.375rem;
	--24px: 1.5rem;
	--28px: 1.75rem;
	--36px: 2.25rem;
	--40px: 2.5rem;
	--48px: 3rem;

	--color-black: #000;
	--color-gray: #151515;
	--color-red: #f00;
	--color-white: #fff;

	--align-items-nav: center;
	--align-items-team-member: top;

	--display-header-dropdown: none;

	--flex-direction-callout: row;
	--flex-direction-contact: row;
	--flex-direction-featured: row;
	--flex-direction-footer: row;
	--flex-direction-nav: row;
	--flex-direction-product-info: row;
	--flex-direction-team-member: row;
	--flex-direction-two-fields: row;

	--flex-grow-header-branding: 1;

	--flex-wrap-footer: nowrap;

	--font-family-body: "Open Sans", "Segoe UI", Tahoma, sans-serif;
	--font-family-headline: "Ubuntu", Arial, sans-serif;

	--font-size-nav: 1.25rem;

	--font-weight-headline: 700;

	--gap-callout: 50px;
	--gap-contact: 60px;
	--gap-footer-sections: 90px;
	--gap-header-wrapper: 40px;
	--gap-nav: 30px;
	--gap-product-info: 50px;
	--gap-team-member: 60px;
	--gap-two-fields: 16px;

	--height-content-break: 40px;
	--height-header: 80px;

	--justify-content-socials: end;

	--margin-left-socials: auto;

	--max-width-page: 1440px;
	--max-width-video-section: 1080px;
	--max-width-logo: 200px;

	--padding-x-default: 50px;
	--padding-x-header: 30px;
	--padding-y-header: 15px;

	--width-cart-quantity: 200px;
	--width-footer-section: auto;

	--y-offset-content: 80px;
	--y-offset-header: 0px;
}

.admin-bar {
	--y-offset-header: 32px;
}

.site-callout-enabled {
	--y-offset-header: 50px;
	--y-offset-content: 130px;
}

.admin-bar.site-callout-enabled {
	--y-offset-header: 82px;
}

*, *::before, *::after {
	box-sizing: border-box;
}

* {
	margin: 0;
}

body {
	background: var(--color-gray);
	color: var(--color-white);
	font-family: var(--font-family-body);
	font-size: var(--18px);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
	display: block;
	max-width: 100%;
}

input, button, textarea, select {
	font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
	overflow-wrap: break-word;
}

.header {
	background: var(--color-black);
	box-shadow: 0 0 8px var(--color-black);
	height: var(--height-header);
	left: 0;
	padding: var(--padding-y-header) var(--padding-x-header);
	position: fixed;
	right: 0;
	top: var(--y-offset-header);
	z-index: 150;
}

.header__wrapper {
	align-items: center;
	display: flex;
	gap: var(--gap-header-wrapper);
	height: calc(var(--height-header) - var(--padding-y-header) * 2);
	flex-wrap: nowrap;
	justify-content: space-between;
}

.header__dropdown {
	background: transparent;
	border: 0;
	cursor: pointer;
	display: var(--display-header-dropdown);
	height: var(--36px);
	margin: 0;
	padding: 0;
	width: var(--36px);
	z-index: 3;

	svg {
		color: var(--color-white);
		height: 100%;
		transition: color 0.4s;
		width: 100%;
	}

	&:hover, &:focus {
		svg {
			color: var(--color-red);
		}
	}
}

.header__dropdown--closed {
	.menu-open-icon {
		display: block;
	}

	.menu-close-icon {
		display: none;
	}
}

.header__dropdown--opened {
	.menu-open-icon {
		display: none;
	}

	.menu-close-icon {
		display: block;
	}
}

.header__branding {
	flex-grow: var(--flex-grow-header-branding);
	z-index: 3;
}

.header__logo {
	display: block;
	max-width: var(--max-width-logo);
}

.cart-icon {
	position: relative;
	z-index: 3;

	img {
		height: var(--24px);
		width: var(--24px);
	}
}

.cart-icon__count {
	background: var(--color-red);
	border-radius: 50%;
	box-shadow: 0 0 3px var(--color-black);
	color: var(--color-white);
	display: block;
	font-size: var(--13px);
	font-weight: 700;
	height: var(--18px);
	line-height: var(--18px);
	position: absolute;
	right: -8px;
	text-align: center;
	top: -8px;
	user-select: none;
	width: var(--18px);
}

.nav {
	align-items: var(--align-items-nav);
	display: flex;
	flex-direction: var(--flex-direction-nav);
	gap: var(--gap-nav);
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.nav__item {
	font-family: var(--font-family-headline);
	font-size: var(--font-size-nav);
	font-weight: var(--font-weight-headline);
	text-align: center;
	text-transform: uppercase;

	a {
		color: var(--color-white);
		text-decoration: none;
		transition: color 0.4s;
	}

	&:hover, &:focus {
		a {
			color: var(--color-red);
		}
	}
}

.nav__item--current {
	a {
		color: var(--color-red);
	}
}

.footer {
	background: var(--color-black);
}

.footer__wrapper {
	margin: 0 auto;
	max-width: var(--max-width-page);
	padding: 30px;
}

.footer__sections {
	display: flex;
	flex-direction: var(--flex-direction-footer);
	flex-wrap: var(--flex-wrap-footer);
	gap: var(--gap-footer-sections);
}

.footer__section {
	width: var(--width-footer-section);

	h2 {
		color: var(--color-red);
		font-family: var(--font-family-headline);
		font-size: var(--20px);
		font-weight: var(--font-weight-headline);
		text-transform: uppercase;
	}

	ul {
		list-style-type: none;
		margin: 10px 0 0 0;
		padding: 0;
	}
}

.footer__item {
	font-size: var(--16px);
	margin: 5px 0;

	a {
		color: var(--color-white);
		text-decoration: none;

		&:hover, &:focus {
			text-decoration: underline;
		}
	}
}

.footer__socials {
	margin-left: var(--margin-left-socials);

	h2 {
		color: var(--color-red);
		font-family: var(--font-family-headline);
		font-size: var(--20px);
		font-weight: var(--font-weight-headline);
		margin-bottom: 6px;
		text-transform: uppercase;
	}
}

.social-icons {
	align-items: center;
	display: flex;
	gap: 10px;
	justify-content: var(--justify-content-socials);
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.social-icons__icon {
	height: var(--36px);
	width: var(--36px);
}

.social-icons__icon--instagram,
.social-icons__icon--x {
	height: var(--28px);
	width: var(--28px);
}

.footer__copyright {
	font-size: var(--16px);
	margin-top: 40px;
}

.content {
	margin-top: var(--y-offset-content);
}

.content__wrapper {
	background: var(--color-gray);
}

.featured-products {
	display: flex;
	flex-direction: var(--flex-direction-featured);
}

.featured-product {
	align-items: center;
	display: flex;
	flex-direction: column;
	height: min(860px, calc(100vh - var(--y-offset-content)));
	justify-content: end;
	min-height: 510px;
	position: relative;
	text-decoration: none;
}

.featured-product--black {
	background-color: var(--color-black);
}

.featured-product--gray {
	background-color: var(--color-gray);
}

.featured-product__image {
	height: 100%;
	object-fit: cover;
	overflow-clip-margin: unset;
	position: absolute;
	width: 100%;
	z-index: 1;
}

.featured-product__logo {
	align-items: center;
	display: flex;
	flex-direction: column;
	height: 12.1%;
	justify-content: center;
	max-height: 104px;
	max-width: 410px;
	position: relative;
	width: 56%;
	z-index: 2;

	img {
		max-height: 100%;
	}
}

.featured-product__name {
	align-items: center;
	display: flex;
	flex-direction: column;
	height: 12.1%;
	justify-content: center;
	max-height: 104px;
	max-width: 410px;
	position: relative;
	width: 56%;
	z-index: 2;

	h2 {
		color: var(--color-red);
		font-family: var(--font-family-headline);
		font-size: var(--48px);
		font-weight: var(--font-weight-headline);
		text-align: center;
	}
}

.featured-product__tagline {
	color: var(--color-red);
	font-size: min(2.7vw, 28px);
	margin: 0;
	text-shadow: 1px 1px 3px var(--color-black);

	+ p {
		margin-top: 0;
	}
}

.featured-product__callout {
	align-items: center;
	display: flex;
	flex-direction: column;
	height: 19%;
	justify-content: center;
	max-height: 134px;
	overflow: hidden;
	padding: 0 15px;
	position: relative;
	width: 100%;
	z-index: 2;

	p {
		color: var(--color-white);
		font-family: var(--font-family-headline);
		font-size: min(2.2vw, 24px);
		font-weight: var(--font-weight-headline);
		text-align: center;
		text-shadow: 1px 1px 3px var(--color-black);
	}
}

.brand-callout {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 60px auto;
	max-width: 100%;
	padding: 0 var(--padding-x-default);
	width: var(--max-width-page);
}

.brand-callout__logo {
	margin: 0 auto;
	max-width: 600px;
	width: 100%;
}

.brand-callout__tagline {
	color: var(--color-white);
	font-family: var(--font-family-headline);
	font-size: min(4.5vw, 40px);
	font-weight: var(--font-weight-headline);
	text-align: center;
}

.video-section {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin: 60px auto;
	max-width: 100%;
	padding: 0 var(--padding-x-default);
	width: var(--max-width-video-section);
}

.video-section__title {
	font-family: var(--font-family-headline);
	font-size: var(--36px);
	font-weight: var(--font-weight-headline);
	text-align: center;
}

.product-callout {
	align-items: center;
	display: flex;
	flex-direction: var(--flex-direction-callout);
	gap: var(--gap-callout);
	margin: 60px auto;
	max-width: 100%;
	padding: 0 var(--padding-x-default);
	width: var(--max-width-page);
}

.product-callout__media {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 40px;
	max-width: 100%;
}

.product-callout__logo {
	align-items: center;
	aspect-ratio: 410 / 104;
	display: flex;
	flex-direction: column;
	height: 104px;
	justify-content: center;
	max-width: 410px;
	min-width: 0;
	width: 100%;

	img {
		max-height: 100%;
		max-width: 100%;
	}
}

.product-callout__content {
	font-size: var(--22px);

	.button-link {
		margin-top: 1em;
	}
}

.product-info {
	display: flex;
	flex-direction: var(--flex-direction-product-info);
	gap: var(--gap-product-info);
	margin: 0 auto;
	padding: 60px var(--padding-x-default);
	max-width: var(--max-width-page);
}

.product-info__info {
	font-size: var(--18px);
}

.product-info__gallery {
	.gallery {
		position: sticky;
		top: 172px;
	}
}

.product-info__tagline {
	color: var(--color-red);
	margin: 0.75em 0 0 0;
}

.product-info__price {
	font-family: var(--font-family-headline);
	font-size: var(--36px);
	font-weight: var(--font-weight-headline);
	margin-top: 10px;
}

.product-info__primary {
	margin-bottom: 24px;
	margin-top: 10px;
}

.product-info__secondary {
	font-size: var(--16px);
	margin-top: 24px;
}

.product-info__logo {
	align-items: start;
	aspect-ratio: 410 / 104;
	display: flex;
	flex-direction: column;
	height: 104px;
	justify-content: center;
	max-width: 410px;
	min-width: 0;
	width: 100%;

	img {
		max-height: 100%;
		max-width: 100%;
	}
}

.gallery {
	display: flex;
	flex-direction: column;
}

.gallery__window {
	aspect-ratio: 4 / 3;
	border: 1px solid var(--color-black);
	box-shadow: 0 4px 4px rgba(0,0,0,0.25);
	display: flex;
	overflow: hidden;
	position: relative;
}

.gallery__image {
	height: 100%;
	object-fit: cover;
	overflow-clip-margin: unset;
	width: 100%;
}

.gallery__image--1 {
	transition: margin 0.4s;
}

.gallery__nav {
	background: transparent;
	border: 0;
	padding: 10px;
	cursor: pointer;
	margin-top: -21.5px;
	position: absolute;
	top: 50%;

	img {
		height: 23px;
		width: 23px;
	}
}

.gallery__nav--next {
	right: 0;

	img {
		transform: scaleX(-1);
	}
}

.gallery__thumbs {
	display: grid;
	gap: 10px;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	margin-top: 20px;
}

.gallery__thumb {
	aspect-ratio: 4 / 3;
	border: 2px solid var(--color-black);
	cursor: pointer;
	overflow: hidden;
	padding: 0;
	transition: border 0.4s;

	img {
		height: 100%;
		object-fit: cover;
		overflow-clip-margin: unset;
		width: 100%;
	}
}

.gallery__thumb--active {
	border-color: var(--color-red);
}

.add-to-cart {
	display: flex;
	gap: 10px;
	max-width: 645px;
	width: 100%;
}

.add-to-cart__button {
	background: transparent;
	border: 3px solid var(--color-red);
	color: var(--color-white);
	cursor: pointer;
	display: inline-block;
	flex-grow: 1;
	font-family: var(--font-family-headline);
	font-size: var(--28px);
	font-weight: var(--font-weight-headline);
	padding: 0.2857em 0.7143em;
	text-align: center;
	text-decoration: none;
	transition: color 0.4s;

	&:hover, &:focus {
		color: var(--color-red);
	}
}

.out-of-stock, .presale {
	background: transparent;
	border: 3px solid var(--color-red);
	color: var(--color-white);
	display: block;
	font-family: var(--font-family-headline);
	font-size: var(--28px);
	font-weight: var(--font-weight-headline);
	padding: 0.2857em 0.7143em;
	text-align: center;
	text-decoration: none;
	transition: color 0.4s;
}

.presale:hover, .presale:focus {
	color: var(--color-red);
}

.popmake-title {
	font-family: var(--font-family-headline) !important;
}

.popmake-content {
	form {
		margin-top: 20px;
	}

	input[type=email] {
		background: transparent;
    	border: 2px solid white;
    	width: 100%;
    	padding: 8px 12px;
    	color: var(--color-white);
    	outline: 0;
	}

	input[type=submit] {
		background: transparent;
		border: 3px solid var(--color-red);
		cursor: pointer;
		font-family: var(--font-family-headline);
		font-size: var(--22px);
		font-weight: var(--font-weight-headline);
    	width: 100%;
		margin-top: 15px;
    	padding: 8px 12px;
    	color: var(--color-white);
    	outline: 0;
		transition: color 0.4s;

		&:hover, &:focus {
			color: var(--color-red);
		}
	}

	.wpcf7-response-output {
		margin: 0;
		padding: 12px;
		text-align: center;
	}
}

.add-to-cart__quantity {
	align-items: center;
	border: 3px solid var(--color-red);
	color: var(--color-white);
	display: flex;
	justify-content: center;
	position: relative;
	width: var(--width-cart-quantity);
}

.add-to-cart__value {
	font-family: var(--font-family-headline);
	font-size: var(--28px);
	font-weight: var(--font-weight-headline);
	pointer-events: none;
	user-select: none;
}

.add-to-cart__decrement,
.add-to-cart__increment {
	background: transparent;
	border: 0;
	color: var(--color-white);
	cursor: pointer;
	height: 100%;
	padding: 0 8px;
	position: absolute;
	top: 0;
	transition: color 0.4s;

	&:hover, &:focus {
		color: var(--color-red);
	}
}

.add-to-cart__decrement {
	left: 10px;
}

.add-to-cart__increment {
	right: 10px;
}

.page-content {
	font-size: var(--18px);
	margin: 0 auto;
	max-width: var(--max-width-page);
	padding: 40px var(--padding-x-default) 60px;

	h1 {
		font-size: var(--40px);
		line-height: 1.2;
		margin-bottom: 30px;
		text-align: center;
	}
}

.contact-content {
	display: flex;
	flex-direction: var(--flex-direction-contact);
	font-size: var(--18px);
	gap: var(--gap-contact);
	margin: 0 auto;
	max-width: var(--max-width-page);
	padding: 40px var(--padding-x-default) 60px;
}

.contact-form {
	form {
		margin-top: 4px;
	}

	input[type=text],
	input[type=email],
	textarea {
		border: 3px solid var(--color-white);
		background: #272727;
		color: var(--color-white);
		margin-top: 16px;
		padding: 5px 10px;
		transition: border 0.2s, background 0.2s, box-shadow 0.2s;
		width: 100%;

		&:hover, &:focus, &:focus-visible {
			background: var(--color-gray);
			border-color: var(--color-red);
			box-shadow: inset 0 0 5px var(--color-black);
			outline: 0;
		}

		&::placeholder {
			color: #999;
		}
	}

	input[type=submit] {
		background: transparent !important;
		border: 3px solid var(--color-red) !important;
		border-radius: 0 !important;
		color: var(--color-white) !important;
		cursor: pointer;
		display: inline-block !important;
		font-family: var(--font-family-headline) !important;
		font-size: var(--28px) !important;
		font-weight: var(--font-weight-headline) !important;
		margin-top: 16px;
		padding: 0.2857em 0.7143em !important;
		text-align: center !important;
		text-decoration: none !important;
		transition: color 0.4s !important;
		width: 100%;

		&:hover, &:focus {
			color: var(--color-red) !important;
		}
	}

	.wpcf7-response-output {
		margin: 0 !important;
	}
}

.our-story {
	font-size: var(--18px);
	margin: 0 auto;
	max-width: var(--max-width-page);
	padding: 40px var(--padding-x-default) 60px;

	> h1 {
		margin-top: 0 !important;
	}
}

.about-content {
	h2 {
		font-size: 2em;
	}
}

.the-team {
	margin: 0 auto;
	max-width: var(--max-width-page);
	padding: 40px var(--padding-x-default) 60px;
}

.the-team__highlights {
	display: flex;
	flex-direction: column;
	font-size: var(--20px);
	gap: 40px;
	margin-top: 40px;
}

.highlighted-team-member {
	align-items: var(--align-items-team-member);
	display: flex;
	flex-direction: var(--flex-direction-team-member);
	gap: var(--gap-team-member);

	h3 {
		font-size: 1.5em;
	}
}

.highlighted-team-member__info {
	flex-basis: 75%;
	flex-grow: 1;
}

.highlighted-team-member__photo {
	flex-basis: 25%;
	flex-grow: 1;

	img {
		border: 1px solid #000;
        box-shadow: 0 0 4px #000;
		height: auto;
		width: 100%;
	}
}

.the-team__additional {
	display: grid;
	font-size: var(--18px);
	gap: 40px;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	margin-top: 20px;
}

.the-team__additional-heading {
	margin-top: 60px;
}

.additional-team-member {
		h3 {
			font-size: 1.35em;
		}
	}

.button-link {
	background: transparent;
	border: 3px solid var(--color-red);
	color: var(--color-white);
	display: inline-block;
	font-family: var(--font-family-headline);
	font-size: var(--28px);
	font-weight: var(--font-weight-headline);
	min-width: 12.5em;
	padding: 0.2857em 0.7143em;
	text-align: center;
	text-decoration: none;
	transition: color 0.4s;

	&:hover, &:focus {
		color: var(--color-red);
	}
}

.content__break {
	align-items: center;
	background: var(--color-red);
	display: flex;
	height: var(--height-content-break);
	justify-content: center;
	overflow: hidden;
	width: 100%;

	svg {
		color: var(--color-gray);
	}
}

.content__break--black {
	svg {
		color: var(--color-black);
	}
}

.ecwid-content {
	margin: 0 auto;
	max-width: var(--max-width-page);
	padding: 60px var(--padding-x-default);

	h1,
	h2,
	.ec-cart-next__header,
	.ec-cart-item__title {
		font-family: var(--font-family-headline) !important;
		font-weight: var(--font-weight-headline) !important;
		text-transform: uppercase !important;
	}

	a {
		color: var(--color-red);
	}

	.form-control__button {
		background: transparent !important;
		border: 3px solid var(--color-red) !important;
		border-radius: 0 !important;
		color: var(--color-white) !important;
		display: inline-block !important;
		font-family: var(--font-family-headline) !important;
		font-size: var(--28px) !important;
		font-weight: var(--font-weight-headline) !important;
		padding: 0.2857em 0.7143em !important;
		text-align: center !important;
		text-decoration: none !important;
		transition: color 0.4s !important;

		&:hover, &:focus {
			color: var(--color-red) !important;
		}
	}

	.form-control__text {
		border-radius: 0 !important;
	}

	.ec-cart__shopping.ec-cart-shopping {
		display: none;
	}
}

.site {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	grid-template-rows: 1fr auto;
	min-height: calc(100dvh - var(--y-offset-header));
}


.registration-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin: 30px auto 0;
	max-width: 800px;

	fieldset {
		border: 0;

		h2 {
			font-size: var(--28px);
		}

		h3 {
			font-size: var(--22px);
		margin-top: 1em;
		}

		h2:first-child, h3:first-child {
			margin-top: 0;
		}
	}


	select {
		border: 3px solid var(--color-white);
		background: #272727;
		color: var(--color-white);
		margin-top: 16px;
		padding: 5px 10px;
		transition: border 0.2s, background 0.2s, box-shadow 0.2s;
		width: 100%;
	}

	input[type=text], input[type=email], input[type=tel], input[type=date] {
		border: 3px solid var(--color-white);
		background: #272727;
		color: var(--color-white);
		margin-top: 16px;
		padding: 5px 10px;
		transition: border 0.2s, background 0.2s, box-shadow 0.2s;
		width: 100%;

		&:hover, &:focus, &:focus-visible {
			background: var(--color-gray);
			border-color: var(--color-red);
			box-shadow: inset 0 0 5px var(--color-black);
			outline: 0;
		}

		&::placeholder {
			color: #999;
		}
	}

	input[type=submit] {
		background: transparent;
		border: 3px solid var(--color-red);
		border-radius: 0;
		color: var(--color-white);
		cursor: pointer;
		display: inline-block;
		font-family: var(--font-family-headline);
		font-size: var(--28px);
		font-weight: var(--font-weight-headline);
		margin-top: 16px;
		padding: 0.2857em 0.7143em;
		text-align: center;
		text-decoration: none;
		transition: color 0.4s;
		width: 100%;

		&:hover, &:focus {
			color: var(--color-red);
		}
	}
}

.registration-form__two-fields {
	display: flex;
	flex-direction: var(--flex-direction-two-fields);
	gap: var(--gap-two-fields);
}

.registration-form__two-fields--field1,
.registration-form__two-fields--field2 {
	flex-grow: 1;
}

.registration-form__label-field {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 16px;

	label {
		font-weight: 700;
	}

	input {
		margin-top: 0 !important;
	}

	+ .registration-form__label-field {
		margin-top: 5px;
	}
}

.registration-form__label-field--term-agreement {
	border-top: 3px solid var(--color-red);
	margin: 30px 0 10px 0;
	padding-top: 20px;
}

.registration-form__privacy-notice {
	font-size: var(--16px);
	margin-top: 2em !important;
}

.registration-form__submission-error {
	background: red;
    margin-top: 30px;
    font-weight: 700;
    padding: 15px;
    font-size: var(--20px);
    text-align: center;
}

.registration-form__submission-success {
	background: green;
    font-weight: 700;
    padding: 15px;
    font-size: var(--20px);
    text-align: center;
}

.nowrap {
	white-space: nowrap;
}

.registration-form__processing {
	border: 3px solid red;
	border-top: 0;
	width: 100%;
	height: 17px;
	--c: var(--color-white) 0 10px,var(--color-red) 0 20px;
	background: repeating-linear-gradient(135deg,var(--c)) left top, repeating-linear-gradient( 45deg,var(--c)) left bottom;
	background-size:  200% 50%;
	background-repeat: no-repeat;
	margin-top: 0;
	animation: l4 8s infinite linear;
}

@keyframes l4 {
	100% {background-position:top right,bottom right}
}

.is--wysiwyg-content a, .cross-sell__link {
	color: var(--color-white);
	position: relative;
	text-decoration: none;
	text-shadow: 2px 2px 2px var(--color-black);
	transition: color 0.4s;
	white-space: nowrap;
	z-index: 1;

	&:before {
		background: var(--color-red);
		bottom: 0;
		content: '';
		display: block;
		height: 2px;
		left: 0;
		position: absolute;
		right: 0;
		z-index: -1;
	}

	&:hover, &:focus {
		color: var(--color-red);
	}
}

.is--wysiwyg-content {
	> :first-child {
		margin-top: 0;
	}

	overflow: hidden;

	h1, h2, h3, h4 {
		margin-bottom: 0;
		margin-top: 1.5em;
		text-align: left;

		+ p {
			margin-top: 0.25em !important;
		}
	}

	h1 + h2 {
		margin-top: 0;
	}

	h2 + h3 {
		margin-top: 0;
	}

	h3 + h4 {
		margin-top: 0;
	}

	h1 {
		font-size: 2em;
	}

	h2 {
		font-size: 1.5em;
	}

	h3 {
		font-size: 1.35em;
	}

	h4 {
		font-size: 1.2em;
	}

	ul, ol {
		padding-left: 28px;
	}

	p:not(:first-child),
	ol:not(:first-child),
	ul:not(:first-child) {
		margin-top: 1em;
	}

	li:not(:first-child) {
		margin-top: 0.25em;
	}

	img {
		border: 1px solid #000;
    	box-shadow: 0 0 4px #000;

		&.alignright {
			float: right;
			height: auto;
			margin: 0 0 2em 2em;
			max-width: 30%;
		}

		&.alignleft {
			float: left;
			height: auto;
			margin: 0 2em 2em 0;
			max-width: 30%;
		}

		&.aligncenter {
			display: block;
			margin-left: auto;
			margin-right: auto;
			max-width: 100%;
		}
	}

	.alignright {
		float: right;
	}

	.alignleft {
		float: left;
	}

	.aligncenter {
		display: block;
		margin-left: auto;
		margin-right: auto;
	}
}

.is--hidden {
	display: none;
}

.has--equal-widths {
	> * {
		flex-basis: 0;
		flex-grow: 1;
		min-width: 0;
	}
}

.has--no-animation {
	transition: none !important;
}

.screen-reader-text {
	position: absolute;
	left: -10000px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.ec-cart-widget {
	display: none;
}

.postid-561 {
	.product-info__logo {
		margin-top: -50px;
	}
}

.menu-buttons {
	list-style-type: none;
	margin: 0 auto;
	max-width: 400px;
	padding: 0;
	width: 100%;

	li + li {
		margin-top: 20px;
	}

	a {
		display: block;
    	border: 3px solid var(--color-red);
    	color: var(--color-white);
    	font-family: var(--font-family-headline);
    	font-size: var(--28px);
    	font-weight: var(--font-weight-headline);
    	padding: 0.2857em 0.7143em;
    	text-align: center;
    	text-decoration: none;
    	transition: color 0.4s;

		&:hover {
			color: var(--color-red);
		}
	}
}

.cross-sell__label {
	margin-top: 34px;
}

.cross-sell__label, .cross-sell h4 {
	font-family: var(--font-family-headline);
	font-size: 22px;
	font-weight: var(--font-weight-headline);
	line-height: 1.1;
	text-transform: uppercase;
}

.cross-sell__pricing {
	font-family: var(--font-family-headline);
	font-size: 20px;
	font-weight: var(--font-weight-headline);
	line-height: 1.1;
	margin-top: 4px;
}

.cross-sell__description {
	margin-top: 10px;
}

.cross-sell {
	border: 1px solid var(--color-white);
	display: flex;
	gap: 20px;
	margin-top: 6px;
	padding: 10px;
	position: relative;

	h4 {
		color: var(--color-red);
	}
}

.cross-sell__img {
	height: 140px;
	width: 140px;
}

.cross-sell__info {
	font-size: 16px;
}

.cross-sell__link {
	display: inline-block;
	margin-top: 4px;
	position: relative;
    z-index: 2;
}

.cross-sell__container-link,
.product-list__item-link {
	bottom: 0;
	display: block;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}

.product-list {
	display: flex;
	flex-direction: column;
	gap: 18px;
	list-style-type: none;
	padding: 0;
	margin: 36px 0 0 0;
}

.product-list__item {
	align-items: center;
	border-top: 1px solid var(--color-white);
	display: flex;
	flex-direction: row;
	gap: 15px;
	padding-top: 15px;
	position: relative;

	.button-link {
		font-size: var(--22px);
		margin-left: auto;
		min-width: 9.5em;
		position: relative;
    	z-index: 2;
	}
}

.product-list__photo {
	height: auto;
	width: 120px;
}

.product-list__info {
	h3, p {
		font-family: var(--font-family-headline);
		font-weight: var(--font-weight-headline);
	}

	h3 {
		font-size: var(--24px);
	}

	p {
		font-size: var(--22px);
	}
}

.marquee {
	background-color: var(--color-red);
	width: 100%;
	grid-column-gap: 1rem;
	position: fixed;
	display: flex;
	padding: 3px 0;
	overflow: hidden;
	z-index: 9999;
}

.marquee-content {
	align-items: center;
	color: var(--color-white);
	font-family: var(--font-family-headline);
	font-size: 24px;
	font-weight: var(--font-weight-headline);
	animation: scroll 15s linear infinite;
	min-width: 50%;
	grid-column-gap: 2rem;
	flex: none;
	justify-content: space-around;
	display: flex;
	padding: 0 0.5rem;

	img {
		height: 44px;
		width: auto;
	}
}

@keyframes scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(calc(-100% - 1rem));
	}
}

@media screen and (max-width: 999px) {
	.postid-561 {
		.product-info__logo {
			margin-top: -30px;
		}
	}

	.product-info__gallery,
	.product-info__info {
		display: contents;
	}
}

@media screen and (max-width: 1399px) {
	.featured-product {
		height: min(860px, calc(100vh - var(--y-offset-content)));
		min-height: 510px;
		flex-grow: 1;
	}

	:root {
		--width-cart-quantity: 150px;
	}
}

@media screen and (max-width: 1099px) {
	:root {
		--font-size-nav: 1.125rem;
	}

	.scalable-text {
		--8px: 0.43rem;
		--13px: 0.6875rem;
		--16px: 0.875rem;
  		--18px: 1rem;
		--20px: 1.125rem;
		--22px: 1.25rem;
		--24px: 1.375rem;
		--28px: 1.625rem;
		--36px: 2.125rem;
		--40px: 2.375rem;
		--48px: 2.875rem;
	}
}

@media screen and (max-width: 999px) {
	:root {
		--align-items-nav: start;
		--align-items-team-member: center;
		--display-header-dropdown: block;
		--display-header-menu-closed: none;
		--flex-direction-contact: column-reverse;
		--flex-direction-nav: column;
		--flex-direction-product-info: column;
		--flex-grow-header-branding: 0;
		--font-size-nav: 1.25rem;
		--gap-contact: 40px;
		--gap-header-wrapper: 30px;
		--gap-nav: 18px;
		--gap-product-info: 30px;
		--height-header: 60px;
		--max-width-logo: 160px;
		--padding-x-header: 20px;
		--padding-y-header: 10px;
		--y-offset-content: 60px;
	}

	.site-callout-enabled {
		--y-offset-content: 110px;
	}

	.scalable-text {
		--8px: 0.25rem;
		--13px: 0.5625rem;
		--16px: 0.75rem;
  		--18px: 0.875rem;
		--20px: 1rem;
		--22px: 1.125rem;
		--24px: 1.25rem;
		--28px: 1.5rem;
		--36px: 2rem;
		--40px: 2.25rem;
		--48px: 2.75rem;
	}

	.header__wrapper::before {
		background: var(--color-black);
		bottom: 0;
		content: '';
		display: block;
		left: 0;
		position: absolute;
		right: 0;
		top: 0;
		z-index: 2;
	}

	.header__content {
		background: var(--color-black);
		box-shadow: 0 0 8px var(--color-black);
		left: 0;
		padding: 24px 16px;
		position: fixed;
		right: 0;
		top: calc(var(--height-header) + var(--y-offset-header));
		transition: opacity 0.4s, margin 0.4s, visibility 0.4s;
		z-index: 1;
	}

	.header__content--opened {
		margin-top: 0;
		opacity: 1;
		pointer-events: all;
		visibility: visible;
	}

	.header__content--closed {
		opacity: 0;
		pointer-events: none;
		margin-top: -240px;
		visibility: hidden;
	}

	.featured-product {
		aspect-ratio: 36 / 39;
		height: auto;
		min-height: auto;
	}

	.product-info {
		gap: 0;
		padding-top: 40px;
	}

	.product-info__info {
		font-size: var(--22px);
	}

	.product-info__secondary {
		font-size: var(--20px);
	}

	.the-team__highlights {
		gap: 60px;
	}

	.the-team__additional {
		gap: 30px;
		grid-template-columns: 1fr 1fr;
	}

	.contact-form, .contact-info {
		flex-basis: auto;
	}

	.product-info__gallery .gallery {
		margin-top: 40px;
		order: 2;
        position: relative;
        top: 0;
	}

	.cross-sell__label {
		margin-top: 40px;
		order: 3;
	}

	.cross-sell {
		order: 4;
	}

	.is--wysiwyg-content {
		img {
			&.alignright {
				max-width: 50%;
			}

			&.alignleft {
				max-width: 50%;
			}
		}
	}
}

@media screen and (max-width: 799px) {
	:root {
		--flex-direction-callout: column;
		--flex-direction-team-member: column-reverse;
		--flex-direction-two-fields: column;
		--flex-wrap-footer: wrap;
		--gap-callout: 50px;
		--gap-footer-sections: 30px;
		--gap-team-member: 20px;
		--gap-two-fields: 0;
		--justify-content-socials: start;
		--margin-left-socials: 0;
		--width-footer-section: calc(50% - 15px);
	}

	.product-callout__media {
		padding-right: 0;
	}

	.product-callout__content {
		padding-left: 0;
	}

	.highlighted-team-member__info {
		flex-basis: 100%;
	}

	.highlighted-team-member__photo {
		align-self: start;
		flex-basis: 100%;

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

@media screen and (max-width: 782px) {
	.admin-bar {
		--y-offset-header: 46px;
	}
}

@media screen and (max-width: 719px) {
	:root {
		--flex-direction-featured: column;
		--height-content-break: 22px;
	}

	.featured-product__callout {
		p {
			font-size: min(4.5vw, 24px);
		}
	}

	.featured-product__tagline {
		font-size: min(5vw, 28px);
	}

	.featured-product {
		aspect-ratio: 36 / 43;
	}

	.is--wysiwyg-content {
		img {
			&.alignright, &.alignleft {
				display: block;
				float: none;
				margin-left: auto;
				margin-right: auto;
				max-width: 100%;
			}
		}
	}

	.product-list__item .button-link {
		display: none;
	}
}

.mejs-controls .mejs-time-rail .mejs-time-current {
	background: var(--color-red) !important;
}

.mejs-overlay-button {
	aspect-ratio: 1;
    background: url(static/play-button.svg) no-repeat !important;
    background-size: cover !important;
	height: auto !important;
	width: 20% !important;
}

.mejs-overlay.mejs-layer.mejs-overlay-play {
	background-color: rgba(0, 0, 0, 0.45);
	transition: background-color 0.4s;

	&:hover {
		background-color: rgba(0, 0, 0, 0);
	}
}

@media screen and (max-width: 499px) {
	:root {
		--flex-direction-footer: column;
		--padding-x-default: 20px;
		--width-footer-section: auto;
	}

	.button-link {
		max-width: 100%;
		min-width: 100%;
		width: 100%;
	}

	.ecwid-content {
		.form-control__button {
			max-width: 100% !important;
			min-width: 100% !important;
			width: 100% !important;
		}
	}

	.cross-sell {
		flex-direction: column;
	}
}
