/**
Theme Name: Farmart
Theme URI: http://drfuri.com/farmart
Author: drfuri
Author URI: https://drfuri.com
Description: Farmart - Organic & Grocery Marketplace WordPress Theme
Version: 1.1.9
Requires at least: 5.0
Tested up to: 5.8
Requires PHP: 7.4
License: GNU General Public License v2+
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: farmart
Domain Path: /lang/
Tags: one-column, two-columns, left-sidebar, right-sidebar, full-width-template, post-formats, theme-options, threaded-comments, translation-ready

*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
:root {
	--fm-color-primary: #26901b;
	--fm-color-secondary: #ff7200;
	--fm-background-color-primary: #26901b;
	--fm-background-color-secondary: #ff7200;
	--fm-background-text-color-primary: #fff;
	--fm-background-text-color-secondary: #fff;
}

@keyframes bubble {
	0%, 100% {
		transform: scale(0);
	}
	50% {
		transform: scale(1);
	}
}

@keyframes farmartFadeInUp {
	from {
		opacity: 0;
		transform: translate3d(0, 80px, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

@-webkit-keyframes fadeInDown {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fm-spin-fast {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	50% {
		-webkit-transform: rotate(900deg);
		transform: rotate(900deg);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	to {
		-webkit-transform: rotate(1800deg);
		transform: rotate(1800deg);
	}
}

.loading-icon .bubble:nth-child(2n) .dot {
	animation-delay: -0.3s;
}

.loading-icon .bubble:nth-child(3n) .dot {
	animation-delay: 0s;
}

.loading-icon .bubble {
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: 0 5px;
	transform: scaleY(-50%);
}

.loading-icon .dot {
	display: block;
	border-radius: 50%;
	background-color: #fff;
	width: 100%;
	height: 100%;
	transform-origin: 50% 50%;
	animation: bubble 1.2s -0.6s infinite ease-out;
	-webkit-animation: bubble 1.2s -0.6s infinite ease-out;
}

.gooey {
	position: absolute;
	top: 0;
	left: 50%;
	width: 142px;
	height: 40px;
	margin: -20px 0 0 -71px;
	background: white;
	filter: contrast(20);
}

.gooey .dot {
	position: absolute;
	width: 16px;
	height: 16px;
	top: 12px;
	left: 15px;
	filter: blur(4px);
	background: #000;
	border-radius: 50%;
	transform: translateX(0);
	animation: dot 2.8s infinite;
}

.gooey .dots {
	transform: translateX(0);
	margin-top: 12px;
	margin-left: 31px;
	animation: dots 2.8s infinite;
}

.gooey .dots span {
	display: block;
	float: left;
	width: 16px;
	height: 16px;
	margin-left: 16px;
	filter: blur(4px);
	background: #000;
	border-radius: 50%;
	animation: bubble 1.2s -0.6s infinite ease-out;
}

.gooey .dots span:nth-child(2n) {
	animation-delay: -1s;
}

.gooey .dots span:nth-child(3n) {
	animation-delay: 0s;
}

@keyframes dot {
	0%, 100% {
		transform: scale(0);
	}
	50% {
		transform: scale(1) translateX(96px);
	}
}

@keyframes dots {
	50% {
		transform: translateX(-31px);
	}
}

.visible-effect.show:after {
	transform: scaleY(0);
}

.visible-effect:after {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #f9f9f9;
	display: block;
	content: '';
	transform: scaleY(1);
	transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
	transform-origin: 0 100%;
	z-index: 999;
}

@keyframes fm-spin-fast {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	50% {
		-webkit-transform: rotate(900deg);
		transform: rotate(900deg);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	to {
		-webkit-transform: rotate(1800deg);
		transform: rotate(1800deg);
	}
}

@keyframes lds-dual-ring {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@-webkit-keyframes lds-dual-ring {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@-o-keyframes lds-dual-ring {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@-ms-keyframes lds-dual-ring {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
	line-height: 1.15;
	/* 1 */
	-webkit-text-size-adjust: 100%;
	/* 2 */
}

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
	margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	box-sizing: content-box;
	/* 1 */
	height: 0;
	/* 1 */
	overflow: visible;
	/* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
	font-family: monospace, monospace;
	/* 1 */
	font-size: 1em;
	/* 2 */
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	/* 1 */
	text-decoration: underline;
	/* 2 */
	text-decoration: underline dotted;
	/* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
/*b,
strong {
	font-weight: bolder;
}*/
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-family: monospace, monospace;
	/* 1 */
	font-size: 1em;
	/* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
	border-style: none;
}

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	/* 1 */
	font-size: 100%;
	/* 1 */
	line-height: 1.15;
	/* 1 */
	margin: 0;
	/* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
	/* 1 */
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
	/* 1 */
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
	box-sizing: border-box;
	/* 1 */
	color: inherit;
	/* 2 */
	display: table;
	/* 1 */
	max-width: 100%;
	/* 1 */
	padding: 0;
	/* 3 */
	white-space: normal;
	/* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	/* 1 */
	padding: 0;
	/* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
	-webkit-appearance: textfield;
	/* 1 */
	outline-offset: -2px;
	/* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	/* 1 */
	font: inherit;
	/* 2 */
}

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
	display: none;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
	color: #666666;
	font-family: "Muli", sans-serif;
	font-size: 14px;
	line-height: 1.71429;
	-ms-word-wrap: break-word;
	word-wrap: break-word;
	box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	font-family: "Muli", sans-serif;
	color: #222222;
	line-height: 1.25714;
}

h1 {
	font-size: 48px;
}

h2 {
	font-size: 35px;
}

h3 {
	font-size: 21px;
}

h4 {
	font-size: 18px;
}

h5 {
	font-size: 16px;
}

h6 {
	font-size: 14px;
}

p {
	margin-bottom: 1.5em;
}

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

blockquote {
	font-size: 21px;
	line-height: 1.57143;
	margin: 0;
	padding: 26px 100px 33px;
	position: relative;
	font-family: "Playfair Display", sans-serif;
	color: #222222;
	font-weight: 400;
	font-style: italic;
	background-color: #f7f7f7;
}

blockquote:before {
	content: "\e7e5";
	display: block;
	font-family: 'FarmartIcon';
	font-size: 31px;
	color: var(--fm-color-primary);
}

blockquote cite {
	font-size: 14px;
	display: block;
	margin-top: 26px;
	font-style: normal;
}

blockquote p {
	margin: 0;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code, kbd, tt, var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
}

abbr, acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark, ins {
	background: transparent;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	/* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff;
	/* Fallback for when there is no custom background color defined. */
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em;
	padding-left: 1.5em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto;
	/* Make sure images are scaled correctly. */
	max-width: 100%;
	/* Adhere to container width. */
}

figure {
	margin: 1em 0;
	/* Extra wide images within figure tags don't overflow the content area. */
}

.farmart-first-letter {
	font: 700 47px/.9 "Muli";
	text-transform: uppercase;
	color: #222222;
	padding: 0 10px 0 0;
	float: left;
}

.fm-color-primary {
	color: var(--fm-color-primary);
}

.fm-color-blue {
	color: #00ccff;
}

.farmart-list,
ul.farmart-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.farmart-list li,
ul.farmart-list li {
	padding-left: 14px;
	position: relative;
	margin-bottom: 7px;
}

.farmart-list li:before,
ul.farmart-list li:before {
	content: '';
	position: absolute;
	top: 9px;
	left: 0;
	width: 6px;
	height: 6px;
	border: 1px solid #666;
}

.farmart-list li:last-child,
ul.farmart-list li:last-child {
	margin-bottom: 0;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.text-center {
	text-align: center;
}

.slick-dots {
	left: 0;
	bottom: 0;
}

.loading-icon {
	display: none;
	vertical-align: middle;
	text-align: center;
	opacity: 0;
	transition: 0.5s;
	z-index: -999;
	min-height: 27px;
}

.loading-icon .loading-bubbles {
	display: inline-block;
	transform: translateX(-5px);
}

.loading-icon .bubble {
	display: inline-block;
	width: 2px;
	height: 2px;
	margin: 0 1px;
	transform: scaleY(-50%);
}

.loading-icon .bubble:nth-child(2n) .dot {
	animation-delay: -0.3s;
}

.loading-icon .bubble:nth-child(3n) .dot {
	animation-delay: 0s;
}

.loading-icon .dot {
	display: block;
	background-color: #888;
	width: 100%;
	height: 100%;
	transform-origin: 50% 50%;
	animation: fadein 1.2s -0.6s infinite ease-out;
}

.loading .loading-icon {
	display: inline-block;
	opacity: 1;
}

@-webkit-keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@-moz-keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.farmart-tabs .tabs-nav {
	margin: 0;
	padding: 0;
	overflow: hidden;
	list-style-type: none;
}

.farmart-tabs .tabs-nav li {
	float: left;
}

.farmart-tabs .tabs-nav a {
	display: block;
}

.farmart-tabs .tabs-content {
	position: relative;
}

.farmart-tabs .tabs-panel {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	opacity: 0;
	transition: opacity 0.2s ease;
	transform: translateY(10px);
}

.farmart-tabs .tabs-panel.active {
	position: relative;
	z-index: 2;
	opacity: 1;
	top: 0;
	transform: translateY(0);
	transition: all 0.2s ease;
	transition-delay: 0.1s;
}

.farmart-loading:after {
	content: " ";
	display: block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border-width: 1px;
	border-style: solid;
	border-color: #fff transparent #fff transparent;
	animation: lds-dual-ring 0.5s linear infinite;
}

.btn-primary {
	color: var(--fm-background-text-color-primary);
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	padding: 14px 23px;
	text-align: center;
	background-color: var(--fm-background-color-primary);
	border-radius: 3px;
	display: inline-flex;
	align-items: center;
	transition: ease .5s;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
	outline: none;
	background-color: var(--fm-background-color-primary);
	color: var(--fm-background-text-color-primary);
}

.slick-track {
	margin: 0 !important;
}

.fm-elementor-ajax-wrapper .farmart-loading-wrapper {
	min-height: 500px;
	background-color: #fff;
	position: relative;
}

.fm-elementor-ajax-wrapper .farmart-loading {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.fm-elementor-ajax-wrapper .farmart-loading:after {
	width: 25px;
	height: 25px;
	border-color: var(--fm-color-primary) transparent var(--fm-color-primary) transparent;
}

.fm-vertical-tab {
	position: fixed;
	top: 50px;
	z-index: 9999;
	display: none;
}

.fm-vertical-tab ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}

.fm-vertical-tab ul a {
	color: #888888;
	font-size: 16px;
	background-color: #fff;
	border: 1px solid #eee;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 34px;
	height: 34px;
}

.fm-vertical-tab ul a.active {
	color: var(--fm-background-text-color-primary);
	background-color: var(--fm-background-color-primary);
	border-color: var(--fm-color-primary);
}

.fm-vertical-tab ul li:not(:last-child) a {
	border-bottom: 0;
}

.fm-off-canvas-layer {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: -1;
	background-color: rgba(0, 0, 0, 0.25);
	display: none;
}

.farmart-map {
	clear: both;
	height: 350px;
	position: relative;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	border-width: 1px 0 0 1px;
}

caption,
td,
th {
	padding: 0;
	font-weight: normal;
	text-align: left;
}

table,
th,
td {
	border: 1px solid #eee;
}

th {
	border-width: 0 1px 1px 0;
	font-weight: 700;
}

td {
	border-width: 0 1px 1px 0;
}

th,
td {
	padding: 0.4375em;
}

body .elementor-widget:not(:last-child) {
	margin-bottom: 0;
}

@media (max-width: 767px) {
	.elementor .elementor-hidden-phone {
		display: none;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.elementor .elementor-hidden-tablet {
		display: none;
	}
}

@media (min-width: 1025px) {
	.elementor .elementor-hidden-desktop {
		display: none;
	}
}

@media (min-width: 1200px) {
	.elementor-section.elementor-section-boxed > .elementor-container {
		max-width: 1170px;
	}
	.elementor-section.elementor-section-boxed > .elementor-column-gap-default {
		max-width: 1190px;
	}
	.elementor-section.elementor-section-boxed > .elementor-column-gap-extended {
		max-width: 1200px;
	}
	.elementor-section.elementor-section-boxed > .elementor-column-gap-narrow {
		max-width: 1180px;
	}
	.elementor-section.elementor-section-boxed > .elementor-column-gap-wider {
		max-width: 1200px;
	}
	.elementor-section.elementor-section-boxed > .elementor-column-gap-wide {
		max-width: 1200px;
	}
	.elementor-width-farmart-large .elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container {
		max-width: 1710px;
	}
	.elementor-width-farmart-large .elementor-section-boxed:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container {
		max-width: 1230px;
	}
	.elementor-width-farmart-large .elementor-section:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container {
		padding-left: 30px;
		padding-right: 30px;
	}
	.elementor-width-farmart-large .elementor-section:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-column-gap-default {
		padding-left: 20px;
		padding-right: 20px;
	}
	.elementor-width-farmart-large .elementor-section:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-column-gap-extended {
		padding-left: 15px;
		padding-right: 15px;
	}
	.elementor-width-farmart-large .elementor-section:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-column-gap-narrow {
		padding-left: 25px;
		padding-right: 25px;
	}
	.elementor-width-farmart-large .elementor-section:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-column-gap-wide {
		padding-left: 10px;
		padding-right: 10px;
	}
	.elementor-width-farmart-large .elementor-section:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-column-gap-wider {
		padding-left: 0;
		padding-right: 0;
	}
}

@media (max-width: 1199px) {
	.elementor-width-farmart-large .elementor-section:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container {
		padding-left: 15px;
		padding-right: 15px;
	}
	.elementor-width-farmart-large .elementor-section:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-column-gap-default {
		padding-left: 5px;
		padding-right: 5px;
	}
	.elementor-width-farmart-large .elementor-section:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-column-gap-extended {
		padding-left: 0;
		padding-right: 0;
	}
	.elementor-width-farmart-large .elementor-section:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-column-gap-narrow {
		padding-left: 10px;
		padding-right: 10px;
	}
	.elementor-width-farmart-large .elementor-section:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-column-gap-wide {
		padding-left: 0;
		padding-right: 0;
	}
	.elementor-width-farmart-large .elementor-section:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-column-gap-wider {
		padding-left: 0;
		padding-right: 0;
	}
}

@media (max-width: 767px) {
	.elementor-width-farmart-large .elementor-section:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container {
		padding-left: 0;
		padding-right: 0;
	}
}

.farmart-slides .slick-slide > div:not(.slick-slide-inner) {
	flex-basis: 100%;
	width: 100%;
}

.farmart-slides .slick-slide:focus {
	outline: 0;
}

.farmart-slides .item-slider {
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
	height: 400px;
	width: 100%;
}

.farmart-slides .item-slider:not(:first-child) {
	display: none;
}

.farmart-slides .item-slider.slick-slide {
	display: flex;
}

.farmart-slides .slick-slide-bg {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-width: 100%;
	min-height: 100%;
	transition-property: transform;
}

.farmart-slides .slick-slide-inner {
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	display: flex;
}

.farmart-slide-content {
	position: relative;
	z-index: 1;
	width: 100%;
}

.farmart-slide-content .animated {
	-webkit-animation-duration: 1.5s;
	animation-duration: 1.5s;
	animation-timing-function: cubic-bezier(0.65, 0.8, 0.44, 0.99);
}

.farmart-slide-subtitle {
	color: var(--fm-color-primary);
	margin-bottom: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.farmart-slide-heading {
	color: #222222;
	font-size: 30px;
	line-height: 1.33333;
	margin-bottom: 11px;
	font-weight: 700;
}

.farmart-slide-description {
	margin-bottom: 34px;
}

.farmart-slide-description p {
	margin-bottom: 0;
}

.farmart-slide-button {
	color: var(--fm-background-text-color-secondary);
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	padding: 14px 23px;
	text-align: center;
	background-color: var(--fm-background-color-secondary);
	border-radius: 3px;
	display: inline-flex;
	align-items: center;
	transition: ease .5s;
}

.farmart-slide-button .farmart-svg-icon {
	font-size: 10px;
	padding-left: 10px;
}

.farmart-slide-button:hover, .farmart-slide-button:focus {
	color: var(--fm-background-text-color-secondary);
}

.farmart-slide-price-box {
	font-size: 42px;
	line-height: 1;
	color: #e84506;
	font-weight: 700;
	position: relative;
	width: fit-content;
	margin-bottom: 30px;
}

.farmart-slide-price-box .field-price {
	display: inline-block;
}

.farmart-slide-price-box .unit {
	position: absolute;
	font-size: 24px;
}

.farmart-slides-wrapper .slick-prev-arrow {
	left: 0;
}

.farmart-slides-wrapper .slick-next-arrow {
	right: 0;
}

.farmart-slides-wrapper .arrows-container {
	height: 100%;
	position: relative;
	max-width: 1170px;
	margin: 0 auto;
}

.farmart-slides-wrapper .arrows-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.farmart-slides-wrapper .slick-prev-arrow,
.farmart-slides-wrapper .slick-next-arrow {
	width: 34px;
	height: 34px;
	line-height: 34px;
}

.farmart-slides-wrapper.align-icon-left .farmart-slide-button {
	flex-direction: row-reverse;
}

.farmart-slides-wrapper .slick-dotted.slick-slider {
	margin-bottom: 0;
}

.farmart-arrow-bottom span.slick-prev-arrow,
.farmart-arrow-bottom span.slick-next-arrow {
	top: auto;
	bottom: 5px;
	left: auto;
	right: 22px;
}

.farmart-arrow-bottom span.slick-prev-arrow {
	right: 60px;
}

.farmart-slides-wrapper--tabs {
	position: relative;
}

.farmart-slides__tab {
	border-width: 1px 0 0 1px;
	border-color: #eee;
	border-style: solid;
}

.farmart-slides__tab.slick-slider {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	padding: 0;
	background-color: #fff;
}

.farmart-slides__tab li.tab-item {
	display: table-cell;
	float: initial;
	padding: 15px 20px;
	border-width: 0 1px 1px 0;
	border-color: #eee;
	border-style: solid;
	cursor: pointer;
	text-align: center;
}

.farmart-slides__tab li.tab-item.slick-current {
	font-weight: 700;
	color: #222222;
}

@media (min-width: 1200px) {
	.farmart-slides__tab {
		width: 1170px;
	}
}

@media (max-width: 1200px) {
	.farmart-slides__tab {
		width: auto;
		padding: 0 15px;
	}
}

@media (min-width: 768px) {
	.farmart-slides-wrapper--tabs.farmart-slides-wrapper .slick-dots {
		bottom: 65px;
	}
	.farmart-slides-wrapper--tabs span.slick-prev-arrow,
	.farmart-slides-wrapper--tabs span.slick-next-arrow {
		top: calc(50% - 65px);
		transform: translate(0, calc(-50% + 35px));
	}
}

@media (max-width: 767px) {
	ul.farmart-slides__tab {
		display: none;
	}
}

.farmart--v-position-top .slick-slide-inner {
	align-items: flex-start;
}

.farmart--v-position-bottom .slick-slide-inner {
	align-items: flex-end;
}

.farmart--v-position-middle .slick-slide-inner {
	align-items: center;
}

.farmart--h-position-left .slick-slide-inner {
	justify-content: flex-start;
}

.farmart--h-position-right .slick-slide-inner {
	justify-content: flex-end;
}

.farmart--h-position-center .slick-slide-inner {
	justify-content: center;
}

.farmart-simple-text a .box-title {
	position: relative;
}

.farmart-simple-text a .box-title .title:after,
.farmart-simple-text a .box-title .highlight:after {
	content: '';
	position: absolute;
	bottom: 4px;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #555;
	opacity: 0;
	transition: .5s;
}

.farmart-simple-text .title, .farmart-simple-text .highlight {
	font-size: 13px;
}

.farmart-simple-text .title {
	font-weight: 400;
	color: #555;
	transition: .5s;
}

.farmart-simple-text .highlight {
	color: var(--fm-color-primary);
}

.farmart-simple-text .farmart-svg-icon {
	margin-right: 5px;
	color: #555;
	transition: .5s;
}

.farmart-simple-text .line {
	display: inline-block;
	background-color: #dddddd;
	width: 1px;
	height: 15px;
	margin-left: 14px;
	margin-top: auto;
	margin-bottom: auto;
}

.farmart-simple-text a:hover .title,
.farmart-simple-text a:hover .farmart-svg-icon {
	color: #000;
}

.farmart-simple-text a:hover .box-title .title:after,
.farmart-simple-text a:hover .box-title .highlight:after {
	background-color: #000;
	opacity: 1;
}

.farmart-simple-text.highlight-under .title {
	display: block;
}

.farmart-simple-text,
.farmart-simple-text a {
	display: flex;
	align-items: center;
}

.farmart-blog-shortcode .entry-footer,
.farmart-blog-shortcode .heading {
	display: flex;
	align-items: center;
}

.farmart-blog-shortcode .list-post--wrapper {
	border-width: 1px;
	border-color: #eeeeee;
}

.farmart-blog-shortcode .box-title {
	display: inline-block;
}

.farmart-blog-shortcode .box-title span {
	margin-bottom: 5px;
}

.farmart-blog-shortcode .box-title h3 {
	margin: 0;
}

.farmart-blog-shortcode .heading {
	justify-content: space-between;
	padding: 20px 0;
}

.farmart-blog-shortcode .extra-link {
	color: #888888;
}

.farmart-blog-shortcode .extra-link .farmart-svg-icon {
	font-size: 10px;
	margin-left: 3px;
}

.farmart-blog-shortcode .blog-wrapper {
	padding-left: 25px;
	padding-right: 25px;
}

.farmart-blog-shortcode .entry-header {
	margin-bottom: 18px;
}

.farmart-blog-shortcode .entry-format {
	margin-bottom: 22px;
}

.farmart-blog-shortcode .entry-title a {
	font-size: 16px;
}

.farmart-blog-shortcode .entry-title a:hover {
	text-decoration: none;
}

.farmart-blog-shortcode .entry-image,
.farmart-blog-shortcode .entry-image img {
	border-radius: 10px;
}

.farmart-blog-shortcode .entry-content {
	margin-bottom: 21px;
}

.farmart-blog-shortcode .entry-meta .meta-cat a {
	font-size: 13px;
}

.farmart-blog-shortcode .entry-meta .meta {
	color: #333;
}

.farmart-blog-shortcode .fm-entry-date {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	font-size: 13px;
	margin-top: 20px;
}

.farmart-blog-shortcode .fm-entry-date .meta-date {
	position: relative;
	margin-right: 5px;
}

.farmart-blog-shortcode .fm-entry-date .farmart-svg-icon {
	margin-right: 10px;
	position: relative;
	top: 2px;
}

.farmart-blog-shortcode .entry-footer {
	margin-bottom: 0;
}

.farmart-blog-shortcode .entry-footer .farmart-svg-icon {
	margin-right: 7px;
}

.farmart-testimonial .slick-dotted.slick-slider,
.farmart-testimonial-banner .slick-dotted.slick-slider,
.farmart-testimonial-2 .slick-dotted.slick-slider,
.farmart-testimonial-3 .slick-dotted.slick-slider {
	margin-bottom: 0;
}

.farmart-testimonial .box-item--inner {
	padding: 31px 50px 50px;
	height: 343px;
	border-radius: 5px;
	box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.farmart-testimonial .box-item__quote {
	margin-bottom: 29px;
}

.farmart-testimonial .box-item__quote .farmart-svg-icon {
	font-size: 37px;
	color: var(--fm-color-primary);
	margin-bottom: 6px;
	display: block;
}

.farmart-testimonial .box-item__quote .desc {
	font-size: 16px;
	color: #222222;
	line-height: 1.625;
}

.farmart-testimonial .box-item__author {
	display: flex;
	align-items: center;
}

.farmart-testimonial .box-item__author .name {
	margin: 0 0 3px;
}

.farmart-testimonial .box-item__author img {
	flex: none;
	margin-right: 25px;
	border-radius: 50%;
	max-width: 60px;
	max-height: 60px;
}

.farmart-testimonial .slick-list {
	padding: 55px 0 40px;
}

.farmart-testimonial .box-dots {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 9;
}

.farmart-testimonial .slick-dots {
	text-align: right;
	right: 0;
	top: 0;
	position: relative;
}

.farmart-testimonial .slick-arrow {
	width: 46px;
	height: 46px;
	line-height: 46px;
}

.farmart-testimonial .slick-prev-arrow {
	left: -23px;
}

.farmart-testimonial .slick-next-arrow {
	display: none !important;
}

.farmart-testimonial__wrapper {
	position: relative;
	margin-top: -43px;
}

.farmart-testimonial__heading {
	padding-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 9;
	position: relative;
}

.farmart-testimonial__heading .box-heading .subtitle {
	font-size: 13px;
	text-transform: uppercase;
	color: var(--fm-color-secondary);
	letter-spacing: 0.15em;
	display: block;
}

.farmart-testimonial__heading .box-heading .title {
	margin: 0 0 10px;
}

.farmart-testimonial-banner,
.farmart-testimonial-2 {
	padding-bottom: 30px;
}

.farmart-testimonial-banner .row-flex,
.farmart-testimonial-2 .row-flex {
	margin: 0;
}

.farmart-testimonial-banner .box-item--inner,
.farmart-testimonial-2 .box-item--inner {
	display: flex;
}

.farmart-testimonial-banner .box-item,
.farmart-testimonial-2 .box-item {
	padding: 0;
}

.farmart-testimonial-banner .box-item__image,
.farmart-testimonial-2 .box-item__image {
	flex: none;
	margin-right: 30px;
}

.farmart-testimonial-banner .box-item__image img,
.farmart-testimonial-2 .box-item__image img {
	border-radius: 50%;
}

.farmart-testimonial-banner .box-item__content,
.farmart-testimonial-2 .box-item__content {
	margin-top: -4px;
}

.farmart-testimonial-banner .box-item__content .farmart-svg-icon,
.farmart-testimonial-2 .box-item__content .farmart-svg-icon {
	font-size: 25px;
	color: var(--fm-color-primary);
	margin-bottom: 10px;
	display: block;
	line-height: 1;
}

.farmart-testimonial-banner .heading,
.farmart-testimonial-2 .heading {
	margin: 0 0 20px;
}

.farmart-testimonial-banner .box-text,
.farmart-testimonial-2 .box-text {
	display: flex;
	align-items: center;
	margin-bottom: 16px;
	flex-wrap: wrap;
}

.farmart-testimonial-banner .box-text .name,
.farmart-testimonial-2 .box-text .name {
	margin: 0;
}

.farmart-testimonial-banner .box-text > *:after,
.farmart-testimonial-2 .box-text > *:after {
	content: '/';
	display: inline-block;
	margin: 0 6px;
}

.farmart-testimonial-banner .box-text > *:last-child:after,
.farmart-testimonial-2 .box-text > *:last-child:after {
	display: none;
}

.farmart-testimonial-banner .slick-list,
.farmart-testimonial-2 .slick-list {
	border-right: 1px solid transparent;
}

.farmart-testimonial-banner .slick-prev-arrow,
.farmart-testimonial-2 .slick-prev-arrow {
	left: -50px;
}

.farmart-testimonial-banner .slick-next-arrow,
.farmart-testimonial-2 .slick-next-arrow {
	right: -50px;
}

.farmart-testimonial-2 .box-item--inner {
	padding: 56px 30px 53px;
}

.farmart-testimonial-2 div.box-item {
	border-right: 1px solid #eee;
	display: table-cell;
	float: initial;
	vertical-align: top;
}

.farmart-testimonial-2 .box-item__image img {
	max-width: 85px;
	max-height: 85px;
}

.farmart-testimonial-2 .slick-track {
	display: table;
}

.farmart-testimonial-2__wrapper {
	border: 1px solid #eee;
	background-color: #fff;
}

.farmart-testimonial-2__list {
	display: flex;
}

.farmart-testimonial-3 .box-item {
	position: relative;
}

.farmart-testimonial-3 .box-item--inner {
	padding: 60px;
	background-color: #fff;
	border-radius: 10px;
}

.farmart-testimonial-3 .box-item__image {
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}

.farmart-testimonial-3 .box-item__image img {
	height: 100%;
	border-radius: 50%;
	margin-right: 23px;
	max-width: 60px;
}

.farmart-testimonial-3 .box-item__image .name {
	font-size: 20px;
	color: #000;
	margin: 0;
}

.farmart-testimonial-3 .box-item__image .meta {
	color: #999;
}

.farmart-testimonial-3 .box-item__image .farmart-svg-icon {
	position: absolute;
	top: 60px;
	right: 85px;
	font-size: 36px;
	color: #33ccff;
}

.farmart-testimonial-3 .desc {
	font-size: 24px;
	line-height: 36px;
	color: #000;
}

.farmart-testimonial-3 .slick-arrow {
	font-size: 12px;
	width: 26px;
	height: 26px;
	line-height: 26px;
	color: #000;
	background-color: #fff;
	border: none;
	border-radius: 5px;
}

.farmart-testimonial-3 .slick-arrow:hover {
	background-color: var(--fm-background-color-primary);
}

.farmart-testimonial-3__list {
	display: flex;
	margin-left: -25px;
	margin-right: -25px;
}

.farmart-testimonial-3__list .slick-slide {
	padding: 0 25px;
}

.farmart-testimonial-banner .box-item__image img {
	max-width: 70px;
	max-height: 70px;
}

.farmart-testimonial-banner span.slick-prev-arrow,
.farmart-testimonial-banner span.slick-next-arrow {
	border: none;
	width: auto;
	height: auto;
	line-height: 1;
	background-color: transparent;
	top: 50%;
	transform: translateY(-50%);
}

.farmart-testimonial-banner span.slick-prev-arrow {
	left: initial;
	right: 20px;
}

.farmart-testimonial-banner span.slick-next-arrow {
	right: 0;
}

.farmart-testimonial-banner__box-heading {
	position: relative;
}

.farmart-testimonial-banner__wrapper {
	overflow: hidden;
	padding: 30px;
}

.farmart-testimonial-banner__list {
	background-color: #fff;
	width: 53%;
	float: right;
	padding: 40px 30px 28px 40px;
}

.farmart-testimonial-banner__list .slick-slide > *:not(:last-child) .box-item {
	padding-bottom: 32px;
	margin-bottom: 40px;
	border-bottom: 1px solid #eee;
}

.farmart-counter,
.farmart-counter .counter-item {
	border-color: #e5e5e5;
	border-style: solid;
}

.farmart-counter {
	border-width: 1px 0 0 1px;
}

.farmart-counter .counter-row {
	display: flex;
	flex-wrap: wrap;
}

.farmart-counter .farmart-svg-icon {
	font-size: 55px;
	color: var(--fm-color-primary);
	line-height: 1;
}

.farmart-counter .farmart-svg-icon svg {
	width: 55px;
	height: 55px;
	fill: var(--fm-color-primary);
}

.farmart-counter .title {
	text-transform: uppercase;
}

.farmart-counter .counter-value {
	font-size: 36px;
	color: #222222;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 7px;
}

.farmart-counter .counter-item {
	display: flex;
	padding: 43px 50px 33px;
	border-width: 0 1px 1px 0;
	background-color: #fff;
}

.farmart-counter--icon-left .counter-item__icon {
	padding-right: 44px;
}

.farmart-counter--icon-right .counter-item {
	flex-direction: row-reverse;
}

.farmart-counter--icon-right .counter-item__icon {
	padding-left: 44px;
}

.farmart-counter--icon-right .counter-item__content {
	text-align: right;
}

.farmart-counter--icon-center .counter-item {
	flex-direction: column;
	text-align: center;
}

.farmart-counter--icon-center .counter-item__icon {
	padding-bottom: 44px;
}

@media (max-width: 1920px) and (min-width: 1025px) {
	.elementor-widget-farmart-counter.columns-1 .counter-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.elementor-widget-farmart-counter.columns-2 .counter-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.elementor-widget-farmart-counter.columns-3 .counter-item {
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}
	.elementor-widget-farmart-counter.columns-4 .counter-item {
		flex: 0 0 25%;
		max-width: 25%;
	}
	.elementor-widget-farmart-counter.columns-5 .counter-item {
		flex: 0 0 20%;
		max-width: 20%;
	}
}

@media (max-width: 1024px) and (min-width: 768px) {
	.elementor-widget-farmart-counter.columns--tablet1 .counter-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.elementor-widget-farmart-counter.columns--tablet2 .counter-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.elementor-widget-farmart-counter.columns--tablet3 .counter-item {
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}
	.elementor-widget-farmart-counter.columns--tablet4 .counter-item {
		flex: 0 0 25%;
		max-width: 25%;
	}
	.elementor-widget-farmart-counter.columns--tablet5 .counter-item {
		flex: 0 0 20%;
		max-width: 20%;
	}
}

@media (max-width: 767px) {
	.elementor-widget-farmart-counter.columns--mobile1 .counter-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.elementor-widget-farmart-counter.columns--mobile2 .counter-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.elementor-widget-farmart-counter.columns--mobile3 .counter-item {
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}
	.elementor-widget-farmart-counter.columns--mobile4 .counter-item {
		flex: 0 0 25%;
		max-width: 25%;
	}
	.elementor-widget-farmart-counter.columns--mobile5 .counter-item {
		flex: 0 0 20%;
		max-width: 20%;
	}
}

.farmart-image-grid {
	display: flex;
	flex-wrap: wrap;
}

.farmart-image-grid .box-item {
	transition: ease-in-out .3s;
	margin-right: 7px;
}

.farmart-image-grid .box-item img {
	margin: auto;
	display: block;
}

.farmart-image-grid .box-item.image-left img {
	margin: inherit;
}

@media (max-width: 1920px) and (min-width: 1025px) {
	.elementor-widget-farmart-image-grid.columns-1 .box-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.elementor-widget-farmart-image-grid.columns-2 .box-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.elementor-widget-farmart-image-grid.columns-3 .box-item {
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}
	.elementor-widget-farmart-image-grid.columns-4 .box-item {
		flex: 0 0 25%;
		max-width: 25%;
	}
	.elementor-widget-farmart-image-grid.columns-5 .box-item {
		flex: 0 0 20%;
		max-width: 20%;
	}
	.elementor-widget-farmart-image-grid.columns-6 .box-item {
		flex: 0 0 16.66667%;
		max-width: 16.66667%;
	}
	.elementor-widget-farmart-image-grid.columns-7 .box-item {
		flex: 0 0 14.28571%;
		max-width: 14.28571%;
	}
	.elementor-widget-farmart-image-grid.columns-8 .box-item {
		flex: 0 0 12.5%;
		max-width: 12.5%;
	}
}

@media (max-width: 1024px) and (min-width: 768px) {
	.elementor-widget-farmart-image-grid.columns--tablet1 .box-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.elementor-widget-farmart-image-grid.columns--tablet2 .box-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.elementor-widget-farmart-image-grid.columns--tablet3 .box-item {
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}
	.elementor-widget-farmart-image-grid.columns--tablet4 .box-item {
		flex: 0 0 25%;
		max-width: 25%;
	}
	.elementor-widget-farmart-image-grid.columns--tablet5 .box-item {
		flex: 0 0 20%;
		max-width: 20%;
	}
	.elementor-widget-farmart-image-grid.columns--tablet6 .box-item {
		flex: 0 0 16.66667%;
		max-width: 16.66667%;
	}
	.elementor-widget-farmart-image-grid.columns--tablet7 .box-item {
		flex: 0 0 14.28571%;
		max-width: 14.28571%;
	}
	.elementor-widget-farmart-image-grid.columns--tablet8 .box-item {
		flex: 0 0 12.5%;
		max-width: 12.5%;
	}
}

@media (max-width: 767px) {
	.elementor-widget-farmart-image-grid.columns--mobile1 .box-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.elementor-widget-farmart-image-grid.columns--mobile2 .box-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.elementor-widget-farmart-image-grid.columns--mobile3 .box-item {
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}
	.elementor-widget-farmart-image-grid.columns--mobile4 .box-item {
		flex: 0 0 25%;
		max-width: 25%;
	}
	.elementor-widget-farmart-image-grid.columns--mobile5 .box-item {
		flex: 0 0 20%;
		max-width: 20%;
	}
	.elementor-widget-farmart-image-grid.columns--mobile6 .box-item {
		flex: 0 0 16.66667%;
		max-width: 16.66667%;
	}
	.elementor-widget-farmart-image-grid.columns--mobile7 .box-item {
		flex: 0 0 14.28571%;
		max-width: 14.28571%;
	}
	.elementor-widget-farmart-image-grid.columns--mobile8 .box-item {
		flex: 0 0 12.5%;
		max-width: 12.5%;
	}
}

.farmart-team-carousel .name,
.farmart-team-carousel .name a,
.farmart-team-grid .name,
.farmart-team-grid .name a {
	color: #222222;
	transition: ease .5s;
}

.farmart-team-carousel .name,
.farmart-team-grid .name {
	margin: 0 0 4px;
}

.farmart-team-carousel .image,
.farmart-team-grid .image {
	margin-bottom: 25px;
}

.farmart-team-carousel .image img,
.farmart-team-grid .image img {
	border-radius: 50%;
}

.farmart-team-carousel .job,
.farmart-team-grid .job {
	color: #888888;
	font-style: italic;
}

.farmart-team-carousel .slick-slider .slick-arrow,
.farmart-team-grid .slick-slider .slick-arrow {
	opacity: 1;
}

.farmart-team-grid {
	position: relative;
	text-align: center;
	background-color: #fff;
	transition: ease .5s;
	padding-bottom: 30px;
	margin-bottom: -40px;
}

.farmart-team-grid .member-socials {
	position: absolute;
	margin: 20px auto 0;
	left: 0;
	right: 0;
	bottom: 0;
	transform: translateY(0);
	opacity: 0;
	transition: ease opacity .3s,  ease transform .5s;
}

.farmart-team-grid .member-socials .farmart-svg-icon {
	display: inline-block;
	margin: 0 11px;
	color: #aaaaaa;
	transition: ease .5s;
}

.farmart-team-grid .member-socials .farmart-svg-icon:hover {
	color: var(--fm-color-primary);
}

.farmart-team-grid:hover {
	box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
	border-radius: 5px;
	z-index: 9;
}

.farmart-team-grid:hover .farmart-team-grid__inner {
	border-color: transparent;
	transition: ease .3s;
}

.farmart-team-grid:hover .member-socials {
	transform: translateY(-22px);
	opacity: 1;
}

.farmart-team-grid:hover .name,
.farmart-team-grid:hover .name a {
	color: var(--fm-color-primary);
}

.farmart-team-grid__inner {
	padding: 37px 60px;
	border: 1px solid #eee;
	transition: ease .3s;
}

.farmart-team-carousel {
	text-align: center;
}

.farmart-team-carousel .job {
	margin-bottom: 21px;
	color: #666;
}

.farmart-team-carousel .box-member--inner {
	border-color: transparent;
	transition: ease .5s;
	border-radius: 5px;
	position: relative;
}

.farmart-team-carousel.view-grid .farmart-team-carousel--wrapper {
	margin: 0;
}

.farmart-team-carousel .slick-track {
	display: table;
}

.farmart-team-carousel div.box-member {
	display: table-cell;
	float: initial;
	position: relative;
}

.farmart-team-carousel--style_1 .farmart-team-carousel .slick-track {
	height: 100%;
}

.farmart-team-carousel--style_1 .farmart-team-carousel div.box-member {
	height: 100%;
}

.farmart-team-carousel--style_1 .farmart-team-carousel .box-member--inner {
	border: 1px solid #eeeeee;
	background-color: #ffffff;
	padding: 40px 32px;
	height: 100%;
}

.farmart-team-carousel--style_1 .farmart-team-carousel .box-member--inner:hover {
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}

.farmart-team-carousel--style_1 .farmart-team-carousel .image img {
	display: inline;
}

.farmart-team-carousel--style_1 .farmart-team-carousel .job span {
	color: #26901b;
}

.farmart-team-carousel--style_2 .farmart-team-carousel .image {
	margin-bottom: 35px;
}

.farmart-team-carousel--style_2 .farmart-team-carousel .image .image-box {
	min-height: 410px;
	display: flex;
	align-items: flex-end;
	background-color: #f6f6f6;
	border-radius: 150px;
}

.farmart-team-carousel--style_2 .farmart-team-carousel .image .image-box:hover {
	background-color: var(--fm-background-color-primary);
}

.farmart-team-carousel--style_2 .farmart-team-carousel .image img {
	display: inline-block;
	border-radius: 150px;
}

.farmart-team-carousel--style_2 .farmart-team-carousel .name {
	font-size: 24px;
	letter-spacing: -1px;
	color: #000;
	margin-bottom: 10px;
}

.farmart-team-carousel--style_2 .farmart-team-carousel .job {
	font-style: normal;
}

div.farmart-team-carousel--wrapper .slick-list {
	padding: 30px 0;
}

div.farmart-team-carousel--wrapper .slick-slide {
	opacity: 0;
	transition: ease .3s;
}

div.farmart-team-carousel--wrapper .slick-active {
	opacity: 1;
}

div.farmart-team-carousel--wrapper .slick-dots {
	bottom: -10px;
}

div.farmart-team-carousel--wrapper .slick-prev-arrow {
	left: -45px;
}

div.farmart-team-carousel--wrapper .slick-next-arrow {
	right: -45px;
}

.farmart-service-box .box-item {
	position: relative;
	margin-bottom: 76px;
}

.farmart-service-box .box-item__content {
	position: absolute;
	bottom: -34px;
	left: 45px;
	right: 45px;
	background-color: #fff;
	border-radius: 5px;
	text-align: center;
	padding: 25px 30px 28px;
	box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}

.farmart-service-box .box-item__content .title {
	margin: 0 0 8px;
}

.farmart-service-box .box-item__content .farmart-svg-icon {
	font-size: 9px;
	margin-left: 5px;
}

.farmart-service-box .slick-arrow {
	width: 50px;
	height: 50px;
	line-height: 50px;
}

.farmart-service-box .slick-arrow {
	top: calc( 50% - 38px);
}

.farmart-service-box .slick-prev-arrow {
	left: -12px;
}

.farmart-service-box .slick-next-arrow {
	right: -12px;
}

.farmart-testimonial .slick-arrow,
.farmart-service-box .slick-arrow {
	border-radius: 50%;
	border-width: 0;
	box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.1);
	font-size: 14px;
	color: #222222;
	background-color: #ffffff;
}

.farmart-testimonial .slick-dots li button:before,
.farmart-service-box .slick-dots li button:before {
	border-radius: 5px;
}

.farmart-testimonial .slick-dots li button,
.farmart-testimonial .slick-dots li button:before,
.farmart-service-box .slick-dots li button,
.farmart-service-box .slick-dots li button:before {
	width: 10px;
	height: 10px;
}

.farmart-testimonial .slick-dots li.slick-active button,
.farmart-testimonial .slick-dots li.slick-active button:before,
.farmart-service-box .slick-dots li.slick-active button,
.farmart-service-box .slick-dots li.slick-active button:before {
	width: 30px;
}

.farmart-list-box,
.farmart-list-box__wrapper .box-item {
	border-color: #ececec;
	border-style: solid;
}

.farmart-list-box__wrapper {
	display: flex;
	flex-wrap: wrap;
}

.farmart-list-box__wrapper .box-item {
	padding: 24px 50px 31px;
	flex: 0 0 33.3333333333%;
	max-width: 33.3333333333%;
	border-width: 0 1px 1px 0;
	transition: ease .5s;
}

.farmart-list-box__wrapper .box-item:hover {
	box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}

.farmart-list-box__wrapper .box-item__icon {
	margin-bottom: 14px;
	position: relative;
}

.farmart-list-box__wrapper .box-item__icon .farmart-svg-icon {
	font-size: 55px;
	color: var(--fm-color-primary);
}

.farmart-list-box__wrapper .box-item__icon .number {
	font-size: 45px;
	color: #eeeeee;
	font-weight: 700;
	position: absolute;
	right: 0;
	top: 0;
}

.farmart-list-box__wrapper .box-item__content .title {
	margin: 0 0 13px;
}

.farmart-list-box {
	border-width: 1px 0 0 1px;
}

.farmart-list-box.content-horizontal .farmart-svg-icon {
	font-size: 34px;
}

.farmart-list-box.content-horizontal .box-item {
	display: flex;
	align-items: center;
	padding: 30px 37px 26px;
}

.farmart-list-box.content-horizontal .box-item:hover {
	box-shadow: none;
}

.farmart-list-box.content-horizontal .box-item__icon {
	flex: none;
	margin-right: 20px;
	margin-bottom: 0;
}

.farmart-list-box.content-horizontal .box-item__content .title {
	text-transform: uppercase;
	margin: 0 0 3px;
}

@media (max-width: 1920px) and (min-width: 1025px) {
	.elementor-widget-farmart-list-box-2.columns-1 .box-item,
	.elementor-widget-farmart-list-box.columns-1 .box-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.elementor-widget-farmart-list-box-2.columns-2 .box-item,
	.elementor-widget-farmart-list-box.columns-2 .box-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.elementor-widget-farmart-list-box-2.columns-3 .box-item,
	.elementor-widget-farmart-list-box.columns-3 .box-item {
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}
	.elementor-widget-farmart-list-box-2.columns-4 .box-item,
	.elementor-widget-farmart-list-box.columns-4 .box-item {
		flex: 0 0 25%;
		max-width: 25%;
	}
}

@media (max-width: 1024px) and (min-width: 768px) {
	.elementor-widget-farmart-list-box-2.columns--tablet1 .box-item,
	.elementor-widget-farmart-list-box.columns--tablet1 .box-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.elementor-widget-farmart-list-box-2.columns--tablet2 .box-item,
	.elementor-widget-farmart-list-box.columns--tablet2 .box-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.elementor-widget-farmart-list-box-2.columns--tablet3 .box-item,
	.elementor-widget-farmart-list-box.columns--tablet3 .box-item {
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}
	.elementor-widget-farmart-list-box-2.columns--tablet4 .box-item,
	.elementor-widget-farmart-list-box.columns--tablet4 .box-item {
		flex: 0 0 25%;
		max-width: 25%;
	}
}

@media (max-width: 767px) {
	.elementor-widget-farmart-list-box-2.columns--mobile1 .box-item,
	.elementor-widget-farmart-list-box.columns--mobile1 .box-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.elementor-widget-farmart-list-box-2.columns--mobile2 .box-item,
	.elementor-widget-farmart-list-box.columns--mobile2 .box-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.elementor-widget-farmart-list-box-2.columns--mobile3 .box-item,
	.elementor-widget-farmart-list-box.columns--mobile3 .box-item {
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}
	.elementor-widget-farmart-list-box-2.columns--mobile4 .box-item,
	.elementor-widget-farmart-list-box.columns--mobile4 .box-item {
		flex: 0 0 25%;
		max-width: 25%;
	}
}

.farmart-list-grid .farmart-svg-icon {
	font-size: 60px;
	color: var(--fm-color-primary);
	line-height: 1;
}

.farmart-list-grid .title {
	margin: 0 0 12px;
}

.farmart-list-grid .box-item__inner {
	background-color: #f7f7f7;
	padding: 36px 30px 30px;
}

.farmart-list-grid .box-item__icon {
	margin-bottom: 31px;
}

.farmart-list-grid .box-item {
	padding: 0 15px;
	display: flex;
	align-items: stretch;
	height: auto;
}

.farmart-list-grid .box-item:last-child {
	border-right: none;
}

.farmart-list-grid.add-space .box-item {
	margin-bottom: 30px;
}

@media (max-width: 1920px) and (min-width: 1025px) {
	.elementor-widget-farmart-list-grid.columns-1 .box-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.elementor-widget-farmart-list-grid.columns-2 .box-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.elementor-widget-farmart-list-grid.columns-3 .box-item {
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}
	.elementor-widget-farmart-list-grid.columns-4 .box-item {
		flex: 0 0 25%;
		max-width: 25%;
	}
}

@media (max-width: 1024px) and (min-width: 768px) {
	.elementor-widget-farmart-list-grid.columns--tablet1 .box-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.elementor-widget-farmart-list-grid.columns--tablet2 .box-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.elementor-widget-farmart-list-grid.columns--tablet3 .box-item {
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}
	.elementor-widget-farmart-list-grid.columns--tablet4 .box-item {
		flex: 0 0 25%;
		max-width: 25%;
	}
}

@media (max-width: 767px) {
	.elementor-widget-farmart-list-grid.columns--mobile1 .box-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.elementor-widget-farmart-list-grid.columns--mobile2 .box-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.elementor-widget-farmart-list-grid.columns--mobile3 .box-item {
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}
	.elementor-widget-farmart-list-grid.columns--mobile4 .box-item {
		flex: 0 0 25%;
		max-width: 25%;
	}
}

.farmart-quotes .farmart-svg-icon {
	font-size: 28px;
	color: var(--fm-color-primary);
	line-height: 1;
	margin-bottom: 23px;
	display: block;
}

.farmart-quotes .box-content {
	font-size: 18px;
	color: #222222;
	font-weight: 700;
	line-height: 1.44444;
	margin-bottom: 12px;
}

.farmart-quotes .author {
	display: flex;
	align-items: center;
}

.farmart-quotes .author .name {
	margin: 0;
}

.farmart-quotes .author > *:not(:last-child):after {
	content: '-';
	display: inline-block;
	margin: 0 3px;
}

.farmart-quotes.farmart-icon-vertical {
	display: flex;
}

.farmart-quotes.farmart-icon-vertical .farmart-svg-icon {
	margin-right: 40px;
}

.farmart-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.farmart-list li {
	display: flex;
	align-items: center;
	margin-bottom: 7px;
	padding-left: 14px;
	position: relative;
}

.farmart-tab-list {
	padding: 100px 0;
}

.farmart-tab-list .farmart-list li {
	padding-left: 18px;
}

.farmart-tab-list .farmart-list li:before {
	top: 7px;
}

.farmart-tab-list .tab__nav {
	display: flex;
	position: relative;
	justify-content: space-between;
	flex-wrap: wrap;
}

.farmart-tab-list .tab__nav:before {
	content: '';
	display: block;
	width: 100%;
	height: 8px;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #eeeeee;
}

.farmart-tab-list .tab__nav .box-nav:first-child {
	text-align: left;
}

.farmart-tab-list .tab__nav .box-nav:first-child .tab-pointer {
	left: 0;
}

.farmart-tab-list .tab__nav .box-nav:first-child .box-content {
	left: -15px;
}

.farmart-tab-list .tab__nav .box-nav:last-child {
	text-align: right;
}

.farmart-tab-list .tab__nav .box-nav:last-child .tab-pointer {
	left: auto;
	right: 0;
}

.farmart-tab-list .tab__nav .box-nav:last-child .box-content {
	left: auto;
	right: -15px;
}

.farmart-tab-list .tab__nav .box-nav:last-child .box-content:before, .farmart-tab-list .tab__nav .box-nav:last-child .box-content:after {
	right: 0;
	left: auto;
	margin-right: 15px;
}

.farmart-tab-list .tab-pointer {
	position: absolute;
	top: -13px;
	left: -50px;
	width: 120px;
}

.farmart-tab-list .box-content {
	position: absolute;
	bottom: calc( 100% + 70px);
	left: -22px;
	right: 0;
	padding: 35px;
	border: 1px solid var(--fm-color-primary);
	border-radius: 5px;
	background-color: #fff;
	transform: translateY(30px);
	opacity: 0;
	transition: opacity ease 0.3s, transform ease .5s;
	display: flex;
	width: 500px;
	text-align: left;
}

.farmart-tab-list .box-content .box-img {
	flex: none;
	margin-right: 25px;
}

.farmart-tab-list .box-content .box-img img {
	max-width: 90px;
	max-height: 90px;
	border-radius: 50%;
	background-color: #e7ecee;
}

.farmart-tab-list .box-content.active {
	transform: translateY(0);
	opacity: 1;
	z-index: 1;
}

.farmart-tab-list .box-content.active:after, .farmart-tab-list .box-content.active:before {
	opacity: 1;
	bottom: -40px;
}

.farmart-tab-list .box-content:after, .farmart-tab-list .box-content:before {
	content: "";
	position: absolute;
	border-left: 15px solid transparent;
	border-right: 15px solid transparent;
	bottom: 100%;
	left: 0;
	margin-left: 15px;
	opacity: 0;
}

.farmart-tab-list .box-content:before {
	border-top: 40px solid var(--fm-color-primary);
	margin-bottom: 0;
}

.farmart-tab-list .box-content:after {
	border-top: 40px solid #fff;
	margin-bottom: 2px;
	z-index: 1;
}

.farmart-tab-list ul {
	list-style: none;
}

.farmart-tab-list ul,
.farmart-tab-list .title {
	padding: 0;
	margin: 0;
}

.farmart-tab-list .title {
	color: #000;
	font-size: 20px;
	letter-spacing: -1px;
	margin-bottom: 10px;
}

.farmart-tab-list .box-note {
	color: #666;
	line-height: 22px;
}

.farmart-tab-list .box-nav {
	cursor: pointer;
	text-align: center;
	z-index: 9;
	position: absolute;
	left: 0;
}

.farmart-tab-list .box-nav .circle {
	width: 30px;
	height: 30px;
	display: inline-block;
	margin: auto;
	border: 5px solid #f0f0f0;
	border-radius: 50%;
	background-color: #f0f0f0;
	transition: ease .3s;
}

.farmart-tab-list .box-nav .nav-title {
	color: #000;
	margin-top: 15px;
}

.farmart-tab-list .box-nav:first-child:after, .farmart-tab-list .box-nav:first-child:before {
	left: 0;
	margin-left: 0;
}

.farmart-tab-list .box-nav:last-child:after, .farmart-tab-list .box-nav:last-child:before {
	left: 100%;
	margin-left: -30px;
}

.farmart-tab-list .box-nav.active {
	display: block;
}

.farmart-tab-list .box-nav.active:after, .farmart-tab-list .box-nav.active:before {
	opacity: 1;
	top: 0;
	transition: ease 0.5s;
	transition-property: opacity;
	transition-delay: 0.3s;
}

.farmart-tab-list .box-nav.active:after {
	top: -1px;
}

.farmart-tab-list .box-nav.active .circle {
	background-color: var(--fm-background-color-primary);
}

.farmart-faq .box-content {
	padding: 19px 30px;
	border-radius: 3px;
	border: 1px solid #eeeeee;
	margin-bottom: 10px;
	cursor: pointer;
	transition: ease-in-out .2s;
	background-color: #fff;
	position: relative;
}

.farmart-faq .box-content:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 5px;
	height: 100%;
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
	transition: ease-in-out .3s;
}

.farmart-faq .box-content.active {
	cursor: initial;
	box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
	padding: 28px 30px;
}

.farmart-faq .box-content.active:before {
	background-color: var(--fm-background-color-primary);
}

.farmart-faq .box-content.active .title .fm-icon .icon-normal {
	opacity: 0;
}

.farmart-faq .box-content.active .title .fm-icon .icon-active {
	opacity: 1;
	color: #fff;
}

.farmart-faq .title {
	margin: 0;
	position: relative;
}

.farmart-faq .title .fm-icon {
	position: absolute;
	top: 0;
	right: 0;
}

.farmart-faq .title .fm-icon .farmart-svg-icon {
	font-size: 10px;
	font-weight: 600;
	color: #222222;
}

.farmart-faq .title .fm-icon .box-icon {
	position: absolute;
	top: 0;
	right: 0;
	text-align: center;
	justify-content: center;
	align-items: center;
}

.farmart-faq .title .fm-icon .icon-active {
	opacity: 0;
}

.farmart-faq .desc {
	margin-top: 13px;
	position: relative;
}

.farmart-faq .desc p {
	margin: 0;
}

.farmart-faqs ul.tabs-nav li {
	float: none;
	margin-bottom: 12px;
}

.farmart-faqs ul.tabs-nav li.active a,
.farmart-faqs ul.tabs-nav a:hover {
	color: var(--fm-color-primary);
}

.farmart-faqs ul.tabs-nav a {
	font-size: 16px;
	color: #888888;
	line-height: 1.1;
	font-weight: 700;
	display: inline-block;
}

.farmart-faqs .faq-title {
	margin: 0 0 12px;
}

.farmart-faqs .faq-tab .wrapper {
	border-bottom: 1px solid #eeeeee;
	padding-bottom: 27px;
	margin-bottom: 33px;
}

.farmart-faqs .faq-tab:last-child .wrapper {
	border-bottom: none;
}

.farmart-faqs .col-left {
	padding-right: 60px;
}

.farmart-faqs .col-right {
	padding-left: 60px;
}

.farmart-faqs.farmart-tabs .tabs-panel {
	width: unset;
	left: auto;
}

.farmart-faqs .button-wrapper {
	margin-top: 34px;
}

.farmart-faqs .button-wrapper .extra-text {
	margin-bottom: 10px;
}

.farmart-faqs .button-wrapper a {
	color: #222222;
	font-weight: 700;
	background-color: #f7f7f7;
	border: 1px solid #e5e5e5;
	border-radius: 3px;
	padding: 8px 51px;
	text-align: center;
	display: inline-block;
}

.farmart-faqs .button-wrapper a .farmart-svg-icon {
	padding-right: 10px;
}

.farmart-heading .subtitle {
	font-size: 13px;
	text-transform: uppercase;
	color: var(--fm-color-secondary);
	letter-spacing: 0.15em;
	display: block;
	margin-bottom: 3px;
}

.farmart-heading .title {
	margin: 0;
}

.farmart-icon-box .box-item {
	padding: 0 15px;
}

.farmart-icon-box .box-item__inner {
	box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
	padding: 40px 40px 31px;
	position: relative;
}

.farmart-icon-box .farmart-svg-icon {
	font-size: 56px;
	color: #e5e5e5;
	position: absolute;
	bottom: 40px;
	right: 29px;
	line-height: 1px;
}

.farmart-icon-box .farmart-svg-icon svg {
	width: 56px;
	fill: #e5e5e5;
}

.farmart-icon-box .title {
	font-size: 13px;
	font-weight: 400;
	text-transform: uppercase;
	color: #888888;
	margin: 0 0 13px;
}

.farmart-icon-box .desc {
	font-size: 20px;
	font-weight: 700;
	color: #222222;
}

.farmart-icon-box.add-space .box-item {
	margin-bottom: 30px;
}

@media (max-width: 1920px) and (min-width: 1025px) {
	.elementor-widget-farmart-icon-box.columns-1 .box-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.elementor-widget-farmart-icon-box.columns-2 .box-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.elementor-widget-farmart-icon-box.columns-3 .box-item {
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}
	.elementor-widget-farmart-icon-box.columns-4 .box-item {
		flex: 0 0 25%;
		max-width: 25%;
	}
}

@media (max-width: 1024px) and (min-width: 768px) {
	.elementor-widget-farmart-icon-box.columns--tablet1 .box-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.elementor-widget-farmart-icon-box.columns--tablet2 .box-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.elementor-widget-farmart-icon-box.columns--tablet3 .box-item {
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}
	.elementor-widget-farmart-icon-box.columns--tablet4 .box-item {
		flex: 0 0 25%;
		max-width: 25%;
	}
}

@media (max-width: 767px) {
	.elementor-widget-farmart-icon-box.columns--mobile1 .box-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.elementor-widget-farmart-icon-box.columns--mobile2 .box-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.elementor-widget-farmart-icon-box.columns--mobile3 .box-item {
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}
	.elementor-widget-farmart-icon-box.columns--mobile4 .box-item {
		flex: 0 0 25%;
		max-width: 25%;
	}
}

.farmart-banner-larger,
.farmart-banner-medium-3 {
	position: relative;
}

.farmart-banner-larger a.link,
.farmart-banner-medium-3 a.link {
	z-index: 20;
}

.farmart-banner-larger a.link,
.farmart-banner-larger .banner-featured-image,
.farmart-banner-medium-3 a.link,
.farmart-banner-medium-3 .banner-featured-image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.farmart-banner-larger .banner-content,
.farmart-banner-medium-3 .banner-content {
	position: relative;
	z-index: 1;
}

.farmart-banner-medium-3 .banner-content {
	height: 270px;
	max-width: 81%;
	display: flex;
	margin: auto;
}

.farmart-banner-medium-3 .highlight, .farmart-banner-medium-3 .banner-title, .farmart-banner-medium-3 .price-box {
	color: #fff;
}

.farmart-banner-medium-3 .banner-title {
	margin: 0 0 14px;
	line-height: 1.43;
}

.farmart-banner-medium-3 .highlight {
	font-family: "Playfair Display", sans-serif;
	font-style: italic;
	display: block;
	font-size: 21px;
	line-height: 1.42857;
}

.farmart-banner-medium-3 .highlight.banner-display {
	display: inline-block;
}

.farmart-banner-medium-3 .after_highlight {
	display: inline-block;
	color: #000;
	text-shadow: 0 0 #000;
	margin-left: 15px;
}

.farmart-banner-medium-3 .banner-desc {
	color: rgba(255, 255, 255, 0.7);
}

.farmart-banner-medium-3 .btn-button {
	align-items: center;
	display: inline-flex;
	padding: 8px 19px;
	color: var(--fm-background-text-color-secondary);
	border-radius: 3px;
	background-color: var(--fm-background-color-secondary);
	font-size: 13px;
	font-weight: 700;
	margin-top: 28px;
}

.farmart-banner-medium-3 .farmart-svg-icon {
	font-size: 9px;
	margin-left: 4px;
}

.farmart-banner-medium-3 .price-box {
	position: absolute;
	right: 15px;
	display: inline-block;
	top: 50px;
	font-size: 13px;
	width: 44px;
	height: 44px;
	line-height: 44px;
	background-color: #e84506;
	border-radius: 50%;
	color: #fff;
	text-align: center;
}

.farmart-banner-larger .banner-content {
	height: 170px;
	display: flex;
	margin: auto;
	max-width: 62%;
}

.farmart-banner-larger .divider {
	background-color: #e1e1e1;
	width: 1px;
	height: 57%;
	margin: auto 40px auto 75px;
}

.farmart-banner-larger .title {
	margin: 0;
}

.farmart-banner-larger .highlight {
	color: var(--fm-color-primary);
	margin: 0 0 20px;
}

.farmart-banner-larger .banner-content__sale {
	flex: none;
}

.farmart-banner-larger .text-sale {
	margin: 0 0 5px;
	text-transform: uppercase;
	font-weight: 400;
}

.farmart-banner-larger .number-sale {
	font-size: 74px;
	color: #e84506;
	font-weight: 700;
	line-height: 1;
	position: relative;
	display: inline-block;
}

.farmart-banner-larger .unit-sale {
	font-size: 40px;
	position: absolute;
	top: 0;
	right: -38px;
}

.farmart--v-position-top .farmart-banner-medium-3 .banner-content,
.farmart--v-position-top .farmart-banner-larger .banner-content {
	align-items: flex-start;
}

.farmart--v-position-bottom .farmart-banner-medium-3 .banner-content,
.farmart--v-position-bottom .farmart-banner-larger .banner-content {
	align-items: flex-end;
}

.farmart--v-position-middle .farmart-banner-medium-3 .banner-content,
.farmart--v-position-middle .farmart-banner-larger .banner-content {
	align-items: center;
}

.farmart--h-position-left .farmart-banner-medium-3 .banner-content,
.farmart--h-position-left .farmart-banner-larger .banner-content {
	justify-content: flex-start;
}

.farmart--h-position-right .farmart-banner-medium-3 .banner-content,
.farmart--h-position-right .farmart-banner-larger .banner-content {
	justify-content: flex-end;
}

.farmart--h-position-center .farmart-banner-medium-3 .banner-content,
.farmart--h-position-center .farmart-banner-larger .banner-content {
	justify-content: center;
}

.farmart-time-countdown {
	display: flex;
	flex-wrap: wrap;
}

.farmart-time-countdown .timer {
	display: block;
	margin: 0 18px;
	position: relative;
}

.farmart-time-countdown .timer .text {
	display: block;
	text-align: center;
}

.farmart-time-countdown .timer:first-child {
	margin-left: 0;
}

.farmart-time-countdown .digits {
	font-size: 45px;
	font-weight: 700;
	color: var(--fm-color-primary);
	display: block;
	line-height: 1;
	margin-bottom: 3px;
}

.farmart-time-countdown .divider {
	position: absolute;
	top: 0;
	right: -17px;
	font-size: 26px;
	color: #aaaaaa;
}

.farmart-contact-form-7 .wpcf7 input {
	width: 100%;
	padding: 8px 15px;
}

.farmart-contact-form-7 .wpcf7 input, .farmart-contact-form-7 .wpcf7 textarea {
	margin-top: 3px;
}

.farmart-contact-form-7 .wpcf7 input:focus, .farmart-contact-form-7 .wpcf7 textarea:focus {
	border-color: #000;
	color: #000;
}

.farmart-contact-form-7 .wpcf7 textarea {
	height: 150px;
}

.farmart-contact-form-7 .wpcf7 .wpcf7-submit {
	margin: 0;
	padding: 3px 10px;
}

.farmart-contact-form-7 .wpcf7 .wpcf7-response-output {
	margin-left: 0;
	margin-right: 0;
}

.farmart-contact-form-7 .wpcf7 .wpcf7-not-valid-tip {
	margin-top: 10px;
}

.farmart-contact-form-7 .wpcf7-form-control-wrap {
	display: inline-block;
	width: 100%;
}

.farmart-contact-form-7 .form-inner {
	padding: 35px 30px;
	background-color: #f7f7f7;
	margin-bottom: 20px;
}

.farmart-contact-form-7 .form-inner .field-input:not(:last-child) {
	margin-bottom: 19px;
}

.farmart-contact-form-7 .form-text {
	margin-bottom: 16px;
}

.farmart-contact-form-7 .form-text .title {
	margin: 0 0 20px;
}

.farmart-contact-form-7 .row-flex {
	margin-left: -5px;
	margin-right: -5px;
}

.farmart-contact-form-7 .row-flex .col-flex-md-12,
.farmart-contact-form-7 .row-flex .col-flex-md-11,
.farmart-contact-form-7 .row-flex .col-flex-md-10,
.farmart-contact-form-7 .row-flex .col-flex-md-9,
.farmart-contact-form-7 .row-flex .col-flex-md-8,
.farmart-contact-form-7 .row-flex .col-flex-md-7,
.farmart-contact-form-7 .row-flex .col-flex-md-6,
.farmart-contact-form-7 .row-flex .col-flex-md-5,
.farmart-contact-form-7 .row-flex .col-flex-md-4,
.farmart-contact-form-7 .row-flex .col-flex-md-3,
.farmart-contact-form-7 .row-flex .col-flex-md-2,
.farmart-contact-form-7 .row-flex .col-flex-md-1 {
	padding-left: 5px;
	padding-right: 5px;
	line-height: 1;
}

.farmart-contact-member label {
	display: flex;
	align-items: center;
	background-color: #fff;
	padding: 4px 20px;
	border-radius: 5px;
	border: 1px solid transparent;
	transition: .2s;
}

.farmart-contact-member label:focus-within {
	border-color: #dcd5c8;
}

.farmart-contact-member .field-input:not(:last-child) {
	margin-bottom: 10px;
}

.farmart-contact-member .fm-icon {
	font-size: 20px;
	color: #000;
	line-height: 1;
}

.farmart-contact-member .wpcf7-form-control-wrap {
	width: 100%;
}

.farmart-contact-member .wpcf7-form-control {
	border: none;
}

.farmart-contact-member input {
	margin: 0 !important;
}

.farmart-contact-member + .field-submit {
	text-align: center;
	margin-top: 30px;
}

.farmart-contact-member + .field-submit .wpcf7-submit {
	width: auto;
	padding: 4px 30px;
	background-color: var(--fm-background-color-primary);
	color: var(--fm-background-text-color-primary);
}

.farmart-contact-member + .field-submit .ajax-loader {
	display: none;
}

.farmart-register-form form > p:last-child {
	margin: 0;
}

.farmart-register-form .form-row {
	display: flex;
	align-items: center;
	background-color: #fff;
	padding: 4px 20px;
	border-radius: 5px;
	border: 1px solid transparent;
	margin-bottom: 10px;
	transition: .2s;
}

.farmart-register-form .fm-icon {
	font-size: 20px;
	color: #000;
	line-height: 1;
}

.farmart-register-form .fm-icon.user-icon {
	font-size: 17px;
}

.farmart-register-form input[type="text"],
.farmart-register-form input[type="email"],
.farmart-register-form input[type="url"],
.farmart-register-form input[type="password"],
.farmart-register-form input[type="search"],
.farmart-register-form input[type="number"],
.farmart-register-form input[type="tel"],
.farmart-register-form input[type="range"],
.farmart-register-form input[type="date"],
.farmart-register-form input[type="month"],
.farmart-register-form input[type="week"],
.farmart-register-form input[type="time"],
.farmart-register-form input[type="datetime"],
.farmart-register-form input[type="datetime-local"],
.farmart-register-form input[type="color"],
.farmart-register-form textarea {
	width: 100%;
	padding: 8px 15px;
	border: none;
}

.farmart-register-form button,
.farmart-register-form input[type="button"],
.farmart-register-form input[type="reset"],
.farmart-register-form input[type="submit"] {
	padding: 4px 30px;
	background-color: var(--fm-background-color-primary);
	color: var(--fm-background-text-color-primary);
	margin-top: 20px;
}

.farmart-image-carousel .heading {
	display: flex;
	align-items: center;
	border: 1px  solid #eeeeee;
	justify-content: space-between;
	padding: 30px 30px 19px;
	border-bottom: none;
}

.farmart-image-carousel .title {
	margin: 0;
}

.farmart-image-carousel .extra-link {
	color: #888888;
}

.farmart-image-carousel .extra-link .farmart-svg-icon {
	font-size: 9px;
	margin-left: 3px;
}

.farmart-image-carousel .content {
	padding: 45px 85px 44px;
	border: 1px solid #eeeeee;
	background-color: #fff;
}

.farmart-image-carousel .box-item img {
	margin: auto;
}

.farmart-image-carousel .box-item > * {
	display: block;
}

.farmart-image-carousel a:hover .farmart-image-carousel__title {
	color: var(--fm-color-primary);
}

.farmart-image-carousel .slick-list {
	margin: 0 -15px;
}

.farmart-image-carousel .slick-slide {
	margin-left: 15px;
	margin-right: 15px;
	padding-left: 0;
	padding-right: 0;
}

.farmart-image-carousel .slick-dotted.slick-slider {
	margin-bottom: 0;
}

.farmart-image-carousel .slick-prev-arrow {
	left: -40px;
}

.farmart-image-carousel .slick-next-arrow {
	right: -40px;
}

.farmart-image-carousel__before-title {
	display: block;
	color: #999;
	text-transform: uppercase;
	line-height: 1;
	font-weight: 700;
	margin: 25px 0 0 0;
}

.farmart-image-carousel__title {
	display: block;
	font-size: 18px;
	font-weight: 700;
	color: #000;
	transition: .3s;
}

.farmart-image-box__wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.farmart-image-box__items {
	display: flex;
	align-items: center;
}

.farmart-image-box__image {
	margin-right: 23px;
}

.farmart-image-box__content--title {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: -1px;
	color: #000;
	margin: 0 0 3px 0;
}

.farmart-image-box__content--desc {
	color: #777;
	letter-spacing: -0.5px;
}

.fm-product-categories-carousel-2 .cat-header,
.farmart-product-categories-list .cat-header,
.farmart-product-mutil-categories-carousel .cat-header,
.farmart-product-categories-carousel .cat-header {
	display: flex;
	justify-content: space-between;
	padding-bottom: 20px;
	align-items: center;
}

.fm-product-categories-carousel-2 .cat-header h3,
.farmart-product-categories-list .cat-header h3,
.farmart-product-mutil-categories-carousel .cat-header h3,
.farmart-product-categories-carousel .cat-header h3 {
	margin: 0;
}

.fm-product-categories-carousel-2 .cat-header h3 .farmart-svg-icon,
.farmart-product-categories-list .cat-header h3 .farmart-svg-icon,
.farmart-product-mutil-categories-carousel .cat-header h3 .farmart-svg-icon,
.farmart-product-categories-carousel .cat-header h3 .farmart-svg-icon {
	font-size: 21px;
	color: var(--fm-color-primary);
	margin-right: 14px;
}

.fm-product-categories-carousel-2 .header-link,
.farmart-product-categories-list .header-link,
.farmart-product-mutil-categories-carousel .header-link,
.farmart-product-categories-carousel .header-link {
	margin-top: 4px;
	color: #888888;
	transition: ease .3s;
	display: flex;
	align-items: center;
}

.fm-product-categories-carousel-2 .header-link .farmart-svg-icon,
.farmart-product-categories-list .header-link .farmart-svg-icon,
.farmart-product-mutil-categories-carousel .header-link .farmart-svg-icon,
.farmart-product-categories-carousel .header-link .farmart-svg-icon {
	padding-left: 3px;
}

.fm-product-categories-carousel-2 .header-link .farmart-svg-icon,
.farmart-product-categories-list .header-link .farmart-svg-icon,
.farmart-product-mutil-categories-carousel .header-link .farmart-svg-icon,
.farmart-product-categories-carousel .header-link .farmart-svg-icon {
	font-size: 9px;
}

.fm-product-categories-carousel-2 .header-link .link-text,
.farmart-product-categories-list .header-link .link-text,
.farmart-product-mutil-categories-carousel .header-link .link-text,
.farmart-product-categories-carousel .header-link .link-text {
	transition: ease .3s;
}

.fm-product-categories-carousel-2 .slick-dotted.slick-slider,
.farmart-product-categories-list .slick-dotted.slick-slider,
.farmart-product-mutil-categories-carousel .slick-dotted.slick-slider,
.farmart-product-categories-carousel .slick-dotted.slick-slider {
	margin-bottom: 0;
}

.fm-product-categories-carousel-2 .slick-dots,
.farmart-product-categories-list .slick-dots,
.farmart-product-mutil-categories-carousel .slick-dots,
.farmart-product-categories-carousel .slick-dots {
	bottom: 30px;
}

.farmart-product-categories-carousel .product-cats {
	margin: 0;
	background-color: #fff;
	border: 1px solid #eeeeee;
	padding: 35px 40px 55px;
}

.farmart-product-categories-carousel .product-cats li {
	list-style: none;
	display: inline-block;
}

.farmart-product-categories-carousel .cat-thumb,
.farmart-product-categories-carousel .cat-count,
.farmart-product-categories-carousel .cat-text {
	display: block;
}

.farmart-product-categories-carousel .cat-thumb {
	margin-bottom: 20px;
}

.farmart-product-categories-carousel .cat-thumb img {
	margin: auto;
	border: 2px solid transparent;
	transition: ease .3s;
}

.farmart-product-categories-carousel .cat-name {
	color: #222222;
	transition: ease .4s;
}

.farmart-product-categories-carousel .cat-item {
	text-align: center;
}

.farmart-product-categories-carousel .cat-item:hover .cat-thumb img {
	border-color: var(--fm-color-primary);
}

.farmart-product-categories-carousel .cat-item:hover .cat-name {
	color: var(--fm-color-primary);
}

.farmart-product-categories-carousel .slick-track {
	display: flex;
	align-items: stretch;
}

.farmart-product-categories-carousel .slick-track:before, .farmart-product-categories-carousel .slick-track:after {
	display: none;
}

.farmart-product-categories-carousel .slick-slide {
	height: auto;
}

.farmart-product-categories-carousel span.slick-prev-arrow {
	left: 0;
}

.farmart-product-categories-carousel span.slick-next-arrow {
	right: 0;
}

.farmart-hover-box-shadow .product-cats {
	border: none;
	margin-bottom: -120px;
}

.farmart-hover-box-shadow .cat-item {
	padding: 50px 0 40px;
	transition: .5s;
}

.farmart-hover-box-shadow .cat-item .cat-thumb img {
	border: none;
}

.farmart-hover-box-shadow .cat-item:hover {
	background-color: #fff !important;
	-webkit-box-shadow: 0 30px 40px 0 rgba(131, 132, 135, 0.15);
	-moz-box-shadow: 0 30px 40px 0 rgba(131, 132, 135, 0.15);
	box-shadow: 0 30px 40px 0 rgba(131, 132, 135, 0.15);
	transition: .5s;
}

.farmart-hover-box-shadow .cat-item:hover .cat-name {
	color: #222;
}

.farmart-hover-box-shadow .slick-list {
	padding-bottom: 120px;
}

.fm-product-categories-carousel-2 {
	border: 1px solid #eeeeee;
}

.fm-product-categories-carousel-2 .cat-header {
	padding: 35px 20px 34px;
	background-color: #fff;
}

.fm-product-categories-carousel-2 .product-cats {
	display: flex;
	padding: 0 20px;
	margin: 0;
	color: #888888;
	background-color: #fff;
	padding-bottom: 65px;
}

.fm-product-categories-carousel-2 .product-cats .cat-count {
	color: #888888;
}

.fm-product-categories-carousel-2 .product-cats .cat-name {
	color: #222222;
	display: block;
	transition: ease .4s;
	position: relative;
}

.fm-product-categories-carousel-2 .product-cats .cat-name:before {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	width: 0;
	right: 0;
	border-bottom: 1px solid;
	transition: width ease .5s;
}

.fm-product-categories-carousel-2 .product-cats .cat-item {
	list-style: none;
}

.fm-product-categories-carousel-2 .product-cats .cat-item > a {
	display: flex;
	padding: 10px 0;
}

.fm-product-categories-carousel-2 .product-cats .cat-item .cat-thumb {
	flex: 0 0 36%;
	margin: 0 18px 0 0;
	position: relative;
}

.fm-product-categories-carousel-2 .product-cats .cat-item .cat-thumb img {
	border: 2px solid transparent;
}

.fm-product-categories-carousel-2 .product-cats .cat-item .cat-text {
	margin: 10px 0 0 0;
}

.fm-product-categories-carousel-2 .product-cats .cat-item:hover .cat-thumb img {
	border-color: var(--fm-color-primary);
}

.fm-product-categories-carousel-2 .product-cats .cat-item:hover .cat-name {
	color: var(--fm-color-primary);
}

.fm-product-categories-carousel-2 .product-cats .cat-item:hover .cat-name:before {
	width: 100%;
	left: 0;
}

.fm-product-categories-carousel-2 .product-cats .cat-item > a {
	position: relative;
	z-index: 11;
}

.fm-product-categories-carousel-2 .slick-slide > *:not(:last-child) .cat-item {
	border-bottom: 1px solid #eeeeee;
}

.fm-product-categories-carousel-2 .slick-slide > div:first-child .cat-item > a {
	padding-top: 0;
}

.fm-product-categories-carousel-2 .slick-dots {
	bottom: 44px;
}

.farmart-product-mutil-categories-carousel .product-cats {
	margin: 0;
	padding: 0;
}

.farmart-product-mutil-categories-carousel .product-cats li {
	list-style: none;
	margin-bottom: 4px;
}

.farmart-product-mutil-categories-carousel .product-cats li .cat-name {
	color: #888888;
	transition: ease .4s;
	position: relative;
	display: inherit;
}

.farmart-product-mutil-categories-carousel .product-cats li .cat-name:before {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	width: 0;
	right: 0;
	border-bottom: 1px solid;
	transition: width ease .5s;
}

.farmart-product-mutil-categories-carousel .product-cats li:first-child {
	margin-bottom: 18px;
}

.farmart-product-mutil-categories-carousel .product-cats li:first-child .cat-thumb {
	margin-bottom: 19px;
	display: block;
}

.farmart-product-mutil-categories-carousel .product-cats li:first-child .cat-name {
	font-weight: 700;
	color: #222222;
	text-transform: uppercase;
}

.farmart-product-mutil-categories-carousel .product-cats li:hover .cat-name {
	color: var(--fm-color-primary);
}

.farmart-product-mutil-categories-carousel .product-cats li:hover .cat-name:before {
	width: 100%;
	left: 0;
}

.farmart-product-mutil-categories-carousel .slick-track {
	display: table;
}

.farmart-product-mutil-categories-carousel .categories-box {
	background-color: #fff;
	padding: 50px 30px 45px;
	border: 1px solid #eeeeee;
}

.farmart-product-mutil-categories-carousel .categories-box .box-item {
	padding: 0 25px;
	display: table-cell;
	float: initial;
	position: relative;
	border-left: 1px solid transparent;
}

.farmart-product-mutil-categories-carousel .categories-box .box-item.slick-active:not(.slick-current) {
	border-color: #eee;
}

.farmart-product-mutil-categories-carousel .categories-box .cat-all {
	display: block;
	margin-top: 15px;
}

.farmart-product-mutil-categories-carousel .categories-box .cat-all .farmart-svg-icon {
	font-size: 10px;
}

.farmart-product-mutil-categories-carousel .categories-box .cat-all:hover {
	color: var(--fm-color-primary);
}

.farmart-product-mutil-categories-carousel span.slick-prev-arrow {
	left: 22px;
}

.farmart-product-mutil-categories-carousel span.slick-next-arrow {
	right: 22px;
}

.farmart-product-mutil-categories-carousel span.slick-prev-arrow,
.farmart-product-mutil-categories-carousel span.slick-next-arrow {
	border: none;
	width: auto;
	height: auto;
	font-size: 20px;
	background-color: transparent;
}

.farmart-product-mutil-categories-carousel.view-grid .categories-box {
	display: flex;
}

.farmart-product-mutil-categories-carousel.view-grid .categories-box .box-item {
	flex: 0 0 20%;
	border-left: 1px solid #eee;
}

.farmart-product-mutil-categories-carousel.view-grid .categories-box .box-item:first-child {
	border: none;
}

.farmart-product-categories-list .product-cats {
	display: flex;
	padding: 0;
	margin: 0;
	border-style: solid;
	border-color: #eeeeee;
	border-width: 1px 0 0 1px;
	color: #888888;
	background-color: #fff;
}

.farmart-product-categories-list .product-cats .cat-count {
	color: #888888;
}

.farmart-product-categories-list .product-cats .cat-name {
	color: #222222;
	transition: ease .4s;
	position: relative;
	display: inline;
	--farmart-color-box-shadow: white;
	box-shadow: inset 0 -0.125em white, inset 0 -0.2em var(--farmart-color-box-shadow);
}

.farmart-product-categories-list .product-cats .cat-item {
	list-style: none;
	position: relative;
	border-style: solid;
	border-color: #eeeeee;
	border-width: 0 1px 1px 0;
}

.farmart-product-categories-list .product-cats .cat-item:hover .cat-name {
	color: var(--fm-color-primary);
	--farmart-color-box-shadow: var( --fm-color-primary );
}

.farmart-product-categories-list .product-cats .cat-item > a {
	position: relative;
	z-index: 11;
}

.farmart-product-categories-list .product-cats--big {
	flex: 0 0 20%;
}

.farmart-product-categories-list .product-cats--big .cat-item {
	height: 100%;
}

.farmart-product-categories-list .product-cats--big .cat-item a {
	height: 100%;
	display: flex;
	justify-content: center;
	text-align: center;
	flex-direction: column;
}

.farmart-product-categories-list .product-cats--big .cat-thumb {
	margin-bottom: 15px;
}

.farmart-product-categories-list .product-cats--big .cat-name {
	width: fit-content;
	margin: auto;
}

.farmart-product-categories-list .product-cats--lists {
	display: flex;
	flex-wrap: wrap;
}

.farmart-product-categories-list .product-cats--lists .cat-item > a {
	display: flex;
	padding: 20px 18px 37px 20px;
}

.farmart-product-categories-list .product-cats--lists .cat-item .cat-thumb {
	flex: 0 0 36%;
	margin: 0 18px 0 0;
}

.farmart-product-categories-list .product-cats--lists .cat-item .cat-text {
	margin: 10px 0 0 0;
}

@media (max-width: 1920px) and (min-width: 1025px) {
	.elementor-widget-farmart-product-categories-list.columns-1 .product-cats--lists .cat-item {
		width: 100%;
		max-width: 100%;
	}
	.elementor-widget-farmart-product-categories-list.columns-2 .product-cats--lists .cat-item {
		width: 50%;
		max-width: 50%;
	}
	.elementor-widget-farmart-product-categories-list.columns-3 .product-cats--lists .cat-item {
		width: 33.33333%;
		max-width: 33.33333%;
	}
	.elementor-widget-farmart-product-categories-list.columns-4 .product-cats--lists .cat-item {
		width: 25%;
		max-width: 25%;
	}
	.elementor-widget-farmart-product-categories-list.columns-5 .product-cats--lists .cat-item {
		width: 20%;
		max-width: 20%;
	}
}

@media (max-width: 1024px) and (min-width: 768px) {
	.elementor-widget-farmart-product-categories-list.columns--tablet1 .product-cats--lists .cat-item {
		width: 100%;
		max-width: 100%;
	}
	.elementor-widget-farmart-product-categories-list.columns--tablet2 .product-cats--lists .cat-item {
		width: 50%;
		max-width: 50%;
	}
	.elementor-widget-farmart-product-categories-list.columns--tablet3 .product-cats--lists .cat-item {
		width: 33.33333%;
		max-width: 33.33333%;
	}
	.elementor-widget-farmart-product-categories-list.columns--tablet4 .product-cats--lists .cat-item {
		width: 25%;
		max-width: 25%;
	}
	.elementor-widget-farmart-product-categories-list.columns--tablet5 .product-cats--lists .cat-item {
		width: 20%;
		max-width: 20%;
	}
}

@media (max-width: 767px) {
	.elementor-widget-farmart-product-categories-list.columns--mobile1 .product-cats--lists .cat-item {
		width: 100%;
		max-width: 100%;
	}
	.elementor-widget-farmart-product-categories-list.columns--mobile2 .product-cats--lists .cat-item {
		width: 50%;
		max-width: 50%;
	}
	.elementor-widget-farmart-product-categories-list.columns--mobile3 .product-cats--lists .cat-item {
		width: 33.33333%;
		max-width: 33.33333%;
	}
	.elementor-widget-farmart-product-categories-list.columns--mobile4 .product-cats--lists .cat-item {
		width: 25%;
		max-width: 25%;
	}
	.elementor-widget-farmart-product-categories-list.columns--mobile5 .product-cats--lists .cat-item {
		width: 20%;
		max-width: 20%;
	}
	.farmart-product-categories-list .product-cats {
		display: block;
	}
}

.farmart-product-categories-grid .cat-item {
	margin-bottom: 30px;
	padding: 0 15px;
}

.farmart-product-categories-grid .cat-item--link .cat-item__inner {
	height: 100%;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	padding: 0;
	background-color: #80990b;
}

.farmart-product-categories-grid .cat-item--link .link-all--text {
	margin: 0;
	padding: 40px;
	color: #fff;
}

.farmart-product-categories-grid .cat-item--link .link-all--text .farmart-svg-icon {
	margin-left: 5px;
	vertical-align: middle;
}

.farmart-product-categories-grid .cat-item__inner {
	background-color: #fff;
	padding: 33px 30px 23px;
	border-radius: 5px;
	border: 2px solid transparent;
	transition: ease .3s;
	box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
	display: flex;
	justify-content: space-between;
	position: relative;
}

.farmart-product-categories-grid .cat-item__inner > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.farmart-product-categories-grid .cat-item__inner .cat-text {
	flex: 0 0 50%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.farmart-product-categories-grid .cat-item__inner .cat-text .farmart-svg-icon {
	font-size: 22px;
	color: #80990b;
	line-height: 1;
}

.farmart-product-categories-grid .cat-item__inner .cat-name {
	margin: 0 0 7px;
}

.farmart-product-categories-grid .cat-item__inner .cat-thumb img {
	transform: scale(1);
	transition: transform .6s, -webkit-transform .7s;
}

.farmart-product-categories-grid .cat-item__inner:hover {
	border-color: var(--fm-color-primary);
}

.farmart-product-categories-grid .cat-item__inner:hover .cat-thumb img {
	transform: scale(1.1);
}

@media (max-width: 1920px) and (min-width: 1025px) {
	.elementor-widget-farmart-product-categories-grid.columns-1 .cat-item {
		width: 100%;
		max-width: 100%;
	}
	.elementor-widget-farmart-product-categories-grid.columns-2 .cat-item {
		width: 50%;
		max-width: 50%;
	}
	.elementor-widget-farmart-product-categories-grid.columns-3 .cat-item {
		width: 33.33333%;
		max-width: 33.33333%;
	}
	.elementor-widget-farmart-product-categories-grid.columns-4 .cat-item {
		width: 25%;
		max-width: 25%;
	}
	.elementor-widget-farmart-product-categories-grid.columns-5 .cat-item {
		width: 20%;
		max-width: 20%;
	}
}

@media (max-width: 1024px) and (min-width: 768px) {
	.elementor-widget-farmart-product-categories-grid.columns--tablet1 .cat-item {
		width: 100%;
		max-width: 100%;
	}
	.elementor-widget-farmart-product-categories-grid.columns--tablet2 .cat-item {
		width: 50%;
		max-width: 50%;
	}
	.elementor-widget-farmart-product-categories-grid.columns--tablet3 .cat-item {
		width: 33.33333%;
		max-width: 33.33333%;
	}
	.elementor-widget-farmart-product-categories-grid.columns--tablet4 .cat-item {
		width: 25%;
		max-width: 25%;
	}
	.elementor-widget-farmart-product-categories-grid.columns--tablet5 .cat-item {
		width: 20%;
		max-width: 20%;
	}
}

@media (max-width: 767px) {
	.elementor-widget-farmart-product-categories-grid.columns--mobile1 .cat-item {
		width: 100%;
		max-width: 100%;
	}
	.elementor-widget-farmart-product-categories-grid.columns--mobile2 .cat-item {
		width: 50%;
		max-width: 50%;
	}
	.elementor-widget-farmart-product-categories-grid.columns--mobile3 .cat-item {
		width: 33.33333%;
		max-width: 33.33333%;
	}
	.elementor-widget-farmart-product-categories-grid.columns--mobile4 .cat-item {
		width: 25%;
		max-width: 25%;
	}
	.elementor-widget-farmart-product-categories-grid.columns--mobile5 .cat-item {
		width: 20%;
		max-width: 20%;
	}
}

.fm-product-tab-carousel .tabs-nav li,
.fm-product-tab-carousel-2 .tabs-nav li,
.fm-product-tab-carousel-3 .tabs-nav li {
	line-height: 1;
}

.fm-product-tab-carousel .tabs-nav li a,
.fm-product-tab-carousel-2 .tabs-nav li a,
.fm-product-tab-carousel-3 .tabs-nav li a {
	transition: ease .5s;
	position: relative;
}

.fm-product-tab-carousel .tabs-nav li a:before,
.fm-product-tab-carousel-2 .tabs-nav li a:before,
.fm-product-tab-carousel-3 .tabs-nav li a:before {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	width: 0;
	right: 0;
	border-bottom: 1px solid;
	transition: width ease .5s;
}

.fm-product-tab-carousel .tabs-nav a.active,
.fm-product-tab-carousel .tabs-nav a:hover,
.fm-product-tab-carousel-2 .tabs-nav a.active,
.fm-product-tab-carousel-2 .tabs-nav a:hover,
.fm-product-tab-carousel-3 .tabs-nav a.active,
.fm-product-tab-carousel-3 .tabs-nav a:hover {
	color: var(--fm-color-primary);
}

.fm-product-tab-carousel .tabs-nav a.active:before,
.fm-product-tab-carousel .tabs-nav a:hover:before,
.fm-product-tab-carousel-2 .tabs-nav a.active:before,
.fm-product-tab-carousel-2 .tabs-nav a:hover:before,
.fm-product-tab-carousel-3 .tabs-nav a.active:before,
.fm-product-tab-carousel-3 .tabs-nav a:hover:before {
	width: 100%;
	left: 0;
}

.fm-product-tab-carousel .tabs-panel ul.products,
.fm-product-tab-carousel-2 .tabs-panel ul.products,
.fm-product-tab-carousel-3 .tabs-panel ul.products {
	opacity: 0;
	transition: ease .5s;
}

.fm-product-tab-carousel .tabs-panel.tab-loaded ul.products,
.fm-product-tab-carousel-2 .tabs-panel.tab-loaded ul.products,
.fm-product-tab-carousel-3 .tabs-panel.tab-loaded ul.products {
	opacity: 1;
}

.fm-product-tab-carousel .tabs-panel .farmart-loading-wrapper,
.fm-product-tab-carousel-2 .tabs-panel .farmart-loading-wrapper,
.fm-product-tab-carousel-3 .tabs-panel .farmart-loading-wrapper {
	min-height: 500px;
	background-color: #fff;
	position: relative;
}

.fm-product-tab-carousel .tabs-panel .farmart-loading,
.fm-product-tab-carousel-2 .tabs-panel .farmart-loading,
.fm-product-tab-carousel-3 .tabs-panel .farmart-loading {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.fm-product-tab-carousel .tabs-panel .farmart-loading:after,
.fm-product-tab-carousel-2 .tabs-panel .farmart-loading:after,
.fm-product-tab-carousel-3 .tabs-panel .farmart-loading:after {
	width: 25px;
	height: 25px;
	border-color: var(--fm-color-primary) transparent var(--fm-color-primary) transparent;
}

.fm-product-tab-carousel .tabs-header .tabs-header-nav,
.fm-product-tab-carousel-2 .tabs-header .tabs-header-nav,
.fm-product-tab-carousel-3 .tabs-header .tabs-header-nav {
	max-width: 100%;
}

.fm-product-tab-carousel .tabs-header ul.tabs-nav,
.fm-product-tab-carousel-2 .tabs-header ul.tabs-nav,
.fm-product-tab-carousel-3 .tabs-header ul.tabs-nav {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 4px 0;
	flex-wrap: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
}

.fm-product-tab-carousel .tabs-header ul.tabs-nav li,
.fm-product-tab-carousel-2 .tabs-header ul.tabs-nav li,
.fm-product-tab-carousel-3 .tabs-header ul.tabs-nav li {
	flex-shrink: 0;
}

.fm-product-tab-carousel .tabs-header ul.tabs-nav::-webkit-scrollbar,
.fm-product-tab-carousel-2 .tabs-header ul.tabs-nav::-webkit-scrollbar,
.fm-product-tab-carousel-3 .tabs-header ul.tabs-nav::-webkit-scrollbar {
	display: none;
}

.fm-product-tab-carousel {
	background-color: #ffffff;
}

.fm-product-tab-carousel .tabs-header {
	padding: 24px 30px 24px;
	border: 1px solid #eee;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.fm-product-tab-carousel .tabs-header .title {
	margin: 0;
}

.fm-product-tab-carousel .header-link {
	position: relative;
	margin-left: 15px;
	padding-left: 15px;
	line-height: 1;
	color: #888888;
}

.fm-product-tab-carousel .header-link .farmart-svg-icon {
	font-size: 9px;
	margin-left: 3px;
}

.fm-product-tab-carousel .header-link:hover {
	color: var(--fm-color-primary);
}

.fm-product-tab-carousel .header-link:after,
.fm-product-tab-carousel .tabs-nav li:after {
	content: "";
	display: block;
	height: 16px;
	width: 1px;
	background-color: #cccccc;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}

.fm-product-tab-carousel .tabs-nav li {
	position: relative;
}

.fm-product-tab-carousel .tabs-nav li a {
	color: #888888;
	margin: 0 15px;
}

.fm-product-tab-carousel .tabs-nav li:last-child a {
	margin-right: 0 !important;
}

.fm-product-tab-carousel .tabs-nav li:first-child:after {
	width: 0 !important;
}

.fm-product-tab-carousel .tabs-nav li:first-child a {
	margin-left: 0;
}

.fm-product-tab-carousel .slick-prev-arrow {
	left: -20px;
	top: 40%;
}

.fm-product-tab-carousel .slick-next-arrow {
	right: -20px;
	top: 40%;
}

.fm-product-tab-carousel .tabs-wrapper {
	border: 1px solid #eeeeee;
	border-top: 0;
	padding: 20px;
}

.fm-product-tab-carousel ul.products li.product {
	padding-left: 1px;
	padding-right: 1px;
}

.fm-product-tab-carousel ul.products li.product .product-inner {
	padding-left: 30px;
	padding-right: 30px;
}

.fm-product-tab-carousel ul.products li.product .product-details-hover,
.fm-product-tab-carousel ul.products li.product .product-bottom-box {
	left: -31px !important;
	right: -31px !important;
}

.fm-product-tab-carousel ul.products.slick-dotted {
	margin-bottom: 0;
}

.fm-product-tab-carousel ul.products.slick-dotted .slick-dots {
	position: relative;
	bottom: auto;
	margin-top: 10px;
	margin-bottom: 10px;
}

.fm-product-tab-carousel-2 .tabs-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 20px;
	flex-wrap: wrap;
}

.fm-product-tab-carousel-2 .tabs-header .title {
	margin: 0;
}

.fm-product-tab-carousel-2 .tabs-header .title .farmart-svg-icon {
	font-size: 21px;
	color: var(--fm-color-primary);
	margin-right: 14px;
}

.fm-product-tab-carousel-2 .header-link {
	position: relative;
	margin-left: 15px;
	padding-left: 15px;
	line-height: 1;
	color: #888888;
}

.fm-product-tab-carousel-2 .header-link .farmart-svg-icon {
	font-size: 9px;
	margin-left: 3px;
}

.fm-product-tab-carousel-2 .header-link:hover {
	color: var(--fm-color-primary);
}

.fm-product-tab-carousel-2 .header-link:after,
.fm-product-tab-carousel-2 .tabs-nav li:after {
	content: "";
	display: block;
	height: 16px;
	width: 1px;
	background-color: #cccccc;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}

.fm-product-tab-carousel-2 .tabs-nav li {
	position: relative;
}

.fm-product-tab-carousel-2 .tabs-nav li a {
	color: #888888;
	margin: 0 15px;
}

.fm-product-tab-carousel-2 .tabs-nav li:last-child a {
	margin-right: 0 !important;
}

.fm-product-tab-carousel-2 .tabs-nav li:first-child:after {
	width: 0 !important;
}

.fm-product-tab-carousel-2 .tabs-nav li:first-child a {
	margin-left: 0;
}

.fm-product-tab-carousel-2 .slick-dotted.slick-slider {
	margin-bottom: 0;
}

.fm-product-tab-carousel-2 .slick-dots-wrapper .slick-dots {
	position: relative;
	bottom: auto;
	margin-top: 10px;
}

.fm-product-tab-carousel-3 .tabs-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 20px;
	flex-wrap: wrap;
}

.fm-product-tab-carousel-3 .tabs-header .title {
	margin: 0;
}

.fm-product-tab-carousel-3 .tabs-header .title .farmart-svg-icon {
	font-size: 21px;
	color: var(--fm-color-primary);
	margin-right: 14px;
}

.fm-product-tab-carousel-3 .header-link {
	position: relative;
	margin-left: 15px;
	padding-left: 15px;
	line-height: 1;
	color: #888888;
}

.fm-product-tab-carousel-3 .header-link .farmart-svg-icon {
	font-size: 9px;
	margin-left: 3px;
}

.fm-product-tab-carousel-3 .header-link:hover {
	color: var(--fm-color-primary);
}

.fm-product-tab-carousel-3 .header-link:after,
.fm-product-tab-carousel-3 .tabs-nav li:after {
	content: "";
	display: block;
	height: 16px;
	width: 1px;
	background-color: #cccccc;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}

.fm-product-tab-carousel-3 .tabs-nav li {
	position: relative;
}

.fm-product-tab-carousel-3 .tabs-nav li a {
	color: #888888;
	margin: 0 15px;
}

.fm-product-tab-carousel-3 .tabs-nav li:last-child a {
	margin-right: 0 !important;
}

.fm-product-tab-carousel-3 .tabs-nav li:first-child:after {
	width: 0 !important;
}

.fm-product-tab-carousel-3 .tabs-nav li:first-child a {
	margin-left: 0;
}

.fm-product-tab-carousel-3 .tabs-content {
	background-color: #ffffff;
	border: 1px solid #eeeeee;
}

.fm-product-tab-carousel-3 ul.products li.product {
	position: relative;
	margin-bottom: 0;
}

.fm-product-tab-carousel-3 ul.products li.product div.product-thumbnail {
	margin-bottom: 0;
	margin-right: 25px;
	flex: 0 0 30%;
}

.fm-product-tab-carousel-3 ul.products li.product .product-inner {
	padding: 30px 20px;
	display: flex;
}

.fm-product-tab-carousel-3 ul.products li.product .product-inner .product-bottom-box {
	display: none !important;
}

.fm-product-tab-carousel-3 ul.products li.product .product-inner .fm-attr-swatches {
	display: none;
}

.fm-product-tab-carousel-3 ul.products li.product .product-inner:hover {
	border-color: transparent;
}

.fm-product-tab-carousel-3 ul.products li.product .product-inner:hover .product-bottom-box {
	display: none !important;
}

.fm-product-tab-carousel-3 ul.products li.product .product-inner:hover .woocommerce-loop-product__title a {
	color: var(--fm-color-primary);
	text-shadow: 0 0 var(--fm-color-primary);
}

.fm-product-tab-carousel-3 ul.products.slick-dotted {
	padding-bottom: 70px;
}

.fm-product-tab-carousel-3 ul.products.slick-dotted .slick-dots {
	bottom: 45px;
}

.fm-product-tab-carousel-3 .slick-slider .slick-list {
	padding-bottom: 0;
	margin-bottom: 0;
}

.fm-product-tab-carousel-3 .slick-slide > div:not(:last-child) li.product:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 20px;
	right: 20px;
	height: 1px;
	background-color: #eeeeee;
}

.fm-product-tab-carousel-3 .slick-dotted.slick-slider {
	margin-bottom: 0;
}

.fm-product-tab-carousel-3 .slick-prev-arrow {
	left: -53px;
}

.fm-product-tab-carousel-3 .slick-next-arrow {
	right: -53px;
}

.fm-elementor-product-carousel .tabs-header {
	position: relative;
}

.fm-elementor-product-carousel ul.products li.product {
	pointer-events: auto;
}

.fm-elementor-product-carousel .slick-list {
	padding: 0 0 80px;
	margin-bottom: -80px;
	pointer-events: none;
	z-index: 7;
}

.fm-elementor-product-carousel .slick-list:hover {
	z-index: 9;
}

.fm-elementor-product-carousel .slick-dots {
	z-index: 8;
}

.fm-show-qty .fm-elementor-product-carousel:not(.fm-product-tab-carousel-3) .slick-list {
	padding-bottom: 157px;
	margin-bottom: -157px;
}

.fm-product-tab-carousel-2 .slick-track,
.fm-products-carousel .slick-track {
	display: flex;
}

.fm-product-tab-carousel-2 .slick-track .slick-slide,
.fm-products-carousel .slick-track .slick-slide {
	height: inherit;
}

.fm-product-tab-carousel-2 .slick-track .slick-slide .product-inner,
.fm-products-carousel .slick-track .slick-slide .product-inner {
	height: 100%;
}

.fm-product-tab-carousel-2 ul.products li.product .product-inner,
.fm-products-carousel ul.products li.product .product-inner {
	position: relative;
	border-width: 1px 1px 1px 0;
	border-color: #c9c9c9;
	height: 100%;
}

.fm-product-tab-carousel-2 ul.products li.product.slick-current .product-inner,
.fm-products-carousel ul.products li.product.slick-current .product-inner {
	border-left-width: 1px;
}

.fm-product-tab-carousel-2 .tabs-content .slick-list,
.fm-products-carousel .products-content .slick-list {
	padding-left: 0;
	padding-right: 0;
}

.fm-product-tab-carousel-2 .tabs-content .slick-prev-arrow,
.fm-products-carousel .products-content .slick-prev-arrow {
	left: -53px;
}

.fm-product-tab-carousel-2 .tabs-content .slick-next-arrow,
.fm-products-carousel .products-content .slick-next-arrow {
	right: -53px;
}

.fm-product-tab-carousel-2 .tabs-content .slick-track,
.fm-products-carousel .products-content .slick-track {
	background-color: #fff;
}

.fm-products-carousel-2 ul.products,
.fm-products-carousel ul.products {
	display: block;
}

.fm-products-carousel-2 .products-header,
.fm-products-carousel .products-header {
	display: flex;
	justify-content: space-between;
	padding-bottom: 20px;
	align-items: center;
}

.fm-products-carousel-2 .products-header h3,
.fm-products-carousel .products-header h3 {
	margin: 0;
}

.fm-products-carousel-2 .products-header h3 .farmart-svg-icon,
.fm-products-carousel .products-header h3 .farmart-svg-icon {
	font-size: 21px;
	color: var(--fm-color-primary);
	margin-right: 14px;
}

.fm-products-carousel-2 .header-link,
.fm-products-carousel .header-link {
	margin-top: 4px;
	color: #888888;
	transition: ease .3s;
}

.fm-products-carousel-2 .header-link .farmart-svg-icon,
.fm-products-carousel .header-link .farmart-svg-icon {
	padding-left: 3px;
}

.fm-products-carousel-2 .header-link .farmart-svg-icon,
.fm-products-carousel .header-link .farmart-svg-icon {
	font-size: 9px;
}

.fm-products-carousel-2.product-type-grid ul.products,
.fm-products-carousel.product-type-grid ul.products {
	display: flex;
}

.fm-products-carousel .slick-dotted.slick-slider {
	margin-bottom: 0;
}

.fm-products-carousel .slick-dots-wrapper .slick-dots {
	position: relative;
	bottom: auto;
	margin-top: 10px;
}

.fm-products-carousel-2 .products-content {
	background-color: #ffffff;
	border: 1px solid #eeeeee;
}

.fm-products-carousel-2 ul.products {
	padding: 20px 39px 31px;
}

.fm-products-carousel-2 .slick-arrow {
	font-size: 20px;
	border-color: transparent;
	background-color: transparent;
}

.fm-products-carousel-2 .slick-prev-arrow {
	left: 15px;
}

.fm-products-carousel-2 .slick-next-arrow {
	right: 15px;
}

.fm-elementor-product-carousel ::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	background-color: #eeeeee;
}

.fm-elementor-product-carousel ::-webkit-scrollbar {
	height: 7px;
}

.fm-elementor-product-carousel ::-webkit-scrollbar-thumb {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	background-color: var(--fm-background-color-primary);
}

.fm-products-carousel-with-category .header-cat {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border: 1px solid #eeeeee;
	padding: 20px 30px;
	background-color: #fff;
	flex-wrap: wrap;
}

.fm-products-carousel-with-category .header-cat h2 {
	color: #000;
	font-size: 21px;
	margin: 0;
}

.fm-products-carousel-with-category .header-cat h2 a {
	color: #000;
	display: flex;
	align-items: center;
}

.fm-products-carousel-with-category .header-cat h2 .farmart-svg-icon {
	font-size: 20px;
	margin-right: 9px;
}

.fm-products-carousel-with-category .header-cat .extra-links-wrapper {
	max-width: 100%;
}

.fm-products-carousel-with-category .header-cat .extra-links {
	display: flex;
	align-items: center;
	list-style: none;
	padding: 4px 0;
	margin: 0;
	flex-wrap: nowrap;
	overflow: scroll;
}

.fm-products-carousel-with-category .header-cat .extra-links li {
	padding: 0 16px;
	position: relative;
	flex-shrink: 0;
}

.fm-products-carousel-with-category .header-cat .extra-links li:after {
	content: '';
	background-color: #dddddd;
	height: 15px;
	width: 1px;
	position: absolute;
	right: -1px;
	top: 50%;
	transform: translateY(-50%);
}

.fm-products-carousel-with-category .header-cat .extra-links li:first-child {
	padding-left: 0;
}

.fm-products-carousel-with-category .header-cat .extra-links li:last-child {
	padding-right: 0;
}

.fm-products-carousel-with-category .header-cat .extra-links li:last-child:after {
	display: none;
}

.fm-products-carousel-with-category .header-cat .extra-links li.view-all-btn {
	text-shadow: 0 0 #000;
}

.fm-products-carousel-with-category .header-cat .extra-links a.extra-link {
	color: #777777;
	display: block;
	line-height: 1.2;
}

.fm-products-carousel-with-category .header-cat .extra-links a.extra-link:hover {
	color: var(--fm-color-primary);
	text-shadow: 0 0 #000;
}

.fm-products-carousel-with-category .header-cat .extra-links .header-link {
	font-size: 14px;
	display: flex;
	align-items: center;
	transition: unset;
	padding: 7px 17px;
	border-radius: 3px;
}

.fm-products-carousel-with-category .header-cat .extra-links .header-link span {
	color: #777;
	transition: 0.5s;
}

.fm-products-carousel-with-category .header-cat .extra-links .header-link .link-text {
	display: block;
	line-height: 1.2;
}

.fm-products-carousel-with-category .header-cat .extra-links .header-link .farmart-svg-icon {
	font-size: 9px;
	padding-left: 4px;
}

.fm-products-carousel-with-category .header-cat .extra-links .header-link:hover {
	color: var(--fm-background-text-color-primary);
}

.fm-products-carousel-with-category .header-cat .extra-links .header-link:hover .link-text {
	text-shadow: 0 0 var(--fm-background-text-color-primary);
}

.fm-products-carousel-with-category .header-cat .extra-links::-webkit-scrollbar {
	display: none;
}

.fm-products-carousel-with-category .content-wrapper {
	display: flex;
	background-color: #fff;
}

.fm-products-carousel-with-category .images-box {
	flex: 0 0 15.15%;
	max-width: 15.15%;
}

.fm-products-carousel-with-category .products-box {
	width: 100%;
	padding: 15px;
	border: 1px solid #eee;
	border-top: 0;
}

.fm-products-carousel-with-category .slick-active:last-child .product-inner:after {
	right: 2px;
}

.fm-products-carousel-with-category ul.products {
	margin-bottom: 0;
}

.fm-products-carousel-with-category ul.products.slick-slider {
	display: block;
}

.fm-products-carousel-with-category ul.products li.product {
	pointer-events: auto;
}

.fm-products-carousel-with-category ul.products li.product .woocommerce-product-details__short-description {
	display: none;
}

.fm-products-carousel-with-category ul.products li.product .product-inner {
	position: relative;
	border-width: 1px 1px 1px 0;
	border-color: #c9c9c9;
}

.fm-products-carousel-with-category ul.products li.product .product-inner:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 1px;
	background-color: transparent;
}

.fm-products-carousel-with-category ul.products li.product .product-thumbnail {
	margin-top: 20px;
}

.fm-products-carousel-with-category ul.products li.product:first-child.slick-current .product-inner:before {
	background-color: #c9c9c9;
}

.fm-products-carousel-with-category ul.products li.product:first-child.slick-current .product-inner:hover:before {
	left: -1px;
}

.fm-products-carousel-with-category .slick-track {
	display: flex;
}

.fm-products-carousel-with-category .slick-track:before, .fm-products-carousel-with-category .slick-track:after {
	display: none;
}

.fm-products-carousel-with-category .slick-track .slick-slide {
	height: inherit;
}

.fm-products-carousel-with-category .slick-track .slick-slide .product-inner {
	height: 100%;
}

.fm-products-carousel-with-category .slick-list {
	padding: 0 2px 80px;
	margin: 0 -2px -80px;
	pointer-events: none;
	z-index: 30;
}

.fm-products-carousel-with-category .slick-list:hover {
	z-index: 9;
}

.fm-products-carousel-with-category .slick-dots {
	z-index: 8;
	position: relative;
	bottom: auto;
}

.fm-products-carousel-with-category .slick-arrow {
	top: 44%;
}

.fm-products-carousel-with-category .slick-prev-arrow {
	left: -15px;
}

.fm-products-carousel-with-category .slick-next-arrow {
	right: -15px;
}

.fm-show-qty .fm-products-carousel-with-category .slick-list {
	padding-bottom: 157px;
	margin-bottom: -157px;
}

.farmart-border-type-2 ul.products li.product .product-inner {
	border-width: 1px;
	border-color: transparent;
}

.farmart-border-type-2 ul.products li.product .product-inner:hover {
	border-color: #c9c9c9;
}

.farmart-border-type-2 ul.products li.product:first-child.slick-current .product-inner:before {
	display: none;
}

.fm-products-list-carousel .products-header {
	border: 1px solid #eee;
	border-bottom: 0;
	padding: 35px 20px 15px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #fff;
}

.fm-products-list-carousel .products-header h3 {
	font-size: 16px;
	margin: 0;
}

.fm-products-list-carousel .products-content {
	border: 1px solid #eee;
	border-top: 0;
	padding: 20px;
	background-color: #fff;
}

.fm-products-list-carousel ul.products li.product .product-inner {
	padding: 0;
	border: 0;
	display: flex;
}

.fm-products-list-carousel ul.products li.product .product-inner:hover .product-bottom-box {
	display: none !important;
}

.fm-products-list-carousel ul.products li.product .product-thumbnail {
	flex: 0 0 30.5%;
	max-width: 30.5%;
	margin-bottom: 0;
}

.fm-products-list-carousel ul.products li.product .product-details {
	flex-grow: 1;
	padding-left: 20px;
}

.fm-products-list-carousel .slick-slider {
	margin: 0 -10px;
}

.fm-products-list-carousel .slick-slider .slick-slide {
	padding: 0 10px;
}

.fm-products-list-carousel .slick-slider .slick-slide > div:not(:last-child) {
	border-bottom: 1px solid #eee;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

.fm-products-list-carousel .slick-slider.slick-dotted {
	margin-bottom: 0;
}

.fm-products-list-carousel .slick-arrows-wrapper {
	display: flex;
	align-items: center;
}

.fm-products-list-carousel .slick-arrows-wrapper .slick-arrow {
	position: static;
	transform: unset;
	border: 0;
	width: 15px;
	height: 25px;
	line-height: 25px;
}

.fm-products-list-carousel .slick-dots {
	position: static;
	margin: 25px 0;
}

.fm-banner-carousel .heading {
	display: flex;
	justify-content: space-between;
	padding-bottom: 20px;
	align-items: center;
}

.fm-banner-carousel .title {
	margin: 0;
}

.fm-banner-carousel .extra-link {
	color: #888888;
}

.fm-banner-carousel .extra-link .farmart-svg-icon {
	font-size: 9px;
	margin-left: 3px;
}

.fm-banner-carousel .box-item {
	padding: 0 5px;
}

.fm-banner-carousel .content-image {
	margin-left: -5px;
	margin-right: -5px;
}

.fm-banner-carousel .slick-prev-arrow {
	left: -53px;
}

.fm-banner-carousel .slick-next-arrow {
	right: -53px;
}

.fm-banner-carousel .slick-dots {
	bottom: -35px;
}

.fm-banner-video {
	text-align: center;
	padding: 170px 0;
}

.fm-banner-video .banner-icon {
	margin-bottom: 37px;
}

.fm-banner-video .banner-icon .video-play-button {
	background-color: #666;
	border-radius: 50%;
	display: block;
	height: 42px;
	width: 42px;
	line-height: 42px;
	position: relative;
	text-align: center;
	transform: scale(1);
	transition: all .3s;
	margin: 0 auto;
}

.fm-banner-video .banner-icon .video-play-button .icon-triangle {
	display: inline-block;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	border-left: 11px solid #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
}

.fm-banner-video .banner-icon .video-play-button .animation-ripple {
	animation: anim-ripple 3s linear 0s infinite;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #666;
	border-radius: 50%;
	opacity: 0;
	transform: scale(1);
	z-index: 1;
}

.fm-banner-video .banner-icon .video-play-button .ripple-2 {
	animation-delay: 1.5s;
}

.fm-banner-video .banner-icon .video-play-button:hover, .fm-banner-video .banner-icon .video-play-button:focus {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	transform: scale(1.1);
}

.fm-banner-video .banner-icon .video-play-button:hover .animation-ripple, .fm-banner-video .banner-icon .video-play-button:focus .animation-ripple {
	animation: none;
}

.fm-banner-video .box-content .title {
	font-size: 35px;
	font-weight: 700;
	line-height: 45px;
	margin-bottom: 44px;
}

.fm-banner-video .box-content .button {
	position: relative;
	text-transform: uppercase;
	padding-right: 15px;
	color: #666;
}

.fm-banner-video .box-content .button:hover {
	color: var(--fm-color-primary);
}

.fm-footer-recently-viewed .recently-viewed-content,
.fm-header-recently-viewed .recently-viewed-content,
.fm-content-recently-viewed .recently-viewed-content {
	position: relative;
}

.fm-footer-recently-viewed .farmart-loading,
.fm-footer-recently-viewed .farmart-loading--wrapper,
.fm-header-recently-viewed .farmart-loading,
.fm-header-recently-viewed .farmart-loading--wrapper,
.fm-content-recently-viewed .farmart-loading,
.fm-content-recently-viewed .farmart-loading--wrapper {
	position: absolute;
	left: 1px;
	right: 1px;
}

.fm-footer-recently-viewed .farmart-loading--wrapper,
.fm-header-recently-viewed .farmart-loading--wrapper,
.fm-content-recently-viewed .farmart-loading--wrapper {
	top: 1px;
	bottom: 1px;
	z-index: 99;
	background-color: #fff;
}

.fm-footer-recently-viewed .farmart-loading,
.fm-header-recently-viewed .farmart-loading,
.fm-content-recently-viewed .farmart-loading {
	top: 50%;
	transform: translateY(-50%);
	text-align: center;
}

.fm-footer-recently-viewed .farmart-loading:after,
.fm-header-recently-viewed .farmart-loading:after,
.fm-content-recently-viewed .farmart-loading:after {
	width: 25px;
	height: 25px;
	border-color: var(--fm-color-primary) transparent var(--fm-color-primary) transparent;
	display: inline-block;
}

.fm-footer-recently-viewed.fm-hide-section,
.fm-header-recently-viewed.fm-hide-section,
.fm-content-recently-viewed.fm-hide-section {
	display: none;
}

.fm-footer-recently-viewed .recently-has-products,
.fm-footer-recently-viewed .recently-empty-products,
.fm-footer-recently-viewed .recently-viewed-products,
.fm-header-recently-viewed .recently-has-products,
.fm-header-recently-viewed .recently-empty-products,
.fm-header-recently-viewed .recently-viewed-products,
.fm-content-recently-viewed .recently-has-products,
.fm-content-recently-viewed .recently-empty-products,
.fm-content-recently-viewed .recently-viewed-products {
	opacity: 0;
	transition: ease .5s;
}

.fm-footer-recently-viewed .product-list,
.fm-header-recently-viewed .product-list,
.fm-content-recently-viewed .product-list {
	padding: 0;
}

.fm-footer-recently-viewed .product-list li.product,
.fm-header-recently-viewed .product-list li.product,
.fm-content-recently-viewed .product-list li.product {
	text-align: center;
}

.fm-footer-recently-viewed .product-list li.product a,
.fm-header-recently-viewed .product-list li.product a,
.fm-content-recently-viewed .product-list li.product a {
	display: inline-block;
	border: 2px solid transparent;
}

.fm-footer-recently-viewed .product-list li.product a:hover,
.fm-header-recently-viewed .product-list li.product a:hover,
.fm-content-recently-viewed .product-list li.product a:hover {
	border-color: var(--fm-color-primary);
}

.fm-footer-recently-viewed .recently-empty-products,
.fm-header-recently-viewed .recently-empty-products,
.fm-content-recently-viewed .recently-empty-products {
	text-align: center;
}

.fm-footer-recently-viewed .recently-empty-products .btn-primary,
.fm-header-recently-viewed .recently-empty-products .btn-primary,
.fm-content-recently-viewed .recently-empty-products .btn-primary {
	margin-top: 15px;
}

.fm-footer-recently-viewed .recently-button-products,
.fm-footer-recently-viewed .recently-button-products a,
.fm-header-recently-viewed .recently-button-products,
.fm-header-recently-viewed .recently-button-products a,
.fm-content-recently-viewed .recently-button-products,
.fm-content-recently-viewed .recently-button-products a {
	color: #777777;
}

.fm-footer-recently-viewed .recently-button-products,
.fm-header-recently-viewed .recently-button-products,
.fm-content-recently-viewed .recently-button-products {
	text-align: center;
	display: none;
	margin-top: 25px;
}

.fm-footer-recently-viewed .recently-button-products .farmart-svg-icon,
.fm-header-recently-viewed .recently-button-products .farmart-svg-icon,
.fm-content-recently-viewed .recently-button-products .farmart-svg-icon {
	font-size: 9px;
	margin-left: 5px;
}

.fm-footer-recently-viewed.products-loaded .recently-button-products,
.fm-header-recently-viewed.products-loaded .recently-button-products,
.fm-content-recently-viewed.products-loaded .recently-button-products {
	display: block;
}

.fm-footer-recently-viewed.products-loaded .recently-has-products,
.fm-footer-recently-viewed.products-loaded .recently-empty-products,
.fm-footer-recently-viewed.products-loaded .recently-viewed-products,
.fm-header-recently-viewed.products-loaded .recently-has-products,
.fm-header-recently-viewed.products-loaded .recently-empty-products,
.fm-header-recently-viewed.products-loaded .recently-viewed-products,
.fm-content-recently-viewed.products-loaded .recently-has-products,
.fm-content-recently-viewed.products-loaded .recently-empty-products,
.fm-content-recently-viewed.products-loaded .recently-viewed-products {
	opacity: 1;
}

.fm-footer-recently-viewed .slick-dots,
.fm-header-recently-viewed .slick-dots,
.fm-content-recently-viewed .slick-dots {
	bottom: -30px;
}

.fm-footer-recently-viewed .slick-dots button[aria-label="1 of 1"],
.fm-header-recently-viewed .slick-dots button[aria-label="1 of 1"],
.fm-content-recently-viewed .slick-dots button[aria-label="1 of 1"] {
	display: none;
}

.fm-footer-recently-viewed,
.fm-header-recently-viewed {
	position: relative;
}

.fm-footer-recently-viewed .recently-title,
.fm-header-recently-viewed .recently-title {
	position: relative;
	cursor: pointer;
	display: flex;
	align-items: center;
	line-height: 1;
}

.fm-footer-recently-viewed .recently-viewed-content,
.fm-header-recently-viewed .recently-viewed-content {
	padding: 25px 55px;
}

.fm-footer-recently-viewed .slick-next-arrow,
.fm-header-recently-viewed .slick-next-arrow {
	right: -28px;
}

.fm-footer-recently-viewed .slick-prev-arrow,
.fm-header-recently-viewed .slick-prev-arrow {
	left: -28px;
}

.fm-flex-column-horizontal .elementor-widget-fm-recently-viewed-products > *,
.fm-flex-column-horizontal .elementor-widget-fm-recently-viewed-products > * > *,
.fm-flex-column-horizontal .elementor-widget.elementor-widget-fm-recently-viewed-products {
	height: 100%;
	display: flex;
	align-items: center;
}

.fm-header-recently-viewed {
	padding: 15px 0;
}

.fm-header-recently-viewed .recently-title {
	height: 100%;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.015em;
	padding: 0 13px 0 0;
	margin: 0;
	transition: ease .3s;
}

.fm-header-recently-viewed .recently-title:before {
	content: '';
	position: absolute;
	width: 12px;
	height: 12px;
	border: 1px solid transparent;
	border-bottom-color: #ccc;
	border-left-color: #ccc;
	top: calc( 120% + 28px);
	left: 0;
	right: 20px;
	margin: auto;
	background-color: #fff;
	-webkit-transform: translate(-50%, -5px) rotate(135deg);
	-ms-transform: translate(-50%, -5px) rotate(135deg);
	transform: translate(-50%, -5px) rotate(135deg);
	opacity: 0;
	transition: top ease .3s;
	z-index: 9999;
}

.fm-header-recently-viewed.hide-icon-dropdown .recently-title {
	padding: 0;
}

.fm-header-recently-viewed.hide-icon-dropdown .recently-title:after {
	display: none;
}

.fm-header-recently-viewed .farmart-recent-icon {
	font-size: 18px;
	margin-right: 10px;
	color: #000;
}

.fm-header-recently-viewed .farmart-recent-icon i {
	font-weight: 700;
}

.fm-header-recently-viewed .recently-viewed-inner {
	position: absolute;
	top: calc( 120% + 13px);
	right: 0;
	z-index: 999;
	transition: top ease .3s;
	border-top: 0 solid transparent;
	opacity: 0;
	transform: scaleX(0);
}

.fm-header-recently-viewed .recently-viewed-content {
	border: 1px solid #ccc;
	background-color: #fff;
	padding: 30px 84px;
	border-radius: 3px;
}

.fm-header-recently-viewed .product-list {
	margin: 0 -20px;
}

.fm-header-recently-viewed .product-list li.product {
	padding-left: 20px;
	padding-right: 20px;
}

.fm-header-recently-viewed:hover .recently-viewed-products {
	opacity: 1;
}

.fm-header-recently-viewed:hover .recently-title:before,
.fm-header-recently-viewed:hover .recently-viewed-inner {
	top: calc( 100% + 14px);
	opacity: 1;
}

.fm-header-recently-viewed:hover .recently-viewed-inner {
	z-index: 999;
	transform: scaleX(1);
	top: 100%;
}

.fm-header-recently-viewed:hover .recently-title:after {
	-webkit-transform: rotate(180deg) translateY(50%);
	-ms-transform: rotate(180deg) translateY(50%);
	transform: rotate(180deg) translateY(50%);
}

.fm-header-recently-viewed .slick-arrow {
	width: 34px;
	height: 34px;
	line-height: 34px;
	font-size: 11px;
	color: #000;
}

.fm-header-recently-viewed .slick-prev-arrow {
	left: -34px;
}

.fm-header-recently-viewed .slick-next-arrow {
	right: -34px;
}

.fm-content-recently-viewed .recently-heading {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 20px;
}

.fm-content-recently-viewed .recently-title {
	margin: 0;
	display: flex;
	align-items: center;
}

.fm-content-recently-viewed .recently-title .farmart-svg-icon {
	font-size: 20px;
	margin-right: 9px;
}

.fm-content-recently-viewed .header-link {
	font-size: 14px;
	display: flex;
	align-items: center;
	transition: unset;
	color: #666666;
}

.fm-content-recently-viewed .header-link .link-text {
	display: block;
	line-height: 1.2;
}

.fm-content-recently-viewed .header-link .farmart-svg-icon {
	padding-left: 3px;
	font-size: 9px;
}

.fm-content-recently-viewed .header-link:hover span {
	color: var(--fm-color-primary);
}

.fm-content-recently-viewed .header-link:hover .link-text {
	text-shadow: 0 0 var(--fm-color-primary);
}

.fm-content-recently-viewed .recently-viewed-inner {
	border: 1px solid #eeeeee;
}

.fm-content-recently-viewed .recently-empty-products,
.fm-content-recently-viewed .recently-viewed-products {
	padding: 40px 30px;
	background-color: #fff;
}

.fm-content-recently-viewed .recently-empty-products .empty-desc {
	margin-bottom: 14px;
}

.fm-content-recently-viewed .product-list {
	margin: 0 -15px;
}

.fm-content-recently-viewed .product-list li.product {
	padding-left: 15px;
	padding-right: 15px;
}

.fm-content-recently-viewed .slick-prev-arrow {
	left: -30px;
}

.fm-content-recently-viewed .slick-next-arrow {
	right: -30px;
}

.fm-content-recently-viewed .slick-dots {
	bottom: -30px;
}

.fm-footer-recently-viewed {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
}

.fm-footer-recently-viewed .recently-title {
	float: right;
	padding: 10px 42px 10px 17px;
	border: 1px solid #dddddd;
	margin: 0 94px 0 0;
	background-color: #eeeeee;
	z-index: 9999;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}

.fm-footer-recently-viewed .recently-title:after {
	right: 20px;
}

.fm-footer-recently-viewed .recently-title.active {
	border-color: transparent;
}

.fm-footer-recently-viewed .recently-viewed-inner {
	opacity: 1;
	background-color: #fff;
	clear: both;
	position: relative;
	display: none;
	z-index: 9999;
}

.fm-footer-recently-viewed .recently-title.active:after {
	-webkit-transform: rotate(180deg) translateY(50%);
	-ms-transform: rotate(180deg) translateY(50%);
	transform: rotate(180deg) translateY(50%);
}

.fm-footer-recently-viewed .overlay {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: none;
	z-index: -1;
	background-color: rgba(0, 0, 0, 0.55);
}

.fm-footer-recently-viewed .overlay.opened {
	display: block;
	z-index: 999;
}

.fm-footer-recently-viewed .recently-viewed-content {
	background-color: #fff;
	padding: 40px 88px 25px;
}

.fm-footer-recently-viewed.products-loaded .recently-viewed-products {
	opacity: 1;
}

.fm-footer-recently-viewed ul.product-list {
	margin-left: -15px;
	margin-right: -15px;
}

.fm-footer-recently-viewed ul.product-list li.product {
	padding: 0 15px;
}

.fm-footer-recently-viewed .slick-prev-arrow {
	left: -65px;
}

.fm-footer-recently-viewed .slick-next-arrow {
	right: -65px;
}

.fm-footer-recently-viewed .slick-dots {
	bottom: -30px;
}

.fm-product-deals-day {
	position: relative;
}

.fm-product-deals-day.fm-product-deals-query-sale .farmart-countdown .days, .fm-product-deals-day.fm-product-deals-query-deals .farmart-countdown .days, .fm-product-deals-day.fm-product-deals-query-day .farmart-countdown .days {
	display: none;
}

.fm-product-deals-day .header-countdown {
	display: flex;
	align-items: center;
	justify-content: center;
}

.fm-product-deals-day .ends-text {
	display: flex;
	align-items: center;
	margin-right: 8px;
	line-height: 1;
}

.fm-product-deals-day .ends-text .farmart-svg-icon {
	font-size: 18px;
	margin-right: 10px;
}

.fm-product-deals-day .header-countdown {
	color: #fff;
	font-size: 13px;
	background-color: #e84506;
	padding: 4px 13px;
	border-radius: 3px;
}

.fm-product-deals-day .farmart-countdown .digits {
	font-size: 16px;
	font-weight: 700;
}

.fm-product-deals-day .farmart-countdown .text {
	margin-left: 5px;
}

.fm-product-deals-day .farmart-countdown .divider {
	margin: 0 4px;
}

.fm-product-deals-day .cat-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.fm-product-deals-day .cat-header .header-content {
	display: flex;
	align-items: center;
}

.fm-product-deals-day .cat-header .cat-title {
	margin: 0;
	display: flex;
	align-items: center;
}

.fm-product-deals-day .cat-header .cat-title .farmart-svg-icon {
	margin-right: 5px;
}

.fm-product-deals-day .cat-header .countdown-wrapper {
	display: flex;
	align-items: center;
	margin-left: 39px;
}

.fm-product-deals-day .cat-header .header-link {
	display: flex;
	align-items: center;
	transition: unset;
}

.fm-product-deals-day .cat-header .header-link span {
	color: #777;
	transition: 0.5s;
}

.fm-product-deals-day .cat-header .header-link .link-text {
	display: block;
	line-height: 1.2;
}

.fm-product-deals-day .cat-header .header-link .farmart-svg-icon {
	padding-left: 3px;
	font-size: 10px;
}

.fm-product-deals-day .cat-header .header-link:hover span {
	color: var(--fm-color-primary);
}

.fm-product-deals-day .products-content {
	border: 1px solid #c9c9c9;
	border-right: none;
	position: relative;
}

.fm-product-deals-day .products-content:after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 1px;
	height: 100%;
	background-color: #c9c9c9;
	z-index: 9;
}

.fm-product-deals-day.fm-elementor-product-deals-carousel .slick-list {
	padding-left: 0;
	padding-right: 0;
	margin-right: -1px;
	margin-left: -1px;
}

.fm-product-deals-day .slick-track {
	background-color: #fff;
}

.fm-product-deals-day .slick-dots {
	bottom: -20px;
}

.fm-product-deals-day .slick-prev-arrow {
	left: -50px;
}

.fm-product-deals-day .slick-next-arrow {
	right: -50px;
}

.fm-product-deals-day ul.products {
	border: none;
}

.fm-product-deals-day ul.products li.product {
	clear: none;
	margin-bottom: 0;
	pointer-events: auto;
	float: left;
}

.fm-product-deals-day ul.products li.product .woocommerce-product-details__short-description {
	display: none;
}

.fm-product-deals-day ul.products li.product .tawc-deal {
	display: block;
	margin-top: 15px;
	margin-bottom: 0;
	width: 100%;
}

.fm-product-deals-day ul.products li.product .tawc-deal .progress-bar,
.fm-product-deals-day ul.products li.product .tawc-deal .progress-value {
	height: 8px;
}

.fm-product-deals-day ul.products li.product .tawc-deal .progress-bar {
	background-color: #eeeeee;
}

.fm-product-deals-day ul.products li.product .tawc-deal .progress-value {
	background-color: #fab528;
}

.fm-product-deals-day ul.products li.product .tawc-deal .deal-text {
	color: #000;
	font-size: 13px;
	margin-bottom: 0;
	margin-top: 3px;
}

.fm-product-deals-day ul.products li.product .sold-by-meta {
	margin-bottom: 6px;
}

.fm-product-deals-day ul.products li.product .product-thumbnail {
	margin-bottom: 30px;
}

.fm-product-deals-day ul.products li.product .product-inner:hover {
	border-top-color: transparent;
}

.fm-elementor-product-deals-carousel ul.products {
	margin: 0;
}

.fm-elementor-product-deals-carousel ul.products li.product .product-inner .product-deals-price .price {
	display: flex;
}

.fm-elementor-product-deals-carousel ul.products li.product .product-inner .price {
	margin-bottom: 5px;
}

.fm-elementor-product-deals-carousel ul.products li.product .product-inner .woocommerce-loop-product__title {
	margin-top: 5px;
}

.fm-elementor-product-deals-carousel .slick-list {
	padding: 0 0 125px;
	margin-right: -6px;
}

.fm-elementor-product-deals-carousel .slick-slider .slick-arrow {
	opacity: 1;
}

.fm-elementor-product-deals-carousel .slick-dots {
	bottom: 45px;
}

.fm-elementor-product-deals-carousel.farmart-nav-outside .cat-header .header-link {
	font-size: 14px;
	color: #666666;
	margin-left: 35px;
}

.fm-elementor-product-deals-carousel.farmart-nav-outside .cat-header .header-link .farmart-svg-icon {
	font-size: 12px;
}

body:not(.catalog-view-list) .fm-elementor-product-deals-carousel-2 ul.products li.product .product-inner:hover .product-bottom-box,
body:not(.catalog-view-list) .fm-elementor-product-deals-carousel-2 ul.products li.product .product-bottom-box {
	display: none;
}

.fm-elementor-product-deals-carousel-2 .products-content {
	border: none;
	background-color: transparent;
}

.fm-elementor-product-deals-carousel-2 ul.products {
	background-color: #fff;
	padding-bottom: 0;
	margin-bottom: 0;
	line-height: 1;
}

.fm-elementor-product-deals-carousel-2 ul.products li.product .product-inner {
	display: flex;
	padding: 30px;
	border-width: 1px;
	transition: 0.3s;
}

.fm-elementor-product-deals-carousel-2 ul.products li.product .product-inner:hover {
	border-color: #c9c9c9;
}

.fm-elementor-product-deals-carousel-2 ul.products li.product .product-inner:hover .tawc-deal {
	opacity: 1;
}

.fm-elementor-product-deals-carousel-2 ul.products li.product .product-inner .product-thumbnail {
	width: 42.33%;
	flex: none;
	margin: 0 20px 0 0;
}

.fm-elementor-product-deals-carousel-2 ul.products li.product .product-inner .product-details {
	width: 66.66%;
}

.fm-elementor-product-deals-carousel-2 ul.products li.product .product-deals-price .price {
	display: flex;
}

.fm-elementor-product-deals-carousel-2 ul.products li.product .price {
	display: none;
	font-size: 17px;
	margin-bottom: 17px;
}

.fm-elementor-product-deals-carousel-2 ul.products li.product .price .sale {
	font-size: 13px;
}

.fm-elementor-product-deals-carousel-2 ul.products li.product .unit-text {
	margin-bottom: 14px;
}

.fm-elementor-product-deals-carousel-2 ul.products li.product .fm-rating {
	margin-bottom: 22px;
}

.fm-elementor-product-deals-carousel-2 ul.products li.product .product-bottom-box {
	display: none;
}

.fm-elementor-product-deals-carousel-2 ul.products li.product .tawc-deal {
	position: initial;
}

.fm-elementor-product-deals-carousel-2 ul.products li.product .tawc-deal .deal-progress {
	margin-bottom: 14px;
}

.fm-elementor-product-deals-carousel-2 ul.products li.product .product-details-hover {
	position: initial;
	display: block;
	z-index: 1;
	border: none;
	padding: 0;
}

.fm-elementor-product-deals-carousel-2 ul.products li.product .box-price,
.fm-elementor-product-deals-carousel-2 ul.products li.product .product-button .group {
	display: none;
}

.fm-elementor-product-deals-carousel-2 ul.products li.product form.cart {
	display: flex;
	margin-top: 20px;
}

.fm-elementor-product-deals-carousel-2 ul.products li.product form.cart .quantity {
	flex: none;
	width: 40%;
	margin-bottom: 0;
	margin-right: 10px;
}

.fm-elementor-product-deals-carousel-2 ul.products li.product form.cart .quantity_button {
	margin-top: 0;
}

.fm-elementor-product-deals-carousel-2 .slick-list {
	margin: 0;
	padding: 0;
	margin-right: -1px;
}

.fm-elementor-product-deals-carousel-2 .slick-dots {
	z-index: 4;
}

.fm-elementor-product-deals-carousel-2 .slick-prev-arrow {
	left: 0;
}

.fm-elementor-product-deals-carousel-2 .slick-next-arrow {
	right: 0;
}

.fm-elementor-product-deals-carousel-2 .slick-arrow {
	opacity: 1;
	top: 38.5%;
}

.fm-elementor-product-deals-carousel-2 .slick-track {
	display: flex;
}

.fm-elementor-product-deals-carousel-2 .slick-track .slick-slide {
	display: flex;
	height: auto;
	align-items: stretch;
	flex-direction: column;
}

.fm-elementor-product-deals-carousel-2 .slick-track .slick-slide > div {
	display: flex;
	align-items: stretch;
	height: 100%;
}

.fm-elementor-product-deals-carousel-2 .slick-slide {
	position: relative;
	border-color: #eeeeee;
	border-style: solid;
	border-width: 1px 1px 0 0;
}

.fm-elementor-product-deals-carousel-2 .slick-slide.slick-current {
	border-width: 1px 1px 0 0;
}

.woocommerce-products-header .fm-elementor-product-deals-carousel-3 ul.products li.product .product-inner:hover .product-bottom-box,
body:not(.catalog-view-list) .fm-elementor-product-deals-carousel-3 ul.products li.product .product-inner:hover .product-bottom-box {
	display: none;
}

.fm-elementor-product-deals-carousel-3 {
	border: 2px solid var(--fm-color-primary);
	background-color: #fff;
	padding: 32px 0 8px;
	overflow: hidden;
}

.fm-elementor-product-deals-carousel-3 .header-content {
	display: flex;
	justify-content: space-between;
	padding-left: 20px;
	padding-right: 20px;
}

.fm-elementor-product-deals-carousel-3 .cat-title {
	margin: 0;
}

.fm-elementor-product-deals-carousel-3 .box-nav .prev-arrow,
.fm-elementor-product-deals-carousel-3 .box-nav .next-arrow {
	cursor: pointer;
}

.fm-elementor-product-deals-carousel-3 .box-nav .prev-arrow {
	margin-right: 10px;
}

.fm-elementor-product-deals-carousel-3 .products-content {
	border: none;
}

.fm-elementor-product-deals-carousel-3 ul.products {
	padding-bottom: 0;
}

.fm-elementor-product-deals-carousel-3 ul.products li.product .product-thumbnail img {
	margin: auto;
}

.fm-elementor-product-deals-carousel-3 ul.products li.product .tawc-deal {
	position: relative;
}

.fm-elementor-product-deals-carousel-3 ul.products li.product .tawc-deal .progress-value {
	background-color: #fcb800;
}

.fm-elementor-product-deals-carousel-3 ul.products li.product .farmart-countdown {
	margin-top: 25px;
}

.fm-elementor-product-deals-carousel-3 ul.products li.product .price {
	margin-bottom: 14px;
	font-size: 18px;
	display: none;
}

.fm-elementor-product-deals-carousel-3 ul.products li.product .price .sale {
	font-size: 13px;
}

.fm-elementor-product-deals-carousel-3 ul.products li.product .product-deals-price .price {
	display: flex;
}

.fm-elementor-product-deals-carousel-3 ul.products li.product .product-inner {
	padding: 26px;
	border-width: 0;
}

.fm-elementor-product-deals-carousel-3 ul.products li.product .product-inner:hover {
	border: none;
}

.fm-elementor-product-deals-carousel-3 ul.products li.product .product-inner:hover .tawc-deal {
	opacity: 1;
}

.fm-elementor-product-deals-carousel-3 .product-button {
	display: none;
}

.fm-elementor-product-deals-carousel-3 .slick-list {
	margin: 0;
	padding: 0;
}

.fm-product-deals-grid .products-content {
	position: relative;
	border: none;
	background-color: #f7f7f7;
	padding: 35px 0;
}

.fm-product-deals-grid .products-content:before, .fm-product-deals-grid .products-content:after {
	content: '';
	position: absolute;
	height: 100%;
	background-color: #f7f7f7;
	width: calc((100vw - 1190px)/2);
	top: 0;
}

.fm-product-deals-grid .products-content:before {
	left: calc((-100vw + 1190px)/2);
}

.fm-product-deals-grid .products-content:after {
	right: calc((-100vw + 1190px)/2);
}

.fm-product-deals-grid .tabs-nav {
	margin-bottom: 27px;
}

.fm-product-deals-grid .tabs-nav li:first-child a {
	padding-left: 0;
}

.fm-product-deals-grid .tabs-nav li.active a {
	color: var(--fm-color-primary);
}

.fm-product-deals-grid .tabs-nav a {
	display: inline-block;
	padding: 0 17px;
	font-weight: 700;
	color: #888;
	font-size: 16px;
}

.fm-product-deals-grid .tabs-panel.tab-loaded ul.products {
	opacity: 1;
}

.fm-product-deals-grid .tabs-panel > .woocommerce {
	position: relative;
	z-index: 1;
}

.fm-product-deals-grid ul.products,
.fm-product-deals-grid ul.products li.product {
	border-style: solid;
	border-color: #eeeeee;
}

.fm-product-deals-grid ul.products {
	border-width: 1px 0 0 1px;
	padding-bottom: 0;
	opacity: 0;
	transition: ease .3s;
}

.fm-product-deals-grid ul.products li.product {
	border-width: 0 1px 1px 0;
	background-color: #fff;
}

.fm-product-deals-grid ul.products li.product .product-inner {
	margin-bottom: 39px;
}

.fm-product-deals-grid ul.products li.product .product-inner:hover {
	border-color: transparent;
}

.fm-product-deals-grid ul.products li.product .product-inner:hover .product-bottom-box {
	border-left-color: transparent;
	border-right-color: transparent;
}

.fm-product-deals-grid .farmart-loading {
	padding: 10px 0;
	height: 400px;
	display: flex;
}

.fm-product-deals-grid .farmart-loading:after {
	width: 24px;
	height: 24px;
	margin: auto;
	border-color: #fff var(--fm-color-primary) #fff var(--fm-color-primary);
}

.fm-product-deals-grid .load-more {
	margin: 85px 0 50px;
	text-align: center;
}

.fm-product-deals-grid .load-more a {
	position: relative;
}

.fm-product-deals-grid .load-more a.loading .after-loading {
	opacity: 1;
	right: -9px;
}

.fm-product-deals-grid .load-more a.loading .button-text--before {
	opacity: 0;
	transform: translateY(-10px) rotateX(90deg);
}

.fm-product-deals-grid .load-more a.loading .button-text--after {
	opacity: 1;
	transform: rotateX(0);
}

.fm-product-deals-grid .load-more a.loading .button-text {
	transform: translateX(-28px);
}

.fm-product-deals-grid .load-more .button-text {
	font-size: 16px;
	font-weight: 700;
	color: #888888;
	letter-spacing: 0.37em;
	transition: ease 0.3s;
	display: inline-block;
	position: relative;
	transform: translateX(0);
	min-width: 115px;
	text-transform: uppercase;
}

.fm-product-deals-grid .load-more .button-text--after {
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	transition: opacity 0.5s ease;
	transform: translateY(10px) rotateX(-90deg);
}

.fm-product-deals-grid .load-more .after-loading {
	position: absolute;
	top: -1px;
	right: 0;
	opacity: 0;
	z-index: -1;
	transition: ease 0.5s;
}

.fm-product-deals-grid .load-more .loading-icon .dot {
	background-color: #888;
}

.fm-product-deals-grid .load-more .loading-icon .bubble {
	width: 4px;
	height: 4px;
}

.fm-product-deals-query-deals .farmart-countdown .days {
	display: none;
}

.farmart-brands-carousel {
	padding-left: 30px;
	padding-right: 30px;
	border: 1px  solid #eeeeee;
	background-color: #fff;
}

.farmart-brands-carousel .heading {
	display: flex;
	justify-content: space-between;
	padding: 25px 0 21px;
	border-bottom: 1px  solid #eeeeee;
}

.farmart-brands-carousel .title {
	margin: 0;
	padding-right: 25px;
}

.farmart-brands-carousel .extra-link {
	color: #888888;
	margin-top: 5px;
	flex: none;
}

.farmart-brands-carousel .extra-link .farmart-svg-icon {
	font-size: 9px;
	margin-left: 3px;
}

.farmart-brands-carousel .list-brands {
	padding: 34px 10px 35px;
}

.farmart-brands-carousel .brand-item {
	padding: 0 20px;
}

.farmart-brands-carousel .brand-item img {
	margin: auto;
}

.farmart-brands-carousel .slick-track {
	display: flex;
}

.farmart-brands-carousel .slick-slider .slick-arrow {
	opacity: 1;
}

.farmart-brands-carousel .slick-arrow {
	border-color: transparent;
	font-size: 20px;
	color: #888;
	width: auto;
}

.farmart-brands-carousel .slick-prev-arrow {
	left: 0;
}

.farmart-brands-carousel .slick-next-arrow {
	right: 0;
}

.farmart-brands-carousel .slick-dotted.slick-slider {
	margin: 0;
}

.farmart-brands-carousel .slick-dots {
	bottom: 30px;
}

.fm-products-brands .product-brands {
	background-color: #fff;
}

.fm-products-brands .brand-item-wrapper {
	padding: 20px 40px 4px 40px;
	position: relative;
	border: 1px solid #eee;
	border-top-width: 0;
}

.fm-products-brands .brand-item-wrapper:first-child {
	border-top-width: 1px;
}

.fm-products-brands .brand-item-wrapper:hover {
	z-index: 2;
}

.fm-products-brands .brand-item {
	display: flex;
}

.fm-products-brands .brand-item__header {
	flex: 0 0 18%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding-right: 20px;
}

.fm-products-brands .brand-item__header .brand-info {
	margin-top: 15px;
}

.fm-products-brands .brand-item__header .farmart-svg-icon {
	font-size: 10px;
}

.fm-products-brands .brand-item__content {
	flex: 0 0 82%;
	width: 82%;
}

.fm-products-brands .brand-item__content ul.products {
	margin-bottom: 0;
}

.fm-products-brands .brand-info__name {
	text-transform: uppercase;
	font-weight: 700;
	color: #222;
}

.fm-products-brands .brand-info__desc {
	color: #e84506;
}

.fm-products-brands .brand-logo {
	display: block;
	margin-bottom: 20px;
}

.fm-products-brands .brand-btn {
	margin-bottom: 28px;
}

.fm-products-brands .brand-btn i {
	font-size: 10px;
}

.fm-products-brands .brand-btn:hover {
	color: #222;
}

.fm-products-brands .load-more {
	position: relative;
	z-index: 1;
}

.fm-products-brands .load-more a {
	display: inline-block;
	margin-top: 35px;
	font-size: 13px;
	letter-spacing: 4.8px;
	color: #666;
	text-transform: uppercase;
	position: relative;
}

.fm-products-brands .load-more a .farmart-svg-icon,
.fm-products-brands .load-more a .farmart-loading {
	position: absolute;
	top: 4px;
	right: -24px;
}

.fm-products-brands .load-more a.loading .farmart-svg-icon {
	opacity: 0;
}

.fm-products-brands .load-more a.loading .farmart-loading:after {
	border-color: #694a4a transparent #694a4a transparent;
}

@media (max-width: 992px) {
	.fm-products-brands ul.products {
		border-width: 1px 0 0 1px;
		border-color: #eee;
		border-style: solid;
	}
	.fm-products-brands ul.products li.product {
		border-width: 0 1px 1px 0;
		border-color: #eee;
		border-style: solid;
	}
	.fm-products-brands .brand-item-wrapper {
		margin-bottom: 40px;
		padding-bottom: 60px;
	}
	.fm-products-brands .brand-item__header {
		flex: 0 0 100%;
		padding-right: 0;
		flex-direction: row;
		margin-bottom: 20px;
	}
	.fm-products-brands .brand-item__header .brand-info {
		margin-top: 0;
	}
	.fm-products-brands .brand-item__header .brand-btn {
		display: block;
		margin-bottom: 0;
		margin-top: 10px;
	}
	.fm-products-brands .brand-item__content {
		flex: 0 0 100%;
		width: 100%;
	}
	.fm-products-brands .brand-item {
		display: block;
	}
}

@media (max-width: 414px) {
	.fm-products-brands .product-brands {
		background-color: initial;
	}
	.fm-products-brands .brand-item-wrapper {
		padding: 0;
		border: none;
		background-color: #fff;
	}
	.fm-products-brands .brand-item__header {
		display: block;
		padding: 30px;
		margin-bottom: 0;
		border: 1px solid #eee;
		border-bottom: none;
	}
	.fm-products-brands ul.products li.product .product-inner {
		padding: 10px;
	}
}

.fm-promotion {
	position: relative;
	background-size: cover;
	background-position: center center;
}

.fm-promotion .content {
	display: flex;
	align-items: center;
	padding: 30px 0 30px 170px;
	max-width: 1170px;
	margin: 0 auto;
	position: relative;
}

.fm-promotion .left-content,
.fm-promotion .right-content {
	display: flex;
}

.fm-promotion .left-content {
	padding-right: 30px;
}

.fm-promotion .right-content {
	flex-direction: column;
	position: relative;
	padding-left: 30px;
}

.fm-promotion .right-content:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 1px;
	height: 100%;
	background-color: #36322f;
}

.fm-promotion .box-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.fm-promotion .percent {
	font-size: 80px;
	font-weight: 700;
	line-height: 1;
	color: #fcb800;
}

.fm-promotion .unit {
	font-size: 45px;
	font-weight: 700;
	line-height: 1;
	color: #fcb800;
}

.fm-promotion .text {
	font-size: 25px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1;
}

.fm-promotion .title {
	font-size: 26px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0;
}

.fm-product-with-category .header-cat {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 20px;
}

.fm-product-with-category .header-cat h2 {
	color: #000;
	font-size: 21px;
	margin: 0;
}

.fm-product-with-category .header-cat h2 a {
	color: #000;
	display: flex;
	align-items: center;
}

.fm-product-with-category .header-cat h2 .farmart-svg-icon {
	font-size: 20px;
	margin-right: 9px;
}

.fm-product-with-category .header-cat .header-link {
	display: none;
}

.fm-product-with-category .content-wrapper {
	display: flex;
	background-color: #fff;
}

.fm-product-with-category .sidebar-box {
	flex: 0 0 33.58974%;
	max-width: 33.58974%;
	display: flex;
	flex-direction: column;
	border-color: #eeeeee;
}

.fm-product-with-category .images-list.slick-dotted {
	margin-bottom: 0;
}

.fm-product-with-category .images-list img {
	margin: auto;
}

.fm-product-with-category .images-list:hover .slick-arrow {
	opacity: 1;
	visibility: visible;
}

.fm-product-with-category .images-list .slick-arrow {
	opacity: 0;
	visibility: hidden;
	transition: .5s;
}

.fm-product-with-category .images-list .slick-prev-arrow {
	left: 20px;
}

.fm-product-with-category .images-list .slick-next-arrow {
	right: 20px;
}

.fm-product-with-category .images-list .slick-dots {
	position: absolute;
	bottom: 18px;
}

.fm-product-with-category .images-list .slick-dots li button:before {
	background-color: rgba(255, 255, 255, 0.3);
}

.fm-product-with-category .images-list .slick-dots li.slick-active button:before {
	background-color: #ffffff;
}

.fm-product-with-category .categories-box {
	padding: 26px 30px 24px;
	flex-grow: 1;
	background-color: #fff;
	border: 1px solid #eee;
	border-top: 0;
	border-right: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.fm-product-with-category .categories-box h4 {
	font-size: 14px;
	margin: 0 0 8px;
}

.fm-product-with-category .categories-box h4 a {
	color: #000;
}

.fm-product-with-category .categories-box ul.extra-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.fm-product-with-category .categories-box ul.extra-links li {
	padding: 2px 0;
}

.fm-product-with-category .categories-box ul.extra-links li:first-child {
	padding-top: 0;
}

.fm-product-with-category .categories-box ul.extra-links li:last-child {
	padding-bottom: 0;
}

.fm-product-with-category .categories-box ul.extra-links a {
	color: #555;
}

.fm-product-with-category .categories-box ul.extra-links a:hover {
	color: var(--fm-color-primary);
	text-shadow: 0 0 var(--fm-color-primary);
}

.fm-product-with-category .categories-box .categories-box--footer {
	border-top: 1px solid #eee;
	width: 100%;
	padding-top: 25px;
	margin-top: 20px;
}

.fm-product-with-category .header-link {
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	transition: unset;
}

.fm-product-with-category .header-link span {
	color: #777;
	transition: 0.5s;
}

.fm-product-with-category .header-link .link-text {
	display: block;
	line-height: 1.2;
}

.fm-product-with-category .header-link .farmart-svg-icon {
	padding-left: 3px;
	font-size: 10px;
}

.fm-product-with-category .header-link:hover span {
	color: var(--fm-color-primary);
}

.fm-product-with-category .header-link:hover .link-text {
	text-shadow: 0 0 var(--fm-color-primary);
}

.fm-product-with-category .categories-box--columns-1 .category-box--1 {
	margin-bottom: 20px;
}

.fm-product-with-category .categories-box--columns-2 .quick-links-wrapper {
	display: flex;
}

.fm-product-with-category .categories-box--columns-2 .category-box {
	width: 50%;
	padding-right: 20px;
}

.fm-product-with-category .products-box {
	flex-grow: 1;
	order: 2;
	background-color: #fff;
	border-top: 1px solid #eee;
	border-right: 1px solid #eee;
	position: relative;
}

.fm-product-with-category ul.products li.product {
	margin-bottom: 0;
	border-left: 1px solid #eee;
	border-bottom: 1px solid #eee;
	min-height: 340px;
}

.fm-product-with-category ul.products li.product .product-inner {
	margin: 0 -1px;
	padding-bottom: 18px;
}

.fm-product-with-category ul.products li.product .woocommerce-product-details__short-description {
	display: none;
}

.fm-trending-search-carousel .trending-search__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border: 1px solid #eee;
	border-bottom: 0;
	padding: 35px 20px 5px;
	background-color: #fff;
}

.fm-trending-search-carousel .trending-search__header h2 {
	color: #000;
	font-size: 16px;
	margin: 0;
	display: flex;
	align-items: center;
}

.fm-trending-search-carousel .trending-search__header h2 .farmart-svg-icon {
	font-size: 20px;
	margin-right: 9px;
}

.fm-trending-search-carousel .trending-search__content {
	background-color: #fff;
	padding: 20px;
	border: 1px solid #eeeeee;
	border-top: 0;
}

.fm-trending-search-carousel ul.collection-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.fm-trending-search-carousel ul.collection-list .thumb {
	max-width: 30%;
	flex: 0 0 30%;
	border: 2px solid transparent;
	transition: 0.5s;
}

.fm-trending-search-carousel ul.collection-list .info {
	flex-grow: 1;
	padding-left: 20px;
}

.fm-trending-search-carousel ul.collection-list .collection-item__name {
	color: #000;
	display: inline-block;
	line-height: 1.3;
	transition: 0.5s;
}

.fm-trending-search-carousel ul.collection-list .collection-item__count {
	font-size: 14px;
	color: #777777;
	display: block;
	line-height: 1.4;
}

.fm-trending-search-carousel ul.collection-list a {
	display: flex;
	align-items: center;
	padding: 10px 0;
}

.fm-trending-search-carousel ul.collection-list a:hover .thumb {
	border-color: var(--fm-color-primary);
}

.fm-trending-search-carousel ul.collection-list a:hover .collection-item__name {
	color: var(--fm-color-primary);
	box-shadow: inset 0 0 0 transparent, inset 0 -1px 0 var(--fm-color-primary);
}

.fm-trending-search-carousel .slick-slide > div li {
	border-top: 1px solid #eeeeee;
}

.fm-trending-search-carousel .slick-slide > div:first-child li {
	border-top: 0;
}

.fm-trending-search-carousel .slick-arrows-wrapper {
	display: flex;
	align-items: center;
}

.fm-trending-search-carousel .slick-arrows-wrapper .slick-arrow {
	position: static;
	transform: unset;
	border: 0;
	width: 15px;
	height: 25px;
	line-height: 25px;
}

.fm-trending-search-carousel .slick-dots {
	position: static;
	margin: 25px 0;
}

.fm-trending-search-carousel .slick-arrow {
	color: #000;
	position: static;
	transform: unset;
}

.fm-product-deals-day.hide-icon-button .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > a i,
.fm-product-deals-day.hide-icon-button .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > a .farmart-svg-icon,
.fm-product-deals-day.hide-icon-button .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse > a i,
.fm-product-deals-day.hide-icon-button .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse > a .farmart-svg-icon,
.fm-product-deals-day.hide-icon-button .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse > a i,
.fm-product-deals-day.hide-icon-button .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse > a .farmart-svg-icon,
.fm-products-brands.hide-icon-button .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > a i,
.fm-products-brands.hide-icon-button .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > a .farmart-svg-icon,
.fm-products-brands.hide-icon-button .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse > a i,
.fm-products-brands.hide-icon-button .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse > a .farmart-svg-icon,
.fm-products-brands.hide-icon-button .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse > a i,
.fm-products-brands.hide-icon-button .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse > a .farmart-svg-icon,
.fm-elementor-product-carousel.hide-icon-button .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > a i,
.fm-elementor-product-carousel.hide-icon-button .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > a .farmart-svg-icon,
.fm-elementor-product-carousel.hide-icon-button .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse > a i,
.fm-elementor-product-carousel.hide-icon-button .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse > a .farmart-svg-icon,
.fm-elementor-product-carousel.hide-icon-button .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse > a i,
.fm-elementor-product-carousel.hide-icon-button .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse > a .farmart-svg-icon,
.fm-products-carousel-with-category.hide-icon-button .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > a i,
.fm-products-carousel-with-category.hide-icon-button .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > a .farmart-svg-icon,
.fm-products-carousel-with-category.hide-icon-button .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse > a i,
.fm-products-carousel-with-category.hide-icon-button .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse > a .farmart-svg-icon,
.fm-products-carousel-with-category.hide-icon-button .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse > a i,
.fm-products-carousel-with-category.hide-icon-button .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse > a .farmart-svg-icon,
.fm-product-with-category.hide-icon-button .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > a i,
.fm-product-with-category.hide-icon-button .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > a .farmart-svg-icon,
.fm-product-with-category.hide-icon-button .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse > a i,
.fm-product-with-category.hide-icon-button .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse > a .farmart-svg-icon,
.fm-product-with-category.hide-icon-button .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse > a i,
.fm-product-with-category.hide-icon-button .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse > a .farmart-svg-icon {
	display: none;
}

.fm-product-deals-day.hide-icon-button .wcboost-wishlist-button .wcboost-wishlist-button__icon,
.fm-products-brands.hide-icon-button .wcboost-wishlist-button .wcboost-wishlist-button__icon,
.fm-elementor-product-carousel.hide-icon-button .wcboost-wishlist-button .wcboost-wishlist-button__icon,
.fm-products-carousel-with-category.hide-icon-button .wcboost-wishlist-button .wcboost-wishlist-button__icon,
.fm-product-with-category.hide-icon-button .wcboost-wishlist-button .wcboost-wishlist-button__icon {
	display: none;
}

.fm-product-deals-day.hide-icon-button ul.products li.product .compare-button a:before,
.fm-products-brands.hide-icon-button ul.products li.product .compare-button a:before,
.fm-elementor-product-carousel.hide-icon-button ul.products li.product .compare-button a:before,
.fm-products-carousel-with-category.hide-icon-button ul.products li.product .compare-button a:before,
.fm-product-with-category.hide-icon-button ul.products li.product .compare-button a:before {
	display: none;
}

.fm-overflow-y {
	overflow-y: hidden;
}

.farmart-nav-outside .cat-header,
.farmart-nav-outside .heading {
	justify-content: flex-start;
}

.farmart-nav-outside span.slick-prev-arrow,
.farmart-nav-outside span.slick-next-arrow {
	top: -50px;
	left: auto;
	right: 0;
	transform: translate(0);
}

.farmart-nav-outside span.slick-prev-arrow {
	right: 32px;
}

@media (max-width: 1680px) and (min-width: 1340px) {
	.fm-header-recently-viewed {
		position: static;
	}
	.fm-header-recently-viewed .recently-viewed-inner {
		padding: 0;
	}
	.fm-header-recently-viewed:hover .recently-viewed-inner {
		top: calc(100% - 14px);
	}
}

@media (min-width: 1025px) {
	.fm-elementor-product-deals-carousel-3.navigation-dots .slick-arrow, .fm-elementor-product-deals-carousel-3.navigation-none .slick-arrow,
	.farmart-testimonial-banner.navigation-dots .slick-arrow,
	.farmart-testimonial-banner.navigation-none .slick-arrow,
	.farmart-testimonial.navigation-dots .slick-arrow,
	.farmart-testimonial.navigation-none .slick-arrow,
	.farmart-slides-wrapper.navigation-dots .slick-arrow,
	.farmart-slides-wrapper.navigation-none .slick-arrow {
		display: none !important;
	}
	.fm-elementor-product-deals-carousel-3.navigation-arrows .slick-dots, .fm-elementor-product-deals-carousel-3.navigation-none .slick-dots,
	.farmart-testimonial-banner.navigation-arrows .slick-dots,
	.farmart-testimonial-banner.navigation-none .slick-dots,
	.farmart-testimonial.navigation-arrows .slick-dots,
	.farmart-testimonial.navigation-none .slick-dots,
	.farmart-slides-wrapper.navigation-arrows .slick-dots,
	.farmart-slides-wrapper.navigation-none .slick-dots {
		display: none !important;
	}
}

@media (max-width: 1200px) {
	.farmart-testimonial .box-item--inner {
		box-shadow: none;
		border: 1px solid #eee;
	}
	.farmart-product-categories-list .product-cats--big {
		flex-basis: 33.33%;
	}
	.farmart-faqs {
		margin: 0 -15px;
	}
	.farmart-testimonial-2 .slick-dots {
		background-color: #fff;
		padding: 40px 0 30px;
		position: relative;
	}
	.fm-content-recently-viewed .slick-dots {
		bottom: -50px;
	}
	.fm-product-deals-day .slick-dots {
		bottom: 30px;
	}
	.farmart-tab-list .tab__nav .box-nav:nth-last-child(2) .box-content, .farmart-tab-list .tab__nav .box-nav:nth-last-child(3) .box-content {
		left: auto;
		right: -53px;
	}
	.farmart-tab-list .tab__nav .box-nav:nth-last-child(2) .box-content:before, .farmart-tab-list .tab__nav .box-nav:nth-last-child(2) .box-content:after, .farmart-tab-list .tab__nav .box-nav:nth-last-child(3) .box-content:before, .farmart-tab-list .tab__nav .box-nav:nth-last-child(3) .box-content:after {
		right: 0;
		left: auto;
		margin-right: 15px;
	}
	.farmart-testimonial-3 .row-flex {
		margin-left: 0;
		margin-right: 0;
	}
	.farmart-testimonial-3 .farmart-testimonial-3__list {
		margin-left: -7.5px;
		margin-right: -7.5px;
	}
	.farmart-testimonial-3 .box-item {
		padding-left: 7.5px;
		padding-right: 7.5px;
	}
	.farmart-testimonial-3 .box-item--inner {
		padding: 30px;
	}
	.farmart-testimonial-3 .box-item__image .farmart-icon {
		top: 30px;
		right: 40px;
	}
	.farmart-testimonial-3.farmart-nav-outside span.slick-prev-arrow,
	.farmart-testimonial-3.farmart-nav-outside span.slick-next-arrow {
		top: -75px;
	}
	.farmart-image-box__wrapper {
		justify-content: flex-start;
	}
	.farmart-product-categories-carousel .slick-slide {
		min-height: 150px;
	}
}

@media (max-width: 1024px) {
	.farmart-tab-list .tab__nav {
		overflow: auto;
		overflow-y: hidden;
		white-space: nowrap;
		position: static;
		padding-bottom: 20px;
	}
	.farmart-tab-list .box-nav {
		display: inline-block;
		margin-right: 30px;
		vertical-align: text-top;
	}
	.farmart-tab-list .box-nav.active {
		display: inline-block;
	}
	.fm-product-deals-day ul.products.slick-dotted {
		padding-bottom: 70px;
	}
	.fm-product-with-category .header-cat .header-link {
		display: inline-flex;
	}
}

@media (max-width: 1024px) and (min-width: 768px) {
	.farmart-testimonial.navigation-tablet-dots .box-arrow, .farmart-testimonial.navigation-tablet-none .box-arrow {
		display: none !important;
	}
	.farmart-testimonial-banner.navigation-tablet-dots .slick-arrow, .farmart-testimonial-banner.navigation-tablet-none .slick-arrow,
	.farmart-testimonial.navigation-tablet-dots .slick-arrow,
	.farmart-testimonial.navigation-tablet-none .slick-arrow,
	.farmart-slides-wrapper.navigation-tablet-dots .slick-arrow,
	.farmart-slides-wrapper.navigation-tablet-none .slick-arrow {
		display: none !important;
	}
	.farmart-testimonial-banner.navigation-tablet-arrows .slick-dots, .farmart-testimonial-banner.navigation-tablet-none .slick-dots,
	.farmart-testimonial.navigation-tablet-arrows .slick-dots,
	.farmart-testimonial.navigation-tablet-none .slick-dots,
	.farmart-slides-wrapper.navigation-tablet-arrows .slick-dots,
	.farmart-slides-wrapper.navigation-tablet-none .slick-dots {
		display: none !important;
	}
	.fm-product-tab-carousel .tabs-banner {
		flex-basis: 33.33%;
	}
	.fm-product-tab-carousel--vertical.has-banner .tabs-content {
		max-width: 66.66%;
	}
}

@media screen and (max-width: 991px) {
	.farmart-list-links.fm-link-style-horizontal {
		flex-direction: column;
	}
	.farmart-faqs .tabs-nav {
		overflow: auto;
		overflow-y: hidden;
		white-space: nowrap;
		display: block;
		position: static;
		padding-bottom: 20px;
	}
	.farmart-faqs .tabs-nav li {
		display: inline-block;
		margin-right: 30px;
	}
	.farmart-faqs .button-wrapper {
		margin-top: 0;
	}
	.farmart-faqs .col-left {
		padding-right: 10px;
	}
	.farmart-faqs .col-right {
		padding-left: 10px;
	}
	.farmart-faqs .tabs-content {
		margin-top: 35px;
	}
	.fm-product-deals-day .products-content ul.products.slick-dotted,
	.fm-products-carousel-with-category .products-content ul.products.slick-dotted {
		padding: 0 0 35px 0;
	}
	.fm-product-deals-day .farmart-countdown,
	.fm-products-carousel-with-category .farmart-countdown {
		padding-left: 12px;
		padding-right: 12px;
	}
	.fm-product-deals-day .products-content:after {
		display: none;
	}
	.fm-product-deals-day .products-content {
		border: none;
	}
	.fm-product-with-category ul.products {
		border-top-color: #c9c9c9;
	}
	.fm-product-with-category ul.products li.product {
		border-right: none;
		border-bottom: none;
		border-color: #c9c9c9;
	}
	.fm-product-with-category ul.products li.product .product-inner {
		border-width: 0 1px 1px 0;
	}
	.fm-product-deals-grid ul.products li.product .product-inner {
		padding-bottom: 0;
		margin-bottom: 20px;
	}
	.fm-product-deals-grid .products-content .tabs-nav {
		display: flex;
		white-space: nowrap;
		overflow: auto;
	}
	.woocommerce-products-header .fm-elementor-product-deals-carousel-3 ul.products li.product .product-bottom-box,
	body:not(.catalog-view-list) .fm-elementor-product-deals-carousel-3 ul.products li.product .product-bottom-box {
		padding: 0;
	}
	.fm-elementor-product-deals-carousel-3 ul.products li.product .farmart-countdown {
		display: inline-block;
	}
	.fm-products-carousel-with-category .slick-list {
		padding-right: 2px;
		padding-left: 0;
	}
	.fm-products-carousel-with-category ul.products li.product:first-child.slick-current .product-inner, .fm-products-carousel-with-category ul.products li.product.slick-current .product-inner {
		border-left: 1px solid #c9c9c9;
	}
	.fm-products-carousel-with-category ul.products li.product:last-child.slick-current .product-inner {
		border-left: none;
	}
	.fm-products-carousel-with-category .products-box {
		border-left: 1px solid #c9c9c9;
	}
	.fm-products-carousel-with-category.farmart-border-type-2 .header-cat {
		border: none;
	}
	.fm-products-carousel-with-category.farmart-border-type-2 .slick-list {
		margin-left: 0;
		margin-right: 0;
	}
	.fm-elementor-product-deals-carousel .slick-track,
	.fm-products-carousel-with-category .slick-track,
	.fm-elementor-product-carousel .slick-track {
		display: flex;
	}
	.fm-elementor-product-deals-carousel .slick-track:before, .fm-elementor-product-deals-carousel .slick-track:after,
	.fm-products-carousel-with-category .slick-track:before,
	.fm-products-carousel-with-category .slick-track:after,
	.fm-elementor-product-carousel .slick-track:before,
	.fm-elementor-product-carousel .slick-track:after {
		display: none;
	}
	.fm-elementor-product-deals-carousel .slick-track .slick-slide,
	.fm-products-carousel-with-category .slick-track .slick-slide,
	.fm-elementor-product-carousel .slick-track .slick-slide {
		height: inherit;
	}
	.fm-elementor-product-deals-carousel .slick-track .slick-slide .product-inner,
	.fm-products-carousel-with-category .slick-track .slick-slide .product-inner,
	.fm-elementor-product-carousel .slick-track .slick-slide .product-inner {
		height: 100%;
	}
	.farmart-border-type-2 ul.products {
		border: none;
	}
	.farmart-border-type-2 ul.products li.product .product-inner {
		border-width: 1px 1px 1px 0;
		border-color: #c9c9c9;
	}
	.farmart-border-type-2 .products-box {
		border: none;
	}
	.farmart-testimonial-2 .box-item--inner {
		flex-direction: column;
	}
	.farmart-testimonial-2 .box-item__image {
		margin: 0 0 30px 0;
	}
	.fm-elementor-product-deals-carousel .slick-list {
		padding-bottom: 90px;
	}
	.fm-product-tab-carousel .tabs-panel ul.products,
	.fm-product-tab-carousel-2 .tabs-panel ul.products,
	.fm-product-tab-carousel-3 .tabs-panel ul.products {
		border-left: 0;
	}
	.fm-product-tab-carousel-3 .slick-slide > div:not(:last-child) li.product:after {
		background-color: #c9c9c9;
	}
	.fm-product-tab-carousel-3 ul.products li.product .product-inner {
		border-width: 1px 1px 0 0;
		border-color: transparent;
	}
	.fm-product-tab-carousel-3 ul.products li.product .product-inner:hover {
		border-color: #c9c9c9;
	}
	.fm-products-carousel-2 ul.products li.product.slick-current .product-inner {
		border-left: 1px solid #c9c9c9;
	}
	.fm-show-qty .fm-elementor-product-deals-carousel .slick-list {
		padding-bottom: 180px;
	}
	.farmart-testimonial-banner__list {
		width: 65%;
	}
	.farmart-tab-list .tab__nav {
		white-space: normal;
		flex-direction: column;
		width: auto;
		height: 500px;
	}
	.farmart-tab-list .tab__nav:before {
		width: 4px;
		height: 100%;
		top: 0;
		left: 8px;
	}
	.farmart-tab-list .tab__nav .box-nav:first-child .box-content, .farmart-tab-list .tab__nav .box-nav:last-child .box-content, .farmart-tab-list .tab__nav .box-nav:nth-last-child(2) .box-content, .farmart-tab-list .tab__nav .box-nav:nth-last-child(3) .box-content, .farmart-tab-list .tab__nav .box-nav:nth-last-child(4) .box-content, .farmart-tab-list .tab__nav .box-nav:nth-last-child(5) .box-content, .farmart-tab-list .tab__nav .box-nav:nth-last-child(6) .box-content {
		left: auto;
		right: 15px;
		bottom: auto;
	}
	.farmart-tab-list .tab__nav .box-nav:first-child .box-content:before, .farmart-tab-list .tab__nav .box-nav:first-child .box-content:after, .farmart-tab-list .tab__nav .box-nav:last-child .box-content:before, .farmart-tab-list .tab__nav .box-nav:last-child .box-content:after, .farmart-tab-list .tab__nav .box-nav:nth-last-child(2) .box-content:before, .farmart-tab-list .tab__nav .box-nav:nth-last-child(2) .box-content:after, .farmart-tab-list .tab__nav .box-nav:nth-last-child(3) .box-content:before, .farmart-tab-list .tab__nav .box-nav:nth-last-child(3) .box-content:after, .farmart-tab-list .tab__nav .box-nav:nth-last-child(4) .box-content:before, .farmart-tab-list .tab__nav .box-nav:nth-last-child(4) .box-content:after, .farmart-tab-list .tab__nav .box-nav:nth-last-child(5) .box-content:before, .farmart-tab-list .tab__nav .box-nav:nth-last-child(5) .box-content:after, .farmart-tab-list .tab__nav .box-nav:nth-last-child(6) .box-content:before, .farmart-tab-list .tab__nav .box-nav:nth-last-child(6) .box-content:after {
		right: auto;
		left: -45px;
		bottom: auto;
		margin-bottom: 0;
	}
	.farmart-tab-list .tab__nav .box-nav:last-child .tab-pointer {
		right: auto;
	}
	.farmart-tab-list .tab__nav .box-nav .box-content {
		left: 170px;
		right: auto;
		bottom: auto;
	}
	.farmart-tab-list .tab__nav .box-nav .box-content:before, .farmart-tab-list .tab__nav .box-nav .box-content:after {
		right: auto;
		left: -45px;
		bottom: auto;
		margin-bottom: 0;
	}
	.farmart-tab-list .box-nav {
		width: 100%;
		margin-right: 0;
	}
	.farmart-tab-list .box-nav .circle {
		width: 20px;
		height: 20px;
		border-width: 3px;
	}
	.farmart-tab-list .box-nav .nav-title {
		font-size: 14px;
		margin: 0;
	}
	.farmart-tab-list .box-content {
		padding: 20px;
		width: 60%;
		flex-direction: column;
		left: 100px;
		top: -10px;
	}
	.farmart-tab-list .box-content .box-img {
		margin: 0 0 30px 0;
		text-align: center;
	}
	.farmart-tab-list .box-content:before, .farmart-tab-list .box-content:after {
		border-bottom-width: 20px;
		border-left-width: 10px;
		border-right-width: 10px;
	}
	.farmart-tab-list .box-content.active:before, .farmart-tab-list .box-content.active:after {
		top: 10px;
		margin-top: 0;
		left: -35px;
		transform: rotate(90deg);
	}
	.farmart-tab-list .box-content.active:after {
		margin-left: 17px;
	}
	.farmart-tab-list .tab-pointer {
		top: 0;
		left: auto;
		display: flex;
		text-align: left;
		width: auto;
	}
	.farmart-tab-list .tab-pointer .nav-title {
		width: 90px;
	}
	.farmart-tab-list .tab-pointer .circle {
		margin: 0 10px 0 0;
	}
	.farmart-tab-list br {
		display: none;
	}
	.farmart-testimonial-3 .desc {
		font-size: 18px;
		line-height: 28px;
	}
}

@media screen and (max-width: 782px) {
	.admin-bar .fm-search-form--mobile .top-content {
		padding-top: 61px;
	}
	.admin-bar .farmart-menu-mobile .top-content {
		padding-top: 69px;
	}
	.admin-bar .fm-cart--click .top-content {
		padding-top: 74px;
	}
	.admin-bar .fm-cart--click .box-cart-wrapper .box-cart-content {
		height: calc( 100vh - 146px);
	}
}

@media (max-width: 767px) {
	.farmart-testimonial.navigation-mobile-dots .box-arrow, .farmart-testimonial.navigation-mobile-none .box-arrow {
		display: none !important;
	}
	.fm-elementor-product-deals-carousel-3.navigation-mobile-dots .slick-arrow, .fm-elementor-product-deals-carousel-3.navigation-mobile-none .slick-arrow,
	.farmart-testimonial-banner.navigation-mobile-dots .slick-arrow,
	.farmart-testimonial-banner.navigation-mobile-none .slick-arrow,
	.farmart-testimonial.navigation-mobile-dots .slick-arrow,
	.farmart-testimonial.navigation-mobile-none .slick-arrow,
	.farmart-slides-wrapper.navigation-mobile-dots .slick-arrow,
	.farmart-slides-wrapper.navigation-mobile-none .slick-arrow {
		display: none !important;
	}
	.fm-elementor-product-deals-carousel-3.navigation-mobile-arrows .slick-dots, .fm-elementor-product-deals-carousel-3.navigation-mobile-none .slick-dots,
	.farmart-testimonial-banner.navigation-mobile-arrows .slick-dots,
	.farmart-testimonial-banner.navigation-mobile-none .slick-dots,
	.farmart-testimonial.navigation-mobile-arrows .slick-dots,
	.farmart-testimonial.navigation-mobile-none .slick-dots,
	.farmart-slides-wrapper.navigation-mobile-arrows .slick-dots,
	.farmart-slides-wrapper.navigation-mobile-none .slick-dots {
		display: none !important;
	}
	.fm-elementor-product-deals-carousel-2 .products-content .woocommerce {
		display: block;
	}
	.fm-elementor-product-deals-carousel-2 .products-content .woocommerce > * {
		width: 100%;
	}
	.fm-elementor-product-deals-carousel-2 ul.products li.product .product-inner {
		flex-direction: column;
		border-width: 1px 0 0 1px;
	}
	.fm-elementor-product-deals-carousel-2 ul.products li.product .product-inner .product-details,
	.fm-elementor-product-deals-carousel-2 ul.products li.product .product-inner .product-thumbnail {
		width: 100%;
	}
	.fm-elementor-product-deals-carousel-2 ul.products li.product .product-bottom-box {
		display: block;
	}
	.fm-elementor-product-deals-carousel-2 ul.products li.product .quantity {
		margin-bottom: 0;
		margin-right: 10px;
	}
	.fm-elementor-product-deals-carousel-2 ul.products li.product .quantity .qty-box {
		width: 105px;
	}
	.fm-elementor-product-deals-carousel-2 ul.products li.product .product-button {
		display: flex;
		flex-wrap: inherit;
		margin-top: 10px;
	}
	.fm-elementor-product-deals-carousel-2 ul.products li.product .product-button .quantity_button {
		line-height: 40px;
		padding: 0 8px;
	}
	.fm-elementor-product-deals-carousel-2 ul.products li.product:hover {
		border: none;
	}
	.fm-elementor-product-deals-carousel-2 ul.products .slick-current > div:last-child .product-inner {
		border-bottom: 1px solid #c9c9c9;
	}
	.fm-elementor-product-deals-carousel-2 .slick-slide {
		border: none;
	}
	body:not(.catalog-view-list) .fm-elementor-product-deals-carousel-2 ul.products li.product .product-bottom-box {
		display: block;
	}
	.fm-elementor-product-deals-carousel-3 ul.products li.product .price {
		font-size: 15px;
	}
	.farmart-heading .title {
		font-size: 24px;
	}
	.fm-promotion .content {
		flex-direction: column;
		align-items: flex-start;
	}
	.fm-promotion .left-content {
		margin-bottom: 10px;
	}
	.fm-promotion .right-content {
		padding: 0;
	}
	.fm-promotion .right-content:before {
		display: none;
	}
	.farmart-team-carousel .row {
		margin: 0;
	}
	.fm-product-deals-grid .products-content ul.products {
		overflow: hidden !important;
	}
	.fm-product-deals-day .cat-header .header-content {
		justify-content: space-between;
		width: 100%;
	}
	.fm-product-deals-day ul.products li.product {
		position: relative;
	}
	.fm-product-deals-day ul.products li.product:after {
		content: '';
		position: absolute;
		top: 0;
		right: 1px;
		width: 1px;
		height: 100%;
		background-color: #eee;
	}
	.fm-product-deals-day ul.products li.product.slick-current:after {
		display: none;
	}
	.fm-content-recently-viewed .slick-dots {
		bottom: -40px;
	}
	.fm-product-categories-carousel-2 .cat-header,
	.farmart-product-categories-list .cat-header,
	.farmart-product-mutil-categories-carousel .cat-header,
	.farmart-product-categories-carousel .cat-header {
		align-items: flex-start;
		flex-wrap: wrap;
	}
	.fm-product-categories-carousel-2 .cat-header h3,
	.farmart-product-categories-list .cat-header h3,
	.farmart-product-mutil-categories-carousel .cat-header h3,
	.farmart-product-categories-carousel .cat-header h3 {
		margin-bottom: 10px;
	}
	.fm-products-carousel ul.products {
		display: flex;
	}
	.farmart-product-categories-list .product-cats--big .cat-item a {
		flex-direction: initial;
		align-items: center;
		flex-wrap: wrap;
	}
	.farmart-product-categories-list .product-cats--big .cat-thumb {
		margin: 0 30px 0 0;
	}
	.farmart-product-categories-list .product-cats--lists .cat-item .cat-text {
		margin: 0;
	}
	.farmart-product-categories-list .product-cats .cat-item:hover .cat-name:before {
		display: none;
	}
	.farmart-brands-carousel .brand-item {
		padding: 0 5px;
	}
	.farmart-brands-carousel .slick-dots {
		bottom: 30px;
	}
	.farmart-testimonial-2 .slick-dots {
		padding: 0 0 20px 0;
	}
	.farmart-testimonial-banner .box-item--inner {
		flex-direction: column;
	}
	.farmart-testimonial-banner .box-item__image {
		margin: 0 0 20px 0;
	}
	.farmart-testimonial-banner__list {
		width: 100%;
	}
	.farmart-product-categories-grid .cat-item__inner {
		flex-direction: column;
	}
	.farmart-product-categories-grid .cat-item__inner .cat-text {
		order: 2;
	}
	.farmart-product-categories-grid .cat-item__inner .cat-text .farmart-icon {
		display: none;
	}
	.farmart-product-categories-grid .cat-item__inner .cat-thumb {
		order: 1;
		margin-bottom: 15px;
	}
	.farmart-product-categories-grid .categories-box {
		padding-left: 7px;
		padding-right: 7px;
	}
	.farmart-product-categories-grid .cat-item {
		padding-left: 7px;
		padding-right: 7px;
		margin-bottom: 15px;
	}
	.farmart-product-categories-grid .cat-item.cat-item--link {
		width: 100%;
		max-width: 100%;
	}
	.farmart-product-categories-grid .cat-item.cat-item--link .link-all--text {
		padding: 0;
	}
	.fm-product-with-category .content-wrapper {
		flex-direction: column;
	}
	.fm-product-with-category .sidebar-box {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.fm-vertical-tab {
		display: none !important;
	}
	.fm-product-tab-carousel-3 .tabs-header .title {
		margin-bottom: 20px;
	}
	.farmart-testimonial .box-item--inner {
		height: 100%;
	}
	.farmart-testimonial .box-dots {
		top: auto;
		bottom: 0;
		width: 100%;
	}
	.farmart-testimonial .box-dots .slick-dots {
		text-align: center;
	}
	.farmart-testimonial-banner,
	.farmart-testimonial-2 {
		padding-bottom: 0;
	}
	.farmart-testimonial-3 .box-item__image .farmart-svg-icon {
		display: none;
	}
	.fm-content-recently-viewed .product-list li.product {
		padding-left: 10px;
		padding-right: 10px;
	}
	.farmart-image-carousel .heading {
		flex-direction: column;
		align-items: flex-start;
	}
	.farmart-image-carousel .slick-list {
		margin-left: -7.5px;
		margin-right: -7.5px;
	}
	.farmart-image-carousel .slick-slide {
		margin-left: 7.5px;
		margin-right: 7.5px;
	}
	.fm-product-deals-day .cat-header .cat-title {
		align-items: flex-start;
	}
	.fm-product-deals-day ul.products li.product.slick-current .product-inner {
		border-left: 1px solid #c9c9c9;
	}
	.farmart-hover-box-shadow .slick-list {
		padding-bottom: 35px;
	}
	.fm-products-carousel-with-category ul.products li.product .product-inner:before {
		display: none;
	}
	.farmart-image-box__wrapper {
		flex-wrap: wrap;
	}
	.farmart-image-box__items {
		margin-bottom: 15px;
	}
	.farmart-team-carousel .box-member--inner {
		padding: 0;
	}
	.farmart-product-categories-carousel .slick-slide {
		min-height: auto;
		height: inherit;
	}
}

@media (max-width: 400px) {
	.farmart-tab-list .box-nav .nav-title {
		font-size: 12px;
	}
	.farmart-tab-list .box-nav .box-content:before, .farmart-tab-list .box-nav .box-content:after {
		display: none;
	}
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
.mc4wp-form .mc4wp-form-fields {
	display: flex;
}

.mc4wp-form input[type="email"],
.mc4wp-form input[type="text"] {
	flex-grow: 1;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.mc4wp-form input[type="submit"] {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	font-size: 14px;
	color: var(--fm-background-text-color-secondary);
	font-weight: 700;
	line-height: 42px;
	border: 0;
	border-radius: 3px;
	padding: 0 36px;
	background-color: var(--fm-background-color-secondary);
	transition: 0.5s;
	outline: 0;
}

button.alt,
input[type="button"].alt,
input[type="reset"].alt,
input[type="submit"].alt {
	color: #222222;
	border: 1px solid #222222;
	background: transparent;
}

button.alt:hover,
input[type="button"].alt:hover,
input[type="reset"].alt:hover,
input[type="submit"].alt:hover {
	color: #fff;
	background: #222222;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #dddddd;
	border-radius: 3px;
	box-sizing: border-box;
	padding: 12px 15px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
	outline: none;
}

select {
	border: 1px solid #dddddd;
	padding: 10px;
}

textarea {
	width: 100%;
	color: #666;
	border: 1px solid #dddddd;
	border-radius: 3px;
	outline: none;
	box-sizing: border-box;
	padding: 15px;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: var(--fm-color-primary);
	text-decoration: none;
	outline: none;
	transition: .5s;
}

a:focus, a:hover, a:active {
	outline: 0;
	text-decoration: none;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 9999;
	background-color: #fff;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:before {
	display: none;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	top: 0;
	left: 100%;
}

.main-navigation ul ul li:hover > a {
	color: #000;
}

.main-navigation ul ul li.dropdown > a {
	padding: 10px 20px 10px 0;
}

.main-navigation ul ul li.dropdown:hover > a:before {
	display: none;
}

.main-navigation ul ul li.dropdown:hover > a:after {
	transform: rotate(180deg);
}

.main-navigation ul ul li.menu-item-has-children .toggle-menu-children, .main-navigation ul ul li.dropdown .toggle-menu-children {
	transform: rotate(-90deg);
	font-weight: 400;
	position: absolute;
	top: 7px;
	right: 7px;
	line-height: 1;
	transition: ease .5s;
}

.main-navigation ul ul li.menu-item-has-children .toggle-menu-children .farmart-svg-icon, .main-navigation ul ul li.dropdown .toggle-menu-children .farmart-svg-icon {
	font-size: 9px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li {
	float: left;
	position: relative;
}

.main-navigation li .item-badge {
	position: absolute;
	top: -5px;
	right: 0;
	font-size: 12px;
	font-weight: 600;
	border-radius: 3px;
	padding: 3px 5px;
	background-color: var(--fm-background-color-primary);
	color: var(--fm-background-text-color-primary);
	min-width: 36px;
	line-height: 1;
}

.main-navigation li a {
	padding: 13px 15px;
	color: #888;
	position: relative;
	cursor: pointer;
	display: block;
	text-decoration: none;
	white-space: nowrap;
}

.main-navigation li a .farmart-svg-icon {
	font-size: 18px;
	margin-right: 5px;
}

.main-navigation li:hover > a,
.main-navigation li:hover > .toggle-menu-children {
	color: var(--fm-color-primary);
	transition: .5s;
}

.main-navigation li.weight-bold > a {
	font-weight: 700 !important;
}

.main-navigation li.weight-medium > a {
	font-weight: 500 !important;
}

.main-navigation li.weight-regular > a {
	font-weight: 400 !important;
}

.main-navigation li.is-mega-menu.mega-fullwidth {
	position: static;
}

.main-navigation li.is-mega-menu.mega-fullwidth > .dropdown-submenu {
	width: 100%;
	left: 0;
}

.main-navigation li.is-mega-menu .menu-item-mega {
	padding-left: 30px;
	padding-right: 30px;
	border-right: 1px solid #eeeeee;
}

.main-navigation li.is-mega-menu .menu-item-mega:last-child {
	border-right: none;
}

.main-navigation li.is-mega-menu .dropdown-submenu {
	padding: 40px 0;
	z-index: 999;
}

.main-navigation li.is-mega-menu .dropdown-submenu a {
	font-weight: 700;
	color: #222222;
	padding: 0;
}

.main-navigation li.is-mega-menu .dropdown-submenu li {
	margin: 0;
}

.main-navigation li.is-mega-menu .dropdown-submenu .sub-menu li a {
	font-weight: normal;
}

.main-navigation li.is-mega-menu .dropdown-submenu .sub-menu li a:hover {
	color: var(--fm-background-color-primary);
}

.main-navigation li.is-mega-menu .dropdown-submenu ul {
	position: relative;
	left: 0;
	top: 0;
	box-shadow: none;
	background-color: transparent;
	opacity: 1;
	visibility: visible;
	float: none;
	transform: inherit;
	border: none;
}

.main-navigation li.is-mega-menu .dropdown-submenu ul li {
	padding: 0;
	display: block;
	width: 100%;
}

.main-navigation li.is-mega-menu .dropdown-submenu ul li a {
	padding: 0;
	line-height: 1.4;
	display: inline-block;
	color: #222222;
}

.main-navigation li.is-mega-menu.align-right .dropdown-submenu {
	left: auto;
	right: 0;
}

.main-navigation li.is-mega-menu.align-center .dropdown-submenu {
	margin: auto;
}

.main-navigation > li > a {
	padding: 11px 21px;
	border-style: none;
	color: #000;
	font-weight: 700;
}

.main-navigation > li.menu-item-has-children > ul {
	top: 110%;
}

.main-navigation > li.menu-item-has-children > a {
	padding-right: 36px;
}

.main-navigation > li.menu-item-has-children > a:before {
	content: '';
	position: absolute;
	width: 12px;
	height: 12px;
	border: 1px solid transparent;
	border-bottom-color: #ccc;
	border-left-color: #ccc;
	top: 120%;
	margin: auto;
	background-color: #fff;
	z-index: 100;
	transform: translate(-50%, -5px) rotate(135deg);
	left: calc(50% - 7px);
	opacity: 0;
	z-index: 1000;
	transition: top .2s;
}

.main-navigation > li.menu-item-has-children > a .toggle-menu-children {
	position: absolute;
	right: 13px;
	top: 50%;
	transform: translateY(-50%);
	font-weight: 700;
}

.main-navigation > li.menu-item-has-children > a .toggle-menu-children .farmart-svg-icon {
	font-size: 12px;
}

.main-navigation li.menu-item-has-children:hover > ul.dropdown-submenu,
.main-navigation li.menu-item-has-children:hover > ul.sub-menu {
	opacity: 1;
	visibility: visible;
	transform: scaleX(1);
}

.main-navigation li.menu-item-has-children:hover > ul {
	top: 100%;
	opacity: 1;
}

.main-navigation li.menu-item-has-children:hover > ul ul {
	opacity: 1;
}

.main-navigation li.menu-item-has-children:hover > a:before {
	top: 100%;
	opacity: 1;
}

.main-navigation li.menu-item-has-children ul li.menu-item-has-children a {
	justify-content: space-between;
}

.main-navigation li.menu-item-has-children ul li.menu-item-has-children:hover ul {
	top: 0;
	left: 100%;
}

.main-navigation li.menu-item-has-children ul li.dropdown ul {
	left: calc( 100% + 10px);
	transition: left ease .3s, opacity ease .4s;
}

.main-navigation li.current-menu-item > a,
.main-navigation li.current-menu-item .toggle-menu-children {
	color: var(--fm-color-primary);
}

.main-navigation ul.dropdown-submenu,
.main-navigation ul.sub-menu {
	position: absolute;
	top: 120%;
	left: 0;
	transition: top ease .3s;
	opacity: 0;
	visibility: hidden;
	z-index: 99;
	padding: 10px 0;
	border: 1px solid #cccccc;
	background-color: #fff;
	box-shadow: none;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	transform: scaleX(0);
	min-width: 200px;
}

.main-navigation ul.dropdown-submenu li,
.main-navigation ul.sub-menu li {
	float: none;
}

.main-navigation ul.dropdown-submenu li a,
.main-navigation ul.sub-menu li a {
	font-weight: 400;
	padding: 10px 20px;
	line-height: 1;
}

.main-navigation ul.dropdown-submenu li .item-badge,
.main-navigation ul.sub-menu li .item-badge {
	right: -40px;
	top: 50%;
	transform: translateY(-50%);
}

.main-navigation ul.dropdown-submenu ul,
.main-navigation ul.sub-menu ul {
	opacity: 0;
	top: 0;
	left: calc(100% + 20px);
}

.main-navigation li > a {
	display: flex;
	text-decoration: none;
	white-space: nowrap;
}

.fm-menu-mobile {
	line-height: 1;
}

.fm-menu-mobile.menu-active {
	background-color: var(--fm-background-color-primary);
}

.fm-menu-mobile .top-content {
	color: var(--fm-background-text-color-primary);
	background-color: var(--fm-background-color-primary);
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 23px 20px 23px;
}

.fm-menu-mobile .top-content a {
	color: var(--fm-background-text-color-primary);
}

.fm-menu-mobile .top-content .farmart-svg-icon {
	color: var(--fm-background-text-color-primary);
}

.fm-menu-mobile .top-content .go-back {
	font-size: 20px;
	cursor: pointer;
}

.fm-menu-mobile .top-content .author {
	font-weight: 700;
}

.fm-menu-mobile .top-content .author .farmart-svg-icon {
	margin-right: 5px;
}

.fm-menu-mobile .menu-icon {
	display: inline-flex;
	font-size: 24px;
	cursor: pointer;
}

.fm-menu-mobile .menu-mobile-wrapper {
	width: 82%;
	position: fixed;
	top: 0;
	left: -82%;
	background-color: #fff;
	bottom: 0;
	overflow: hidden;
	z-index: 9999;
	transition: transform .25s ease;
}

.fm-menu-mobile .menu-mobile-wrapper.open {
	transform: translate3d(100%, 0, 0);
}

.fm-menu-mobile .menu-mobile-wrapper.open ~ .fm-off-canvas-layer {
	display: block;
	z-index: 999;
}

.fm-menu-mobile .menu-mobile-wrapper:after {
	content: '';
	width: 100%;
	height: 20px;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 99;
	background-color: #fff;
}

.fm-menu-mobile .primary-menu-mobile {
	height: 100%;
	overflow-y: auto;
}

.fm-menu-mobile nav {
	padding: 25px 20px 28px;
}

.fm-menu-mobile nav > ul > li > a {
	text-transform: uppercase;
	cursor: pointer;
}

.fm-menu-mobile ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.fm-menu-mobile ul ul {
	display: none;
	padding: 10px 0 0 10px;
}

.fm-menu-mobile ul ul ul {
	padding-left: 10px;
	padding-bottom: 0;
}

.fm-menu-mobile li.menu-item-has-children {
	position: relative;
	padding-right: 23px;
}

.fm-menu-mobile li.menu-item-has-children li a {
	color: #888888;
}

.fm-menu-mobile li.menu-item-has-children .toggle-menu-children {
	position: absolute;
	right: 0;
	top: 12px;
	display: block;
	width: 23px;
	height: 23px;
	line-height: 23px;
	text-align: right;
	font-size: 10px;
	cursor: pointer;
}

.fm-menu-mobile li.menu-item-has-children .toggle-menu-children .farmart-svg-icon {
	display: inline-block;
	line-height: 1;
}

.fm-menu-mobile li.menu-item-has-children.active > a > .toggle-menu-children {
	transform: translate(50%, 0) rotate(-180deg);
}

.fm-menu-mobile li.menu-item-has-children.active > ul {
	display: block;
}

.fm-menu-mobile li li {
	padding: 10px 0;
}

.fm-menu-mobile li li.menu-item-has-children > .toggle-menu-children {
	top: 6px;
}

.fm-menu-mobile li li.current_page_item a {
	color: var(--fm-color-primary);
}

.fm-menu-mobile ul.menu > li:not(.fm-menu-item__magic-line) {
	border-bottom: 1px solid #eee;
	padding: 20px 0;
}

.fm-menu-mobile ul.menu > li:not(.fm-menu-item__magic-line) > a {
	color: #000;
	font-weight: 700;
}

.fm-menu-mobile ul.menu > li:not(.fm-menu-item__magic-line).menu-item-has-children > a > .toggle-menu-children {
	top: 12px;
}

.fm-menu-mobile ul.menu > li:not(.fm-menu-item__magic-line).active > a {
	color: var(--fm-color-primary);
}

.fm-menu-mobile ul.menu > li:not(.fm-menu-item__magic-line).last-child, .fm-menu-mobile ul.menu > li:not(.fm-menu-item__magic-line):last-child {
	border-bottom: 0;
}

.fm-menu-mobile .bottom-content {
	background-color: #f5f5f5;
	padding: 40px 20px;
}

.fm-menu-mobile .bottom-content .bottom-content--item {
	display: flex;
	margin-bottom: 12px;
	color: #666666;
}

.fm-menu-mobile .bottom-content .bottom-content--item a {
	color: #666666;
}

.fm-menu-mobile .bottom-content .bottom-content--item .farmart-svg-icon {
	color: #222222;
	transform: translateY(1px);
	padding-right: 15px;
}

.farmart-menu-department {
	cursor: pointer;
	transition: .5s;
	padding: 13px 24px 13px 21px;
	margin: 0;
	border-radius: 5px;
	background-color: var(--fm-background-color-primary);
	display: flex;
	align-items: center;
	position: relative;
	color: var(--fm-background-text-color-primary);
	line-height: 1.5;
}

.farmart-menu-department .menu-icon {
	display: flex;
	align-items: center;
	flex-direction: row;
}

.farmart-menu-department .menu-icon .farmart-icon-menu {
	font-size: 24px;
}

.farmart-menu-department .farmart-svg-icon {
	font-size: 9px;
	margin-left: 6px;
}

.farmart-menu-department .farmart-title {
	display: block;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 700;
	margin: 2px 0 0 18px;
	white-space: nowrap;
}

.farmart-menu-department .farmart-dropdown-arrow {
	font-size: 9px;
	color: #777777;
	transition: .3s;
}

.farmart-menu-department.menu-show .department-menu {
	top: 100%;
	opacity: 1;
	pointer-events: initial;
}

.farmart-menu-department.menu-show .farmart-dropdown-arrow {
	transform: rotate(180deg);
}

.farmart-menu-department .header-department {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #fff;
	padding: 0 20px;
}

.farmart-menu-department .header-department .close-btn .farmart-svg-icon {
	font-size: 20px;
}

.farmart-menu-department .department-menu {
	position: absolute;
	top: 120%;
	left: 0;
	z-index: 999;
	width: 270px;
	border-top: 15px solid transparent;
	opacity: 0;
	transition: .3s;
	pointer-events: none;
}

.farmart-menu-department .department-menu ul.dropdown-submenu {
	border-color: #eee;
}

.farmart-menu-department .department-menu .farmart-department-menu--dropdown {
	background-color: #fff;
}

.farmart-menu-department .department-menu li > a {
	color: #222222;
	font-weight: 600;
	padding: 9px 0;
	transition: ease .3s;
}

.farmart-menu-department .department-menu li > a.has-icon i {
	margin-right: 5px;
}

.farmart-menu-department .department-menu li.dropdown > a:before, .farmart-menu-department .department-menu li.menu-item-has-children > a:before {
	display: none;
}

.farmart-menu-department .department-menu li.dropdown a .toggle-menu-children, .farmart-menu-department .department-menu li.menu-item-has-children a .toggle-menu-children {
	transform: translateY(50%) rotate(0deg);
	position: absolute;
	top: 3px;
	right: 0;
	transition: ease .5s;
	line-height: 1;
}

.farmart-menu-department .department-menu li.dropdown a .toggle-menu-children .farmart-svg-icon, .farmart-menu-department .department-menu li.menu-item-has-children a .toggle-menu-children .farmart-svg-icon {
	font-size: 9px;
	color: #888888;
}

.farmart-menu-department .department-menu li.dropdown a:hover .toggle-menu-children, .farmart-menu-department .department-menu li.menu-item-has-children a:hover .toggle-menu-children {
	transform: translateY(50%) rotate(180deg);
}

.farmart-menu-department .department-menu ul {
	padding: 15px 0;
}

.farmart-menu-department .department-menu ul ul.sub-menu, .farmart-menu-department .department-menu ul ul.dropdown-submenu {
	top: 0;
	left: calc(100% + 10px);
	opacity: .7;
	transform: scale(0);
	transition: left ease 0.3s, opacity cubic-bezier(0.65, 0.8, 0.44, 0.99) 0.6s;
}

.farmart-menu-department .department-menu ul ul li.dropdown > a:after, .farmart-menu-department .department-menu ul ul li.menu-item-has-children > a:after {
	transform: translateY(0) rotate(0deg);
}

.farmart-menu-department .department-menu ul ul li.dropdown:hover > a:after, .farmart-menu-department .department-menu ul ul li.menu-item-has-children:hover > a:after {
	transform: rotate(180deg);
}

.farmart-menu-department .department-menu ul ul li:hover > a {
	color: var(--fm-color-primary);
}

.farmart-menu-department .department-menu ul li {
	padding: 0 28px;
	transition: 0.5s;
}

.farmart-menu-department .department-menu ul li.is-mega-menu {
	position: static;
}

.farmart-menu-department .department-menu ul li.is-mega-menu.mega-fullwidth > .dropdown-submenu {
	left: calc( 100% - 1px);
	top: 0;
}

.farmart-menu-department .department-menu ul li:hover > ul.dropdown-submenu {
	left: calc( 100% - 1px);
	top: 0;
	transform: scale(1);
	opacity: 1;
}

.farmart-menu-department .department-menu ul li:hover > ul.dropdown-submenu li {
	background-color: transparent;
}

.farmart-menu-department .department-menu ul li a {
	line-height: normal;
}

.farmart-menu-department .department-menu .is-mega-menu ul,
.farmart-menu-department .department-menu .is-mega-menu li {
	padding: 0;
}

.farmart-menu-department.show .department-menu {
	top: 100%;
	opacity: 1;
	pointer-events: initial;
}

.farmart-menu-department ul.farmart-department-menu {
	display: flex;
	flex-direction: column;
	border: 2px solid #eeeeee;
}

.farmart-menu-department ul.farmart-department-menu > li > a {
	border-bottom: 1px solid #eeeeee;
}

.farmart-menu-department ul.farmart-department-menu > li > a:before {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	width: 0;
	right: 0;
	border-bottom: 1px solid;
	transition: width ease .5s;
}

.farmart-menu-department ul.farmart-department-menu > li:last-child > a {
	border-bottom: 0;
}

.farmart-menu-department ul.farmart-department-menu > li:hover > a {
	color: var(--fm-color-primary);
}

.farmart-menu-department ul.farmart-department-menu > li:hover > a:before {
	width: 100%;
	left: 0;
}

.farmart-menu-department:not(.menu-click):hover .farmart-dropdown-arrow {
	transform: rotate(180deg);
}

.farmart-menu-department:not(.menu-click):hover .department-menu {
	top: 100%;
	opacity: 1;
	pointer-events: initial;
}

.farmart-menu-department .main-navigation li.dropdown:before {
	display: none;
}

.farmart-menu-department.menu-click .department-menu {
	position: fixed;
	top: 0;
	left: -100%;
	bottom: 0;
	opacity: .8;
	transition: ease .3s;
	z-index: 9999;
	pointer-events: inherit;
	border: none;
}

.farmart-menu-department.menu-click .department-menu .farmart-department-menu--dropdown {
	height: 100%;
}

.farmart-menu-department.menu-click .department-menu ul.farmart-department-menu {
	border: none;
	padding: 30px 0;
}

.farmart-menu-department.menu-click .department-menu ul > li:hover {
	background-color: #f7f7f7;
}

.farmart-menu-department.menu-click .department-menu ul > li:hover a:before {
	display: none;
}

.farmart-menu-department.menu-click.active .department-menu {
	left: 0;
	opacity: 1;
}

.farmart-menu-department.menu-hover .department-menu ul.farmart-department-menu > li > a:before {
	display: none;
}

.farmart-menu-department ul li.is-mega-menu .dropdown-submenu {
	padding: 30px;
}

.farmart-menu-department ul li.is-mega-menu .dropdown-submenu h4 {
	color: #222;
	font-size: 17px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.5em;
}

.farmart-menu-department ul li.is-mega-menu .dropdown-submenu p {
	color: #888;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5em;
}

.farmart-menu-department ul li.is-mega-menu .dropdown-submenu .button {
	font-size: 14px;
	font-weight: 700;
	background-color: var(--fm-background-color-secondary);
	border-radius: 5px;
	padding: 12px 18px 12px 20px;
	color: var(--fm-background-text-color-secondary);
}

.farmart-menu-department ul li.is-mega-menu .dropdown-submenu .button:hover {
	color: var(--fm-background-text-color-secondary);
}

.farmart-menu-department ul li.is-mega-menu .dropdown-submenu .button .farmart-svg-icon {
	margin-left: 3px;
	color: var(--fm-background-text-color-secondary);
}

.farmart-menu-department ul li.is-mega-menu .dropdown-submenu .spacing {
	display: block;
}

.farmart-menu-department ul li.is-mega-menu .dropdown-submenu a {
	padding: 0;
	margin: 0 10px 22px 0;
	font-weight: 700;
	color: #222222;
	border-right: 1px solid #eeeeee;
}

.farmart-menu-department ul li.is-mega-menu .dropdown-submenu a.primary-color {
	color: var(--fm-color-primary);
	margin-top: 30px;
	font-weight: normal;
}

.farmart-menu-department ul li.is-mega-menu .dropdown-submenu .menu-item-mega:last-child a {
	border: none;
}

.farmart-menu-department ul li.is-mega-menu .dropdown-submenu ul {
	position: relative;
	left: 0;
	top: 0;
	box-shadow: none;
	background-color: transparent;
	opacity: 1;
	visibility: visible;
	float: none;
	transform: inherit;
	border: none;
}

.farmart-menu-department ul li.is-mega-menu .dropdown-submenu ul li {
	padding: 0;
	display: block;
	width: 100%;
}

.farmart-menu-department ul li.is-mega-menu .dropdown-submenu ul li a {
	border: none;
	padding: 0;
	margin: 0 0 12px 0;
	font-weight: normal;
	line-height: 1.4;
	display: inline-block;
}

.farmart-menu-department ul li.is-mega-menu .dropdown-submenu ul li a:hover {
	color: var(--fm-color-primary);
}

.farmart-menu-department ul li.is-mega-menu.align-right .dropdown-submenu {
	left: auto;
	right: 0;
}

.farmart-menu-department ul li.is-mega-menu.align-center .dropdown-submenu {
	margin: auto;
}

.admin-bar .farmart-menu-department.menu-click .department-menu {
	top: 32px;
}

/*--------------------------------------------------------------
## Post
--------------------------------------------------------------*/
.farmart-post--navigation {
	padding-bottom: 35px;
	border-bottom: 1px solid #eeeeee;
}

.farmart-post--navigation .nav-before {
	display: block;
	text-transform: uppercase;
	margin-bottom: 6px;
}

.farmart-post--navigation .nav i,
.farmart-post--navigation .nav-before {
	color: #888888;
}

.farmart-post--navigation .nav {
	color: #222222;
	font-size: 16px;
	font-weight: 700;
}

.farmart-post--navigation .nav .farmart-svg-icon {
	color: #888888;
	transform: translateY(3px);
}

.farmart-post--navigation .nav-links {
	display: flex;
	justify-content: space-between;
}

.farmart-post--navigation .nav-links > a {
	flex-basis: 45%;
	word-break: break-word;
}

.farmart-post--navigation .box-nav--left .farmart-svg-icon {
	margin-right: 5px;
}

.farmart-post--navigation .box-nav--right {
	display: block;
	text-align: right;
}

.farmart-post--navigation .box-nav--right .farmart-svg-icon {
	margin-left: 5px;
}

.num-navigation {
	margin-top: 35px;
}

.num-navigation .page-numbers {
	display: inline-block;
	font-size: 16px;
	width: 40px;
	height: 40px;
	line-height: 38px;
	text-align: center;
	border: 1px solid #ccc;
	color: #000;
	margin-right: 7px;
	background-color: transparent;
	transition: ease .5s;
}

.num-navigation .page-numbers .farmart-svg-icon {
	font-size: 14px;
	color: #000;
	font-weight: 700;
}

.num-navigation .page-numbers:hover, .num-navigation .page-numbers.current {
	border-color: var(--fm-background-color-primary);
	background-color: var(--fm-background-color-primary);
	color: var(--fm-background-text-color-primary);
}

.num-navigation.blog-navigation {
	margin-top: 40px;
}

.farmart-blog-page--small-thumb .blog-navigation {
	margin-top: 90px;
}

.load-navigation {
	margin-top: 30px;
	overflow: hidden;
	text-align: center;
}

.load-navigation.loading .after-loading {
	opacity: 1;
	right: -30px;
}

.load-navigation.loading .button-text--after {
	opacity: 1;
	transform: rotateX(0);
}

.load-navigation.loading .button-text {
	transform: translateX(-28px);
}

.load-navigation .nav-links {
	text-align: center;
	display: inline-block;
}

.load-navigation .nav-previous-ajax {
	position: relative;
}

.load-navigation a {
	font-size: 16px;
	font-weight: 700;
	color: #888888;
	letter-spacing: 0.37em;
	transition: ease 0.3s;
	display: inline-block;
	transform: translateX(0);
	min-width: 115px;
	position: relative;
}

.load-navigation .button-text--after {
	opacity: 0;
	width: 100%;
	height: 100%;
	transition: 0.5s ease;
	transform: translateY(10px) rotateX(-90deg);
}

.load-navigation .after-loading {
	position: absolute;
	top: 2px;
	right: 0;
	opacity: 0;
	z-index: -1;
	transition: ease 0.5s;
}

.load-navigation .loading-icon .dot {
	background-color: #888;
}

.load-navigation .loading-icon .bubble {
	width: 4px;
	height: 4px;
}

.load-navigation a, .load-navigation .after-loading {
	float: left;
}

.farmart-blog-page.full-content .num-navigation {
	text-align: center;
}

.farmart-blog-page.full-content .num-navigation .page-numbers {
	margin: 0 3.5px;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text, .site-branding .site-title,
.site-branding .site-description {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
	/* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus, .site-branding .site-title:focus,
.site-branding .site-description:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	float: left;
	margin-right: 1.5em;
}

.alignright {
	float: right;
	margin-left: 1.5em;
}

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

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Modal
--------------------------------------------------------------*/
.fm-modal {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: none;
	z-index: -1;
}

.fm-modal.open {
	display: block;
	z-index: 9999;
}

.fm-modal .fm-modal-overlay {
	background-color: rgba(0, 0, 0, 0.55);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.fm-modal .modal-content {
	height: 575px;
	max-height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.fm-modal .close-modal {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 20px;
	height: 20px;
	border: 1px solid #cccccc;
	border-radius: 3px;
	text-align: center;
	line-height: 20px;
	color: #000;
	z-index: -1;
	opacity: 0;
}

.fm-modal .fm-loading {
	opacity: 0;
	transition: 0.5s;
	position: absolute;
	z-index: -1;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.fm-modal .fm-loading:after {
	content: " ";
	display: block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border-width: 1px;
	border-style: solid;
	border-color: #fff transparent #fff transparent;
	animation: lds-dual-ring 0.5s linear infinite;
}

.fm-modal .fm-loading:after {
	width: 30px;
	height: 30px;
}

.fm-modal.loading .fm-loading {
	opacity: 1;
	z-index: 99;
}

.fm-modal.loaded .close-modal {
	z-index: 9;
	opacity: 1;
}

.fm-quick-view-modal .product-modal-content div.product {
	background-color: #fff;
	padding: 45px 40px;
	border-radius: 3px;
	height: 575px;
}

.fm-quick-view-modal .product-modal-content div.product .fm-entry-product-header {
	margin-bottom: 25px;
	padding-bottom: 15px;
}

.fm-quick-view-modal .product-modal-content div.product .woocommerce-product-gallery {
	width: 50%;
	opacity: 1;
}

.fm-quick-view-modal .product-modal-content div.product .woocommerce-product-gallery .woocommerce-product-gallery__wrapper {
	padding: 0 75px 30px 75px;
	width: 100%;
}

.fm-quick-view-modal .product-modal-content div.product .woocommerce-product-gallery .product-image-ms {
	display: none;
}

.fm-quick-view-modal .product-modal-content div.product .woocommerce-product-gallery .slick-prev-arrow {
	left: 10px;
}

.fm-quick-view-modal .product-modal-content div.product .woocommerce-product-gallery .slick-next-arrow {
	right: 10px;
}

.fm-quick-view-modal .product-modal-content div.product .woocommerce-product-gallery .slick-dots {
	bottom: 0;
}

.fm-quick-view-modal .product-modal-content div.product div.entry-summary {
	width: 50%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	padding: 45px 40px 45px 40px;
	margin: 0;
	overflow: auto;
}

.fm-quick-view-modal .product-modal-content div.product div.entry-summary .farmart-list {
	margin-bottom: 17px;
}

.fm-quick-view-modal .product-modal-content div.product ::-webkit-scrollbar {
	background: transparent;
	width: 5px;
}

.fm-quick-view-modal .product-modal-content div.product ::-webkit-scrollbar-thumb {
	background-color: #ccc;
}

.fm-quick-view-modal .product-modal-content div.product .product-entry-meta {
	display: flex;
	flex-wrap: wrap;
}

.fm-quick-view-modal .product-modal-content div.product .product-entry-meta > div {
	position: relative;
	margin-right: 14px;
	padding-right: 15px;
}

.fm-quick-view-modal .product-modal-content div.product .product-entry-meta > div:after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 13px;
	background-color: #e5e5e5;
}

.fm-quick-view-modal .product-modal-content div.product .product-entry-meta > div:last-child:after {
	display: none;
}

.fm-quick-view-modal .product-modal-content div.product form.cart {
	border-top: 1px solid #eeeeee;
	margin-top: 20px;
	padding-top: 22px;
}

.fm-quick-view-modal .product-modal-content div.product .single-button-wrapper .action-buttons {
	width: 100%;
}

.fm-quick-view-modal .product-modal-content div.product .single-button-wrapper .buttons-box .single_add_to_cart_button {
	width: 100%;
}

.fm-quick-view-modal .product-modal-content div.product .single-button-wrapper .buttons-box .single_add_to_cart_button:before {
	left: calc(50% - 50px);
}

.fm-quick-view-modal .product-modal-content div.product .single-button-wrapper .fm-wishlist-button .yith-wcwl-add-button {
	line-height: 2.5;
}

.fm-quick-view-modal .product-modal-content div.product .product_socials {
	margin-top: 25px;
}

.fm-quick-view-modal .product-modal-content div.product .enable-buy-now .single-button-wrapper {
	flex-direction: inherit;
	align-items: flex-end;
}

.fm-quick-view-modal .product-modal-content div.product .enable-buy-now .single-button-wrapper .action-buttons {
	margin-top: 10px;
	margin-bottom: 0;
}

.fm-quick-view-modal .product-modal-content div.product .enable-buy-now .single-button-wrapper .action-buttons .button:first-child {
	margin-right: 0;
}

.fm-quick-view-modal .product-modal-content div.product .enable-buy-now .single-button-wrapper .group-buttons {
	margin-bottom: 0;
	order: 3;
}

.fm-quick-view-modal .product-modal-content div.product .enable-buy-now .single-button-wrapper .single_add_to_cart_button {
	width: 143px;
	text-align: center;
	margin-right: 6px;
}

.fm-quick-view-modal .product-modal-content div.product .enable-buy-now .single-button-wrapper .single_add_to_cart_button:before {
	left: 17%;
}

.fm-quick-view-modal .product-modal-content div.product .enable-buy-now .single-button-wrapper .buy_now_button {
	position: relative;
	border: none;
	background-color: var(--fm-background-color-primary);
	color: var(--fm-background-text-color-primary);
	padding: 0;
	line-height: 46px;
	text-align: center;
	width: 143px;
	order: 2;
	white-space: nowrap;
}

.fm-quick-view-modal .product-modal-content div.product .enable-buy-now .qty-box {
	margin-bottom: 0;
}

.fm-quick-view-modal .product-modal-content div.product.product-type-simple form.cart {
	border-top: 0;
	margin-top: 0;
	padding-top: 0;
}

.fm-quick-view-modal .product-modal-content div.product.product-type-grouped form.grouped_form td:first-child {
	padding-left: 0;
}

.fm-quick-view-modal .product-modal-content div.product.product-type-grouped form.grouped_form td:last-child {
	padding-right: 0;
}

body .notifyjs-corner {
	z-index: 99999;
}

.notifyjs-farmart-base {
	font-weight: 400;
	position: relative;
	padding: 15px 40px 15px 60px;
	margin-bottom: 10px;
	box-shadow: 0 4px 10px 0 rgba(3, 3, 3, 0.1);
	max-width: 450px;
}

.notifyjs-farmart-base .message-icon {
	position: absolute;
	left: 20px;
	top: 20px;
	font-size: 20px;
}

.notifyjs-farmart-base .button.wc-forward {
	display: none;
}

.notifyjs-farmart-base .btn-button {
	padding-left: 5px;
	color: #299c77;
	text-decoration: underline;
}

.notifyjs-farmart-base .close {
	position: absolute;
	top: 20px;
	right: 15px;
	font-size: 10px;
}

.notifyjs-farmart-base .message-box {
	display: inline-block;
}

.notifyjs-farmart-success {
	color: #299c77;
	background-color: #bff9d0;
}

.notifyjs-farmart-success .message-icon {
	fill: #299c77;
	stroke: #299c77;
}

.notifyjs-farmart-error {
	color: #d45757;
	background-color: #ffd0d0;
}

.notifyjs-farmart-error .message-icon {
	fill: #d45757;
	stroke: #d45757;
}

.notifyjs-farmart-error li {
	list-style: none;
}

.notifyjs-farmart-error .btn-button {
	color: #d45757;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 40px;
	font-size: 16px;
	/* Make sure select elements fit in widgets. */
}

.widget:last-child {
	margin-bottom: 0;
}

.widget.filled {
	border-width: 0;
}

.widget select {
	width: 100%;
}

.widget input,
.widget select,
.widget textarea {
	padding: 10px 20px;
	border: 1px solid #cdcfd0;
}

.widget input[type='submit'] {
	border: none;
}

.widget ul,
.widget ol {
	margin-bottom: 0;
}

.widget ul {
	margin: 0;
}

.widget ul li {
	margin-bottom: 0;
	padding: 5px 0;
}

.widget ul li a {
	color: #666;
}

.widget ul li a:hover {
	color: var(--fm-color-primary);
}

.widget ul .children,
.widget ul .sub-menu {
	margin-left: 15px;
}

.widget ul .children li:last-child,
.widget ul .sub-menu li:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

.widget ol {
	padding-left: 16px;
}

.widget li {
	padding: 10px 0;
}

.widget th,
.widget td {
	border-color: #cdcfd0;
}

.widget .tagcloud a {
	color: #666666;
	font-size: 14px !important;
	margin: 0 4px 6px 0;
	padding: 4px 15px;
	display: inline-block;
	vertical-align: middle;
	background-color: #f7f7f7;
	transition: all 0.5s;
	border-radius: 3px;
}

.widget .tagcloud a:hover {
	color: var(--fm-background-text-color-primary);
	background-color: var(--fm-background-color-primary);
}

.widget .mc4wp-form {
	font-size: 14px;
}

.widget .mc4wp-form .mc4wp-form-fields > :first-child {
	margin-top: 0;
}

.widget .mc4wp-form input,
.widget .mc4wp-form select,
.widget .mc4wp-form textarea,
.widget .mc4wp-form button {
	font-size: 16px;
	width: 100%;
	min-width: 0;
	padding: 17px 20px 18px 20px;
	margin-top: 20px;
}

.widget .mc4wp-form input,
.widget .mc4wp-form select {
	height: 60px;
	margin-right: 0;
}

.widget .mc4wp-form input[type=submit],
.widget .mc4wp-form input[type=reset],
.widget .mc4wp-form button {
	padding: 0 20px;
}

.widget .mc4wp-form input[type=checkbox],
.widget .mc4wp-form input[type=radio] {
	padding: 0;
	width: auto;
	height: auto;
	margin: 0 5px 0 0;
}

.widget .mc4wp-form p:last-of-type {
	margin-bottom: 0;
}

.widget-title,
.widgettitle {
	font-size: 24px;
	line-height: 1.75;
	margin: 0;
	padding: 0 0 13px;
	color: #000;
}

.widget_search {
	margin-bottom: 30px;
}

.search-form {
	position: relative;
	border: 1px solid #cccccc;
	border-radius: 3px;
	color: #000;
	position: relative;
}

.search-form:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 13px;
	transform: translateY(-50%);
	background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMS4wLjIsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAzMiAzMiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMzIgMzI7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxwYXRoIGQ9Ik0zMC4xOSAzMC42NTlsLTkuNTA5LTEwLjM3NGMyLjE0My0yLjI0MiAzLjMyLTUuMTczIDMuMzItOC4yODYgMC0zLjIwNS0xLjI0OC02LjIxOS0zLjUxNS04LjQ4NXMtNS4yOC0zLjUxNS04LjQ4NS0zLjUxNS02LjIxOSAxLjI0OC04LjQ4NSAzLjUxNS0zLjUxNSA1LjI4LTMuNTE1IDguNDg1IDEuMjQ4IDYuMjE5IDMuNTE1IDguNDg1IDUuMjggMy41MTUgOC40ODUgMy41MTVjMi43NjEgMCA1LjM4LTAuOTI3IDcuNTAxLTIuNjMzbDkuNTA5IDEwLjM3M2MwLjE1OCAwLjE3MiAwLjM3NCAwLjI1OSAwLjU5IDAuMjU5IDAuMTkzIDAgMC4zODctMC4wNzAgMC41NC0wLjIxIDAuMzI2LTAuMjk5IDAuMzQ4LTAuODA1IDAuMDQ5LTEuMTN6TTEuNiAxMmMwLTUuNzM1IDQuNjY1LTEwLjQgMTAuNC0xMC40czEwLjQgNC42NjUgMTAuNCAxMC40LTQuNjY1IDEwLjQtMTAuNCAxMC40LTEwLjQtNC42NjUtMTAuNC0xMC40eiI+PC9wYXRoPg0KPC9zdmc+DQo=");
	width: 18px;
	height: 18px;
}

.search-form label {
	width: 100%;
	margin-bottom: 0;
}

.search-form .screen-reader-text, .search-form .site-branding .site-title, .site-branding .search-form .site-title,
.search-form .site-branding .site-description, .site-branding .search-form .site-description {
	display: none;
}

.search-form .search-field {
	border: none;
	color: #000;
	width: 100%;
	background-color: #fff;
	padding: 9px 20px;
}

.search-form .search-field:focus {
	border: none;
	outline: none;
}

.search-form ::-webkit-input-placeholder {
	color: #777777;
}

.search-form :-moz-placeholder {
	color: #777777;
}

.search-form ::-moz-placeholder {
	color: #777777;
}

.search-form :-ms-input-placeholder {
	color: #777777;
}

.search-form .search-submit {
	width: 42px;
	height: 42px;
	background: transparent;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	border: none;
	text-indent: -9999px;
	z-index: 10;
	padding: 0;
}

.search-form .search-submit:hover, .search-form .search-submit:focus {
	background-color: transparent;
}

.widget_archive,
.widget_categories {
	overflow: hidden;
}

.widget_archive ul,
.widget_categories ul {
	list-style-type: none;
	padding: 0;
}

.widget_archive ul li,
.widget_categories ul li {
	clear: both;
}

.widget_archive ul li:last-child,
.widget_categories ul li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.widget_archive select,
.widget_categories select {
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAACXBIWXMAAAsTAAALEwEAmpwYAAAFFmlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNi4wLWMwMDIgNzkuMTY0NDg4LCAyMDIwLzA3LzEwLTIyOjA2OjUzICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgMjIuMCAoV2luZG93cykiIHhtcDpDcmVhdGVEYXRlPSIyMDIxLTA5LTE1VDE0OjU2OjA5KzA3OjAwIiB4bXA6TW9kaWZ5RGF0ZT0iMjAyMS0wOS0xNVQxNDo1ODo1NCswNzowMCIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAyMS0wOS0xNVQxNDo1ODo1NCswNzowMCIgZGM6Zm9ybWF0PSJpbWFnZS9wbmciIHBob3Rvc2hvcDpDb2xvck1vZGU9IjMiIHBob3Rvc2hvcDpJQ0NQcm9maWxlPSJzUkdCIElFQzYxOTY2LTIuMSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpjZDZjNWRjNC03MWI1LTQ2NDYtYWY4Yy04YTFiZTgwZDMyMWQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6Y2Q2YzVkYzQtNzFiNS00NjQ2LWFmOGMtOGExYmU4MGQzMjFkIiB4bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ9InhtcC5kaWQ6Y2Q2YzVkYzQtNzFiNS00NjQ2LWFmOGMtOGExYmU4MGQzMjFkIj4gPHhtcE1NOkhpc3Rvcnk+IDxyZGY6U2VxPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0iY3JlYXRlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDpjZDZjNWRjNC03MWI1LTQ2NDYtYWY4Yy04YTFiZTgwZDMyMWQiIHN0RXZ0OndoZW49IjIwMjEtMDktMTVUMTQ6NTY6MDkrMDc6MDAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCAyMi4wIChXaW5kb3dzKSIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4FbzmKAAACwElEQVQ4jX2Vy2oUQRSG/3OqetIdJzExkARRiZF4AW8YSQhemMUsRHwBN76CG3EtPoKP4DobBdFFQCUKQsQQCURBQiaRyaDixGFmurWr6rjpgnbsSUPBT18+zn+q/tNUrVaQXRqAy1Zeq+y57dGcLZPXnL0Q9MAkp/Mw6gNT2X1w9pHtgdke7WGmDyz1LrmgMg/rrWw/GPnCuADm+2QKYCrTVAAzAMRbFhGxWmsVhiFEpB8s9W0SkZSZaXAw0sxkRETylm0QBLrT6WJrq2bL5TJKpRI55/I2fTVKRNJSqURaa6nVdtI4/g2tdQDAMQBHRDoIArex8dmur2/cr9d3j7TbHRNFERNRvmdaREwYhhSGA7Ky8uH42tr6Xa01MbPxQA0AcRy72dmLGBk5OLOy8mFna2v7YhSFLrPPAJRzzkRRJFprefPm3dz37z82T58+eWxo6IBL01QAaDU9PUUArIio4eEyB0HwxFoX7+42Fjc3a2uTk+OfJicn0G53XLl8QJwTvHq1fLvZ3Htx/vzZe6dOzTzodLp+Y0RNT08JAEVEFMeJHR0dxdGjh9/Watvv4zh5aq39E8fJ8vj4GEQES0uvH3a73Ufz85dvnjgx9bjVasE5p4nIAXA6v5vMzEmSsIiYSuXqs0bj27nV1Y+rX7/Wz4yNjd55+XJ50Vp769q1hZmJifEvP382QUQBEflgKKpWKz42/xzawcGIO52uaTS+jdTru8+bzb2ImVvXr1+5cejQSPfXrxaIKOhNmS6CAVDtdjfVWtGlSxf2jEkXrLXVubnZpeHhIWSwwshStVopitA/CRARGRgYAAAkSULMrPpEVuncoS0CGxERpVRgjDHOOdkPBoB8BgthAISIAueczT78r2foGSC8HywDmAzQD+YnkwHA3rLpA/OV7Tczka+ScwCV00UA/zsoGnPsLf8FizyF//3sTYEAAAAASUVORK5CYII=");
	background-color: #fff;
	background-position: right 18px center;
	background-repeat: no-repeat;
	appearance: none;
	-moz-appearance: none;
	color: #222222;
	-webkit-appearance: none;
	cursor: pointer;
	display: block;
}

.widget_archive select:focus,
.widget_categories select:focus {
	outline: 0;
}

.widget_categories ul,
.widget_pages ul,
.widget_meta ul,
.widget_recent_entries ul,
.widget_rss ul {
	padding-left: 0;
}

.widget_categories ul li,
.widget_pages ul li,
.widget_meta ul li,
.widget_recent_entries ul li,
.widget_rss ul li {
	padding: 0 0 6px;
	list-style: none;
}

.widget_categories ul li a,
.widget_pages ul li a,
.widget_meta ul li a,
.widget_recent_entries ul li a,
.widget_rss ul li a {
	color: #666666;
	text-align: left;
}

.widget_rss ul li {
	padding-bottom: 15px;
}

.widget_rss ul li:last-child {
	padding-bottom: 0;
}

.widget_rss ul li a {
	color: #000;
}

.widget_categories.widget_block {
	margin-bottom: 0;
}

.widget_categories .widget-title {
	padding-bottom: 13px;
}

.widget_categories .wp-block-categories select {
	padding: 10px 20px;
}

.widget_recent_comments {
	margin-bottom: 32px;
	color: #999;
}

.widget_recent_comments ul, .widget_recent_comments ol {
	list-style-type: none;
	padding-left: 0;
}

.widget_recent_comments ul li, .widget_recent_comments ol li {
	line-height: 1.25;
	position: relative;
	padding-left: 30px;
	padding-bottom: 6px;
}

.widget_recent_comments ul li:before, .widget_recent_comments ol li:before {
	content: '';
	background-image: url("data:image/svg+xml;base64,PCEtLSBHZW5lcmF0ZWQgYnkgSWNvTW9vbi5pbyAtLT4KPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiPgo8dGl0bGU+YnViYmxlPC90aXRsZT4KPHBhdGggZD0iTTAuNiAyMi44Yy0wLjI3IDAtMC41MDYtMC4xOC0wLjU3OC0wLjQ0czAuMDM4LTAuNTM2IDAuMjctMC42NzVjMi4wMjktMS4yMTcgMi44NzEtMi45ODYgMy4xNjktMy44MTUtMi4yMDUtMS42ODktMy40Ni00LjAyNS0zLjQ2LTYuNDcxIDAtMS4yMzUgMC4zMS0yLjQzMiAwLjkyMi0zLjU1NiAwLjU4NC0xLjA3MyAxLjQxNi0yLjAzNSAyLjQ3My0yLjg1NyAyLjE0NS0xLjY2OCA0Ljk4OC0yLjU4NyA4LjAwNS0yLjU4N3M1Ljg2IDAuOTE5IDguMDA1IDIuNTg3YzEuMDU3IDAuODIyIDEuODkgMS43ODQgMi40NzMgMi44NTcgMC42MTIgMS4xMjUgMC45MjIgMi4zMjEgMC45MjIgMy41NTZzLTAuMzEgMi40MzItMC45MjIgMy41NTZjLTAuNTg0IDEuMDczLTEuNDE2IDIuMDM1LTIuNDczIDIuODU3LTIuMTQ1IDEuNjY4LTQuOTg4IDIuNTg3LTguMDA1IDIuNTg3LTEuMjQgMC0yLjQ1Ni0wLjE1NS0zLjYyLTAuNDYyLTAuNTE1IDAuMzQzLTEuNDc4IDAuOTUyLTIuNjI3IDEuNTI0LTEuNzg1IDAuODg4LTMuMzE3IDEuMzM4LTQuNTUzIDEuMzM4ek0xMS40IDMuNmMtNS42MjQgMC0xMC4yIDMuNDk5LTEwLjIgNy44IDAgMi4xNzggMS4yMDUgNC4yNzUgMy4zMDcgNS43NTEgMC4yMDYgMC4xNDUgMC4zIDAuNDAzIDAuMjM1IDAuNjQ2LTAuMTQgMC41MjMtMC42MTggMS45NTktMS44OTYgMy4zNDUgMS41NjItMC41NDcgMy4yNDQtMS40OTYgNC40ODctMi4zNSAwLjE0OC0wLjEwMSAwLjMzMy0wLjEzMiAwLjUwNS0wLjA4MiAxLjEzOCAwLjMyNiAyLjMzNyAwLjQ5MSAzLjU2MiAwLjQ5MSA1LjYyNCAwIDEwLjItMy40OTkgMTAuMi03LjhzLTQuNTc2LTcuOC0xMC4yLTcuOHoiPjwvcGF0aD4KPC9zdmc+Cg==");
	display: inline-block;
	width: 16px;
	height: 16px;
	background-size: cover;
	vertical-align: middle;
	position: absolute;
	top: 8px;
	left: 0;
}

.widget_recent_comments ul li a, .widget_recent_comments ol li a {
	color: #000;
}

.widget_recent_comments ul li a:hover, .widget_recent_comments ol li a:hover {
	color: var(--fm-color-primary);
}

.widget_recent_comments ul li .comment-author-link + a, .widget_recent_comments ol li .comment-author-link + a {
	color: #0066ff;
}

.widget_recent_comments .has-avatars li:before {
	display: none;
}

.wp-block-latest-comments__comment-date {
	margin-top: 5px;
	margin-bottom: 10px;
	font-size: 12px;
}

.wp-block-latest-posts__post-date {
	font-size: 12px;
}

.blocks-gallery-grid .blocks-gallery-item figcaption,
.wp-block-gallery .blocks-gallery-item figcaption {
	padding: 15px;
}

.farmart-widget__latest-post {
	margin-bottom: 33px;
}

.farmart-widget__latest-post .widget-title {
	padding-bottom: 21px;
}

.farmart-widget__latest-post div.blog-item {
	margin-bottom: 23px;
}

.farmart-widget__latest-post div.blog-item.has-post-thumbnail .blog-wrapper__inner {
	display: flex;
}

.farmart-widget__latest-post div.blog-item.has-post-thumbnail .widget-thumb {
	flex: 0 0 22.22%;
	margin-right: 22px;
}

.farmart-widget__latest-post div.blog-item .entry-header {
	margin-bottom: 0;
}

.farmart-widget__latest-post div.blog-item .entry-meta {
	margin: -6px 0 6px;
}

.farmart-widget__latest-post div.blog-item .entry-meta .meta-date a {
	color: #0099ff;
}

.farmart-widget__latest-post div.blog-item .entry-title {
	line-height: 1.57143;
}

.farmart-widget__latest-post div.blog-item:last-child {
	margin-bottom: 0;
}

.widget_tag_cloud {
	margin-bottom: 32px;
}

.widget_tag_cloud .widget-title {
	padding-bottom: 21px;
}

.widget_tag_cloud a {
	color: #0099ff;
}

.widget_tag_cloud a:hover {
	color: var(--fm-color-primary);
}

.widget_archive {
	margin-bottom: 31px;
}

.widget_archive .widget-title {
	padding-bottom: 21px;
}

.blog-sidebar .widget:not(.widget_search):not(:last-child) {
	padding-bottom: 45px;
	margin-bottom: 40px;
	border-bottom: 1px solid #d9d9d9;
}

.widget_calendar {
	padding-bottom: 20px !important;
}

.widget_nav_menu ul,
.widget_meta ul,
.widget_pages ul {
	list-style-type: none;
	padding: 0;
}

.wp-block-calendar, .widget_calendar .calendar_wrap {
	background-color: #fafafa;
	border: 1px solid #ccc;
	padding: 21px 19px 12px;
	position: relative;
	margin-bottom: 30px;
}

.wp-block-calendar .wp-calendar-table, .widget_calendar .calendar_wrap .wp-calendar-table {
	margin-bottom: 5px;
	border: none;
}

.wp-block-calendar caption, .widget_calendar .calendar_wrap caption {
	margin-bottom: 15px;
	font-weight: 700;
	letter-spacing: -0.5px;
	padding: 0 6px;
	color: #000;
}

.wp-block-calendar thead, .wp-block-calendar tbody, .widget_calendar .calendar_wrap thead, .widget_calendar .calendar_wrap tbody {
	border: none;
	margin-left: -.25em;
	margin-right: -.25em;
}

.wp-block-calendar thead th, .wp-block-calendar thead td, .wp-block-calendar tbody th, .wp-block-calendar tbody td, .widget_calendar .calendar_wrap thead th, .widget_calendar .calendar_wrap thead td, .widget_calendar .calendar_wrap tbody th, .widget_calendar .calendar_wrap tbody td {
	background: transparent;
	border: 0;
	text-align: center;
	line-height: 2;
	vertical-align: middle;
	word-break: normal;
}

.wp-block-calendar thead th, .widget_calendar .calendar_wrap thead th {
	position: relative;
	font-size: 13px;
	color: #999;
}

.wp-block-calendar tbody td, .widget_calendar .calendar_wrap tbody td {
	font-size: 12px;
	color: #000;
}

.wp-block-calendar tbody td a, .widget_calendar .calendar_wrap tbody td a {
	color: #000;
}

.wp-block-calendar tbody #today, .widget_calendar .calendar_wrap tbody #today {
	position: relative;
	z-index: 9;
}

.wp-block-calendar tbody #today:after, .widget_calendar .calendar_wrap tbody #today:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 28px;
	height: 28px;
	background-color: var(--fm-background-color-primary);
	border-radius: 50%;
	z-index: -1;
}

.wp-block-calendar tbody #today a, .widget_calendar .calendar_wrap tbody #today a {
	text-decoration: none;
}

.wp-block-calendar tbody .old, .widget_calendar .calendar_wrap tbody .old {
	color: #999;
}

.wp-block-calendar .wp-calendar-nav, .widget_calendar .calendar_wrap .wp-calendar-nav {
	position: absolute;
	top: 21px;
	right: 25px;
}

.wp-block-calendar .wp-calendar-nav a, .widget_calendar .calendar_wrap .wp-calendar-nav a {
	color: #000;
	text-decoration: none;
}

.wp-block-calendar .wp-calendar-nav .pad, .widget_calendar .calendar_wrap .wp-calendar-nav .pad {
	display: none;
}

.wp-block-calendar .wp-calendar-nav .wp-calendar-nav-prev a, .widget_calendar .calendar_wrap .wp-calendar-nav .wp-calendar-nav-prev a {
	font-size: 0;
}

.wp-block-calendar .wp-calendar-nav .wp-calendar-nav-prev a:after, .widget_calendar .calendar_wrap .wp-calendar-nav .wp-calendar-nav-prev a:after {
	font-family: 'FarmartIcon';
	content: "\e93b";
	font-size: 12px;
	font-weight: 700;
}

.wp-block-calendar .wp-calendar-nav .wp-calendar-nav-next a, .widget_calendar .calendar_wrap .wp-calendar-nav .wp-calendar-nav-next a {
	font-size: 0;
}

.wp-block-calendar .wp-calendar-nav .wp-calendar-nav-next a:after, .widget_calendar .calendar_wrap .wp-calendar-nav .wp-calendar-nav-next a:after {
	font-family: 'FarmartIcon';
	content: "\e93c";
	font-size: 12px;
	font-weight: 700;
}

.calendar_wrap {
	position: relative;
}

.primary-sidebar {
	margin-bottom: 70px;
}

.primary-sidebar .farmart-widget__latest-post div.blog-item .entry-header {
	padding: 0;
	border: none;
}

.single-product .fm_widget_product_categories ul.product-categories > li {
	display: block;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
p {
	margin-top: 0;
}

.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.entry-content,
.entry-header {
	margin-bottom: 35px;
}

.fm-entry-date {
	display: none;
}

.page-links {
	clear: both;
	margin: 1.5em 0 0;
	width: 100%;
	display: inline-block;
}

.page-links .post-page-numbers {
	display: inline-block;
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	border: 1px solid #dddddd;
	border-radius: 3px;
	color: #222222;
	margin: 0 4px;
	background-color: transparent;
	transition: ease .5s;
}

.page-links .post-page-numbers .farmart-svg-icon {
	font-size: 10px;
	color: #222222;
	font-weight: 700;
}

.page-links .post-page-numbers:hover:not(.current) {
	background-color: #eeeeee;
}

.page-links .post-page-numbers.current {
	border-color: var(--fm-color-primary);
	color: var(--fm-color-primary);
}

.post-password-form label {
	display: inline-block;
}

.post-password-form input[type=password],
.post-password-form input[type=submit] {
	height: 48px;
	line-height: 48px;
	min-width: initial;
}

.post-password-form input[type=submit] {
	margin-left: -5px;
}

.entry-title {
	margin: 0 0 19px;
}

.entry-title a {
	color: #222222;
}

.entry-format.format-gallery ul {
	margin: 0;
	padding: 0;
}

.entry-format li {
	list-style-type: none;
}

.entry-meta {
	display: flex;
	flex-wrap: wrap;
}

.entry-meta .meta {
	padding: 0 3px;
	position: relative;
	color: #888888;
}

.entry-meta .meta:first-child {
	padding-left: 0;
}

.entry-meta .meta:last-child:after {
	display: none;
}

.entry-meta .meta a {
	font-weight: 700;
}

.entry-meta .meta-author a {
	color: #0099ff;
}

.entry-meta .meta-author a:hover {
	text-decoration: underline;
}

.entry-meta .meta-cat a {
	color: #222222;
}

.entry-meta .meta-cat a:hover {
	color: var(--fm-color-primary);
}

.single-header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.farmart-social-share {
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	margin: 0;
	list-style: none;
}

.farmart-social-share li {
	display: inline-block;
	margin-right: 7px;
	margin-bottom: 3px;
}

.farmart-social-share li:last-child {
	margin-right: 0;
}

.farmart-social-share .farmart-svg-icon {
	font-size: 15px;
	color: #fff;
}

.farmart-social-share a {
	display: block;
	width: 38px;
	height: 38px;
	line-height: 40px;
	text-align: center;
}

.farmart-social-share a.farmart-facebook {
	background-color: #4267b2;
}

.farmart-social-share a.farmart-twitter {
	background-color: #3eb0ff;
}

.farmart-social-share a.farmart-pinterest {
	background-color: #b10c0c;
}

.farmart-social-share a.farmart-google-plus {
	background-color: #cb1717;
}

.farmart-social-share a.farmart-linkedin {
	background-color: #0271AE;
}

.farmart-social-share a.farmart-vkontakte {
	background-color: #4C75A3;
}

.farmart-social-share a.farmart-whatsapp {
	background-color: #2AB200;
}

.farmart-social-share a.farmart-email {
	background-color: #cb1717;
}

.farmart-social-share a.farmart-tumblr {
	background-color: #3C586D;
}

.farmart-social-share a .text {
	display: none;
}

.farmart-social-share.farmart-social__text li {
	margin-right: 4px;
}

.farmart-social-share.farmart-social__text li:last-child {
	margin-right: 0;
}

.farmart-social-share.farmart-social__text .farmart-svg-icon {
	font-size: 12px;
}

.farmart-social-share.farmart-social__text a {
	display: flex;
	align-items: center;
	width: auto;
	height: auto;
	line-height: 1;
	padding: 5px 7px;
	color: #fff;
	border-radius: 3px;
}

.farmart-social-share.farmart-social__text a .text {
	display: inline-block;
	margin: 1px 0 0 5px;
	font-size: 10px;
	font-weight: 700;
}

.farmart-single-post__new .entry-title--new {
	font-size: 28px;
	margin-bottom: 16px;
}

.farmart-single-post__new .has-post-thumbnail .box-wrapper {
	margin-top: 50px;
}

.farmart-single-post__new .entry-header--new {
	padding-bottom: 30px;
	border-bottom: 1px solid #eee;
}

.farmart-single-post__new .farmart-post__related .entry-format.format-link {
	padding: 0;
}

.blog-wrapper,
.blog-item {
	margin-bottom: 47px;
	position: relative;
}

.blog-wrapper:last-child,
.blog-item:last-child {
	margin-bottom: 0;
}

.blog-wrapper .entry-format,
.blog-item .entry-format {
	margin-bottom: 29px;
}

.blog-wrapper .entry-header,
.blog-item .entry-header {
	margin-bottom: 23px;
}

.blog-wrapper.no-content .entry-header,
.blog-item.no-content .entry-header {
	margin-bottom: 0;
}

.blog-wrapper.no-title .entry-meta,
.blog-item.no-title .entry-meta {
	margin-top: -5px;
}

.blog-wrapper .entry-meta,
.blog-item .entry-meta {
	font-size: 13px;
	margin-top: 10px;
}

.blog-wrapper .entry-meta a:hover,
.blog-item .entry-meta a:hover {
	color: var(--fm-color-primary);
}

.blog-wrapper .entry-meta .meta-author a,
.blog-item .entry-meta .meta-author a {
	color: #0099ff;
}

.blog-wrapper .entry-title,
.blog-item .entry-title {
	margin-bottom: 0;
}

.blog-wrapper .entry-title a:hover,
.blog-item .entry-title a:hover {
	color: var(--fm-color-primary);
}

.blog-wrapper .entry-content p,
.blog-wrapper .entry-content,
.blog-item .entry-content p,
.blog-item .entry-content {
	margin: 0;
}

.blog-wrapper .link-no-title,
.blog-item .link-no-title {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.post-author--box {
	display: flex;
}

.post-author--avatar {
	flex: none;
	margin-right: 33px;
}

.post-author--avatar img {
	border-radius: 50%;
}

.post-author {
	background-color: #f7f7f7;
	padding: 40px;
}

.post-author--info .author-name {
	margin: 0;
	padding-bottom: 10px;
}

.post-author--info .author-socials {
	margin: 23px 0 0;
	padding: 0;
	list-style: none;
}

.post-author--info .author-socials li {
	display: inline-block;
	margin-right: 7px;
}

.post-author--info .author-socials li:last-child {
	margin-right: 0;
}

.post-author--info .author-socials i {
	font-size: 15px;
	color: #fff;
}

.post-author--info .author-socials a {
	display: block;
	width: 38px;
	height: 38px;
	line-height: 40px;
	text-align: center;
}

.farmart-post__tag-list {
	margin-bottom: 30px;
}

.farmart-post__tag-list .label {
	text-transform: uppercase;
	color: #222222;
	font-weight: 700;
	margin-right: 17px;
}

.farmart-post__tag-list a {
	display: inline-block;
	padding: 4px 15px;
	background-color: #f7f7f7;
	color: #666666;
	border-radius: 5px;
	transition: ease .5s;
	margin: 0 7px 7px 0;
}

.farmart-post__tag-list a:last-child {
	margin-right: 0;
}

.farmart-post__tag-list a:hover {
	background-color: var(--fm-background-color-primary);
	color: var(--fm-background-text-color-primary);
}

.entry-footer {
	margin: 40px 0 65px;
}

.farmart-blog-shortcode .list-post--wrapper,
.farmart-post__related .list-post--wrapper {
	padding: 15px 15px 45px;
	background-color: #fff;
}

.farmart-blog-shortcode .list-post > .slick-dots,
.farmart-post__related .list-post > .slick-dots {
	bottom: 0;
}

.farmart-blog-shortcode .list-post.slick-dotted.slick-slider,
.farmart-post__related .list-post.slick-dotted.slick-slider {
	padding-bottom: 60px;
}

.farmart-blog-shortcode .blog-wrapper,
.farmart-post__related .blog-wrapper {
	margin-bottom: 0;
	border-left: 1px solid #eeeeee;
}

.farmart-blog-shortcode .blog-wrapper.slick-current,
.farmart-post__related .blog-wrapper.slick-current {
	border-left-color: transparent !important;
}

.farmart-blog-shortcode .meta-comment .text-after,
.farmart-post__related .meta-comment .text-after {
	display: none;
}

.farmart-blog-shortcode .slick-prev-arrow,
.farmart-post__related .slick-prev-arrow {
	left: -55px;
}

.farmart-blog-shortcode .slick-next-arrow,
.farmart-post__related .slick-next-arrow {
	right: -55px;
}

.farmart-blog-shortcode .slick-dotted.slick-slider,
.farmart-post__related .slick-dotted.slick-slider {
	margin-bottom: 0;
}

.farmart-blog-shortcode .format-gallery .slick-dots,
.farmart-post__related .format-gallery .slick-dots {
	bottom: 16px;
}

.farmart-blog-shortcode .format-gallery .slick-next-arrow,
.farmart-post__related .format-gallery .slick-next-arrow {
	right: 0;
}

.farmart-blog-shortcode .format-gallery .slick-prev-arrow,
.farmart-post__related .format-gallery .slick-prev-arrow {
	left: 0;
}

.farmart-blog-shortcode .format-quote blockquote,
.farmart-post__related .format-quote blockquote {
	padding: 10px 20px;
}

.farmart-post__related {
	margin-top: 65px;
	margin-bottom: 15px;
}

.farmart-post__related .heading {
	margin: 0 0 20px;
}

.farmart-post__related .entry-footer {
	display: none;
}

.farmart-post__related .list-post--wrapper {
	border: 1px solid #eeeeee;
}

.farmart-post__related .entry-format.format-gallery .slick-dots {
	display: none;
}

.farmart-post__related .slick-initialized .blog-wrapper {
	padding-left: 15px;
	padding-right: 15px;
}

.farmart-post__related .slick-dots button[aria-label="1 of 1"] {
	display: none;
}

.farmart-blog-page--default .site-main .row-flex {
	margin-right: -20px;
	margin-left: -20px;
}

.farmart-blog-page--default .site-main .blog-wrapper {
	padding: 0 20px;
}

.entry-format {
	position: relative;
}

.entry-format .post-format-icon {
	color: #000;
	background-color: #fff;
	font-size: 18px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.entry-format .post-format-icon:after, .entry-format .post-format-icon:before {
	content: "";
	position: absolute;
	border-radius: 50%;
}

.entry-format .post-format-icon:before, .entry-format .post-format-icon:after {
	content: "";
	position: absolute;
	border-radius: 50%;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #fff;
	opacity: 0;
	animation: anim-ripple 3s linear 0s infinite;
}

.entry-format .post-format-icon:before {
	animation-delay: .3s;
}

.entry-format .post-format-icon img,
.entry-format .post-format-icon i {
	z-index: 9;
	position: relative;
	display: inline-block;
}

@keyframes anim-ripple {
	0% {
		transform: scale(1);
		opacity: 0;
	}
	30% {
		transform: scale(1.2);
		opacity: .5;
	}
	to {
		transform: scale(1.5);
		opacity: 0;
	}
}

.fm-post-format.format-quote {
	overflow: hidden;
}

.fm-post-format.format-quote blockquote,
.fm-post-format.format-quote blockquote:before,
.fm-post-format.format-quote .box-content {
	position: relative;
}

.fm-post-format.format-quote blockquote:before,
.fm-post-format.format-quote .box-content {
	z-index: 9;
}

.fm-post-format.format-quote blockquote {
	position: relative;
	padding: 47px 40px 56px;
	font-size: 21px;
	color: #fff;
}

.fm-post-format.format-quote blockquote:before {
	margin-bottom: 14px;
}

.fm-post-format.format-quote blockquote:after {
	content: '';
	background-color: rgba(0, 0, 0, 0.6);
}

.fm-post-format.format-quote blockquote cite {
	margin-top: 28px;
}

.fm-post-format.format-quote blockquote:after,
.fm-post-format.format-quote blockquote img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}

.format-audio iframe {
	width: 100%;
}

.farmart-blog-page--list .blog-wrapper .entry-format.format-link,
.single-post-wrapper .entry-format.format-link {
	padding: 55px 60px 53px;
	background-color: #f5f5f5;
}

.entry-format.format-link .title {
	margin: 0 0 14px;
}

.entry-format.format-link .desc {
	margin: 0 5px 0 0;
	display: contents;
}

.farmart-blog-page--small-thumb .blog-wrapper {
	margin-bottom: 47px;
	padding-bottom: 45px;
	position: relative;
}

.farmart-blog-page--small-thumb .blog-wrapper:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 15px;
	right: 15px;
	width: calc( 100% - 30px);
	height: 1px;
	background-color: #d9d9d9;
}

.farmart-blog-page--small-thumb .blog-wrapper:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
}

.farmart-blog-page--small-thumb .blog-wrapper:last-child:after {
	display: none;
}

.farmart-blog-page--small-thumb .blog-wrapper.sticky {
	padding-bottom: 47px;
	margin-bottom: 45px;
}

.farmart-blog-page--small-thumb .blog-wrapper.sticky .blog-wrapper__inner {
	border: 1px solid #d9d9d9;
	padding: 30px;
	background-color: #f6f6f6;
}

.farmart-blog-page--small-thumb .blog-wrapper.has-post-thumbnail {
	padding-bottom: 45px;
}

.farmart-blog-page--small-thumb .blog-wrapper .entry-content {
	color: #000;
	font-size: 16px;
}

.farmart-blog-page--small-thumb .blog-wrapper .entry-meta {
	margin-top: 7px;
}

.farmart-blog-page--small-thumb .blog-wrapper .meta-cat a {
	color: #000;
}

.farmart-blog-page--small-thumb .blog-wrapper .entry-title a {
	color: #000;
	position: relative;
	background: -webkit-gradient(linear, left top, right top, from(currentColor), to(currentColor)) no-repeat 0 95%;
	background: linear-gradient(to right, currentColor 0, currentColor 100%) no-repeat 0 95%;
	background-size: 0 2px;
	-webkit-transition: background-size 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: background-size 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
	padding: 3px 0;
	background-position: 0 95%;
}

.farmart-blog-page--small-thumb .blog-wrapper .entry-title a:hover {
	background-size: 100% 2px;
}

.farmart-blog-page--small-thumb .farmart-post-list .blog-wrapper:not(.no-flex).has-post-thumbnail .blog-wrapper__inner {
	display: flex;
}

.farmart-blog-page--small-thumb .farmart-post-list .blog-wrapper:not(.no-flex).has-post-thumbnail .entry-format {
	flex: 0 0 auto;
	margin: 0 30px 0 0;
	max-width: 33.75%;
}

.farmart-blog-page--small-thumb .farmart-post-list .blog-wrapper:not(.no-flex).has-post-thumbnail .entry-format.format-gallery {
	max-width: 33.75%;
}

.farmart-blog-page--small-thumb .entry-summary {
	margin-top: 0;
}

.farmart-blog-page--small-thumb .entry-summary .entry-title {
	font-size: 28px;
	color: #000;
	margin-top: -8px;
}

.farmart-blog-page--small-thumb .format-quote .entry-format {
	margin-bottom: 0;
}

.farmart-blog-page--small-thumb .format-quote blockquote {
	padding: 27px 40px 38px;
}

.farmart-blog-page--small-thumb .format-audio.blog-wrapper {
	margin-bottom: 47px;
}

.farmart-blog-page--small-thumb .format-audio .entry-format {
	margin-bottom: 22px;
}

.farmart-blog-page--small-thumb .format-audio iframe {
	height: 380px;
}

.farmart-blog-page--list .blog-wrapper {
	margin-bottom: 50px;
}

.farmart-blog-page--list .blog-wrapper:last-child,
.farmart-blog-page--list .blog-wrapper .entry-format {
	margin-bottom: 0;
}

.farmart-blog-page--list .blog-wrapper:not(.no-flex).has-post-thumbnail .blog-wrapper__inner {
	display: flex;
	align-items: center;
}

.farmart-blog-page--list .blog-wrapper:not(.no-flex).has-post-thumbnail .entry-format {
	flex: 0 0 auto;
	max-width: 65.8%;
}

.farmart-blog-page--list .blog-wrapper:not(.no-flex).has-post-thumbnail .entry-format.format-audio {
	width: 65.8%;
}

.farmart-blog-page--list .blog-wrapper__inner {
	background-color: #f7f7f7;
}

.farmart-blog-page--list .format-link .entry-summary {
	display: none;
}

.farmart-blog-page--list .entry-summary {
	padding: 60px;
	margin: 0;
}

.farmart-blog-page--list .entry-format.format-video {
	height: 385px;
}

.farmart-blog-page--list .entry-format iframe {
	height: 100%;
}

.farmart-blog-page--list .entry-format.format-audio {
	height: 366px;
}

.farmart-blog-page--list .entry-summary > .entry-meta {
	margin-top: 37px;
	margin-bottom: 0;
}

.farmart-blog-page--grid .blog-wrapper {
	margin-bottom: 47px;
}

.farmart-blog-page--grid .entry-header {
	margin-bottom: 0;
}

.farmart-blog-page--grid .entry-title {
	font-size: 20px;
	line-height: 1.4;
}

.farmart-blog-page--grid .format-quote blockquote {
	padding: 23px 40px 33px;
}

.farmart-blog-page--grid .format-quote blockquote:before {
	margin-bottom: 5px;
}

.farmart-blog-page--grid .format-quote blockquote cite {
	margin-top: 16px;
}

.farmart-blog-page--grid .slick-prev-arrow {
	left: 20px;
}

.farmart-blog-page--grid .slick-next-arrow {
	right: 20px;
}

.farmart-blog-page--grid .format-gallery .slick-dots,
.farmart-blog-page--small-thumb .format-gallery .slick-dots {
	bottom: 16px;
}

.farmart-blog-page--grid .format-gallery .slick-dots li button:before,
.farmart-blog-page--small-thumb .format-gallery .slick-dots li button:before {
	background-color: #fff;
	opacity: .5;
}

.farmart-blog-page--grid .format-gallery .slick-dots li.slick-active button:before,
.farmart-blog-page--small-thumb .format-gallery .slick-dots li.slick-active button:before {
	opacity: 1;
}

.farmart-taxs-list {
	margin-bottom: 43px;
	text-align: center;
}

.farmart-taxs-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.farmart-taxs-list ul li {
	display: inline-block;
	padding: 0 20px;
}

.farmart-taxs-list ul a {
	color: #888888;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	display: block;
}

.farmart-taxs-list ul a.selected {
	color: var(--fm-color-primary);
}

.content-sidebar .farmart-taxs-list,
.sidebar-content .farmart-taxs-list {
	text-align: left;
}

.content-sidebar .farmart-taxs-list ul,
.sidebar-content .farmart-taxs-list ul {
	margin: 0 -20px;
}

.farmart-post-taxs-list {
	background-color: #f7f7f7;
	text-align: left;
	position: relative;
	display: flex;
	align-items: center;
	min-height: 60px;
	padding: 0 15px;
}

.farmart-post-taxs-list:before, .farmart-post-taxs-list:after {
	content: '';
	position: absolute;
	height: 60px;
	background-color: #f7f7f7;
	width: calc((100vw - 1190px)/2);
}

.farmart-post-taxs-list:before {
	left: calc((-100vw + 1190px)/2);
}

.farmart-post-taxs-list:after {
	right: calc((-100vw + 1190px)/2);
}

.farmart-post-taxs-list ul {
	list-style: none;
	padding: 0;
	margin: 0 -17px;
}

.farmart-post-taxs-list ul li {
	display: inline-block;
	padding: 0 17px;
}

.farmart-post-taxs-list ul a {
	color: #666;
	text-transform: uppercase;
	display: block;
	transition: .5s;
}

.farmart-post-taxs-list ul a:hover {
	color: var(--fm-color-primary);
}

.farmart-show-categories-filter .farmart-post-taxs-list {
	margin-bottom: 50px;
}

.farmart-show-categories-filter .fm-post-format {
	margin-top: 0;
}

.fm-post-format {
	padding: 0 15px;
}

.farmart-post-list {
	position: relative;
}

.farmart-post-list__loading {
	position: absolute;
	top: 0;
	left: 0;
	bottom: -50px;
	right: 0;
	z-index: 999;
	background-color: #fff;
	display: none;
	text-align: center;
}

.farmart-post-list__loading.show {
	display: block;
}

.farmartFadeInUp {
	animation-name: farmartFadeInUp;
	animation-duration: 0.8s;
	animation-fill-mode: both;
	animation-timing-function: cubic-bezier(0.65, 0.8, 0.44, 0.99);
}

.farmartFadeInUp:nth-child(1n) {
	animation-delay: 0.1s;
}

.farmartFadeInUp:nth-child(2n) {
	animation-delay: 0.2s;
}

.farmartFadeInUp:nth-child(3n) {
	animation-delay: 0.3s;
}

.farmartFadeInUp:nth-child(4n) {
	animation-delay: 0.4s;
}

.farmartFadeInUp:nth-child(5n) {
	animation-delay: 0.5s;
}

.farmartFadeInUp:nth-child(6n) {
	animation-delay: 0.6s;
}

.farmartFadeInUp:nth-child(7n) {
	animation-delay: 0.7s;
}

.farmartFadeInUp:nth-child(8n) {
	animation-delay: 0.8s;
}

.farmartFadeInUp:nth-child(9n) {
	animation-delay: 0.9s;
}

.farmartFadeInUp:nth-child(10n) {
	animation-delay: 1s;
}

.farmartFadeInUp:nth-child(11n) {
	animation-delay: 1.1s;
}

.farmartFadeInUp:nth-child(12n) {
	animation-delay: 1.2s;
}

.farmartFadeInUp:nth-child(13n) {
	animation-delay: 1.3s;
}

.farmartFadeInUp:nth-child(14n) {
	animation-delay: 1.4s;
}

.farmartFadeInUp:nth-child(15n) {
	animation-delay: 1.5s;
}

.farmartFadeInUp:nth-child(16n) {
	animation-delay: 1.6s;
}

.farmartFadeInUp:nth-child(17n) {
	animation-delay: 1.7s;
}

.farmartFadeInUp:nth-child(18n) {
	animation-delay: 1.8s;
}

.farmartFadeInUp:nth-child(19n) {
	animation-delay: 1.9s;
}

.farmartFadeInUp:nth-child(20n) {
	animation-delay: 2s;
}

.farmart-post--breadcrumbs {
	margin-bottom: 25px;
}

.farmart-post--breadcrumbs a {
	color: #888;
}

.farmart-post--breadcrumbs a:hover {
	color: var(--fm-color-primary);
}

.single-post.content-sidebar .single-post-wrapper, .single-post.sidebar-content .single-post-wrapper {
	padding-top: 45px;
}

.single-post.content-sidebar .single-post-wrapper .entry-header, .single-post.sidebar-content .single-post-wrapper .entry-header {
	border-bottom: 1px solid #eee;
	padding-bottom: 30px;
}

.single-post .post-thumbnail {
	margin-bottom: 20px;
}

.single-post .farmart-list li,
.single-post ul.farmart-list li {
	margin-bottom: 0;
}

.single-post .farmart-list li span,
.single-post ul.farmart-list li span {
	margin-left: 3px;
}

.single-post .entry-format.format-video embed, .single-post .entry-format.format-video iframe, .single-post .entry-format.format-video object {
	width: 100%;
}

.single-post .wp-block-archives-dropdown {
	margin-bottom: 20px;
}

.no-results .page-title {
	margin-top: 0;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
	color: #0099ff;
}

.comment-content a:hover {
	color: var(--fm-color-primary);
}

.bypostauthor {
	display: block;
}

.comments-title {
	padding: 0;
	margin: 0;
}

.comments-title.has-comments {
	padding-bottom: 47px;
}

.comment-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.comment-list li .comment-respond {
	margin-top: 0;
	margin-bottom: 50px;
}

.comment-list li.comment {
	border-top: 1px solid #e5e5e5;
	padding-top: 32px;
}

.comment-list li.comment .comment-meta {
	float: left;
	max-width: 70px;
}

.comment-list li .reply {
	margin-top: 12px;
}

.comment-list li .comment-edit-link,
.comment-list li .comment-reply-link {
	color: #666;
	font-weight: 400;
	text-transform: uppercase;
	display: inline-block;
	padding-right: 15px;
}

.comment-list li .comment-edit-link:hover,
.comment-list li .comment-reply-link:hover {
	color: var(--fm-color-primary);
}

.comment-list li .comment-metadata {
	overflow: hidden;
	margin-bottom: 6px;
	margin-top: -5px;
}

.comment-list li .comment-edit-link {
	margin-right: 20px;
}

.comment-list li .comment-author img {
	border-radius: 50%;
}

.comment-list li.comment .comment-content {
	margin-left: 90px;
}

.comment-list li .comment-content {
	padding-bottom: 25px;
	position: relative;
}

.comment-list li .comment-content .comment-desc {
	padding: 10px 0 5px;
}

.comment-list li .comment-content .date {
	color: #888888;
}

.comment-list li .comment-content a {
	word-wrap: break-word;
}

.comment-list li .comment-content .fn,
.comment-list li .comment-content .fn a {
	color: #222222;
	font-style: normal;
	font-weight: 700;
}

.comment-list li .comment-content img {
	display: block;
	margin: 15px 0;
}

.comment-list > li.comment:first-child {
	border-top: 0;
	padding-top: 0;
}

.comment-list .comment-respond {
	margin-bottom: 50px;
}

.comment-list:after {
	clear: both;
	content: "";
	display: block;
}

.comment-list .children {
	list-style: none;
	padding: 0 0 0 90px;
}

.comment-list .children article {
	border-top-width: 0;
}

.comment-list .children:last-child {
	margin-bottom: 0;
}

.comment-list .children li.comment {
	padding-top: 29px;
}

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

.comment-list > .comment:first-child article {
	border: none;
}

.comments-area {
	padding: 55px 0 60px;
}

.comments-area .comment-desc {
	padding: 15px 0 5px;
	color: #666;
}

.comments-area .date {
	color: #666;
}

.comments-area .comments-links {
	margin-bottom: 60px;
	text-align: center;
}

.comments-area .comments-links .page-numbers {
	font-size: 18px;
	padding: 0 8px;
	color: #999;
}

.comments-area .comments-links .page-numbers.current {
	color: #000;
}

.comments-area blockquote {
	margin: 10px 0;
}

.comment-respond {
	clear: both;
}

.comment-respond .logged-in-as {
	margin-bottom: 10px;
}

.comment-respond .logged-in-as a {
	color: #000;
}

.comment-respond .logged-in-as a:hover {
	color: var(--fm-color-primary);
}

.comment-respond .comment-reply-title {
	font-size: 21px;
	color: #222222;
	margin: 20px 0 25px;
}

.comment-respond .comment-reply-title a {
	color: #888;
	font-weight: 400;
	display: inline-block;
	padding-left: 15px;
}

.comment-respond .comment-reply-title a:hover {
	color: var(--fm-color-primary);
}

.comment-respond .comment-notes {
	display: none;
}

.comment-respond input[type=text],
.comment-respond input[type=email],
.comment-respond textarea {
	transition: 0.5s;
	padding: 15px;
	width: 100%;
	color: #000;
}

.comment-respond textarea {
	height: 160px;
}

.comment-respond input::-webkit-input-placeholder, .comment-respond textarea::-webkit-input-placeholder {
	color: #aaaaaa;
}

.comment-respond input::-moz-placeholder, .comment-respond textarea::-moz-placeholder {
	/* Firefox 19+ */
	color: #aaaaaa;
}

.comment-respond input:-ms-input-placeholder, .comment-respond textarea:-ms-input-placeholder {
	/* IE 10+ */
	color: #aaaaaa;
}

.comment-respond input:-moz-placeholder, .comment-respond textarea:-moz-placeholder {
	/* Firefox 18- */
	color: #aaaaaa;
}

.comment-respond p {
	margin-bottom: 0;
	margin-top: 0;
}

.comment-respond .comment-form-email {
	padding-right: 5px;
	padding-left: 5px;
}

.comment-respond .comment-form-comment {
	margin-bottom: 15px;
}

.comment-respond .comment-form-author {
	padding-left: 0;
	padding-right: 10px;
}

.comment-respond .comment-form-url {
	padding-right: 0;
	padding-left: 10px;
}

.comment-respond .comment-message {
	margin-top: 20px;
	color: red;
	min-height: 30px;
}

.comment-respond .form-submit {
	margin-top: 30px;
	display: inline-block;
}

.comment-awaiting-moderation {
	display: block;
}

.farmart-comment {
	background-color: #F7F7F7;
	margin-top: 80px;
}

.page .comments-area {
	clear: both;
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.breadcrumbs {
	display: inline-block;
}

ul.site-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
}

ul.site-breadcrumb > li {
	position: relative;
	padding-right: 8px;
	margin-right: 4px;
	color: #000;
}

ul.site-breadcrumb > li:before {
	content: '/';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
}

ul.site-breadcrumb > li:last-child {
	padding-right: 0;
	margin-right: 0;
}

ul.site-breadcrumb > li:last-child:before {
	display: none;
}

ul.site-breadcrumb > li > a {
	color: #666;
}

ul.site-breadcrumb > li > a:hover {
	color: var(--fm-color-primary);
}

ul.site-breadcrumb .sep {
	padding: 0 3px;
}

.page-header {
	padding-top: 97px;
	padding-bottom: 0;
}

.page-header h1 {
	font-size: 48px;
	margin-top: 0;
	margin-bottom: 11px;
}

.page-header.hide-title {
	text-align: left;
}

.page-header.hide-title h1 {
	line-height: 0;
	text-indent: -9999px;
	margin: 0;
}

.page-header-layout-1 ul.site-breadcrumb {
	justify-content: center;
}

.page-header-layout-1.hide-title {
	padding-top: 50px;
}

.page-header-layout-2 {
	padding-top: 0;
	padding-bottom: 40px;
}

.page-header-layout-2 .page-breadcrumbs {
	background-color: #f5f5f5;
	padding: 19px 0;
}

.page-header-layout-2 .page-title {
	padding-top: 80px;
}

.page-header-layout-2.hide-title {
	padding: 0;
}

.page-header-layout-2.hide-title .page-title {
	padding: 0;
}

.page-header-layout-2 + .site-content {
	padding-top: 40px;
}

/*--------------------------------------------------------------
# Coming soon
--------------------------------------------------------------*/
.maintenance-mode .site-header,
.maintenance-mode .site-footer,
.maintenance-mode .page-header {
	display: none;
}

.maintenance-mode .site-content {
	padding: 0;
}

.maintenance-mode .hentry,
.maintenance-mode .entry-content {
	margin: 0;
}

/*--------------------------------------------------------------
# 404
--------------------------------------------------------------*/
.error404 .site-content {
	padding-top: 150px;
	padding-bottom: 140px;
}

.error404 .error-404 {
	max-width: 570px;
	margin: auto;
	text-align: center;
}

.error404 .page-title {
	margin: 0 0 15px;
}

.error404 .description {
	margin-bottom: 25px;
}

.error404 .description a {
	color: var(--fm-color-primary);
}

.error404 .search-form {
	max-width: 370px;
	margin: auto;
}

/*--------------------------------------------------------------
## Default
--------------------------------------------------------------*/
.wp-block-table td,
.wp-block-table th {
	padding: 0.4375em;
	border: 1px solid #e5e5e5;
}

.wp-block-cover-image p:not(.has-text-color) {
	color: #fff;
}

.entry-content:after {
	display: block;
}

@media only screen and (min-width: 768px) {
	body.full-content .site-content .entry-content > *.alignfull,
	body.full-content .site-content .entry-content > *.alignwide {
		width: -webkit-fill-available;
		max-width: 1000%;
	}
	body.full-content .site-content .entry-content > *.alignfull {
		margin-right: calc(50% - 50vw + 9px);
		margin-left: calc(50% - 50vw + 8px);
	}
}

@media only screen and (min-width: 1200px) {
	body.full-content .site-content .entry-content > *.alignwide {
		max-width: 1240px;
		width: 1240px;
		margin-left: calc(-1240px/2 + 100%/2);
		margin-right: calc(-1240px/2 + 100%/2);
	}
}

.wp-block-button {
	margin-bottom: 25px;
}

.wp-block-button .wp-block-button__link {
	transition: background 150ms ease-in-out;
	background-color: #32373c;
	border: none;
	border-radius: 28px;
	box-shadow: none;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 18px;
	margin: 0;
	padding: 12px 24px;
	text-align: center;
	text-decoration: none;
	overflow-wrap: break-word;
}

.wp-block-button.is-style-outline .wp-block-button__link {
	border-style: solid;
}

.wp-block-button.is-style-outline .wp-block-button__link:not(.has-background), .wp-block-button.is-style-outline .wp-block-button__link:focus:not(.has-background), .wp-block-button.is-style-outline .wp-block-button__link:active:not(.has-background) {
	background: transparent;
}

.wp-block-button.is-style-squared .wp-block-button__link {
	border-radius: 0;
}

.wp-block-quote.is-large,
.wp-block-quote.is-style-large,
.wp-block-quote {
	border-left: none;
	padding: 26px 100px 33px;
}

.wp-block-quote.has-text-align-right {
	padding: 26px 100px 33px;
	border-right: none;
}

hr.wp-block-separator {
	background-color: #bbb;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

.wp-block-pullquote:not(.is-style-solid-color) {
	background-color: #f7f7f7;
}

.wp-block-pullquote {
	text-align: left;
	background-color: #f7f7f7;
	padding: 26px 50px 33px;
}

.wp-block-pullquote blockquote {
	margin: 0;
	padding: 0;
}

.wp-block-pullquote.alignleft {
	text-align: left;
}

.wp-block-pullquote.alignright {
	text-align: right;
}

.wp-block-pullquote.alignright blockquote:before {
	right: 0;
	left: auto;
}

.wp-block-pullquote.is-style-solid-color blockquote {
	background-color: transparent;
	max-width: 100%;
}

.wp-block-pullquote.is-style-solid-color blockquote p {
	font-size: 32px;
}

figure.is-resized {
	margin: 0;
}

figure.alignleft, figure.alignright {
	margin-top: 0;
}

img.alignright {
	clear: both;
}

.aligncenter {
	text-align: center;
}

.blocks-gallery-grid.alignleft,
.blocks-gallery-grid.alignright,
.wp-block-gallery.alignleft,
.wp-block-gallery.alignright {
	max-width: calc(4 * (100vw / 12));
	margin-right: calc(2 * 1rem);
}

.wp-block-image.is-resized.alignleft {
	margin-right: 2em;
}

.wp-block-image.is-resized.alignright {
	margin-left: 2em;
}

.wp-block-image .alignright {
	margin-bottom: 2em;
}

@media only screen and (min-width: 1200px) {
	body:not(.full-content) .blocks-gallery-grid.alignleft,
	body:not(.full-content) .blocks-gallery-grid.alignright,
	body:not(.full-content) .wp-block-gallery.alignleft,
	body:not(.full-content) .wp-block-gallery.alignright {
		max-width: calc(3 * (100vw / 12));
	}
	body:not(.full-content) .wp-block-gallery .blocks-gallery-item figcaption {
		display: none;
	}
}

.wp-block-group .wp-block-group__inner-container > h2 {
	font-size: 24px;
	line-height: 1.75;
	margin: 0;
	padding: 0 0 13px;
	color: #000;
}

.wp-block-archives {
	margin-bottom: 35px;
}

.wp-block-archives,
ul.wp-block-categories {
	overflow: hidden;
	padding: 0;
}

.wp-block-archives li,
ul.wp-block-categories li {
	padding: 0 0 4px;
	clear: both;
	list-style: none;
}

.wp-block-archives li:last-child,
ul.wp-block-categories li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.wp-block-archives li a,
ul.wp-block-categories li a {
	color: #666666;
}

.wp-block-archives li a:hover,
ul.wp-block-categories li a:hover {
	color: var(--fm-color-primary);
}

.wp-block-categories {
	margin-bottom: 30px;
}

.wp-block-categories select {
	padding: 10px;
	border: 1px solid #d9d9d9;
}

ul.wp-block-latest-posts {
	list-style: none;
	margin: 0 -5px 0;
	padding: 0;
}

ul.wp-block-latest-posts ul {
	list-style: none;
}

ul.wp-block-latest-posts li {
	padding: 5px;
	margin-bottom: 0;
}

ul.wp-block-latest-posts li:last-child {
	padding-bottom: 0;
}

ul.wp-block-latest-posts li a {
	color: #222222;
}

ul.wp-block-latest-posts li a:hover {
	color: var(--fm-color-primary);
}

.wp-block-latest-posts.is-grid li {
	margin: 0;
}

ol.wp-block-latest-comments {
	padding-left: 0;
	color: #999;
}

ol.wp-block-latest-comments li {
	padding: 10px 0 10px;
}

ol.wp-block-latest-comments li:last-child {
	padding-bottom: 0;
}

ol.wp-block-latest-comments li:first-child {
	padding-top: 5px;
}

ol.wp-block-latest-comments:not(.has-avatars) li {
	position: relative;
	padding-left: 30px;
	padding-bottom: 6px;
}

ol.wp-block-latest-comments:not(.has-avatars) li:before {
	content: '';
	background-image: url("data:image/svg+xml;base64,PCEtLSBHZW5lcmF0ZWQgYnkgSWNvTW9vbi5pbyAtLT4KPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiPgo8dGl0bGU+YnViYmxlPC90aXRsZT4KPHBhdGggZD0iTTAuNiAyMi44Yy0wLjI3IDAtMC41MDYtMC4xOC0wLjU3OC0wLjQ0czAuMDM4LTAuNTM2IDAuMjctMC42NzVjMi4wMjktMS4yMTcgMi44NzEtMi45ODYgMy4xNjktMy44MTUtMi4yMDUtMS42ODktMy40Ni00LjAyNS0zLjQ2LTYuNDcxIDAtMS4yMzUgMC4zMS0yLjQzMiAwLjkyMi0zLjU1NiAwLjU4NC0xLjA3MyAxLjQxNi0yLjAzNSAyLjQ3My0yLjg1NyAyLjE0NS0xLjY2OCA0Ljk4OC0yLjU4NyA4LjAwNS0yLjU4N3M1Ljg2IDAuOTE5IDguMDA1IDIuNTg3YzEuMDU3IDAuODIyIDEuODkgMS43ODQgMi40NzMgMi44NTcgMC42MTIgMS4xMjUgMC45MjIgMi4zMjEgMC45MjIgMy41NTZzLTAuMzEgMi40MzItMC45MjIgMy41NTZjLTAuNTg0IDEuMDczLTEuNDE2IDIuMDM1LTIuNDczIDIuODU3LTIuMTQ1IDEuNjY4LTQuOTg4IDIuNTg3LTguMDA1IDIuNTg3LTEuMjQgMC0yLjQ1Ni0wLjE1NS0zLjYyLTAuNDYyLTAuNTE1IDAuMzQzLTEuNDc4IDAuOTUyLTIuNjI3IDEuNTI0LTEuNzg1IDAuODg4LTMuMzE3IDEuMzM4LTQuNTUzIDEuMzM4ek0xMS40IDMuNmMtNS42MjQgMC0xMC4yIDMuNDk5LTEwLjIgNy44IDAgMi4xNzggMS4yMDUgNC4yNzUgMy4zMDcgNS43NTEgMC4yMDYgMC4xNDUgMC4zIDAuNDAzIDAuMjM1IDAuNjQ2LTAuMTQgMC41MjMtMC42MTggMS45NTktMS44OTYgMy4zNDUgMS41NjItMC41NDcgMy4yNDQtMS40OTYgNC40ODctMi4zNSAwLjE0OC0wLjEwMSAwLjMzMy0wLjEzMiAwLjUwNS0wLjA4MiAxLjEzOCAwLjMyNiAyLjMzNyAwLjQ5MSAzLjU2MiAwLjQ5MSA1LjYyNCAwIDEwLjItMy40OTkgMTAuMi03LjhzLTQuNTc2LTcuOC0xMC4yLTcuOHoiPjwvcGF0aD4KPC9zdmc+Cg==");
	display: inline-block;
	width: 16px;
	height: 16px;
	background-size: cover;
	vertical-align: middle;
	position: absolute;
	top: 15px;
	left: 0;
}

ol.wp-block-latest-comments:not(.has-avatars) li:first-child::before {
	top: 8px;
}

ol.wp-block-latest-comments .wp-block-latest-comments__comment-author {
	color: #000;
}

ol.wp-block-latest-comments .wp-block-latest-comments__comment-link {
	color: #0066ff;
}

.wp-block-latest-comments__comment {
	margin-bottom: 0;
	line-height: 1.35;
}

.wp-block-latest-comments__comment-excerpt > p:last-child {
	margin-bottom: 0;
}

.wp-block-tag-cloud a {
	color: #666666;
	font-size: 14px !important;
	margin: 0 4px 6px 0;
	padding: 4px 15px;
	display: inline-block;
	vertical-align: middle;
	background-color: #f7f7f7;
	transition: all 0.5s;
	border-radius: 3px;
}

.wp-block-tag-cloud a:hover {
	color: var(--fm-background-text-color-primary);
	background-color: var(--fm-background-color-primary);
}

.wp-block-search {
	position: relative;
	border: 1px solid #cccccc;
	border-radius: 3px;
	color: #000;
	position: relative;
	margin-bottom: 50px;
}

.wp-block-search:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 13px;
	transform: translateY(-50%);
	background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMS4wLjIsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAzMiAzMiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMzIgMzI7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxwYXRoIGQ9Ik0zMC4xOSAzMC42NTlsLTkuNTA5LTEwLjM3NGMyLjE0My0yLjI0MiAzLjMyLTUuMTczIDMuMzItOC4yODYgMC0zLjIwNS0xLjI0OC02LjIxOS0zLjUxNS04LjQ4NXMtNS4yOC0zLjUxNS04LjQ4NS0zLjUxNS02LjIxOSAxLjI0OC04LjQ4NSAzLjUxNS0zLjUxNSA1LjI4LTMuNTE1IDguNDg1IDEuMjQ4IDYuMjE5IDMuNTE1IDguNDg1IDUuMjggMy41MTUgOC40ODUgMy41MTVjMi43NjEgMCA1LjM4LTAuOTI3IDcuNTAxLTIuNjMzbDkuNTA5IDEwLjM3M2MwLjE1OCAwLjE3MiAwLjM3NCAwLjI1OSAwLjU5IDAuMjU5IDAuMTkzIDAgMC4zODctMC4wNzAgMC41NC0wLjIxIDAuMzI2LTAuMjk5IDAuMzQ4LTAuODA1IDAuMDQ5LTEuMTN6TTEuNiAxMmMwLTUuNzM1IDQuNjY1LTEwLjQgMTAuNC0xMC40czEwLjQgNC42NjUgMTAuNCAxMC40LTQuNjY1IDEwLjQtMTAuNCAxMC40LTEwLjQtNC42NjUtMTAuNC0xMC40eiI+PC9wYXRoPg0KPC9zdmc+DQo=");
	width: 18px;
	height: 18px;
}

.wp-block-search .wp-block-search__label {
	display: none;
}

.wp-block-search .search-field,
.wp-block-search .wp-block-search__input {
	border: none;
	color: #000;
	width: 100%;
	background-color: #fff;
	padding: 9px 20px;
}

.wp-block-search .search-field:focus,
.wp-block-search .wp-block-search__input:focus {
	border: none;
	outline: none;
}

.wp-block-search ::-webkit-input-placeholder {
	color: #777777;
}

.wp-block-search :-moz-placeholder {
	color: #777777;
}

.wp-block-search ::-moz-placeholder {
	color: #777777;
}

.wp-block-search :-ms-input-placeholder {
	color: #777777;
}

.wp-block-search .wp-block-search__button {
	width: 42px;
	height: 42px;
	background: transparent;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	border: none;
	text-indent: -9999px;
	z-index: 10;
	padding: 0;
}

.wp-block-search .wp-block-search__button:hover, .wp-block-search .wp-block-search__button:focus {
	background-color: transparent;
}

.wp-block-page-list ul {
	padding-left: 1.5em;
}

.wp-block-page-list ul li:last-child {
	padding-bottom: 0;
}

@media screen and (min-width: 1200px) {
	.wp-block-latest-posts.columns-2 li {
		width: 50%;
	}
	.wp-block-latest-posts.columns-3 li {
		width: 33.33%;
	}
	.wp-block-latest-posts.columns-4 li {
		width: 25%;
	}
	.wp-block-latest-posts.columns-5 li {
		width: 20%;
	}
	.wp-block-latest-posts.columns-6 li {
		width: 16.66%;
	}
}

.wp-block-cover-image.has-background-dim::before, .wp-block-cover.has-background-dim::before {
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 1;
}

.wp-block-cover-image.has-background-dim a, .wp-block-cover.has-background-dim a {
	color: #fff;
}

.wp-block-cover,
.wp-block-media-text {
	margin-bottom: 1.5em;
}

.wp-block-cover:last-child,
.wp-block-media-text:last-child {
	margin-bottom: 0;
}

.wp-block-cover p:not(.has-text-color) {
	color: #fff;
}

.wp-block-cover-image.alignleft,
.wp-block-cover-image.alignright,
.wp-block-cover.alignleft,
.wp-block-cover.alignright {
	margin-bottom: 20px;
}

.wp-block-cover-image .wp-block-cover-image-text, .wp-block-cover .wp-block-cover-text, section.wp-block-cover-image > h2 {
	font-size: 36px;
}

.wp-block-columns .wp-block-column > *:first-child {
	margin-top: 0;
}

.wp-block-columns.alignfull:not(.is-not-stacked-on-mobile) > .wp-block-column:not(:first-child) {
	margin-left: 0;
}

@media (min-width: 768px) {
	.wp-block-columns.alignfull .wp-block-column p:not(.has-background),
	.wp-block-columns.alignfull .wp-block-column h1:not(.has-background),
	.wp-block-columns.alignfull .wp-block-column h2:not(.has-background),
	.wp-block-columns.alignfull .wp-block-column h3:not(.has-background),
	.wp-block-columns.alignfull .wp-block-column h4:not(.has-background),
	.wp-block-columns.alignfull .wp-block-column h5:not(.has-background),
	.wp-block-columns.alignfull .wp-block-column h6:not(.has-background) {
		padding-left: 15px;
		padding-right: 15px;
	}
}

.wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper,
.wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper,
.wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper,
.wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper,
.wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper,
.wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper,
.wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper {
	position: relative;
}

.wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper:before,
.wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper:before,
.wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper:before,
.wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper:before,
.wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper:before,
.wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper:before,
.wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper:before {
	content: "";
	display: block;
	padding-top: 50%;
}

.wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper:before {
	padding-top: 56.25%;
}

.wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper iframe,
.wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper iframe,
.wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper iframe,
.wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper iframe,
.wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper iframe,
.wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper iframe,
.wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper iframe {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.blocks-gallery-caption,
.wp-block-embed figcaption,
.wp-block-image figcaption {
	color: #555d66;
	font-size: 13px;
	text-align: center;
}

.wp-block-group.has-background {
	margin-bottom: 50px;
}

pre.wp-block-verse {
	white-space: pre-wrap;
}

/*--------------------------------------------------------------
## Header
--------------------------------------------------------------*/
.site-header {
	--farmart-header-background-color-primary: var(--fm-background-color-primary);
	--farmart-header-background-text-color-primary: var(--fm-background-text-color-primary);
	--farmart-header-background-color-secondary: var(--fm-background-color-secondary);
	--farmart-header-background-text-color-secondary: var(--fm-background-text-color-secondary);
	--farmart-header-text-color: #000;
	--farmart-header-text-hover-color: var(--fm-color-primary);
}

.site-header a:hover {
	color: var(--farmart-header-text-hover-color);
}

.site-header .header-wrapper {
	display: flex;
	align-items: center;
	padding: 38.5px 0;
}

.site-header .header-logo {
	width: 18%;
	margin-right: 30px;
}

.site-header .header-search {
	flex-grow: 1;
}

.site-header .header-search label {
	display: flex;
	width: 100%;
}

.site-header .header-search label input {
	width: 100%;
	border-right: 0;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.site-header .header-search label button {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.site-header .farmart-menu-department {
	background-color: var(--farmart-header-background-color-primary);
	color: var(--farmart-header-background-text-color-primary);
}

.site-header .fm-header-recently-viewed {
	color: var(--farmart-header-text-color);
}

.site-header .fm-header-recently-viewed .recently-title,
.site-header .fm-header-recently-viewed .recently-title .farmart-svg-icon {
	color: inherit;
}

.site-header .header-elements {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 13%;
	margin-left: 30px;
}

.site-header .header-elements .header-element--sep {
	width: 1px;
	height: 18px;
	background-color: #dddddd;
}

.site-header .header-main {
	border-bottom: 1px solid #e5e5e5;
}

.site-header .header-bottom .header-wrapper {
	padding: 10px 0 12px;
	position: relative;
}

.header-items {
	display: flex;
	align-items: center;
	height: 100%;
	flex: auto;
}

.header-items--center,
.header-items--left,
.header-items--right {
	outline: none;
}

.header-items--center > *,
.header-items--left > *,
.header-items--right > * {
	outline: none;
}

.header-items--right {
	text-align: right;
	justify-content: flex-end;
	flex: inherit;
	padding-left: 30px;
}

.header-items--right > * {
	outline: none;
	text-align: left;
}

.header-items--left {
	padding-right: 30px;
}

.header-v3 .main-navigation > li,
.header-v4 .main-navigation > li,
.header-v5 .main-navigation > li,
.header-v6 .main-navigation > li {
	position: relative;
}

.header-v3 .main-navigation > li > a,
.header-v4 .main-navigation > li > a,
.header-v5 .main-navigation > li > a,
.header-v6 .main-navigation > li > a {
	position: relative;
}

.header-v3 .main-navigation > li > a:after,
.header-v4 .main-navigation > li > a:after,
.header-v5 .main-navigation > li > a:after,
.header-v6 .main-navigation > li > a:after {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 14px;
	background-color: rgba(255, 255, 255, 0.2);
}

.header-v3 .main-navigation > li:first-child > a:after,
.header-v4 .main-navigation > li:first-child > a:after,
.header-v5 .main-navigation > li:first-child > a:after,
.header-v6 .main-navigation > li:first-child > a:after {
	display: none;
}

.header-v3 .main-navigation > li.menu-item-has-children > a,
.header-v4 .main-navigation > li.menu-item-has-children > a,
.header-v5 .main-navigation > li.menu-item-has-children > a,
.header-v6 .main-navigation > li.menu-item-has-children > a {
	padding-right: 30px;
}

.header-v3 .main-navigation > li.menu-item-has-children > a .toggle-menu-children,
.header-v4 .main-navigation > li.menu-item-has-children > a .toggle-menu-children,
.header-v5 .main-navigation > li.menu-item-has-children > a .toggle-menu-children,
.header-v6 .main-navigation > li.menu-item-has-children > a .toggle-menu-children {
	right: 10px;
}

.header-v3 .main-navigation > li.menu-item-has-children > a .toggle-menu-children .farmart-svg-icon,
.header-v4 .main-navigation > li.menu-item-has-children > a .toggle-menu-children .farmart-svg-icon,
.header-v5 .main-navigation > li.menu-item-has-children > a .toggle-menu-children .farmart-svg-icon,
.header-v6 .main-navigation > li.menu-item-has-children > a .toggle-menu-children .farmart-svg-icon {
	font-size: 10px;
}

.header-v3 .main-navigation > li > a,
.header-v4 .main-navigation > li > a,
.header-v5 .main-navigation > li > a,
.header-v6 .main-navigation > li > a {
	color: var(--farmart-header-background-text-color-primary);
	padding: 11px 15px;
}

.header-v3 .main-navigation > li > a:hover,
.header-v4 .main-navigation > li > a:hover,
.header-v5 .main-navigation > li > a:hover,
.header-v6 .main-navigation > li > a:hover {
	color: rgba(0, 0, 0, 0.5);
}

.header-v3 .main-navigation > li.current-menu-item > a,
.header-v3 .main-navigation > li.current-menu-item > .toggle-menu-children,
.header-v4 .main-navigation > li.current-menu-item > a,
.header-v4 .main-navigation > li.current-menu-item > .toggle-menu-children,
.header-v5 .main-navigation > li.current-menu-item > a,
.header-v5 .main-navigation > li.current-menu-item > .toggle-menu-children,
.header-v6 .main-navigation > li.current-menu-item > a,
.header-v6 .main-navigation > li.current-menu-item > .toggle-menu-children {
	color: rgba(0, 0, 0, 0.5);
}

.header-v3 .farmart-products-search .product-cat,
.header-v4 .farmart-products-search .product-cat,
.header-v5 .farmart-products-search .product-cat,
.header-v6 .farmart-products-search .product-cat {
	min-width: auto;
}

.header-v3 .farmart-products-search .product-cat-label,
.header-v4 .farmart-products-search .product-cat-label,
.header-v5 .farmart-products-search .product-cat-label,
.header-v6 .farmart-products-search .product-cat-label {
	padding-left: 10px;
}

.header-v3 .farmart-products-search .product-cat .product-cat-label,
.header-v3 .farmart-products-search .product-cat .product-cat-dd option,
.header-v4 .farmart-products-search .product-cat .product-cat-label,
.header-v4 .farmart-products-search .product-cat .product-cat-dd option,
.header-v5 .farmart-products-search .product-cat .product-cat-label,
.header-v5 .farmart-products-search .product-cat .product-cat-dd option,
.header-v6 .farmart-products-search .product-cat .product-cat-label,
.header-v6 .farmart-products-search .product-cat .product-cat-dd option {
	text-transform: inherit;
	font-size: 14px;
}

.header-v1 .header-items--left {
	width: 17%;
}

.header-v1 .header-items--center {
	width: 42.5%;
}

.header-v1 .header-items--right {
	width: 40.5%;
}

.header-v1 .header-bottom .header-items--left {
	width: auto;
}

.header-v1 .header-bottom .header-items--left .farmart-menu-department {
	width: 100%;
}

.header-v1 .header-bottom .header-items--center {
	width: 100%;
}

.header-v1 .header-bottom .header-items--right {
	width: 25%;
}

.header-v3 .header-items--left {
	padding-right: 0;
}

.header-v3 .header-main .header-wrapper,
.header-v3 .header-main .header-items--left {
	align-items: flex-start;
}

.header-v3 .header-main .header-wrapper {
	padding: 25px 0 20px;
}

.header-v3 .header-main .header-items--right {
	margin-top: 6px;
}

.header-v3 .header-main .site-branding {
	margin-top: 6px;
}

.header-v3 .header-main .farmart-menu-department {
	margin-top: 8px;
}

.header-v3 .header-bottom {
	background-color: var(--farmart-header-background-color-primary);
	color: var(--farmart-header-background-text-color-primary);
	--farmart-header-text-color: var( --farmart-header-background-text-color-primary );
}

.header-v3 .header-bottom .header-wrapper {
	padding: 0;
}

.header-v3 .header-bottom .main-navigation > li:first-child > a {
	padding-left: 0;
}

.header-v3 .header-bottom .main-navigation > li:hover > a:hover {
	color: #a6bda5;
}

.header-v3 .main-navigation li.current-menu-item > a,
.header-v3 .main-navigation li.current-menu-item > a .toggle-menu-children {
	color: #a6bda5;
}

.header-v3 .farmart-menu-department {
	background-color: transparent;
	color: var(--farmart-header-text-color);
	padding: 0 35px;
}

.header-v3 .farmart-menu-department .farmart-svg-icon {
	margin-left: 10px;
}

.header-v3 .topbar--left {
	flex: 1 1 35%;
	width: 35%;
}

.header-v3 .topbar--right {
	flex: 1 1 65%;
	width: 65%;
}

.header-v3 .farmart-products-search {
	width: 72%;
}

.header-v3 .farmart-products-search .search-field,
.header-v3 .farmart-products-search .product-cat {
	height: 40px;
}

.header-v3 .farmart-products-search .search-submit.button-icon {
	height: 42px;
	border: 1px solid #dddddd;
}

.header-v3 .farmart-products-search .product-cat {
	line-height: 45px;
}

.header-v3 .farmart-products-search .product-cat:after {
	display: none;
}

.header-v3 .farmart-products-search .search-inner-content {
	border: 1px solid #ddd;
	border-right: none;
}

.header-v3 .farmart-products-search .search-field {
	background-color: #fff;
}

.header-v3 .header-element--compare,
.header-v3 .header-element--wishlist {
	margin-right: 5px;
}

.header-v4 .topbar--right .widget a {
	color: #666;
}

.header-v4 .topbar--right .widget a:hover {
	color: var(--fm-color-primary);
}

.header-v4 .header-main {
	background-color: #fff;
}

.header-v4 .header-main .header-wrapper,
.header-v4 .header-main .header-items--left {
	align-items: flex-start;
}

.header-v4 .header-main .header-wrapper {
	padding: 25px 0 20px;
}

.header-v4 .header-main .site-branding {
	margin-top: 10px;
}

.header-v4 .header-main .farmart-menu-department {
	margin-top: 8px;
}

.header-v4 .header-bottom {
	background-color: var(--farmart-header-background-color-primary);
	color: var(--farmart-header-background-text-color-primary);
	--farmart-header-text-color: var( --farmart-header-background-text-color-primary );
}

.header-v4 .header-bottom .header-wrapper {
	padding: 0;
}

.header-v4 .header-bottom .main-navigation > li:first-child > a {
	padding-left: 0;
}

.header-v4 .header-bottom .main-navigation > li > a {
	color: var(--farmart-header-background-text-color-primary);
}

.header-v4 .header-bottom .main-navigation > li > a:hover {
	color: #a6bda5;
}

.header-v4 .main-navigation li.current-menu-item > a,
.header-v4 .main-navigation li.current-menu-item > a .toggle-menu-children {
	color: #a6bda5;
}

.header-v4 .farmart-menu-department {
	background-color: transparent;
	color: var(--farmart-header-text-color);
	padding: 0 35px;
}

.header-v4 .farmart-menu-department .farmart-svg-icon {
	margin-left: 10px;
}

.header-v4 .header-bar__box-content {
	text-align: left;
}

.header-v4 .header-element--account {
	margin: 0 0 0 15px;
}

.header-v4 .header-element--compare,
.header-v4 .header-element--wishlist {
	margin-right: 5px;
}

.header-v4 .header-element--header-bar {
	margin-right: 15px;
	padding-right: 25px;
	position: relative;
}

.header-v4 .header-element--header-bar:after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 34px;
	background-color: #e5e5e5;
}

.header-v4 .header-element--header-bar span,
.header-v4 .header-element--header-bar a {
	font-size: 18px;
	color: var(--fm-color-primary);
}

.header-v4 .farmart-products-search {
	width: 80%;
}

.header-v4 .farmart-products-search .search-field,
.header-v4 .farmart-products-search .product-cat {
	height: 40px;
}

.header-v4 .farmart-products-search .product-cat {
	line-height: 45px;
}

.header-v4 .farmart-products-search .search-inner-content {
	border: 1px solid #ddd;
	border-right: none;
}

.header-v4 .farmart-products-search .product-cat-label,
.header-v4 .farmart-products-search .product-cat-label .label,
.header-v4 .farmart-products-search .search-field {
	background-color: transparent;
}

.header-v4 .farmart-products-search .search-submit.button-icon {
	background-color: var(--farmart-header-background-color-secondary);
	color: var(--farmart-header-background-text-color-secondary);
	padding-left: 13px;
	padding-right: 13px;
	height: 42px;
}

.header-v4 .farmart-products-search .search-submit.button-icon .farmart-svg-icon {
	font-size: 22px;
}

.header-v5 .topbar,
.header-v5 .header-main,
.header-v5 .header-mobile {
	background-color: #222;
	--farmart-header-text-color: #fff;
}

.header-v5 .topbar {
	color: #777;
	border-bottom: 1px solid #292929;
}

.header-v5 .topbar .widget a,
.header-v5 .topbar .widget .primary-color {
	color: #777;
}

.header-v5 .topbar .widget a:hover,
.header-v5 .topbar .widget .primary-color:hover {
	color: #fff;
}

.header-v5 .topbar .widget a:hover {
	border-color: #fff;
}

.header-v5 .topbar .widget ul li a {
	color: #777;
}

.header-v5 .topbar .widget.topbar-dropdown:hover .current {
	color: #fff;
}

.header-v5 .topbar .widget.topbar-dropdown:hover a {
	color: inherit;
}

.header-v5 .topbar--item > *:after {
	background-color: #393939;
}

.header-v5 .header-main {
	border: none;
}

.header-v5 .header-main .header-items--left {
	flex: 0 0 auto;
	padding-right: 50px;
}

.header-v5 .header-main .header-items--right {
	padding-left: 40px;
}

.header-v5 .header-main .header-wrapper {
	padding: 26px 0;
}

.header-v5 .header-bottom {
	background-color: var(--farmart-header-background-color-primary);
	color: var(--farmart-header-background-text-color-primary);
	--farmart-header-text-color: var( --farmart-header-background-text-color-primary );
}

.header-v5 .header-bottom .header-wrapper {
	padding: 0;
}

.header-v5 .header-bottom .header-items--left .primary-navigation {
	position: relative;
	padding-left: 15px;
}

.header-v5 .header-bottom .header-items--left .primary-navigation:before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 14px;
	background-color: rgba(255, 255, 255, 0.2);
}

.header-v5 .header-bottom .main-navigation > li:first-child > a {
	padding-left: 0;
}

.header-v5 .header-bottom .main-navigation > li > a {
	color: var(--farmart-header-background-text-color-primary);
}

.header-v5 .header-bottom .main-navigation > li > a:hover {
	color: #a6bda5;
}

.header-v5 .main-navigation li.current-menu-item > a,
.header-v5 .main-navigation li.current-menu-item > a .toggle-menu-children {
	color: #a6bda5;
}

.header-v5 .header-element--compare .farmart-svg-icon,
.header-v5 .header-element--wishlist .farmart-svg-icon,
.header-v5 .header-element--cart .farmart-svg-icon {
	color: var(--farmart-header-text-color);
}

.header-v5 .header-element--compare,
.header-v5 .header-element--wishlist {
	margin-right: 0;
}

.header-v5 .header-element--cart .cart-contents .cart-text .cart-price-total {
	color: var(--farmart-header-text-color);
}

.header-v5 .header-element--cart .cart-contents .cart-text .title {
	font-size: 13px;
}

.header-v5 .farmart-menu-department {
	background-color: transparent;
	padding: 0 15px 0 0;
}

.header-v5 .farmart-menu-department .farmart-title {
	text-transform: inherit;
	margin-left: 10px;
}

.header-v5 .farmart-menu-department .farmart-icon-menu {
	font-size: 16px;
	margin-left: 0;
}

.header-v5 .farmart-products-search .search-field,
.header-v5 .farmart-products-search .product-cat,
.header-v5 .farmart-products-search .search-submit,
.header-v5 .farmart-products-search .search-submit.button-icon {
	height: 42px;
}

.header-v5 .farmart-products-search .product-cat {
	line-height: 45px;
}

.header-v5 .farmart-products-search .product-cat:after {
	display: none;
}

.header-v5 .farmart-products-search .search-field {
	background-color: #fff;
}

.header-v6 .topbar,
.header-v6 .header-main {
	background-color: #26901b;
	--farmart-header-text-color: #fff;
}

.header-v6 .topbar {
	color: #fff;
	border-bottom: 1px solid #35982b;
}

.header-v6 .topbar .widget a,
.header-v6 .topbar .widget .primary-color {
	color: #fff;
}

.header-v6 .topbar .widget a:hover {
	color: #fff;
	border-color: #fff;
}

.header-v6 .topbar .widget ul li a {
	color: #777;
}

.header-v6 .topbar .widget.topbar-dropdown:hover .current {
	color: #fff;
}

.header-v6 .topbar .widget.topbar-dropdown:hover a {
	color: #777;
}

.header-v6 .topbar--item > *:after {
	background-color: #46a13d;
}

.header-v6 .header-main {
	border: none;
}

.header-v6 .header-main .header-items--left {
	flex: 0 0 auto;
	padding-right: 0;
}

.header-v6 .header-main .header-items--left > * {
	padding-right: 45px;
}

.header-v6 .header-main .header-items--right {
	padding-left: 40px;
}

.header-v6 .header-main .header-wrapper {
	padding: 26px 0;
}

.header-v6 .header-bottom {
	background-color: #116709;
	color: var(--farmart-header-background-text-color-primary);
}

.header-v6 .header-bottom .header-wrapper {
	padding: 0;
}

.header-v6 .header-element--compare .farmart-svg-icon,
.header-v6 .header-element--wishlist .farmart-svg-icon,
.header-v6 .header-element--cart .farmart-svg-icon,
.header-v6 .header-element--account .farmart-svg-icon {
	color: var(--farmart-header-text-color);
	font-size: 28px;
}

.header-v6 .header-element--compare,
.header-v6 .header-element--wishlist {
	margin-right: 0;
}

.header-v6 .header-element--cart .mini-item-counter {
	background-color: var(--farmart-header-background-color-secondary);
	color: var(--farmart-header-background-text-color-secondary);
}

.header-v6 .header-element--secondary-button a {
	color: var(--farmart-header-text-color);
	border: 1px solid var(--farmart-header-text-color);
	width: 60px;
}

.header-v6 .header-element--account {
	margin: 0 0 0 15px;
}

.header-v6 .header-element--account .farmart-svg-icon {
	font-size: 25px;
}

.header-v6 .farmart-products-search .product-cat-label {
	border-radius: 0;
}

.header-v6 .farmart-products-search .search-submit.button-icon {
	background-color: var(--farmart-header-background-color-secondary);
	color: var(--farmart-header-background-text-color-secondary);
	padding-left: 13px;
	padding-right: 13px;
	height: 42px;
}

.header-v6 .farmart-products-search .search-submit.button-icon .farmart-svg-icon {
	font-size: 22px;
}

.header-v6 .farmart-products-search .search-field,
.header-v6 .farmart-products-search .product-cat,
.header-v6 .farmart-products-search .search-submit {
	height: 42px;
}

.header-v6 .farmart-products-search .product-cat {
	line-height: 45px;
}

.header-v6 .farmart-menu-department {
	background-color: transparent;
	padding: 0 25px 0 0;
}

.header-v6 .farmart-menu-department .farmart-title {
	text-transform: inherit;
}

.header-v6 .farmart-menu-department .farmart-icon {
	margin: 0;
}

.header-v6 .main-navigation > li:before {
	content: '';
	background-color: #327b2b;
}

.header-v6 .main-navigation > li:hover > a {
	color: #a6bda5;
}

.header-v6 .main-navigation > li:first-child:before {
	display: none;
}

.header-v6 .main-navigation > li.current-menu-item > a,
.header-v6 .main-navigation > li.current-menu-item > a > .toggle-menu-children {
	color: #a6bda5;
}

.header-v7 {
	--fm-color-secondary: #80990b;
}

.header-v7 .header-container {
	padding-left: 50px;
	padding-right: 50px;
}

.header-v7 .header-main {
	border: none;
}

.header-v7 .header-wrapper {
	padding: 0;
}

.header-v7 .header-bar__box-icon {
	font-size: 42px;
	color: #ccc;
	margin-right: 25px;
}

.header-v7 .header-bar__box-content {
	text-align: left;
}

.header-v7 .header-element--header-bar p {
	color: var(--fm-color-primary);
	font-size: 13px;
	text-transform: uppercase;
	margin-bottom: 5px;
}

.header-v7 .header-element--header-bar span {
	font-size: 18px;
	font-weight: 700;
	color: #222222;
}

.header-v7 .main-navigation > li > a {
	font-size: 16px;
	padding: 32px 37px;
}

.header-v7 .main-navigation > li.menu-item-has-children > a {
	padding-right: 55px;
}

.header-v7 .main-navigation > li.menu-item-has-children > a .toggle-menu-children {
	right: 30px;
}

.header-v7 .header-element--search {
	margin-left: 20px;
}

.header-v7 .header-element--search .open-search-panel .farmart-svg-icon {
	font-size: 18px;
}

.site-branding {
	flex: 0 1 auto;
	position: relative;
	z-index: 100;
}

.site-branding .logo {
	position: relative;
}

.site-branding .logo:hover {
	text-decoration: none;
}

.site-branding .logo img {
	display: inline-block;
	vertical-align: middle;
}

.site-branding .logo.logo-svg img {
	width: 155px;
}

.topbar {
	--farmart-header-text-hover-color: var( --fm-color-primary );
	display: flex;
	height: 42px;
background-color: #0083c0;
    color: #ffffff;
}

.topbar .widget {
	font-size: 13px;
}

.topbar .widget ul {
	list-style-type: none;
	padding: 0;
}

.topbar .widget a {
	border-bottom: 1px solid transparent;
	color: #666666;
}

.topbar .widget a:hover, .topbar .widget a:focus {
	color: var(--farmart-header-text-hover-color);
	border-color: var(--farmart-header-text-hover-color);
}

.topbar .widget > p {
	margin: 0;
}

.topbar .widget .farmart-svg-icon {
	line-height: 1;
}

.topbar .container:before, .topbar .container:after,
.topbar .row:before,
.topbar .row:after {
	display: none;
}

.topbar > * {
	display: flex;
	align-items: center;
}

.topbar .topbar-dropdown ul {
	padding: 10px 20px;
}

.topbar .topbar-dropdown a {
	border: none;
}

.topbar--item {
	display: flex;
	align-items: center;
}

.topbar--item > * {
	margin: 0;
	padding: 0 15px;
	position: relative;
}

.topbar--item > *:after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 15px;
	background-color: #ddd;
}

.topbar--item > *:last-child {
	padding-right: 0;
}

.topbar--item > *:last-child:after {
	display: none;
}

.topbar--item > *:first-child {
	padding-left: 0;
}

.topbar--left {
	flex: 1 1 45%;
	width: 45%;
}

.topbar--right {
	justify-content: flex-start;
	flex: 1 1 55%;
	width: 55%;
}

.topbar-mobile > * {
	justify-content: center;
}

.topbar-dropdown:hover ul {
	opacity: 1;
	z-index: 100;
	transform: translate(0);
}

.topbar-dropdown:hover .current {
	color: var(--farmart-header-text-hover-color);
}

.topbar-dropdown img {
	margin-right: 5px;
}

.topbar-dropdown .farmart-svg-icon {
	font-size: 10px;
	line-height: 1;
	margin-left: 5px;
}

.topbar-dropdown a,
.topbar-dropdown .current {
	display: flex;
	align-items: center;
}

.topbar-dropdown .current {
	padding: 5px 0;
	cursor: pointer;
	transition: .3s;
}

.topbar-dropdown ul {
	position: absolute;
	right: 0;
	top: calc( 100% + 1px);
	opacity: 0;
	z-index: -1;
	text-align: left;
	list-style: none;
	margin: 0;
	box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
	transition: 0.3s;
	transform: translate(0, 20px);
	background-color: #fff;
	min-width: 150px;
}

.topbar-dropdown.farmart-account-widget ul {
	min-width: 200px;
}

.farmart-currency-widget ul li a {
	height: auto;
}

.farmart-account-widget > a {
	color: var(--farmart-header-text-color);
	border-bottom: none;
	padding: 5px 0;
}

.farmart-account-widget b {
	margin-left: 5px;
}

.farmart-account-widget .farmart-svg-icon {
	margin: 0 5px 0 0;
}

.farmart-products-search {
	width: 100%;
}

.farmart-products-search .form-search,
.farmart-products-search .search-inner-content {
	display: flex;
	width: 100%;
	position: relative;
}

.farmart-products-search .product-cat {
	width: auto;
	float: left;
	position: relative;
	height: 42px;
	min-width: 171px;
	line-height: 42px;
	cursor: pointer;
}

.farmart-products-search .product-cat-label {
	padding-right: 40px;
	padding-left: 15px;
	border: 1px solid #ddd;
	border-right: none;
	color: var(--farmart-header-text-color);
	border-radius: 3px 0 0 3px;
	position: relative;
	height: 100%;
	white-space: nowrap;
	background-color: #f7f7f7;
}

.farmart-products-search .product-cat-dd {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	height: 100%;
	cursor: pointer;
	min-height: 42px;
	width: 100%;
	z-index: 10;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding-left: 10px;
}

.farmart-products-search .search-wrapper {
	width: 100%;
	display: flex;
	position: relative;
}

.farmart-products-search .search-field {
	float: left;
	height: 42px;
	line-height: 1;
	border-left: none;
	border-right: none;
	padding-right: 12px;
	padding-left: 12px;
	position: relative;
	width: 100%;
	border-radius: 0;
}

.farmart-products-search .search-results {
	position: absolute;
	left: 0;
	right: 0;
	border: 1px solid #ccc;
	background-color: #fff;
	padding: 0 20px;
	max-height: 530px;
	overflow-y: auto;
	overflow-x: hidden;
	transform: scaleX(0);
	top: 110%;
	z-index: -1;
	transition: top ease .2s;
}

.farmart-products-search .close-search-results {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	opacity: 0;
	transition: none;
}

.farmart-products-search .close-search-results .farmart-svg-icon {
	background-color: #ffffff;
	font-size: 20px;
	color: #cccccc;
}

.farmart-products-search .search-submit {
	display: flex;
	align-items: center;
	height: 50px;
	line-height: 1;
	padding: 0 30px;
	background-color: var(--farmart-header-background-color-secondary);
	border: none;
	font-weight: 700;
	color: var(--farmart-header-background-text-color-secondary);
	border-radius: 0 3px 3px 0;
	white-space: nowrap;
}

.farmart-products-search .search-submit.button-icon {
	height: 50px;
	line-height: 50px;
	padding-left: 10px;
	padding-right: 18px;
	border-radius: 0 5px 5px 0;
	color: var(--farmart-header-text-color);
	background-color: #f3f3f3;
}

.farmart-products-search .search-submit.button-icon .farmart-svg-icon {
	font-size: 18px;
}

.farmart-products-search .form-search.searching .search-wrapper:before {
	border-width: 1px;
	border-color: #666 #666 #666 transparent;
	border-radius: 50%;
	border-style: solid;
	-webkit-animation: fm-spin-fast 1s linear infinite;
	animation: fm-spin-fast 1s linear infinite;
	content: "";
	width: 13px;
	height: 13px;
	font-weight: 400;
	position: absolute;
	top: 35%;
	right: 12px;
	z-index: 999;
}

.farmart-products-search .form-search.searching .close-search-results {
	opacity: 0;
}

.farmart-products-search .actived .close-search-results {
	opacity: 1;
}

.farmart-products-search .actived .search-inner-content .search-results {
	top: calc(100% - 1px);
	transform: scaleX(1);
	z-index: 9999;
}

.search-inner-content ::-webkit-scrollbar {
	background: transparent;
	width: 7px;
}

.search-inner-content ::-webkit-scrollbar-thumb {
	background-color: #ccc;
}

.search-inner-content .search-results ul {
	margin: 16px 0;
	padding: 0;
	list-style: none;
}

.search-inner-content .search-results ul li {
	display: flex;
	align-items: center;
	padding-bottom: 12px;
	padding-top: 11px;
	border-top: 1px solid #eee;
}

.search-inner-content .search-results ul li:first-child {
	border-top: none;
}

.search-inner-content .search-results ul li img {
	max-width: 60px;
	margin-right: 20px;
	margin-left: 10px;
}

.search-inner-content .search-results ul li .title-item {
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	color: #222222;
	display: block;
}

.search-inner-content .search-results ul li .title-item:hover {
	color: var(--farmart-header-text-hover-color);
}

.search-inner-content .search-results ul li .star-rating {
	float: none;
	margin-top: 10px;
}

.search-inner-content .search-results ul li .price-item {
	font-size: 14px;
	color: var(--farmart-header-text-color);
	line-height: 1;
	margin-top: 14px;
	font-weight: 700;
}

.search-inner-content .search-results ul li .price-item .sale {
	display: none;
}

.search-inner-content .search-results ul li del {
	font-size: 13px;
	color: #555;
	padding-left: 5px;
	font-weight: 400;
}

.search-inner-content .search-results ul li ins {
	font-size: 15px;
	text-decoration: none;
	color: #2f8a33;
	font-weight: 700;
	background-color: transparent;
	float: left;
}

.search-inner-content .search-results ul .search-item {
	display: flex;
	align-items: center;
}

.farmart-products-search .product-cat {
	position: relative;
	height: 50px;
	line-height: 52px;
}

.farmart-products-search .product-cat .product-cat-label,
.farmart-products-search .product-cat .product-cat-dd option {
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
}

.farmart-products-search .product-cat:after {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background-color: #c5c5c5;
	width: 1px;
	height: 23px;
}

.farmart-products-search .product-cat-label {
	border-radius: 5px 0 0 5px;
	border: none;
}

.farmart-products-search .product-cat-label .label {
	padding-left: 7px;
	color: #000;
	background-color: #f3f3f3;
}

.farmart-products-search .product-cat-label .farmart-svg-icon {
	display: inline-block;
	font-size: 9px;
	color: #000;
	position: absolute;
	top: 52%;
	transform: translateY(-50%);
	right: 17px;
}

.farmart-products-search .search-field {
	height: 50px;
	border-top-width: 0;
	border-bottom-width: 0;
	padding: 12px 23px;
	font-size: 13px;
	color: #999;
	background-color: #f3f3f3;
}

.farmart-products-search .search-field::placeholder {
	color: #999;
}

.farmart-products-search .product-cat--left .product-cat:after {
	left: auto;
	right: 0;
}

.farmart-products-search .product-cat--right .product-cat {
	order: 2;
}

.farmart-products-search .product-cat--right .product-cat .product-cat-label {
	border-radius: 0;
}

.farmart-products-search .product-cat--right .search-wrapper {
	order: 1;
}

.farmart-products-search .product-cat--right .search-wrapper .search-field {
	border-radius: 5px 0 0 5px;
}

.farmart-search-icon .farmart-svg-icon {
	color: #838383;
	font-size: 24px;
}

.header-element--search {
	line-height: 1;
}

.header-element--search .open-search-panel {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 2px 5px 0 0;
	background-color: transparent;
}

.header-element--search .open-search-panel .farmart-svg-icon {
	font-size: 24px;
	color: var(--farmart-header-text-color);
	outline: none;
}

.header-element--search .open-search-panel .farmart-svg-icon svg {
	outline: none;
}

.header-element--search .search-panel-content {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	overflow: hidden;
	background-color: #ffffff;
	z-index: -1;
	transition: .25s ease;
	visibility: hidden;
	opacity: 0;
}

.header-element--search .search-panel-content.open {
	visibility: visible;
	z-index: 9999;
	opacity: 1;
}

.header-element--search .top-content {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 60px 0;
}

.header-element--search .top-content .label-search-panel {
	font-size: 30px;
	color: --farmart-header-text-color;
}

.header-element--search .top-content .close-search-panel .farmart-svg-icon {
	font-size: 30px;
	color: var(--farmart-header-text-color);
}

.header-element--search .content-panel {
	width: 70%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	position: relative;
}

.header-element--search .content-panel .search-field {
	font-size: 36px;
	padding: 12px 0;
	line-height: 1;
	position: relative;
	width: 100%;
	border: none;
	border-bottom: 1px solid #cccccc;
}

.header-element--search .content-panel .close-search-results {
	opacity: 0;
}

.header-element--search .content-panel form.searching .search-submit, .header-element--search .content-panel form.actived .search-submit {
	opacity: 0;
}

.header-element--search .content-panel form.actived .close-search-results {
	opacity: 1;
}

.header-element--search .content-panel form.searching .search-wrapper:before {
	border-width: 1px;
	border-color: #666 #666 #666 transparent;
	border-radius: 50%;
	border-style: solid;
	-webkit-animation: fm-spin-fast 1s linear infinite;
	animation: fm-spin-fast 1s linear infinite;
	content: "";
	width: 16px;
	height: 16px;
	font-weight: 400;
	position: absolute;
	top: 28px;
	right: 10px;
	z-index: 999;
}

.header-element--search .content-panel form.searching .close-search-results {
	opacity: 0;
}

.header-element--search .content-panel.actived .search-results {
	top: 100%;
	transform: scaleX(1);
	z-index: 9999;
}

.header-element--search .search-results {
	border: 0;
}

.header-element--search ul.hot-words {
	margin: 0;
	padding: 0;
}

.header-element--search ul.hot-words li {
	padding: 0 5px 5px 0;
	list-style: none;
	display: inline-block;
}

.header-element--search ul.hot-words li a {
	display: block;
	color: #555555;
	background-color: #f5f5f5;
	border-radius: 3px;
	padding: 4px 16px;
	font-size: 14px;
	text-decoration: none;
}

.header-element--search ul.hot-words li a:hover {
	text-decoration: none;
}

.header-element--search .form-search {
	width: 100%;
}

.header-element--search .form-search .close-search-results {
	position: absolute;
	top: 0;
	right: 0;
	background-color: transparent;
	padding: 0 10px;
}

.header-element--search .form-search .close-search-results .farmart-svg-icon {
	color: var(--farmart-header-text-color);
}

.header-element--search .product-cat-click {
	display: flex;
	justify-content: center;
	align-items: center;
	list-style: none;
	margin: 0 0 60px;
	padding: 0;
	overflow-x: auto;
	overflow-y: hidden;
	flex-wrap: nowrap;
	white-space: nowrap;
}

.header-element--search .product-cat-click li {
	margin-right: 45px;
	position: relative;
}

.header-element--search .product-cat-click li:last-child {
	margin-right: 0;
}

.header-element--search .product-cat-click li:after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: '';
	display: block;
	width: 0;
	height: 0;
	background-color: var(--fm-color-primary);
}

.header-element--search .product-cat-click li:hover a, .header-element--search .product-cat-click li.actived a {
	color: var(--fm-color-primary);
}

.header-element--search .product-cat-click li:hover:after, .header-element--search .product-cat-click li.actived:after {
	height: 1px;
	width: 100%;
	transition: 0.4s;
}

.header-element--search .product-cat-click a {
	color: var(--farmart-header-text-color);
	font-size: 16px;
	text-transform: uppercase;
}

.header-element--search .product-cat-click a:hover {
	color: var(--farmart-header-text-hover-color);
}

.header-element--search .search-inner-content {
	display: flex;
	align-items: center;
	flex-direction: column;
}

.header-element--search .search-inner-content .text-search {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.header-element--search .search-inner-content .search-wrapper {
	width: 100%;
	display: flex;
	position: relative;
}

.header-element--search .search-inner-content .field-notice {
	font-weight: 700;
	color: #222222;
}

.header-element--search .search-inner-content .box-search-results {
	position: relative;
	background-color: #ffffff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	padding: 30px 20px 0;
	max-height: calc( 100vh - 350px);
	overflow-y: auto;
	overflow-x: hidden;
	transform: scaleX(0);
	opacity: 0;
	visibility: hidden;
	z-index: -1;
	transition: top ease .2s;
	display: none;
	width: 100%;
}

.header-element--search .actived .search-inner-content .box-search-results {
	transform: scaleX(1);
	opacity: 1;
	visibility: visible;
	z-index: 9999;
	display: block;
}

.header-element--search .form-search .close-search-results {
	top: 52%;
	transform: translateY(-50%);
	line-height: 1;
}

.header-element--search .form-search .close-search-results .farmart-svg-icon {
	font-size: 16px;
}

.admin-bar .search-panel-content {
	top: 32px;
}

.farmart-search-hot-items {
	display: flex;
	list-style-type: none;
	padding: 0;
	margin: 0;
	font-size: 14px;
	margin-top: 8px;
}

.farmart-search-hot-items .item__first {
	font-weight: 700;
	color: var(--farmart-header-text-color);
	margin-right: 10px;
	padding-right: 0;
}

.farmart-search-hot-items .item__first:after {
	display: none;
}

.farmart-search-hot-items li {
	position: relative;
	padding-right: 10px;
	margin-right: 10px;
}

.farmart-search-hot-items li:after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 15px;
	background-color: #888;
}

.farmart-search-hot-items li:last-child {
	padding-right: 0;
	margin-right: 0;
}

.farmart-search-hot-items li:last-child:after {
	display: none;
}

.farmart-search-hot-items li a {
	color: #888;
	border-bottom: 1px solid transparent;
}

.farmart-search-hot-items li a:hover {
	color: var(--fm-color-primary);
	border-color: var(--fm-color-primary);
}

.header-element--header-bar {
	display: flex;
	align-items: center;
}

.header-element--header-bar span,
.header-element--header-bar a {
	font-size: 22px;
	font-weight: 700;
	line-height: 22px;
	margin-bottom: 5px;
	color: var(--farmart-header-text-color);
}

.header-element--header-bar p {
	color: #999;
	font-size: 13px;
	font-weight: 400;
	margin: 0;
}

.header-bar__box-icon {
	font-size: 24px;
	margin-right: 20px;
}

.header-bar__box-content {
	text-align: right;
}

.header-element--button a {
	display: block;
	border-radius: 3px;
	font-weight: 700;
	text-align: center;
}

.header-element--primary-button a {
	background-color: var(--farmart-header-background-color-secondary);
	color: var(--farmart-header-background-text-color-secondary);
	border: 1px solid transparent;
	padding: 3px 19px;
}

.header-element--primary-button a:hover {
	color: var(--farmart-header-background-text-color-secondary);
}

.header-element--secondary-button a {
	background-color: transparent;
	color: #222222;
	font-size: 13px;
	line-height: 18px;
	border: 1px solid #222222;
	padding: 2px 10px;
}

.header-element--account {
	position: relative;
	margin: 0 26px 0 108px;
	line-height: 1;
}

.header-element--account > a {
	position: relative;
	display: inline-flex;
	align-items: center;
	color: --farmart-header-text-color;
}

.header-element--account .login-text {
	display: flex;
	flex-direction: column;
	margin-left: 12px;
	font-weight: 700;
}

.header-element--account .login-text span {
	display: block;
	line-height: 1.45;
}

.header-element--account .farmart-svg-icon {
	font-size: 24px;
	padding: 0 0 0 3px;
	color: #000;
}

.header-element--account .preamble {
	color: #000;
	font-weight: 700;
	margin-bottom: 20px;
}

.header-element--account .dropdown {
	border-width: 1px 0 0 1px;
	border-style: solid;
	border-color: #cccccc;
	width: 15px;
	height: 15px;
	display: block;
	transform: translateX(-50%) rotate(45deg) scale(0);
	background-color: #fff;
	position: absolute;
	left: 50%;
	top: calc( 100% + 50px);
	z-index: 1000;
	opacity: 0;
	transition: top ease .3s;
}

.header-element--account .dropdown-submenu {
	border-top: 35px solid transparent;
	position: absolute;
	opacity: 0;
	width: 270px;
	top: calc( 100% + 15px);
	right: 0;
	transform: scaleX(0);
	transition: top ease .3s;
	z-index: 999;
}

.header-element--account .dropdown-submenu .wrapper {
	border: 1px solid #ddd;
	padding: 20px 25px;
	border-radius: 3px;
	background-color: #fff;
}

.header-element--account .dropdown-submenu ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.header-element--account .dropdown-submenu ul a {
	color: #555555;
}

.header-element--account .dropdown-submenu ul a:hover {
	color: var(--fm-color-primary);
	box-shadow: inset 0 0 0 transparent, inset 0 -1px 0 var(--fm-color-primary);
}

.header-element--account .dropdown-submenu ul li {
	margin-bottom: 13px;
}

.header-element--account .dropdown-submenu a.logout {
	color: #555555;
	display: flex;
	align-items: center;
	line-height: 1;
	border-top: 1px solid #ddd;
	padding-top: 15px;
	margin-top: 24px;
	margin-bottom: 9px;
}

.header-element--account .dropdown-submenu a.logout:hover {
	box-shadow: none;
}

.header-element--account .dropdown-submenu a.logout:hover .farmart-svg-icon {
	color: var(--fm-color-primary);
}

.header-element--account .dropdown-submenu a.logout .farmart-svg-icon {
	padding-right: 2px;
	font-size: 15px;
	color: #555555;
}

.header-element--account:hover .dropdown-submenu {
	transform: scaleX(1);
	opacity: 1;
	top: 100%;
}

.header-element--account:hover .dropdown {
	transform: translateX(-50%) rotate(45deg) scale(1);
	opacity: 1;
	top: calc( 100% + 27px);
}

.header-element--account .header-account--text {
	color: var(--farmart-header-text-color);
	margin-left: 17px;
}

.header-element--account .header-account--text span {
	display: block;
	margin-bottom: 10px;
}

.header-element--compare,
.header-element--wishlist {
	margin-right: 15px;
	line-height: 1;
}

.header-element--compare a,
.header-element--wishlist a {
	position: relative;
	display: inline-block;
	padding: 0 10px;
}

.header-element--compare .farmart-svg-icon,
.header-element--wishlist .farmart-svg-icon,
.header-element--cart .farmart-svg-icon {
	font-size: 24px;
	color: var(--farmart-header-text-color);
}

.header-element--compare .mini-item-counter,
.header-element--wishlist .mini-item-counter,
.header-element--cart .mini-item-counter {
	position: absolute;
	right: 0;
	top: -10px;
	display: block;
	text-align: center;
	background-color: var(--farmart-header-background-color-primary);
	border-radius: 3px;
	font-size: 10px;
	font-weight: 700;
	color: var(--farmart-header-background-text-color-primary);
	padding: 5px 5px 3px;
	line-height: 1;
	min-width: 18px;
}

.mini-cart-content .widget_shopping_cart_content {
	border: 1px solid #cccccc;
	background-color: #fff;
}

.mini-cart-content ul.woocommerce-mini-cart {
	padding: 35px 25px 0;
	border-radius: 3px;
	max-height: 100vh;
	overflow-y: auto;
	overflow-x: hidden;
}

.mini-cart-content ul.woocommerce-mini-cart::-webkit-scrollbar {
	background: 0 0;
	width: 7px;
}

.mini-cart-content ul.woocommerce-mini-cart::-webkit-scrollbar-thumb {
	background-color: #ccc;
}

.mini-cart-content li.woocommerce-mini-cart-item {
	list-style: none;
	display: flex;
	position: relative;
	padding-bottom: 20px;
	margin-top: 20px;
	border-bottom: 1px solid #ccc;
}

.mini-cart-content li.woocommerce-mini-cart-item:first-child {
	margin-top: 0;
}

.mini-cart-content li.woocommerce-mini-cart-item:last-child {
	border: none;
}

.mini-cart-content .product-image {
	flex: none;
	width: 60px;
	height: 60px;
	margin-right: 20px;
}

.mini-cart-content .product-content {
	padding-right: 40px;
}

.mini-cart-content .product-name {
	margin-bottom: 5px;
}

.mini-cart-content .product-name a {
	line-height: 1.428;
	color: #000;
}

.mini-cart-content .product-name a:hover {
	color: #26901b;
}

.mini-cart-content .quantity .amount {
	font-weight: 700;
}

.mini-cart-content .remove {
	position: absolute;
	right: 0;
	top: 0;
	display: block;
	width: 20px;
	height: 20px;
	line-height: 15px;
	font-size: 20px;
	text-align: center;
	color: #000;
	transition: ease .5s;
}

.mini-cart-content .remove:hover {
	color: #26901b;
}

.mini-cart-content .remove .farmart-svg-icon {
	font-size: 20px;
	color: inherit;
}

.mini-cart-content .control-button {
	padding: 0 25px 30px;
}

.mini-cart-content .woocommerce-mini-cart__total {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 700;
	color: #000;
	margin: 46px 0 0;
}

.mini-cart-content .woocommerce-mini-cart__total .amount {
	color: #fab528;
	font-size: 16px;
}

.mini-cart-content .woocommerce-mini-cart__buttons {
	margin: 20px 0 0;
}

.mini-cart-content .woocommerce-mini-cart__buttons a {
	font-weight: 700;
	width: 48%;
	text-align: center;
	padding: 8px 20px;
	color: #222222;
	background-color: #eeeeee;
	border-radius: 3px;
	border: 1px solid #cccccc;
	transition: ease .5s;
}

.mini-cart-content .woocommerce-mini-cart__buttons a.checkout {
	background-color: #ff7200;
	color: #fff;
	border-color: transparent;
}

.header-element--cart {
	position: relative;
	margin: 0;
	/***Content***/
}

.header-element--cart .cart-contents {
	display: block;
}

.header-element--cart .cart-contents .cart-content {
	display: flex;
	align-items: center;
}

.header-element--cart .cart-contents .cart-icon {
	position: relative;
	padding: 0 10px;
	display: block;
	line-height: 1;
}

.header-element--cart .cart-contents .cart-content:before, .header-element--cart .cart-contents .cart-content:after {
	display: none;
}

.header-element--cart .cart-contents .cart-text {
	margin-left: 12px;
	line-height: 1;
}

.header-element--cart .cart-contents .cart-text .title {
	line-height: 1;
	display: block;
	margin-bottom: 7px;
	font-size: 11px;
	color: #777777;
}

.header-element--cart .cart-contents .cart-text .cart-price-total {
	color: var(--farmart-header-text-color);
	font-weight: 700;
	font-size: 16px;
	line-height: 1;
	display: block;
}

.header-element--cart .cart-contents .cart-info {
	color: #555;
	display: none;
}

.header-element--cart .cart-contents .cart-info > * {
	display: block;
	line-height: 1.45;
}

.header-element--cart .cart-contents .cart-info .price {
	color: #2f8a33;
	font-weight: 700;
}

.header-element--cart .dropdown {
	border-width: 1px 0 0 1px;
	border-style: solid;
	border-color: #b3b3b3;
	width: 15px;
	height: 15px;
	display: block;
	transform: translateX(-50%) rotate(45deg) scale(0);
	background-color: #fff;
	position: absolute;
	left: 50%;
	top: calc( 100% + 32px);
	z-index: 1000;
	opacity: 0;
	transition: top ease .3s;
}

.header-element--cart .mini-cart-content {
	border-top: 27px solid transparent;
	opacity: .5;
	width: 360px;
	position: absolute;
	top: calc( 100% + 15px);
	right: 0;
	transform: scaleX(0);
	transition: top ease .3s;
	z-index: 999;
}

.header-element--cart ul.woocommerce-mini-cart {
	max-height: 530px;
}

.header-element--cart .woocommerce-mini-cart__buttons {
	display: flex;
	justify-content: space-between;
	margin: 17px 0 0;
}

.header-element--cart .woocommerce-mini-cart__empty-message {
	margin: 15px 0;
	text-align: center;
}

.header-element--cart:hover .mini-cart-content {
	transform: scaleX(1);
}

.header-element--cart:hover .mini-cart-content,
.header-element--cart:hover .fm-cart__inner:before {
	opacity: 1;
	top: 100%;
}

.header-element--cart:hover .dropdown {
	opacity: 1;
	transform: translateX(-50%) rotate(45deg) scale(1);
	top: calc( 100% + 19px);
}

.cart-panel {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
	z-index: 1600;
}

.cart-panel.open {
	display: block;
}

.cart-panel.side-left .box-cart-wrapper {
	left: 0;
	transform: translateX(-100%);
}

.cart-panel.side-left .box-cart-wrapper.open {
	transform: none;
}

.cart-panel.side-right .box-cart-wrapper {
	right: 0;
	transform: translateX(100%);
}

.cart-panel.side-right .box-cart-wrapper.open {
	transform: none;
}

.cart-panel .box-cart-wrapper {
	position: absolute;
	width: 350px;
	top: 0;
	height: 100%;
	max-width: 100%;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-color: #fff;
	transition: transform .4s;
}

.cart-panel .box-cart-wrapper.open ~ .fm-off-canvas-layer {
	display: block;
}

.cart-panel .box-cart-wrapper .box-cart-content {
	height: calc( 100vh - 100px);
}

.cart-panel .box-cart-wrapper .widget_shopping_cart_content {
	border: none;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.cart-panel .box-cart-wrapper .mini-cart-content {
	height: 100%;
}

.cart-panel .fm-off-canvas-layer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
	background-color: rgba(0, 0, 0, 0.25);
}

.cart-panel .fm-off-canvas-layer.open {
	display: block;
	z-index: 8888;
}

.cart-panel .top-content {
	padding: 30px 20px 25px;
	background-color: var(--farmart-header-background-color-primary);
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--farmart-header-background-text-color-primary);
}

.cart-panel .top-content .text-cart {
	font-weight: 700;
}

.cart-panel .top-content .mini-item-counter {
	position: relative;
	display: inline-block;
	right: 0 !important;
	background-color: transparent;
	padding: 0 6px;
	font-size: 14px;
}

.cart-panel .top-content .mini-item-counter:before {
	content: "(";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
}

.cart-panel .top-content .mini-item-counter:after {
	content: ")";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
}

.cart-panel .top-content .go-back {
	cursor: pointer;
}

.cart-panel .control-button {
	z-index: 99;
	flex: none;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	overflow: hidden;
	width: 100%;
	padding: 0 20px;
	background-color: #fff;
}

.cart-panel .woocommerce-mini-cart__total {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 700;
	font-size: 16px;
	color: #222;
	margin: 25px 0 0;
}

.cart-panel .woocommerce-mini-cart__buttons a {
	display: block;
	width: 100%;
}

.cart-panel .woocommerce-mini-cart__buttons a:last-child {
	margin-top: 10px;
}

.cart-panel .woocommerce-mini-cart__empty-message {
	height: 100%;
	display: flex;
	align-items: center;
	text-align: center;
	margin: 0 auto;
}

.admin-bar .cart-panel .box-cart-wrapper {
	top: 32px;
}

.admin-bar .cart-panel .control-button {
	padding-bottom: 30px;
}

body .blockUI.blockOverlay {
	position: relative;
	background-color: rgba(255, 255, 255, 0.7) !important;
	background-image: none !important;
}

body .blockUI.blockOverlay:after {
	display: none;
}

body .blockUI.blockOverlay:before {
	position: absolute;
	top: 25%;
	left: 50%;
	z-index: 9999;
	color: transparent !important;
	content: " ";
	width: 25px;
	height: 25px;
	border-radius: 50%;
	border-width: 1px;
	border-style: solid;
	border-color: var(--fm-color-primary) transparent var(--fm-color-primary) transparent;
	display: inline-block;
	animation: lds-dual-ring 0.5s linear infinite;
}

.header-transparent .site-header {
	position: absolute;
	left: 0;
	right: 0;
	z-index: 999;
	padding-top: 0;
	padding-bottom: 0;
}

.header-sticky .site-header.minimized {
	position: fixed;
	right: 0;
	left: 0;
	top: 0;
	background-color: #fff;
	box-shadow: 0 1px 1px 0 #f0f0f0;
	z-index: 999;
	animation-name: fadeInDown;
	animation-duration: .25s;
	border-bottom: none;
	max-width: 1920px;
	margin: 0 auto;
}

.header-sticky .site-header.minimized.header-main-no-sticky .header-main {
	display: none;
}

.header-sticky .site-header.minimized.header-bottom-no-sticky .header-bottom {
	display: none;
}

.header-sticky .site-header.minimized.header-mobile-no-sticky .header-mobile {
	display: none;
}

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

@media (max-width: 782px) {
	.header-sticky.admin-bar .site-header.minimized {
		top: 46px;
	}
}

@media (max-width: 600px) {
	.header-sticky.admin-bar .site-header.minimized {
		top: 0;
	}
}

/*--------------------------------------------------------------
## Footer
--------------------------------------------------------------*/
.footer-newsletter {
	--fm-newsletter-background-color: #ffffff;
	--fm-newsletter-text-color: #000000;
	background-color: var(--fm-newsletter-background-color);
	background-size: cover;
}

.footer-newsletter > * {
	border: none;
}

.footer-newsletter__wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 40px 0 32px;
}

.footer-newsletter__wrapper form {
	width: 46%;
}

.footer-newsletter__wrapper form .mc4wp-form-fields label {
	flex: auto;
}

.footer-newsletter__wrapper form .mc4wp-form-fields label input {
	width: 100%;
}

.footer-newsletter__wrapper form .mc4wp-form-fields input[type="email"] {
	color: #000000;
	background-color: #ffffff;
}

.footer-newsletter__wrapper form .mc4wp-form-fields input[type="email"]::placeholder {
	color: #aaaaaa;
}

.footer-newsletter__wrapper form .mc4wp-form-fields input[type="submit"] {
	background-color: #000000;
	color: #ffffff;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 14px;
	padding: 0 45.28px;
}

.footer-newsletter__title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--fm-newsletter-text-color);
	font-size: 22px;
	font-weight: bold;
	line-height: 32px;
}

.footer-newsletter__title .farmart-svg-icon {
	font-size: 52px;
	font-weight: normal;
	margin-right: 27px;
}

.footer-extra .footer-extra__wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 60px 0 46px;
}

.footer-extra .footer-extra__item {
	box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 32.5px 0;
	flex: auto;
	margin-right: 15px;
}

.footer-extra .footer-extra__item:hover .footer-extra__content--desc {
	color: var(--farmart-footer-hover-color);
}

.footer-extra .footer-extra__item:last-child {
	margin-right: 0;
}

.footer-extra__content--title {
	font-size: 13px;
	text-transform: uppercase;
	color: #888888;
	margin-bottom: 10px;
}

.footer-extra__content--desc {
	font-size: 20px;
	color: var(--farmart-footer-heading-color);
	font-weight: 700;
	transition: .3s;
}

.footer-extra__icon {
	margin-left: 58px;
}

.footer-extra__icon .farmart-svg-icon {
	font-size: 56px;
	color: #e5e5e5;
}

.footer-infor__wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 57.5px 0 47.5px;
	margin: 0 -15px;
}

.footer-infor__item {
	display: flex;
	align-items: center;
	padding: 7.5px 15px;
}

.footer-infor__image {
	margin-right: 23px;
}

.footer-infor__image .farmart-svg-icon {
	font-size: 34px;
}

.footer-infor__content--title {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: -1px;
	color: var(--farmart-footer-heading-color);
	margin: 0 0 3px;
}

.footer-infor__content--desc {
	color: var(--farmart-footer-text-color);
	letter-spacing: -.5px;
}

.footer-widgets > * {
	padding: 80px 0 45px;
}

.footer-widgets .widget-title {
	font-size: 18px;
	line-height: 24px;
	text-transform: capitalize;
	letter-spacing: -.5px;
	color: var(--farmart-footer-heading-color);
	padding-bottom: 33px;
}

.footer-widgets .textwidget {
	color: #555;
	line-height: 22px;
}

.footer-widgets .widget {
	margin-bottom: 30px;
}

.footer-widgets .widget ul {
	list-style-type: none;
	padding: 0;
}

.footer-widgets .widget ul li a {
	color: var(--farmart-footer-text-color);
}

.footer-widgets .widget ul li a:hover {
	color: var(--farmart-footer-hover-color);
}

.footer-widgets .row-flex {
	justify-content: space-around;
}

.footer-widgets-area-diff .row-flex {
	flex-wrap: inherit;
}

.footer-widgets-diff-item {
	padding: 0 15px;
}

.footer-widget-description .farmart-svg-icon {
	margin-right: 10px;
}

.footer-widget-description li {
	padding: 0;
}

.footer-widget-description h3 {
	font-size: 25px;
	margin: 8px 0 23px 30px;
}

.widget_mc4wp_form_widget .mc4wp-form-fields input {
	margin: 0;
	height: 50px;
	line-height: 50px;
	padding: 0 20px;
	border-right: none;
}

.widget_mc4wp_form_widget .mc4wp-form-fields input::-webkit-input-placeholder {
	color: #777;
}

.widget_mc4wp_form_widget .mc4wp-form-fields input::-moz-placeholder {
	/* Firefox 19+ */
	color: #777;
}

.widget_mc4wp_form_widget .mc4wp-form-fields input:-ms-input-placeholder {
	/* IE 10+ */
	color: #777;
}

.widget_mc4wp_form_widget .mc4wp-form-fields input:-moz-placeholder {
	/* Firefox 18- */
	color: #777;
}

.widget_mc4wp_form_widget .mc4wp-form-fields input[type='email'] {
	padding-left: 55px;
	border-color: #ccc;
}

.widget_mc4wp_form_widget .mc4wp-form-fields input[type='submit'] {
	flex: 1 1 130px;
	background-color: var(--fm-background-color-secondary);
	color: var(--fm-background-text-color-secondary);
	line-height: 45px;
	padding: 0;
}

.widget_mc4wp_form_widget .mc4wp-form-fields label {
	position: relative;
}

.widget_mc4wp_form_widget .mc4wp-form-fields label:before {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 25px;
	background-image: url("data:image/svg+xml;base64,PHN2ZyBpZD0iQ2FwYV8xIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA0NzkuMDU4IDQ3OS4wNTgiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCA0NzkuMDU4IDQ3OS4wNTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtNDM0LjE0NiA1OS44ODJoLTM4OS4yMzRjLTI0Ljc2NiAwLTQ0LjkxMiAyMC4xNDYtNDQuOTEyIDQ0LjkxMnYyNjkuNDdjMCAyNC43NjYgMjAuMTQ2IDQ0LjkxMiA0NC45MTIgNDQuOTEyaDM4OS4yMzRjMjQuNzY2IDAgNDQuOTEyLTIwLjE0NiA0NC45MTItNDQuOTEydi0yNjkuNDdjMC0yNC43NjYtMjAuMTQ2LTQ0LjkxMi00NC45MTItNDQuOTEyem0wIDI5Ljk0MWMyLjAzNCAwIDMuOTY5LjQyMiA1LjczOCAxLjE1OWwtMjAwLjM1NSAxNzMuNjQ5LTIwMC4zNTYtMTczLjY0OWMxLjc2OS0uNzM2IDMuNzA0LTEuMTU5IDUuNzM4LTEuMTU5em0wIDI5OS40MTFoLTM4OS4yMzRjLTguMjYgMC0xNC45NzEtNi43MS0xNC45NzEtMTQuOTcxdi0yNTEuNjQ4bDE5OS43NzggMTczLjE0MWMyLjgyMiAyLjQ0MSA2LjMxNiAzLjY1NSA5LjgxIDMuNjU1czYuOTg4LTEuMjEzIDkuODEtMy42NTVsMTk5Ljc3OC0xNzMuMTQxdjI1MS42NDljLS4wMDEgOC4yNi02LjcxMSAxNC45Ny0xNC45NzEgMTQuOTd6Ii8+PC9zdmc+");
	width: 16px;
	height: 16px;
}

.footer-link > * {
	padding: 47px 0 34px;
}

.footer-link .widget_nav_menu {
	display: flex;
	margin: 0 0 13px;
	font-size: 14px;
}

.footer-link .widget_nav_menu .widget-title {
	font-size: 14px;
	color: var(--farmart-footer-heading-color);
	margin: 0 7px 0 0;
	padding: 0;
	text-transform: capitalize;
	font-weight: 700;
}

.footer-link .widget_nav_menu div {
	font-size: 14px;
}

.footer-link .widget_nav_menu ul {
	display: inline;
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-link .widget_nav_menu ul li {
	display: inline;
	padding: 0;
	margin: 0;
}

.footer-link .widget_nav_menu ul li a {
	color: var(--farmart-footer-text-color);
	font-size: 14px;
	border-left: 1px solid var(--farmart-footer-text-color);
	display: inline;
	padding-left: 9px;
	padding-right: 6px;
	line-height: 1;
}

.footer-link .widget_nav_menu ul li a:hover {
	color: var(--farmart-footer-hover-color);
}

.footer-link .widget_nav_menu ul.menu > li:first-child > a {
	border: none;
	padding-left: 0;
}

.footer-main {
	padding: 35px 0;
}

.footer-main > * {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer-main .container:before, .footer-main .container:after {
	display: none;
}

.footer-main .footer-items {
	display: flex;
	align-items: center;
}

.footer-payments .payments {
	list-style: none;
	padding: 0;
	margin: 0 -2.5px;
}

.footer-payments li {
	display: inline-block;
	padding: 0 2.5px;
}

.footer-payments li a {
	display: block;
}

.socials-menu .menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.socials-menu li {
	display: inline-block;
	padding: 0 8px;
}

.socials-menu li:first-child {
	padding-left: 0;
}

.socials-menu li:last-child {
	padding-right: 0;
}

.socials-menu li a {
	color: var(--farmart-footer-heading-color);
}

.socials-menu li a:hover {
	color: var(--farmart-footer-hover-color);
}

.socials-menu span:not(.farmart-svg-icon) {
	display: none;
}

.farmart-footer-socials-menu {
	display: flex;
	align-items: center;
	justify-content: center;
}

.farmart-footer-socials-menu .farmart-footer-social-text {
	margin-right: 15px;
}

.footer-navigation.main-navigation ul ul,
.footer-navigation.main-navigation li .toggle-menu-children {
	display: none;
}

.site-footer {
	--farmart-footer-heading-color: $color__darker;
	--farmart-footer-text-color: #555;
	--farmart-footer-hover-color: var( --fm-color-primary );
}

.site-footer {
	position: relative;
	color: var(--farmart-footer-text-color);
	border-top: 1px solid #dcdcdc;
}

.site-footer h1, .site-footer h2, .site-footer h3, .site-footer h4, .site-footer h5, .site-footer h6 {
	color: var(--farmart-footer-heading-color);
}

.site-footer .textwidget {
	color: var(--farmart-footer-text-color);
}

.site-footer > * > div {
	border-bottom: 1px solid #dcdcdc;
}

.site-footer > *:last-child > div {
	border: none;
	padding-bottom: 0;
}

.site-footer .footer-right {
	flex: 1;
	text-align: right;
	justify-content: flex-end;
}

.site-footer .footer-right > * {
	margin-left: 40px;
}

.site-footer .footer-left {
	flex: 1;
	text-align: left;
	justify-content: flex-start;
}

.site-footer .footer-left > * {
	margin-right: 40px;
}

.footer-background {
	background-repeat: no-repeat;
	background-position: center bottom;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -9;
}

.primary-color {
	color: var(--fm-color-primary);
}

.backtotop {
	position: fixed;
	right: 30px;
	bottom: 30px;
	display: block;
	width: 34px;
	height: 34px;
	line-height: 34px;
	text-align: center;
	color: #fff;
	background-color: #222222;
	border-radius: 3px;
	opacity: 0;
	z-index: -99;
	transition: ease .3s;
}

.backtotop.show {
	opacity: 1;
	z-index: 999;
}

.backtotop:hover {
	color: #fff;
}

.farmart-svg-icon {
	display: inline-flex;
}

.farmart-svg-icon svg {
	vertical-align: -0.125em;
	width: 1em;
	height: 1em;
	display: inline-block;
	fill: currentColor;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	/* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery-caption {
	display: block;
}

.gallery-icon {
	margin-bottom: 25px;
}

.gallery {
	margin-bottom: 1.5em;
	margin-left: -7px;
	margin-right: -7px;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
	margin: 0;
	padding: 7px;
	margin-bottom: 35px;
}

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

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

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

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

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

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

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

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

.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
	display: none;
}

.blocks-gallery-caption {
	width: inherit;
	margin-bottom: 3em;
	font-style: italic;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
.fm-preloader .farmart-preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	background-color: rgba(255, 255, 255, 0.82);
}

.fm-preloader .farmart-preloader .farmart-loading {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: block;
}

.fm-preloader .farmart-preloader .farmart-loading:after {
	width: 40px;
	height: 40px;
	border-color: var(--fm-color-primary) transparent var(--fm-color-primary) transparent;
}

.fm-preloader .farmart-preloader.fade-in {
	display: none;
}

.fm-catalog-ajax-loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	background-color: rgba(255, 255, 255, 0.82);
}

.fm-catalog-ajax-loader .farmart-loading {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: block;
}

.fm-catalog-ajax-loader .farmart-loading:after {
	width: 40px;
	height: 40px;
	border-color: var(--fm-color-primary) transparent var(--fm-color-primary) transparent;
}

.fm-catalog-ajax-loader.fade-in {
	display: none;
}

/*--------------------------------------------------------------
# Col
--------------------------------------------------------------*/
.col-xs-1-5, .col-sm-1-5, .col-md-1-5, .col-lg-1-5,
.col-xs-2-5, .col-sm-2-5, .col-md-2-5, .col-lg-2-5,
.col-xs-3-5, .col-sm-3-5, .col-md-3-5, .col-lg-3-5,
.col-xs-4-5, .col-sm-4-5, .col-md-4-5, .col-lg-4-5 {
	position: relative;
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px;
}

.col-xs-1-5 {
	width: 20%;
	float: left;
}

.col-xs-2-5 {
	width: 40%;
	float: left;
}

.col-xs-3-5 {
	width: 60%;
	float: left;
}

.col-xs-4-5 {
	width: 80%;
	float: left;
}

@media (min-width: 768px) {
	.col-sm-1-5 {
		width: 20%;
		float: left;
	}
	.col-sm-2-5 {
		width: 40%;
		float: left;
	}
	.col-sm-3-5 {
		width: 60%;
		float: left;
	}
	.col-sm-4-5 {
		width: 80%;
		float: left;
	}
}

@media (min-width: 992px) {
	.col-md-1-5 {
		width: 20%;
		float: left;
	}
	.col-md-2-5 {
		width: 40%;
		float: left;
	}
	.col-md-3-5 {
		width: 60%;
		float: left;
	}
	.col-md-4-5 {
		width: 80%;
		float: left;
	}
}

@media (min-width: 1200px) {
	.col-lg-1-5 {
		width: 20%;
		float: left;
	}
	.col-lg-2-5 {
		width: 40%;
		float: left;
	}
	.col-lg-3-5 {
		width: 60%;
		float: left;
	}
	.col-lg-4-5 {
		width: 80%;
		float: left;
	}
}

.row-flex {
	display: flex;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
}

.col-flex-xs-12,
.col-flex-sm-12,
.col-flex-md-12,
.col-flex-lg-12 {
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px;
}

.col-flex-xs-11,
.col-flex-sm-11,
.col-flex-md-11,
.col-flex-lg-11 {
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px;
}

.col-flex-xs-10,
.col-flex-sm-10,
.col-flex-md-10,
.col-flex-lg-10 {
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px;
}

.col-flex-xs-9,
.col-flex-sm-9,
.col-flex-md-9,
.col-flex-lg-9 {
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px;
}

.col-flex-xs-8,
.col-flex-sm-8,
.col-flex-md-8,
.col-flex-lg-8 {
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px;
}

.col-flex-xs-7,
.col-flex-sm-7,
.col-flex-md-7,
.col-flex-lg-7 {
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px;
}

.col-flex-xs-6,
.col-flex-sm-6,
.col-flex-md-6,
.col-flex-lg-6 {
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px;
}

.col-flex-xs-5,
.col-flex-sm-5,
.col-flex-md-5,
.col-flex-lg-5 {
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px;
}

.col-flex-xs-4,
.col-flex-sm-4,
.col-flex-md-4,
.col-flex-lg-4 {
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px;
}

.col-flex-xs-3,
.col-flex-sm-3,
.col-flex-md-3,
.col-flex-lg-3 {
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px;
}

.col-flex-xs-2,
.col-flex-sm-2,
.col-flex-md-2,
.col-flex-lg-2 {
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px;
}

.col-flex-xs-1,
.col-flex-sm-1,
.col-flex-md-1,
.col-flex-lg-1 {
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px;
}

.col-flex-xs-1-5, .col-flex-sm-1-5, .col-flex-md-1-5, .col-flex-lg-1-5,
.col-flex-xs-2-5, .col-flex-sm-2-5, .col-flex-md-2-5, .col-flex-lg-2-5,
.col-flex-xs-3-5, .col-flex-sm-3-5, .col-flex-md-3-5, .col-flex-lg-3-5,
.col-flex-xs-4-5, .col-flex-sm-4-5, .col-flex-md-4-5, .col-flex-lg-4-5 {
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px;
}

.col-flex-xs-12 {
	flex: 0 0 100%;
	max-width: 100%;
}

.col-flex-xs-11 {
	flex: 0 0 91.66667%;
	max-width: 91.66667%;
}

.col-flex-xs-10 {
	flex: 0 0 83.33333%;
	max-width: 83.33333%;
}

.col-flex-xs-9 {
	flex: 0 0 75%;
	max-width: 75%;
}

.col-flex-xs-8 {
	flex: 0 0 66.66667%;
	max-width: 66.66667%;
}

.col-flex-xs-7 {
	flex: 0 0 58.33333%;
	max-width: 58.33333%;
}

.col-flex-xs-6 {
	flex: 0 0 50%;
	max-width: 50%;
}

.col-flex-xs-5 {
	flex: 0 0 41.66667%;
	max-width: 41.66667%;
}

.col-flex-xs-4 {
	flex: 0 0 33.33333%;
	max-width: 33.33333%;
}

.col-flex-xs-3 {
	flex: 0 0 25%;
	max-width: 25%;
}

.col-flex-xs-2 {
	flex: 0 0 16.66667%;
	max-width: 16.66667%;
}

.col-flex-xs-1 {
	flex: 0 0 8.33333%;
	max-width: 8.33333%;
}

.col-flex-xs-1-5 {
	flex: 0 0 20%;
	max-width: 20%;
}

.col-flex-xs-2-5 {
	flex: 0 0 40%;
	max-width: 40%;
}

.col-flex-xs-3-5 {
	flex: 0 0 60%;
	max-width: 60%;
}

.col-flex-xs-4-5 {
	flex: 0 0 80%;
	max-width: 80%;
}

@media (min-width: 768px) {
	.col-flex-sm-12 {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.col-flex-sm-11 {
		flex: 0 0 91.66667%;
		max-width: 91.66667%;
	}
	.col-flex-sm-10 {
		flex: 0 0 83.33333%;
		max-width: 83.33333%;
	}
	.col-flex-sm-9 {
		flex: 0 0 75%;
		max-width: 75%;
	}
	.col-flex-sm-8 {
		flex: 0 0 66.66667%;
		max-width: 66.66667%;
	}
	.col-flex-sm-7 {
		flex: 0 0 58.33333%;
		max-width: 58.33333%;
	}
	.col-flex-sm-6 {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.col-flex-sm-5 {
		flex: 0 0 41.66667%;
		max-width: 41.66667%;
	}
	.col-flex-sm-4 {
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}
	.col-flex-sm-3 {
		flex: 0 0 25%;
		max-width: 25%;
	}
	.col-flex-sm-2 {
		flex: 0 0 16.66667%;
		max-width: 16.66667%;
	}
	.col-flex-sm-1 {
		flex: 0 0 8.33333%;
		max-width: 8.33333%;
	}
	.col-flex-sm-1-5 {
		flex: 0 0 20%;
		max-width: 20%;
	}
	.col-flex-sm-2-5 {
		flex: 0 0 40%;
		max-width: 40%;
	}
	.col-flex-sm-3-5 {
		flex: 0 0 60%;
		max-width: 60%;
	}
	.col-flex-sm-4-5 {
		flex: 0 0 80%;
		max-width: 80%;
	}
}

@media (min-width: 992px) {
	.col-flex-md-12 {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.col-flex-md-11 {
		flex: 0 0 91.66667%;
		max-width: 91.66667%;
	}
	.col-flex-md-10 {
		flex: 0 0 83.33333%;
		max-width: 83.33333%;
	}
	.col-flex-md-9 {
		flex: 0 0 75%;
		max-width: 75%;
	}
	.col-flex-md-8 {
		flex: 0 0 66.66667%;
		max-width: 66.66667%;
	}
	.col-flex-md-7 {
		flex: 0 0 58.33333%;
		max-width: 58.33333%;
	}
	.col-flex-md-6 {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.col-flex-md-5 {
		flex: 0 0 41.66667%;
		max-width: 41.66667%;
	}
	.col-flex-md-4 {
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}
	.col-flex-md-3 {
		flex: 0 0 25%;
		max-width: 25%;
	}
	.col-flex-md-2 {
		flex: 0 0 16.66667%;
		max-width: 16.66667%;
	}
	.col-flex-md-1 {
		flex: 0 0 8.33333%;
		max-width: 8.33333%;
	}
	.col-flex-md-1-5 {
		flex: 0 0 20%;
		max-width: 20%;
	}
	.col-flex-md-2-5 {
		flex: 0 0 40%;
		max-width: 40%;
	}
	.col-flex-md-3-5 {
		flex: 0 0 60%;
		max-width: 60%;
	}
	.col-flex-md-4-5 {
		flex: 0 0 80%;
		max-width: 80%;
	}
}

@media (min-width: 1200px) {
	.col-flex-lg-12 {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.col-flex-lg-11 {
		flex: 0 0 91.66667%;
		max-width: 91.66667%;
	}
	.col-flex-lg-10 {
		flex: 0 0 83.33333%;
		max-width: 83.33333%;
	}
	.col-flex-lg-9 {
		flex: 0 0 75%;
		max-width: 75%;
	}
	.col-flex-lg-8 {
		flex: 0 0 66.66667%;
		max-width: 66.66667%;
	}
	.col-flex-lg-7 {
		flex: 0 0 58.33333%;
		max-width: 58.33333%;
	}
	.col-flex-lg-6 {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.col-flex-lg-5 {
		flex: 0 0 41.66667%;
		max-width: 41.66667%;
	}
	.col-flex-lg-4 {
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}
	.col-flex-lg-3 {
		flex: 0 0 25%;
		max-width: 25%;
	}
	.col-flex-lg-2 {
		flex: 0 0 16.66667%;
		max-width: 16.66667%;
	}
	.col-flex-lg-1 {
		flex: 0 0 8.33333%;
		max-width: 8.33333%;
	}
	.col-flex-lg-1-5 {
		flex: 0 0 20%;
		max-width: 20%;
	}
	.col-flex-lg-2-5 {
		flex: 0 0 40%;
		max-width: 40%;
	}
	.col-flex-lg-3-5 {
		flex: 0 0 60%;
		max-width: 60%;
	}
	.col-flex-lg-4-5 {
		flex: 0 0 80%;
		max-width: 80%;
	}
}

.row-mega {
	display: flex;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
}

.col-mega {
	padding-right: 15px;
	padding-left: 15px;
}

.col-mega-1_8 {
	width: 12.5%;
}

.col-mega-1_5 {
	width: 20%;
}

.col-mega-1_4 {
	width: 25%;
}

.col-mega-1_3 {
	width: 33.33%;
}

.col-mega-3_8 {
	width: 37.5%;
}

.col-mega-2_5 {
	width: 40%;
}

.col-mega-1_2 {
	width: 50%;
}

.col-mega-3_5 {
	width: 60%;
}

.col-mega-5_8 {
	width: 62.5%;
}

.col-mega-2_3 {
	width: 66.6666%;
}

.col-mega-3_4 {
	width: 75%;
}

.col-mega-4_5 {
	width: 80%;
}

.col-mega-7_8 {
	width: 87.5%;
}

.col-mega-1_1 {
	width: 100%;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Slick
--------------------------------------------------------------*/
/* Slider */
.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.slick-slider .slick-arrow {
	transition: ease .3s;
}

.slick-slider:hover .slick-arrow {
	opacity: 1;
}

.slick-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.slick-list:focus {
	outline: none;
}

.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.slick-track {
	position: relative;
	top: 0;
	left: 0;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.slick-track:before,
.slick-track:after {
	display: table;
	content: '';
}

.slick-track:after {
	clear: both;
}

.slick-loading .slick-track {
	visibility: hidden;
}

.slick-slide {
	display: none;
	float: left;
	height: 100%;
	min-height: 1px;
}

.slick-slide:hover,
.slick-slide:focus {
	outline: 0;
}

[dir='rtl'] .slick-slide {
	float: right;
}

.slick-slide img {
	display: block;
}

.slick-slide.slick-loading img {
	display: none;
}

.slick-slide.dragging img {
	pointer-events: none;
}

.slick-initialized .slick-slide {
	display: block;
}

.slick-loading .slick-slide {
	visibility: hidden;
}

.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
	display: none;
}

/* Arrows */
span.slick-prev-arrow,
span.slick-next-arrow {
	font-size: 11px;
	position: absolute;
	top: 50%;
	display: block;
	transition: ease 0.5s;
	width: 34px;
	height: 34px;
	line-height: 34px;
	padding: 0;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	cursor: pointer;
	color: #222222;
	border: 1px solid #dddddd;
	border-radius: 3px;
	background-color: #ffffff;
	outline: none;
	z-index: 99;
	text-align: center;
}

span.slick-prev-arrow:hover, span.slick-prev-arrow:focus,
span.slick-next-arrow:hover,
span.slick-next-arrow:focus {
	outline: none;
}

span.slick-prev-arrow.slick-disabled,
span.slick-next-arrow.slick-disabled {
	cursor: not-allowed;
}

span.slick-prev-arrow.farmart-svg-icon svg,
span.slick-next-arrow.farmart-svg-icon svg {
	position: relative;
	top: -1px;
}

.slick-prev-arrow {
	left: 30px;
}

[dir='rtl'] .slick-prev-arrow {
	right: 30px;
	left: auto;
}

[dir='rtl'] .slick-prev-arrow:before {
	content: '\e93c';
}

.slick-next-arrow {
	right: 30px;
}

[dir='rtl'] .slick-next-arrow {
	right: auto;
	left: 30px;
}

[dir='rtl'] .slick-next-arrow:before {
	content: '\e93b';
}

/* Dots */
.slick-dotted.slick-slider {
	margin-bottom: 30px;
}

.slick-dots {
	position: absolute;
	display: none;
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: center;
	bottom: 20px;
}

.slick-dots li {
	position: relative;
	display: inline-block;
	margin: 0 7px;
	padding: 0;
	cursor: pointer;
}

.slick-dots li button {
	font-size: 0;
	line-height: 0;
	display: block;
	width: 8px;
	height: 8px;
	padding: 0;
	cursor: pointer;
	color: transparent;
	border: 0;
	outline: none;
	background: transparent;
}

.slick-dots li button:hover, .slick-dots li button:focus {
	outline: none;
	background: transparent;
}

.slick-dots li button:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #dddddd;
	transition: 0.5s;
	content: '';
	text-align: center;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.slick-dots li button:hover:before {
	background-color: var(--fm-background-color-primary);
}

.slick-dots li.slick-active button:before {
	background-color: var(--fm-background-color-primary);
}

.farmart-slides-wrapper .slick-dots {
	bottom: 30px;
}

.farmart-slides-wrapper .slick-dots li {
	margin: 0 5px;
}

.farmart-slides-wrapper .slick-dots li button:before {
	background-color: #fff;
}

.farmart-slides-wrapper .slick-dots li.slick-active button:before {
	background-color: var(--fm-background-color-primary);
}

.farmart-slides-wrapper span.slick-prev-arrow:hover,
.farmart-slides-wrapper span.slick-next-arrow:hover {
	background-color: var(--fm-background-color-primary);
	color: var(--fm-background-text-color-primary);
	border-color: transparent;
}

/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/
.site-content {
	padding-top: 80px;
	padding-bottom: 80px;
}

.site-content.no-top-spacing {
	padding-top: 0 !important;
}

.site-content.no-top-spacing .page-content,
.site-content.no-top-spacing .entry-content,
.site-content.no-top-spacing .entry-summary {
	margin-top: 0;
}

.site-content.no-bottom-spacing {
	padding-bottom: 0 !important;
}

.site-content.no-bottom-spacing .page-content,
.site-content.no-bottom-spacing .entry-content,
.site-content.no-bottom-spacing .entry-summary,
.site-content.no-bottom-spacing .hentry {
	margin-bottom: 0;
}

.single-product .site-content {
	padding-top: 45px;
	padding-bottom: 0;
}

.single-product.fm-product-layout-4 .site-content {
	padding-top: 0;
}

.container-farmart-full {
	padding-left: 50px;
	padding-right: 50px;
}

.container {
	padding-left: 0;
	padding-right: 0;
}

.farmart-container {
	width: 1650px;
	margin: 0 auto;
}

.sidebar-content .content-area {
	float: right;
	order: 2;
}

.sidebar-content .primary-sidebar {
	order: 1;
	float: left;
}

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

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

.page-template-template-coming-soon-page {
	overflow: hidden;
}

.single-post .site-content {
	padding-top: 40px;
}

.single-post.farmart-show-categories-filter .site-content {
	padding-top: 0;
	padding-bottom: 0;
}

.single-post.full-content .comments-area {
	position: relative;
}

.single-post.full-content .comments-area blockquote {
	padding: 0;
}

.single-post.content-sidebar .primary-sidebar, .single-post.sidebar-content .primary-sidebar {
	padding-top: 45px;
}

.farmart-single-post__new.sidebar-content .box-wrapper__inner {
	padding-left: 85px;
}

.farmart-single-post__new.sidebar-content .entry-header--new {
	margin-bottom: 0;
}

.farmart-single-post__new.content-sidebar .box-wrapper__inner {
	padding-right: 85px;
}

.farmart-single-post__new.content-sidebar .entry-header--new {
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# Mobile
--------------------------------------------------------------*/
.fm-navigation-mobile {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
	display: none;
}

.mobile-version .fm-navigation-mobile {
	z-index: 9999;
	display: block;
	transition: .5s;
}

.mobile-version.fm-add-to-cart-fixed .fm-navigation-mobile {
	display: none;
	z-index: -1;
}

.mobile-version .fm-menu-mobile .menu-mobile-wrapper {
	width: 100%;
	left: -100%;
}

.mobile-version .fm-menu-mobile .menu-mobile-wrapper.open {
	transform: translate3d(100%, 0, 0);
}

.mobile-version .fm-menu-mobile--right .menu-mobile-wrapper {
	left: auto;
	right: -100%;
}

.mobile-version .fm-menu-mobile--right .menu-mobile-wrapper.open {
	transform: translate3d(-100%, 0, 0);
}

.mobile-version .farmart-cart-mobile .mini-cart-content {
	width: 100%;
	right: -100%;
}

.mobile-version .farmart-cart-mobile .mini-cart-content.open {
	transform: translate3d(-100%, 0, 0);
}

.mobile-version .farmart-cart-mobile--left .mini-cart-content {
	right: auto;
	left: -100%;
}

.mobile-version .farmart-cart-mobile--left .mini-cart-content.open {
	transform: translate3d(100%, 0, 0);
}

.mobile-version .sticky-product-info-wapper {
	display: block;
}

.mobile-version .sticky-product-info-wapper.viewport {
	top: 0;
}

.mobile-version .sticky-product-info-wapper .sc-product-info {
	margin-right: 0;
	width: 100%;
	overflow: auto;
}

.mobile-version .sticky-product-info-wapper .sc-product-info .sc-tabs {
	margin-left: -7px;
	margin-right: -7px;
	flex-wrap: nowrap;
}

.mobile-version .sticky-product-info-wapper .sc-product-info .sc-tabs li {
	padding: 0 7px;
}

.mobile-version .sticky-product-info-wapper .sc-product-info .sc-tabs li a {
	white-space: nowrap;
}

.mobile-version .sticky-product-info-wapper .product-thumb,
.mobile-version .sticky-product-info-wapper .product-name > h2,
.mobile-version .sticky-product-info-wapper .sc-product-cart {
	display: none;
}

.mobile-version .product-info-enable .woocommerce-tabs ul.tabs {
	display: none;
}

.mobile-version.fm-add-to-cart-fixed div.product form.cart .buttons-box {
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 9999;
	width: 100%;
}

.mobile-version.fm-add-to-cart-fixed div.product form.cart .single-button-wrapper .button-vendor {
	display: block;
	flex: 0 0 75px;
	background-color: #fff;
	border: 1px solid #e5e5e5;
	padding: 8px 0;
}

.mobile-version.fm-add-to-cart-fixed div.product form.cart .single_add_to_cart_button {
	width: 100%;
	border-radius: 0;
	line-height: 64px;
}

.mobile-version.fm-add-to-cart-fixed div.product .enable-buy-now .single-button-wrapper .buy_now_button {
	width: 50%;
	border-radius: 0;
	line-height: 64px;
	order: 1;
}

.mobile-version.fm-add-to-cart-fixed div.product .enable-buy-now form.cart .single_add_to_cart_button {
	width: 50%;
	margin: 0;
	order: 2;
}

.mobile-version.woocommerce div.product div.images {
	padding-left: 0;
	padding-bottom: 0;
}

.mobile-version.woocommerce div.product div.images .product-image-ms {
	display: none;
}

.mobile-version.woocommerce div.product div.images .flex-control-nav {
	position: static;
	opacity: 1;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 10px;
}

.mobile-version.woocommerce div.product div.images .flex-control-nav li {
	padding: 0;
	margin: 0 5px;
	width: 8px !important;
}

.mobile-version.woocommerce div.product div.images .flex-control-nav li .i-video {
	display: none;
}

.mobile-version.woocommerce div.product div.images .flex-control-nav li img {
	width: 8px;
	border: 4px solid #dbdbdb;
	border-radius: 100%;
}

.mobile-version.woocommerce div.product div.images .flex-control-nav li img.flex-active {
	border-color: var(--fm-color-primary);
}

.mobile-version.woocommerce div.product .single-button-wrapper .quantity {
	width: 100%;
}

.mobile-version.woocommerce div.product .product_title {
	font-size: 18px;
}

.mobile-version.woocommerce div.product .fm-entry-product-header .entry-meta li {
	margin-right: 10px;
	padding-right: 10px;
}

.mobile-version.woocommerce div.product .fm-entry-product-header .woocommerce-product-rating .fm-rating {
	margin-right: 0;
}

.mobile-version.woocommerce div.product .fm-entry-product-header .woocommerce-product-rating .woocommerce-review-link {
	font-size: 0;
}

.mobile-version.woocommerce div.product .fm-entry-product-header .woocommerce-product-rating .woocommerce-review-link .count {
	font-size: 14px;
	padding: 0 5px;
	position: relative;
}

.mobile-version.woocommerce div.product .fm-entry-product-header .woocommerce-product-rating .woocommerce-review-link .count:before {
	content: '(';
	position: absolute;
	left: 0;
}

.mobile-version.woocommerce div.product .fm-entry-product-header .woocommerce-product-rating .woocommerce-review-link .count:after {
	content: ')';
	position: absolute;
	right: 0;
}

.mobile-version.woocommerce .quantity .qty-box {
	width: 100%;
}

.mobile-version.fm-catalog-page .site-content {
	padding-top: 0;
}

.mobile-version.single-product #primary-sidebar {
	display: none;
}

.mobile-version .catalog-toolbar {
	display: flex;
	flex-direction: column;
}

.mobile-version .catalog-toolbar .widget_layered_nav_filters {
	order: 2;
	border-bottom: 1px solid #eee;
	margin-bottom: 0;
	padding-bottom: 20px;
}

.mobile-version .catalog-toolbar .widget_layered_nav_filters ul li:last-child {
	display: block;
	margin: 0;
}

.mobile-version .catalog-toolbar .widget_layered_nav_filters ul li:last-child a {
	color: var(--fm-color-primary);
	text-decoration: underline;
}

.mobile-version .catalog-toolbar .widget_layered_nav_filters ul li:last-child:hover {
	border: none;
}

.mobile-version .catalog-toolbar .catalog-toolbar__bottom {
	position: relative;
	background-color: #f7f7f7;
	padding: 12px 0;
	order: 1;
}

.mobile-version .catalog-toolbar .catalog-toolbar__bottom:before, .mobile-version .catalog-toolbar .catalog-toolbar__bottom:after {
	content: '';
	position: absolute;
	left: -15px;
	top: 0;
	bottom: 0;
	width: 15px;
	height: 100%;
	background-color: #f7f7f7;
}

.mobile-version .catalog-toolbar .catalog-toolbar__bottom:after {
	right: -15px;
	left: auto;
}

.mobile-version .catalog-toolbar .products-found,
.mobile-version .catalog-toolbar + .products-found {
	margin-bottom: 20px;
}

.mobile-version .fm-catalog-close-sidebar h2 {
	font-size: 16px;
}

.mobile-version .loading-icon .dot {
	animation: none;
}

.mobile-version .loading-icon .bubble {
	width: 3px;
	height: 3px;
}

.mobile-version .fm-product-summary .related-products {
	margin-bottom: 100px;
}

.mobile-navigation-enable {
	margin-bottom: 62px;
}

.mobile-navigation-enable.admin-bar .fm-cart--click .box-cart-wrapper .box-cart-content {
	height: calc( 100vh - 208px);
}

.mobile-navigation-enable.display-canvas-layer-cart, .mobile-navigation-enable.display-canvas-layer-search, .mobile-navigation-enable.display-canvas-layer-menu {
	overflow-y: hidden;
}

.mobile-navigation-enable.display-canvas-layer-cart .fm-off-canvas-layer, .mobile-navigation-enable.display-canvas-layer-search .fm-off-canvas-layer, .mobile-navigation-enable.display-canvas-layer-menu .fm-off-canvas-layer {
	bottom: 62px;
	z-index: 999;
}

.mobile-navigation-enable .box-cart-wrapper,
.mobile-navigation-enable .search-panel-content,
.mobile-navigation-enable .menu-mobile-wrapper {
	margin-bottom: 62px;
}

.mobile-navigation-enable .backtotop {
	display: none;
	opacity: 0;
}

.fm-catalog-sorting-mobile {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	background-color: rgba(0, 0, 0, 0.75);
	display: none;
}

.fm-catalog-sorting-mobile.fm-active {
	display: block;
}

.fm-catalog-sorting-mobile ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.fm-catalog-sorting-mobile .woocommerce-ordering {
	position: absolute;
	left: 15px;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	background-color: #fff;
	text-align: center;
}

.fm-catalog-sorting-mobile .woocommerce-ordering a {
	color: #000;
}

.fm-catalog-sorting-mobile .woocommerce-ordering .current > span {
	display: none;
}

.fm-catalog-sorting-mobile .woocommerce-ordering ul li {
	padding: 10px;
	border-bottom: 1px solid #f5f5f5;
}

.fm-catalog-sorting-mobile .woocommerce-ordering ul li a.active {
	color: var(--fm-color-primary);
}

.fm-catalog-sorting-mobile .woocommerce-ordering .cancel-ordering {
	padding: 10px;
}

.fm-catalog-sorting-mobile .woocommerce-ordering .cancel-ordering a {
	font-weight: 700;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (min-width: 768px) {
	.farmart-post-taxs-list:before, .farmart-post-taxs-list:after {
		width: calc((100vw - 750px)/2);
	}
	.farmart-post-taxs-list:before {
		left: calc((-100vw + 750px)/2);
	}
	.farmart-post-taxs-list:after {
		right: calc((-100vw + 750px)/2);
	}
}

@media (min-width: 992px) {
	.farmart-post-taxs-list:before, .farmart-post-taxs-list:after {
		width: calc((100vw - 970px)/2);
	}
	.farmart-post-taxs-list:before {
		left: calc((-100vw + 970px)/2);
	}
	.farmart-post-taxs-list:after {
		right: calc((-100vw + 970px)/2);
	}
	.topbar-mobile {
		display: none;
	}
	.single-post.sidebar-content .content-area,
	.farmart-blog-page.sidebar-content .content-area,
	.farmart-search-page.sidebar-content .content-area {
		padding-left: 30px;
	}
	.single-post.content-sidebar .content-area,
	.farmart-blog-page.content-sidebar .content-area,
	.farmart-search-page.content-sidebar .content-area {
		padding-right: 30px;
	}
	.fm-catalog-page:not(.catalog-full-content) .catalog-sidebar {
		width: 300px;
	}
	.fm-catalog-page:not(.catalog-full-content) .content-area {
		width: calc( 100% - 300px);
	}
	.single-product.sidebar-content .content-area {
		padding-left: 25px;
	}
	.single-product.content-sidebar .content-area {
		padding-right: 25px;
	}
	.single-product.fm-product-layout-2.sidebar-content .content-area {
		padding-left: 35px;
	}
	.single-product.fm-product-layout-2.sidebar-content .primary-sidebar {
		padding-right: 5px;
	}
	.single-product.fm-product-layout-2.content-sidebar .content-area {
		padding-right: 35px;
	}
	.single-product.fm-product-layout-2.content-sidebar .primary-sidebar {
		padding-left: 5px;
	}
	.single-product.fm-product-layout-3.sidebar-content .content-area {
		padding-left: 45px;
	}
	.single-product.fm-product-layout-3.content-sidebar .content-area {
		padding-right: 45px;
	}
}

@media (min-width: 1200px) {
	.site-header .header-mobile-wrapper-elementor {
		display: none;
	}
	.header-mobile {
		display: none;
	}
	.farmart-post-taxs-list:before, .farmart-post-taxs-list:after {
		width: calc((100vw - 1220px)/2);
	}
	.farmart-post-taxs-list:before {
		left: calc((-100vw + 1220px)/2);
	}
	.farmart-post-taxs-list:after {
		right: calc((-100vw + 1220px)/2);
	}
	.single-post.sidebar-content .content-area,
	.farmart-blog-page.sidebar-content .content-area,
	.farmart-search-page.sidebar-content .content-area {
		padding-left: 85px;
	}
	.single-post.content-sidebar .content-area,
	.farmart-blog-page.content-sidebar .content-area,
	.farmart-search-page.content-sidebar .content-area {
		padding-right: 85px;
	}
	.catalog-full-width.content-sidebar .content-area, .catalog-full-width.sidebar-content .content-area {
		width: 81.5%;
	}
	.catalog-full-width.content-sidebar .catalog-sidebar, .catalog-full-width.sidebar-content .catalog-sidebar {
		width: 18.5%;
	}
	.container .upsell-container {
		width: 1170px;
	}
	.fm-product-full-width .farmart-container .row {
		display: flex;
		justify-content: space-between;
	}
	.fm-product-full-width.sidebar-content .product-sidebar, .fm-product-full-width.content-sidebar .product-sidebar {
		flex: 0 0 310px;
	}
	.fm-product-full-width.sidebar-content .content-area, .fm-product-full-width.content-sidebar .content-area {
		width: calc( 100% - 310px);
	}
}

@media (min-width: 1200px) and (max-width: 1280px) {
	.container-farmart-full {
		padding-left: 15px;
		padding-right: 15px;
	}
	.farmart-main-menu ul.fm-nav-menu > li > a {
		margin-right: 10px;
		margin-left: 10px;
	}
}

@media (max-width: 1780px) {
	.related-products .slick-prev-arrow {
		left: 0;
	}
	.related-products .slick-next-arrow {
		right: 0;
	}
}

@media (max-width: 1680px) {
	.farmart-container {
		width: 100%;
		padding-left: 30px;
		padding-right: 30px;
	}
	.single-product.fm-product-layout-4 .fm-product-bg-full-width {
		background-color: transparent;
		margin: 0;
	}
	.single-product.fm-product-layout-4 .fm-product-bg-full-width ~ .fm-product-summary > .woocommerce-tabs {
		margin-top: 0;
	}
	.single-product.fm-product-layout-4 div.product .fm-product-detail.fm-product-bg-full-width .farmart-container {
		padding: 20px 15px;
	}
}

@media (max-width: 1366px) {
	.related-products .slick-dots {
		bottom: -40px;
	}
}

@media (min-width: 992px) and (max-width: 1550px) {
	.woocommerce div.product .tawc-deal .deal-expire-date {
		flex-direction: column;
	}
	.woocommerce div.product .tawc-deal .deal-expire-date .deal-expire-text,
	.woocommerce div.product .tawc-deal .deal-expire-date .deal-expire-countdown {
		width: 100%;
	}
	.single-product.fm-product-layout-4 div.product div.entry-summary {
		padding-left: 25px;
	}
	.single-product.fm-product-layout-4 div.product .single-button-wrapper > * {
		margin-top: 10px;
		margin-bottom: 10px;
	}
	.single-product.fm-product-layout-4 div.product .single-button-wrapper .group-buttons {
		margin-top: 10px;
	}
	.single-product.fm-product-layout-4 .entry-summary-content {
		padding-right: 30px;
	}
}

@media (max-width: 1519px) {
	.farmart-menu-department {
		margin-right: 20px;
	}
	.header-element--account {
		margin-left: 30px;
	}
	.header-v1 .header-items--left {
		width: 20%;
	}
	.header-v1 .header-bottom .header-items--left {
		width: 17.5%;
	}
	.header-v1 .header-bottom .header-items--center {
		width: 60%;
	}
	.header-v1 .header-bottom .header-items--right {
		width: 15%;
	}
	.header-v1 .main-navigation > li > a {
		padding: 11px 18px;
	}
	.header-v1 .main-navigation > li.menu-item-has-children > a {
		padding-right: 30px;
	}
	.header-v1 .main-navigation > li.menu-item-has-children > a .toggle-menu-children {
		right: auto;
		left: calc( 100% - 25px);
	}
}

@media (max-width: 1410px) {
	.header-v1 .main-navigation > li > a {
		padding: 11px 16px;
	}
	.header-v1 .main-navigation > li.menu-item-has-children > a {
		padding-right: 25px;
	}
	.header-v1 .main-navigation > li.menu-item-has-children > a .toggle-menu-children {
		right: auto;
		left: calc( 100% - 20px);
	}
}

@media (max-width: 1339px) {
	.header-bottom .header-items--right {
		display: none;
	}
	.header-bottom .header-items--center {
		flex: 1 1 70%;
		justify-content: flex-end;
	}
	.header-v1 .main-navigation > li > a {
		padding: 11px 20px;
	}
	.header-v1 .main-navigation > li:last-child > a {
		padding-right: 0;
	}
}

@media (max-width: 1280px) {
	.fm-product-deals-day .slick-prev-arrow,
	.farmart-blog-shortcode .slick-prev-arrow,
	.farmart-post__related .slick-prev-arrow,
	.farmart-testimonial .slick-prev-arrow,
	.farmart-testimonial-2 .slick-prev-arrow {
		left: 0;
	}
	.fm-product-deals-day .slick-next-arrow,
	.farmart-blog-shortcode .slick-next-arrow,
	.farmart-post__related .slick-next-arrow,
	.farmart-testimonial .slick-next-arrow,
	.farmart-testimonial-2 .slick-next-arrow {
		right: 0;
	}
	.header-v1 .header-element--header-bar span,
	.header-v1 .header-element--header-bar a {
		font-size: 20px;
	}
}

@media (max-width: 1199px) {
	.header-main,
	.header-bottom {
		display: none;
	}
	.header-mobile {
		display: flex;
		flex-wrap: wrap;
		border-bottom: 1px solid #eeeeee;
		padding: 20px 15px;
		position: relative;
		background-color: #fff;
	}
	.header-items-mobile {
		display: flex;
		align-items: center;
	}
	.header-items-mobile--center > *,
	.header-items-mobile--left > *,
	.header-items-mobile--right > * {
		outline: none;
	}
	.header-items-mobile--left {
		flex: 1;
		text-align: left;
		justify-content: flex-start;
	}
	.header-items-mobile--left > * {
		margin-right: 20px;
	}
	.header-items-mobile--center {
		text-align: center;
		justify-content: center;
	}
	.header-items-mobile--center > * {
		margin-left: 10px;
		margin-right: 10px;
	}
	.header-items-mobile--right {
		flex: 1;
		text-align: right;
		justify-content: flex-end;
	}
	.header-items-mobile--right > * {
		outline: none;
		text-align: left;
		margin-left: 20px;
	}
	.header-v5 .header-mobile .menu-icon .farmart-svg-icon {
		color: #fff;
	}
	.header-v5 .fm-search-form--mobile .open-search-panel .farmart-svg-icon {
		color: #fff;
	}
	.header-v6 .header-mobile .header-element--compare .farmart-svg-icon,
	.header-v6 .header-mobile .header-element--wishlist .farmart-svg-icon,
	.header-v6 .header-mobile .header-element--cart .farmart-svg-icon,
	.header-v6 .header-mobile .header-element--account .farmart-svg-icon {
		color: #222222;
		font-size: 24px;
	}
	.topbar > * {
		width: 100%;
		padding-left: 15px;
		padding-right: 15px;
	}
	.fm-search-form--mobile {
		line-height: 1;
	}
	.fm-search-form--mobile .open-search-panel {
		display: inline-flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		padding: 2px 0 0 0;
	}
	.fm-search-form--mobile .open-search-panel .farmart-svg-icon {
		font-size: 24px;
		color: #222222;
	}
	.fm-search-form--mobile .search-panel-content {
		width: 88%;
		position: fixed;
		top: 0;
		right: -88%;
		background-color: #f5f5f5;
		bottom: 0;
		overflow: hidden;
		z-index: 9999;
		transition: transform .25s ease;
	}
	.fm-search-form--mobile .search-panel-content.open {
		transform: translate3d(-100%, 0, 0);
	}
	.fm-search-form--mobile .search-panel-content.open ~ .fm-off-canvas-layer {
		display: block;
		z-index: 999;
	}
	.fm-search-form--mobile .top-content {
		padding: 15px 0 0 0;
		display: flex;
		align-items: center;
		background-color: var(--fm-background-color-primary);
		position: relative;
	}
	.fm-search-form--mobile .top-content .search-field {
		border: 0;
		border-radius: 3px;
		padding-right: 42px;
		float: left;
		height: 42px;
		line-height: 1;
		padding-left: 12px;
		position: relative;
		width: 100%;
	}
	.fm-search-form--mobile .top-content .close-search-results {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 10px;
		font-size: 10px;
		color: #000;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 20px;
		height: 20px;
		background-color: #fff;
		z-index: 10;
		opacity: 0;
		transition: none;
	}
	.fm-search-form--mobile .top-content .close-search-results .farmart-svg-icon {
		font-size: 20px;
		color: #cccccc;
	}
	.fm-search-form--mobile .top-content .search-submit {
		position: absolute;
		right: 0;
		background-color: transparent;
		color: #000;
		padding: 0;
		width: 42px;
		height: 42px;
		line-height: 42px;
		display: block;
		text-align: center;
		z-index: 999;
	}
	.fm-search-form--mobile .top-content .search-submit .farmart-svg-icon {
		margin: 0;
	}
	.fm-search-form--mobile .top-content form.searching .search-submit, .fm-search-form--mobile .top-content form.actived .search-submit {
		opacity: 0;
	}
	.fm-search-form--mobile .top-content form.actived .close-search-results {
		opacity: 1;
	}
	.fm-search-form--mobile .top-content form.searching .search-wrapper:before {
		border-width: 1px;
		border-color: #666 #666 #666 transparent;
		border-radius: 50%;
		border-style: solid;
		-webkit-animation: fm-spin-fast 1s linear infinite;
		animation: fm-spin-fast 1s linear infinite;
		content: "";
		width: 13px;
		height: 13px;
		font-weight: 400;
		position: absolute;
		top: 15px;
		right: 12px;
		z-index: 999;
	}
	.fm-search-form--mobile .top-content form.searching .close-search-results {
		opacity: 0;
	}
	.fm-search-form--mobile .top-content .close-search-panel {
		color: var(--fm-background-text-color-primary);
		display: flex;
		line-height: 1;
		margin-left: 20px;
	}
	.fm-search-form--mobile .top-content.actived .search-results {
		top: 100%;
		transform: scaleX(1);
		z-index: 9999;
	}
	.fm-search-form--mobile .search-results {
		border: 0;
	}
	.fm-search-form--mobile .box-search-trending {
		padding: 35px 20px;
		background-color: #fff;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	}
	.fm-search-form--mobile .box-search-trending .title-words {
		display: block;
		margin: 0 0 17px;
		font-size: 14px;
	}
	.fm-search-form--mobile .box-search-trending .title-words .farmart-svg-icon {
		font-size: 14px;
		color: #e84506;
		padding-right: 10px;
	}
	.fm-search-form--mobile ul.hot-words {
		margin: 0;
		padding: 0;
	}
	.fm-search-form--mobile ul.hot-words li {
		padding: 0 5px 5px 0;
		list-style: none;
		display: inline-block;
	}
	.fm-search-form--mobile ul.hot-words li a {
		display: block;
		color: #555555;
		background-color: #f5f5f5;
		border-radius: 3px;
		padding: 4px 16px;
		font-size: 14px;
		text-decoration: none;
	}
	.fm-search-form--mobile ul.hot-words li a:hover {
		text-decoration: none;
	}
	.fm-search-form--mobile .form-search {
		width: 100%;
	}
	.fm-search-form--mobile .form-search button {
		position: absolute;
		top: 0;
		right: 0;
		background-color: transparent;
		padding: 0 10px;
	}
	.fm-search-form--mobile .form-search button .farmart-svg-icon {
		color: #222222;
	}
	.fm-search-form--mobile .search-inner-content {
		display: flex;
		align-items: center;
		flex-direction: column;
	}
	.fm-search-form--mobile .search-inner-content .text-search {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		padding: 0 20px 15px;
	}
	.fm-search-form--mobile .search-inner-content .search-wrapper {
		width: 100%;
		display: flex;
		position: relative;
	}
	.fm-search-form--mobile .search-inner-content .field-notice {
		font-weight: 700;
		color: #222222;
	}
	.fm-search-form--mobile .search-inner-content .box-search-results {
		position: relative;
		background-color: #ffffff;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
		padding: 30px 20px 0;
		max-height: calc( 100vh - 135px);
		overflow-y: auto;
		overflow-x: hidden;
		transform: scaleX(0);
		opacity: 0;
		visibility: hidden;
		z-index: -1;
		transition: top ease .2s;
		display: none;
		width: 100%;
	}
	.fm-search-form--mobile .actived .search-inner-content .box-search-results {
		transform: scaleX(1);
		opacity: 1;
		visibility: visible;
		z-index: 9999;
		display: block;
	}
	.fm-search-form--mobile .form-search button {
		top: 52%;
		transform: translateY(-50%);
		line-height: 1;
	}
	.fm-search-form--mobile .form-search button .farmart-svg-icon {
		font-size: 18px;
	}
	.fm-search-form--mobile .form-search.searching button {
		display: none;
	}
	.fm-search-form--mobile.search-active {
		background-color: var(--fm-background-color-primary);
	}
	.header-element--cart .cart-contents .fm-mini-cart-counter {
		right: 0;
	}
	.cart-panel-mobile.side-right .box-cart-wrapper, .cart-panel-mobile.side-left .box-cart-wrapper {
		right: -82%;
		left: auto;
	}
	.cart-panel-mobile.side-right .box-cart-wrapper.open, .cart-panel-mobile.side-left .box-cart-wrapper.open {
		transform: translate3d(-100%, 0, 0);
	}
	.cart-panel-mobile .box-cart-wrapper {
		width: 82%;
	}
	.cart-panel-mobile .top-content {
		color: var(--fm-background-text-color-primary);
		background-color: var(--fm-background-color-primary);
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 23px 20px 23px;
	}
	.cart-panel-mobile .top-content a {
		color: var(--fm-background-text-color-primary);
	}
	.cart-panel-mobile .top-content .farmart-svg-icon {
		color: var(--fm-background-text-color-primary);
	}
	.cart-panel-mobile .mini-cart-content ul.woocommerce-mini-cart {
		padding: 10px 15px 0;
		margin-bottom: 0;
	}
	.cart-panel-mobile .control-button {
		padding: 0 15px;
	}
	.cart-panel-mobile .woocommerce-mini-cart__total {
		font-size: 14px;
		margin-top: 15px;
	}
	.cart-panel-mobile .woocommerce-mini-cart__buttons {
		margin-top: 15px;
	}
	.admin-bar .cart-panel-mobile .box-cart-wrapper {
		top: 46px;
	}
	.admin-bar .cart-panel-mobile .control-button {
		padding-bottom: 40px;
	}
	.site-header .header-menu-mobile,
	.site-header .header-logo,
	.site-header .header-elements {
		flex: 0 0 33.3333%;
		max-width: 33.3333%;
	}
	.site-header .header-menu-mobile {
		display: flex;
		padding-right: 10px;
	}
	.site-header .header-logo {
		text-align: center;
		width: 33.3333%;
		padding-right: 10px;
		padding-left: 10px;
		margin: 0;
	}
	.site-header .header-elements {
		margin-left: 0;
		justify-content: flex-end;
		padding-left: 10px;
	}
	.site-header .header-elements .header-element--sep {
		display: none;
	}
	.site-header .header-element--compare,
	.site-header .header-element--wishlist,
	.site-header .header-element--account {
		display: none;
	}
	.site-header .header-element--search a.open-header-search {
		font-size: 20px;
		padding: 10px;
		display: block;
		line-height: 1;
	}
	.site-header .header-element--cart .cart-contents .cart-icon {
		padding-left: 0;
		padding-right: 9px;
	}
	.site-header .header-element--cart:hover .dropdown,
	.site-header .header-element--cart .mini-cart-content {
		display: none;
	}
	.site-header .header-wrapper-elementor,
	.site-header .header-mobile-enable {
		display: none;
	}
	.footer-newsletter__title {
		font-size: 18px;
	}
	.footer-extra .footer-extra__item {
		padding: 44.5px 0;
	}
	.footer-extra__content--desc {
		font-size: 16px;
	}
	.footer-extra__icon {
		margin-left: 25px;
	}
	.footer-extra__icon .farmart-svg-icon {
		font-size: 45px;
	}
	.footer-infor__wrapper {
		justify-content: flex-start;
	}
	.footer-infor__item {
		flex: 1 1 auto;
	}
	.single-post .single-post-wrapper .entry-title {
		font-size: 30px;
	}
	.wp-block-quote.is-large,
	.wp-block-quote.is-style-large,
	.wp-block-quote {
		padding-left: 20px;
		padding-right: 20px;
	}
	.farmart-single-post__new.sidebar-content .box-wrapper__inner {
		padding-left: 30px;
	}
	.farmart-single-post__new.content-sidebar .box-wrapper__inner {
		padding-right: 30px;
	}
	.comment-list .children {
		padding-left: 15px;
	}
	.comment-list .children .children {
		padding-left: 0;
		margin-left: 0;
	}
	ul.products li.product {
		width: 25%;
	}
	.woocommerce div.product {
		display: inherit;
	}
	.woocommerce div.product .single-button-wrapper {
		flex-wrap: wrap;
	}
	.woocommerce div.product .single-button-wrapper .action-buttons {
		margin: 10px 0 0 0;
	}
	.single-product.fm-product-layout-2 .fm-product-fbt .fbt-box, .single-product.fm-product-layout-3 .fm-product-fbt .fbt-box {
		padding-right: 20px;
	}
	.single-product.fm-product-layout-2 .fm-product-fbt .product-buttons .fm_add_to_cart_button,
	.single-product.fm-product-layout-2 .fm-product-fbt .product-buttons .fm-wishlist-button, .single-product.fm-product-layout-3 .fm-product-fbt .product-buttons .fm_add_to_cart_button,
	.single-product.fm-product-layout-3 .fm-product-fbt .product-buttons .fm-wishlist-button {
		min-width: 150px;
		width: 150px;
	}
	.single-product.fm-product-layout-4 div.product .fm-product-detail .farmart-container {
		padding-left: 0;
		padding-right: 0;
	}
	.single-product.fm-product-layout-4 div.product .woocommerce-product-gallery {
		width: 100%;
		margin-bottom: 50px;
		padding-right: 0;
	}
	.single-product.fm-product-layout-4 div.product .has-gallery-image .woocommerce-product-gallery {
		padding-right: 0;
	}
	.single-product.fm-product-layout-4 div.product div.entry-summary {
		width: 100%;
		border-left: none;
		padding-left: 0;
	}
	.single-product.fm-product-layout-4 div.product .single-button-wrapper .group-buttons {
		margin-left: 20px;
	}
	.single-product.fm-product-layout-4 div.product .single-button-wrapper .buttons-box {
		flex: 1 1 30%;
	}
	.single-product.fm-product-layout-4 div.product .single-button-wrapper .fm-wishlist-button .yith-wcwl-add-button > a,
	.single-product.fm-product-layout-4 div.product .single-button-wrapper .fm-wishlist-button .yith-wcwl-wishlistexistsbrowse > a {
		display: flex;
	}
	.single-product.fm-product-layout-4 .farmart-container {
		padding-left: 15px;
		padding-right: 15px;
	}
	.single-product.fm-product-layout-4 .woocommerce-tabs {
		padding: 0;
	}
	.single-product .fm-product-bg-full-width {
		background-color: transparent;
		margin: 0;
		width: auto;
	}
	.single-product .woocommerce-tabs ul.tabs {
		width: 100%;
		flex-direction: row;
	}
	.single-product .woocommerce-tabs ul.tabs li a {
		padding: 0;
		border: none;
	}
	.single-product .woocommerce-tabs .woocommerce-Tabs-panel {
		width: 100%;
		padding: 0;
	}
	.single-product .fm-product-fbt .fbt-columns-3 ul.products li.product {
		width: 33%;
	}
	.single-product .fm-product-fbt .fbt-columns-4 ul.products li.product {
		width: 33%;
	}
	.single-product .fm-product-fbt .fbt-columns-5 ul.products li.product {
		width: 33%;
	}
	.single-product .fm-product-fbt .fbt-columns-6 ul.products li.product {
		width: 33%;
	}
	.single-product .fm-product-fbt .fbt-columns-7 ul.products li.product {
		width: 33%;
	}
	.sticky-product-info-wapper .sc-product-info .sc-tabs li a.active:after {
		display: none;
	}
	.fm-widget-products ul.products li.product {
		width: 100%;
	}
	.fm-quick-view-modal .product-modal-content div.product .single-button-wrapper {
		flex-wrap: nowrap;
	}
	.fm-quick-view-modal .product-modal-content div.product .single-button-wrapper .fm-wishlist-button {
		margin-left: 20px;
	}
	.fm-quick-view-modal .product-modal-content div.product .enable-buy-now .single-button-wrapper {
		flex-wrap: wrap;
	}
	.fm-quick-view-modal .product-modal-content div.product .enable-buy-now .buttons-box {
		width: auto;
	}
	.fm-quick-view-modal.fm-modal .close-modal {
		right: 35px;
	}
	.woocommerce-cart div table.shop_table thead th {
		padding: 11px 15px;
	}
	.woocommerce-cart div table.shop_table tbody td {
		vertical-align: middle;
		padding: 15px;
	}
	.woocommerce-cart div table.shop_table tbody .actions {
		padding-bottom: 50px;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.woocommerce div.product.product-type-grouped form.grouped_form tr {
		margin-bottom: 10px;
		display: inline-table;
	}
	.woocommerce div.product .enable-buy-now .single-button-wrapper .action-buttons {
		flex-wrap: wrap;
		flex-direction: column;
		align-items: flex-start;
	}
	.woocommerce div.product .enable-buy-now .single-button-wrapper .fm-wishlist-button {
		margin-left: 0;
	}
	.single-product.fm-product-layout-4 div.product div.entry-summary {
		margin-top: 50px;
	}
	.fm-quick-view-modal .product-modal-content div.product .enable-buy-now .single-button-wrapper .action-buttons {
		flex-direction: initial;
		justify-content: space-between;
	}
	.fm-quick-view-modal .product-modal-content div.product .enable-buy-now .single-button-wrapper .fm-wishlist-button {
		margin-left: 0;
	}
	.widget_mc4wp_form_widget .mc4wp-form-fields input[type='submit'] {
		flex: 1 1 80%;
	}
}

@media (max-width: 1024px) {
	.container {
		padding-left: 15px;
		padding-right: 15px;
	}
}

@media (max-width: 991px) {
	.single-product.fm-product-layout-2 div.product .woocommerce-product-gallery,
	.single-product.fm-product-layout-2 div.product div.entry-summary,
	.single-product.fm-product-layout-3 div.product .woocommerce-product-gallery,
	.single-product.fm-product-layout-3 div.product div.entry-summary,
	.single-product.fm-product-full-width.fm-product-layout-3 div.product div.entry-summary,
	.single-product.fm-product-full-width.fm-product-layout-3 div.product .woocommerce-product-gallery,
	.fm-quick-view-modal .product-modal-content div.product .woocommerce-product-gallery,
	.fm-quick-view-modal .product-modal-content div.product div.entry-summary,
	.fm-catalog-page .catalog-sidebar,
	.fm-catalog-page .content-area {
		width: 100%;
	}
	.topbar {
		padding: 10px 0;
		height: auto;
	}
	.topbar > * {
		flex-direction: column;
	}
	.topbar--left,
	.topbar--right {
		flex: 1 1 100%;
		width: 100%;
	}
	.topbar--item,
	.topbar--right {
		justify-content: center;
		flex-wrap: wrap;
	}
	.enable-topbar-mobile {
		display: none;
	}
	.footer-newsletter__title {
		font-size: 16px;
		width: 45%;
	}
	.footer-newsletter__title br {
		display: none;
	}
	.footer-newsletter__title .farmart-svg-icon {
		margin-right: 10px;
		line-height: 1;
		font-size: 40px;
	}
	.footer-newsletter__wrapper form {
		width: 50%;
	}
	.footer-newsletter__wrapper form .mc4wp-form-fields input[type="submit"] {
		padding: 0 30px;
	}
	.footer-extra .footer-extra__item {
		padding: 34.5px 0;
	}
	.footer-extra__content--title {
		font-size: 12px;
	}
	.footer-extra__content--desc {
		font-size: 14px;
	}
	.footer-extra__icon {
		margin-left: 15px;
	}
	.footer-extra__icon .farmart-svg-icon {
		font-size: 35px;
	}
	.footer-widgets .row-flex {
		justify-content: space-between;
	}
	.footer-widgets .footer-widgets-area-diff {
		padding-left: 70px;
	}
	.footer-widgets .footer-widgets-area-2 {
		margin-top: 30px;
	}
	.footer-main > * {
		display: flex;
		flex-direction: column;
	}
	.footer-main > * .farmart-footer-socials-menu {
		justify-content: center;
	}
	.footer-main .farmart-container {
		display: block;
		justify-content: center;
		overflow: hidden;
	}
	.footer-main .footer-items {
		display: block;
		padding: 10px 0;
	}
	.footer-navigation li a {
		padding-left: 10px;
		padding-right: 10px;
	}
	.footer-navigation li:first-child a {
		padding-left: 0;
	}
	.footer-navigation li:last-child a {
		padding-right: 0;
	}
	.farmart-footer-socials-menu {
		justify-content: flex-start;
	}
	.site-footer .footer-right > *,
	.site-footer .footer-left > * {
		margin: 0;
	}
	.farmart-list-box.content-horizontal .box-item {
		flex-wrap: wrap;
		flex-direction: column;
		justify-content: center;
		text-align: center;
	}
	.farmart-list-box.content-horizontal .box-item__icon {
		margin: 0;
	}
	.primary-sidebar {
		margin-top: 50px;
	}
	.comments-area {
		padding: 30px 10px;
	}
	.comment-list li.comment .comment-content {
		margin-left: 80px;
	}
	.comment-list .children {
		padding-left: 45px;
	}
	.container {
		padding-left: 15px;
		padding-right: 15px;
	}
	.container .container {
		padding-left: 0;
		padding-right: 0;
	}
	.farmart-blog-page.sidebar-content .content-area {
		padding-left: 15px;
	}
	.farmart-blog-page.content-sidebar .content-area {
		padding-right: 15px;
	}
	.farmart-blog-page--default .site-main .row-flex {
		margin: 0 -15px;
	}
	.farmart-blog-page--default .site-main .blog-wrapper {
		padding: 0 15px;
	}
	.farmart-blog-page--list .blog-wrapper:not(.no-flex).has-post-thumbnail .blog-wrapper__inner {
		display: block;
	}
	.farmart-blog-page--list .blog-wrapper:not(.no-flex).has-post-thumbnail .entry-format {
		max-width: 100%;
	}
	.farmart-blog-page--list .blog-wrapper:not(.no-flex).has-post-thumbnail .entry-format.format-audio {
		width: 100%;
	}
	.blog-sidebar {
		margin-top: 80px;
	}
	.farmart-taxs-list ul {
		overflow: auto;
		overflow-y: hidden;
		white-space: nowrap;
		display: block;
		padding-bottom: 20px;
	}
	.farmart-taxs-list ul li {
		display: inline-block;
		vertical-align: text-top;
		float: none;
	}
	.fm-cart--hover .mini-cart-content,
	.fm-cart--hover .fm-cart__inner:before {
		display: none;
	}
	.fm-catalog-header {
		margin-bottom: 30px;
	}
	.fm-catalog-page ul.products {
		border-width: 1px 0 0 1px;
		border-color: #c9c9c9;
	}
	.fm-catalog-page ul.products li.product {
		border-color: #c9c9c9;
	}
	.fm-catalog-page ul.products li.product .product-inner {
		border-width: 0 1px 1px 0;
	}
	.fm-catalog-page.fm-show-qty .fm-elementor-product-carousel .slick-list {
		padding-bottom: 45px;
	}
	.fm-catalog-page .fm-elementor-product-carousel ul.products {
		border-left: none;
	}
	.fm-catalog-page .fm-elementor-product-carousel ul.products li.product.slick-current .product-inner {
		border-left: 1px solid #c9c9c9;
	}
	ul.products li.product {
		width: 33.3333%;
	}
	ul.products li.product .product-inner {
		padding: 20px;
		height: 100%;
	}
	ul.products li.product .product-button .group-yith span,
	ul.products li.product .product-button .compare-button span {
		display: none;
	}
	ul.products li.product .product-button .compare-button a:before {
		transform: none;
	}
	.fm-product-fbt ul.products .product-content .thumbnail:before {
		display: none;
	}
	.single-product.fm-product-layout-1 .fm-entry-product-header .entry-left {
		margin-bottom: 15px;
	}
	.single-product.fm-product-layout-2 .site-content .container, .single-product.fm-product-layout-3 .site-content .container {
		padding-left: 15px;
		padding-right: 15px;
	}
	.single-product.fm-product-layout-2 .related-products.fm-position-above, .single-product.fm-product-layout-3 .related-products.fm-position-above {
		margin-bottom: 100px;
	}
	.single-product.fm-product-layout-4 .entry-summary-content {
		padding-right: 30px;
	}
	.single-product.fm-product-layout-4 .woocommerce-tabs .woocommerce-Tabs-panel {
		padding-left: 30px;
	}
	.single-product .woocommerce-tabs ul.tabs {
		display: flex;
		flex-wrap: inherit;
		overflow-x: auto;
		white-space: nowrap;
	}
	.fm-woo-tabs #reviews .col-review_form,
	.woocommerce-tabs #reviews .col-review_form {
		padding-left: 15px;
		margin-top: 30px;
	}
	.related-products ul.products {
		margin-left: 0;
		border-left: 1px solid #eee;
		border-right: 1px solid #eee;
	}
	.related-products ul.products li.product:first-child.slick-current .product-inner {
		border-left: none;
	}
	ul.products {
		border-width: 1px 0 0 1px;
		border-color: #eee;
		border-style: solid;
	}
	ul.products li.product .product-inner {
		padding: 15px;
		border-width: 1px 1px 1px 0;
		border-color: #c9c9c9;
	}
	ul.products li.product .product-inner:hover {
		border-color: #c9c9c9;
	}
	ul.products li.product .product-inner:hover .product-thumbnail .product-loop__buttons {
		display: none;
	}
	ul.products li.product:first-child.slick-current .product-inner {
		border-left: 1px solid #c9c9c9;
	}
	.woocommerce-products-header ul.products li.product .product-bottom-box,
	body:not(.catalog-view-list) ul.products li.product .product-bottom-box {
		position: static;
		display: block;
		z-index: 1;
		padding: 15px 0 0;
		border: none;
	}
	.woocommerce-products-header ul.products li.product .product-details,
	body:not(.catalog-view-list) ul.products li.product .product-details {
		position: static;
	}
	.woocommerce-products-header ul.products li.product .product-button .group-yith,
	body:not(.catalog-view-list) ul.products li.product .product-button .group-yith {
		margin: 0;
	}
	.woocommerce-products-header ul.products li.product .product-button .group-yith .compare-button,
	body:not(.catalog-view-list) ul.products li.product .product-button .group-yith .compare-button {
		display: none;
	}
	.fm-catalog-categories .catalog-categories__wrapper {
		padding-bottom: 70px;
	}
	.fm-show-qty .fm-elementor-product-carousel .slick-list {
		margin: 0;
		padding: 0 2px 0 0;
	}
	.fm-catalog-header__title {
		margin-top: 40px;
	}
	.woocommerce div.product .woocommerce-product-gallery {
		width: 100%;
		margin-bottom: 30px;
	}
	.woocommerce div.product .woocommerce-product-gallery .product-image-ms {
		display: none;
	}
	.woocommerce div.product div.entry-summary {
		width: 100%;
		padding-left: 0;
		margin-top: 50px;
	}
	.single-product.fm-product-layout-1 .entry-summary-content {
		padding-right: 30px;
	}
	.single-product.fm-product-layout-2 .fm-product-fbt ul.products li.product, .single-product.fm-product-layout-3 .fm-product-fbt ul.products li.product {
		width: 33%;
	}
	.single-product.fm-product-layout-3 div.product div.entry-summary {
		padding-left: 0;
	}
	.fm-catalog-filter-sidebar-content {
		padding: 0 25px;
	}
	.fm-catalog-filter-sidebar-content > .widget {
		margin-bottom: 60px;
	}
	.fm-product-fbt .fbt-box {
		padding-right: 20px;
	}
	.fm-product-fbt ul.products li.product {
		width: 33%;
	}
	.fm-widget-products-carousel .slick-slide > *:not(:last-child) li.product {
		border: none;
	}
	.fm-widget-products ul.products li.product .product-thumbnail img {
		margin: 0;
	}
	.fm-widget-products .widget-title {
		padding: 0 20px 12px 20px;
	}
	.related-products .slick-list {
		padding: 0;
		margin: 0;
	}
	.fm-quick-view-modal .product-modal-content div.product div.entry-summary {
		position: relative;
	}
	.fm-quick-view-modal .product-modal-content div.product .enable-buy-now .single-button-wrapper {
		flex-wrap: initial;
	}
	.fm-quick-view-modal div.product {
		overflow: auto;
	}
	.fm-modal .modal-content,
	.fm-quick-view-modal .product-modal-content div.product {
		height: 70vh;
	}
	.woocommerce-cart div table.shop_table {
		margin-bottom: 25px;
	}
	.woocommerce-cart div table.shop_table tbody .actions {
		padding-bottom: 25px;
	}
	.woocommerce-cart div .col-coupon {
		margin-bottom: 20px;
		padding-right: 15px;
	}
	.woocommerce-cart div .col-coupon label {
		margin-bottom: 10px;
		margin-top: 0;
	}
	.woocommerce-cart div .col-calculator {
		padding-right: 15px;
		margin-bottom: 30px;
		margin-top: 50px;
	}
	.woocommerce-cart div .woocommerce-shipping-calculator a.shipping-calculator-button {
		margin-bottom: 10px;
		margin-top: 0;
	}
	.woocommerce-checkout .form-login-section,
	.woocommerce-checkout .coupon-section {
		margin-bottom: 0;
	}
	.woocommerce-checkout .form-login-section form,
	.woocommerce-checkout .coupon-section form {
		margin-bottom: 20px;
	}
	.woocommerce-checkout .form-login-section {
		padding-right: 15px;
	}
	.woocommerce-checkout div form.checkout .fm-checkout-billing {
		padding-right: 15px;
		margin-bottom: 30px;
	}
	.woocommerce-account .woocommerce-MyAccount-navigation,
	.woocommerce-account .woocommerce-MyAccount-content {
		float: none;
		width: 100%;
	}
	.woocommerce-account .woocommerce-MyAccount-content {
		margin-top: 50px;
	}
	.account-page-promotion .customer-login .farmart-login-promotion {
		max-width: 100%;
	}
	.account-page-promotion .customer-login .col-login-promotion {
		padding-left: 15px;
		margin-top: 50px;
	}
}

@media (max-width: 767px) {
	.header-items-mobile--left > * {
		margin-right: 10px;
	}
	.header-items-mobile--center > * {
		margin-left: 5px;
		margin-right: 5px;
	}
	.header-items-mobile--right > * {
		margin-left: 10px;
	}
	.single-product.fm-product-layout-1 .entry-summary-content,
	.single-product.fm-product-layout-1 .entry-summary-sidebar,
	.fm-modal .modal-content {
		width: 100%;
	}
	.farmart-container {
		padding-left: 15px;
		padding-right: 15px;
	}
	.farmart-container .farmart-container {
		padding-left: 0;
		padding-right: 0;
	}
	.fm-search-form--mobile .open-search-panel .farmart-svg-icon,
	.header-element--compare a .farmart-svg-icon,
	.header-element--wishlist a .farmart-svg-icon,
	.header-element--cart a .farmart-svg-icon {
		font-size: 21px;
	}
	.header-element--cart a {
		padding: 0 0 0 5px;
	}
	.footer-newsletter__wrapper {
		display: block;
	}
	.footer-newsletter__wrapper form {
		width: 100%;
	}
	.footer-newsletter__title {
		justify-content: flex-start;
		width: 100%;
		margin-bottom: 30px;
		font-size: 18px;
	}
	.footer-extra .footer-extra__wrapper {
		display: block;
	}
	.footer-extra .footer-extra__item {
		padding: 54.5px 0;
		margin: 0 0 15px 0;
	}
	.footer-extra__content--title {
		font-size: 13px;
	}
	.footer-extra__content--desc {
		font-size: 20px;
	}
	.footer-extra__icon {
		margin-left: 25px;
	}
	.footer-extra__icon .farmart-svg-icon {
		font-size: 55px;
	}
	.footer-infor__item {
		margin-bottom: 15px;
	}
	.footer-widgets .footer-widgets-area-diff {
		padding: 0 15px;
	}
	.footer-widgets .footer-widgets-area-2 {
		margin-top: 0;
	}
	.footer-widgets .footer-widgets-area {
		margin-bottom: 30px;
	}
	.footer-widgets .footer-widgets-area:last-child {
		margin-bottom: 0;
	}
	.footer-widgets-area-diff .row-flex {
		flex-wrap: wrap;
	}
	.footer-navigation li a {
		padding-top: 5px;
		padding-bottom: 5px;
	}
	blockquote {
		padding-left: 25px;
		padding-right: 25px;
	}
	.farmart-post-taxs-list:before, .farmart-post-taxs-list:after,
	.fm-product-deals-grid .products-content:before,
	.fm-product-deals-grid .products-content:after {
		width: calc((100vw - 100%)/2);
	}
	.farmart-post-taxs-list:before,
	.fm-product-deals-grid .products-content:before {
		left: calc((-100vw + 100%)/2);
	}
	.farmart-post-taxs-list:after,
	.fm-product-deals-grid .products-content:after {
		right: calc((-100vw + 100%)/2);
	}
	.farmart-post-taxs-list ul,
	.fm-product-deals-grid .products-content ul {
		overflow: auto;
		white-space: nowrap;
		display: flex;
	}
	.single-header .single-post-socials-share {
		margin: 10px 0;
	}
	.single-post .single-post-wrapper .entry-title {
		font-size: 24px;
	}
	.single-post .slick-dots {
		bottom: 10px;
	}
	.farmart-list-box__wrapper .box-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.farmart-blog-shortcode .blog-wrapper,
	.farmart-post__related .blog-wrapper {
		border-right: none;
	}
	.farmart-blog-page--small-thumb .farmart-post-list .blog-wrapper:not(.no-flex).has-post-thumbnail .blog-wrapper__inner {
		display: block;
	}
	.farmart-blog-page--small-thumb .farmart-post-list .blog-wrapper:not(.no-flex).has-post-thumbnail .entry-format {
		margin: 0 0 30px;
		max-width: 100%;
	}
	.farmart-blog-page--small-thumb .farmart-post-list .blog-wrapper:not(.no-flex).has-post-thumbnail .entry-format.format-gallery {
		max-width: 100%;
	}
	.farmart-blog-page--list .blog-wrapper .entry-format.format-link,
	.farmart-blog-page--list .entry-summary {
		padding: 30px;
	}
	.error404 .error-404 {
		padding-left: 15px;
		padding-right: 15px;
	}
	.admin-bar .farmart-menu-department.menu-click .department-menu {
		top: 0;
	}
	ul.products li.product {
		width: 50%;
	}
	ul.products li.product .woocommerce-loop-product__title a {
		white-space: initial;
	}
	ul.products li.product .product-button .quantity_button {
		padding: 6px 8px;
	}
	.woocommerce div.product .fm-entry-product-header {
		flex-wrap: wrap;
		flex-direction: column;
		align-items: flex-start;
	}
	.woocommerce div.product .fm-entry-product-header .product_socials {
		margin-top: 15px;
	}
	.woocommerce div.product .tawc-deal .deal-expire-date {
		flex-direction: column;
	}
	.woocommerce div.product .tawc-deal .deal-expire-date .deal-expire-text,
	.woocommerce div.product .tawc-deal .deal-expire-date .deal-expire-countdown {
		width: 100%;
	}
	.woocommerce div.product div.entry-summary {
		margin-top: 0;
	}
	.catalog-view-list .fm-shop-content ul.products li.product .product-thumbnail {
		width: 50%;
	}
	.catalog-view-list .fm-shop-content ul.products li.product .product-details {
		flex-direction: column;
		width: 50%;
		padding-left: 0;
	}
	.catalog-view-list .fm-shop-content ul.products li.product .product-content-box {
		padding-right: 0;
	}
	.catalog-view-list .fm-shop-content ul.products li.product .product-bottom-box {
		min-width: auto;
		max-width: auto;
	}
	.catalog-view-list .fm-shop-content ul.products li.product .product-bottom-box .product-button {
		margin-top: 10px;
	}
	.catalog-view-list .fm-shop-content ul.products li.product .product-bottom-box .product-button .group-yith span,
	.catalog-view-list .fm-shop-content ul.products li.product .product-bottom-box .product-button .compare-button span {
		display: inline-block;
	}
	.catalog-view-list .fm-shop-content ul.products li.product .woocommerce-product-details__short-description {
		margin-top: 0;
	}
	.catalog-view-list .fm-shop-content ul.products li.product .woocommerce-product-details__short-description ul {
		margin-bottom: 5px;
	}
	.catalog-view-list .fm-shop-content ul.products li.product .product-inner {
		border-left-color: #ddd;
		border-right-color: #ddd;
	}
	.catalog-view-list .fm-shop-content ul.products li.product .product-inner:hover {
		border-color: transparent;
		border-left-color: #ddd;
		border-right-color: #ddd;
	}
	.catalog-view-list .fm-shop-content ul.products li.product:first-child .product-inner {
		border-top-color: #ddd;
	}
	.catalog-view-list .fm-shop-content ul.products li.product:last-child .product-inner {
		border-bottom-color: #ddd;
	}
	.catalog-banners-carousel.banner-has-bg {
		padding: 25px 0;
	}
	.catalog-toolbar .catalog-toolbar__bottom {
		align-items: center;
	}
	.catalog-toolbar .woocommerce-ordering,
	.catalog-toolbar .per-page {
		margin: 0 20px 0 0;
	}
	.catalog-toolbar .woocommerce-ordering .current {
		background-color: transparent;
		border: none;
		line-height: 1;
		padding: 0 30px 0 0;
		min-height: auto;
		min-width: auto;
	}
	.catalog-toolbar .woocommerce-ordering > li.current {
		color: #222;
	}
	.catalog-toolbar .shop-view .shop-view__icon {
		margin-left: 15px;
	}
	.catalog-toolbar .shop-view .shop-view__icon a.extended {
		display: none;
	}
	.catalog-toolbar .products-found,
	.catalog-toolbar + .products-found {
		font-size: 16px;
	}
	.fm-catalog-header__right .text {
		display: none;
	}
	.single-product.fm-product-layout-1 .entry-summary-content {
		padding: 0;
	}
	.single-product.fm-product-layout-2 .fm-product-fbt .fbt-box, .single-product.fm-product-layout-3 .fm-product-fbt .fbt-box {
		padding-right: 10px;
	}
	.single-product.fm-product-layout-2 .fm-product-fbt ul.products li.product, .single-product.fm-product-layout-3 .fm-product-fbt ul.products li.product {
		width: 50%;
	}
	.single-product.fm-product-layout-2 .fm-product-fbt .product-buttons .fm_add_to_cart_button,
	.single-product.fm-product-layout-2 .fm-product-fbt .product-buttons .fm-wishlist-button, .single-product.fm-product-layout-3 .fm-product-fbt .product-buttons .fm_add_to_cart_button,
	.single-product.fm-product-layout-3 .fm-product-fbt .product-buttons .fm-wishlist-button {
		width: auto;
		min-width: auto;
	}
	.single-product.fm-product-layout-4 ul.products {
		border-color: #c9c9c9;
		border-width: 1px 0 0 1px;
	}
	.single-product.fm-product-layout-4 ul.products li .product-inner {
		border-width: 0 1px 1px 0;
		border-color: #c9c9c9;
	}
	.single-product.fm-product-layout-4 div.product .fm-product-detail {
		padding: 0;
	}
	.single-product.fm-product-layout-4 div.product .fm-product-detail .farmart-container {
		padding-left: 0;
		padding-right: 0;
	}
	.single-product.fm-product-layout-4 .entry-summary-content,
	.single-product.fm-product-layout-4 .entry-summary-sidebar {
		width: 100%;
		padding: 0;
	}
	.single-product.fm-product-layout-4 .woocommerce-tabs ul.tabs {
		width: 100%;
	}
	.single-product.fm-product-layout-4 .woocommerce-tabs .woocommerce-Tabs-panel {
		width: 100%;
		padding-left: 0;
	}
	.single-product.fm-product-layout-4 .woocommerce-tabs #reviews .col-review_form {
		margin-top: 0;
	}
	.single-product.fm-product-layout-4 .woocommerce-tabs .comment-respond .comment-reply-title {
		margin-top: 0;
	}
	.single-product .entry-summary-sidebar {
		margin-top: 30px;
	}
	.single-product .woocommerce-tabs {
		padding: 0;
	}
	.single-product .woocommerce-tabs ul.tabs {
		padding: 15px;
	}
	.single-product .fm-product-bg-full-width {
		background-color: transparent;
	}
	.single-product.fm-product-layout-4 div.product .fm-product-detail.fm-product-bg-full-width .farmart-container {
		padding-left: 0;
		padding-right: 0;
	}
	.fm-product-fbt .fbt-box {
		padding-left: 0;
		padding-right: 0;
	}
	.fm-product-fbt .fbt-title {
		font-size: 18px;
	}
	.fm-product-fbt .products-list {
		padding-left: 10px;
	}
	.fm-product-fbt ul.products li.product {
		width: 50%;
		padding: 15px 0;
		border: none;
	}
	.fm-product-fbt ul.products li.product.product-buttons {
		padding: 0 10px;
		width: 100%;
	}
	.fm-product-fbt ul.products li.product:before, .fm-product-fbt ul.products li.product:after {
		display: none;
	}
	.fm-product-fbt ul.products .product-content {
		padding: 0 10px;
	}
	.fm-product-fbt ul.products .product-content .thumbnail:after {
		display: none;
	}
	.related-products .related-title {
		font-size: 24px;
	}
	.fm-widget-products ul.products {
		padding-left: 15px;
		padding-right: 15px;
	}
	.fm-widget-products ul.products li.product {
		width: 50%;
	}
	.woocommerce-tabs ul.tabs .fm-wc-tab__magic-line {
		display: none;
	}
	.woocommerce-tabs #reviews .col-review_form {
		padding-left: 15px;
		margin-top: 30px;
	}
	.fm-quick-view-modal .product-modal-content div.product {
		padding: 25px 20px;
	}
	.fm-quick-view-modal .product-modal-content div.product .woocommerce-product-gallery .woocommerce-product-gallery__wrapper {
		padding: 0 0 30px 0;
	}
	.fm-quick-view-modal .product-modal-content div.product .enable-buy-now .single-button-wrapper {
		flex-wrap: wrap;
	}
	.fm-quick-view-modal .product-modal-content div.product div.entry-summary {
		padding: 0;
	}
	.slick-dots li button:hover:before {
		background-color: #ddd;
	}
	.slick-dots li.slick-active button:hover:before {
		background-color: var(--fm-background-color-primary);
	}
	.farmart-social-share {
		flex-wrap: wrap;
	}
	.farmart-social-share li {
		margin-bottom: 5px;
	}
	body.woocommerce form .form-row-first,
	body.woocommerce form .form-row-last,
	div.woocommerce form .form-row-first,
	div.woocommerce form .form-row-last {
		width: 100%;
		padding: 0;
	}
	.woocommerce-cart div table.shop_table thead {
		display: none;
	}
	.woocommerce-cart div table.shop_table tbody td {
		border-left: 0;
		border-right: 0;
		vertical-align: top;
		padding: 25px 0 20px;
	}
	.woocommerce-cart div table.shop_table tbody td.product-name {
		padding-right: 10px;
	}
	.woocommerce-cart div table.shop_table tbody .product-thumbnail {
		width: 90px;
	}
	.woocommerce-cart div table.shop_table tbody .product-quantity .price {
		font-size: 13px;
		font-weight: 700;
		color: #000;
	}
	.woocommerce-cart div table.shop_table tbody .product-quantity .price label {
		font-weight: 400;
		color: #555;
	}
	.woocommerce-cart div table.shop_table tbody .product-quantity .quantity {
		max-width: 100%;
		margin-top: 10px;
	}
	.woocommerce-cart div table.shop_table tbody .product-quantity .quantity .qty-box {
		width: 90%;
		max-width: 100%;
	}
	.woocommerce-cart div table.shop_table tbody .product-quantity .quantity label {
		display: none;
	}
	.woocommerce-cart div table.shop_table tbody .product-quantity .price-total {
		font-weight: 700;
		color: #2f8a33;
		margin-top: 8px;
		font-size: 13px;
	}
	.woocommerce-cart div table.shop_table tbody .product-quantity .price-total label {
		font-weight: 400;
		color: #555;
	}
	.woocommerce-cart div table.shop_table tbody .product-remove a {
		float: right;
	}
	.woocommerce-cart div table.shop_table tbody .actions a {
		margin: 0 0 10px;
		padding: 9px 20px;
	}
	.woocommerce-cart div table.shop_table tbody .actions button.empty-cart-button {
		margin-bottom: 23px;
	}
	.woocommerce-cart div table.shop_table tbody .actions button.update_cart {
		padding: 0 20px;
		margin-left: 0;
	}
	.woocommerce-cart div table.shop_table tbody .actions .actions__left,
	.woocommerce-cart div table.shop_table tbody .actions .actions__right {
		flex-direction: column;
	}
	.woocommerce-cart div table.shop_table tbody .actions .actions__left {
		align-items: flex-start;
	}
	.woocommerce-cart div table.shop_table tbody .actions .actions__right {
		align-items: flex-end;
	}
	.woocommerce-cart div .col-coupon label,
	.woocommerce-cart div .woocommerce-shipping-calculator a.shipping-calculator-button {
		font-size: 18px;
	}
	.woocommerce-checkout .form-login-section .woocommerce-form-login .form-row-first,
	.woocommerce-checkout .form-login-section .woocommerce-form-login .form-row-last {
		width: 100%;
		padding-left: 0;
		padding-right: 0;
	}
	.woocommerce-checkout div form.checkout .fm-review-order-table {
		padding: 9px 15px;
	}
	.woocommerce-checkout div form.checkout #payment ul.payment_methods {
		padding-left: 15px;
		padding-right: 15px;
	}
	.woocommerce-checkout .form-login-section .woocommerce-form-login .form-row-first,
	.woocommerce-checkout .form-login-section .woocommerce-form-login .form-row-last {
		width: 100%;
		padding-left: 0;
		padding-right: 0;
	}
	.woocommerce-checkout div form.checkout .fm-review-order-table {
		padding: 9px 15px;
	}
	.woocommerce-checkout div form.checkout #payment ul.payment_methods {
		padding-left: 15px;
		padding-right: 15px;
	}
	.account-page-promotion .login-promotion .promotion-ads-content {
		align-items: flex-start;
		padding: 20px 15px;
	}
	.account-page-promotion .login-promotion .promotion-ads-content .promotion-ads-title {
		margin: 0 20px 0 0;
		font-size: 45px;
	}
	.account-page-promotion .login-promotion .pro-title {
		font-size: 18px;
	}
	.account-page-promotion .login-promotion .pro-list ul li {
		font-size: 14px;
	}
	.footer-main > * {
		flex-direction: column;
		align-items: flex-start;
	}
	.footer-link .widget {
		display: block;
	}
	.footer-link .widget .widget-title {
		display: block;
		margin-top: 30px;
		margin-bottom: 15px;
	}
	.farmart-blog-page--small-thumb .blog-wrapper.sticky .blog-wrapper__inner {
		padding: 15px;
	}
}

@media (max-width: 480px) {
	.page-header:not(.page-header-layout-2) {
		padding-top: 50px;
		padding-bottom: 0;
	}
	.site-content {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.footer-widgets .footer-widgets-diff-item {
		flex: 1 1 50%;
	}
	.woocommerce-cart .site-content {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.footer-newsletter__title {
		font-size: 14px;
		line-height: 26px;
	}
	.footer-newsletter__title .farmart-svg-icon {
		font-size: 30px;
		display: none;
	}
	.footer-newsletter__wrapper form .mc4wp-form-fields {
		display: block;
	}
	.footer-newsletter__wrapper form .mc4wp-form-fields input[type="submit"] {
		padding-left: 0;
		padding-right: 0;
		width: 100%;
		margin-top: 10px;
	}
	.footer-extra .footer-extra__item {
		padding: 34.5px 25px;
		justify-content: space-between;
		align-items: center;
	}
	.footer-extra .footer-extra__item:nth-child(2) .footer-extra__content--desc br {
		display: none;
	}
	.footer-extra .footer-extra__item:nth-child(2) .footer-extra__icon .farmart-svg-icon {
		font-size: 55px;
	}
	.footer-extra__content--title {
		font-size: 12px;
	}
	.footer-extra__content--desc {
		font-size: 16px;
	}
	.footer-extra__icon {
		margin-left: 15px;
	}
	.footer-navigation li a {
		padding-left: 6px;
		padding-right: 6px;
	}
	.farmart-taxs-list {
		margin-bottom: 15px;
	}
	.entry-meta {
		flex-wrap: wrap;
	}
	.post-author--box {
		flex-direction: column;
	}
	.post-author--avatar {
		margin: 0 0 20px 0;
	}
	.farmart-post--navigation .nav-links {
		flex-direction: column;
	}
	.farmart-post--navigation .box-nav--right {
		text-align: left;
		margin-top: 20px;
	}
	.entry-meta .meta.meta-comment {
		display: none;
	}
	.comment-list .children {
		padding-left: 0;
	}
	.comment-list .children .children {
		padding-left: 0;
		margin-left: 0;
	}
	.comment-list li.pingback .comment-meta,
	.comment-list li.comment .comment-meta {
		float: none;
	}
	.comment-list li.comment .comment-content {
		margin: 20px 0 0 0;
	}
	.admin-bar .farmart-menu-department.menu-click .department-menu {
		width: 100%;
	}
	.woocommerce div.product .enable-buy-now .single-button-wrapper .fm-wishlist-button {
		margin-left: 0;
	}
	.woocommerce div.product .enable-buy-now .single-button-wrapper .fm-wishlist-button .yith-wcwl-wishlistexistsbrowse a,
	.woocommerce div.product .enable-buy-now .single-button-wrapper .fm-wishlist-button .yith-wcwl-add-button a {
		display: flex;
		align-items: center;
	}
	.woocommerce div.product .enable-buy-now .single-button-wrapper .fm-wishlist-button .yith-wcwl-wishlistexistsbrowse a span,
	.woocommerce div.product .enable-buy-now .single-button-wrapper .fm-wishlist-button .yith-wcwl-add-button a span {
		display: block;
		margin-left: 10px;
		color: #666;
	}
	.woocommerce div.product .enable-buy-now .single-button-wrapper .compare-button a {
		font-size: 14px;
		display: flex;
		align-items: center;
	}
	.woocommerce div.product .enable-buy-now .single-button-wrapper .compare-button a span {
		display: block;
		margin-left: 10px;
		color: #666;
	}
	.woocommerce div.product .enable-buy-now .single-button-wrapper .action-buttons {
		flex-direction: column;
		align-items: flex-start;
	}
	.woocommerce div.product .enable-buy-now .single-button-wrapper .action-buttons .group-buttons {
		margin-top: 10px;
	}
	.single-product .fm-product-fbt .fbt-columns-3 ul.products li.product {
		width: 50%;
	}
	.single-product .fm-product-fbt .fbt-columns-4 ul.products li.product {
		width: 50%;
	}
	.single-product .fm-product-fbt .fbt-columns-5 ul.products li.product {
		width: 50%;
	}
	.single-product .fm-product-fbt .fbt-columns-6 ul.products li.product {
		width: 50%;
	}
	.single-product .fm-product-fbt .fbt-columns-7 ul.products li.product {
		width: 50%;
	}
	.single-product .fm-product-fbt ul.products li.product.product-buttons {
		width: 100% !important;
	}
	.single-product .fm-product-fbt ul.products li.product.product-buttons .fm_add_to_cart_button,
	.single-product .fm-product-fbt ul.products li.product.product-buttons .fm-wishlist-button {
		width: 100% !important;
	}
	.single-product.fm-product-layout-4 .entry-summary-sidebar,
	.single-product.fm-product-layout-4 .entry-summary-content {
		width: 100%;
		padding: 0;
	}
	.fm-quick-view-modal .product-modal-content div.product .single-button-wrapper {
		flex-wrap: wrap;
	}
	.woocommerce-cart div table.shop_table tbody .actions .actions__button-wrapper {
		display: flex;
		flex-direction: column-reverse;
	}
	.woocommerce-cart div table.shop_table tbody .actions .actions__button-wrapper > div {
		width: 100%;
		text-align: center;
	}
	.woocommerce-cart div table.shop_table tbody .actions .actions__button-wrapper .actions__right {
		margin-bottom: 10px;
		align-items: center;
	}
	.woocommerce-cart div table.shop_table tbody .actions .actions__button-wrapper a,
	.woocommerce-cart div table.shop_table tbody .actions .actions__button-wrapper button:not(.empty-cart-button) {
		width: 100%;
	}
	.woocommerce-cart div table.shop_table tbody .actions .actions__button-wrapper button.empty-cart-button {
		margin-bottom: 20px;
		display: inline-block;
		width: auto;
	}
	.woocommerce-checkout .coupon-section .woocommerce-form-coupon .form-row-first,
	.woocommerce-checkout .coupon-section .woocommerce-form-coupon .form-row-last {
		float: none;
		width: 100%;
	}
	.woocommerce-checkout .coupon-section .woocommerce-form-coupon .form-row-first input {
		border-right: 1px solid #ccc;
		border-bottom-right-radius: 3px;
		border-top-right-radius: 3px;
	}
	.woocommerce-checkout .coupon-section .woocommerce-form-coupon .form-row-last button {
		border-bottom-left-radius: 3px;
		border-top-left-radius: 03px;
	}
}