/*
Theme Name: Genesis Sample
Theme URI: https://demo.studiopress.com/
Description: This is the sample theme created for the Genesis Framework.
Author: StudioPress
Author URI: https://www.studiopress.com/

Version: 3.4.1

Tags: accessibility-ready, block-styles, custom-colors, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, left-sidebar, one-column, right-sidebar, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, two-columns, wide-blocks

Template: genesis

License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Text Domain: genesis-sample
Requires at least: 5.4
Requires PHP: 5.6
*/

/* Table of Contents
- HTML5 Reset
	- Baseline Normalize
	- Box Sizing
	- Float Clearing
- Defaults
	- Typographical Elements
	- Headings
	- Objects
	- Gallery
	- Forms
	- Tables
	- Screen Reader Text
- Structure and Layout
	- Site Container
	- Site Inner
- Common Classes
	- Avatar
	- Genesis
	- Search Form
	- Titles
	- WordPress
- Widgets
	- Featured Content
- Plugins
	- Genesis eNews Extended
	- Genesis Simple FAQ
	- WPForms
- Skip Links
- Site Header
	- Title Area
- Site Navigation
	- Responsive Menu
	- Header Menu
	- Footer Menu
- Content Area
	- Entry Content
	- Entry Meta
	- Pagination
	- Entry Comments
- Sidebar
- Footer Widgets
- Site Footer
- Media Queries
	- Min-width: 960px
		- Site Header
		- Genesis Menu
		- Responsive Menu
		- Header Menu
		- Site Inner
		- Content
		- Sidebar
		- Author Box
		- After Entry
		- Column Classes
		- Entry Misc.
		- Footer Widgets
- Print Styles
*/

/* HTML5 Reset
---------------------------------------------------------------------------- */

/* normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css
---------------------------------------------------------------------------- */

@font-face {
	font-family: 'Futura Condensed';
	src: url('/wp-content/themes/genesis-sample/fonts/Futura-CondensedBold.woff2') format('woff2'),
		url('/wp-content/themes/genesis-sample/fonts/Futura-CondensedBold.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Futura Condensed';
	src: url('/wp-content/themes/genesis-sample/fonts/Futura-CondensedExtraBold.woff2') format('woff2'),
		url('/wp-content/themes/genesis-sample/fonts/Futura-CondensedExtraBold.woff') format('woff');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Futura';
	src: url('/wp-content/themes/genesis-sample/fonts/Futura-BookOblique.woff2') format('woff2'),
		url('/wp-content/themes/genesis-sample/fonts/Futura-BookOblique.woff') format('woff');
	font-weight: normal;
	font-style: oblique;
	font-display: swap;
}

@font-face {
	font-family: 'Futura';
	src: url('/wp-content/themes/genesis-sample/fonts/Futura.woff2') format('woff2'),
		url('/wp-content/themes/genesis-sample/fonts/Futura.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Futura';
	src: url('/wp-content/themes/genesis-sample/fonts/Futura-Bold.woff2') format('woff2'),
		url('/wp-content/themes/genesis-sample/fonts/Futura-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

body.no-login.woocommerce-account .woocommerce {
    margin: 30px 30px 0;
    text-align: center;
}

body.no-login.woocommerce-account .woocommerce form.woocommerce-form.woocommerce-form-login.login {
    max-width: 500px;
    margin: 2em auto;
}

.picker__select--month,
.picker__select--year {
	height: auto !important;
}

#popupLogin *,
#popupCart * {
	pointer-events: none;
}

nav#genesis-nav-primary {
	position: fixed;
	top: 123px;
	width: 100%;
	left: 0;
	right: 0;
	bottom: 0;
	height: calc(100vh - 124px);
	background: #b6b0a4;
	padding: 30px;
}

#popupLogin.open *,
#popupCart.open * {
	pointer-events: all;
}

div#order_review {
	background: #b6b0a4;
	padding: 25px;
}

.checkout-form {
	padding: 25px;
}

.woocommerce-checkout .woocommerce {
	padding: 15px;
}

.contactGrid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}

section.contact {
	position: relative;
}

section.contact > img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

section.contact .wrapper-content {
	position: relative;
}

/* Box Sizing
--------------------------------------------- */

html {
	box-sizing: border-box;
}

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

/* Float Clearing
--------------------------------------------- */

.author-box::before,
.clearfix::before,
.entry::before,
.entry-content::before,
.footer-widgets::before,
.nav-primary::before,
.nav-secondary::before,
.pagination::before,
.site-container::before,
.site-footer::before,
.site-header::before,
.site-inner::before,
.widget::before,
.wrap::before {
	content: " ";
	display: table;
}

.author-box::after,
.clearfix::after,
.entry::after,
.entry-content::after,
.footer-widgets::after,
.nav-primary::after,
.nav-secondary::after,
.pagination::after,
.site-container::after,
.site-footer::after,
.site-header::after,
.site-inner::after,
.widget::after,
.wrap::after {
	clear: both;
	content: " ";
	display: table;
}

/* Defaults
---------------------------------------------------------------------------- */

/* Typographical Elements
--------------------------------------------- */

html {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}

body {
	background-color: #d5d2ca;
	color: #000;
	font-family: 'Futura', sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.625;
	margin: 0;
	overflow-x: hidden;
}

button,
input:focus,
input[type="button"],
input[type="reset"],
input[type="submit"],
textarea:focus,
.button,
.gallery img {
	transition: all 0.2s ease-in-out;
}

.select2-container {
	z-index: 99;
}

#billing_country_field.logInput #select2-billing_country-container {
	width: 100%;
	border: 4px solid #000;
	color: #000;
	margin-bottom: 0;
	text-transform: uppercase;
	font-family: 'Futura', sans-serif;
	font-weight: bold;
	font-size: 18px;
	padding: 11.5px 20px 6.5px;
	text-align: left;
	letter-spacing: 0.36px;
	margin-bottom: 0;
	border-radius: 11px;
}
#billing_country_field.logInput {
	border: none;
	padding: 0;
	color: inherit;
	margin-bottom: 30px;
	font-size: inherit;
}
#billing_country_field.logInput * {
	background: transparent;
	border: none;
	height: auto;
	color: #000;
}

.picker {
	z-index: 999999999 !important;
}

a {
	color: #000;
	text-decoration: underline;
	transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

a:focus,
a:hover {
	color: #000;
	text-decoration: none;
}

p {
	margin: 0 0 28px;
}

ol,
ul {
	margin: 0;
	padding: 0;
}

li {
	list-style-type: none;
}

hr {
	border: 0;
	border-collapse: collapse;
	border-bottom: 1px solid currentColor;
	clear: both;
	color: #eee;
	margin: 1.65em auto;
}

b,
strong {
	font-weight: 700;
}

blockquote,
cite,
em,
i {
	font-style: italic;
}

mark {
	background: #ddd;
	color: #000;
}

blockquote {
	margin: 30px;
}

.h-readmore a {
	text-align: center;
	background-color: #000;
	color: #d6d3cc;
	text-transform: uppercase;
	text-decoration: none;
	padding: 14px 50px 8px;
	border-radius: 15.6px;
	margin: 30px 0 0;
	display: block;
	max-width: 297px;
	font-family: 'Futura', sans-serif;
	font-weight: bold;
}

h1.search-title + ul li h3 a {
	color: #000;
	font-size: 25px;
	text-decoration: none;
	font-weight: bold;
	text-transform: uppercase;
	font-family: 'Futura', sans-serif;
	font-weight: bold;
	display: block;
}

/* Headings
--------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Futura Condensed", sans-serif;
	font-weight: 900;
	line-height: 1.2;
	margin: 0 0 20px;
}

h1 {
	font-size: 34px;
	text-transform: uppercase;
	color: #000;
}

.category-title svg {
	margin-bottom: 50px;
}

h2,
.h2 {
	font-size: 30px;
}

h3,
.h3 {
	font-size: 20px;
}

h4 {
	font-size: 18px;
}

.entry-content h3,
.entry-content h4 {
	font-weight: 600;
}

.entry-content h4 {
	margin-top: 40px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

/* Objects
--------------------------------------------- */

embed,
iframe,
img,
object,
video,
.wp-caption {
	max-width: 100%;
}

img {
	height: auto;
	vertical-align: top;
}

figure {
	margin: 0;
}

/* Gallery
--------------------------------------------- */

.gallery {
	overflow: hidden;
}

.gallery img {
	border: 1px solid #eee;
	height: auto;
	padding: 4px;
}

.gallery img:focus,
.gallery img:hover {
	border: 1px solid #999;
	outline: none;
}

.gallery-columns-1 .gallery-item {
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	width: 50%;
}

.gallery-columns-3 .gallery-item {
	width: 33%;
}

.gallery-columns-4 .gallery-item {
	width: 25%;
}

.gallery-columns-5 .gallery-item {
	width: 20%;
}

.gallery-columns-6 .gallery-item {
	width: 16.6666%;
}

.gallery-columns-7 .gallery-item {
	width: 14.2857%;
}

.gallery-columns-8 .gallery-item {
	width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	width: 11.1111%;
}

.gallery-columns-2 .gallery-item:nth-child(2n + 1),
.gallery-columns-3 .gallery-item:nth-child(3n + 1),
.gallery-columns-4 .gallery-item:nth-child(4n + 1),
.gallery-columns-5 .gallery-item:nth-child(5n + 1),
.gallery-columns-6 .gallery-item:nth-child(6n + 1),
.gallery-columns-7 .gallery-item:nth-child(7n + 1),
.gallery-columns-8 .gallery-item:nth-child(8n + 1),
.gallery-columns-9 .gallery-item:nth-child(9n + 1) {
	clear: left;
}

.gallery-item {
	float: left;
	margin: 0 0 30px;
	text-align: center;
}

/* Forms
--------------------------------------------- */

input,
select,
textarea {
	background-color: #fff;
	border: 1px solid #ddd;
	color: #000;
	font-weight: 400;
	padding: 15px;
	width: 100%;
	font-family: 'Futura', sans-serif;
}

input:focus,
textarea:focus {
	outline: none;
}

input[type="checkbox"],
input[type="image"],
input[type="radio"] {
	width: auto;
}

:-ms-input-placeholder {
	color: #000;
	opacity: 1;
}

::placeholder {
	color: #000;
	opacity: 1;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.site-container div.wpforms-container-full .wpforms-form input[type="submit"],
.site-container div.wpforms-container-full .wpforms-form button[type="submit"],
.button {
	background-color: #000;
	border: 0;
	border-radius: 5px;
	color: #fff;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	padding: 15px 30px;
	text-align: center;
	text-decoration: none;
	white-space: normal;
	width: auto;
	font-family: 'Futura', sans-serif;
}

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,
.site-container div.wpforms-container-full .wpforms-form input[type="submit"]:focus,
.site-container div.wpforms-container-full .wpforms-form input[type="submit"]:hover,
.site-container div.wpforms-container-full .wpforms-form button[type="submit"]:focus,
.site-container div.wpforms-container-full .wpforms-form button[type="submit"]:hover,
.button:focus,
.button:hover {
	background-color: #000;
	border-width: 0;
	color: #fff;
}

.entry-content .button:focus,
.entry-content .button:hover {
	color: #fff;
}

.button {
	display: inline-block;
}

.site-container button:disabled,
.site-container button:disabled:hover,
.site-container input:disabled,
.site-container input:disabled:hover,
.site-container input[type="button"]:disabled,
.site-container input[type="button"]:disabled:hover,
.site-container input[type="reset"]:disabled,
.site-container input[type="reset"]:disabled:hover,
.site-container input[type="submit"]:disabled,
.site-container input[type="submit"]:disabled:hover {
	background-color: #eee;
	border-width: 0;
	color: #777;
	cursor: not-allowed;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button {
	display: none;
}

/* Tables
--------------------------------------------- */

table {
	border-collapse: collapse;
	border-spacing: 0;
	margin-bottom: 40px;
	width: 100%;
	word-break: break-all;
}

tbody {
	border-bottom: 1px solid #eee;
}

td,
th {
	line-height: 2;
	text-align: left;
	vertical-align: top;
}

td {
	padding: 0.5em;
}

tr {
	border-top: 1px solid #eee;
}

th {
	font-weight: 600;
	padding: 0.5em;
}

/* 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,
.widget_search input[type="submit"]:focus {
	background: #fff;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #000;
	display: block;
	font-size: 1em;
	font-weight: 700;
	height: auto;
	padding: 15px 23px 14px;
	text-decoration: none;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

.more-link {
	display: inline-block;
	position: relative;
	margin-bottom: 30px;
}

/* Structure and Layout
---------------------------------------------------------------------------- */

/* Site Container
--------------------------------------------- */

.site-container {
	animation: fadein 1s;
	word-wrap: break-word;
}

@keyframes fadein {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

/* Site Inner
--------------------------------------------- */

.site-inner {
	clear: both;
	margin: 0 auto;
}

/* Common Classes
---------------------------------------------------------------------------- */

/* Avatar
--------------------------------------------- */

.avatar {
	border-radius: 50%;
	float: left;
}

.author-box .avatar,
.alignleft .avatar {
	margin-right: 20px;
}

.alignright .avatar {
	margin-left: 20px;
}

.comment .avatar {
	margin: 0 15px 20px 0;
}

/* Genesis
--------------------------------------------- */

form#add_payment_method p,
form#add_payment_method label {
	color: #000;
}

.after-entry,
.archive-description,
.author-box {
	margin-bottom: 40px;
}

.after-entry {
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
	padding: 20px 30px;
}

.after-entry .widget:last-of-type {
	margin-bottom: 0;
}

.breadcrumb {
	border-bottom: 1px solid #eee;
	font-size: 16px;
	margin-bottom: 40px;
	padding-bottom: 10px;
}

.genesis-title-hidden .breadcrumb {
	margin-top: 40px;
}

.archive-description p:last-child,
.author-box p:last-child {
	margin-bottom: 0;
}

/* Search Form
--------------------------------------------- */

.search-form {
	overflow: hidden;
	position: relative;
	display: grid;
	grid-template-columns: 1fr auto;
	border: 1px solid #000000;
	max-width: 180px;
}

.entry-content .search-form {
	margin-bottom: 40px;
	width: 50%;
}

.error404 main {
	padding: 50px;
}

.error404 main form {
	margin: 0 !important;
	max-width: none;
}

.error404 main form input.search-form-submit {
	margin-top: 0;
	border-radius: 0;
}

.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;
}

/* Titles
--------------------------------------------- */

.archive-description .entry-title,
.archive-title,
.author-box-title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 10px;
}

.entry-title {
	font-size: 30px;
	margin-bottom: 10px;
}

.entry-title a,
.sidebar .widget-title a {
	color: #000;
	text-decoration: none;
}

.entry-title a:focus,
.entry-title a:hover {
	color: #000;
}

.widget-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 20px;
}

.genesis-title-hidden .site-inner {
	padding-top: 0;
}

/* WordPress
--------------------------------------------- */

a.aligncenter img {
	display: block;
	margin: 0 auto;
}

a.alignnone {
	display: inline-block;
}

.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;
}

figcaption,
.gallery-caption,
.wp-caption-text {
	font-size: 14px;
	font-weight: 600;
	margin-top: 0.5em;
	margin-bottom: 1em;
	padding-left: 10px;
	padding-right: 10px;
	text-align: center;
}

.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;
}

/* Widgets
---------------------------------------------------------------------------- */

.widget {
	margin-bottom: 40px;
}

.widget p:last-child,
.widget ul > li:last-of-type {
	margin-bottom: 0;
}

.widget ul > li {
	margin-bottom: 10px;
}

.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;
}

.widget_calendar table {
	width: 100%;
}

.widget_calendar td,
.widget_calendar th {
	text-align: center;
}

/* Featured Content
--------------------------------------------- */

.featured-content .entry {
	border-bottom: 1px solid #eee;
	margin-bottom: 20px;
}

.featured-content .entry:last-of-type {
	border-bottom: none;
	margin-bottom: 0;
}

.featured-content .entry-title {
	font-size: 16px;
	margin-bottom: 5px;
	margin-top: 10px;
}

h1.title,
h2.title,
h3.title,
h4.title,
h5.title,
h6.title {
	padding: 25px 0px 18px;
	border-top: 4px solid;
	text-transform: uppercase;
	border-bottom: 3px solid;
	margin-bottom: 30px;
	display: inline-block;
	font-family: "Futura Condensed", sans-serif !important;
	line-height: 1.2 !important;
	font-size: 30px;
}

/* Plugins
---------------------------------------------------------------------------- */

/* Genesis eNews Extended
--------------------------------------------- */

.after-entry .enews {
	text-align: center;
	padding: 10px;
}

.sidebar .enews {
	background-color: #f5f5f5;
	padding: 30px;
}

.enews-widget input {
	font-size: 16px;
	margin-bottom: 10px;
}

.after-entry .enews-widget input {
	text-align: center;
}

.enews-widget input[type="submit"] {
	margin: 0;
	width: 100%;
}

.enews form + p {
	margin-top: 20px;
}

/* Genesis Simple FAQ
--------------------------------------------- */

.gs-faq__question {
	background: transparent;
	border-bottom: 1px solid #eee;
	color: #000;
	padding-left: 0;
	padding-right: 0;
}

.gs-faq__question:focus,
.gs-faq__question:hover {
	background: transparent;
	color: #000;
}

.gs-faq__question::after {
	content: "\f132";
	font-family: dashicons; /* stylelint-disable-line font-family-no-missing-generic-family-keyword */
	float: right;
}

.gs-faq__question.gs-faq--expanded::after {
	content: "\f460";
}

/* WP Forms
--------------------------------------------- */

.entry-content .wpforms-container {
	margin-bottom: 40px;
}

.entry-content .wpforms-form .wpforms-field {
	clear: both;
	margin: 20px 0;
	overflow: hidden;
}

.cta-right.imageWithOverlay img {
	position: relative;
	grid-row: 1/2;
	grid-column: 1/2;
}

.cta-right.imageWithOverlay {
	display: grid;
	margin-bottom: 50px;
}

.cta-right.imageWithOverlay .ctaImageText {
	grid-row: 1/2;
	grid-column: 1/2;
}

.featured .RightX,
.cta-right.imageWithOverlay .ctaImageText.RightX {
	padding-right: 50px;
}

.featured .LeftX,
.cta-right.imageWithOverlay .ctaImageText.LeftX {
	padding-left: 30px;
}

.site-container .wpforms-container .wpforms-form .wpforms-field input {
	border-radius: 0;
	height: auto;
	padding: 15px;
}

.site-container .entry-content .wpforms-form .wpforms-field-label {
	font-weight: 600;
}

.site-container .entry-content .wpforms-form .wpforms-field-sublabel {
	font-size: 14px;
	font-weight: 300;
}

.entry-content .wpforms-form .wpforms-field-hp {
	display: none !important;
	left: -9000px !important;
	position: absolute !important;
}

.site-container .entry-content .wpforms-form textarea {
	padding: 15px;
}

.site-container .entry-content .wpforms-form textarea.wpforms-field-small {
	height: 120px;
}

.site-container .entry-content .wpforms-form textarea.wpforms-field-medium {
	height: 200px;
}

.site-container .entry-content .wpforms-form textarea.wpforms-field-large {
	height: 300px;
}

/* 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 {
	color: inherit;
	outline: none;
}

/* Site Header
---------------------------------------------------------------------------- */

.site-header {
	transition: 0.2s all ease-in-out;
	display: grid;
	background: #d5d2ca;
	border-bottom: 3px solid #8a8883;
	padding: 30px;
	align-items: center;
	grid-template-columns: auto 1fr auto auto;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 9999;
}

.site-header::before,
.site-header::after {
	content: none;
}

.cardsGrid {
	display: grid;
	grid-template-columns: 100%;
	gap: 30px;
}

.eachCard {
	position: relative;
	display: grid;
	grid-template-columns: 100%;
	min-height: 70vh;
	align-items: end;
}

.eachCard img {
	width: 100%;
	object-fit: cover;
}

.cardContent {
	position: relative;
	padding: 60px 0 45px;
	margin: 0 35px;
	z-index: 2;
}

.cardContent h2 {
	padding: 10px 0px 3px;
	border-top: 3px solid;
	text-transform: uppercase;
	border-bottom: 3px solid;
	margin-bottom: 28px;
	display: inline-block;
}

.slideArrows .slick-dots li button {
	width: 100%;
	padding: 0;
	height: 12px;
	background: #c7c4be;
	border-radius: 5.4px;
}

.slideArrows .slick-dots li {
	list-style: none;
	height: auto;
}

.slideArrows .slick-dots li button::before {
	content: none;
}

.slideArrows .slick-dots li.slick-active button,
.slideArrows .slick-dots li button:hover {
	background: #969593;
}

body .woocommerce ul.products li.product {
	margin-bottom: 45px;
	margin-right: 0;
}

.woocommerce .actionButtons a.button {
	background: #000;
	color: #d2cfc7;
	border-radius: 15.2px;
	padding: 11px 10px 7px;
	text-transform: uppercase;
	min-width: 100px;
	flex: 0 0 auto;
	display: inline-block;
}

.actionButtons {
	display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox; /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Chrome */
	display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
	justify-content: flex-end;
	gap: 10px;
	margin-top: 25px;
}

ul.slick-dots {
	display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox; /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Chrome */
	display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
	order: 2;
	position: relative;
	margin: 0 !important;
	background: #c7c4be;
	border-radius: 5.4px;
	padding: 0 40px;
}

.slick-dots li {
	flex: 1;
	margin: 0;
}

.cardContent p {
	font-family: 'Futura', sans-serif;
	font-weight: bold;
}

.cardContent a {
	color: #fff;
	padding: 12px 20px 8px;
	line-height: 1;
	background: #000;
	border-radius: 11px;
	text-decoration: none;
	margin-top: 40px;
	text-transform: uppercase;
	display: block;
	max-width: 226px;
	text-align: center;
	margin: 0 auto;
	font-size: 16px;
	font-family: 'Futura', sans-serif;
	font-weight: bold;
}

/* Title Area
--------------------------------------------- */

.title-area {
	padding-bottom: 25px;
	padding-top: 25px;
}

.wp-custom-logo .title-area {
	max-width: 280px;
	padding-bottom: 5px;
	padding-top: 5px;
	padding-right: 30px;
	width: 100%;
}

.wp-custom-logo .custom-logo-link {
	display: grid;
}

.site-header .search {
	display: none;
}

.wp-custom-logo .title-area img {
	width: auto;
}

.site-title {
	font-size: 20px;
	font-weight: 600;
	line-height: 1;
	margin-bottom: 0;
}

.site-title a,
.site-title a:focus,
.site-title a:hover {
	color: #000;
	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;
	line-height: 1;
	width: 100%;
	display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox; /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Chrome */
	display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
	flex-direction: column;
}

.genesis-nav-menu .menu-item {
	display: block;
	float: none;
	position: relative;
}

.genesis-nav-menu a {
	color: #d8d5cd;
	display: block;
	font-size: 22px;
	outline-offset: -1px;
	padding-bottom: 7px;
	padding-top: 12px;
	text-decoration: none;
	text-transform: uppercase;
	font-family: 'Futura', sans-serif;
	font-weight: bold;
	letter-spacing: 3px;
}

.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: #000 !important;
	text-decoration: none;
	font-family: 'Futura', sans-serif;
	font-weight: bold;
}

.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-left: 15px;
	position: static;
	z-index: 99;
}

.genesis-nav-menu .sub-menu a {
	background-color: #fff;
	font-size: 14px;
	position: relative;
	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;
}
.genesis-nav-menu .menu-item a::after {
	content: "\002F";
	font-weight: bold;
	padding: 0px 0 0px 10px;
}

.genesis-nav-menu .menu-item:last-of-type a::after {
	content: none;
}

.genesis-nav-menu .menu-item:last-of-type a {
	padding-right: 10px;
}

/* 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;
	position: relative;
}

.genesis-responsive-menu .genesis-nav-menu .menu-item:hover > .sub-menu {
	display: none;
}

.menu-toggle,
.sub-menu-toggle {
	background-color: transparent;
	border-width: 0;
	color: #000;
	display: block;
	margin: 0 auto;
	overflow: hidden;
	text-align: center;
	visibility: visible;
}

.menu-toggle:focus,
.menu-toggle:hover,
.sub-menu-toggle:focus,
.sub-menu-toggle:hover {
	background-color: transparent;
	border-width: 0;
	color: #000;
}

.menu-toggle {
	float: right;
	line-height: 0;
	font-size: 0;
	padding: 0;
	position: relative;
	z-index: 1000;
}

.menu-toggle.activated::before {
	content: "\f335";
}

.site-header .dashicons-before::before {
	transition: none;
}

.site-header .menu-toggle::before {
	margin-right: 0;
	position: relative;
	text-rendering: auto;
	width: 43px;
	height: 43px;
	font-size: 43px;
	transform: translateY(-1px);
}

.sub-menu-toggle {
	float: right;
	padding: 9px 10px;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 100;
}

.sub-menu .sub-menu-toggle {
	padding: 12px 10px;
}

.sub-menu-toggle::before {
	display: inline-block;
	text-rendering: auto;
	transform: rotate(0);
	transition: transform 0.25s ease-in-out;
}

.sub-menu-toggle.activated::before {
	transform: rotate(180deg);
}

/* Header Menu
--------------------------------------------- */

.nav-primary {
	clear: left;
	padding-bottom: 15px;
	padding-top: 15px;
	width: 100%;
}

/* Footer Menu
--------------------------------------------- */

.nav-secondary {
	margin-top: 10px;
}

.nav-secondary .genesis-nav-menu {
	line-height: 1.5;
}

.nav-secondary .menu-item {
	display: inline-block;
}

.nav-secondary a {
	margin-left: 10px;
	margin-right: 10px;
	padding: 0;
}

/* Content Area
---------------------------------------------------------------------------- */

/* Entry Content
--------------------------------------------- */

.entry {
	margin-bottom: 40px;
}

.entry-content ol,
.entry-content ul {
	margin-bottom: 30px;
}

.entry-content ol > li {
	list-style-type: decimal;
}

.entry-content ul > li {
	list-style-type: disc;
}

.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;
}

.entry-content code {
	background-color: #f5f5f5;
}

.content .sticky {
	background-color: #f5f5f5;
	padding: 30px;
}

/* Entry Meta
--------------------------------------------- */

p.entry-meta {
	font-size: 16px;
	margin-bottom: 0;
}

.entry-header .entry-meta {
	margin-bottom: 20px;
}

.entry-footer .entry-meta {
	border-top: 1px solid #eee;
	padding-top: 20px;
}

.entry-categories,
.entry-tags {
	display: block;
}

.entry-comments-link::before {
	content: "\2014";
	margin: 0 6px 0 2px;
}

/* Pagination
--------------------------------------------- */

.pagination {
	clear: both;
	margin: 60px 0;
}

.adjacent-entry-pagination {
	margin-bottom: 0;
}

.archive-pagination li {
	display: inline;
}

.archive-pagination li a {
	background-color: #f5f5f5;
	color: #000;
	cursor: pointer;
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 4px;
	padding: 8px 12px;
	text-decoration: none;
}

.archive-pagination li a:focus,
.archive-pagination li a:hover,
.archive-pagination li.active a {
	background-color: #000;
	color: #fff;
}

/* Entry Comments
--------------------------------------------- */

.comment-respond,
.entry-comments,
.entry-pings {
	margin-bottom: 40px;
}

.comment-list li {
	padding: 40px 0 0 30px;
}

.comment-list .depth-1 {
	padding-left: 0;
}

.comment-header {
	margin-bottom: 30px;
}

.comment-content {
	clear: both;
}

.comment-content ul > li {
	list-style-type: disc;
}

.comment-respond input[type="email"],
.comment-respond input[type="text"],
.comment-respond input[type="url"] {
	width: 50%;
}

.comment-respond label {
	display: block;
	margin-right: 12px;
}

.comment-header p {
	margin-bottom: 0;
}

.entry-pings .reply {
	display: none;
}

.comment-form-cookies-consent label {
	display: inline;
	padding-left: 10px;
}

ul.woocommerce-error,
.woocommerce-message {
	cursor: pointer;
}

/* Sidebar
---------------------------------------------------------------------------- */

.sidebar {
	font-size: 16px;
	line-height: 1.5;
}

.sidebar .widget {
	margin-bottom: 40px;
}

.sidebar p {
	margin-bottom: 20px;
}

/* Footer Widgets
---------------------------------------------------------------------------- */

.footer-widgets {
	border-top: 1px solid #eee;
	background-color: #fff;
	clear: both;
	padding: 60px 0;
}

.footer-widgets .wrap {
	margin-left: auto;
	margin-right: auto;
}

.footer-widget-area {
	margin-bottom: 40px;
	padding-left: 30px;
	padding-right: 30px;
}

.footer-widget-area:last-child,
.footer-widgets .widget:last-child {
	margin-bottom: 0;
}

/* Site Footer
---------------------------------------------------------------------------- */

.site-footer {
	background-color: #000;
	border-top: 1px solid #eee;
	line-height: 1.5;
	color: #fff;
}

/* custom css */
.clear {
	clear: both;
}
.content {
	width: 100% !important;
}
div.featured {
	display: grid;
}
.featured-left p {
	font-family: 'Futura', sans-serif;
	font-weight: bold;
	line-height: 2;
}
.featured-left p:last-of-type {
	margin-bottom: 0;
}
.featured-left {
	padding: 30px;
	display: grid;
	align-items: center;
	order: 2;
}
.featured-title a {
	text-decoration: none;
	color: inherit;
	display: block;
}
.featured-left h2 {
	padding: 25px 0px 18px;
	border-top: 4px solid;
	text-transform: uppercase;
	border-bottom: 3px solid;
	margin-bottom: 30px;
	display: inline-block;
}

.featured-left > div > a {
	text-align: center;
	background-color: #000;
	color: #d6d3cc;
	text-transform: uppercase;
	text-decoration: none;
	padding: 14px 50px 8px;
	border-radius: 15.6px;
	margin: 45px auto 0;
	display: block;
	font-size: 22px;
	max-width: 297px;
	font-family: 'Futura', sans-serif;
	font-weight: bold;
}
.featured-right {
	position: relative;
}
.featured-right img {
	height: 815px !important;
	object-fit: cover;
	width: 100%;
}
.cta-left {
	padding: 30px;
	display: grid;
	align-items: center;
	order: 2;
}
.cta-left.Small {
	padding: 0 30px;
}
.noTopBorder .cta-left h2,
.noTopBorder .cta-left .h2 {
	border-top: none;
	padding-top: 0;
	margin-top: 0;
	border-bottom: 7px solid;
}
.cta-left a {
	color: #fff;
	padding: 12px 20px 8px;
	line-height: 1;
	background: #000;
	border-radius: 11px;
	text-decoration: none;
	margin-top: 40px;
	text-transform: uppercase;
	display: inline-block;
	min-width: 226px;
	text-align: center;
	font-size: 16px;
	font-family: 'Futura', sans-serif;
	font-weight: bold;
}
.cta-left h2,
.cta-left .h2 {
	padding: 25px 0px 18px;
	border-top: 4px solid;
	text-transform: uppercase;
	border-bottom: 3px solid;
	margin-bottom: 30px;
	display: inline-block;
}
.cta-left p {
	font-family: 'Futura', sans-serif;
	font-weight: bold;
	line-height: 2;
}
.cta-left p:last-of-type {
	margin-bottom: 0;
}
.woocommerce .cta-right img,
.woocommerce-page .cta-right img,
.cta-right img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	grid-row: 1/2;
	grid-column: 1/2;
	max-height: 400px;
}
.cta-left hr {
	width: 60%;
	height: 5px;
	background-color: #000;
	float: left;
	margin: 0px;
}
section.cta {
	display: grid;
	grid-template-columns: 1fr;
}
.cta-right {
	position: relative;
	display: grid;
}
.ctaImageText {
	width: 100%;
	position: relative;
	height: 100%;
	display: grid;
	grid-row: 1/2;
	grid-column: 1/2;
}
.CenterX {
	justify-content: center;
}
.LeftX {
	justify-content: start;
	padding-left: 30px;
}
.RightX {
	justify-content: end;
	padding-right: 30px;
}
.BottomY {
	align-items: end;
	padding-bottom: 30px;
}
.TopY {
	padding-top: 30px;
	align-items: start;
}
.CenterY {
	align-items: center;
}
.cta-right.imageWithOverlay .ctaImageText p {
	font-size: 24px;
}
.featured .ctaImageText p {
	font-size: 40px;
}
.ctaImageText p {
	font-size: 40px;
	line-height: 1;
	margin: 0;
	color: rgba(255, 255, 255, 0.8);
	font-family: 'Futura', sans-serif;
	font-weight: bold;
	text-transform: uppercase;
	text-align: center;
	text-shadow: 2px 2px 20px rgb(0 0 0 / 80%);
	display: grid;
	justify-items: center;
}
.popup-category-image .ctaImageText p {
	font-size: 25px;
	font-family: 'Futura Condensed', sans-serif;
}
.popup-category-icon {
	margin-bottom: 45px;
}
.image-break .ctaImageText p {
	font-size: 30px;
	color: rgb(216 213 205 / 90%);
}
#contactPage {
	background: url('images/artboard1.png');
	background-size: cover;
	display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox; /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Chrome */
	display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
	padding: 5%;
}
body .wp-block-image {
	margin-bottom: 0 !important;
}
.newslettButtGrid button.btn.add_to_cart_button {
	color: #fff;
	padding: 12px 20px 8px;
	line-height: 1;
	background: #000;
	border-radius: 11px;
	text-decoration: none;
	text-transform: uppercase;
	display: block;
	text-align: center;
	font-size: 16px;
	font-family: 'Futura', sans-serif;
	font-weight: bold;
	border: none;
	margin: 0;
}

.custom-card {
	width: 100%;
	margin-right: 2%;
	border: 5px solid #b8b3a8;
	border-radius: 10px;
	background-color: #d8d5ce;
}
#contactPage > div {
	width: 50%;
}
.custom-card-newsletter {
	width: 100%;
	border: 9px solid rgb(184 179 168 / 95%);
	border-radius: 15px;
	background-color: rgb(216 213 206 / 95%);
}
.custom-card-newsletter form {
	margin: 50px 0px;
}
.custom-card-phone {
	width: 100%;
	border: 3px solid rgb(184 179 168 / 95%);
	border-radius: 15px;
	background-color: rgb(216 213 206 / 95%);
}
.custom-card-phone .inner-card {
	text-align: left;
}
.information-wrap:first-of-type {
	margin-top: 0;
}
.information-wrap h2 {
	margin-bottom: 8px;
}
.information-wrap {
	margin-top: 30px;
}
.inner-card {
	padding: 30px;
	text-align: center;
}

.custom-card-newsletter .inner-card {
	padding: 30px;
}

.custom-card-newsletter .inner-card > p {
	font-family: 'Futura', sans-serif;
	font-weight: bold;
	line-height: 1.6;
}
.information-wrap p {
	font-family: 'Futura', sans-serif;
	font-weight: bold;
	line-height: 2;
}
.wrapper-content {
	padding: 30px;
	width: 100%;
}

.search-results .wapper {
	padding: 30px;
}

h1.search-title + ul li {
	margin-bottom: 50px;
}

/*Header */
.responsive-site-header {
	display: none;
}
.titleContainer img {
	max-width: 100%;
	width: auto;
}
div.search-results {
	width: 100% !important;
	padding-top: 0px !important;
}
.search .theSearch input {
	background: none;
	border: none;
	padding: 11.5px 10px;
	text-transform: uppercase;
	letter-spacing: 5.28px;
	text-align: right;
}
.search input[type=submit] {
	font-family: 'Font Awesome 5 Pro';
	margin: 0;
	padding: 0;
	width: 57px;
	color: #000;
	font-weight: 400;
	font-size: 30px;
	letter-spacing: 0;
	text-align: center;
}

.search input[type=submit]:hover,
.search input[type=submit]:focus {
	background: transparent !important;
}

.menu-right {
	padding: 0 0 0 10px;
}
.menu-right a {
	color: #000;
	font-size: 35px;
}
.menu-right button {
	cursor: pointer;
}
.menu-right a,
.menu-right span,
.menu-right button {
	font-size: 30px;
	margin-right: 10px;
}

.menu-right > button {
	position: relative;
	padding: 0;
	background: transparent;
	color: inherit;
}

.menu-right .totalCart {
	position: absolute;
	top: 0;
	right: 0;
	transform: translate(105%, -30%);
	font-size: 22px;
	z-index: 999999;
	margin: 0;
	font-family: 'Futura Condensed';
	font-weight: 900;
}

.menu-right a i,
.menu-right span i,
.menu-right button i {
	font-weight: 400;
}

/* Footer */
.footer-content-right {
	display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox; /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Chrome */
	display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
	border: 3px solid #d1cfc8;
	gap: 30px;
	padding: 20px 35px;
	margin-bottom: 18px;
	justify-content: space-around;
	flex-wrap: wrap;
}

.footer-content-right a {
	text-align: center;
}
.topFooter {
	background: #000;
	display: grid;
	grid-gap: 30px;
	padding: 30px;
	grid-template-columns: 1fr;
}

.footer-logo img {
	border: 0px !important;
	height: auto !important;
}

.footerMiddle h3 {
	text-transform: uppercase;
	letter-spacing: 6.86px;
	font-family: 'Futura', sans-serif;
	color: #d1cfc8;
	margin-bottom: 16px;
}
.footer-newsletter p {
	margin: 0;
}
input.search-form-submit {
	font-family: 'Font Awesome 5 Pro';
}
.footer-content p {
	color: #d1cfc8;
	letter-spacing: 1.6px;
	margin-bottom: 16px;
}
.footerMiddle input {
	background: none;
	color: #c3bfb6;
	border: 4px solid #c3bfb6;
	max-width: 439px;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 4.32px;
	padding: 12px 30px 13px;
	text-align: left;
}

.footerMiddle input::placeholder {
	color: #fff;
}
.footerRight a {
	color: #d1cfc8;
	font-size: 16px;
}
.copyright {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 2.1px;
	text-align: right;
	color: #d1cfc8;
}
span.load-more {
	grid-column: 1/4;
}
.wrap-posts {
	margin: 30px;
}
.gutter-sizer {
	width: 0;
}
.grid-sizer,
.blogArticle {
	width: 100%;
}
.wrap-posts img {
	height: auto;
	width: 100%;
	object-fit: cover;
	border: 3px solid #fff;
	border-radius: 15.6px;
}

.blogArticle {
	margin: 50px 0px;
}
.blogArticle h2 {
	padding: 25px 0px 18px;
	border-top: 4px solid;
	text-transform: uppercase;
	border-bottom: 3px solid;
	margin-bottom: 20px;
	display: inline-block;
}
.blogArticle h2 a {
	color: #000;
	text-decoration: none;
	font-weight: bold;
	text-transform: uppercase;
	font-family: 'Futura', sans-serif;
	font-weight: bold;
	display: block;
}
.post-image {
	width: 100%;
}
.post-read-more {
	width: 100%;
	text-align: center;
}
.post-link {
	text-align: center;
	background-color: #000;
	color: #d6d3cc;
	text-transform: uppercase;
	text-decoration: none;
	padding: 14px 50px 8px;
	border-radius: 15.6px;
	margin: 30px auto 0;
	display: block;
	font-size: 22px;
	max-width: 297px;
	font-family: 'Futura', sans-serif;
	font-weight: bold;
}

.go-back {
	margin: 60px 0 35px;
}
.single .entry-content p,
.single .entry-content li,
.single .entry-content > * {
	font-family: 'Futura', sans-serif;
	font-weight: bold;
	line-height: 2;
}

.blog-wrapper {
	width: 100%;
	margin: 0 auto 60px;
	max-width: 1260px;
	padding: 0 30px;
}
.back-to-articles:hover {
	color: #fff;
}
a.back-to-articles svg {
	width: 12.8px;
}

a.back-to-articles span {
	transform: translateY(2px);
}
.back-to-articles {
	background-color: #000;
	padding: 10.5px 30px;
	color: #fff;
	border-radius: 15.6px;
	text-transform: uppercase;
	text-decoration: none;
	display: inline-block;
	font-family: 'Futura', sans-serif;
	font-weight: bold;
	font-size: 26px;
	display: inline-grid;
	align-items: center;
	grid-template-columns: auto 1fr;
	gap: 11px;
}
.back-to-articles i {
	padding-right: 10px;
}
.entry-footer {
	display: none;
}
.comment-respond a {
	color: #000;
	text-decoration: none;
}

.wc-block-grid.has-3-columns .wc-block-grid__product {
	max-width: 100% !important;
}
section.product-carousel {
	background-color: #b4aea2;
	padding: 50px 30px 30px;
}
.slideArrows button svg {
	width: 24.8px;
}

.relatedProducts .slick-slider button.slick-arrow {
	position: absolute;
	left: -50px;
	width: 37.5px;
	height: auto;
	top: 50%;
}

.relatedProducts .slick-slider button.slick-next.slick-arrow {
	right: -50px;
	left: auto;
}
.slideArrows {
	position: relative;
	display: grid;
	gap: 50px;
	grid-template-columns: auto auto;
	align-items: center;
}

.slideArrows button {
	position: relative;
	left: auto;
	right: auto;
	height: auto;
	width: auto;
	bottom: auto;
	top: auto;
	transform: none;
}

.slideArrows button.slick-prev.slick-arrow {
	order: 1;
}

.slideArrows button.slick-next.slick-arrow {
	order: 3;
}
.woocommerce img,
.woocommerce-page img {
}
.slick-dots {
	bottom: 0px !important;
}
.product-carousel i {
	color: #d5d2ca !important;
}
.wc-block-grid__product-title {
}
.wc-block-grid__product-link {
	text-decoration: none !important;
}
.wc-block-grid__product-onsale,
.wc-block-grid__product-price {
	display: none !important;
}
/* .product-carousel .add_to_cart_button {
	background-color: #000 !important;
	color: #fff !important;
	padding: 10px 25px !important;
	border-radius: 10px !important;

	text-transform: uppercase;
	width: fit-content !important;
	display: block !important;
	margin: auto !important;
} */
.product-carousel .woocommerce-loop-product__title {
	color: #000 !important;
	font-family: 'Futura Bold' !important;
	border-bottom: 3px solid;
	text-transform: uppercase;
	font-size: 30px !important;
	text-align: center;
}
.readmore_wrapper {
	width: 100%;
}
.product-carousel .read_more {
	border: 3px solid;

	color: #000;
	padding: 5px 30px;
	border-radius: 10px;
	text-transform: uppercase;
	width: fit-content !important;
	display: block !important;
	margin: 15px auto !important;
}
body.woocommerce.full-width-content .content,
body.woocommerce-page.full-width-content .content {
	max-width: none;
}
.category-filter {
	background-color: #b7b1a5;
	box-shadow: 0px 0px 10px 0px;
	display: grid;
	padding: 30px;
	grid-template-columns: 1fr;
	align-items: center;
	position: relative;
}
.filter-title h2 {
	text-transform: uppercase;
	font-weight: normal;
	margin: 0;
	transform: translateY(4px);
	text-align: center;
}
.filter-categories {
	display: grid;
}
.filter-categories li {
	margin: 0px !important;
}
.filter-categories svg {
	height: 100px !important;
	width: 100px !important;
	margin: 0 auto 12px;
	display: block;
}
.filter-categories a:hover {
	color: #000;
}
.filter-categories a:hover svg path {
	fill: #000;
}
.filter-categories ul {
	margin: 0px !important;
}
.desc-header h3 {
	padding: 25px 0px 18px;
	border-top: 4px solid;
	text-transform: uppercase;
	border-bottom: 3px solid;
	margin-bottom: 30px;
	display: inline-block;
}

.desc-content p {
	font-family: 'Futura', sans-serif;
	font-weight: bold;
	line-height: 2;
}
.filter-categories a {
	font-family: 'Futura Condensed', sans-serif;
	color: #dcdad2;
	text-transform: uppercase;
	float: left;
	text-align: center;
	text-decoration: none;
	flex: 1;
	padding: 45px 0 15px;
	transition: all 0.2s ease-in-out;
	font-size: 26px;
}
.filter-categories a svg path {
	transition: all 0.2s ease-in-out;
	fill: #d8d5cd;
}
.categories-wrap .categories {
	text-align: center;
	display: grid;
	grid-template-columns: 100%;
}
.category-details {
	padding: 50px 30px;
	background: #b7b1a5;
	background-size: cover !important;
	background-position: center !important;
	display: grid;
	align-items: center;
}
.category-details svg path {
	fill: #000;
}
.category-details svg {
	height: 220px;
	width: 190px;
}
.category-details a {
	color: #d8d5cd;
	padding: 12px 20px 8px;
	line-height: 1;
	background: #000;
	border-radius: 11px;
	text-decoration: none;
	margin-top: 40px;
	text-transform: uppercase;
	display: block;
	max-width: 226px;
	text-align: center;
	margin: 0 auto;
	font-size: 16px;
	font-family: 'Futura', sans-serif;
	font-weight: bold;
}
.category-title h2 {
	text-transform: uppercase;
	margin: 0;
}
.category-details hr {
	border-bottom: 4px solid #000;
	margin: 30px auto 60px;
	max-width: 65%;
}
.category-products {
	padding: 50px 30px 50px;
	display: grid;
	align-items: center;
	align-content: center;
	grid-template-columns: 100%;
}
.quick {
	padding-top: 80px;
}
.catogory-short p {
	font-family: 'Futura', sans-serif;
	font-weight: bold;
	letter-spacing: -1.44px;
}

.catogory-short p:last-of-type {
	margin-bottom: 0;
}
.quick a {
	font-family: 'Futura', sans-serif;
	font-weight: bold;
}
.counter {
	text-align: right;
	margin-bottom: 40px;
}
.counter p {
	font-family: 'Futura', sans-serif;
	font-weight: bold;
	margin: 0;
}
.catogory-short {
	padding: 0px 0px;
}

.single-products-wrap {
	width: 100%;
	display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox; /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Chrome */
	display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
	padding-bottom: 50px;
	margin-bottom: 0 !important;
}
.single-products-wrap .slick-prev,
.single-products-wrap .slick-next {
	bottom: 8% !important;
}
.single-product .product-title h2 {
	text-transform: uppercase;
}
.single-product .product-title h3 {
	text-transform: uppercase;
	border-bottom: 3px solid;
	font-weight: normal;
	padding-bottom: 10px;
}
.single-product > img {
	width: auto;
	height: 300px !important;
	margin: auto;
	opacity: 1;
}
.carouu .single-product {
	text-align: center;
}

.carouu .single-product img {
	margin-bottom: 25px;
}

.carouu .single-product h2 {
	margin-bottom: 5px;
}

.relatedProducts a.single-product {
	color: inherit;
	text-decoration: none;
}

.relatedProducts a.single-product > img {
	height: 380px !important;
	opacity: 1;
}

.relatedProducts.recommendedProducts a.single-product > img {
	height: 380px !important;
}

.relatedProducts .carouu .single-product h2 {
	border: none;
	padding: 0;
	margin: 0;
}

.relatedProducts .carouu .single-product h3 {
	font-family: 'Futura', sans-serif;
	border: none;
	padding: 0;
	margin: 0;
}

.relatedProducts.recommendedProducts > div > h2 {
	text-transform: uppercase;
	border-bottom: 4px solid;
	line-height: 1.466666666666667;
	border-top: 4px solid;
	padding: 14px 20px 5px;
	display: inline-block;
	margin-bottom: 75px;
}

.relatedProducts.recommendedProducts .carouu .single-product h3 {
	font-weight: 500;
}

button.addItCart {
	color: #fff;
	padding: 12px 20px 8px;
	line-height: 1;
	background: #000;
	border-radius: 11px;
	text-decoration: none;
	margin-top: 40px;
	text-transform: uppercase;
	display: block;
	max-width: 226px;
	text-align: center;
	margin: 0 auto;
	font-size: 16px;
	font-family: 'Futura', sans-serif;
	font-weight: bold;
}

.carouu .single-product h3 {
	font-family: 'Futura', sans-serif;
	font-weight: bold;
	line-height: 1.478260869565217;
	border-bottom: 4px solid;
	padding-bottom: 12px;
	margin-bottom: 16px;
}

.carouu .single-product .more-info {
	display: block;
}

.eachPro .product-title {
	display: inline-block;
	border-bottom: 4px solid;
	padding: 0 30px 4px;
	margin-bottom: 30px;
}
.single-product.eachPro .product-title h3 {
	font-size: 30px;
	margin-bottom: 4px;
	padding-bottom: 0;
	border-bottom: none;
}

.single-product.eachPro .product-title h4 {
	font-size: 24px;
	margin: 0;
	text-transform: uppercase;
	line-height: 1.466666666666667;
}

.eachPro > p {
	font-family: 'Futura', sans-serif;
	font-weight: bold;
	max-width: 415px;
	margin: 0 auto 28px;
	letter-spacing: -1.44px;
}

.eachPro .price p:last-of-type {
	margin: 0 auto;
}
.eachPro img {
	margin-bottom: 30px;
}
.more-info a:hover {
	background: #000;
	color: #d8d5cd;
	border-color: #000;
}
.more-info a {
	color: #000;
	border-color: #000;
	text-decoration: none;
	font-family: 'Futura', sans-serif;
	font-weight: bold;
	text-transform: uppercase;
	display: inline-block;
	border: 5px solid;
	padding: 8px 39px 4px;
	font-size: 16px;
	border-radius: 11px;
	transition: 0.2s all ease-in-out;
}
body .eachPro .woocommerce a.add_to_cart_button {
	font-size: 16px;
	max-width: 226px;
	transition: 0.2s all ease-in-out;
}

body .eachPro .woocommerce a.add_to_cart_button.added {
	max-width: 246px;
}

.eachPro .more-info a {
	font-size: 16.36px;
	padding: 10px 49px 7px;
}
.image-break {
	width: 100%;
	min-height: 325px;
	position: relative;
	display: grid;
	align-items: end;
	align-content: end;
	justify-content: start;
	justify-items: start;
	padding: 30px;
}
.woocommerce .image-break img,
.image-break img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
}
.image-break .image-caption {
	position: absolute;
	bottom: 0px;
	left: 40px;
	color: #fff !important;
}
.image-caption h2 {
	font-size: 76px;
	font-family: 'Futura', sans-serif;
	font-weight: bold;
	text-transform: uppercase;
	opacity: 0.8;
}
.image-caption h1 {
	opacity: 0.8;
}
.single-product .price {
	margin-top: 15px;
}
.single-product .price bdi {
	display: none !important;
}
.single-product .price .product {
	border: none !important;
	padding: 0 !important;
}
.newslettButtGrid {
	display: grid;
	gap: 16px;
	grid-template-columns: 1fr;
	max-width: 467px;
	margin: 0 auto;
	margin-top: 24px;
}

.newslettButtGrid input {
	margin: 0;
}
body .woocommerce a.add_to_cart_button {
	color: #d8d5cd;
	padding: 12px 0px 8px;
	line-height: 1;
	background: #000;
	border-radius: 11px;
	text-decoration: none;
	margin-top: 40px;
	text-transform: uppercase;
	display: block;
	text-align: center;
	margin: 0 auto;
	font-size: 16px;
	max-width: 230px;
	font-family: 'Futura', sans-serif;
	font-weight: bold;
}
body .woocommerce a.add_to_cart_button.added {
	max-width: 250px;
}
.single-product-inner .product-image {
	align-self: start;
	order: 1;
}
.single-product-page h1 {
	text-transform: uppercase;
	margin-bottom: 0;
}
.single-product-page h2 {
	text-transform: uppercase;
	border-bottom: 4px solid;
	padding-bottom: 10px;
	line-height: 1.466666666666667;
	margin-bottom: 34px;
}
.single-product-page .relatedProducts h2 {
	border-top: 4px solid;
	padding: 14px 20px 5px;
	display: inline-block;
	margin-bottom: 75px;
}

.relatedProducts {
	text-align: center;
}
.single-product-description {
	line-height: 2;
	font-family: 'Futura', sans-serif;
	font-weight: bold;
	text-align: left;
}

.single-product-description p:last-of-type {
	margin-bottom: 40px;
}
.single-product-page .product-image span {
	display: block;
	text-align: center;
	line-height: 1;
	margin-top: 30px;
}
.single-product-inner {
	display: grid;
	grid-template-columns: 1fr;
	align-items: start;
	justify-content: space-between;
	gap: 50px;
}
.single-product-inner .product-description {
	order: 2;
}
.single-product-inner .product-content {
	order: 3;
}
.single-product-inner .attribute h3::after {
	content: "";
	height: 4px;
	background: #000;
	display: block;
	max-width: 256px;
	margin-top: 18px;
}
body.single .woocommerce a.add_to_cart_button {
	max-width: none;
	font-size: 25px;
	letter-spacing: 1.44px;
	padding: 30px 0px 26px;
}
.options p:last-of-type {
	margin-bottom: 0;
}

.single-product-inner .attribute {
	padding-bottom: 50px;
}
.single-product-inner .attribute h3 {
	text-transform: uppercase;
	margin-bottom: 16px;
	font-size: 24px;
	font-family: 'Futura', sans-serif;
	font-weight: bold;
}
.single-product-inner > div {
	text-align: justify;
}
.dossage-left p,
.usage p {
	margin: 0;
}
p.dosageTitle {
	margin-bottom: 40px;
	font-family: 'Futura', sans-serif;
	font-weight: bold;
	line-height: 1.25;
	text-transform: uppercase;
}
p.dosageTitle.oilTitle {
	margin-bottom: 25px;
}
.single-product-page .product-wrapper {
	padding: 40px 30px;
}
body .woocommerce a.add_to_cart_button:hover,
body .woocommerce a.add_to_cart_button:focus {
	background: #b7b1a5;
}
.accordion-content p:last-of-type {
	margin: 0;
}
.single-product-image-caption p:last-of-type {
	font-size: 18px;
	margin-bottom: 0;
	text-align: center;
}
.product-image img {
	display: block;
	max-height: 360px;
	margin: 0 auto;
}
.popup-product-image img {
	height: 315px !important;
	display: block;
	margin: auto;
	width: auto;
	margin-bottom: 24px;
}
.popup-content .product-title {
	text-align: left;
	text-transform: uppercase;
}

.popup-content .product-title h3 {
	margin-bottom: 0;
	font-family: 'Futura', sans-serif;
	font-weight: bold;
}
body .popup-content .woocommerce a.add_to_cart_button {
	margin-top: 10px;
	font-size: 16px;
	margin-left: 0;
	max-width: 226px;
}

body .popup-content .woocommerce {
	padding: 0 !important;
	margin: 0;
}
.popup-content .product-title h4 {
	margin: 0;
	font-family: 'Futura', sans-serif;
	font-weight: bold;
	letter-spacing: -0.8px;
}

.popup-content .product-title h4 br {
	display: none;
}
.image-cover {
	margin-top: 50px;
	position: relative;
	min-height: 340px;
	width: 100%;
	display: block;
}
.image-cover .box-title.horizontal {
	color: rgb(249 240 221 / 80%);
	position: absolute;
	bottom: 0px;
	left: 50px;
}
.image-cover .box-title {
	text-transform: uppercase;
	font-family: 'Futura Condensed', sans-serif;
	font-size: 210px;
	line-height: 1;
}
.image-cover .box-title.vertical {
	color: rgba(255, 255, 255, 0.8) !important;
	position: absolute;
	bottom: 50%;
	left: 50px;
	transform: translateY(50%) rotate(180deg);
	writing-mode: vertical-rl;
}
.accordion-left h2 {
	margin-bottom: 0;
	padding: 0;
}

.accordion-left h3 {
	text-transform: uppercase;
	font-family: 'Futura', sans-serif;
	font-weight: bold;
	margin-bottom: 24px;
}

.image-accordion .accordion-wrap {
	border: 3px solid rgb(216 213 205 / 95%);
	border-radius: 7.4px;
}

.accordion > div {
	background: rgb(216 213 205 / 95%);
	margin-bottom: 20px;
}
.accordion-title {
	background: #b7b1a5;
	width: 100%;
	padding: 15px 24px;
	border-radius: 7.4px;
	cursor: pointer;
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	font-family: 'Futura', sans-serif;
	font-weight: bold;
	text-transform: uppercase;
	align-items: center;
	transition: 0.2s all ease-in-out;
}
.accordion-title .click {
	color: #d8d5cd;
	text-decoration: none;
	font-size: 16px;
	transition: 0.2s all ease-in-out;
}
.accordion-left h2,
.accordion-left h3 {
	text-align: center;
	border: none !important;
}
.accordion-title > * {
	letter-spacing: 0.96px;
	transform: translateY(2px);
	margin: 0;
	font-family: 'Futura', sans-serif;
	font-weight: bold;
	font-size: inherit;
}

.accordion-wrapper {
	padding: 50px;
}
.image-accordion {
	background-size: cover !important;
	background-position: center !important;
}
.image-accordion .accordion-wrapper {
	display: grid;
	grid-template-columns: 1fr;
	justify-content: space-between;
	padding: 30px;
	align-items: center;
}
.related-wrapper {
	padding: 30px;
}
.accordion-right {
	text-align: center;
	background: rgb(183 177 165 / 80%);
	border-radius: 10px;
	padding: 30px;
	border: 3px solid #d8d5cd;
}
.accordion-content {
	display: none;
	padding: 34px 50px;
}
.dossage-content {
	display: grid;
	grid-template-columns: auto auto;
	gap: 30px;
}
.dossage-right {
	text-align: center;
}
.accordion-right img {
	padding-bottom: 30px;
}
.accordion-right p:not(:last-of-type) {
	font-family: 'Futura', sans-serif;
	font-weight: bold;
	text-align: justify;
}

.accordion-right hr + p:not(:last-of-type) {
	text-align: center;
	text-align-last: center;
}

.accordion-right hr + p:not(:last-of-type) {
	margin-bottom: 0;
}

.accordion-right p:last-of-type {
	margin: 0;
}
.accordion-right hr {
	width: 100%;
	max-width: 341px;
	margin: 30px auto;
	color: #000;
	background: #000;
	height: 4px;
}

.open-button {
	background-color: #555;
	color: white;
	padding: 16px 20px;
	border: none;
	cursor: pointer;
	opacity: 0.8;
	position: fixed;
	bottom: 23px;
	right: 28px;
	width: 280px;
}

/* The popup form - hidden by default */
.popLoginLogo span {
	text-align: center;
	display: block;
	margin: 20px 0px;
}
.popup-content {
	display: grid;
	grid-template-columns: 1fr;
	padding: 0;
	gap: 30px;
}
.popup-content bdi {
	display: none;
}
.popup-content .add_to_cart_inline {
	border: none !important;
}
.popup-content .product {
	border: 2px solid;
	padding: 30px;
}
.form-popup {
	position: fixed;
	bottom: 0;
	border: 3px solid #f1f1f1;
	z-index: 9999;
	width: 100%;
	top: 0px;
	background: #d5d2ca;
	overflow: auto;
	padding: 30px;
	opacity: 0;
	pointer-events: none;
	transition: 0.2s all ease-in-out;
	box-shadow: -3px 2px 7px 1px #00000040;
}

.form-popup.open {
	opacity: 1;
	pointer-events: all;
}

.popup-header-wrapper h1 {
	width: 30%;
	float: left;
	font-size: 70px !important;
	text-align: left;
}

.popup-header-wrapper .popup-search {
	width: 100%;
	border: 1px solid #000000;
	background: transparent;
	font-size: 24px;
	padding: 11.5px 30px;
	padding-right: 56px;
	text-transform: uppercase;
	letter-spacing: 5.28px;
	text-align: right;
}
h2 button.closeForm {
	height: 55px;
}
.closeForm,
.closeForm:focus {
	border-radius: 5px;
	order: 3;
	padding: 0;
	margin-left: 0;
	margin-right: 0;
	background: #b7b1a5;
	font-size: 30px;
	width: 60px;
	height: 100%;
	display: grid;
	align-items: center;
	justify-content: center;
}
.loginForm,
.registerForm {
	transition: 0.2s all ease-in-out;
	opacity: 1;
	pointer-events: all;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.close {
	opacity: 0;
	pointer-events: none !important;
}
.closeForm:hover {
	background: #000000;
}
.footerMiddle .filter-categories a:hover {
	color: #b7b1a5;
}

.footerMiddle .filter-categories a:hover svg path {
	fill: #b7b1a5;
}

.footerMiddle .filter-categories svg {
	height: 120px !important;
	width: 120px !important;
}

.footerMiddle .filter-categories a {
	padding-top: 0;
	font-size: 18px;
}

.popup-header-wrapper h2 {
	font-size: 30px;
	text-align: left;
	margin-bottom: 15px;
	display: grid;
	grid-template-columns: 1fr auto;
	align-content: start;
}

.popup-footer {
	margin: -30px;
	margin-top: 0;
}

.searchBo::after {
	content: "\f002";
	font-family: 'Font Awesome 5 Pro';
	position: absolute;
	pointer-events: none;
	right: 0;
	margin: 0;
	padding: 0;
	width: 57px;
	color: #000;
	font-weight: 400;
	font-size: 30px;
	letter-spacing: 0;
	text-align: center;
	top: 50%;
	transform: translateY(-50%);
}
.popup-header-wrapper {
	display: grid;
	grid-template-columns: 1fr;
	justify-content: space-between;
	align-items: start;
	gap: 0;
	margin-bottom: 30px;
}

.searchBo {
	margin-left: auto;
	margin-right: 0;
	position: relative;
}

/* Add styles to the form container */
.form-container {
	max-width: 300px;
	padding: 10px;
	background-color: white;
}

/* Full-width input fields */
.form-container input[type=text],
.form-container input[type=password] {
	width: 100%;
	padding: 15px;
	margin: 5px 0 22px 0;
	border: none;
	background: #f1f1f1;
}

.product-desc {
	display: grid;
	padding: 40px 0px 30px;
	gap: 15px;
	grid-template-columns: 1fr;
}
.desc1 {
	text-align: left;
}

.product-desc h2 {
	border-top: 2px solid;
	border-bottom: 2px solid;
}

/* When the inputs get focus, do something */
.form-container input[type=text]:focus,
.form-container input[type=password]:focus {
	background-color: #ddd;
	outline: none;
}

/* Set a style for the submit/login button */
.form-container .btn {
	background-color: #04aa6d;
	color: white;
	padding: 16px 20px;
	border: none;
	cursor: pointer;
	width: 100%;
	margin-bottom: 10px;
	opacity: 0.8;
}

/* Add a red background color to the cancel button */
.form-container .cancel {
	background-color: red;
}

/* Add some hover effects to buttons */
.form-container .btn:hover,
.open-button:hover {
	opacity: 1;
}
.popup-category-image {
	position: relative;
	height: 695px;
	margin-top: 80px;
}
.popup-category-image > img {
	object-fit: cover;
	height: 100% !important;
	width: 100%;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
}
.popup-image-content {
	position: absolute;
	right: 10%;
	top: 40%;
	color: rgba(255, 255, 255, 0.8);
	font-family: 'Futura', sans-serif;
	font-weight: bold;
}
.popup-image-content .desc-content-one {
	font-size: 102px;
	text-transform: uppercase;
}
.popup-image-content .desc-content-two {
	font-size: 62px;
	text-transform: uppercase;
}
#popupLogin,
#popupCart {
	max-width: 960px;
	width: 100%;
	position: fixed;
	top: 123px;
	height: calc(100vh - 123px);
	right: 0px;
	border: none;
	background: #b6b0a4;
	transition: 0.2s all ease-in-out;
	padding: 0;
}
.popLoginLogo {
	margin-bottom: 50px;
}
.loginForm .forms {
	max-width: 400px;
	margin: 0 auto;
}
.popLoginLogo img {
	text-align: center;
	display: block;
	margin: auto;
	max-width: 245px !important;
}
div#popupLogin > div {
	display: grid;
	align-items: end;
}
.cartHead {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 15px;
	align-items: center;
	border: 5px solid #d8d5cd;
	border-radius: 7.4px;
	padding: 10.5px 25px 6.5px;
	margin-bottom: 15px;
}

button#emptyCart {
	background: transparent;
	color: #000;
	font-size: 22px;
	padding: 0;
	justify-self: end;
	width: 26px;
}

button#emptyCart i {
	font-weight: 500;
}

.cartHead p {
	margin: 0;
	text-transform: uppercase;
	font-size: 18px;
	letter-spacing: 0.72px;
	font-weight: 500;
}

p.cartItemPrice {
	text-align: right;
}

.eachCartItem {
	padding: 15px 25px;
	border: 2px solid #d8d5cd;
	border-right: none;
	border-top: none;
	border-left: none;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 15px;
	align-items: center;
}

.eachCartItem:first-of-type {
	border-top: none;
}

.cartContent {
	margin-bottom: 30px;
	position: relative;
}

.couponBox input.logInput {
	border: 4px solid #000;
	color: #000;
	margin-bottom: 0;
	text-transform: uppercase;
	font-family: 'Futura', sans-serif;
	font-weight: bold;
	font-size: 18px;
	padding: 13.5px 20px 8.5px;
	text-align: left;
	letter-spacing: 0.36px;
	border-radius: 7.4px;
	width: 100%;
	transition: 0.2s all ease-in-out;
}

.couponBox {
	display: grid;
	grid-template-columns: 1fr;
	margin-bottom: 30px;
	gap: 10px;
}

.cartBottom {
	display: grid;
	justify-content: end;
}

.cartBox {
	height: 100%;
	display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox; /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Chrome */
	display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
	flex-direction: column;
	justify-content: space-between;
}

.cartTop {
}

button#applyCoupon {
	border: 5px solid #d8d5cd;
	border-radius: 7.4px;
	background: #b7b1a5;
	font-size: 20px;
	color: #000;
	font-weight: bold;
	letter-spacing: 0.8px;
	padding: 16px 30px 14px;
	min-width: 225px;
}

.discountsTotal {
	position: relative;
}

button#removeCoupon {
	position: absolute;
	width: 100%;
	color: #d8d5cd;
	text-transform: uppercase;
	background: #000;
	opacity: 0;
	transition: 0.2s all ease-in-out;
}

.discountsTotal:hover > button#removeCoupon {
	opacity: 1;
}

.cartTotal > div {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	color: #000;
	font-weight: bold;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.amountRight {
	text-align: right;
}

.totalTotal .amountRight {
	font-size: 28.28px;
	letter-spacing: 0;
}

a.checkout,
button.checkout,
.woocommerce button.button[type="submit"],
.woocommerce #payment #place_order {
	color: #d8d5cd;
	line-height: 1;
	border-radius: 11px;
	text-decoration: none;
	text-transform: uppercase;
	text-align: center;
	font-weight: bold;
	display: block;
	margin-left: auto;
	background: #000;
	font-size: 18px;
	padding: 20.5px 20px 16.5px;
}

.woocommerce-address-fields__field-wrapper {
	margin-bottom: 30px;
}

.cartTotal {
	max-width: 400px;
	margin-left: auto;
	width: 100%;
}

.eachCartItem p {
	margin: 0;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 20px;
}

.cartItemQuantity {
	display: grid;
	grid-template-columns: auto 30px;
	justify-content: center;
	justify-items: center;
	align-items: center;
}

.quantityAdjust > button {
	padding: 0;
	background: transparent;
	color: #000;
	border: 5px solid #d8d5cd;
	border-radius: 0;
	width: 30px;
	height: 30px;
	display: grid;
	align-items: center;
	justify-content: center;
	font-size: 14px;
}

.quantityAdjust {
	display: grid;
}

button.increaseQty {
	border-bottom-width: 2.5px;
}

button.decreaseQty {
	border-top-width: 2.5px;
}

button.decreaseQty i {
	transform: translateY(1.25px);
}

button.increaseQty i {
	transform: translateY(1.25px);
}

.cartItemQuantity input {
	background: transparent;
	padding: 0;
	border: none;
	width: 30px;
	-webkit-appearance: none;
	margin: 0;
	-moz-appearance: textfield;
}

.cartItemQuantity input::-webkit-outer-spin-button,
.cartItemQuantity input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.cartContent.noClick {
	pointer-events: none;
}

.cartContent::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #fff;
	opacity: 0;
	z-index: 9;
	pointer-events: none;
	transition: 0.2s all ease-in-out;
}

.cartContent.noClick::before {
	opacity: 0.3;
	pointer-events: all;
}

.cartContent.noClick > i {
	opacity: 1;
}

.cartContent > i {
	position: absolute;
	top: calc(50% - 10px);
	left: 50%;
	z-index: 10;
	transform: translate(-50%, -50%);
	transition: 0.2s all ease-in-out;
	opacity: 0;
	pointer-events: none !important;
}

.loginForm {
	margin: 0 auto;
	padding: 70px 0 70px;
}
.loginForm input[type="submit"] {
	color: #d8d5cd;
	padding: 12.5px 0px 8.5px;
	line-height: 1;
	background: #000 !important;
	border-radius: 11px;
	text-decoration: none;
	text-transform: uppercase;
	display: block;
	max-width: 227px;
	text-align: center;
	width: 100%;
	margin: 0 auto;
	font-size: 16.12px;
	font-family: 'Futura', sans-serif;
	font-weight: bold;
	margin-top: 15px;
}
.logInput {
	border: 3px solid #000;
	background: transparent !important;
	color: rgb(215 212 204 / 68%);
	margin-bottom: 15px;
	border-radius: 11px;
	padding: 14.5px 30px 8.5px;
	text-align: center;
	font-family: 'Futura', sans-serif;
	font-weight: bold;
	text-transform: uppercase;
}
.loginForm input::placeholder {
	color: rgb(215 212 204 / 68%);
}

.registerForm {
	padding: 75px 70px 50px;
}
.register-button {
	text-align: center;
	margin-top: 85px;
}
.register-button p {
	margin-bottom: 6px;
	font-family: 'Futura', sans-serif;
	font-weight: bold;
	line-height: 1.3;
	font-size: 20px;
}
.closePopup {
	position: absolute;
	top: 10px;
	right: 10px;
	color: #fff;
	background: #000;
	padding: 5px 15px;
	border-radius: 50%;
	cursor: pointer;
}
.register-fields-right span {
	font-size: 12px !important;
	font-family: 'Futura-BookOblique', sans-serif;
	display: block;
	margin-top: -20px;
	font-style: oblique;
}
.register-wrapper {
	display: grid;
	gap: 30px;
	grid-template-columns: 1fr;
}
.popSignUpLogo img {
	max-width: 92px !important;
	margin: 0 auto 35px;
}

.popSignUpLogo p {
	font-size: 20px;
	font-family: 'Futura', sans-serif;
	font-weight: bold;
	max-width: 545px;
	margin: 0 auto 28px;
}

.popSignUpLogo {
	text-align: center;
	margin-bottom: 75px;
}
.register-wrapper input {
	width: 100%;
	border: 4px solid #000;
	color: #000;
	margin-bottom: 0;
	text-transform: uppercase;
	font-family: 'Futura', sans-serif;
	font-weight: bold;
	font-size: 18px;
	padding: 13.5px 20px 8.5px;
	text-align: left;
	letter-spacing: 0.36px;
	margin-bottom: 30px;
}
.register-wrapper input[type="checkbox"] {
	width: auto !important;
	font-size: 12px !important;
	font-family: 'Futura', sans-serif;
	font-weight: bold;
	margin: 0;
	opacity: 0;
	display: none;
}
.register-wrapper label::before {
	content: "";
	height: 49px;
	font-style: normal;
	width: 49px;
	border: 4px solid #000;
	border-radius: 11px;
}
.register-wrapper label {
	width: auto !important;
	font-size: 12px !important;
	font-family: 'Futura-BookOblique', sans-serif;
	font-style: oblique;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 15px;
	align-items: center;
}
.register-wrapper input[type="checkbox"]:checked + label::before {
	content: "\f00c";
	font-family: 'Font Awesome 5 Pro';
	display: grid;
	align-items: center;
	justify-content: center;
	font-size: 28px;
}
#popupCart > .cart {
	padding: 30px;
	height: 100%;
}
#popupCart > .checkout {
	padding: 50px;
	background: #d5d2ca !important;
}
.agreement {
	text-align: center;
	padding-top: 50px;
}
.agreement span,
.joinUs,
.agreement span,
.woocommerce .button.joinUs {
	color: #d8d5cd;
	padding: 12.5px 0px 8.5px;
	line-height: 1;
	background: #000 !important;
	border-radius: 11px;
	text-decoration: none;
	text-transform: uppercase;
	display: block;
	max-width: 227px;
	text-align: center;
	width: 100%;
	margin: 0 auto;
	font-size: 16.12px;
	font-family: 'Futura', sans-serif;
	font-weight: bold;
}
.agreement p {
	font-size: 12px !important;
	font-style: oblique;
	font-family: 'Futura-BookOblique', sans-serif;
}
.agreement p a {
	color: inherit;
}
.agreement #signhere {
	background: none !important;
	cursor: pointer;
}
.agreement input {
	color: #d8d5cd;
	padding: 12.5px 0px 8.5px;
	line-height: 1;
	background: #000 !important;
	border-radius: 11px;
	text-decoration: none;
	text-transform: uppercase;
	display: block;
	max-width: 227px;
	text-align: center;
	width: 100%;
	margin: 10px auto;
	font-size: 16.12px;
	font-family: 'Futura', sans-serif;
	font-weight: bold;
}

.suggestions {
	background: #b1ab9f;
}

.orders {
	background: #b1ab9f;
	padding: 25px 0px 30px;
}
.shipping {
	background: #b1ab9f;
	padding: 25px 0 5px;
}
.shipping address::first-line {
	font-size: 22px;
}
.shipping address {
	background: #d5d2ca;
	padding: 30px;
	border-radius: 0;
	margin: 0 5px;
	text-align: center;
	font-style: normal;
	font-weight: bold;
}
.shipping address a {
	text-decoration: none;
	background: #000;
	color: #d2cfc7;
	border-radius: 15.2px;
	padding: 6.5px 10px 2.5px;
	text-transform: uppercase;
	min-width: 87px;
	display: inline-block;
	margin-top: 20px;
}
.woocommerce-account .shipping .addresses .woocommerce-Address-title h3 {
	text-transform: uppercase;
	font-size: 20px;
	letter-spacing: 1.2px;
	float: none;
	font-family: 'Futura', sans-serif;
	font-weight: bold;
	padding: 0 25px;
}
.shipping-recap {
}
.order-fisrt {
	display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox; /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Chrome */
	display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
.order-second {
	display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox; /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Chrome */
	display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
.order-details {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
}
.order-details-wrap {
	display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox; /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Chrome */
	display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
	border: 3px solid #d5d2ca;
	margin: 0px 70px;
	padding: 30px;
}
.order-recap {
	background: #d2cfc7;
	margin: 0px 25px;
	padding: 25px 20px 28px;
	border-radius: 7.4px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 25px;
	text-transform: uppercase;
}
.orderTitle {
	font-weight: bold;
	line-height: 1;
	margin-bottom: 16px;
}

.order-recap p {
	margin: 0;
	line-height: 1;
}

.orderStatus {
	text-align: right;
}

.eachOrder {
	margin-bottom: 25px;
}

.orderItems {
	margin: 0 35px;
	padding: 25px 20px;
	border: 5px solid #d2cfc7;
	margin-top: -2px;
}

.close * {
	pointer-events: none !important;
}

.socialProfile {
	padding: 30px;
	grid-template-columns: 1fr;
	gap: 30px;
	display: grid;
	align-items: center;
}

div#sbi_images {
	display: grid;
	grid-template-columns: 1fr;
	gap: 15px;
}

#sb_instagram #sbi_images > div {
	width: 100% !important;
	position: relative;
}

#sb_instagram #sbi_images > div a::before {
	content: "";
	width: 180px;
	height: 40px;
	left: 10px;
	background-image: url(/wp-content/uploads/2021/07/product-logo@3x.png);
	position: absolute;
	z-index: 9;
	background-size: contain;
	background-repeat: no-repeat;
	top: 20px;
}

#sb_instagram #sbi_images > div a::after {
	content: "";
	z-index: 8;
	background: rgb(0, 0, 0);
	background: linear-gradient(150deg, rgb(0 0 0 / 35%) 0%, rgba(0, 0, 0, 0) 100%);
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
}

#sb_instagram .sbi_photo {
	position: relative;
}

.order-history h2 {
	font-size: 24px;
	text-transform: uppercase;
	font-family: 'Futura', sans-serif;
	font-weight: bold;
	margin-bottom: 48px;
}

.order-history-wrap {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}

.account-header {
	padding: 30px;
	display: grid;
	/* grid-template-columns: max-content max-content;
	justify-content: space-between; */
}
.socialRight h3 {
	padding: 25px 0px 18px;
	border-top: 4px solid;
	text-transform: uppercase;
	border-bottom: 3px solid;
	margin-bottom: 30px;
	font-size: 30px;
	display: inline-block;
}

.socialRight p {
	font-weight: bold;
	line-height: 2;
	letter-spacing: -0.92px;
	max-width: 90%;
}

.socialRight a {
	border-radius: 15.2px;
	background: #000;
	text-decoration: none;
	color: #d2cfc7;
	font-weight: bold;
	padding: 15.5px 15px 11.5px;
	display: inline-block;
	line-height: 1;
}

.account-header h2 {
	text-transform: uppercase;
	line-height: 1;
	margin: 0;
	font-size: 30px;
	font-weight: 400;
}
.account-header a {
	color: #b1ab9f;
	text-decoration: none;
	font-size: 25px;
	text-transform: uppercase;
	font-weight: bold;
	line-height: 1;
	margin-top: 10px;
	letter-spacing: 2px;
}
.prod-title {
	color: #000;
	text-transform: uppercase;
}
.sug-products a {
	text-decoration: none;
}
.suggestions {
	padding: 30px;
}
a:hover .topSug img {
	transform: scale(1.15);
}
.topSug {
	position: relative;
	min-height: 360px;
	padding: 50px 30px 35px;
	display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox; /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Chrome */
	display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
	flex-direction: column;
	justify-content: flex-end;
	color: #d2cfc7;
	border-radius: 24.6px;
	overflow: hidden;
}

.topSug img {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100% !important;
	left: 0;
	right: 0;
	bottom: 0;
	object-fit: cover;
	z-index: -2;
	border-radius: 24.6px;
	transition: 0.2s all ease-in-out;
}

.topSug h4 {
	margin: 0;
	font-size: 24px;
	font-family: 'Futura';
	font-weight: bold;
}

a.eachSugg.bottom .topSug {
	justify-content: flex-end;
}

.top .topSug {
	justify-content: space-between;
}

.topSug p {
	margin: 0;
	font-size: 20px;
	font-weight: bold;
}

a.eachSugg {
	text-decoration: none;
}

.topSug::after {
	content: "";
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 60%;
	top: auto;
	left: 0;
	bottom: 0;
	right: 0;
	border-radius: 0 0 24.6px 24.6px;
	background: linear-gradient(0deg, rgb(0 0 0 / 100%) 0%, rgb(0 0 0 / 0%) 100%);
}

.top .topSug::before {
	content: "";
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 50%;
	top: 0;
	left: 0;
	bottom: auto;
	right: 0;
	border-radius: 24.6px 24.6px 0 0;
	background: linear-gradient(180deg, rgb(0 0 0 / 75%) 0%, rgba(0, 0, 0, 0) 100%);
}

a.eachSugg > h4 {
	margin: 0;
	margin-top: 15px;
	font-size: 25px;
	font-weight: bold;
	text-align: center;
}
.sug-header h3 {
	text-transform: uppercase;
	font-family: 'Futura';
	font-weight: bold;
	margin-bottom: 45px;
}
.sug-products .prod-title {
	text-align: center;
	padding-top: 20px;
}
.sug-products .slick-prev,
.sug-products .slick-next {
	bottom: 20%;
	color: #d8d5ce;
}
.sug-products .slick-prev i,
.sug-products .slick-next i {
	color: #d8d5ce;
}
.order-history {
	padding: 30px;
}

body input.wpcf7-submit {
	color: #fff;
	padding: 12px 20px 8px;
	line-height: 1;
	background: #000;
	border-radius: 11px;
	text-decoration: none;
	margin-top: 40px;
	text-transform: uppercase;
	display: block;
	min-width: 226px;
	text-align: center;
	margin-left: auto;
	margin-top: 0;
	font-size: 16px;
	font-family: 'Futura', sans-serif;
	font-weight: bold;
}
body .wpcf7 .ajax-loader {
	display: none;
}
.contact-wrapper {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr;
	margin-bottom: 15px;
}

form p {
	margin: 0;
}
.contactForm-second > span {
	height: 100%;
	display: block;
}

.contactForm-second {
	display: block;
}

.contactForm-first {
	display: grid;
	gap: 20px;
}
.contactForm-first input {
	border: 4px solid #000;
	background: none;
	margin-bottom: 0;
	text-transform: uppercase;
	font-family: 'Futura', sans-serif;
	font-weight: bold;
	font-size: 24px;
	padding: 11px 22px 6px;
}
.contactForm-second textarea {
	border: 4px solid #000;
	background: none;
	margin-bottom: 0;
	text-transform: uppercase;
	height: 100%;
	display: block;
	font-family: 'Futura', sans-serif;
	font-weight: bold;
	font-size: 24px;
	padding: 11px 22px 6px;
}
.newsletter-form {
	width: 90%;
	margin: auto;
}
.newsletter-form input {
	border: 3px solid #000;
	background: none;
	margin-bottom: 20px;
	text-transform: uppercase;
	font-family: 'Futura', sans-serif;
	font-weight: bold;
	padding: 16px 20px 10px;
}
.newsletter-form input[type="submit"] {
	border: none;
	margin: 0;
}
.newsletter-form input[type="submit"]:hover {
	border-width: unset;
}
.woocommerce-cart-form table {
}
.woocommerce-form-coupon-toggle {
	display: none;
}
.woocommerce-cart-form__cart-item .product-thumbnail,
.woocommerce-cart-form__cart-item .product-price {
	display: none;
}
thead .product-thumbnail,
thead .product-price {
	display: none;
}
.woocommerce table.shop_table {
	border: none !important;
}
.woocommerce table.shop_table td {
	border-top: 3px solid #d5d2ca !important;
}
.woocommerce-cart-form__cart-item a {
	color: #000;
	text-decoration: none;
}
.woocommerce .quantity .qty {
	background: none !important;
	border: none !important;
}
.woocommerce a.remove {
	color: #000 !important;
}
.woocommerce a.remove:hover {
	background: #000 !important;
}

.woocommerce form .checkout-form .form-row label {
	display: none;
}

.woocommerce form .checkout-form .form-row input.input-text,
.woocommerce form .woocommerce-address-fields .form-row input.input-text,
.select2-container--default .select2-selection--single .select2-selection__rendered,
body .wc-stripe-elements-field,
body .wc-stripe-iban-element-field,
td.sv-wc-payment-gateway-payment-method-title.wc-square-payment-method-title input.nickname {
	background: transparent;
	border-radius: 11px !important;
	width: 100%;
	font-size: 16px;
	border: 4px solid #000 !important;
	color: #000 !important;
	text-transform: uppercase;
	font-family: 'Futura', sans-serif;
	font-weight: bold;
	padding: 13.5px 20px 8.5px !important;
	text-align: left;
	letter-spacing: 0.36px;
	display: block !important;
	line-height: 1.625 !important;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
	color: #000 !important;
}

.woocommerce form .checkout-form .form-row-first,
.woocommerce form .checkout-form .form-row-last,
.woocommerce form .checkout-form .form-row {
	float: none;
	width: 100%;
	margin-bottom: 0;
	padding: 0;
}

.woocommerce form .checkout-form .woocommerce-billing-fields__field-wrapper,
.woocommerce form .checkout-form .woocommerce-shipping-fields__field-wrapper {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px 15px;
}

.woocommerce form .checkout-form .select2-container--default .select2-selection--single,
.woocommerce form .woocommerce-address-fields .select2-container--default .select2-selection--single {
	background: transparent;
	border: none;
	border-radius: 0;
	margin: 0;
	height: auto;
}

.woocommerce form .checkout-form .select2-container--default .select2-selection--single .select2-selection__arrow {
	display: none;
}

.woocommerce a.button.sv-wc-payment-gateway-payment-form-manage-payment-methods {
	display: none;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
	padding: 1em 2em 1em 3.5em;
	margin: 0 0 2em;
	position: relative;
	background-color: #f7f6f7;
	color: #515151;
	border-top: 0px solid #a46497 !important;
	list-style: none outside;
	width: auto;
	word-wrap: break-word;
}
#place_order {
	text-transform: uppercase;
}
.woocommerce-edit-address .woocommerce,
.woocommerce-checkout .woocommerce-order,
.woocommerce-view-order .woocommerce,
.woocommerce-payment-methods .woocommerce {
	padding: 30px;
}

body.woocommerce-account .woocommerce-Address {
	margin-bottom: 25px;
}

.cardsSection {
	background: #d5d2ca;
	padding: 30px;
	border-radius: 0;
	margin: 0 5px;
	font-style: normal;
	font-weight: 500;
}

.woocommerce .cardsSection div.payment-method div,
.woocommerce .cardsSection div.cardHead div,
.woocommerce .cardsSection thead tr,
.woocommerce .cardsSection tbody td {
	padding: 0;
	border: none !important;
	margin: 0;
	line-height: 1 !important;
	text-transform: uppercase;
	letter-spacing: 1.32px;
}

.woocommerce .cardsSection div.cardHead div,
.woocommerce .cardsSection thead tr {
	font-size: 16px;
	letter-spacing: 1.2px;
	font-weight: 900;
}

.cardsSection .payment-method {
	background: #b1ab9f;
	border-radius: 13px;
	border: none;
	padding: 14.5px 15px 10.5px 25px;
	margin-bottom: 12px;
}

.cardsSection tbody tr td {
	background: #b1ab9f;
	border: none;
	padding-top: 12.25px !important;
	padding-bottom: 8.25px !important;
}

table.shop_table.shop_table_responsive.sv-wc-payment-gateway-my-payment-methods-table.wc-square-my-payment-methods {
	border-spacing: 0px 12px;
}

.cardsSection > div {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	padding: 0 25px;
	margin-bottom: 25px;
}

.woocommerce .cardsSection table.shop_table th {
	padding: 0;
	line-height: 1;
}

.woocommerce .cardsSection thead tr th span {
	padding: 0 25px;
	margin-bottom: 25px;
	display: block;
}

table.sv-wc-payment-gateway-my-payment-methods-table .sv-wc-payment-gateway-payment-method-header-details span,
table.sv-wc-payment-gateway-my-payment-methods-table .sv-wc-payment-gateway-payment-method-header-default span,
table.sv-wc-payment-gateway-my-payment-methods-table .sv-wc-payment-gateway-payment-method-header-actions span {
	display: none !important;
}

.cardsSection > div > div:last-of-type {
	display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox; /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Chrome */
	display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
	align-items: center;
}

.cardsSection > div > div:last-of-type > div:last-of-type {
	margin-left: auto;
	transform: translateY(-2px);
}

.woocommerce .cardsSection a.button {
	text-decoration: none;
	background: #000;
	color: #d2cfc7;
	border-radius: 15.2px;
	padding: 6.5px 10px 2.5px;
	text-transform: uppercase;
	min-width: 87px;
	display: inline-block;
	line-height: 1.625;
}

.cardsSection > div.paymentAdd {
	grid-template-columns: 1fr;
	justify-content: end;
	justify-items: end;
	margin-top: 30px;
	margin-bottom: 0;
}

.creditCards h3 {
	text-transform: uppercase;
	font-size: 20px;
	letter-spacing: 1.2px;
	float: none;
	font-family: 'Futura', sans-serif;
	font-weight: bold;
	padding: 0 25px;
}
.paginationjs-pages ul {
	display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox; /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Chrome */
	display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
	align-items: center;
	margin: 0 40px;
	justify-content: center;
}

.paginationjs-pages ul li {
	list-style: none;
	line-height: 1;
}

.paginationjs-pages ul li svg {
	height: 57.8px;
	width: 32px;
}

.order {
	display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox; /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Chrome */
	display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.order-wrap {
	height: 100%;
}

.paginationjs-pages ul li.paginationjs-next {
	margin-right: 0;
	margin-left: auto;
}

.paginationjs-pages ul li.paginationjs-page.J-paginationjs-page {
	justify-items: center;
}

.paginationjs-pages ul li.paginationjs-prev {
	margin-left: 0;
	margin-right: auto;
}

li.paginationjs-page.J-paginationjs-page.active a {
	color: #d2cfc7;
}

.paginationjs-pages ul li a {
	text-decoration: none;
	font-size: 20px;
	letter-spacing: 7.6px;
	font-weight: bold;
}
body .woocommerce-error,
body .woocommerce-info,
body .woocommerce-message {
	background: #d4d2ca;
	color: #000;
}

.paymentAdd a.button {
	padding: 6.5px 10px 2.5px !important;
}

body.woocommerce-account .woocommerce-error,
body.woocommerce-account .woocommerce-info,
body.woocommerce-account .woocommerce-message {
	background: #b1ab9f;
	color: #000;
}

body .woocommerce-error::before,
body .woocommerce-info::before,
body .woocommerce-message::before {
	color: #000;
}
body .woocommerce a.button:focus,
body .woocommerce a.button:hover,
body .woocommerce a.button.alt:focus,
body .woocommerce a.button.alt:hover,
body .woocommerce button.button:focus,
body .woocommerce button.button:hover,
body .woocommerce button.button.alt:focus,
body .woocommerce button.button.alt:hover,
body .woocommerce input.button:focus,
body .woocommerce input.button:hover,
body .woocommerce input.button.alt:focus,
body .woocommerce input.button.alt:hover,
body .woocommerce input[type="submit"]:focus,
body .woocommerce input[type="submit"]:hover,
body .woocommerce #respond input#submit:focus,
body .woocommerce #respond input#submit:hover,
body .woocommerce #respond input#submit.alt:focus,
body .woocommerce #respond input#submit.alt:hover,
.shipping address a:hover,
.socialRight a:hover,
.cardContent a:hover,
.cta-left a:hover,
.featured-left > div > a:hover,
.post-link:hover,
.back-to-articles:hover,
.site-container .wp-block-button a.wp-block-button__link.wp-block-button__link:hover,
.quick a:hover,
body input.wpcf7-submit:hover {
	background: #b7b1a5;
	color: #fff;
}

a.checkout:hover,
button.checkout:hover,
.woocommerce button.button[type="submit"]:hover {
	background: #d5d2ca;
	color: #000;
}

.woocommerce #payment #place_order:hover {
	background: #b6b0a4;
	color: #000;
}

.accordion-title:hover {
	background: #000;
	color: #fff;
}

.accordion-title:hover .click {
	color: #fff;
}

.footerRight a:hover {
	color: #fff;
}

.menu-right a:hover,
.search input[type=submit]:hover,
.menu-right > button:hover {
	color: #a09f9f;
}

.paginationjs-pages ul li a:hover {
	color: #d2cfc7;
}
svg.nextIcon path,
svg.prevIcon path {
	fill: #c7c4be;
	transition: 0.2s all ease-in-out;
}

svg.nextIcon:hover path,
svg.prevIcon:hover path {
	fill: #000;
}

.disabled svg.nextIcon:hover path,
.disabled svg.prevIcon:hover path {
	fill: #c7c4be;
}
.account-header a:hover {
	color: #000;
}

.woocommerce-terms-and-conditions-wrapper {
	max-width: 400px;
	margin-right: 0;
	margin-left: auto;
	text-align: right;
	margin-bottom: 28px;
}

#checkout_payments #payment_method_stripe + label {
	display: none;
}

div#checkout_payments {
	margin-top: 20px;
	margin-bottom: 10px;
}

div#checkout_payments ul.wc_payment_methods.payment_methods.methods,
div#checkout_payments ul.wc_payment_methods.payment_methods.methods fieldset {
	margin: 0;
	padding: 0;
	border: none;
}

.woocommerce form .checkout-form div#checkout_payments .form-row label {
	display: block;
}

ul.wc_payment_methods.payment_methods.methods li {
	list-style: none;
}

.woocommerce-billing-fields h3 {
	display: none;
}

h3#ship-to-different-address {
	font-size: inherit;
	font-weight: inherit;
	font-family: 'Futura', sans-serif;
	margin-top: 20px;
	margin-bottom: 0;
}

.site-container .wp-block-button a.wp-block-button__link.wp-block-button__link {
	color: #fff;
	padding: 12px 20px 8px;
	line-height: 1;
	background: #000;
	border-radius: 11px;
	text-decoration: none;
	margin-top: 40px;
	text-transform: uppercase;
	display: block;
	min-width: 226px;
	text-align: center;
	margin: 0 auto;
	font-size: 16px;
	font-family: 'Futura', sans-serif;
	font-weight: bold;
}

.shipping_address {
	margin-top: 20px;
}

.wp-block-buttons > .wp-block-button {
	margin-bottom: 28px;
}

.allOrders > p {
	padding: 0 25px;
}

.woocommerce-checkout ul.woocommerce-error {
	margin: 0;
}

label.woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox span::before,
.payment_box.payment_method_square_credit_card label > span::before,
.payment_box.payment_method_square_credit_card #wc-square-credit-card-use-new-payment-method + label::before,
.woocommerce
	form
	.checkout-form
	.wc-square-credit-card-new-payment-method-form.js-wc-square-credit-card-new-payment-method-form
	.form-row
	input#wc-square-credit-card-tokenize-payment-method
	+ label::before,
p.form-row.woocommerce-SavedPaymentMethods-saveNew label::before {
	content: "";
	height: 49px;
	font-style: normal;
	width: 49px;
	border: 4px solid #000;
	border-radius: 11px;
}

label.woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox span,
.payment_box.payment_method_square_credit_card label > span,
.payment_box.payment_method_square_credit_card #wc-square-credit-card-use-new-payment-method + label,
.woocommerce
	form
	.checkout-form
	.wc-square-credit-card-new-payment-method-form.js-wc-square-credit-card-new-payment-method-form
	.form-row
	input#wc-square-credit-card-tokenize-payment-method
	+ label,
p.form-row.woocommerce-SavedPaymentMethods-saveNew label {
	display: -webkit-box !important; /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box !important; /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox !important; /* TWEENER - IE 10 */
	display: -webkit-flex !important; /* NEW - Chrome */
	display: flex !important; /* NEW, Spec - Opera 12.1, Firefox 20+ */
	grid-template-columns: 49px 1fr;
	gap: 15px;
	align-items: center;
}

.payment_box.payment_method_square_credit_card span {
	grid-template-columns: 49px auto 1fr !important;
}

label.woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox input,
.payment_box.payment_method_square_credit_card input,
p.form-row.woocommerce-SavedPaymentMethods-saveNew input {
	display: none;
}

label.woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox input:checked + span::before,
.payment_box.payment_method_square_credit_card input:checked + label > span::before,
.payment_box.payment_method_square_credit_card #wc-square-credit-card-use-new-payment-method:checked + label::before,
.woocommerce
	form
	.checkout-form
	.wc-square-credit-card-new-payment-method-form.js-wc-square-credit-card-new-payment-method-form
	.form-row
	input#wc-square-credit-card-tokenize-payment-method:checked
	+ label::before,
p.form-row.woocommerce-SavedPaymentMethods-saveNew input:checked + label::before {
	content: "\f00c";
	font-family: 'Font Awesome 5 Pro';
	display: grid;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	line-height: 1;
}

.wc-square-credit-card-new-payment-method-form.js-wc-square-credit-card-new-payment-method-form {
	margin-top: 20px;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px 15px;
	display: grid;
}

.woocommerce
	form
	.checkout-form
	.wc-square-credit-card-new-payment-method-form.js-wc-square-credit-card-new-payment-method-form
	.form-row {
	float: inherit;
	width: inherit;
	display: inherit;
}
.payment_box.payment_method_square_credit_card p:first-of-type {
	margin-bottom: 20px;
}

.woocommerce
	form
	.checkout-form
	.wc-square-credit-card-new-payment-method-form.js-wc-square-credit-card-new-payment-method-form
	.form-row
	iframe,
.woocommerce-PaymentBox.woocommerce-PaymentBox--square_credit_card.payment_box.payment_method_square_credit_card
	iframe {
	height: 59px !important;
	background: transparent !important;
	border-radius: 11px !important;
	width: 100%;
	border: 4px solid #000 !important;
	color: #000 !important;
	text-transform: uppercase;
	font-family: 'Futura', sans-serif;
	font-weight: bold;
	font-size: 18px;
	padding: 13.5px 20px 8.5px !important;
	text-align: left;
	letter-spacing: 0.36px;
	display: block !important;
	line-height: 1.625 !important;
}

.wc-square-credit-card-new-payment-method-form.js-wc-square-credit-card-new-payment-method-form
	.form-row.form-row-wide.wc-square-credit-card-card-number-parent.wc-square-credit-card-hosted-field-parent,
.wc-square-credit-card-new-payment-method-form.js-wc-square-credit-card-new-payment-method-form
	.form-row.form-row-wide.wc-square-credit-card-card-postal-code-parent.wc-square-credit-card-hosted-field-parent.hidden,
.wc-square-credit-card-new-payment-method-form.js-wc-square-credit-card-new-payment-method-form
	p.form-row.woocommerce-validated {
	grid-column: 1/3;
}

body .woocommerce-cart #payment,
body .woocommerce-checkout #payment,
body #add_payment_method #payment {
	background: #d5d2ca;
}

li.woocommerce-PaymentMethod.woocommerce-PaymentMethod--square_credit_card.payment_method_square_credit_card > input {
	display: none;
}

.woocommerce-PaymentBox.woocommerce-PaymentBox--square_credit_card.payment_box.payment_method_square_credit_card {
	background: transparent !important;
	padding: 0 !important;
}

.woocommerce-PaymentBox.woocommerce-PaymentBox--square_credit_card.payment_box.payment_method_square_credit_card
	fieldset#wc-square-credit-card-credit-card-form {
	border: none;
	padding: 0;
}

.woocommerce-PaymentBox.woocommerce-PaymentBox--square_credit_card.payment_box.payment_method_square_credit_card
	.form-row {
	margin: 0 !important;
	padding: 0 !important;
}

form#add_payment_method ul.woocommerce-PaymentMethods.payment_methods.methods {
	border: none !important;
}

.eachCard .cardContent::before {
	//content: "";
	position: absolute;
	background: #fff;
	top: 0;
	left: -35px;
	right: -35px;
	bottom: 0;
	z-index: 1;
	opacity: 0.9;
}

.cardContent * {
	position: relative;
	z-index: 1;
}

.loginForm > div {
	padding: 0 30px;
}

@media only screen and (max-width: 959px) {
	.popup-category-image .ctaImageText,
	.cta-right.imageWithOverlay .ctaImageText {
		padding: 30px;
		background: #00000059;
	}

	.cardContent {
		margin: 0;
		padding: 30px 0;
	}
	
	.category-filter {
		top: auto !important;
	}

	.popup-category-image {
		height: auto;
	}
	.eachCartItem {
		grid-template-columns: 1fr 1fr;
	}
	.eachCartItem p.cartItemPrice {
		grid-column: 1/2;
		text-align: left;
	}
	div#order_review {
		padding: 30px;
	}

	.checkout-form {
		padding: 30px;
	}

	.woocommerce-billing-fields h3 {
		display: block;
	}

	.woocommerce-checkout .woocommerce {
		padding: 0;
	}
	.woocommerce table.shop_table_responsive tr,
	.woocommerce-page table.shop_table_responsive tr {
		margin-bottom: 12px;
		border: none !important;
	}
	.woocommerce table.shop_table_responsive tr:nth-child(2n) td,
	.woocommerce-page table.shop_table_responsive tr:nth-child(2n) td {
		background: #b1ab9f !important;
	}
	#add_payment_method #payment ul.payment_methods,
	.woocommerce-cart #payment ul.payment_methods,
	.woocommerce-checkout #payment ul.payment_methods {
		padding: 0 !important;
	}
}

/* Media Queries
---------------------------------------------------------------------------- */

@media only screen and (min-width: 480px) {
	table {
		table-layout: auto;
		word-break: normal;
	}
}

.wp-custom-logo .title-area img.mobileLogo {
	width: 50px;
}

.wp-custom-logo .title-area img.desktopLogo {
	display: none;
}

.onlyMobile {
	display: block;
}

.onlyDesktop {
	display: none;
}

.popup-header-wrapper > div button.closeForm,
.image-cover .box-title {
	display: none;
}

.single-product-image-caption {
	width: 100%;
	background: #b7b1a5;
	color: #000;
	border-radius: 10px;
	border: 3px solid #d8d5cd;
	padding: 30px;
	font-family: 'Futura', sans-serif;
	font-weight: bold;
	margin-top: -30px;
	position: relative;
}

.relatedProducts .slideArrows,
.suggestions .slideArrows {
	margin-top: 30px;
}

.cardsSection tbody tr td:nth-child(1) {
	border-radius: 13px 13px 0 0;
}

.cardsSection tbody tr td:nth-child(5) {
	border-radius: 0 0 13px 13px;
}

@media (max-width: 960px) {

	.accordion-right p:not(:last-of-type) {
		text-align: center;
	}

	.product-carousel, .category-products, .woocommerce.products, .carouu.recommendedP {
		position: relative;
	}

	.sug-header .slideArrows {
		position: unset;
		top: 40%;
		left: 50%;
		transform: none;
		width: unset;
		padding: unset;
		grid-template-columns: auto auto;
		justify-content: normal;
	}
/* 
	div:not(.sug-header) > .slideArrows { */
	.slideArrows {
		position: absolute;
		top: 40%;
		left: 50%;
		transform: translate(-50%, -40%);
		width: 100%;
		padding: 20px;
		grid-template-columns: max-content max-content;
		justify-content: space-between;
	}

	.topFooter {
		text-align: center;
	}
	
}

@media only screen and (min-width: 960px) {
	
	body.no-login.woocommerce-account .woocommerce {
    	margin: 40px 30px 0;
	}
	.onlyMobile {
		display: none;
	}

	.onlyDesktop {
		display: block;
	}
	
	.footerMiddle input {
		font-size: 15px;
	}

	.search .theSearch input {
		font-size: 15px;
	}

	.home .ctaContent .h2 {
		font-size: 30px;
	}

	.category-filter {
		position: sticky;
		top: 0;
		z-index: 999;
		transition: 0.2s all ease-in-out;
	}

	.cta-right {
		display: block;
	}
	.cardsSection tbody tr td:nth-child(1) {
		border-radius: 13px 0 0 13px;
		padding-left: 25px !important;
	}

	.cardsSection tbody tr td:nth-child(5) {
		border-radius: 0 13px 13px 0;
		padding-right: 15px !important;
	}
	.woocommerce-edit-address .woocommerce,
	.woocommerce-checkout .woocommerce-order,
	.woocommerce-view-order .woocommerce,
	.woocommerce-payment-methods .woocommerce {
		padding: 50px;
	}

	.order-history-wrap {
		grid-template-columns: repeat(2, 1fr);
		gap: 50px;
	}
	input,
	select,
	textarea,
	.woocommerce form .checkout-form .form-row input.input-text,
	.woocommerce form .woocommerce-address-fields .form-row input.input-text,
	.select2-container--default .select2-selection--single .select2-selection__rendered,
	body .wc-stripe-elements-field,
	body .wc-stripe-iban-element-field,
	td.sv-wc-payment-gateway-payment-method-title.wc-square-payment-method-title input.nickname {
		font-size: 18px;
	}
	.suggesBox.slick-initialized .slick-slide {
		padding: 0px 22.5px !important;
	}
	.account-header h2 {
		font-size: 40px;
	}
	div#sbi_images {
		gap: 30px;
		grid-template-columns: repeat(2, 1fr);
	}
	.logInput {
		font-size: 20px;
	}
	.register-button p,
	.popSignUpLogo p,
	.topSug p {
		font-size: 22px;
	}
	h1 {
		font-size: 45px;
	}
	.newsletter-form input {
		border: 4px solid #000;
		font-size: 20px;
	}
	.custom-card-phone {
		border: 9px solid rgb(184 179 168 / 95%);
	}

	.newslettButtGrid {
		grid-template-columns: 1fr 1fr;
	}
	#popupCart > .cart {
		padding: 50px;
	}
	.contactGrid {
		grid-template-columns: 1fr 1fr;
	}
	.gutter-sizer {
		width: 4%;
	}
	.grid-sizer,
	.blogArticle {
		width: 48%;
	}
	.featured .LeftX,
	.cta-right.imageWithOverlay .ctaImageText.LeftX {
		padding-left: 50px;
	}
	.wrap-posts img {
		height: 951px;
		border: 7px solid #fff;
	}
	.couponBox {
		grid-template-columns: 1fr auto;
		gap: 30px;
	}
	.couponBox input.logInput {
		opacity: 0;
		pointer-events: none !important;
	}

	.couponBox:hover input.logInput,
	.couponBox input.logInput:focus {
		opacity: 1 !important;
		pointer-events: all !important;
	}
	a.checkout,
	button.checkout,
	.woocommerce button.button[type="submit"],
	.woocommerce #payment #place_order {
		width: 400px;
		font-size: 20px;
	}
	.single-product-description {
		font-size: 24px;
	}
	.product-image img {
		max-height: 660px;
	}
	.image-accordion .accordion-wrap {
		border: 5px solid rgb(216 213 205 / 95%);
	}
	.single-product-inner {
		grid-template-columns: 29.312354312354312% 1fr 29.312354312354312%;
		gap: 50px;
	}
	.image-accordion .accordion-wrapper {
		grid-template-columns: 39.880952380952381% 44.226190476190476%;
		padding: 50px 30px;
	}
	.image-cover img {
		width: 100%;
		border: 1px solid;
		height: 100% !important;
		object-fit: cover;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
	}
	.single-product-image-caption {
		position: absolute;
		right: -30px;
		padding: 50px 50px 30px 50px;
		top: 60px;
		margin-top: auto;
		border: 9px solid #d8d5cd;
		font-size: 30px;
		max-width: 752px;
	}
	.single-product-inner .product-content {
		padding-top: 155px;
	}
	.image-cover {
		margin-top: 100px;
		min-height: 740px;
	}
	.single-product-inner .product-image {
		order: 2;
	}
	.single-product-inner .product-description {
		order: 1;
		padding-top: 60px;
	}
	.image-cover .box-title {
		display: block;
	}
	.popup-footer .footerMiddle {
		margin-right: 50px;
	}
	.popup-footer {
		margin: -50px;
	}
	.popup-header-wrapper .popup-search {
		max-width: 360px;
	}
	.popup-content .product-title h4 {
		font-size: 24px;
	}
	.product-desc {
		gap: 20px;
		padding: 50px 0px 50px;
		grid-template-columns: repeat(3, 1fr);
	}
	.popup-header-wrapper > div {
		display: grid;
		align-items: center;
		grid-template-columns: 1fr auto;
		gap: 18px;
	}
	.popup-header-wrapper > div button.closeForm {
		display: grid;
	}
	h2 button.closeForm {
		display: none;
	}
	.popup-category-icon img {
		width: auto;
		height: 77px !important;
	}
	.TopY {
		padding-top: 80px;
	}
	.RightX {
		padding-right: 80px;
	}
	.BottomY {
		padding-bottom: 50px;
	}
	.LeftX {
		padding-left: 80px;
	}
	.popup-header-wrapper h2 {
		font-size: 40px;
		max-width: 400px;
		display: block;
	}
	.image-break {
		min-height: 525px;
		padding: 30px 50px;
	}
	.form-popup {
		padding: 50px;
	}
	.category-products {
		padding: 70px 40px 50px;
	}
	.filter-categories {
		display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
		display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
		display: -ms-flexbox; /* TWEENER - IE 10 */
		display: -webkit-flex; /* NEW - Chrome */
		display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
		justify-content: space-between;
		gap: 50px;
	}
	.popup-header-wrapper {
		grid-template-columns: auto auto;
		gap: 30px;
		margin-bottom: 0;
	}
	.popup-content {
		gap: 40px;
		grid-template-columns: repeat(2, 1fr);
	}
	.eachCard img {
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		width: 100%;
		height: 100% !important;
		object-fit: cover;
	}
	.wp-custom-logo .title-area img.desktopLogo {
		display: block;
	}
	.wp-custom-logo .title-area img.mobileLogo {
		display: none;
	}
	.footer-content-right {
		flex-wrap: nowrap;
	}
	.categories-wrap .categories {
		grid-template-columns: 30% 70%;
	}
	.filter-title h2 {
		text-align: left;
	}
	.category-filter {
		padding: 0 50px;
		grid-template-columns: auto 57%;
	}
	nav#genesis-nav-primary {
		position: relative;
		height: auto;
		top: auto;
		background: inherit;
		padding: 0;
		width: auto;
		left: auto;
		right: auto;
		bottom: auto;
	}
	.genesis-nav-menu {
		flex-direction: row;
	}
	.cartTotal {
		min-width: 400px;
	}
	.eachCartItem {
		grid-template-columns: 1fr 110px 175px;
		gap: 30px;
	}
	.cartHead {
		grid-template-columns: 1fr 170px 100px;
		gap: 30px;
	}
	#popupLogin,
	#popupCart {
		width: 95%;
		top: 96px;
		height: calc(100vh - 96px);
	}

	.admin-bar #popupCart {
		top: 158.02px;
		height: calc(100vh - 158.02px);
	}

	.scroll + div#popupLogin,
	.scroll + div + #popupCart,
	.scroll + #popupCart {
		top: 101px;
		height: calc(100vh - 101px);
	}

	.admin-bar .scroll + div + #popupCart,
	.admin-bar .scroll + #popupCart {
		top: 146px;
		height: calc(100vh - 146px);
	}

	.site-header .search {
		display: block;
	}
	header.site-header.scroll {
		padding: 25px 50px;
	}
	.eachCard .cardContent::before {
		content: none;
	}
	body .woocommerce a.add_to_cart_button {
		max-width: 173px;
		font-size: 12.36px;
	}
	body .woocommerce a.add_to_cart_button.added {
		max-width: 193px;
	}
	.cardsGrid {
		grid-template-columns: 1fr 1fr;
	}

	.cardsGrid .eachCard:nth-child(1) .cardContent {
		max-width: 620px;
		margin: 0 auto;
		padding-left: 35px;
		padding-right: 35px;
	}

	.cardsGrid .eachCard:nth-child(1) {
		grid-row: 1/3;
		justify-content: center;
		align-items: end;
		text-align: center;
		grid-template-columns: 1fr;
	}

	/* Site Header
	--------------------------------------------- */

	.admin-bar .site-header {
		top: 32px;
	}

	.slideArrows {
		grid-template-columns: auto 1fr auto;
	}

	/* Genesis Menu
	--------------------------------------------- */

	.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 > .menu-bold > a {
		font-weight: 700;
	}

	.genesis-nav-menu > .menu-highlight > a {
		background-color: #000;
		border-radius: 3px;
		color: #fff;
		font-weight: 600;
		margin-left: 15px;
		padding-left: 20px;
		padding-right: 20px;
	}

	.genesis-nav-menu > .menu-highlight > a:focus,
	.genesis-nav-menu > .menu-highlight > a:hover {
		background-color: #000;
	}

	.genesis-nav-menu .sub-menu,
	.genesis-nav-menu .sub-menu a {
		width: 180px;
	}

	.genesis-nav-menu .sub-menu {
		border-top: 1px solid #eee;
		opacity: 0;
		padding-left: 0;
		position: absolute;
		transition: opacity 0.4s ease-in-out;
	}

	.genesis-nav-menu .sub-menu a {
		border: 1px solid #eee;
		border-top: 0;
		padding-bottom: 15px;
		padding-top: 15px;
	}

	.genesis-nav-menu .sub-menu .sub-menu {
		margin: -46px 0 0 179px;
	}

	/* Responsive Menu
	--------------------------------------------- */

	.js .nav-primary {
		display: block;
		padding-top: 15px;
	}

	.menu-toggle,
	.sub-menu-toggle {
		display: none;
		visibility: hidden;
	}

	/* Header Menu
	--------------------------------------------- */

	.nav-primary {
		clear: none;
		float: right;
		width: auto;
	}

	.nav-primary .genesis-nav-menu a {
		padding-left: 15px;
		padding-right: 0;
		font-size: 15px;
		color: #a09f9f;
	}

	.genesis-nav-menu .menu-item a::after {
		padding: 0px 0 0px 20px;
	}

	/* Site-Inner
	--------------------------------------------- */

	.site-inner {
		margin-top: 168px;
	}

	/* Content
	--------------------------------------------- */

	.content {
		float: left;
		width: 65%;
	}

	.sidebar-content .content {
		float: right;
	}

	.full-width-content .content {
		float: none;
		margin-left: auto;
		margin-right: auto;
	}

	/* Sidebar
	--------------------------------------------- */

	.sidebar {
		float: right;
		width: 30%;
	}

	.sidebar-content .sidebar {
		float: left;
	}

	/* Author Box
	--------------------------------------------- */

	.author-box {
		background-color: #f5f5f5;
		padding: 30px;
	}

	/* After Entry
	--------------------------------------------- */

	.after-entry {
		padding: 40px 60px;
	}

	.after-entry .enews {
		padding-left: 30px;
		padding-right: 30px;
	}

	/* Column Classes
	--------------------------------------------- */

	.five-sixths,
	.four-sixths,
	.one-fourth,
	.one-half,
	.one-sixth,
	.one-third,
	.three-fourths,
	.three-sixths,
	.two-fourths,
	.two-sixths,
	.two-thirds {
		float: left;
		margin-left: 2.564102564102564%;
	}

	.one-half,
	.three-sixths,
	.two-fourths {
		width: 48.717948717948715%;
	}

	.one-third,
	.two-sixths {
		width: 31.623931623931625%;
	}

	.four-sixths,
	.two-thirds {
		width: 65.81196581196582%;
	}

	.one-fourth {
		width: 23.076923076923077%;
	}

	.three-fourths {
		width: 74.35897435897436%;
	}

	.one-sixth {
		width: 14.52991452991453%;
	}

	.five-sixths {
		width: 82.90598290598291%;
	}

	.first {
		clear: both;
		margin-left: 0;
	}

	/* Entry Misc.
	--------------------------------------------- */

	.after-entry,
	.archive-description,
	.author-box,
	.comment-respond,
	.entry,
	.entry-comments,
	.entry-pings {
		margin-bottom: 0px;
	}

	/* Footer Widgets
	--------------------------------------------- */

	.footer-widgets .wrap {
		max-width: 1140px;
	}

	.footer-widget-area {
		float: left;
		margin-bottom: 0;
		width: calc(100% / 3);
	}
	h2,
	.h2 {
		font-size: 40px;
	}
	h3,
	.h3 {
		font-size: 25px;
	}
	body {
		font-size: 21px;
	}
	.ctaImageText p {
		font-size: 50px;
	}
	.image-break .ctaImageText p {
		font-size: 50px;
	}
	.cta-right.imageWithOverlay .ctaImageText p {
		font-size: 30px;
	}

	.featured .ctaImageText p {
		font-size: 50px;
	}
	.popup-category-image .ctaImageText p {
		font-size: 32px;
	}
	.carouu .single-product h2 {
		font-size: 28px;
	}
	.relatedProducts .carouu .single-product h2 {
		font-size: 26px;
	}
	.carouu .single-product h3 {
		font-size: 20px;
	}
	.eachCard {
		grid-template-columns: 85% 1fr;
		min-height: auto;
		align-items: auto;
	}
	.genesis-nav-menu .menu-item:last-of-type a {
		padding-right: 20px;
	}
	.menu-right {
		padding: 0 0 0 20px;
	}
	.topFooter {
		padding: 50px 30px;
		grid-template-columns: 135px 1fr;
	}
	.footerRight {
		grid-column: 1/3;
	}
	section.cta,
	div.featured {
		grid-template-columns: 1fr 66.752702702702703%;
		min-height: 650px;
	}
	.cta-left,
	.featured-left {
		order: -1;
	}
	.woocommerce .cta-right img,
	.woocommerce-page .cta-right img,
	.cta-right img {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		max-height: none;
	}
	.more-info a {
		font-size: 12.6px;
	}
	.category-details {
		padding: 70px 30px 40px;
	}
	.single-product.eachPro .product-title h3 {
		font-size: 40px;
	}
	.single-product.eachPro .product-title h4 {
		font-size: 27px;
	}
	.accordion-right {
		padding: 50px 50px 70px 50px;
		border: 9px solid #d8d5cd;
	}
	.topSug {
		height: 560px;
	}
	
	.wp-custom-logo .title-area {
    max-width: 180px;
}
	
}

@media (min-width: 1100px) {
.wp-custom-logo .title-area {
    max-width: 250px;
}
	#popupLogin, #popupCart {
		top: 101px;
		height: calc(100vh - 101px);
	}
	.scroll + div#popupLogin, .scroll + div + #popupCart, .scroll + #popupCart {
		top: 107px;
		height: calc(100vh - 107px);
	}
}

.slick-initialized .slick-slide {
	padding: 0px !important;
}

body .newslettButtGrid input.wpcf7-submit {
	min-width: auto;
}

h1.search-title + ul li > h3 + div.floatLeft {
	margin-bottom: 20px;
}

@media only screen and (min-width: 1260px) {

	.footerMiddle input {
		font-size: 15px;
	}

	.ctaImageText p {
		font-size: 90px;
	}
	.woocommerce form .checkout-form .woocommerce-billing-fields__field-wrapper,
	.woocommerce form .checkout-form .woocommerce-shipping-fields__field-wrapper {
		grid-template-columns: repeat(2, 1fr);
	}
	.socialRight a {
		font-size: 20px;
	}
	a.checkout,
	button.checkout,
	.woocommerce button.button[type="submit"],
	.woocommerce #payment #place_order {
		font-size: 24px;
	}
	.socialRight h3 {
		font-size: 40px;
	}
	.socialProfile {
		padding: 50px;
		grid-template-columns: repeat(2, 1fr);
		gap: 50px;
	}
	.cardsSection > div.paymentAdd {
		padding-right: 15px;
	}
	.woocommerce .cardsSection a.button,
	.shipping address a {
		font-size: 16px;
	}
	.cardsSection {
		padding: 50px;
		font-size: 16px;
	}
	.shipping address::first-line {
		font-size: 20px;
	}
	.shipping address {
		font-size: 18px;
		padding: 50px 30px;
	}
	.woocommerce-account .shipping .addresses .woocommerce-Address-title h3,
	.creditCards h3 {
		font-size: 25px;
	}
	.order-history {
		padding: 50px;
	}
	.topSug h4,
	.order-history h2 {
		font-size: 34px;
	}
	h1.search-title + ul li h3 a {
		font-size: 30px;
	}
	.register-wrapper {
		gap: 100px;
		grid-template-columns: repeat(2, 1fr);
	}
	h1.search-title + ul li > h3 + div.floatLeft {
		float: left;
		margin-bottom: 0;
	}
	.contact-wrapper {
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}
	.newslettButtGrid button.btn.add_to_cart_button,
	body .newslettButtGrid input.wpcf7-submit {
		min-width: 226px;
	}
	.information-wrap h2 {
		font-size: 35px;
	}
	.newsletter-form input {
		font-size: 25px;
	}
	.inner-card {
		padding: 50px 50px 25px;
	}

	.custom-card-newsletter .inner-card {
		padding: 50px 45px 25px;
	}
	.contactGrid {
		grid-template-columns: 1fr 1fr;
		gap: 50px;
	}
	.blogArticle h2 a {
		font-size: 40px;
	}
	h1.title,
	h2.title,
	h3.title,
	h4.title,
	h5.title,
	h6.title {
		font-size: 40px;
	}
	.gutter-sizer {
		width: 8.493771234428087%;
	}
	.grid-sizer,
	.blogArticle {
		width: 27.670819177047942%;
	}
	.wrap-posts {
		margin: 50px;
	}
	.accordion-title {
		grid-template-columns: 1fr auto;
		gap: 0;
		padding: 8.5px 24px;
	}
	.related-wrapper {
		padding: 50px 60px;
	}
	.accordion-right p:not(:last-of-type) {
		font-size: 30px;
		margin-bottom: 40px;
	}
	.product-desc {
		gap: 120px;
		padding: 80px 0px 50px;
		grid-template-columns: repeat(3, 1fr);
	}
	.image-accordion .accordion-wrapper {
		padding: 50px 80px;
	}
	.desc-header h3 {
		font-size: 40px;
	}
	.popup-content {
		gap: 75px;
		grid-template-columns: repeat(3, 1fr);
	}
	.slick-initialized .slick-slide {
		padding: 0px 55px !important;
	}
	.single-product.eachPro .product-title h3 {
		font-size: 50px;
	}
	.single-product.eachPro .product-title h4 {
		font-size: 30px;
	}
	.wrapper-content,
	.search-results .wapper {
		padding: 50px;
	}
	.cardsGrid {
		gap: 50px;
	}
	.wp-custom-logo .title-area {
		max-width: 280px;
	}
	.cta-left,
	.featured-left {
		padding: 0 50px;
	}
	.cta-left.Large {
		padding: 0 70px;
	}
	section.product-carousel {
		padding: 80px 50px 30px;
	}
	.carouu .single-product h2 {
		font-size: 22px;
	}
	.relatedProducts .carouu .single-product h2 {
		font-size: 28px;
	}
	.carouu .single-product h3 {
		font-size: 16px;
	}
	.eachCard {
		grid-template-columns: 65% 1fr;
	}
	.topFooter {
		padding: 50px 30px;
		grid-template-columns: 90px 1fr auto;
	}
	.footerRight {
		grid-column: auto;
	}
	section.cta,
	div.featured {
		min-height: 600px;
	}
	.footerMiddle h3 {
		font-size: 14px;
	}
	.footer-content p {
		font-size: 13px;
	}
	.category-details {
		padding: 120px 50px 60px;
	}
	#popupLogin,
	#popupCart {
		top: 107px;
		height: calc(100vh - 107px);
	}

	.admin-bar #popupCart {
		top: 134.02px;
		height: calc(100vh - 134.02px);
	}

	.scroll + div#popupLogin,
	.scroll + div + #popupCart,
	.scroll + #popupCart {
		top: 113px;
		height: calc(100vh - 113px);
	}

	.admin-bar .scroll + div + #popupCart,
	.admin-bar .scroll + #popupCart {
		top: 138.61px;
		height: calc(100vh - 138.61px);
	}

	.popup-header-wrapper h2 {
		font-size: 50px;
	}
	.single-product-image-caption {
		right: -60px;
	}
	.information-wrap {
		margin-top: 50px;
	}
	.custom-card-newsletter h2 {
		font-size: 48px;
	}
	.custom-card-newsletter .inner-card > p {
		margin-bottom: 40px;
		font-size: 25px;
	}
	h1 {
		font-size: 55px;
	}
	.h-readmore a {
		font-size: 20px;
	}
	.logInput {
		font-size: 24px;
	}
	.register-button p,
	.popSignUpLogo p,
	.topSug p {
		font-size: 22px;
	}
	.account-header {
		padding: 50px;
	}
	.account-header h2 {
		font-size: 60px;
	}
	.suggestions {
		padding: 50px;
	}
	.sug-header h3 {
		font-size: 30px;
	}
	.relatedProducts a.single-product > img {
		height: 400px !important;
	}

	.relatedProducts.recommendedProducts a.single-product > img {
		height: 500px !important;
	}
	
}

@media (max-width: 1200px) {

	.sug-header .slideArrows {
		grid-template-columns: auto auto;
	}
	
}

@media (min-width: 960px) and (max-width: 1700px) {

	.cta-left p {
		font-size: 16px;
	}

	.account-header {
		grid-template-columns: max-content max-content;
		justify-content: space-between;
		align-items: center;
	}

	body {
		font-size: 16px;
	}

	.site-header {
		padding: 22px 30px;
	}

	section.cta, div.featured {
		min-height: 500px;
	}

	section.product-carousel {
		padding: 50px 50px 30px;
	}

	.cardsGrid .eachCard:nth-child(1) .cardContent {
		padding: 59px 35px 20px;
	}

	.cardsGrid .eachCard:nth-child(1) .cardContent p {
		margin-bottom: 15px;
	}

	h2, .h2 {
		font-size: 30px;
	}

	.filter-categories a {
		padding: 15px 0 15px;
		font-size: 20px;
	}

	.filter-categories svg {
		height: 80px !important;
		width: 80px !important;
		margin: 0 auto 5px;
	}

	.category-products {
		padding: 38px 40px 50px;
	}

	.single-product.eachPro .product-title h3 {
		font-size: 35px;
	}

	.single-product.eachPro .product-title h4 {
		font-size: 25px;
	}

	.eachPro img {
		margin-bottom: 15px;
	}

	.quick {
		padding-top: 40px;
	}

	.single-product-description {
		font-size: 18px;
		line-height: 1.4;
	}

	.single-product-page h2 {
		margin-bottom: 25px;
	}

	.single-product-inner .product-content {
		padding-top: 85px;
	}

	.product-image img {
		max-height: 500px;
	}
	
	body.single .woocommerce a.add_to_cart_button {
		font-size: 17px;
    	letter-spacing: 1px;
    	padding: 20px 0px 20px;
	}
	
	.accordion-title .click {
		font-size: 13px;
	}

	.single-product-image-caption {
		font-size: 17px;
	}

	.image-cover {
		min-height: 500px;
	}
	
	.accordion-right p:not(:last-of-type) {
		font-size: 20px;
		margin-bottom: 30px;
	}

	.featured-left > div > a {
		margin: 30px auto 0;
		font-size: 18px;
	}

	.blogArticle h2 a {
		font-size: 27px;
	}

	.wrap-posts img {
		height: 700px;
	}

	.post-link {
		font-size: 18px;
	}

	.contactForm-first input {
		border: 3px solid #000;
		font-size: 16px;
		padding: 8px 22px 6px;
	}

	.contactForm-second textarea {
		border: 3px solid #000;
		font-size: 16px;
		padding: 8px 22px 6px;
	}

	.newsletter-form input {
		font-size: 16px;
		border: 3px solid #000;
		padding: 10px 20px 10px;
	}

	.custom-card-newsletter .inner-card > p {
		font-size: 18px;
	}

	.custom-card-newsletter h2 {
		font-size: 30px;
	}

	.information-wrap h2 {
		font-size: 30px;
	}

	.socialRight h3 {
		font-size: 25px;
	}

	.account-header h2 {
		font-size: 40px;
	}

	.account-header a {
		font-size: 18px;
	}

	.sug-header h3 {
		margin-bottom: 25px;
	}

	.topSug {
		height: 500px;
	}

	.topSug h4, .order-history h2 {
		font-size: 30px;
	}

	.register-button p, .popSignUpLogo p, .topSug p {
		font-size: 18px;
	}

	a.eachSugg > h4 {
		margin-top: 13px;
		font-size: 21px;
	}

	button#applyCoupon {
		border: 4px solid #d8d5cd;
		font-size: 16px;
		padding: 14px 30px 12px;
		min-width: 222px;
	}

	a.checkout, button.checkout, .woocommerce button.button[type="submit"], .woocommerce #payment #place_order {
		font-size: 17px;
	}

	a.checkout, button.checkout, .woocommerce button.button[type="submit"], .woocommerce #payment #place_order {
		width: 300px;
	}
}

.popup-footer .footerRight {
    align-self: end;
}

@media only screen and (min-width: 1700px) {

	.footerMiddle input {
		font-size: 25px;
	}

	.footerMiddle .filter-categories a {
		font-size: 28px;
	}

	.desc-header h3 {
		font-size: 50px;
	}

	.woocommerce .cardsSection a.button,
	.shipping address a {
		font-size: 18px;
	}

	.woocommerce .cardsSection div.cardHead div,
.woocommerce .cardsSection thead tr {
	font-size: 30px;
}

	.footerRight a {
		font-size: 28px;
	}

	.copyright {
		font-size: 31px;
	}

	.footer-content-right {
		gap: 50px;
	}

	.single-product > img {
		height: 345px !important;
	}

	.menu-right a,
	.menu-right span,
	.menu-right button {
		font-size: 38px;
		margin-right: 10px;
	}

	body {
		font-size: 24px;
	}
	.socialRight h3 {
		font-size: 50px;
	}
	a.checkout,
	button.checkout,
	.woocommerce button.button[type="submit"],
	.woocommerce #payment #place_order {
		font-size: 28.28px;
	}
	.socialRight a {
		font-size: 22.45px;
	}
	.socialProfile {
		padding: 70px 60px;
		grid-template-columns: repeat(2, 1fr);
		gap: 180px;
	}
	.shipping address::first-line {
		font-size: 31px;
	}
	.cardsSection {
		padding: 50px 25px 40px;
		font-size: 22px;
	}
	.woocommerce-account .shipping .addresses .woocommerce-Address-title h3,
	.creditCards h3 {
		font-size: 30px;
	}
	.shipping address {
		font-size: 27.6px;
		padding: 70px 30px 50px;
	}
	.order-history {
		padding: 60px;
	}
	.topSug h4,
	.order-history h2 {
		font-size: 44px;
	}
	.register-button p,
	.popSignUpLogo p,
	.topSug p {
		font-size: 25px;
	}
	.account-header {
		padding: 100px 60px 90px;
		grid-template-columns: max-content max-content;
		justify-content: space-between;
		align-items: center;
	}
	
	.account-header h2 {
		font-size: 80px;
	}
	.suggestions {
		padding: 60px;
	}
	.sug-header h3 {
		font-size: 44px;
	}
	.logInput {
		font-size: 28px;
	}
	h1 {
		font-size: 65px;
	}
	h1.search-title + ul li h3 a {
		font-size: 40px;
	}
	.h-readmore a {
		font-size: 22px;
	}
	.custom-card-newsletter h2 {
		font-size: 58px;
	}
	.custom-card-newsletter .inner-card > p {
		margin-bottom: 60px;
		font-size: 30px;
	}
	.newsletter-form input {
		font-size: 30px;
	}
	.information-wrap h2 {
		font-size: 55px;
	}
	.information-wrap {
		margin-top: 90px;
	}
	.inner-card {
		padding: 100px 65px 25px;
	}

	.custom-card-newsletter .inner-card {
		padding: 100px 45px 25px;
	}
	.contactGrid {
		gap: 75px;
	}
	.single-product-image-caption {
		right: -90px;
	}
	h1.title,
	h2.title,
	h3.title,
	h4.title,
	h5.title,
	h6.title {
		font-size: 50px;
	}
	.related-wrapper {
		padding: 50px 120px;
	}
	.single-product-page .product-wrapper {
		padding: 120px 90px 50px;
	}
	.image-accordion .accordion-wrapper {
		padding: 50px 120px;
	}
	.popup-header-wrapper h2 {
		font-size: 70px;
	}
	.category-title h2 {
		font-size: 65px;
	}
	#popupLogin,
	#popupCart {
		top: 148px;
		height: calc(100vh - 148px);
	}

	.scroll + div#popupLogin, .scroll + div + #popupCart, .scroll + #popupCart {
		top: 114px;
		height: calc(100vh - 114px);
	}

	.admin-bar #popupCart {
		top: 194.02px;
		height: calc(100vh - 194.02px);
	}

	.category-details {
		padding: 220px 65px 100px;
	}
	.search .theSearch input {
		font-size: 24px;
	}
	.search-form {
		max-width: 225px;
	}
	.topFooter {
		padding: 75px 100px 75px 50px;
		grid-template-columns: 135px 1fr auto;
	}
	.footerMiddle h3 {
		font-size: 20px;
	}
	div.search {
		margin-left: 30px;
	}
	.menu-right {
		padding: 0 0 0 40px;
	}
	h2,
	.h2 {
		font-size: 50px;
	}

	.home .ctaContent h2,
	.home .ctaContent .h2 {
		font-size: 50px;
	}

	h3,
	.h3 {
		font-size: 30px;
	}

	.home .ctaContent h3,
	.home .ctaContent .h3 {
		font-size: 30px;
	}

	.genesis-nav-menu .menu-item:last-of-type a {
		padding-right: 40px;
	}
	.genesis-nav-menu a {
		font-size: 22px;
	}
	.site-header {
		padding: 42.21px 50px;
		padding-right: 90px;
	}
	.nav-primary .genesis-nav-menu a {
		padding-left: 40px;
	}
	.genesis-nav-menu .menu-item a::after {
		padding: 0px 0 0px 40px;
	}
	.carouu .single-product h2 {
		font-size: 38px;
	}
	.relatedProducts .carouu .single-product h2 {
		font-size: 30px;
	}
	.carouu .single-product h3 {
		font-size: 24px;
	}
	.ctaImageText p {
		font-size: 120px;
	}
	.image-break .ctaImageText p {
		font-size: 80px;
	}
	.cta-right.imageWithOverlay .ctaImageText p {
		font-size: 60px;
	}
	.featured .ctaImageText p {
		font-size: 80px;
	}
	.popup-category-image .ctaImageText p {
		font-size: 62px;
	}
	.cta-left,
	.featured-left {
		padding: 0 85px;
	}
	.cta-left.Large {
		padding: 0 130px;
	}
	section.product-carousel {
		padding: 130px 85px 30px;
	}
	.eachCard {
		grid-template-columns: 54% 1fr;
	}
}

@media (min-width: 2000px) {
	
	.cardsGrid .eachCard:nth-child(1) {
		min-height: 1400px;
	}
	
}

/* Print Styles
---------------------------------------------------------------------------- */

@media print {
	*,
	*::before,
	*::after {
		background: transparent !important;
		box-shadow: none !important;
		color: #333 !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;
	}
}
