html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
}

main {
	display: block;
}



hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

a {
	background-color: transparent;
}

b,
strong {
	font-weight: bolder;
}

small {
	font-size: 80%;
}

img {
	border-style: none;
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

button,
input {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

:root {
	--font-primary: 'Jost', serif;
	--font-secondary: "Rubik", "Segoe UI", "Roboto", "Helvetica Neue", "Arial",
		"Noto Sans", "Liberation Sans", "sans-serif", "Apple Color Emoji",
		"Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--font-size: 18px;
	--font-weight: 400;
	--line-height: 1.6;
	--color-text: #919C93;
	--color-primary: #364A15;
	--color-primary-tint: #618626;
	--color-primary-shade: #19220a;
	--color-secondary: #876A1D;
	--color-secondary-tint: #b18b26;
	--color-secondary-shade: #5d4914;
	--color-grey1: #F2F2EE;
	--color-grey2: #E4E4D9;
	--color-grey2-shade: #c4c4ac;
	--color-grey3: #BABDA5;
	--color-grey3-tint: #C5C8B4;
	--color-white: #FFFFFF;
	--color-black: #000000;
	--color-blue: #409EE4;
	--color-blue-light: #F3F9FD;
	--color-green: #5DBC75;
	--color-green-light: #EDF8F0;
	--color-orange: #F8A64E;
	--color-orange-light: #FEF7F0;
	--color-red: #E60A2A;
	--color-red-light: #FEF1F3;
	--color-purple: #6758F3;
	--color-purple-light: #E9E7FD;
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

*:focus {
	outline: none;
}

html {
	font-size: var(--font-size);
}

html,
body {
	width: 100%;
	overflow-x: hidden;
}

body {
	font-family: var(--font-primary);
	font-weight: var(--font-weight);
	color: var(--color-text);
	line-height: var(--line-height);
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	overflow-y: scroll;
	background-color: var(--color-white);
}

a {
	color: var(--color-primary);
	text-decoration: none;
}

a:hover {
	color: var(--color-primary-tint);
}

p {
	margin-top: 0;
	margin-bottom: 30px;
}

p:last-child {
	margin-bottom: 0;
}

hr {
	margin-top: 30px;
	margin-bottom: 30px;
	border-width: 1px 0 0 0;
	border-style: solid;
	border-color: var(--color-grey2);
}

img {
	max-width: 100%;
	vertical-align: middle;
}

b,
strong {
	font-weight: 600;
}

ul {
	padding-left: 20px;
}

ol,
ul {
	margin-top: 0;
	margin-bottom: 20px;
}

ol:last-child,
ul:last-child {
	margin-bottom: 0;
}


nav ol,
nav ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}

label {
	display: inline-block;
	max-width: 100%;
}

table {
	border-collapse: collapse;
	background-color: transparent;
}

.hidden {
	display: none !important;
}

.img-fluid {
	width: 100% !important;
	height: auto !important;
}

.text-center {
	text-align: center !important;
}

.text-capitalize {
	text-transform: capitalize !important;
}

.text-wrap {
	white-space: normal !important;
}

.flex {
	display: flex !important;
}

.flex-nowrap {
	flex-wrap: nowrap !important;
}

.flex-grow-1 {
	flex-grow: 1 !important;
}

.border {
	border: 1px solid var(--color-grey2);
}

.border-top {
	border-top: 1px solid var(--color-grey2);
}

.border-bottom {
	border-bottom: 1px solid var(--color-grey2);
}

.border-bottom-0 {
	border-bottom: 0 !important;
}

.ml-auto {
	margin-left: auto !important;
}

.m-0 {
	margin: 0 !important;
}

.mb-0 {
	margin-bottom: 0 !important;
}

.m-5 {
	margin: 5px !important;
}

.mt-5 {
	margin-top: 5px !important;
}

.mb-5 {
	margin-bottom: 5px !important;
}

.ml-10 {
	margin-left: 10px !important;
}

.p-0 {
	padding: 0 !important;
}

.pt-0 {
	padding-top: 0 !important;
}

.pl-0 {
	padding-left: 0 !important;
}

.pb-5 {
	padding-bottom: 5px !important;
}

.p-10 {
	padding: 10px !important;
}

.aspect-ratio {
	position: relative;
	display: block;
	width: 100%;
	height: 0;
}

.aspect-ratio.is-1x1 {
	padding-bottom: 100%;
}

.back-top {
	position: fixed;
	right: 50px;
	z-index: 998;
	visibility: hidden;
	-webkit-opacity: 0;
	-khtml-opacity: 0;
	-moz-opacity: 0;
	opacity: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	border: 1px solid var(--color-grey2);
	cursor: pointer;
	background-color: var(--color-white);
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
	-webkit-transform: translateY(60px);
	-moz-transform: translateY(60px);
	-o-transform: translateY(60px);
	-ms-transform: translateY(60px);
	transform: translateY(60px);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

@media (min-width: 1200px) {
	.back-top {
		bottom: 100px;
	}
}

.breadcrumb {
	display: inline-flex;
	align-items: center;
}

.container {
	max-width: 1220px;
	margin-left: auto;
	margin-right: auto;
}

@media (min-width: 768px) {
	.container {
		padding-left: 60px;
		padding-right: 60px;
	}
}

footer p.footerabout-para {
	font-size: 13px;
	line-height: 18px;
	color: #fff;
}

footer .newsletter {
	padding-left: 0px !important;
}

.side_SITE {
	display: flex;
	flex-direction: column;
}

.grid {
	padding-top: 0.1px;
	padding-bottom: 0.1px;
}

.grid_row {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.grid_row.is-60 {
	margin-left: -30px;
	margin-right: -30px;
	margin-bottom: -60px;
}

.grid_row.is-60>.grid_col {
	padding-left: 30px;
	padding-right: 30px;
	margin-bottom: 60px;
}

.grid_col {
	position: relative;
	width: 100%;
	min-height: 1px;
}

.grid_col.is-12 {
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
}

@media (min-width: 992px) {
	.grid_col.is-lg-4 {
		-ms-flex: 0 0 33.333333%;
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}

	.grid_col.is-lg-7 {
		-ms-flex: 0 0 58.333333%;
		flex: 0 0 58.333333%;
		max-width: 58.333333%;
	}
}

.header_menu_item:not(:first-child) {
	margin-left: 30px;
}

.header_menu_link {
	display: flex;
	align-items: center;
	color: var(--color-text);
}

.heading {
	text-align: center;
	margin-bottom: 60px;
}

.icon {
	display: inline-block;
	font-family: 'icons' !important;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	vertical-align: middle;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon.is-arrow-up:before {
	content: "\e907";
}

@media (min-width: 768px) {
	.newsletter {
		-webkit-border-radius: 10px;
		-moz-border-radius: 10px;
		border-radius: 10px;
	}
}

@media (min-width: 992px) {
	.newsletter {
		align-items: center;
		justify-content: space-between;
	}

	.newsletter_form {
		min-width: 400px;
	}
}

@media (min-width: 768px) {}

.shop-product_rating {
	display: flex;
	justify-content: center;
	margin-top: 10px;
}

.shop-single_photos {
	border: 1px solid var(--color-grey2);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

.shop-single_photos_item {
	display: block;
	padding: 20px;
}

.shop-single_thumbnails {
	margin-top: 20px;
}

.shop-single_thumbnails_item {
	min-height: 100%;
	padding: 10px;
	border: 1px solid var(--color-grey2);
	cursor: pointer;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

.slick-current .shop-single_thumbnails_item {
	border-color: var(--color-grey2-shade);
}

.shop-single_title {
	display: flex;
	margin-bottom: 20px;
}

.shop-single_title h2 {
	margin-bottom: 0;
	line-height: 1;
	font-family: var(--font-secondary);
	font-weight: 700;
}

.shop-single_price {
	margin-top: 20px;
	font-size: 24px;
}

.shop-single_description {
	margin-top: 20px;
}

.shop-single_meta {
	margin-top: 20px;
}

.shop-single_meta_item:not(:first-child) {
	margin-top: 10px;
}

.shop-single_meta_item_title {
	color: var(--color-primary);
}

.shop-single_meta_item_value a {
	color: var(--color-text);
}

@media (min-width: 576px) {
	.shop-single_title {
		align-items: flex-start;
		justify-content: space-between;
	}

	.shop-single_title h2 {
		flex: 1 1 auto;
		min-width: 0;
	}
}

.tab_nav {
	display: flex;
}

.tab_nav_item {
	color: var(--color-text);
}

.tab_nav_item.is-active {
	color: var(--color-secondary);
}

.tab_page {
	display: none;
	margin-top: 30px;
}

.tab_page.is-active {
	display: block;
}

@media (min-width: 768px) {
	.tab_nav_item {
		position: relative;
		padding-bottom: 10px;
	}

	.tab_nav_item:after {
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		content: "";
		display: none;
		height: 1px;
		background-color: var(--color-secondary);
	}

	.tab_nav_item:not(:first-child) {
		margin-left: 60px;
	}

	.tab_nav_item.is-active:after {
		display: block;
	}
}

:root {
	--bs-blue: #7678ed;
	--bs-indigo: #6610f2;
	--bs-purple: #6f42c1;
	--bs-pink: #d63384;
	--bs-red: #ff6f61;
	--bs-orange: #fd7e14;
	--bs-yellow: #ff9736;
	--bs-green: #28bb74;
	--bs-teal: #20c997;
	--bs-cyan: #3b86ff;
	--bs-white: #fff;
	--bs-gray: #7d879c;
	--bs-gray-dark: #373f50;
	--bs-gray-100: #f6f9fc;
	--bs-gray-200: #f3f5f9;
	--bs-gray-300: #e3e9ef;
	--bs-gray-400: #dae1e7;
	--bs-gray-500: #aeb4be;
	--bs-gray-600: #7d879c;
	--bs-gray-700: #4b566b;
	--bs-gray-800: #373f50;
	--bs-gray-900: #2b3445;
	--bs-primary: #364a15;
	--bs-secondary: #7d879c;
	--bs-success: #28bb74;
	--bs-info: #3b86ff;
	--bs-warning: #ff9736;
	--bs-danger: #ff6f61;
	--bs-light: #f6f9fc;
	--bs-white: #fff;
	--bs-black: #000;
	--bs-dark: #02010a;
	--bs-primary-rgb: 84, 101, 255;
	--bs-secondary-rgb: 125, 135, 156;
	--bs-success-rgb: 40, 187, 116;
	--bs-info-rgb: 59, 134, 255;
	--bs-warning-rgb: 255, 151, 54;
	--bs-danger-rgb: 255, 111, 97;
	--bs-light-rgb: 246, 249, 252;
	--bs-white-rgb: 255, 255, 255;
	--bs-black-rgb: 0, 0, 0;
	--bs-dark-rgb: 2, 1, 10;
	--bs-white-rgb: 255, 255, 255;
	--bs-black-rgb: 0, 0, 0;
	--bs-body-color-rgb: 75, 86, 107;
	--bs-body-bg-rgb: 255, 255, 255;
	--bs-font-sans-serif: Helvetica, Arial, sans-serif;
	--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
	--bs-body-font-family: var(--bs-font-sans-serif);
	--bs-body-font-size: 14px;
	--bs-body-font-weight: 400;
	--bs-body-line-height: 1.7;
	--bs-body-color: #4b566b;
	--bs-body-bg: #fff;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
	:root {
		scroll-behavior: smooth;
	}
}

body {
	margin: 0;
	font-family: var(--bs-body-font-family);
	font-size: var(--bs-body-font-size);
	font-weight: var(--bs-body-font-weight);
	line-height: var(--bs-body-line-height);
	color: var(--bs-body-color);
	text-align: var(--bs-body-text-align);
	background-color: var(--bs-body-bg);
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
	margin: 1rem 0;
	color: inherit;
	background-color: currentColor;
	border: 0;
	opacity: 0.25;
}

hr:not([size]) {
	height: 1px;
}


p {
	margin-top: 0;
	margin-bottom: 1rem;
}

ol,
ul {
	padding-left: 2rem;
}

ol,
ul,
dl {
	margin-top: 0;
	margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
	margin-bottom: 0;
}

b,
strong {
	font-weight: bolder;
}

small,
.small {
	font-size: 0.875em;
}

a {
	text-decoration: none;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
	color: inherit;
	text-decoration: none;
}

img,
svg {
	vertical-align: middle;
}

table {
	caption-side: bottom;
	border-collapse: collapse;
}

thead,
tbody,
tfoot,
tr,
td,
th {
	border-color: inherit;
	border-style: solid;
	border-width: 0;
}

label {
	display: inline-block;
}

button {
	border-radius: 0;
}

input,
button,
select,
optgroup,
textarea {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

button,
select {
	text-transform: none;
}

[role="button"] {
	cursor: pointer;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
	cursor: pointer;
}

.list-unstyled {
	padding-left: 0;
	list-style: none;
}

.img-fluid {
	max-width: 100%;
	height: auto;
}

.img-thumbnail {
	padding: 0.25rem;
	background-color: #fff;
	border: 1px solid #e3e9ef;
	border-radius: 0.25rem;
	max-width: 100%;
	height: auto;
}

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
	width: 100%;
	padding-right: var(--bs-gutter-x, 0.75rem);
	padding-left: var(--bs-gutter-x, 0.75rem);
	margin-right: auto;
	margin-left: auto;
}

@media (min-width: 576px) {

	.container,
	.container-sm {
		max-width: 540px;
	}
}

@media (min-width: 768px) {

	.container,
	.container-sm,
	.container-md {
		max-width: 720px;
	}
}

@media (min-width: 992px) {

	.container,
	.container-sm,
	.container-md,
	.container-lg {
		max-width: 960px;
	}
}

@media (min-width: 1200px) {

	.container,
	.container-sm,
	.container-md,
	.container-lg,
	.container-xl {
		max-width: 1140px;
	}
}

@media (min-width: 1400px) {

	.container,
	.container-sm,
	.container-md,
	.container-lg,
	.container-xl,
	.container-xxl {
		max-width: 1320px;
	}
}

.row {
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 0;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: calc(-1 * var(--bs-gutter-y));
	margin-right: calc(-.5 * var(--bs-gutter-x));
	margin-left: calc(-.5 * var(--bs-gutter-x));
}

.row>* {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 100%;
	max-width: 100%;
	padding-right: calc(var(--bs-gutter-x) * .5);
	padding-left: calc(var(--bs-gutter-x) * .5);
	margin-top: var(--bs-gutter-y);
}

.col {
	-ms-flex: 1 0 0%;
	flex: 1 0 0%;
}

.col-4 {
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 33.33333%;
}

.col-6 {
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 50%;
}

.col-8 {
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 66.66667%;
}

.col-12 {
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 100%;
}

.g-0,
.gx-0 {
	--bs-gutter-x: 0;
}

.g-0,
.gy-0 {
	--bs-gutter-y: 0;
}

.g-3,
.gx-3 {
	--bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
	--bs-gutter-y: 1rem;
}

@media (min-width: 576px) {
	.col-sm-12 {
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 100%;
	}
}

@media (min-width: 768px) {
	.col-md-1 {
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 8.33333%;
	}

	.col-md-2 {
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 16.66667%;
	}

	.col-md-3 {
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 25%;
	}

	.col-md-4 {
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 33.33333%;
	}

	.col-md-5 {
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 41.66667%;
	}

	.col-md-6 {
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 50%;
	}

	.col-md-8 {
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 66.66667%;
	}

	.col-md-9 {
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 75%;
	}

	.col-md-12 {
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 100%;
	}
}

@media (min-width: 992px) {
	.col-lg-3 {
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 25%;
	}

	.col-lg-4 {
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 33.33333%;
	}

	.col-lg-6 {
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 50%;
	}

	.col-lg-8 {
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 66.66667%;
	}

	.col-lg-9 {
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 75%;
	}

	.col-lg-12 {
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 100%;
	}
}

@media (min-width: 1200px) {
	.col-xl-12 {
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 100%;
	}
}

.form-control {
	display: block;
	width: 100%;
	padding: 0.65rem 1.25rem;
	font-size: 0.93rem;
	font-weight: 400;
	line-height: 1.7;
	color: #4b566b;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #aeb4be;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 0.25rem;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control::-webkit-input-placeholder {
	color: #7d879c;
	opacity: 1;
}

.form-control::placeholder {
	color: #7d879c;
	opacity: 1;
}

.form-control:disabled,
.form-control[readonly] {
	background-color: #f3f5f9;
	opacity: 1;
}

.btn {
	display: inline-block;
	font-weight: 500;
	line-height: 1.7;
	color: #4b566b;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-color: transparent;
	border: 1px solid transparent;
	padding: 0.65rem 1.25rem;
	font-size: 0.93rem;
	border-radius: 0.25rem;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-white {
	color: #000;
	background-color: #fff;
	border-color: #fff;
}

.btn-sm,
.btn-group-sm>.btn {
	padding: 0.5rem 1.1rem;
	font-size: 0.81375rem;
	border-radius: 0.2rem;
}

.fade {
	transition: opacity 0.15s linear;
}

.fade:not(.show) {
	opacity: 0;
}

.collapse:not(.show) {
	display: none;
}

.dropup,
.dropend,
.dropdown,
.dropstart {
	position: relative;
}

.dropdown-toggle {
	white-space: nowrap;
}

.dropdown-toggle::after {
	display: inline-block;
	margin-left: 0.255em;
	vertical-align: 0.255em;
	content: "";
	border-top: 0.3em solid;
	border-right: 0.3em solid transparent;
	border-bottom: 0;
	border-left: 0.3em solid transparent;
}

.dropdown-menu {
	position: absolute;
	z-index: 1000;
	display: none;
	min-width: 10rem;
	padding: 0.5rem 0;
	margin: 0;
	font-size: 0.95rem;
	color: #4b566b;
	text-align: left;
	list-style: none;
	background-color: #fff;
	background-clip: padding-box;
	border: 0 solid rgba(0, 0, 0, 0.15);
	border-radius: 0.25rem;
}

.dropdown-menu-end {
	--bs-position: end;
}

.breadcrumb {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 0 0;
	margin-bottom: 1rem;
	list-style: none;
	background-color: transparent;
}

.breadcrumb-item.active {
	color: #7d879c;
}

.pagination {
	display: -ms-flexbox;
	display: flex;
	padding-left: 0;
	list-style: none;
}

.page-link {
	position: relative;
	display: block;
	color: #364a15;
	background-color: #fff;
	border: 1px solid #e3e9ef;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.page-item:not(:first-child) .page-link {
	margin-left: -1px;
}

.page-item.active .page-link {
	z-index: 3;
	color: #fff;
	background-color: #364a15;
	border-color: #364a15;
}

.page-item.disabled .page-link {
	color: #7d879c;
	pointer-events: none;
	background-color: #fff;
	border-color: #e3e9ef;
}

.page-link {
	padding: 0.375rem 0.75rem;
}

.page-item:first-child .page-link {
	border-top-left-radius: 0.25rem;
	border-bottom-left-radius: 0.25rem;
}

.page-item:last-child .page-link {
	border-top-right-radius: 0.25rem;
	border-bottom-right-radius: 0.25rem;
}

.btn-close {
	box-sizing: content-box;
	width: 1em;
	height: 1em;
	padding: 0.25em 0.25em;
	color: #000;
	background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
	border: 0;
	border-radius: 0.25rem;
	opacity: 0.5;
}

.modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1055;
	display: none;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	outline: 0;
}

.offcanvas {
	position: fixed;
	bottom: 0;
	z-index: 1045;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	max-width: 100%;
	visibility: hidden;
	background-color: #fff;
	background-clip: padding-box;
	outline: 0;
	transition: -webkit-transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.offcanvas-header {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 1rem 1rem;
}

.offcanvas-header .btn-close {
	padding: 0.5rem 0.5rem;
	margin-top: -0.5rem;
	margin-right: -0.5rem;
	margin-bottom: -0.5rem;
}

.offcanvas-title {
	margin-bottom: 0;
	line-height: 1.7;
}

.offcanvas-body {
	-ms-flex-positive: 1;
	flex-grow: 1;
	padding: 1rem 1rem;
	overflow-y: auto;
}

.offcanvas-end {
	top: 0;
	right: 0;
	width: 400px;
	border-left: 0 solid rgba(0, 0, 0, 0.2);
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
}

.d-block {
	display: block !important;
}

.d-flex {
	display: -ms-flexbox !important;
	display: flex !important;
}

.d-none {
	display: none !important;
}

.shadow {
	box-shadow: 0 0.25rem 0.5625rem -0.0625rem rgba(0, 0, 0, 0.03), 0 0.275rem 1.25rem -0.0625rem rgba(0, 0, 0, 0.05) !important;
}

.shadow-lg {
	box-shadow: 0 0.3rem 1.525rem -0.375rem rgba(0, 0, 0, 0.1) !important;
}

.border {
	border: 1px solid #e3e9ef !important;
}

.border-top {
	border-top: 1px solid #e3e9ef !important;
}

.border-bottom {
	border-bottom: 1px solid #e3e9ef !important;
}

.border-bottom-0 {
	border-bottom: 0 !important;
}

.w-100 {
	width: 100% !important;
}

.flex-grow-1 {
	-ms-flex-positive: 1 !important;
	flex-grow: 1 !important;
}

.flex-nowrap {
	-ms-flex-wrap: nowrap !important;
	flex-wrap: nowrap !important;
}

.justify-content-center {
	-ms-flex-pack: center !important;
	justify-content: center !important;
}

.justify-content-between {
	-ms-flex-pack: justify !important;
	justify-content: space-between !important;
}

.align-items-start {
	-ms-flex-align: start !important;
	align-items: flex-start !important;
}

.align-items-center {
	-ms-flex-align: center !important;
	align-items: center !important;
}

.m-0 {
	margin: 0 !important;
}

.mx-1 {
	margin-right: 0.25rem !important;
	margin-left: 0.25rem !important;
}

.mt-2 {
	margin-top: 0.5rem !important;
}

.mt-3 {
	margin-top: 1rem !important;
}

.mt-4 {
	margin-top: 1.5rem !important;
}

.mt-5 {
	margin-top: 2rem !important;
}

.me-1 {
	margin-right: 0.25rem !important;
}

.me-2 {
	margin-right: 0.5rem !important;
}

.me-3 {
	margin-right: 1rem !important;
}

.mb-0 {
	margin-bottom: 0 !important;
}

.mb-2 {
	margin-bottom: 0.5rem !important;
}

.mb-3 {
	margin-bottom: 1rem !important;
}

.mb-4 {
	margin-bottom: 1.5rem !important;
}

.mb-5 {
	margin-bottom: 2rem !important;
}

.ms-auto {
	margin-left: auto !important;
}

.p-0 {
	padding: 0 !important;
}

.p-3 {
	padding: 1rem !important;
}

.p-10 {
	padding: 5rem !important;
}

.py-2 {
	padding-top: 0.5rem !important;
	padding-bottom: 0.5rem !important;
}

.py-6 {
	padding-top: 2.5rem !important;
	padding-bottom: 2.5rem !important;
}

.pt-0 {
	padding-top: 0 !important;
}

.pt-2 {
	padding-top: 0.5rem !important;
}

.pt-4 {
	padding-top: 1.5rem !important;
}

.pb-2 {
	padding-bottom: 0.5rem !important;
}

.pb-3 {
	padding-bottom: 1rem !important;
}

.pb-4 {
	padding-bottom: 1.5rem !important;
}

.pb-5 {
	padding-bottom: 2rem !important;
}

.ps-0 {
	padding-left: 0 !important;
}

.fs-5 {
	font-size: 1.1625rem !important;
}

.fw-bold {
	font-weight: 700 !important;
}

.text-start {
	text-align: left !important;
}

.text-end {
	text-align: right !important;
}

.text-center {
	text-align: center !important;
}

.text-capitalize {
	text-transform: capitalize !important;
}

.text-wrap {
	white-space: normal !important;
}

.text-dark {
	--bs-text-opacity: 1;
	color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.text-muted {
	--bs-text-opacity: 1;
	color: #7d879c !important;
}

.text-reset {
	--bs-text-opacity: 1;
	color: inherit !important;
}

@media (min-width: 768px) {
	.d-md-block {
		display: block !important;
	}

	.d-md-none {
		display: none !important;
	}

	.mt-md-0 {
		margin-top: 0 !important;
	}

	.mb-md-0 {
		margin-bottom: 0 !important;
	}

	.justify-content-md-end {
		-ms-flex-pack: end !important;
		justify-content: flex-end !important;
	}
}

@media (min-width: 992px) {
	.d-lg-block {
		display: block !important;
	}

	.d-lg-none {
		display: none !important;
	}

	.pb-lg-0 {
		padding-bottom: 0 !important;
	}

	.text-lg-start {
		text-align: left !important;
	}
}

body, html {
	width: 100%;
	height: 100%;
}

* {
	outline: none;
}

.section {
	padding-top: 2rem;
	padding-bottom: 2rem;
}

@media (min-width: 768px) {
	.section {
		padding-top: 3rem;
		padding-bottom: 3rem;
	}
}

@media (min-width: 992px) {
	.section {
		padding-top: 3.75rem;
		padding-bottom: 3.75rem;
	}
}

.w-100 {
	width: 100% !important;
}

* {
	outline: none;
}

.theme-link a {
	color: #4b566b;
}

.slick-dots li {
	display: inline-block;
	vertical-align: top;
	margin: 0 5px;
}

.slick-dots li button {
	width: 15px;
	height: 15px;
	background: #fff;
	border: 1px solid #364a15;
	transition: ease all 0.55s;
	border-radius: 50%;
	font-size: 0px;
	color: transparent;
	padding: 0;
}







.shop-top-bar .layout-change .btn {
	padding: 0;
	width: 38px;
	height: 38px;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	border: 1px solid #e3e9ef;
}

.fw-500 {
	font-weight: 500;
}

img {
	max-width: 100%;
}


* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.text-center {
	text-align: center !important;
}

