/* Table of Contents
- Defaults
	- Forms & Buttons
	- Links
	- Lists
	- Objects & Images
	- Paragraphs
	- Screen Reader Text
	- Tables
	- Typography
- Structure and Layout
	- Site Container
	- Site Inner
- Common Classes
	- Author Box
	- Avatar
	- Breadcrumbs
	- Search Form
	- Titles
	- WordPress
- Skip Links & Accessibility
- Site Header
	- Title Area & Logo
- Site Navigation
	- Responsive Menu
	- Header Menu
	- Mobile Search
	- Footer Menu
- Archives
- Content Area
	- Entry Header & Entry Meta
	- Entry Content
	- Pagination
	- Entry Comments
- Widgets Areas & Widgets
	- Featured Content Widget
	- Sidebar
	- Topbar
	- Before Footer Widgets
	- Footer Widgets
- Site Footer
- Plugins
- Other Custom Styles
- Other Media Queries
- Print Styles
*/

/* Defaults
---------------------------------------------------------------------------- */

html {
	box-sizing: border-box;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

body {
	overflow-x: hidden;
}

/* Forms & Buttons
--------------------------------------------- */

input,
select,
textarea {
	background-color: var(--wp--preset--color--background);
	border: 1px solid var(--wp--preset--color--borderline);
	border-radius: 0;
	color: var(--wp--preset--color--foreground);
	font-family: var(--wp--preset--font-family--primary);
	font-size: var(--wp--preset--font-size--small);
	font-weight: var(--wp--custom--font-weight--regular);
	line-height: var(--wp--custom--line-height--medium);
	padding: 10px;
	width: 100%;
}

textarea {
	line-height: var(--wp--custom--line-height--body);
}

input:focus,
textarea:focus {
	border: 1px solid transparent;
	outline: 2px dashed var(--wp--preset--color--primary);
	outline-offset: -2px;
}

select:focus,
select:focus-visible {
	border: 1px dashed var(--wp--preset--color--primary);
	outline: none;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button,
.pagination a {
	-webkit-appearance: none;
	background-color: var(--wp--preset--color--primary);
	border: 0;
	border-radius: 0;
	color: var(--wp--preset--color--background);
	cursor: pointer;
	font-size: var(--wp--preset--font-size--small);
	font-weight: var(--wp--custom--font-weight--semi-bold);
	line-height: 1;
	padding: 12px 20px;
	text-align: center;
	text-decoration: none;
	white-space: normal;
	width: auto;
}

button:focus,
button:hover,
input[type="button"]:focus,
input[type="button"]:hover,
input[type="reset"]:focus,
input[type="reset"]:hover,
input[type="submit"]:focus,
input[type="submit"]:hover,
.button:focus,
.button:hover,
.pagination a:focus,
.pagination a:hover,
.pagination .active a {
	background-color: var(--wp--preset--color--primary);
	border-width: 0;
	color: var(--wp--preset--color--background);
	opacity: 0.8;
	text-decoration: none;
}

input[type="button"]:focus-visible,
input[type="reset"]:focus-visible,
input[type="submit"]:focus-visible {
	outline: 2px dashed var(--wp--preset--color--primary);
	outline-offset: 1px;
}

input[type="checkbox"],
input[type="image"],
input[type="radio"] {
	width: auto;
}

::-ms-input-placeholder {
	color: var(--wp--preset--color--foreground-tint);
	opacity: 1;
}

:-ms-input-placeholder {
	color: var(--wp--preset--color--foreground-tint);
	opacity: 1;
}

::placeholder {
	color: var(--wp--preset--color--foreground-tint);
	opacity: 1;
}

.button {
	display: inline-block;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button {
	display: none;
}

/* Links
--------------------------------------------- */

a {
	text-decoration: underline;
}

a:focus,
a:hover {
	opacity: 0.85;
	text-decoration: underline;
}

/* Lists
--------------------------------------------- */

.entry-comments ol,
.entry-comments ul,
nav ul,
section:not(.entry-content) ol,
section:not(.entry-content) ul {
	margin: 0;
	padding: 0;
}

li {
	list-style-type: none;
}

.entry-content li {
	font-family: var(--wp--preset--font-family--body-alt);
}

/* Objects & Images
--------------------------------------------- */

hr {
	border: 0;
	border-collapse: collapse;
	border-bottom: 1px solid var(--wp--preset--color--borderline);
	margin: 30px auto;
}

figure {
	margin: 0;
}

embed,
iframe,
img,
object,
video,
.wp-caption {
	max-width: 100%;
}

img {
	height: auto;
	vertical-align: top;
}

a img:focus,
a img:hover {
	opacity: 0.8;
}

/* Paragraphs
--------------------------------------------- */

p {
	margin-bottom: 25px;
	padding: 0;
}

.entry-content p {
	font-family: var(--wp--preset--font-family--body-alt);
}

/* Screen Reader Text
--------------------------------------------- */

.screen-reader-shortcut,
.screen-reader-text,
.screen-reader-text span {
	background-color: #fff !important;
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
	color: #000 !important;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap;
    word-wrap: normal !important;

}

.screen-reader-text:focus,
.screen-reader-shortcut:focus {
    background: var(--wp--preset--color--background);
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: var(--wp--preset--color--foreground);
    display: block;
    font-size: 1em;
    font-weight: var(--wp--custom--font-weight--semi-bold);
    height: auto;
    padding: 15px 23px 14px;
    text-decoration: none;
    width: auto;
    z-index: 100000;
}

/* Tables
--------------------------------------------- */

table {
	border-collapse: collapse;
	border-spacing: 0;
	margin-bottom: 40px;
	width: 100%;
	word-break: break-all;
}

tbody {
	border-bottom: 1px solid var(--wp--preset--color--borderline);
}

td,
th {
	line-height: 2;
	text-align: left;
	vertical-align: top;
}

td {
	padding: 0.5em;
}

tr {
	border-top: 1px solid var(--wp--preset--color--borderline);
}

th {
	font-weight: var(--wp--custom--font-weight--semi-bold);
	padding: 0.5em;
}

/* Typography
--------------------------------------------- */

b,
strong {
	font-weight: var(--wp--custom--font-weight--semi-bold);
}

em,
i {
	font-style: italic;
}

small {
	font-size: var(--wp--preset--font-size--small);
}


/* Structure and Layout
---------------------------------------------------------------------------- */

/* Site Container
--------------------------------------------- */

.site-container {
	word-wrap: break-word;
}

/* Site Inner
--------------------------------------------- */

.site-inner {
	clear: both;
	margin: 0 auto;
	max-width: 100%;
	overflow: hidden !important;
	padding: 25px 20px 0;
}

.first-block-align-full.full-width-content .site-inner,
.first-block-align-full.full-width-content .content-sidebar-wrap {
	padding-top: 0;
}

.content-sidebar-wrap {
    max-width: 1300px;
    margin: 0 auto;
}

@media only screen and (min-width: 1024px) {

	.site-inner {
		padding-top: 30px;
	}

}


/* Common Classes
---------------------------------------------------------------------------- */

/* Author Box & Author Archives
--------------------------------------------- */

.single-post .author-box {
	background-color: #F2F3F4;
	/* border: 1px solid var(--wp--preset--color--accent); */
	margin-bottom: 50px;
	overflow: hidden;
	padding: 30px 20px;
}

.author-box p {
    margin-bottom: 15px;
}

.author-box p:last-of-type {
	margin-bottom: 0;
}

.author-box .author-box-title {
	margin-bottom: 5px;
	margin-top: 5px;
}

.author-box-content {
	overflow: hidden;
}

.author-box p.social-links {
	align-items: center;
    display: flex;
    gap: 12px 16px;
    flex-wrap: wrap;
}

.author-box .more-articles-link {
	font-family: var(--wp--preset--font-family--secondary);
	font-size: var(--wp--preset--font-size--x-small);
}

.archive.author .archive-title {
	font-size: var(--wp--preset--font-size--medium);
}

.archive.author .archive-title::before {
	content: 'Articles by ';
}

.archive .author-box {
    max-width: 1040px;
    margin: 0 auto 20px;
	overflow: hidden;
}

@media only screen and (min-width: 768px) {

	.single-post .author-box,
	.archive .author-box {
		padding: 30px;
	}

}

/* Avatars
--------------------------------------------- */

.avatar,
.avatar img {
	border-radius: 50%;
	float: left;
}

.author-avatar .avatar {
	width: 36px;
}

.author-box .avatar,
.alignleft .avatar {
	margin-right: 20px;
}

.author-box .avatar {
	width: 70px;
}

.alignright .avatar {
	margin-left: 20px;
}

.comment .avatar {
	margin: 1px 10px 0 0;
	max-width: 30px;
}

/* Breadcrumbs
--------------------------------------------- */

.breadcrumb {
	font-size: var(--wp--preset--font-size--xx-small);
	margin: 0 0 8px;
}

.search .breadcrumb {
	font-size: var(--wp--preset--font-size--medium-small);
	margin-bottom: 30px;
}

.breadcrumb a {
	/* background-color: var(--wp--preset--color--secondary); */
	border: 1px solid var(--wp--preset--color--foreground);
	color: var(--wp--preset--color--foreground);
	font-size: var(--wp--preset--font-size--xxx-small);
	font-weight: var(--wp--custom--font-weight--bold);
	letter-spacing: 0.075em;
	margin-right: 3px;
	padding: 2px 7px;
	text-decoration: none;
	text-transform: uppercase;
}

/* .breadcrumb > span > span:nth-child(1) a {
	background-color: var(--wp--preset--color--secondary);
}

.breadcrumb > span > span:nth-child(2) a {
    background-color: var(--wp--preset--color--primary);
} */


/* Search Forms
--------------------------------------------- */

.search-form {
	overflow: hidden;
}

.entry-content .search-form {
	margin-bottom: 30px;
}

li.menu-item.search {
	display: none;
}

.post-password-form input[type="submit"],
.search-form input[type="submit"] {
	margin-top: 10px;
}

.widget_search input[type="submit"] {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	padding: 0;
	position: absolute;
	width: 1px;
}

.search-form {
	overflow: visible;
	position: relative;
}

.search-form-input {
	-webkit-appearance: none;
	background-color: var(--wp--preset--color--background);
	border: 1px solid var(--wp--preset--color--primary);
	font-size: var(--wp--preset--font-size--x-small);
	height: 42px;
	padding-right: 50px;
}

.search-form input[type="submit"] {
	background: transparent;
	background-color: var(--wp--preset--color--primary);
	background-image: url('../svg/icon-search.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 16px 16px;
	box-shadow: none;
	border: 0;
	border-radius: 0;
	clip: inherit;
	content: '';
	font-family: none;
	font-size: 0px;
	height: 42px;
	margin: 0;
	padding: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 42px;
}

.search-form input[type="submit"]:focus,
.search-form input[type="submit"]:hover {
	opacity: 0.8;
}

@media only screen and (min-width: 600px) {

	.entry-content .search-form {
		max-width: 300px;
	}

}

@media only screen and (max-width: 1023px) {

	.site-header .search-form {
		margin: 10px 0;
		width: 100%;
	}

}

@media only screen and (min-width: 1024px) {

	.site-header .search-form {
		margin-left: 10px;
		min-height: 72px;
		width: 200px;
	}

	li.menu-item.search {
		display: block;
	}

	.mobile-search,
	.mobile-search.activated {
		display: none;
	}

}

/* Titles
--------------------------------------------- */

.entry-title a,
.sidebar .widget-title a {
	color: var(--wp--preset--color--foreground);
	text-decoration: none;
}

.entry-title a:focus,
.entry-title a:hover {
	color: var(--wp--preset--color--primary);
	opacity: 1;
}

.widget-title {
	background-color: var(--wp--preset--color--accent);
	font-family: var(--wp--preset--font-family--primary);
	font-size: var(--wp--preset--font-size--xxx-small);
	font-weight: var(--wp--custom--font-weight--bold);
	letter-spacing: 0.075em;
	line-height: var(--wp--custom--line-height--body);
	margin-bottom: 15px;
	padding: 3px 10px;
	text-transform: uppercase;
}

/* WordPress
--------------------------------------------- */

a.aligncenter img {
	display: block;
	margin: 0 auto;
}

.alignleft {
	float: left;
	text-align: left;
}

.alignright {
	float: right;
	text-align: right;
}

a.alignleft,
a.alignnone,
a.alignright {
	max-width: 100%;
}

img.centered,
.aligncenter,
.singular-image {
	display: block;
	margin: 0 auto 30px;
}

.singular-image {
	margin-bottom: 3px;
}

img.alignnone,
.alignnone {
	margin-bottom: 15px;
}

a.alignleft,
img.alignleft,
.wp-caption.alignleft {
	margin: 0 20px 20px 0;
}

a.alignright,
img.alignright,
.wp-caption.alignright {
	margin: 0 0 20px 20px;
}

.entry-content p.wp-caption-text {
	margin-bottom: 0;
}

.entry-content .wp-audio-shortcode,
.entry-content .wp-playlist,
.entry-content .wp-video {
	margin: 0 0 30px;
}

.entry-content code {
	background-color: var(--wp--preset--color--background-shade);
}


/* Skip Links & Accessibility
---------------------------------------------------------------------------- */

.genesis-skip-link {
	margin: 0;
}

.genesis-skip-link .skip-link-hidden {
	display: none;
	visibility: hidden;
}

.genesis-skip-link li {
	height: 0;
	list-style: none;
	width: 0;
}

/* Display outline on focus */

:focus:not(:focus-visible) {
	outline: none
}

:focus-visible {
	outline-style: dashed;
	outline-color: var(--wp--preset--color--primary);
	outline-width: 2px;
}


/* Site Header
---------------------------------------------------------------------------- */

.site-header {
	background-color: var(--wp--preset--color--background);
	border-bottom: 1px solid var(--wp--preset--color--foreground);
	min-height: 55px;
	padding: 7px 10px 7px 20px;
	position: sticky;
	top: 0;
	width: 100%;
	z-index: 99999;
}

body.logged-in.admin-bar header.site-header {
	position: unset;
}

.site-header .wrap {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 auto;
	min-height: 40px;
	position: relative;
}

@media only screen and (max-width: 359px) {

	.site-header {
		padding-left: 10px;
		padding-right: 0;
	}

}

@media only screen and (min-width: 360px) and (max-width: 414px) {

	.site-header {
		padding-left: 15px;
		padding-right: 5px;
	}

}

@media only screen and (min-width: 1024px) {

	.site-header {
		padding: 15px 20px;
	}

}

/* Title Area & Logo
--------------------------------------------- */

.title-area {
	align-items: center;
	display: flex;
	min-height: 40px;
}

.wp-custom-logo .title-area {
	max-width: 220px;
	position: relative;
	width: 100%;
}

.wp-custom-logo .title-area img {
	width: auto;
}

.wp-custom-logo .custom-logo-link {
	display: flex;
}

.site-title {
	font-size: var(--wp--preset--font-size--large);
	font-weight: var(--wp--custom--font-weight--semi-bold);
	line-height: 1;
	margin-bottom: 0;
}

.site-title a {
	color: var(--wp--preset--color--foreground);
	text-decoration: none;
}

.site-description,
.wp-custom-logo .site-title {
	background-color: #fff !important;
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
	color: #000 !important;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap;
    word-wrap: normal !important;
}

@media (min-width: 360px) {

	.wp-custom-logo .title-area {
		max-width: 240px;
	}

}

@media only screen and (min-width: 1024px) {

	.wp-custom-logo .title-area {
		max-width: 261px;
	}

}

@media only screen and (min-width: 1440px) {

	.wp-custom-logo .title-area {
		margin-left: -44px;
	}

}

/* Site Navigation
---------------------------------------------------------------------------- */

.genesis-nav-menu {
	clear: both;
	display: flex;
	font-family: var(--wp--preset--font-family--body-alt);
	line-height: 1;
	width: 100%;
}

.genesis-nav-menu .menu-item {
	display: flex;
	flex-wrap: wrap;
	float: none;
	position: relative;
}

.genesis-nav-menu a {
	color: var(--wp--preset--color--foreground);
	display: inline-block;
	font-size: var(--wp--preset--font-size--xx-small);
	font-weight: var(--wp--custom--font-weight--bold);
	letter-spacing: 0.075em;
	outline-offset: -1px;
	padding-bottom: 12px;
	padding-top: 12px;
	text-decoration: none;
	text-transform: uppercase;
}

.genesis-nav-menu a:focus,
.genesis-nav-menu a:hover,
.genesis-nav-menu .current-menu-item>a,
.genesis-nav-menu .sub-menu .current-menu-item>a:focus,
.genesis-nav-menu .sub-menu .current-menu-item>a:hover {
	opacity: 1;
	color: var(--wp--preset--color--primary);
}

.genesis-nav-menu .sub-menu,
.genesis-nav-menu .sub-menu a {
	width: 100%;
}

.genesis-nav-menu .sub-menu {
	clear: both;
	display: none;
	left: -9999px;
	margin: 0;
	opacity: 1;
	padding: 0;
	position: static;
	width: 100%;
	z-index: 99;
}

.genesis-nav-menu .sub-menu a {
	display: inline-block;
	position: relative;
	width: auto;
	word-wrap: break-word;
}

.genesis-nav-menu .menu-item:focus,
.genesis-nav-menu .menu-item:hover {
	position: relative;
}

.genesis-nav-menu .menu-item:hover>.sub-menu {
	display: block;
	left: auto;
	opacity: 1;
}

/* Responsive Menu
--------------------------------------------- */

.menu .menu-item:focus {
	position: static;
}

.menu .menu-item>a:focus+ul.sub-menu,
.menu .menu-item.sfHover>ul.sub-menu {
	left: auto;
	opacity: 1;
}

.js .nav-primary {
	display: none;
}

.nav-primary .genesis-nav-menu .menu-item:hover>.sub-menu {
	display: none;
}

.menu-toggle,
.search-toggle,
.sub-menu-toggle {
	background-color: transparent;
	border-radius: 50%;
	border-width: 0;
	box-shadow: none !important;
	display: block;
	overflow: hidden;
	text-align: center;
	visibility: visible;
}

.search-toggle {
	margin-left: auto !important;
}

.menu-toggle:focus,
.menu-toggle:hover,
.search-toggle:focus,
.search-toggle:hover,
.sub-menu-toggle:focus,
.sub-menu-toggle:hover {
	background-color: transparent;
	border-width: 0;
}

.menu-toggle,
.search-toggle {
	margin: 0;
	padding: 10px;
	position: absolute;
	top: 0;
	z-index: 1000;
}

.menu-toggle {
	right: 0;
}

.search-toggle {
	right: 42px;
}

.menu-toggle::before {
	content: ' ';
	background-image: url('../svg/icon-menu-open.svg');
	background-size: 20px 20px;
	float: right;
	height: 20px;
	width: 20px;
}

.search-toggle::before {
	content: ' ';
	background-image: url('../svg/icon-search-open.svg');
	background-size: 20px 20px;
	float: right;
	height: 20px;
	width: 20px;
}

.menu-toggle.activated::before,
.search-toggle.activated::before {
	content: ' ';
	background-image: url('../svg/icon-menu-close.svg');
	background-size: 20px 20px;
	height: 20px;
	width: 20px;
}

.sub-menu-toggle {
	align-items: center;
	display: flex;
	float: right;
	padding: 10px;
	position: relative;
	z-index: 100;
}

.sub-menu-toggle::before {
	content: ' ';
	background-image: url('../svg/icon-down.svg');
	background-repeat: no-repeat;
	background-size: 12px 6px;
	display: inline-block;
	height: 6px;
	width: 12px;
}

.sub-menu-toggle.activated::before {
	transform: rotate(180deg);
}

@media only screen and (min-width: 375px) {

	.search-toggle {
		margin-right: 10px !important;
	}

}

@media only screen and (min-width: 1024px) {

	.genesis-nav-menu .menu-item {
		display: inline-block;
	}

	.genesis-nav-menu .menu-item:focus,
	.genesis-nav-menu .menu-item:hover {
		position: relative;
	}

	.genesis-nav-menu .sub-menu,
	.genesis-nav-menu .sub-menu a,
	.genesis-nav-menu .sub-menu .menu-item {
		width: 220px;
	}

	.genesis-nav-menu .sub-menu {
		background-color: var(--wp--preset--color--background);
		border: 1px solid var(--wp--preset--color--primary);
		box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
		opacity: 0;
		padding: 0;
		position: absolute;
		width: 220px;
	}

	.genesis-nav-menu .sub-menu a,
	.genesis-nav-menu .sub-menu .menu-item {
		width: 218px;
	}

	.genesis-nav-menu .sub-menu .sub-menu {
		margin: -50px 0 0 218px;
	}

	.genesis-nav-menu .sub-menu a:focus,
	.genesis-nav-menu .sub-menu a:hover,
	.genesis-nav-menu .sub-menu .current-menu-item>a:focus,
	.genesis-nav-menu .sub-menu .current-menu-item>a:hover {
		background-color: var(--wp--preset--color--primary-tint);
		box-shadow: none;
	}

	.menu-toggle,
	.search-toggle.mobile,
	.sub-menu-toggle {
		display: none;
		visibility: hidden;
	}

	.search-toggle {
		position: relative;
		right: unset;
	}

	.nav-primary .genesis-nav-menu a.search-toggle.desktop {
		padding: 5px;
	}

	li.menu-item.search-icon {
		margin-right: -15px;
		padding: 3px 0 0 15px;
	}

}

/* Header Menu
--------------------------------------------- */

.nav-primary {
	clear: left;
	padding: 0;
	position: relative;
	width: 100%;
}

.nav-primary a {
	padding: 10px;
}

.nav-primary .sub-menu a {
	margin: 0;
}

.nav-primary .genesis-nav-menu .cta {
	border-bottom: 0 !important;
}

.nav-primary .genesis-nav-menu .cta a {
	background-color: var(--wp--preset--color--cta);
	color: var(--wp--preset--color--foreground) !important;
}

.nav-primary .genesis-nav-menu .holiday a {
	background-color: var(--wp--preset--color--secondary);
	color: var(--wp--preset--color--background) !important;
}

@media only screen and (min-width: 360px) and (max-width: 414px) {

	.nav-primary .wrap {
		margin-left: -5px;
		margin-right: -5px;
	}

	.nav-primary a {
		padding: 10px 10px 10px 15px;
	}

}

@media only screen and (min-width: 415px) and (max-width: 1023px) {

	.nav-primary .wrap {
		margin-left: -10px;
		margin-right: -10px;
	}

	.nav-primary a {
		padding: 10px 10px 10px 20px;
	}

}

@media only screen and (max-width: 1023px) {

	.nav-primary {
		margin-left: -10px;
		width: calc(100% + 10px);
	}

	.nav-primary .wrap {
		/* border-top: 1px solid var(--wp--preset--color--borderline); */
		padding-bottom: 23px;
		padding-top: 7px;
		position: relative;
		top: 10px;
	}

	.nav-primary .genesis-nav-menu {
		flex-direction: column;
	}

	.nav-primary .genesis-nav-menu > .menu-item:not(:nth-last-child(-n+2)) {
		border-bottom: 1px solid var(--wp--preset--color--borderline);
		margin-bottom: 7px;
		padding-bottom: 10px;
	}
	
	.nav-primary .genesis-nav-menu .sub-menu > .menu-item {
		border-top: 1px solid var(--wp--preset--color--borderline);
		margin: 10px 0 0;
		padding-top: 7px;
	}

	.nav-primary .genesis-nav-menu .sub-menu a {
		padding-left: 25px;
	}

	.nav-primary .genesis-nav-menu .sub-menu .sub-menu a {
		padding-left: 35px;
	}

	.nav-primary li.menu-item.search-icon {
		display: none;
	}

	.nav-primary .genesis-nav-menu .cta a,
	.nav-primary .genesis-nav-menu .holiday a {
		margin-top: -10px;
    	margin-bottom: -10px;
		padding-top: 18px;
    	padding-bottom: 18px;
		width: 100%;
	}

}

@media only screen and (min-width: 1024px) {

	.nav-primary .menu-item.menu-item-has-children>a>span {
		align-items: center;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
	}

	.nav-primary .menu-item.menu-item-has-children>a>span::after {
		border-top: 1px solid;
		border-right: 1px solid;
		content: "";
		height: 6px;
		margin: -3px -3px 0 8px;
		-webkit-transform: rotate(135deg);
		transform: rotate(135deg);
		width: 6px;
	}

	.nav-primary .sub-menu .menu-item.menu-item-has-children>a>span {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}

	.nav-primary .sub-menu .menu-item.menu-item-has-children>a>span::after {
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	.js .nav-primary {
		display: block;
	}

	.nav-primary {
		clear: none;
		padding: 0;
		width: auto;
	}

	.nav-primary .genesis-nav-menu a {
		padding: 13px 16px;
	}

	.nav-primary .genesis-nav-menu .sub-menu a {
		margin: 0;
		padding: 16px;
	}

}

@media only screen and (min-width: 1160px) {

	.nav-primary .genesis-nav-menu .menu-item:not(:last-of-type) {
		margin: 0 25px 0 0;
	}

}

/* Mobile Search
--------------------------------------------- */

.mobile-search {
	clear: both;
	display: none;
	padding: 0 10px;
	width: 100%;
}

.mobile-search.activated {
	display: block;
}

.mobile-search .widget {
	margin-bottom: 0;
}

/* Footer Menu
--------------------------------------------- */

.nav-secondary {
	margin: 0 0 20px;
}

.nav-secondary .genesis-nav-menu {
	flex-wrap: wrap;
	justify-content: center;
	line-height: var(--wp--custom--line-height--body);
}

.nav-secondary .genesis-nav-menu .menu-item:not(:last-of-type) {
	margin: 0 5px 5px 0;
}

.nav-secondary .menu-item {
	display: inline-block;
}

.nav-secondary a {
	padding: 8px 12px;
}

/* Archives
---------------------------------------------------------------------------- */

.archive-description {
	margin-bottom: 30px;
	margin-left: auto;
	margin-right: auto;
	max-width: 800px;
}

.archive-title {
	font-size: var(--wp--preset--font-size--xx-large);
	margin-bottom: 5px;
}

.search .archive-description {
	display: none;
}

.subcategory-dropdown,
.category-dropdown-wrapper {
	margin-bottom: 30px;
	margin-left: auto;
	margin-right: auto;
	margin-top: -10px;
	max-width: 800px;
}

.category-dropdowns {
    display: flex;
	flex-direction: column;
    gap: 10px;
}

.category-dropdowns select,
.subcategory-dropdown select {
    appearance: none;
    -webkit-appearance: none; /* For Safari */
    -moz-appearance: none; /* For Firefox */
	background: var(--wp--preset--color--secondary-tint);
	border: 2px solid var(--wp--preset--color--secondary);
	border-radius: 0;
	cursor: pointer;
	font-family: var(--wp--preset--font-family--primary);
    font-size: var(--wp--preset--font-size--small);
    font-weight: var(--wp--custom--font-weight--semi-bold);
}

.category-dropdowns select::-ms-expand,
.subcategory-dropdown select::-ms-expand {
    display: none; /* Remove the default arrow in IE */
}

/* Add a custom arrow */
.category-dropdowns select,
.subcategory-dropdown select {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 140 140"><polygon points="70,98 28,56 112,56" style="fill:%23000;"/></svg>') !important;
    background-repeat: no-repeat !important;
    background-position: right 5px center !important;
    background-size: 12px !important;
}

/* Adjust the padding to accommodate the custom arrow */
.category-dropdowns select,
.subcategory-dropdown select {
    padding-right: 25px !important;
}

.category-dropdowns select option,
.subcategory-dropdown select option {
    background-color: var(--wp--preset--color--background);
	border: 2px solid var(--wp--preset--color--secondary);
	border-radius: 0;
    padding: 5px;
}

.category-dropdowns select:first-of-type,
.subcategory-dropdown select {
	border: 2px solid var(--wp--preset--color--secondary);
}

.category-dropdowns select:first-of-type:focus-visible,
.subcategory-dropdown select:focus-visible {
	border: 2px dashed var(--wp--preset--color--secondary);
    outline: none;
}

.category-dropdowns select:nth-of-type(2) {
	background: var(--wp--preset--color--primary-tint);
    border: 2px solid var(--wp--preset--color--primary);
}

.category-dropdowns select:nth-of-type(2):focus-visible {
	border: 2px dashed var(--wp--preset--color--primary);
    outline: none;
}

.category-dropdowns select:last-of-type {
	background: var(--wp--preset--color--accent-tint);
	border: 2px solid var(--wp--preset--color--accent);
}

.category-dropdowns select:last-of-type:focus-visible {
	border: 2px dashed var(--wp--preset--color--accent);
    outline: none;
}

.popular-now {
	clear: both;
}

.archive:not(.woocommerce) .content {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 20px 10px;
	margin-bottom: 50px;
}

.archive .content article {
	margin-bottom: 0;
}

.archive .content .entry-header {
	align-items: center;
	display: flex;
    flex-direction: row;
	gap: 10px;
}

.archive .content .entry-image-link {
	flex-basis: 40%;
}

.archive .content .title-subtitle-wrapper {
    flex-basis: 60%;
}

.archive .content .breadcrumb {
	margin-bottom: 5px;
}

.archive .content .breadcrumb a {
	background-color: unset;
	color: var(--wp--preset--color--foreground);
	font-size: var(--wp--preset--font-size--xx-small);
	line-height: 1;
	padding: 0;
}

.archive .content .entry-title {
	font-size: var(--wp--preset--font-size--small);
	letter-spacing: 0;
	margin-bottom: 0;
	text-transform: none;
}

.archive .content .post_page_subtitle {
	font-size: var(--wp--preset--font-size--medium-smaller);
	margin: 10px 0 0;
}

.archive .entry-content p,
.archive .entry-footer,
.post-type-archive-web-story .entry-content {
	display: none !important;
	margin: 0;
}

.archive article img,
.archive article picture {
	display: block;
	margin-bottom: 0;
	aspect-ratio: 16 / 9;
    width: 100%;
    object-fit: cover;
}

.archive.paged .archive-description p,
.archive.paged:not(.search) .content::before {
	display: none;
}

@media only screen and (min-width: 360px) {

	.archive:not(.woocommerce) .content {
		grid-gap: 30px 15px;
	}
	
	.archive .entry-title {
		font-size: var(--wp--preset--font-size--medium-smaller);
	}

}

@media only screen and (max-width: 399px) {

	.archive .content .breadcrumb {
		display: none;
	}

}

@media only screen and (min-width: 400px) {

	.archive .content .entry-header {
		gap: 15px;
	}

	.archive .content .entry-image-link {
		flex-basis: 50%;
	}
	
	.archive .content .title-subtitle-wrapper {
		flex-basis: 50%;
	}

}

@media only screen and (min-width: 460px) {

	.archive .content .entry-title {
		font-size: var(--wp--preset--font-size--medium);
	}

}

@media only screen and (max-width: 599px) {

	.archive .content .post_page_subtitle {
		display: none;
	}

	.archive-description p:not(.is-style-kicker) {
		font-size: var(--wp--preset--font-size--small);
	}

}

@media only screen and (min-width: 600px) {

	.category-dropdowns {
		flex-direction: row;
		gap: 10px;
	}

}

@media only screen and (min-width: 680px) {

	.archive .content .entry-title {
		font-size: var(--wp--preset--font-size--x-large);
	}

	.subcategory-dropdown select {
		max-width: 260px;
	}

}

@media only screen and (min-width: 768px) {

	.archive.full-width-content .content {
		max-width: 100%;
		width: 100%;
	}

}

@media (min-width: 1024px) {

	.archive-description {
		float: left;
		margin-bottom: 15px;
		padding-right: 3%;
		width: 58%;
	}

	.archive.category-home .archive-description {
		max-width: 100%;
		width: 100%;
	}

	.archive .category-dropdown-wrapper {
		float: left;
		width: 42%;
	}

	.category-dropdown-wrapper {
		margin-top: 13px;
	}

	.archive .subcategory-dropdown {
		margin-top: 10px;
		float: right;
	}

	.archive .content .entry-header {
		gap: 20px;
	}

	.archive .content .entry-image-link {
		flex-basis: 60%;
	}
	
	.archive .content .title-subtitle-wrapper {
		flex-basis: 40%;
	}

	.archive .content .entry-title {
		font-size: var(--wp--preset--font-size--xx-large);
	}

}

@media (min-width: 1200px) {

	.archive .content .entry-header {
		gap: 25px;
	}

	.archive .content .entry-title {
		font-size: var(--wp--preset--font-size--xxx-large);
	}

	.archive .content .post_page_subtitle {
		font-size: var(--wp--preset--font-size--medium);
	}

}

/* Content Area
---------------------------------------------------------------------------- */

/* Entry Header & Entry Meta
--------------------------------------------- */

.page .entry-header,
.single-post .entry-header {
	margin-bottom: 25px;
}

.entry-title {
	clear: both;
	margin-bottom: 0;
}

.post_page_subtitle {
	clear: both;
	color: var(--wp--preset--color--foreground-tint);
	font-size: var(--wp--preset--font-size--medium-small);
	font-style: italic;
	font-weight: var(--wp--custom--font-weight--regular);
	line-height: var(--wp--custom--line-height--heading);
	margin: 8px 0 20px;
}

.entry-header .entry-meta {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 2px 15px;
  	margin: 0;
	min-height: 34px;
	padding: 0 0 0 10px;
  	position: relative;
}

.entry-header p {
	margin-bottom: 0;
}

.first-block-align-full.full-width-content .entry-header {
	margin-bottom: 0;
}

.entry-meta {
	font-size: var(--wp--preset--font-size--x-small);
	margin-bottom: 0;
}

.entry-author {
	font-family: var(--wp--preset--font-family--secondary);
}

.entry-author-link {
	font-weight: var(--wp--custom--font-weight--semi-bold);
	text-decoration: none;
}

.entry-date,
.entry-time,
.entry-modified-time {
	font-family: var(--wp--preset--font-family--primary) !important;
    font-size: var(--wp--preset--font-size--xxx-small);
    font-weight: var(--wp--custom--font-weight--bold);
    letter-spacing: 0.075em;
    text-transform: uppercase;
}

.entry-footer .entry-meta {
	border-top: 0;
	padding-top: 0;
}

.entry-categories,
.entry-tags {
	display: block;
}

.entry-comments-link {
	float: left;
	margin-right: 10px;
}

.entry-comments-link a {
	font-size: var(--wp--preset--font-size--xx-small);
	font-weight: var(--wp--custom--font-weight--semi-bold);
	margin-right: 0;
	position: relative;
	text-decoration: none;
	top: 1px;
}

.entry-comments-link a:focus,
.entry-comments-link a:hover {
	text-decoration: underline;
}

.featured-image-wrapper {
    margin-bottom: 20px;
}

.featured-image-wrapper .wp-caption-text {
    font-family: var(--wp--preset--font-family--body-alt);
    font-size: 12px;
	font-style: italic;
    margin-top: 8px;
    text-align: right;
    color: var(--wp--preset--color--foreground-tint);
}

@media (min-width: 768px) {

	.featured-image-wrapper .wp-caption-text {
		margin-bottom: -20px;
	}

}

/* Entry Content
--------------------------------------------- */

.content {
	position: relative;
	width: 100%;
}

.entry {
	margin-bottom: 50px;
}

.last-block-align-full .entry {
	margin-bottom: 0;
}

.entry-content ol>li {
	list-style-type: decimal;
	margin-bottom: 10px;
}

.entry-content ul>li {
	list-style-type: disc;
	margin-bottom: 10px;
}

.entry-content ol ul>li,
.entry-content ul ul>li {
	list-style-type: circle;
}

.entry-content ol ol,
.entry-content ul ul {
	margin-bottom: 0;
	margin-top: 0;
}

.after-entry {
	margin-bottom: 30px;
}

.after-entry {
	margin-top: 50px;
}

@media only screen and (min-width: 768px) {

	.content {
		margin-left: auto;
		margin-right: auto;
		max-width: 800px;
	}

	.home .content {
		max-width: 100%;
	}

}

@media only screen and (min-width: 1024px) {

	.content {
		float: left;
		max-width: 65%;
	}

	.full-width-content .content {
		float: none;
		margin-left: auto;
		margin-right: auto;
		max-width: 800px;
	}

	.home .content {
		max-width: 100%;
	}

}

@media only screen and (min-width: 1220px) {

	.content {
		max-width: 800px;
	}

	.home .content {
		max-width: 100%;
	}

}

/* Sticky Sponsored Banner
--------------------------------------------- */

.sponsored-banner {
	clear: both;
	left: 0;
	position: sticky;
	top: 55px;
	width: 100%;
	z-index: 99;
}

.sponsored-banner p,
.sponsored-banner img {
	margin-bottom: 0;
}

.sponsored-banner a {
	color: var(--wp--preset--color--foreground);
	font-size: var(--wp--preset--font-size--xx-small);
	margin: 0 !important;
	padding: 0 !important;
	text-decoration: none;
}

body.logged-in.admin-bar .sponsored-banner {
	position: unset;
}

.sponsored-banner form {
	display: none !important;
}

@media only screen and (min-width: 1024px) {

	.sponsored-banner {
		top: 71px;
	}

}

/* Pagination
--------------------------------------------- */

.pagination {
	clear: both;
}

.pagination div,
.pagination ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 50px auto 40px;
	padding: 0;
}

.comments-pagination div {
	margin: 30px auto 40px;
}

.pagination ul li {
	margin: 0 8px 15px 0;
}

.adjacent-entry-pagination {
	margin-bottom: 0;
}

.pagination a {
	font-size: var(--wp--preset--font-size--xx-small);
	padding: 5px 10px;
}

.comments-pagination a {
	padding: 9px 12px;
}

/* Entry Comments
--------------------------------------------- */

.entry-comments {
	font-size: var(--wp--preset--font-size--medium-small);
	margin-bottom: 50px;
	margin-top: 80px;
}

.entry-pings,
.entry-pings .reply {
	display: none;
}

.entry-comments h3:first-of-type {
	display: none;
}

.comment-reply-title {
	display: block !important;
	font-size: var(--wp--preset--font-size--large);
	margin-bottom: 10px;
}

#cancel-comment-reply-link {
	display: block;
	font-family: var(--wp--preset--font-family--primary);
	font-size: var(--wp--preset--font-size--x-small);
	font-weight: var(--wp--custom--font-weight--regular);
	line-height: var(--wp--custom--line-height--body);
	margin-top: 10px;
}

#cancel-comment-reply-link::before {
	background-image: url(../svg/icon-menu-close.svg);
	background-size: 12px 9px;
	content: "";
	display: inline-block;
	height: 9px;
	margin-right: 5px;
	width: 12px;
}

.comment-respond {
	background-color: var(--wp--preset--color--background-shade);
	clear: both;
	margin: 0 0 80px;
	padding: 20px;
}

li.comment .comment-respond {
	margin-bottom: 30px;
	margin-top: 30px;
}

.comment-respond,
.comment-reply {
	font-size: var(--wp--preset--font-size--x-small);
}

.comment-form {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.comment-respond p {
	margin-bottom: 0;
}

p.comment-form-comment,
p.comment-form-author,
p.comment-form-email {
	flex-basis: 100%;
}

.comment-form-comment textarea {
	max-height: 100px;
}

.comment-content p {
	margin-bottom: 20px;
}

.comment-list li {
	padding: 20px 0 0 20px;
	position: relative;
}

.comment-list li.depth-1:first-of-type::before {
	content: "Comments";
	font-family: var(--wp--preset--font-family--secondary);
	font-size: var(--wp--preset--font-size--large);
	font-weight: var(--wp--custom--font-weight--semi-bold);
	position: absolute;
	top: -30px;
	width: 100%;
}

.comment-reply a::before {
	background-image: url('../svg/icon-reply.svg');
	background-size: 12px 9px;
	content: "";
	display: inline-block;
	height: 9px;
	margin-right: 5px;
	width: 12px;
}

.comment-list .depth-1 {
	margin-bottom: 10px;
	padding-left: 0;
}

.comment-header {
	display: flex;
	flex-wrap: wrap;
	gap: 0 10px;
	justify-content: space-between;
	margin-bottom: 15px;
}

.comment-author-name {
	font-size: var(--wp--preset--font-size--x-small);
	font-weight: var(--wp--custom--font-weight--semi-bold);
}

.comment-author-name a {
	text-decoration: none;
}

.comment-author-name a:focus,
.comment-author-name a:hover {
	text-decoration: underline;
}

.comment-content {
	clear: both;
}

.comment-content ul>li {
	list-style-type: disc;
}

.comment-respond label {
	display: block;
	font-family: var(--wp--preset--font-family--secondary);
	font-weight: var(--wp--custom--font-weight--semi-bold);
	margin-bottom: 5px;
}

.comment-header p {
	margin-bottom: 0;
}

.comment-form-cookies-consent label {
	display: inline;
	padding-left: 5px;
}

.comment-time {
	font-size: var(--wp--preset--font-size--xx-small);
}

.comment-time-link,
.comment-time-link:focus,
.comment-time-link:hover {
	text-decoration: none;
}

.entry-comments article {
	border: 1px solid var(--wp--preset--color--borderline);
	padding: 20px;
}

.comment-list li.bypostauthor>article {
	border: 1px solid var(--wp--preset--color--primary);
	box-shadow: 0 0 20px rgb(0 0 0 / 7%);
}

p.comment-form-subscriptions {
	margin-left: -8px;
}

p.form-submit {
	width: 100%;
}

@media only screen and (min-width: 600px) {

	p.comment-form-author,
	p.comment-form-email {
		flex-basis: 48.7%;
	}

}

@media only screen and (min-width: 768px) {

	.comment-respond,
	.entry-comments article {
		padding: 30px;
	}

}


/* Widget Areas & Widgets
---------------------------------------------------------------------------- */

.widget {
	font-size: var(--wp--preset--font-size--small);
	margin-bottom: 0;
}

.after-entry .widget {
	font-size: var(--wp--preset--font-size--medium);
}

.widget p {
	margin-bottom: 20px;
}

.widget p:last-child,
.widget ul>li:last-of-type {
	margin-bottom: 0;
}

.widget ul>li:last-of-type {
	padding-bottom: 0;
}

.widget ol>li {
	list-style-position: inside;
	list-style-type: decimal;
	padding-left: 20px;
	text-indent: -20px;
}

.widget li li {
	border: 0;
	margin: 0 0 0 30px;
	padding: 0;
}

/* Sidebar
--------------------------------------------- */

@media only screen and (max-width: 1023px) {

	/* .sidebar {
		display: none;
	} */

}

@media only screen and (min-width: 1024px) {

	.sidebar-content .content {
		float: right;
	}

	.sidebar {
		float: right;
		max-width: 300px;
	}

	.sidebar-content .sidebar {
		float: left;
	}

}

@media only screen and (min-width: 1160px) {

	.sidebar {
		max-width: 336px;
	}

}

/* Featured Content Widget
--------------------------------------------- */

.featured-content .widget-wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 30px 20px;
	padding-top: 36px;
	position: relative;
}

.featured-content .widget-title {
	position: absolute;
}

.featured-content .widget-wrap a {
	margin: 0;
}

.sidebar .featured-content .widget-wrap {
	grid-template-columns: 1fr 1fr;
}

.sidebar .featured-content article {
	margin-bottom: 0;
}

.sidebar .featured-content .entry-title {
	font-size: var(--wp--preset--font-size--x-small);
	line-height: var(--wp--custom--line-height--heading);
	margin-bottom: 0;
}

.sidebar .featured-content article img,
.sidebar .featured-content article picture {
	aspect-ratio: 16 / 9;
	display: block;
	margin-bottom: 8px;
	object-fit: cover;
}

.sidebar .featured-content .entry-header {
	margin-bottom: 0;
}

@media only screen and (min-width: 768px) {

	.sidebar .featured-content .entry-title {
		font-size: var(--wp--preset--font-size--medium);
	}

}

@media only screen and (min-width: 1024px) {

	.sidebar .featured-content .entry-title {
		font-size: var(--wp--preset--font-size--x-small);
	}

}

/* Topbar
--------------------------------------------- */

.topbar {
	background-color: var(--wp--preset--color--foreground);
	clear: both;
	padding: 8px 20px;
	position: relative;
	text-align: center;
}

.topbar .wrap {
	display: flex;
	flex-direction: row;
	margin: 0 auto;
}

.topbar p {
	margin-bottom: 0;
}

.topbar .widget {
	font-size: var(--wp--preset--font-size--xx-small);
	margin-bottom: 0;
	width: 100%;
}

.topbar .widget:last-child {
	margin-bottom: 0;
}

.topbar .alignleft,
.topbar .alignright {
	margin: 0;
}

.topbar a {
	color: var(--wp--preset--color--background);
	text-decoration: none;
}

ul#menu-topbar {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    width: 100%;
}

@media only screen and (min-width: 1024px) {

	ul#menu-topbar {
		justify-content: flex-end;
	}

}

/* Trending Now (Before Footer Widgets)
--------------------------------------------- */

.trending-now {
	background-color: var(--wp--preset--color--background);
	border-top: 1px solid var(--wp--preset--color--foreground);
	clear: both;
	padding: 50px 20px;
}

.trending-now .wrap {
	margin: 0 auto;
	max-width: 1900px;
}

.trending-now .widget:last-of-type {
	margin-bottom: 0;
}

.trending-now .most-popular {
    margin: 0 auto;
}

/* Footer Widgets
--------------------------------------------- */

.footer-widgets {
	background-color: var(--wp--preset--color--foreground);
	clear: both;
	padding: 0 20px;
}

.footer-widgets .wrap {
	margin: 0 auto;
}

.footer-widgets .widget:last-of-type {
	margin-bottom: 0;
}

/* After Footer Widgets
--------------------------------------------- */

.after-footer-widgets {
	clear: both;
	padding: 40px 20px 0;
}

.after-footer-widgets .widget:last-of-type {
	margin-bottom: -40px;
}

/* Site Footer
---------------------------------------------------------------------------- */

.site-footer {
	background-color: var(--wp--preset--color--foreground);
	clear: both;
	color: var(--wp--preset--color--background);
	font-size: var(--wp--preset--font-size--xx-small);
	line-height: var(--wp--custom--line-height--body);
	padding: 40px 20px;
	text-align: center;
}

.site-footer p {
	font-family: var(--wp--preset--font-family--primary);
	margin-bottom: 0;
}

.site-footer a {
	color: var(--wp--preset--color--background);
}

/* Plugins
---------------------------------------------------------------------------- */

/* ConvertKit
--------------------------------------------- */

.formkit-form {
	background-color: var(--wp--preset--color--background) !important;
	border: 1px solid var(--wp--preset--color--foreground) !important;
	border-radius: 0 !important;
	box-shadow: 0 0 20px rgb(0 0 0 / 7%);
	margin-top: 40px !important;
	max-width: 100% !important;
}

.formkit-form h2 {
	color: var(--wp--preset--color--foreground) !important;
	font-size: var(--wp--preset--font-size--xx-large) !important;
	letter-spacing: 0;
	margin: 0.5em 0 !important;
	text-transform: none;
}

.formkit-form p {
	color: var(--wp--preset--color--foreground) !important;
}

.formkit-form[min-width~="600"] .formkit-fields[data-stacked="false"] {
    max-width: 600px !important;
    margin: 0 auto !important;
}

input.formkit-input {
	border: 1px solid var(--wp--preset--color--foreground) !important;
	border-radius: 0 !important;
	box-shadow: 0 0 20px rgb(0 0 0 / 5%);
	color: var(--wp--preset--color--foreground-tint) !important;
}

button.formkit-submit.formkit-submit {
	background-color: var(--wp--preset--color--cta) !important;
	border-radius: 0 !important;
	color: var(--wp--preset--color--foreground) !important;
}

.formkit-form .formkit-submit:hover > span {
	background-color: unset !important;
}

button.formkit-submit.formkit-submit:focus,
button.formkit-submit.formkit-submit:hover {
	opacity: 0.8;
}

.home .opt-in .formkit-form {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	margin: 0 0 20px !important;
	max-width: unset !important;
	min-height: 62px;
	padding: 0 !important;
	width: auto !important;
}

.home .opt-in .formkit-form .formkit-field {
    margin-left: 0 !important;
}

.home .opt-in .formkit-form .formkit-input {
	text-align: center !important;
}

.home .opt-in .formkit-form button.formkit-submit.formkit-submit {
	background-color: var(--wp--preset--color--primary) !important;
    color: var(--wp--preset--color--background) !important;
	font-size: var(--wp--preset--font-size--small) !important;
    font-weight: 600 !important;
}

.home .opt-in .formkit-form[min-width~="600"] .formkit-fields[data-stacked="false"] {
	max-width: 500px !important;
    margin: 0 !important;
}

.formkit-powered-by-convertkit-container {
	display: none !important;
}

.formkit-form[data-uid="a146782fa3"] [data-style="clean"] {
	padding: 0 !important;
    padding-top: 0 !important;
}

/* Quiz
--------------------------------------------- */

.quiz .site-inner,
.quiz .content-sidebar-wrap,
.quiz .content {
    height: 100vh !important;
    max-width: 100% !important;
    padding: 0 !important;
    width: 100% !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quiz iframe { 
    border-radius: 0 !important;
    height: 100% !important; 
    width: 100% !important; 
}

.quiz .entry {
    margin-bottom: 0 !important;
}

.quiz .tf-v1-widget iframe {
    height: 92.5vh !important;
    margin-top: -30px;
}

@media only screen and (min-width: 1024px) {

	.quiz .tf-v1-widget iframe {
		height: 92vh !important;
		margin-top: -5px;
	}

}

/* WooCommerce
--------------------------------------------- */

.woocommerce .site-inner {
	max-width: 1340px;
}

.woocommerce-shop h1.woocommerce-products-header__title.page-title {
	display: none;
}

h2.woocommerce-loop-product__title {
	color: var(--wp--preset--color--foreground-tint);
	font-size: 0.938rem !important;
	font-weight: var(--wp--custom--font-weight--regular);
	text-align: center;
}

.product-brand {
	color: var(--wp--preset--color--foreground-tint);
	font-size: var(--wp--preset--font-size--xxx-small) !important;
	text-align: center;
}

.wcpscwc-product-slider h2.woocommerce-loop-product__title,
.wcpscwc-product-slider .product-brand,
.wcpscwc-product-slider .button {
	display: none;
}

.wcpscwc-product-slider ul.products {
	margin: -20px 0 0;
	padding-left: 0;
}

.archive .wcpscwc-product-slider ul.products {
	margin: -20px -20px 0;
}

.woocommerce ul.products li.product a img {
	display: block;
	margin-bottom: 0;
	aspect-ratio: 1 / 1;
	width: 100%;
	object-fit: contain;
	padding: 30px;
}

ul.products.columns-4.slick-initialized.slick-slider {
	margin-bottom: 0 !important;
	padding-left: 0 !important;
}

@media only screen and (max-width: 599px) {

	.woocommerce ul.products li.product a img {
		padding: 15px;
	}

}

@media only screen and (min-width: 1460px) {

	.woocommerce .products ul, 
	.woocommerce ul.products {
		margin-left: -80px;
		margin-right: -80px;
	}

}

/* WooCommerce Shop Nav
--------------------------------------------- */

.shop-navigation-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 5px;
	margin: 0 auto;
    max-width: 1300px;
    padding: 10px 10px 0;
}

.shop-navigation-wrapper button,
.shop-navigation-wrapper select {
	background-color: var(--wp--preset--color--primary-tint);
    border: 1px solid var(--wp--preset--color--primary-tint);
	cursor: pointer;
    flex: 1 1 calc(33.333% - 16px);
	font-family: var(--wp--preset--font-family--primary);
	font-weight: var(--wp--custom--font-weight--semi-bold);
    font-size: var(--wp--preset--font-size--xxx-small) !important;
	padding: 4px 8px;
}

.shop-navigation-wrapper button {
    color: var(--wp--preset--color--foreground);
	padding: 4px 8px;
	text-align: left;
}

/* General styling for the select boxes */
.shop-navigation-wrapper select {
    appearance: none;
    -webkit-appearance: none; /* For Safari */
    -moz-appearance: none; /* For Firefox */

}

/* Styling for the select box arrows */
.shop-navigation-wrapper select:focus {
    outline: none; /* Remove the default outline */
    border-color: var(--wp--preset--color--primary-tint); /* Add a custom border color on focus */
}

.shop-navigation-wrapper select::-ms-expand {
    display: none; /* Remove the default arrow in IE */
}

/* Add a custom arrow */
.shop-navigation-wrapper select {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 140 140"><polygon points="70,98 28,56 112,56" style="fill:%23000;"/></svg>');
    background-repeat: no-repeat;
    background-position: right 5px center;
    background-size: 12px;
}

/* Adjust the padding to accommodate the custom arrow */
.shop-navigation-wrapper select {
    padding-right: 25px;
}

@media (min-width: 360px) {

	.shop-navigation-wrapper {
		padding: 15px 15px 0;
	}

}

@media (min-width: 375px) {

	.shop-navigation-wrapper button,
	.shop-navigation-wrapper select {
    	font-size: var(--wp--preset--font-size--xx-small) !important;
	}

}

@media (min-width: 415px) {

	.shop-navigation-wrapper {
		padding: 15px 20px 0;
	}

}

@media (min-width: 599px) {

	.shop-navigation-wrapper {
		gap: 8px;
	}

}


@media (min-width: 1400px) {

	.shop-navigation-wrapper {
		flex-wrap: nowrap;
		margin-top: 20px;
		padding: 0;
	}

}

/* WooCommerce Shop Collections
--------------------------------------------- */

.shop-collections-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 auto -20px;
    max-width: 100%;
    padding: 20px 10px 0;
    justify-content: space-between; /* Distribute items evenly */
}

.collection-item {
    width: calc(50% - 4px); /* For smaller screens */
    text-align: center;
}

.collection-item a {
    text-decoration: none !important;
}

.collection-item img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 8px;
}

.collection-item h2 {
    color: var(--wp--preset--color--foreground);
    font-size: var(--wp--preset--font-size--xx-small);
    margin-bottom: 10px;
}

.tax-product_collections .archive-content-wrapper {
    border-bottom: 1px solid var(--wp--preset--color--borderline);
    margin-bottom: 5px;
    padding-bottom: 15px;
}

.tax-product_collections .archive-description {
    margin-bottom: 0;
}

.sponsored-label.is-style-kicker {
	margin-bottom: 5px;
}

@media (min-width: 360px) {
    .shop-collections-wrapper {
        padding: 20px 15px 0;
    }
}

@media (min-width: 415px) {
    .shop-collections-wrapper {
        padding: 20px 20px 0;
    }
    .collection-item h2 {
        font-size: var(--wp--preset--font-size--x-small);
    }
}

@media (max-width: 599px) {
    .tax-product_collections .archive-featured-image img {
        aspect-ratio: 16 / 9;
        margin-top: -5px;
        margin-bottom: -5px;
    }
}

@media (min-width: 768px) {
    .shop-collections-wrapper {
        justify-content: space-between; /* Distribute items evenly */
    }

    .collection-item {
        flex: 1 1 calc(25% - 16px); /* 4 columns on desktop with gap adjustments */
        box-sizing: border-box; /* Include padding and border in width calculation */
    }
}

@media (min-width: 1400px) {

	.collection-item h2 {
		font-size: var(--wp--preset--font-size--medium);
	}

	body.collections .shop-collections-wrapper {
        justify-content: space-between; /* Distribute items evenly */
    }

    body.collections .collection-item {
        flex: 1 1 calc(20% - 16px); /* 5 columns on large screens */
    }

	.shop-collections-wrapper {
		gap: 20px 8px;
	}

}


/* WooCommerce Archives
--------------------------------------------- */

.archive-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.woocommerce.tax-product_cats .archive-description {
	float: none;
	padding: 0;
	text-align: center;
}

.woocommerce .archive-description p:last-of-type {
	margin-bottom: 0;
}

.archive-featured-image img {
	border: 1px solid var(--wp--preset--color--foreground);
}

@media (max-width: 599px) {

	.tax-product_collections .archive-featured-image img {
		aspect-ratio: 16 / 9;
		margin-top: -5px;
        margin-bottom: -5px;
	}

	.tax-product_collections .archive-title {
		font-size: var(--wp--preset--font-size--large);
		margin-bottom: 5px;
	}

	.woocommerce .archive-title {
		font-size: var(--wp--preset--font-size--large);
	}

	.woocommerce .archive-description p {
		font-size: var(--wp--preset--font-size--x-small);
	}

}

@media (min-width: 768px) {

	.archive-content-wrapper {
		align-items: center;
		flex-wrap: nowrap;
	}

	.woocommerce .archive-featured-image {
		width: 45%;
	}

	.woocommerce .archive-description {
		font-size: 90%;
        margin-bottom: 0;
		width: 55%;
	}

}

@media (min-width: 1024px) {

	.tax-product_collections .archive-content-wrapper {
		flex-direction: row-reverse;
		gap: 50px;
		margin-bottom: 15px;
		margin-top: 10px;
		padding-bottom: 40px;
	}

	.woocommerce .archive-featured-image {
		width: 50%;
	}

	.woocommerce .archive-description {
		font-size: 100%;
		width: 50%;
	}

}

@media (min-width: 1400px) {

	.woocommerce.tax-product_collections .archive-title {
		font-size: var(--wp--preset--font-size--xxx-large);
	}

}


/* WooCommerce Product Slider
--------------------------------------------- */

.wcpscwc-product-slider a {
	text-decoration: none;
}

.wcpscwc-product-slider button.slick-prev {
    background: url(../png/arrow-left.png) center center no-repeat !important;
	background-size: 15px 26px !important;
	filter: invert(1);
}

.wcpscwc-product-slider button.slick-next {
    background: url(../png/arrow-right.png) center center no-repeat !important;
	background-size: 15px 26px !important;
    filter: invert(1);
}

.wcpscwc-product-slider button.slick-next:hover, 
.wcpscwc-product-slider button.slick-next:focus,
.wcpscwc-product-slider button.slick-prev:hover, 
.wcpscwc-product-slider button.slick-prev:focus {
    background-color: rgba(0, 0, 0, 0) !important;
}

/* WordPress Popular Posts
--------------------------------------------- */

ul.wpp-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 25px 15px;
	margin: 0;
	padding: 0;
}

.most-popular .widget-title {
	display: table;
	padding: 1px 8px 4px;
	margin-bottom: 20px;
}

.wpp-list li {
	line-height: var(--wp--custom--line-height--heading);
	margin-bottom: 0;
	overflow: unset !important;
	position: relative;
}

.wpp-thumbnail {
	display: block;
	margin: 0 0 8px !important;
}

.wpp-list a.image-link {
	display: block;
}

.most-popular .is-style-kicker.has-background {
	border: 1px solid var(--wp--preset--color--foreground);
}

.trending-now .most-popular .is-style-kicker.has-background {
	border: 0;
}

.wpp-post-title {
	font-size: var(--wp--preset--font-size--x-small);
	font-weight: var(--wp--custom--font-weight--bold);
	line-height: var(--wp--custom--line-height--heading);
	margin-bottom: 0;
}

a.wpp-post-title {
	color: var(--wp--preset--color--foreground);
	display: table;
	text-decoration: none;
}

a.wpp-post-title:focus,
a.wpp-post-title:hover {
	color: var(--wp--preset--color--primary);
	opacity: 1;
	text-decoration: none;
}

.archive .content-sidebar-wrap .most-popular {
	clear: both;
	margin-bottom: 40px;
}

.archive .content-sidebar-wrap .most-popular .content {
	margin-bottom: 30px;
}

@media only screen and (max-width: 599px) {

	.archive .content-sidebar-wrap .most-popular ul.wpp-list {
		grid-gap: 12px;
		grid-template-columns: 1fr;
	}

	.archive .content-sidebar-wrap .wpp-thumbnail {
		display: none;
	}

	.archive .content-sidebar-wrap .most-popular ul.wpp-list li {
		padding-left: 28px;
		position: relative;
	}

	.archive .content-sidebar-wrap .most-popular ul.wpp-list li::before {
		content: url('../svg/icon-arrow.svg');
		position: absolute;
		left: 0;
		top: -3.5px;
		width: 16px;
		height: 16px;
	}

	.archive .content-sidebar-wrap .most-popular ul.wpp-list li:not(:last-child) {
		border-bottom: 1px solid var(--wp--preset--color--borderline);
		padding-bottom: 12px;
	}

}

@media only screen and (min-width: 768px) {

	.most-popular ul.wpp-list {
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}

	.trending-now ul.wpp-list {
		grid-template-columns: 1fr 1fr 1fr;
	}

	.wpp-post-title {
		font-size: var(--wp--preset--font-size--medium-small);
	}

}

@media only screen and (min-width: 1024px) {

	.trending-now ul.wpp-list {
		grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
		grid-gap: 25px;
	}

}

/* WP Nofication Bar
--------------------------------------------- */

.wpfront-notification-bar a {
	text-decoration: none;
}

.wpfront-notification-bar a:hover {
	text-decoration: underline;
}


/* Other Custom Styles
---------------------------------------------------------------------------- */

.home .entry,
.landing-page .entry {
	margin-bottom: 0;
}

.home .site-inner,
.home .content {
	max-width: 100%;
}

.home .site-inner, .home .content {
    max-width: 100%;
}

.affiliate-disclaimer {
	color: var(--wp--preset--color--foreground-tint);
	font-size: var(--wp--preset--font-size--xx-small);
	font-style: italic;
	margin-bottom: 20px;
}

.wpfront-notification-bar-spacer {
	min-height: 25px;
}

@media (max-width: 599px) {

	.home .the-latest {
		padding-top: var(--wp--preset--spacing--20) !important;
	}

	.home .the-latest .featured-post .wp-block-query ul.wp-block-post-template li {
		flex-direction: column;
		align-items: flex-start;
	}

	.home .the-latest .featured-post .wp-block-query .wp-block-post-title {
        font-size: var(--wp--preset--font-size--large) !important;
	}

	.brag-bar figure.wp-block-image.aligncenter.size-full.is-resized {
		display: flex;
	}

	.brag-bar .wp-block-columns.is-style-column-gap-20 {
		gap: 15px !important;
	}

	.brag-bar .gq {
		max-width: 140px !important;
        padding-right: 5px;
	}

	.brag-bar .mens-health {
		max-width: 80px !important;
	}

	.home .sg-at-home img {
		aspect-ratio: 16 / 6 !important;
		object-fit: cover;
	}

	.home .shopped-this-month {
		margin: -2px -8px -8px;
	}

}

@media (min-width: 1350px) {

	.home .site-inner, .home .content {
		min-width: 1300px !important;
	}

	.home .the-latest .wp-block-columns {
		min-height: 789px !important;
		width: 1300px !important;
	}

}

/* Other Media Queries
---------------------------------------------------------------------------- */

@media only screen and (max-width: 359px) {

	.after-footer-widgets,
	.before-footer-widgets,
	.footer-widgets,
	.site-footer,
	.site-inner,
	.topbar {
		padding-left: 10px;
		padding-right: 10px;
	}

}

@media only screen and (min-width: 360px) and (max-width: 414px) {

	.after-footer-widgets,
	.before-footer-widgets,
	.footer-widgets,
	.site-footer,
	.site-inner,
	.topbar {
		padding-left: 15px;
		padding-right: 15px;
	}

}

@media only screen and (min-width: 360px) {}

@media only screen and (min-width: 375px) {}

@media only screen and (min-width: 411px) {}

@media only screen and (max-width: 599px) {

	.home .hero {
		padding-bottom: 1px !important;
		padding-top: 20px !important;
	}

	.home .hero h1,
	.home .hero h2 {
		font-size: clamp(1.425rem, 0.1920604427113204rem + 6.164697786443398vw, 2.5rem) !important;
		margin-bottom: 15px;
	}

	.home .hero p {
		font-size: clamp(1rem, 0.7706158963183852rem + 1.1469205184080737vw, 1.2rem) !important;
		margin-bottom: 20px;
	}

	.home .hero .wp-block-buttons {
		margin-top: 0;
	}

	.home .hero .wp-block-button .wp-block-button__link,
	.home .level-up .wp-block-button .wp-block-button__link {
		font-size: var(--wp--preset--font-size--xx-small);
		padding-bottom: 10px;
		padding-left: 18px;
		padding-right: 18px;
		padding-top: 10px;
	}

	.home .hero .wp-block-button.is-style-outline .wp-block-button__link {
		padding-bottom: 8px;
		padding-top: 8px;
	}

	.home .new-on-blog {
		display: none;
	}

	.home .wp-block-post-excerpt {
		display: none;
	}

	.home .wp-block-column-is-layout-flow h2.is-style-kicker.has-background-background-color {
		display: none;
	}

	.home .wp-block-columns.is-style-column-gap-50 {
		gap: 20px !important;
	}

	.home .level-up img {
		width: 140px !important;
	}

	.home .level-up h3 {
		font-size: var(--wp--preset--font-size--large);
		margin-bottom: 10px;
	}

	.home .level-up p {
		font-size: var(--wp--preset--font-size--small);
		margin-bottom: 15px;
	}

	.home .level-up .wp-block-buttons {
		margin-bottom: 10px !important;
		margin-top: 0;
	}

	.archive .content article {
		border-bottom: 1px solid var(--wp--preset--color--borderline);
		padding-bottom: 20px;
	}

	.archive:not(.woocommerce) .content {
        grid-gap: 20px 15px;
    }

}

@media only screen and (min-width: 600px) {}

@media only screen and (max-width: 767px) {}

@media only screen and (min-width: 768px) {}

@media only screen and (max-width: 1023px) {}

@media only screen and (min-width: 1024px) {

	.before-footer-widgets .wrap,
	.site-header .wrap,
	.topbar .wrap {
		max-width: 1300px;
	}

	.site-header {
		height: 71px;
	}

}

@media only screen and (min-width: 1350px) {

	.home .hero .wp-block-columns {
		min-width: 1310px;
	}

}

@media only screen and (min-width: 1440px) {

	.home .hero .wp-block-columns {
		min-width: 1400px;
	}

	.home .opt-in .formkit-form {
		min-height: 62px;
	}

}

/* Print Styles
---------------------------------------------------------------------------- */

@media print {

	*,
	*::before,
	*::after {
		background: transparent !important;
		box-shadow: none !important;
		color: var(--wp--preset--color--foreground) !important;
		text-shadow: none !important;
	}

	a,
	a:visited {
		text-decoration: underline;
	}

	a[href]::after {
		content: " (" attr(href) ")";
	}

	abbr[title]::after {
		content: " (" attr(title) ")";
	}

	a[href^="javascript:"]::after,
	a[href^="#"]::after,
	.site-title>a::after {
		content: "";
	}

	thead {
		display: table-header-group;
	}

	img,
	tr {
		page-break-inside: avoid;
	}

	img {
		max-width: 100% !important;
	}

	@page {
		margin: 2cm 0.5cm;
	}

	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}

	blockquote,
	pre {
		border: 1px solid #999;
		page-break-inside: avoid;
	}

	.content,
	.content-sidebar {
		width: 100%;
	}

	button,
	input,
	select,
	textarea,
	.breadcrumb,
	.comment-edit-link,
	.comment-form,
	.comment-list .reply a,
	.comment-reply-title,
	.edit-link,
	.entry-comments-link,
	.entry-footer,
	.genesis-box,
	.header-widget-area,
	.hidden-print,
	.home-top,
	.nav-primary,
	.nav-secondary,
	.post-edit-link,
	.sidebar {
		display: none !important;
	}

	.title-area {
		text-align: center;
		width: 100%;
	}

	.site-title>a {
		margin: 0;
		text-decoration: none;
		text-indent: 0;
	}

	.site-inner {
		padding-top: 0;
		position: relative;
	}

	.author-box {
		margin-bottom: 0;
	}

	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		orphans: 3;
		page-break-after: avoid;
		page-break-inside: avoid;
		widows: 3;
	}


	img {
		page-break-after: avoid;
		page-break-inside: avoid;
	}

	blockquote,
	pre,
	table {
		page-break-inside: avoid;
	}

	dl,
	ol,
	ul {
		page-break-before: avoid;
	}

}