/* 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
	- Avatar
	- Genesis
	- Search Form
	- Titles
	- WordPress
- Skip Links
- 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
	- Topbar
	- Before Footer Widgets
	- Footer Widgets
- Site Footer
- Plugins
- Other Custom Styles
- 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--tertiary);
	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 dashed var(--wp--preset--color--foreground);
	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: 3px;
	color: var(--wp--preset--color--background);
	cursor: pointer;
	font-size: var(--wp--preset--font-size--x-small);
	font-weight: var(--wp--custom--font-weight--semi-bold);
	line-height: 1;
	padding: 10px 18px;
	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,
button[type="reset"]:focus-visible,
input[type="submit"]:focus-visible {
	outline: 1px dashed var(--wp--preset--color--foreground);
}

input[type="checkbox"],
input[type="image"],
input[type="radio"] {
	width: auto;
}

::-ms-input-placeholder {
	color: var(--wp--preset--color--foreground-light);
	opacity: 1;
}

:-ms-input-placeholder {
	color: var(--wp--preset--color--foreground-light);
	opacity: 1;
}

::placeholder {
	color: var(--wp--preset--color--foreground-light);
	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.8;
	text-decoration: underline;
	text-decoration-thickness: 2px;
}

/* 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;
}

/* Objects & Images
--------------------------------------------- */

hr {
	border: 0;
	border-collapse: collapse;
	border-bottom: 1px solid var(--wp--preset--color--tertiary);
	margin: 30px auto;
}

figure {
	margin: 0;
}

mark {
	background-color: var(--wp--preset--color--primary-light);
	color: var(--wp--preset--color--foreground);
}

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;
}

.responsive-iframe {
	position: relative;
	width: 100%;
	padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.responsive-iframe iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Paragraphs
--------------------------------------------- */

p {
	margin-bottom: 25px;
	padding: 0;
}

/* Screen Reader Text
--------------------------------------------- */

.screen-reader-shortcut,
.screen-reader-text,
.screen-reader-text span {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	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;
	/* Above WP toolbar. */
}

/* 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--tertiary);
}

td,
th {
	line-height: 2;
	text-align: left;
	vertical-align: top;
}

td {
	padding: 0.5em;
}

tr {
	border-top: 1px solid var(--wp--preset--color--tertiary);
}

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: 1240px;
	padding: 15px 20px 0;
}

.first-block-align-full.full-width-content .site-inner,
.first-block-align-full.full-width-content .content-sidebar-wrap {
	padding-top: 0;
}


/* Common Classes
---------------------------------------------------------------------------- */

/* Avatar
--------------------------------------------- */

.avatar,
.avatar img {
	border-radius: 50%;
	float: left;
}

.alignleft .avatar {
	margin-right: 20px;
}

.alignright .avatar {
	margin-left: 20px;
}

.comment .avatar {
	margin: 0 10px 0 0;
	max-width: 26px;
}

/* Genesis
--------------------------------------------- */

.after-entry,
.author-box {
	margin-bottom: 30px;
}

.after-entry {
	margin-top: 50px;
}

.archive-description {
	margin-bottom: 20px;
}

.author-box {
	background-color: var(--wp--preset--color--quaternary);
	border: 0;
	margin-bottom: 40px;
	max-width: 790px;
	overflow: hidden;
	padding: 30px 20px;
}

.author-info-wrapper {
	align-items: center;
	display: flex;
	gap: 15px;
	margin-bottom: 15px;
}

.archive.author .author-box {
	background: none;
	padding: 0;
}

.author-box p {
	margin-bottom: 15px;
}

.author-box p:last-of-type {
	margin-bottom: 0;
}

.author-box p.social-links {
	align-items: center;
    display: flex;
    gap: 12px 16px;
    flex-wrap: wrap;
}

.author-box .more-articles-link {
	font-size: var(--wp--preset--font-size--x-small);
}

.author-box .author-box-title {
	font-size: var(--wp--preset--font-size--large);
	margin-bottom: 0;
}

.author-box .author-title {
	font-size: var(--wp--preset--font-size--x-small);
	font-style: italic;
}

.author-box-content {
	font-size: var(--wp--preset--font-size--medium-small);
	overflow: hidden;
}

.breadcrumb {
	font-size: var(--wp--preset--font-size--xxx-small);
	font-weight: var(--wp--custom--font-weight--medium);
	margin: 0 0 3px;
}

.breadcrumb a {
	text-decoration: none;
}

.breadcrumb a:focus,
.breadcrumb a:hover {
	text-decoration: underline;
}

.archive:not(.search) .breadcrumb {
	display: none;
}

.search .breadcrumb {
	font-size: var(--wp--preset--font-size--medium);
	margin-bottom: 20px;
}

/* Custom Post Entry Meta
--------------------------------------------- */

.custom-post-excerpt {
	color: var(--wp--preset--color--foreground-light);
	font-size: var(--wp--preset--font-size--small);
    font-style: italic;
	line-height: 1.35;
	margin-bottom: 15px;
    margin-top: -6px;
}

.entry-meta-authors {
    display: flex;
    gap: 30px;
}

.custom-post-entry-meta {
	align-items: center;
    display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.author-info {
    display: flex;
}

.author-avatar {
    margin-right: 5px;
}

.author-details {
    display: flex;
    flex-direction: column;
	justify-content: center;
}

.entry-author {
    display: block;
	font-size: var(--wp--preset--font-size--xx-small);
	line-height: 1.2;
}

.entry-author-title,
.updated-date {
	display: block;
	font-size: 13px;
	font-style: italic;
}

.post-modified-date {
	line-height: 1.2;
}

.updated-label {
	color: var(--wp--preset--color--foreground-light);
	display: block;
	font-size: var(--wp--preset--font-size--xxx-small);
    font-weight: var(--wp--custom--font-weight--semi-bold);
}


/* Search Form
--------------------------------------------- */

.search-form {
	overflow: hidden;
}

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 {
	position: relative;
}

.search-form-input {
	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: 40px;
	padding-right: 50px;
}

.search-form input[type="submit"] {
	background: transparent;
	background-color: var(--wp--preset--color--primary);
	background-image: url('images/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: 38px;
	margin: 0;
	padding: 0;
	position: absolute;
	right: 1px;
	top: 1px;
	width: 38px;
}

.site-header .search-form input[type="submit"] {
	background-color: var(--wp--preset--color--primary-light);
}

.search-form input[type="submit"]:focus,
.search-form input[type="submit"]:hover {
	opacity: 0.8;
}

.site-header .search-form {
	margin-top: 10px;
	width: 100%;
}

/* 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);
	text-decoration: underline;
}

.widget-title {
	align-items: center;
    display: flex;
	font-family: var(--wp--preset--font-family--primary);
	font-size: var(--wp--preset--font-size--xxx-small);
	font-weight: var(--wp--custom--font-weight--semi-bold);
	letter-spacing: 0.075em;
	line-height: var(--wp--custom--line-height--body);
	margin-bottom: 20px;
	position: relative;
	text-transform: uppercase;
}

.widget-title:after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: var(--wp--preset--color--tertiary);
    flex: 1;
    margin-left: 10px;
}

/* 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;
}

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--quaternary);
}


/* Skip Links
---------------------------------------------------------------------------- */

.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--foreground);
	outline-offset: 1px;
}


/* Site Header
---------------------------------------------------------------------------- */

.site-header {
	animation: fadein 1s;
	background-color: var(--wp--preset--color--primary);
	padding: 5px 10px;
	position: sticky;
	top: 0;
	width: 100%;
	z-index: 999;
}

@keyframes fadein {

	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}

}

body.logged-in.admin-bar header.site-header {
	position: unset;
}

.site-header .wrap {
	margin: 0 auto;
	min-height: 36px;
}

.site-header .wrap {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

/* Title Area & Logo
--------------------------------------------- */

.wp-custom-logo .title-area {
	max-width: 189px;
	width: 100%;
}

.wp-custom-logo .title-area img {
	width: auto;
}

.wp-custom-logo .custom-logo-link {
	display: block;
}

.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 {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}


/* Site Navigation
---------------------------------------------------------------------------- */

.genesis-nav-menu {
	clear: both;
	display: flex;
	line-height: 1;
	width: 100%;
}

.genesis-nav-menu .menu-item {
	display: block;
	float: none;
	position: relative;
}

.genesis-nav-menu a {
	color: var(--wp--preset--color--background);
	display: inline-block;
	font-size: var(--wp--preset--font-size--x-small);
	font-weight: var(--wp--custom--font-weight--medium);
	outline-offset: -1px;
	padding-bottom: 12px;
	padding-top: 12px;
	text-decoration: none;
}

.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 {
	color: var(--wp--preset--color--tertiary);
	text-decoration: none;
}

.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 0 10px 20px;
	position: static;
	z-index: 99;
}

.genesis-nav-menu .sub-menu a {
	display: inline-block;
	font-size: var(--wp--preset--font-size--x-small);
	font-weight: var(--wp--custom--font-weight--regular);
	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;
}

.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 {
	order: -1;
}

.menu-toggle,
.search-toggle {
	margin: 0;
	padding: 10px;
	position: relative;
	z-index: 1000;
}

.menu-toggle::before {
	content: ' ';
	background-image: url('images/icon-menu-open.svg');
	background-size: 20px 20px;
	float: right;
	height: 20px;
	width: 20px;
}

.search-toggle::before {
	content: ' ';
	background-image: url('images/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('images/icon-menu-close.svg');
	background-size: 20px 20px;
	height: 20px;
	width: 20px;
}

.sub-menu-toggle {
	align-items: center;
	display: flex;
	float: right;
	height: 25px;
	padding: 5px;
	position: absolute;
	right: 6px;
	top: 8px;
	z-index: 100;
}

.sub-menu .sub-menu-toggle {
	padding: 12px 10px;
	right: 1px;
}

.sub-menu-toggle::before {
	content: ' ';
	background-image: url('images/icon-down.svg');
	background-repeat: no-repeat;
	background-size: 15px 8px;
	display: inline-block;
	height: 8px;
	width: 15px;
}

.sub-menu-toggle.activated::before {
	transform: rotate(180deg);
}

/* Header Menu
--------------------------------------------- */

.nav-primary {
	clear: left;
	padding: 10px 0;
	position: relative;
	width: 100%;
}

.nav-primary ul {
	flex-direction: column;
}

.nav-primary .genesis-nav-menu .sub-menu .menu-item:not(:last-of-type) {
	margin: 5px 0;
}

.nav-primary a {
	padding: 10px;
}

.nav-primary .sub-menu a {
	margin: 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-title {
	font-size: var(--wp--preset--font-size--xx-large);
}

.archive.author .archive-title {
	font-size: var(--wp--preset--font-size--large);
}

.archive.author .archive-title::before {
	content: 'Articles by ';
}

.archive-description p {
	font-size: var(--wp--preset--font-size--medium-small);
	max-width: 728px;
}

.search .archive-description {
	display: none;
}

.archive-description p:last-child {
	margin-bottom: 0;
}

.archive:not(.woocommerce) .content {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 30px;
	margin-bottom: 50px;
}

.archive article {
	margin-bottom: 0;
}

.archive .entry-title {
	font-size: var(--wp--preset--font-size--medium-small);
	font-weight: var(--wp--custom--font-weight--semi-bold);
	margin-bottom: 0;
	text-align: center;
}

.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: 8px;
}

.archive.paged .archive-description p,
.archive.paged:not(.search) .content::before {
	display: none;
}

.archive .subcategory-list {
	margin-bottom: 25px;
}

.archive .subcategory-list .widget-title {
    margin-bottom: 5px;
}

.archive .subcategory-list ul {
	display: flex;
	flex-wrap: wrap;
	gap: 5px 25px;
	margin: 0;
	padding: 0;
}

.archive .subcategory-list ul a {
	font-family: var(--wp--preset--font-family--secondary);
	font-size: var(--wp--preset--font-size--x-small);
	text-decoration: none;
}

/* Content Area
---------------------------------------------------------------------------- */

/* Entry Header & Entry Meta
--------------------------------------------- */

.page .entry-header,
.single-post .entry-header {
	margin-bottom: 20px;
}

.single-post .entry-title {
	margin-bottom: 12px;
}

.page .entry-title {
	font-size: var(--wp--preset--font-size--xx-large);
}

.entry-header .entry-meta {
	align-items: center;
	display: flex;
	display: none;
	flex-wrap: wrap;
	gap: 2px 25px;
  	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-link,
.entry-comments-link a {
	font-weight: var(--wp--custom--font-weight--semi-bold);
	text-decoration: none;
}

.entry-author-link:focus,
.entry-author-link:hover,
.entry-comments-link a:focus,
.entry-comments-link a:hover {
	text-decoration: underline;
	text-decoration-thickness: 2px;
}

.entry-date,
.entry-time,
.entry-modified-time {
	font-style: italic;
}

.entry-footer .entry-meta {
	border-top: 0;
	padding-top: 0;
}

.entry-categories,
.entry-tags {
	display: block;
}

/* Entry Content
--------------------------------------------- */

.content-sidebar-wrap {
	padding-top: 15px;
}

.single-post .content-sidebar-wrap {
	padding-top: 20px;
}

.content {
	position: relative;
}

.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;
}

/* 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(images/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--quaternary);
	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('images/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;
}

span.comment-author-name {
	font-size: var(--wp--preset--font-size--x-small);
	font-weight: var(--wp--custom--font-weight--semi-bold);
}

.comment-content {
	clear: both;
	font-size: var(--wp--preset--font-size--small);
}

.comment-content ul>li {
	list-style-type: disc;
}

.comment-respond label {
	display: block;
	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--tertiary);
	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%;
}


/* Widget Areas & Widgets
---------------------------------------------------------------------------- */

.widget {
	font-size: var(--wp--preset--font-size--small);
	margin-bottom: 50px;
}

.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;
}

/* Featured Content Widget
--------------------------------------------- */

.sidebar .featured-content .widget-wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 30px 20px;
	position: relative;
}

.sidebar .featured-content .widget-wrap:first-of-type {
	gap: 20px;
}

.sidebar .featured-content .widget-title {
	margin-bottom: -5px;
}

.sidebar .featured-content .widget-wrap a {
	margin: 0;
}

/* Topbar
--------------------------------------------- */

.topbar {
	background-color: var(--wp--preset--color--quaternary);
	clear: both;
	padding: 10px 20px;
	text-align: center;
}

.topbar .wrap {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin: 0 auto;
}

.topbar p {
	margin-bottom: 0;
}

.topbar .widget {
	font-size: var(--wp--preset--font-size--x-small);
	margin-bottom: 5px;
}

.topbar .widget:last-child {
	margin-bottom: 0;
}

.topbar .alignleft,
.topbar .alignright {
	margin: 0;
}

/* Before Footer Widgets
--------------------------------------------- */

.before-footer-widgets {
	background-color: var(--wp--preset--color--quaternary);
	clear: both;
	padding: 40px 20px;
}

.before-footer-widgets .wrap {
	margin: 0 auto;
}

.before-footer-widgets .widget:last-of-type {
	margin-bottom: 0;
}


/* Footer Widgets
--------------------------------------------- */

.footer-widgets {
	background-color: var(--wp--preset--color--quaternary);
	clear: both;
	padding: 0;
}

.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 {
	margin-bottom: 0;
}

.site-footer a {
	color: var(--wp--preset--color--quaternary);
	text-decoration: underline;
}

.site-footer a:focus,
.site-footer a:hover {
	text-decoration: underline;
}

/* Plugins
---------------------------------------------------------------------------- */

/* Carousel Slider Block
--------------------------------------------- */

.slick-dots li {
	height: 3px !important;
	margin: 0 8px !important;
    width: 15px !important;
}

.slick-dots li button {
	background-color: rgba(0, 0, 0, 0.35) !important;
	border-radius: 0 !important;
	padding: 0 !important;
	height: 3px !important;
	width: 15px !important;
}

.slick-dots li.slick-active button {
	background-color: var(--wp--preset--color--foreground) !important;
}

.slick-dots li button::before {
	content: none !important;
}

.slick-prev:before {
	background: transparent;
    border-bottom: 2px solid var(--wp--preset--color--foreground);
    border-left: 2px solid var(--wp--preset--color--foreground);
	border-radius: 0;
	content: '' !important;
    height: 25px;
    position: absolute;
    top: 40%;
	transform: rotate(45deg);
	width: 25px;
}

.slick-next:before {
	background: transparent;
    border-bottom: 2px solid var(--wp--preset--color--foreground);
    border-left: 2px solid var(--wp--preset--color--foreground);
	border-radius: 0;
	content: '' !important;
    height: 25px;
    position: absolute;
    top: 40%;
	transform: rotate(-135deg);
	width: 25px;
}

.slick-prev:focus,
.slick-next:focus,
.slick-prev:hover,
.slick-next:hover {
	opacity: 0.5;
}

.min-height-60 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 60px;
}

.max-width-300 {
	margin: 0 auto 10px;
	max-width: 300px;
}

.max-width-360 {
	margin: 0 auto 10px;
	max-width: 360px;
}

.max-width-400 {
	margin: 0 auto 10px;
	max-width: 400px;
}

.max-width-420 {
	margin: 0 auto 10px;
	max-width: 420px;
}

.max-width-500 {
	margin: 0 auto 10px;
	max-width: 500px;
}

@media (max-width: 767px) {

	.min-height-60 {
		min-height: 110px !important;
		max-width: 300px !important;
		margin: 0 auto 10px !important;
	}
	
}

@media (max-width: 1099px) {

	.slick-prev:before {
		left: 20px;
	}

	.slick-next:before {
		right: 20px;
	}

}

@media (min-width: 1100px) {

	.slick-prev:before {
		left: -30px;
	}

	.slick-next:before {
		right: -30px;
	}

}

@media (min-width: 1300px) {

	.slick-prev:before {
		left: -60px;
	}

	.slick-next:before {
		right: -60px;
	}

}

@media (min-width: 1500px) {

	.slick-prev:before {
		left: -90px;
	}

	.slick-next:before {
		right: -90px;
	}

}

@media (min-width: 1700px) {

	.slick-prev:before {
		left: -110px;
	}

	.slick-next:before {
		right: -110px;
	}

}

/* Cookie Consent
--------------------------------------------- */

.comment-form-cookies-consent label {
    font-weight: var(--wp--custom--font-weight--regular);
}

/* Easy Table of Contents
--------------------------------------------- */

#ez-toc-container {
    background: var(--wp--preset--color--background) !important;
    border: 1px solid var(--wp--preset--color--tertiary) !important;
    border-radius: 0 !important;
    box-shadow: 0 0 20px rgb(0 0 0 / 7%) !important;
    margin-bottom: 30px !important;
    padding: 20px !important;
}

#ez-toc-container ul {
	list-style-type: disc !important;
	overflow: unset !important;
	padding-left: 20px !important;
}

#ez-toc-container li, 
#ez-toc-container ul, 
#ez-toc-container ul li, 
div.ez-toc-widget-container, 
div.ez-toc-widget-container li {
	list-style-type: disc !important;
	overflow: visible;
}

#ez-toc-container ul ul, 
.ez-toc div.ez-toc-widget-container ul ul {
    margin-left: 0;
}

#ez-toc-container ul ul li {
	list-style-type: circle !important;
}

#ez-toc-container a {
    color: var(--wp--preset--color--primary);
    text-decoration: underline;
    margin: 4px 0;
}

#ez-toc-container a:focus,
#ez-toc-container a:hover {
	text-decoration-thickness: 2px;
}

.ez-toc-title-container {
    align-items: center;
    display: flex;
	margin-bottom: 10px;
	position: relative;
}

div#ez-toc-container p.ez-toc-title {
	display: block;
    font-family: var(--wp--preset--font-family--primary);
    font-size: var(--wp--preset--font-size--xxx-small);
    font-weight: var(--wp--custom--font-weight--semi-bold);
    letter-spacing: 0.075em;
    line-height: var(--wp--custom--line-height--body);
    text-transform: uppercase;
}

.ez-toc-title-container:after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: var(--wp--preset--color--quaternary);
    flex: 1;
    margin-left: 10px;
	margin-right: -20px;
}

.ez-toc-title-container:before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: var(--wp--preset--color--quaternary);
    margin-left: -20px;
    position: absolute;
    width: 10px;
}

/* Image Hotspot
--------------------------------------------- */

.drag_element {
    cursor: pointer;
}

#powerTip {
    background-color: rgba(0,0,0,.7);
    font-size: var(--wp--preset--font-size--x-small);
    border-radius: 0;
}

#powerTip p {
	margin-bottom: 0;
}

.images_wrap img {
    margin-bottom: 25px;
}

/* Lasso
--------------------------------------------- */

.lasso-container {
	border: 1px solid var(--wp--preset--color--tertiary);
    box-shadow: 0 0 20px rgb(0 0 0 / 7%);
    margin: 40px auto 30px !important;
}

.lasso-title, 
a.lasso-title {
	font-size: var(--wp--preset--font-size--large) !important;
	margin: 10px 0 5px 0 !important;
}

.lasso-flow a.lasso-button-1, 
.lasso-flow a.lasso-button-2 {
    border-radius: 3px;
	font-size: var(--wp--preset--font-size--xx-small);
	font-weight: var(--wp--custom--font-weight--semi-bold) !important;
}

a.lasso-button-1:focus, 
a.lasso-button-2:focus,
a.lasso-button-1:hover, 
a.lasso-button-2:hover {
    opacity: 0.8 !important;
}

.lasso-badge {
    background-color: var(--wp--preset--color--foreground);
	box-shadow: none;
	font-weight: var(--wp--custom--font-weight--semi-bold) !important;
}

.lasso-end,
.lasso-disclosure span {
    line-height: 1;
}

.lasso-fields-single {
    border-bottom: 1px solid var(--wp--preset--color--quaternary);
}

.lasso-fields-single strong {
	display: inline-block !important;
}

.lasso-flow a.lasso-button-1, .lasso-flow a.lasso-button-2 {
    display: table;
    width: calc(50% - 10px);
    float: left;
}

.lasso-fields-2 li, 
.lasso-fields-3 li {
    margin: 5px !important;
}

@media (min-width: 600px) {

	.lasso-fields-pros {
		float: left;
		margin-right: 20px !important;
		width: calc(50% - 10px);
	}

	.lasso-fields-cons {
		float: left;
		width: calc(50% - 10px);
	}


}

@media (max-width: 767.98px) {

	.lasso-badge {
		top: -22px;
		left: 50%;
		transform: translateX(-50%);
		padding: 10px;
		white-space: nowrap;
	}

	.lasso-flow .lasso-box-1 {
		padding: 0 !important;
	}

	.lasso-flow .lasso-box-2 {
    	padding: 0 15px 15px !important;
	}

	.lasso-fields-single strong {
		min-width: 155px !important;
	}

}

@media (min-width: 767.99px) {

	.lasso-badge {
		left: unset !important;
		right: -10px !important;
	}

	.lasso-title, 
	a.lasso-title {
		margin: -2px 0 5px 0 !important;
	}

	.lasso-flow .lasso-box-2 {
    	padding: 15px !important;
	}

	.lasso-fields-single strong {
		min-width: 170px !important;
	}

}

/* Mailchimp
--------------------------------------------- */

.mc4wp-form-basic form {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
	justify-content: center;
}

.entry-content .mc4wp-form-basic form {
	max-width: 400px;
    margin: 0 auto;
}

.mc4wp-form-basic form .first-column,
.mc4wp-form-basic form .third-column {
    width: 100%;
}

.mc4wp-form-basic form .first-column p,
.mc4wp-form-basic form .third-column p {
    margin-bottom: 0;
}

.mc4wp-form-basic form input {
	border: 0;
	font-size: var(--wp--preset--font-size--x-small);
	height: 40px;
	text-align: center;
	width: 100%;
}

.mc4wp-form-basic form input[type="submit"] {
	background-color: var(--wp--preset--color--primary-light);
	border: 1px solid var(--wp--preset--color--quaternary);
}

/* Related Posts by Taxonomy
--------------------------------------------- */

.related-gallery {
	display: grid;
	grid-gap: 20px;
	grid-template-columns: 1fr;
}

.related-gallery .gallery-item {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 10px;
}

.related-gallery .gallery-item .wp-caption-text {
	background: none;
	font-family: var(--wp--preset--font-family--secondary);
	font-size: var(--wp--preset--font-size--small);
	font-weight: var(--wp--custom--font-weight--semi-bold);
	line-height: var(--wp--custom--line-height--heading);
	margin: 0;
	padding: 0;
	text-align: center;
}

.related-gallery .gallery-item .wp-caption-text a {
	color: var(--wp--preset--color--foreground);
	text-decoration: none;
}

.related-gallery .gallery-item .wp-caption-text a:focus,
.related-gallery .gallery-item .wp-caption-text a:hover {
	color: var(--wp--preset--color--primary);
	text-decoration: underline;
}

@media only screen and (min-width: 600px) {

	.related-gallery {
		grid-template-columns: 1fr 1fr;
	}

}


/* Tag Groups
--------------------------------------------- */

.tag-groups-tag-list {
	column-gap: 20px !important;
	margin-top: 20px;
}

.tag-groups-alphabetical-index h3, .tag-groups-tag-list h3 {
    font-size: var(--wp--preset--font-size--large);
	margin: 0 0 5px !important;
}

span.tag-groups-label {
    font-size: var(--wp--preset--font-size--small) !important;
}

.tag-groups-tag-list-tags {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

@media only screen and (min-width: 520px) {

	.tag-groups-tag-list {
		column-count: 3 !important;
	}

}

@media only screen and (min-width: 768px) {

	.tag-groups-tag-list {
		column-count: 4 !important;
	}

}

@media only screen and (min-width: 860px) {

	.tag-groups-tag-list {
		column-count: 5 !important;
	}

}

@media only screen and (min-width: 1024px) {

	.tag-groups-tag-list {
		column-count: 6 !important;
	}

}

/* WordPress Popular Posts
--------------------------------------------- */

ul.wpp-list {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 30px 20px;
}

.wpp-list li {
	line-height: var(--wp--custom--line-height--heading);
	margin-bottom: 0;
	overflow: unset !important;
	text-align: center;
}

.wpp-thumbnail {
	display: block;
	margin: 0 0 8px !important;
}

.wpp-list a.image-link {
	display: block;
}

.wpp-post-title {
	font-family: var(--wp--preset--font-family--secondary);
	font-size: var(--wp--preset--font-size--medium);
	font-weight: var(--wp--custom--font-weight--semi-bold);
	line-height: var(--wp--custom--line-height--heading);
	margin-bottom: 0;
	text-align: center;
}

.before-footer-widgets a.wpp-post-title,
.sidebar a.wpp-post-title {
	font-size: var(--wp--preset--font-size--small);
}

a.wpp-post-title {
	color: var(--wp--preset--color--foreground);
	text-decoration: none;
}

a.wpp-post-title:focus,
a.wpp-post-title:hover {
	color: var(--wp--preset--color--primary);
	text-decoration: underline;
}

.archive .most-popular {
	clear: both;
	margin-bottom: 30px;
}

.archive .most-popular ul.wpp-list {
	gap: 30px;
	grid-template-columns: 1fr;
	margin: 0;
	padding: 0;
}

@media only screen and (min-width: 768px) {

	.before-footer-widgets ul.wpp-list {
		grid-template-columns: 1fr 1fr;
	}

}

@media only screen and (min-width: 1024px) {

	.before-footer-widgets ul.wpp-list {
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}

}

/* Other Custom Styles
---------------------------------------------------------------------------- */

.home .entry,
.landing-page .entry {
	margin-bottom: 0;
}

.affiliate-disclosure {
	background-color: var(--wp--preset--color--quaternary);
	font-size: var(--wp--preset--font-size--xxx-small);
	font-style: italic;
	margin-bottom: 20px;
	padding: 10px 15px;
}

#reblex-widget-4 .is-style-kicker:before {
    display: none;
}

/* 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;
	}

	.site-header {
		padding-left: 10px;
		padding-right: 10px;
	}

}

@media only screen and (min-width: 375px) {

	.wp-custom-logo .title-area {
		max-width: 239px;
	}

	.custom-post-entry-meta {
		gap: 12px;
	}
	
	.author-avatar {
		margin-right: 10px;
	}

}

@media only screen and (min-width: 390px) {

	.custom-post-entry-meta {
		gap: 15px;
	}

}

@media only screen and (min-width: 414px) {

	.custom-post-entry-meta {
		gap: 20px;
	}

}

@media only screen and (min-width: 420px) {

	.archive:not(.woocommerce) .content {
		grid-template-columns: 1fr 1fr;
		grid-gap: 30px 20px;
	}

	.custom-post-entry-meta {
		gap: 25px;
	}

}

@media only screen and (max-width: 599px) {

	.author-box-content {
		font-size: var(--wp--preset--font-size--small);
	}


}

@media only screen and (min-width: 600px) {

	.entry-content .search-form {
		max-width: 300px;
	}

	p.comment-form-author,
	p.comment-form-email {
		flex-basis: 48.7%;
	}

	#ez-toc-container {
		padding: 20px 20px 20px 40px !important;
	}

	.ez-toc-title-container:before {
		margin-left: -40px;
		width: 30px;
	}

	.custom-post-entry-meta {
		gap: 35px;
	}

}

@media only screen and (min-width: 741px) {

	.after-entry .wp-block-media-text__media img {
		aspect-ratio: 4 / 5;
    	object-fit: cover;
	}

}

@media only screen and (min-width: 768px) {

	.content {
		margin-left: auto;
		margin-right: auto;
		max-width: 728px;
	}

	.author-box {
		padding: 30px;
	}

	.comment-respond,
	.entry-comments article {
		padding: 30px;
	}

	.archive.full-width-content .content {
		max-width: 100%;
		width: 100%;
	}

	.archive:not(.woocommerce) .content {
		display: grid;
		gap: 30px;
		grid-template-columns: 1fr 1fr 1fr;
	}

	.after-entry .about-container {
		font-size: var(--wp--preset--font-size--medium);
	}

	.featured-content .widget-wrap {
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}

	.after-entry .mc4wp-form-basic form {
		flex-direction: unset;
		margin-bottom: 5px;
		flex-wrap: wrap;
	}

	.after-entry .mc4wp-form-basic form .first-column, 
	.after-entry .mc4wp-form-basic form .third-column {
		width: unset;
	}

	.after-entry div#mce-responses {
		width: 100%;
		flex-basis: 100%;
	}

}

@media only screen and (min-width: 830px) {

	.author-box {
		margin: 20px auto 50px;
	}

}

@media only screen and (max-width: 859px) {

	.nav-primary ul {
		gap: 15px;
		margin: 10px 0;
	}

	.genesis-nav-menu a {
		font-size: var(--wp--preset--font-size--medium-large);
	}

	.genesis-nav-menu .sub-menu a {
		font-size: var(--wp--preset--font-size--medium);
	}

	.nav-primary .genesis-nav-menu .sub-menu .menu-item:not(:last-of-type) {
		margin: 10px 0;
	}

}

@media only screen and (min-width: 860px) {

	.site-header {
		padding: 10px 20px;
	}

	.nav-primary .genesis-nav-menu {
		flex-direction: row;
	}

	.genesis-nav-menu .menu-item {
		display: inline-block;
	}

	.nav-primary .genesis-nav-menu .menu-item:not(:last-of-type) {
		margin: 0 10px 0 0;
	}

	.nav-primary .genesis-nav-menu .sub-menu .menu-item:not(:last-of-type) {
		margin: 0;
	}

	.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: 210px;
	}

	.genesis-nav-menu .sub-menu {
		background-color: var(--wp--preset--color--primary);
		border: none;
		box-shadow: none;
		margin-top: 1px;
		opacity: 0;
		padding: 0 0 5px;
		position: absolute;
	}

	.genesis-nav-menu .sub-menu .sub-menu {
		margin: -38px 0 0 210px;
	}

	.genesis-nav-menu .sub-menu .sub-menu a {
		font-size: var(--wp--preset--font-size--xxx-small);
		line-height: 1.25;
	}

	.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 {
		box-shadow: none;
	}

	.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: -1px -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;
	}

	.menu-toggle,
	.search-toggle,
	.sub-menu-toggle {
		display: none;
		visibility: hidden;
	}

	.nav-primary {
		clear: none;
		padding: 0;
		width: auto;
	}

	.nav-primary .genesis-nav-menu a {
		padding: 11px 12px;
	}

	.nav-primary .genesis-nav-menu .sub-menu a {
		margin: 0;
		padding: 11px 14px;
	}

	li.menu-item.search {
		display: block;
	}

	.site-header .search-form {
		margin-top: 0;
		width: 170px;
	}

	.mobile-search,
	.mobile-search.activated {
		display: none;
	}

	.archive .content {
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}

	.archive .most-popular ul.wpp-list {
		grid-template-columns: 1fr 1fr;
	}

	.archive .subcategory-list ul {
		gap: 8px 30px;
	}

}

@media only screen and (max-width: 1023px) {

	.sidebar {
		display: none;
	}

}

@media only screen and (min-width: 1024px) {

	.site-header .search-form {
		margin-left: 20px;
		width: 200px;
	}

	.topbar .wrap {
		max-width: 1200px;
	}

	.site-header .wrap {
		max-width: 1200px;
	}

	.before-footer-widgets .wrap {
		max-width: 1294px;
	}

	.single-post .content-sidebar-wrap {
		padding-top: 30px;
	}

	.content {
		float: left;
		max-width: 65%;
	}

	.sidebar-content .content {
		float: right;
	}

	.full-width-content .content {
		float: none;
		margin-left: auto;
		margin-right: auto;
		max-width: 728px;
	}

	.sidebar {
		float: right;
		max-width: 300px;
	}

	.sidebar-content .sidebar {
		float: left;
	}

	.sidebar .featured-content .widget-wrap {
		grid-template-columns: 1fr;
	}

	.sidebar .featured-content article {
		align-items: center;
		display: flex;
		gap: 15px;
		margin-bottom: 0;
	}

	.sidebar .featured-content .entry-title {
		display: -webkit-box;
		font-size: var(--wp--preset--font-size--xx-small);
		font-weight: var(--wp--custom--font-weight--semi-bold);
		line-height: var(--wp--custom--line-height--body);
		margin: 0;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.sidebar .featured-content article img,
	.sidebar .featured-content article picture {
		display: block;
		min-width: 120px;
		max-width: 120px;
	}

	.sidebar .featured-content .entry-header {
		margin-bottom: 0;
	}

}

@media only screen and (min-width: 1200px) {

	.content {
		max-width: 768px;
	}

	.sidebar {
		max-width: 336px;
	}

}

@media only screen and (min-width: 1320px) {

	.wp-custom-logo .title-area {
		margin-left: -48px;
	}

	.nav-primary {
		margin-right: -48px;
	}

	.nav-primary .genesis-nav-menu .menu-item:not(:last-of-type) {
		margin: 0 20px 0 0;
	}

}

@media only screen and (min-width: 1530px) {

	.site-header {
		padding: 15px 20px;
	}

	.margin-left-negative-48 {
		margin-left: -48px;
	}
	
	.sidebar {
		margin-right: -10px;
	}

}

/* 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;
	}

}