:root {
    /* theme colours */
	--primary: #aaa;
	--primary-text: #222222;
	--secondary: var(--link-color);
	--link-text: #666;
	--main-bg-color: #f7f7f7;
	--dark-bg-color: #ddd;
	--dialog-color: #fff;
	--footer-bg-color: #222;
	--footer-font-color: #fff;
	--footer-header-color: var(--primary);
    --dark-alt: #fff;
	--light-bg-color: #fff;
	--product-color: #222;
	--button: var(--primary);
	--button-text: #fff;
	--main-font-color: #444;
	--secondary-font-color: #777;
	--input-border: rgba(255,255,255,0.2);

	--font-family: 'Poppins','Noto Sans','Open Sans',sans-serif;
	--font-family-heading: 'Poppins','Noto Sans','Montserrat','Open Sans',sans-serif;

	/* menu */
	--menu-bg: var(--primary);
	--menu-bg-scrolled: var(--primary);
	--menu-link-color: #222;

	/* headers */
	--header-font-color: #fff;
	--header-bg-color: var(--dialog-color);

    /* scrollbar */
    --scrollbar-track-color: transparent;
    --scrollbar-thumb-color: #ddd;

    /* product */
    --product-card: var(--dialog-color);
    --product-image: #eee;
	--product-cross: #444;
    --product-title: #ddd;
	--product-pack-active-bg: var(--primary);
	--product-pack-active-color: #fff;


    /* sizes */
	--main-padding: 15px;
	--left-menu-width: 0px;
	--top-menu-height: 140px;
	--top-menu-height-scrolled: 80px;
	--cart-size: 400px;
}

html {
    height: 100%;
}
img {
	-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none;
}
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smooth: auto;
    font-smooth: never;
    font-smooth: always;
    font-smooth: 2em;
    -webkit-text-stroke: 0px;
    font-weight: 400;
    font-size: 14px;
	line-height: 26px;
    font-family: var(--font-family);
    height: 100%;
    background-repeat: no-repeat;
    background: var(--main-bg-color);
    margin-left: var(--left-menu-width);
    padding: 0px;
    overflow-x: hidden;
	overscroll-behavior: none;
	color: var(--main-font-color);
}
body.noscroll {
	overflow: hidden;
}
.header {
	width: 100%;
	padding: 50px;
	padding-top: 100px;
	padding-bottom: 100px;
	transform-origin: center top;
	text-align: center;
	transform: translateZ(-0.5px) scale(1 + 0.5 * 2);
	color: var(--header-font-color);
}
@media (max-width:990px) {
	.header {
		width: 100%;
		padding: 50px;
		padding-top: 90px;
		padding-bottom: 40px;
		transform-origin: center top;
		transform: translateZ(-0.5px) scale(1 + 0.5 * 2);
	}
	.header h1 {
		font-size: 32px;
	}
}
h1,h2 {
	color: var(--h1-color);
}
h1 {
	font-size: 32px;
	font-weight: 600;
	letter-spacing: -1px;
}
h2 {
	font-size: 20px;
	font-weight: 600;
}
.header .container {
	transform: translateZ(0);
}

.header.contact-us {
	position: relative;
	overflow: hidden;
}
.header-contact {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: var(--images-contact-header);
	background-size: cover;
	background-position: bottom;
	background-repeat: no-repeat;
	transform-origin: left bottom;
}
.header.home {
	position: relative;
	overflow: hidden;
}
.header-home {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: var(--images-home-header) var(--header-bg-color);
	background-size: cover;
	background-position: bottom;
	background-repeat: no-repeat;
}
.header-lax {
	background-attachment: fixed !important;
}
.header.home h1 {
	font-size: 25px;
}
.header h1 {
	color: var(--header-font-color);
}
.scroller {
	width: 100%;
	padding: 30px;
	padding-top: 150px;
	padding-bottom: 100px;
	transform-origin: center top;
	transform: translateZ(-0.5px) scale(1 + 0.5 * 2);
}
.scroller .container {
	transform: translateZ(0);
}
.scroller {
	background: var(--images-scroller);
	background-size: cover;
	background-position: bottom;
	background-repeat: no-repeat;
	background-attachment: fixed;
}
.scroller h1 {
	color: var(--main-font-color);
}

h1,h2,h3,h4 {
    font-family: var(--font-family-heading);
}
h3 {
    font-size: 20px;
}
img {
    max-width: 100%;
}
a {
	color: var(--link-color);
}
.checkout-disclaimer a {
	text-decoration: underline;
	cursor: pointer;
}
a.underline {
	text-decoration: underline;
	cursor: pointer;
}
a:hover {text-decoration: none; color: var(--link-color); }
a.link-change {
	color: var(--main-font-color);
	transition: 220ms;
}
a.link-change:hover {text-decoration: underline; color: var(--secondary);}
a.green-change {
	color: var(--secondary);
	transition: 220ms;
}
a.green-change:hover {text-decoration: underline; color: var(--secondary);}

.scroll-to-top {
	box-shadow: 0px 0px 10px 3px rgba(0,0,0,0.1);
	background: var(--main-font-color);
	color: var(--secondary);
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	padding-top: 7px;
	font-size: 20px;
	text-align: center;
	border-radius: 2px;
	transition: 220ms;
	cursor: pointer;
}
.scroll-to-top:hover {
	color: var(--main-font-color);
	background: var(--secondary);
}
b.medium {
	font-weight: 600;
}
.break-5 {
	margin-bottom: 10px;
}
.page-body {
    position: relative;
    width: 100%;
	min-height: calc(100vh);
    background: var(--main-bg-color);
	padding-top: var(--top-menu-height-scrolled);
}
.lightbox-content {
    background: var(--main-font-color);
}

#footer {
	padding: 30px;
	padding-top: 50px;
	padding-bottom: 50px;
	min-height: 300px;
	color: var(--footer-font-color);
	background: var(--footer-bg-color);
}
.footer-caption {
	font-size: 16px;
	font-family: var(--header-font);
	letter-spacing: 2px;
	font-weight: 700;
	color: var(--main-font-color);
	line-height: 30px;
}
@media (max-width:991px) {
	#footer {
		padding-bottom: 100px;
	}
}
#footer h2 {
	font-size: 16px;
	font-weight: 700;
	color: var(--footer-header-color);
}
#footer a:not(.social) {
	font-size: 14px;
	font-weight: 400;
	color: var(--footer-font-color);
	transition: 220ms;
}
#footer a:not(.social):hover {
	color: var(--secondary-font-color);
	margin-left: 5px;
}





.article-style h1 {
	font-weight: 600;
	font-size: 36px;
}
.article-breadcrumbs {
	height: 100px;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 500;
}
.article-page-meta {
	font-style: italic;
	margin-bottom: 20px;
}
.article-title-wrap {

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.article-meta-wrap {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.article-with-thumb {
	padding-left: 100px;
}
.article-thumb {
	width: 85px;
	left: 0px;
	position: absolute;
	border-radius: 10px;
}
.article-thumb img {
	border-radius: 10px;
}
.faq-section {
	padding-top: 40px; margin-top: 40px; border-top: 1px solid #ddd;
}
.content-style {
	line-height: 1.8;
	padding-right: 40px !important;
  margin-bottom: 100px;
}
@media (max-width:991px) {
	.content-style {
		padding-right: 0px !important;
	}
}
.content-top-link {
	font-size: 24px;
	font-stretch: condensed;
	color: var(--main-font-color);
}
.content-top-link-box {
	height: 34px;
	width: 34px;
	background: #a6a6a6;
	color: var(--main-font-color);
	display: inline-block;
	text-align: center;
	padding-top: 3px;
	font-size: 18px;
}
.content-top-link-text {
	position: relative;
	margin-left: 20px;
	top: 2px;
	display: inline-block;
}
.content-top-link.active {
	color: var(--secondary);
}
.content-top-link.active .content-top-link-box {
	background: var(--secondary);
}

.shop-filter-icon {
	display: none;
}
.shop-filter-button {
	display: none;
}
.shop-filter {
	position: sticky;
	overflow-y: auto;
	height: calc(100vh - 140px);
	top: 130px;
	padding: 10px;
	border-radius: 8px;
	transition: 120ms;
}
.hide-bar .shop-filter {
	top: 20px;
}

@media (max-width:991px) {
	.filter-heading .fa-fw  {
		display: none !important;
	}
	.shop-filter-icon {
		display: block;
		position: fixed;
		top: 90px;
		right: 15px;
		height: 40px;
		width: 40px;
		background:var(--secondary);
		color: var(--main-font-color);
		text-align: center;
		padding-top: 6px;
		box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
		z-index: 102;
	}
	.shop-filter-button {
		display: block;
		position: fixed;
		width: 100%;
		left: 0px;
		bottom: 0px;
		z-index: 1001;
		background:var(--primary);
		color: var(--button-text);
		font-size: 18px;
		text-align: center;
		padding: 20px;
		box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
	}

	.hide-bar .shop-filter {
		top: 0px;
	}
	.shop-filter {
		opacity: 0;
		left: -100%;
		visibility: hidden;
		position: fixed !important;
		z-index: 999;
		top: 0px;
		width: 100%;
		height: calc(100% - 60px);
		overflow-y: scroll;
		background: var(--dialog-color);
		padding: 10px;
		padding-bottom: 50px;
		box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
		max-width: 280px;
		border-radius: 0px;
		transition: 220ms;
	}

	.shop-filter::-webkit-scrollbar {
		display: block;
		/* Safari and Chrome */
	}
	.shop-grid.active .shop-filter {
		opacity: 1;
		visibility: visible;
		left: 0px;
	}
	.shop-filter-screen {
		position: fixed;
		top: 0px;
		left: 0px;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,0.1);
		z-index: 99;
		opacity: 0;
		visibility: hidden;
		transition: 120ms;
	}
	.shop-grid.active .shop-filter-screen {
		visibility: visible;
		opacity: 1;
	}
}
.payment-types {
	display: grid;
	grid-template-columns: 1fr 1fr;
	width: 100%;
	column-gap: 20px;
}
.payment-complete {
	display: grid;
	grid-template-columns: 1fr 1fr;
	width: 100%;
	column-gap: 20px;
	margin-bottom: 100px;
}

@media (max-width:768px) {
	.payment-types {
		display: grid;
		grid-template-columns: 1fr;
		width: 100%;
		column-gap: 20px;
	}
	.payment-complete {
		display: grid;
		grid-template-columns: 1fr;
		width: 100%;
		column-gap: 20px;
		margin-bottom: 100px;
	}
}
.white-box {
	width: 100%;
	padding: 20px;
	background: var(--dialog-color);
	height: 100%;
	border-radius: 6px;
}


/* Works on Firefox */
* {
	scrollbar-width: thin; /* can be auto, thin, or none */
	scrollbar-color: var(--primary) var(--alt-bg-color); /* thumb color, track color */
}
/* WebKit (Chrome, Safari, Edge) */
.shop-filter::-webkit-scrollbar {
	width: 8px;
}

.shop-filter::-webkit-scrollbar-track {
	background: var(--main-bg-color);
	border-radius: 0px;
}

.shop-filter::-webkit-scrollbar-thumb {
	background: transparent;
}

.shop-filter:hover::-webkit-scrollbar-thumb {
	background: var(--alt-bg-color);
}

.show-scroll::-webkit-scrollbar-thumb {
	background: transparent;
}

.show-scroll:hover::-webkit-scrollbar-thumb {
	background: var(--scrollbar-thumb-color);
}

/* Firefox */
.shop-filter,
.show-scroll {
	scrollbar-width: thin; /* Optional: make it slim */
	scrollbar-color: transparent var(--main-bg-color); /* default thumb and track */
}

.shop-filter:hover {
	scrollbar-color: var(--alt-bg-color) var(--main-bg-color);
}

.show-scroll:hover {
	scrollbar-color: var(--scrollbar-thumb-color) var(--main-bg-color);
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
	width: 8px;
	height: 14px;
}

*::-webkit-scrollbar-track {
	background: var(--alt-bg-color);
	border-radius: 0px;
}

*::-webkit-scrollbar-thumb {
	background: var(--primary);
	border-radius: 100px;
	z-index: 9999;
}
.shop-filter::-webkit-scrollbar-track {
	background: var(--main-bg-color);
	border-radius: 0px;
}
.shop-filter::-webkit-scrollbar-thumb {
	background: transparent;
}
.shop-filter:hover::-webkit-scrollbar-thumb {
	background: var(--alt-bg-color);
}

.show-scroll::-webkit-scrollbar-thumb {
	background: transparent;
}
.show-scroll:hover::-webkit-scrollbar-thumb {
	background: var(--scrollbar-thumb-color);
}

.form-label {
	color: var(--main-font-color);
	margin-top: 10px;
	font-size: 13px;
	font-weight: 600;
}
.shop-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: 300px 1fr;
}



.shop-entries {
	display: grid;
	width: 100%;
	gap: 20px;
	margin: 0 auto;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	align-items: stretch; /* default, but just to be explicit */
}
.shop-entries.trending {
	grid-template-columns: 1fr 1fr 1fr 1fr;
}

@media (max-width:1198px) {
	.shop-entries {
		grid-template-columns: 1fr 1fr 1fr;
	}
	.shop-entries.trending {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

@media (max-width:768px) {
	.shop-entries {
		gap: 10px;
		grid-template-columns: 1fr 1fr;
	}
	.shop-entries.trending {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width:991px) {
	.shop-entries {
		gap: 15px;
		grid-template-columns: 1fr 1fr;
	}

	.shop-grid {
		gap: 10px;
		grid-template-columns: 1fr;
	}
}
.menu-top.scrolled {
    box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.1);
	background: var(--dark-bg-color);
}
.menu-top.scrolled {
    height: var(--top-menu-height-scrolled);
}
.menu-top {
    position: fixed;
	background: var(--menu-bg);
    width: 100%;
	height: var(--top-menu-height-scrolled);
    left: 0px;
    top: 0px;
    z-index: 999;
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.15);
	will-change: transform;
    transition: transform 320ms ease-in-out;
}
.hide-bar .menu-top {
	transform: translateY(-150px);
}
.top-bar {
	will-change: transform;
    transition: transform 320ms ease-in-out;
}
.hide-bar .top-bar {
	transform: translateY(-150px);
}

.menu-top.scrolled {
    box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.1);
	background: var(--menu-bg-scrolled);
}
.menu-top.scrolled {
    height: var(--top-menu-height-scrolled);
}
.menu-top .menu-top-2 {
	position: absolute;
	right: 10px;
	top: 0px;
	height: 80px;
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: right;
}
.menu-link {
	color: var(--menu-link-color);
	font-weight: 500;
	transition: 220ms;
}
.menu-link:hover {
	color: var(--menu-link-color);
}
.menu-links {
	text-align: right;
}
.menu-top-2 .fal, .menu-top-2 .fa {
	margin-left: 5px;
	margin-right: 5px;
	text-align: center;
}
.cart-icon.fal {
	width: auto;
}

.logo {
	max-width: 280px;
	position: relative;
	transition: 220ms;
	z-index: 9;
}
.logo-link {
	margin-left: 40px;
}

.menu-bar {
	display: block;
	position: absolute;
	top: 11px;
	font-size: 26px;
	padding: 15px 30px;
	z-index: 999;
	left: -19px;
	cursor: pointer;
	color: var(--menu-link-color);
}
@media (max-width:991px) {
	.menu-bar { display: block; }
	.menu-top {
		height: var(--top-menu-height-scrolled);
	}
	.menu-top .logo {
		max-width: 180px !important;
	}
}

.menu-left {
    position: fixed;
    top: 0px;
    left: 0px;
    width: var(--left-menu-width);
    height: 100%;
    z-index: 998;
    color: var(--main-font-color);
    font-size: 14px;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.6);
    padding-top: calc(var(--top-menu-height) + 10px);
}
.menu-title-box {
    width: var(--left-menu-width);
    height: var(--top-menu-height);
    font-size: 22px;
    text-align: center;
    padding: 16px;
    margin-bottom: 10px;
}
.menu-title {
    font-size: 16px;
    position: absolute;
    top: 20px;
    left: calc(var(--left-menu-width) + 20px);
    padding-left: 40px;
    font-weight: 600;
}
.menu-title .fa,.menu-title .far,.menu-title .fal {
    position: absolute;
    left: 0px;
    font-size: 26px;
    margin-right: 20px;
    color: #1f5c58;
}
.menu-top-right {
    font-size: 16px;
    position: absolute;
    top: 14px;
    right: 15px;
}
.menu-left .menu-link {
    padding: 5px 20px;
}
.menu-left a {
    color: var(--main-font-color);
    display: block;
    padding: 10px 30px;
    border-radius: 40px;
    transition: 120ms;
    font-weight: 600;
    text-decoration: none !important;
}
.menu-left a:hover {
    background: rgba(0,0,0,0.1);
}
.menu-left a.active {
    background: rgba(255,255,255,0.1);
}
.menu-left a .fa {
    margin-right: 20px;
    transition: 240ms;
}
.menu-left a:hover .fa {
    margin-right: 25px;
}
.cart-icon-box {
	display: flex;
	padding: 8px 15px;
	padding-left: 8px;
	line-height: 20px;
	border-radius: 4px;
	color: var(--menu-link-color);
	border-radius: 20px;
}
.cart-icon-box.active {
	background: var(--menu-cart);
	color: var(--menu-cart-color);
}
.cart-icon {
	font-size: 20px;
	color: var(--menu-link-color);
	transition: 220ms;
}
.cart-icon:hover {
	color: var(--menu-link-color);
}
.cart-icon-box.active .cart-icon {
	color: var(--menu-cart-color);
}
.cart-count {
	display: none;
	font-family: sans-serif;
	margin-left: 5px;
}
.cart-icon-box.active .cart-count {
	display: inline-block;

}
.menu-user {
	font-size: 20px;
	color: var(--menu-link-color);
	cursor: pointer;
	transition: 220ms;
}
.menu-user:hover {
	color: var(--menu-link-color);
}
.menu-user.loggedin {
	color: var(--menu-link-color);
}
.menu-search {
	font-size: 20px;
	color: var(--menu-link-color);
	z-index: 9998;
	transition: 220ms;
	cursor: pointer;
}
.menu-search:hover {
	color: var(--menu-link-color);
}
.menu-search-input {
	position: absolute;
	top: 0px;
	right:10px;
	width: 0px;
	opacity: 0;
	visibility: hidden;
	max-width: 200px;
	font-size: 20px;
	color: var(--main-font-color);
	z-index: 9998;
	transition: 220ms;
}
.menu-search-input .form-control {
	background: var(--input-bg) !important;
}
.menu-search-input.active {
	opacity: 1;
	width: calc(100% - 10px);
	max-width: 500px;
	visibility: visible;
}
.menu-search.far {
	color: var(--input-color) !important;
}
.menu-search-results {
	display: none;
	position: absolute;
	top: 50px;
	right:10px;
	width: calc(100% - 10px);
	max-width: 500px;
	font-size: 20px;
	color: var(--main-font-color);
	z-index: 998;
	transition: 320ms;
	border-radius: 2px;
	background: var(--dialog-color);
    box-shadow: -1px 1px 10px 1px rgba(0, 0, 0, 0.1);
	max-height: 400px;
	overflow-y: scroll;
}

.menu-from-left {
	position: fixed;
	width: 100%;
	max-width: 300px;
	left: 0px;
	top: 0px;
	padding-top: 30px;
	padding-bottom: 100px;
	height: 100vh;
	z-index: 9991;
    box-shadow: -1px 1px 10px 1px rgba(0, 0, 0, 0.1);
	background: var(--dialog-color);
	overflow: auto;
	left: -100%;
	transition: left 220ms, opacity 100ms;
	font-size: 16px;

	-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none;

    opacity: 0;
}
.menu-screen {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.1);
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	transition: 120ms;
}
.show-menu .menu-screen {
	visibility: visible;
	opacity: 1;
}
.show-menu .menu-from-left {
	left: 0px;
	opacity: 1;
}
.menu-from-left .menu-link {
	position: relative;
	display: block;
	padding: 10px;
	transition: 180ms;
	opacity: 0;
	color: var(--main-font-color);
	border-bottom: 1px solid rgba(0,0,0,0.1);
}
.show-menu  .menu-link {
	opacity: 1;
}
.menu-from-left a {
	margin-top: 10px !important;
}
.user-menu {
	visibility: hidden;
	position: absolute;
	top: 25px;
	right:-10px;
	width: 200px;
	font-size: 14px;
	width: 200px;
	color: var(--main-font-color);
	z-index: 998;
	transition: 220ms;
	border-radius: 6px;
	border: 2px solid var(--primary);
	background: var(--dialog-color) !important;
	color: #D9D9D9 !important;
	text-align: left;
	opacity: 0;
	overflow: hidden;
	z-index: 9999;
}
.user-menu.active {
	top: 10px;
	visibility: visible;
	opacity: 1;
}
.user-menu a {
	display: block;
	padding: 8px 10px;
	color: var(--main-font-color);
	border-bottom: 2px solid var(--main-bg-color);
}
.user-menu a:hover {
	background: var(--main-bg-color) !important;
	color: var(--main-font-color);
}
.user-menu a:last-child {
	border-bottom: 0px;
}
.home-header {
	height: 360px;
	background: var(--main-bg-color);
	background-size: 40%;
	background-repeat: no-repeat;
	background-position: right;
	overflow: hidden;
	color: var(--header-font-color);
}
.home-header h1 {
	font-family: inherit;
	font-size: 26px;
	font-weight: 600;
	margin-bottom: 20px;
	color: var(--header-font-color);
}
.section {
	padding-top: 50px;
	padding-bottom: 50px;
}

@media (max-width:991px) {
	
	.mobile-margin {
		margin-bottom: 40px;
	}
	.home-header {
		height: auto;
		padding-bottom: 150px;
	}
}
@media (max-width:991px) {
	.col-sm-hidden { display: none; }

	.page-body {
		position: relative;
		width: 100%;
		background: var(--main-bg-color);
		padding-top: var(--top-menu-height-scrolled);
	}
}
input,textarea {
	font-size: 18px !important;
	font-weight: 400 !important;
}
.password-box {
	position: relative;
}
.password-view {
	position: absolute;
	top: 12px;
	right: 25px;
	color: var(--main-font-color);
	transition: 220ms;
	cursor: pointer;
}
.password-view:hover {
	color: #222;
}

#cart {
	position: fixed;
	width: 400px;
	right: -400px;
	height: 100vh;
	top: 0px;
	visibility: hidden;
	opacity: 0;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
	z-index: 9999;
	background: var(--dialog-color) !important;
	color: var(--main-font-color) !important;
	transition: 220ms;

	-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none;

	overflow-y: auto;
	overflow-x: hidden;
}
@media (max-width:768px) {
	#cart {
		position: fixed;
		width: calc(100vw - 20px);
		max-width: 400px;
		right: -400px;
		top: 00px;
	}
}
#cart.active {
	visibility: visible;
	opacity: 1;
	right: 0px;
	top: 0px;
}
.toggle-cart {
	cursor: pointer;
}

.cart-line {
	font-weight: 600;
	font-size: 14px;
	transition: 90ms;
	margin-left: 10px;
	margin-right: 10px;
	padding: 10px;
	border-bottom: 1px solid rgba(0,0,0,0.1);
}
.no-hover {
	background: none !important;
}
.cart-qty-minus,.cart-qty-plus {
	width: 22px;
	height: 22px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	line-height: 18px;
	font-size: 16px;
	border-radius: 4px;
	background: var(--product-tag);
	color: var(--main-font-color);
	transition: 220ms;
	cursor: pointer;

	-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none;

}
.cart-qty-plus {
	margin-right: 20px;
}
.cart-qty-minus {
}
.cart-qty-plus:hover,.cart-qty-plus:active,.cart-qty-plus:focus {
	opacity: 1;
}
.cart-qty-minus:hover,.cart-qty-minus:active,.cart-qty-minus:focus {
	opacity: 1;
}
.cart-qty {
	font-size: 12px;
	width: 35px;
	text-align: center;

	-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none;
}
.cart-item {
	width: calc(100% - 75px - 80px - 50px);
}
.cart-total {
	text-align: right;
	width: 100px;
	font-size: 18px;
}
.cart-delete {
	opacity: 0.3;
	width: 20px;
	cursor: pointer;
	transition: 220ms;
}
.cart-line:hover .cart-delete {
	opacity: 1;
}
.cart-type {
	width: 15px;
	height: 15px;
	margin-right: 15px;
	display: inline-block;

}
.cart-header {
	background:var(--menu-bg);
	color: var(--menu-link-color);
	padding: 15px 20px;
	font-size: 15px;
	font-weight: 900;
}
.cart-footer {
	padding: 15px 20px;
	font-size: 15px;
	font-weight: 900;
}
.cart-embed .cart-header {
	display: none;
}
.cart-embed .cart-footer {
	display: none;
}
.cart-embed .toggle-cart {
	display: none;
}

.add-to-cart {
	position: relative;
	transition: 220ms;
}
.add-to-cart:focus {
	box-shadow: none !important;
}
.add-to-cart:hover {
	opacity: 0.8;
}
.add-to-cart .fal {
	position: absolute;
	top: 10px;
	right: 10px;
}


.box {
	width: 100%;
	padding: 20px;
	background: var(--dialog-color);
	height: 100%;
	border-radius: 6px;
}
.articles-box {
	width: 100%;
	padding: 20px;
	height: 100%;
	border-radius: 6px;
}
.box-shadow {
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.1);
}
.product-box {
    position: relative;
    background: var(--product-card);
	color: var(--product-color);
    padding: 0px;
    border-radius: 40px;
    overflow: hidden;
	box-shadow: 0px 0px 0px transparent;
	padding-bottom: 65px;
}


.product-list {
	position: relative;
	display: grid;
	grid-template-columns: 100px 1fr 1fr;
}
.product-image {
	color: var(--product-title);
	width: 100%;
	padding-top: 100%;
	transition: 60ms;
	position: relative;
	overflow: hidden;
}
.product-image .product-image-img {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	max-width: inherit;
}
.product-title {
    padding: 0px 15px;
    margin-top: 15px;
    text-align: left;
    font-weight: 600;
	font-size: 18px;
	font-family: var(--header-font);
	color: var(--product-title);
	line-height: 24px;
}
.product-strain {
	padding: 0px 15px;
	margin-top: 0px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.5px;
	line-height: 20px;
	color: var(--product-color);
	opacity: 0.5;
}
.product-brand-card {
	padding: 0px 15px;
	margin-top: 0px;
	font-size: 13px;
	letter-spacing: 0.5px;
	font-weight: 500;
	color: var(--product-cross);
	margin-top: 10px;
	margin-bottom: -15px;
}
.go-icon {
	position: absolute;
	bottom: 20px;
	right: 15px;
	color: var(--main-font-color);
	font-size: 14px;
	transition: 120ms;
	opacity: 0.3;
}
.product-box:hover .go-icon {
	opacity: 0.8;
}
.product-price {
	bottom: 12px;
	padding: 0px 15px;
	margin-top: auto;
	font-weight: 600;
	font-size: 18px;
	color: var(--main-font-color);
}
.product-discount-price {
	color: var(--product-discount);
}
.product-image .product-image-img {
	z-index: 90;
}
.product-image .second-image {
    z-index: 99;
    opacity: 0;
    display: block;
    position: absolute;
    top: 0;
    transform: rotate(-15deg) scale(1);
    will-change: transform, opacity;
    transition: 200ms ease;
}

.product-box:hover .second-image {
    opacity: 1;
    transition: transform 400ms ease, opacity 600ms ease;
    transform: rotate(0deg) scale(1.2) translate(0%, 0%);
}
@media (max-width:768px) {
	.product-title {
		font-size: 18px;
    	font-weight: 500;
	}
}
.product-stock {
    padding:5px 15px 10px;
    text-align: center;
    font-weight: 400;
    color: var(--main-font-color);
    font-size: 12px;
}
.product-page-image {
	width: 50%;
	max-width: 400px;
	padding: 10px;
}
.product-page-image .product-image-img {
	width: 100%;
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.1);
}
.product-page-info {
	width: calc(100% - 500px);
	padding: 10px;
}
.product-strain-type {
	color: var(--main-font-color);
}
.product-qty-plus,.product-qty-minus {
	display: inline-block;
	width: 30px;
	padding: 5px;
	text-align: center;
	line-height: 18px;
	font-size: 24px;
	font-weight: 500;
	margin-top: 2px;
	color: var(--main-font-color);
	transition: 220ms;
	cursor: pointer;
	background: var(--product-tag);

	-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none;
}
.product-qty {
	position: relative;
	display: inline-block;
	width: 50px;
	top: -4px;
	font-size: 14px;
}

.info-box {
    position: relative;
    background: var(--main-bg-color);
	color: var(--main-font-color);
    margin: 5px;
    padding: 10px;
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.1);
    border-radius: 2px;
}


.shop-section {
	padding-top: 30px;
}

.shop-filter h3 {
	display: inline-block;
	font-size: 16px;
	font-weight: 600 !important;
	color: var(--product-color);
}

.filter-section {
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(0,0,0,0.1);
	margin-bottom: 15px;
}
.filter-heading {
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 600 !important;
	color: var(--product-color);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
	width: 100%;
	cursor: pointer;
}
.filter-heading:hover  {
	opacity: 0.7;
}
.filter-count {
	background: var(--dialog-color);
	padding: 3px 8px;
	font-size: 11px;
	margin-left: 10px;
	opacity: 0.7;
	font-weight: 600;
	border-radius: 20px;
}
.filter-heading .fa-fw {
	display: inline-block;
	position: absolute;
	right: 10px;
	top: 5px;
	color: rgba(0,0,0,0.3);
}
.filter-heading:hover .fa-fw {
	color: var(--product-color);
}
.filter-container {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.filter-heading .fa-fw  {
	transform: rotate(0deg);
	transition: transform 320ms;
	margin-left: 10px;
}
.active .filter-heading .fa-fw  {
	transform: rotate(135deg);
}

.product-menu {
    position: relative;
	color: var(--main-font-color);
	font-size: 13px;
    padding: 2px;
    -webkit-transition: 220ms;
    transition: 220ms;
    border-radius: 3px;
    padding-left: 30px;
	margin: 2px;
}

.product-menu .fal {
    position: absolute;
	top: 4px;
    left: 5px;
    font-size: 20px;
    color: var(--input-border);
    transition: 220ms;
}

.product-menu .fa {
    opacity: 0;
    position: absolute;
	top: 4px;
    left: 5px;
    font-size: 20px;
    color: var(--secondary);
    border-color: var(--secondary) !important;
    transition: 220ms;
}

.product-menu:hover .fal {
    color: var(--main-font-color);
}

.product-menu.active .fa {
    opacity: 1;
    position: absolute;
    font-size: 20px;
}

.product-menu.active .fal {
    opacity: 0;
    position: absolute;
    font-size: 20px;
}

.product-menu:hover {
    color: var(--main-font-color);
    background: rgba(0, 0, 0, 0.01);
}
.product-menu.active {
	color: var(--main-font-color);
	background: rgba(255, 255, 255, 0.1);
}

.product-effects {
	position: relative;
	font-size: 17px;
	margin-top: 80px;
	font-weight:600;
}
@media (max-width:1198px) {
	.product-effects {
		margin-top: 20px;
	}
}
@media (max-width:991px) {
	.product-page-info {
		width: 100%;
	}
	.product-page-image {
		width: 100%;
		max-width: 400px;
	}
	.product-effects {
		 position: relative;
		top: 0px;
		font-size: 17px; font-weight:600;
		margin-top: 20px;
		width: 100%;
	}
}
@media (max-width:768px) {
}

.product-page-price {
	float: right;
	font-size: 26px;
	width: 140px;
	color: var(--main-font-color);
}
.product-page-qty {
	float: left;
	width: calc(100% - 160px);
	margin-top: 6px;
}
@media (max-width:576px) {

	.product-page-price {
		display: block;
		position: relative;
		top: 20px;
		margin-bottom : 0px;
		float: none;
		width: 100%;
	}
	.product-page-qty {
		float: none;
		width: 100%;
		margin-top: 6px;
	}
}

.article-title {
	transition: 220ms;
}
.article-link:hover .article-title {
	color: var(--main-font-color);

}
.entry-box {
    position: relative;
    background: var(--main-font-color);
    width: 100%;
    padding: 6px;
    -webkit-box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #ddd;
    font-size: 12px;
    color: var(--main-font-color);
    line-height: 24px;
    transition: 120ms;
}

.entry-box.expand {
    position: relative;
    margin-left: -10px;
    width: calc(100% + 20px);
    -webkit-box-shadow: 0 1px 1px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 1px 0px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
    margin-bottom: 10px;
}
.entry-box .expand-box {
    display: none
}
.entry-box.expand .expand-box {
    display: block
}
.hover-col {
    background:var(--main-font-color);
    -webkit-transition: 220ms;
    transition: 220ms;
}
.hover-col:hover {
    background:#f7f7f7;
    -webkit-transition: 220ms;
    transition: 220ms;
}

.notice {
    background: #ffb956;
    padding: 5px;
    border-radius: 4px;
    color: var(--main-font-color);
    margin-bottom: 5px;
    border: 1px solid #eea237;
}
.notice .fa {
    margin-right: 10px;
}


.entry-box .fa,
.entry-box .far,
.entry-box .fab,
.entry-box .fal {
    color: #01a280;
    margin-right: 10px;
    font-size: 16px;
}

.entry-menu {
    position: absolute;
    right: 0px;
    top: 4px;
}

.entry-menu .menu-icon,
.entry-menu .menu-close {
    position: absolute;
    cursor: pointer;
    right: -5px;
    top: 0px;
    background: #eee;
    height: 22px;
    width: 22px;
    text-align: center;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 4px;
    font-size: 14px !important;
    color: var(--main-font-color) !important;
}

.hover-col .entry-menu .menu-icon {
    opacity: 0.2;
    -webkit-transition: 220ms;
    transition: 220ms;
}
.hover-col:hover .entry-menu .menu-icon {
    opacity: 1;
}

.entry-menu .menu-close {
    display: none;
}

.entry-menu .entry-menu-options {
    position: absolute;
    visibility: hidden;
    right: 20px;
    top: 20px;
    background: var(--main-font-color);
    border: 1px solid #eee;
    -webkit-box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.1);
    z-index: 99;
    -webkit-transition: 220ms;
    transition: 220ms;
    opacity: 0;
}

.entry-menu-options .entry-menu-link {
    display: block;
    padding: 3px;
    width: 200px;
    text-align: center;
    border-top: 1px solid #eee;
    color: #777;
    -webkit-transition: 220ms;
    transition: 220ms;
}
.entry-menu-options .entry-menu-link:hover {
    background: #f6f6f6;
    color: #007bff;
    padding-left: 10px;
}

.entry-menu.active .entry-menu-options {
    visibility: visible;
    opacity: 1;
}
.product-markdown h2 {
    font-size: 24px;
    color: var(--main-font-color);
    display: inline-block;
}
.product-markdown h3 {
    font-size: 18px;
    color: var(--main-font-color);
    display: inline-block;
}
.breadcrumbs {
    padding-top: 10px;
    padding-bottom: 10px;
}
.breadcrumbs a {
	color: var(--main-font-color);
	font-weight: 700;
}
.box-style {
    background: #29242F;
    border-radius: 4px;
}

.product-container {
    display: grid;
    gap: 20px;
    grid-template-columns: 500px 1fr;
}
.product-container.no-gallery {
    grid-template-columns: 400px 1fr;
}

.product-container img {
    border-radius: 4px;
}

.product-image-container {
    margin-left: 100px;
}
.product-image-thumbs {
    position: absolute; 
    left: 0px; 
    top: 0px; 
    width: 90px; 
    max-height: 400px;
	overflow-y: auto;
	overflow-x: hidden;
}
.product-image-thumbs.scroll {
	margin-left: 10px;
	width: 80px;
}
.product-image-thumbs::-webkit-scrollbar {
	display: none;
}
.image-thumb {
    display: block;
    width: 100%;
    margin-bottom: 13px;
}
@media (max-width:990px) {

    .product-details {
        min-height: auto !important;
    }

    .product-container {
        grid-template-columns: 1fr;
    }
    .product-container.no-gallery {
        grid-template-columns: 1fr;
    }

    .product-image-container {
        display: grid;
        max-width: 400px;
        text-align: center;
        align-items: center;
        justify-content: center;
        grid-template-columns: 50px 1fr;
        gap: 10px;
    }
}
@media (max-width:550px) {
    .product-image-thumbs {
        position: relative; 
		display: grid;
		grid-template-columns: 1fr 1fr 1fr 1fr;
        width: 100%; 
		max-width: 400px;
        padding-top: 10px;
		gap: 10px;
    }
	.product-image-thumbs.scroll {
		margin-left: 0px;
		width: 100%;
	}
    
    .product-image-thumbs::-webkit-scrollbar {
        display: none;
        /* Safari and Chrome */
    }
    .image-thumb {
		display: block;
		width: 100%;
		height: auto;
		margin-top: 0px;
		margin-bottom: 0px;
    }
    .product-image-container {
        margin-left: 0px;
    }
}
.no-gallery .product-image-container {
    margin-left: 0px;
}

.product-details {
    position: relative;
    min-height: 400px;
}

.product-info {
    grid-area: info;
}

.product-info2 {
    grid-area: info2;
}

@media (max-width:768px) {
    .product-details {
        grid-template-columns: 1fr;
    }
}

.product-details h1 {
    color: var(--product-color);
    font-size: 32px;
}
.col-photoperiod .product-details h1 {
    color: #5EAAF0;
}

.product-select {
    position: absolute;
    bottom: 0px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.select-title {
    display: inline-flex;
    color: var(--main-font-color);
    font-size: 14px;
    font-weight: 600;
    margin-right: 10px;
}

.pack-size {
    display: inline-flex;
    background: transparent;
    justify-content: center;
    align-items: center;
    padding: 5px 5px;
    min-width: 40px;
    height: 40px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    border: 2px solid #8C8991;
    color: #9F9CA4;
    position: relative;
    cursor: pointer;
    transition: 120ms;
    margin-left: 5px;
}

.pack-size.active {
    background: var(--product-pack-active-bg);
    color: var(--product-pack-active-color);
    border: 2px solid transparent;
}

.pack-price {
    position: relative;
    top: 22px;
    text-align: right;
    min-width: 144px;
    display: flex;
	flex-direction: column;
	width: 100%;
	height: 90px;
    justify-content: top;
    align-items: right;
    font-weight: 600;
    color: var(--main-font-color);
    font-size: 32px;
	font-weight: 700;
}
.pack-price.no-stock {
    justify-content: left;
    text-align: left;
}

.pack-price .pack-price-value {
    display: inline-block;
}

.set-image {
    opacity: 0.5;
    transition: 100ms;
    border-radius: 3px;
}

.pack-qty {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    margin-top: 15px;
}

.qty-label {
    font-weight: 600;
    font-size: 14px;
    color: #D9D9D9;
}

.qty-minus,
.qty-plus {
    background: var(--product-tag);
    display: inline-block;
	font-weight: 500;
    width: 40px;
	font-size: 20px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    cursor: pointer;
}

.qty-value {
    display: inline-flex;
    width: 50px;
    height: 40px;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    background: rgba(0,0,0,0.02);
	font-weight: 600;
}

.set-image.active {
    opacity: 1;
}

.pack-add {
    background: var(--button);
    color: var(--button-text);
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    font-weight: 600;
    font-size: 15px;
    padding-left: 0px;
    padding-right: 20px;
    bottom: 0px;
    width: 100%;
    transition: 320ms;
    text-align: center;
	font-family: var(--header-font);
}
.pack-add.out-of-stock {
    background: rgba(0,0,0,0.2);
    padding: 10px 30px;
    padding-right: 55px;
    color: #e1171c;
}
.pack-add.dropping-soon {
    color: #999;
}

.pack-add.added {
    background: #55DAAA;
    color: var(--main-font-color);
}

.pack-add .fa, .pack-add .far {
    position: absolute;
    right: 20px;
    top: 12px;
    font-size: 18px;
}

.details-container {
    display: grid;
    gap: 20px;
    grid-template-columns: 480px 1fr;
    margin-top: 20px;
}

@media (max-width:990px) {	
    .product-info h1 {
        font-size: 24px;
    }

    .product-select {
        position: relative;
        width: 100%;
    }
    .pack-add {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width:460px) {	
    .product-info h1 {
        font-size: 20px;
    }	
    .product-image-container {
        max-width: 400px;
    }
}


@media (max-width:1200px) {
    .details-container {
        grid-template-columns: 1fr;
    }
}

.product-table {
    border-radius: 4px;
    margin-bottom: 20px;
    padding: 20px;
}

.product-table-rounded {
    overflow: hidden;
}

.product-description {
    margin-bottom: 20px;
    padding: 20px;
}

.table-entry {
    display: grid;
    gap: 0px;
    grid-template-columns: 200px 1fr;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table-entry:last-child {
    border-bottom: none;
}

@media (max-width:1200px) {
    .table-entry {
        width: 100%;
        display: grid;
        gap: 20px;
        grid-template-columns: 140px 1fr !important;
        font-size: 14px;
    }
}

.table-entry div {
    padding: 6px 10px;
}

.table-key {
    font-weight: 700;
    text-align: left;
    color: var(--main-font-color);
    padding-left: 0px !important;
}

.table-value {
    color: var(--main-font-color);
    font-weight: 400;
}

.might-like {
    padding: 5px;
    border-radius: 4px;
    margin-bottom: 20px;
}
.info2-entry {
    width: 100%;
    display: grid;
    gap: 20px;
    grid-template-columns: 160px 1fr;
    font-size: 14px;
    margin-bottom: 10px;
}
.info2-entry-key {
    color: #B992FD;
    font-weight: 600;
}
.col-photoperiod .info2-entry-key {
    color: #5EAAF0;
}
.product-brand {
    font-size: 15px;
    color: var(--main-font-color);
    margin-bottom: 5px;
    font-weight: 600;
}
.strain-cross {
    font-size: 18px;
    color: var(--product-color);
	opacity: 0.5;
}
.product-types {
    margin-top: 20px;
    color: var(--main-font-color);
    display: flex;
    gap: 20px;
}
	

.box-tabs {
	display: flex;
	justify-content: left;
	margin-left: 2px;
	margin-top: 20px;
	width: 100%;
	overflow-x: auto;
}
.box-tabs::-webkit-scrollbar {
	display: none;
	/* Safari and Chrome */
}
.box-tab {
	position: relative;
	color: var(--main-font-color);
	font-size: 16px;
	transition: border-color 300ms, color 300ms;
	font-weight: 500;
	padding: 12px 30px;
	cursor: pointer;
	border-bottom: 2.5px solid transparent;
	border-color: transparent;

	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
@media (max-width:990px) {
	.box-tab {
		padding: 12px 20px;
	}
	.box-tab-content {
		padding: 20px !important;
	}
}
.box-tab:hover {
	border-color: #999;
}
.box-tab.active, .box-tab:focus, .box-tab:active {
	color: var(--main-font-color);;
	border-color: var(--primary);
}
.box-tab-content {
	display: none;
	padding: 0px;
	padding-top: 20px;
	min-height: 390px;
}
.box-tab-content.active {
	display: block;
}

.trending-strains-flex {
	display: flex;
}
.trend-section {
	padding: 30px;
	padding-top: 50px;
	padding-bottom: 50px;
}
@media (max-width:768px) {
	.header.home {
		padding-left: 20px;
		padding-right: 20px;
	}
	.header.home h1 {
		font-size: 30px;
	}
	.trending-strains h1 {
		font-size: 26px;
		padding: 10px;
		padding-top: 30px;
		padding-bottom: 0px;
	}
	.trending-strains-flex {
		display: block;
	}
}
.container {
    position: relative;
    padding-left: 10px;
    padding-right: 10px;
}

.container-fluid {
    padding-right: 10px;
    padding-left: 10px;
}
@media (min-width: 1921px) {
    .container {
        max-width: 1440px;
    }
}
.row {
    margin-right: -5px;
    margin-left: -5px;
}

.col-product {
    max-width: 230px;
}

.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-right: 5px;
    padding-left: 5px;
}
.form-control {
  padding: 20px 10px !important;
}
.form-control, .btn-select,.btn-select:focus,.btn-select:active {
  box-shadow: none;
  border: 2px solid var(--input-border) !important;
  background: var(--input-bg) !important;
  color: var(--input-color) !important;
  transition: 220ms;
  font-size: 16px !important;
  font-family: inherit !important;
}
.dropdown-menu {
  border: 2px solid #29242F !important;
  background: #29242F !important;
  font-size: 13px;
}
.dropdown-menu .dropdown-item {
  color: #D9D9D9 !important;
}
.dropdown-menu .dropdown-item:hover {  
    background-color: #403A4A !important;
    color: #fff !important;
}
.dropdown-menu .dropdown-item.selected {  
    background-color: var(--primary) !important;
    color: #fff !important;
}
.form-control:active,.form-control:focus {
    box-shadow: none;
    border: 2px solid var(--primary) !important;
    outline-color: var(--primary) !important;
    color: var(--main-font-color) !important;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 1px solid green;
  -webkit-text-fill-color: green;
  -webkit-box-shadow: 0 0 0px 1000px #000 inset;
  transition: background-color 5000s ease-in-out 0s;

  box-shadow: none;
  -webkit-text-fill-color: #555;
  border: 2px solid #eee;
}



textarea.form-control {
    padding: 8px 10px !important;
}



.btn-outline {
	border-color: #ddd;
  }

.btn-green {
  color: #fff;
  background-color: #1f5c58;
  border-color: #1f5c58;
}

.btn-green:hover {
  color: #fff;
  background-color: #1da79f;
  border-color: #1da79f;
}
.btn-green-lt {
	color: var(--primary-text) !important;
	background-color: var(--primary);
	border-color: var(--primary);
}

.btn-green-lt:hover {
	color: var(--primary-text) !important;
	background-color: var(--primary);
	border-color: var(--primary);
}
.btn-primary {
	background: var(--button);
	color: var(--button-text) !important;
	border: 0px;
}
.btn-primary:hover {
	background: var(--button);
	background-color: var(--button);
}
.btn-primary:active,.btn-primary.active {
	background: var(--button);
	background-color: var(--button);
}
.btn-primary:focus,.btn-primary.focus {
	background: var(--button);
	background-color: var(--button);
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
	color: var(--primary-text) !important;
	background-color: var(--primary);
	border-color: var(--primary);
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem #ddd !important;
}
.btn-grey {
  color: #fff;
  background: #615D65;
}
.btn-grey:hover {
  color: #fff;
  background: #615D65;
}
.btn-grey-outline {
  color: #615D65;
  background: transparent;
  border: 2px solid #615D65;
}
.btn-grey-outline:hover {
  color: #fff;
  background: #615D65;
}

.btn {
	font-family: var(--header-font);
	font-size: 14px;
	font-weight: 700;
	border-radius: 5px;
  padding: 12px 20px;
  line-height: 20px;
}
.btn .fa {
	margin-right: 15px;
	transition: 220ms;
}

.btn:hover .fa {
	margin-left: 5px;
	margin-right: 10px;
}

.btn-select {
  	background-color: #fff;
  	border: 2px solid #eee;
	border-radius: 2px;
	font-weight: 400;
	color: #444;
	width: 100%;
}
.btn-select:focus {
    box-shadow: none;
  	border: 2px solid #eee;
}


.nav-link {
  	display: block;
  	padding: 0.5rem 1rem;
	background-color: rgba(0,0,0,0.02);
	margin: 1px;
	color: #777;
	transition: 220ms;
}

.nav-link:hover, .nav-link:focus {
  text-decoration: none;
	background-color: rgba(0,0,0,0.1);
	color: #444;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: var(--link-color);
}.modal-body {
	padding: 30px 20px;
	font-size: 22px !important;
}
.modal-header {
	display: none;
}
.modal-footer {
	display: block !important;
  border-top: 2px solid rgba(0,0,0,0.2) !important;
}
.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: var(--dialog-color);
    background-clip: padding-box;
    border: none !important;
    border-radius: 2px;
    outline: 0;
	font-size: 16px;
}
.bootstrap-dialog .bootstrap-dialog-title {
    color: #fff;
    display: inline-block;
    font-size: 20px !important;
}
.bootstrap-dialog .bootstrap-dialog-message {
    font-size: 16px !important;
}
.bootstrap-dialog.type-primary .modal-header {
    background-color: var(--primary) !important;
}
.btn-min {
	min-width: 100px;
}
.btn-white-outline {
	color: var(--main-font-color);
	background-color: var(--main-bg-color);
	border-color: var(--dark-bg-color);
}


.box-style {
	background: var(--light-bg-color);
	border-radius: 4px;
}

.checkout-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr 300px;
	grid-template-areas: "details cart";
}

@media (max-width:991px) {
	.checkout-grid {
		grid-template-columns: 1fr;
		grid-template-areas: "details""cart";
	}
}

.checkout-details {
	grid-area: details;
	background: var(--dialog-color);
	border-radius: 7px;
	padding: 40px;
}

.checkout-cart {
	grid-area: cart;
}

.cart-container {
	position: sticky;
	top: 80px;
	background: var(--dialog-color);
	border-radius: 7px;
	padding: 10px;
}
.product-loaders {
	display: none;
}
.loading .product-loaders {
	display: grid;
}
#product-list {
	display: grid;
}
.loading #product-list {
	display: none;
}



.gallery-grid {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	gap: 20px;
}
@media (max-width:1400px) {
	.gallery-grid {
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}
}
@media (max-width:990px) {
	.gallery-grid {
		grid-template-columns: 1fr 1fr 1fr;
	}
}
@media (max-width:500px) {
	.gallery-grid {
		grid-template-columns: 1fr 1fr;
	}
}
.gallery-grid img {
    display: block;
}

.mobile-menu-icon {
	position: absolute;
	left: 10px;
	top: 20px;
	padding: 0px;
	width: 27px;
	height: 40px;
	display: flex;
	flex-direction: column;
	align-items: left;
	justify-content: center;
	cursor: pointer;
	z-index: 9999;
}
.mobile-menu-icon .menu-bar-line {
	position: relative;
	background: var(--menu-link-color);
	height: 3px;
	padding: 0px;
	margin-bottom: 7px;
	width: 100%;
	border-radius: 120px;
	transition: 200ms;
}
	.mobile-menu-icon .bar-3 {
		margin-bottom: 0px;
	}
	.mobile-menu-icon .bar-2 {
		width: 80%;
	}
	.mobile-menu-icon:hover .bar-1 {
		width: 80%;
	}
	.mobile-menu-icon:hover .bar-3 {
		width: 80%;
	}
	.mobile-menu-icon:hover .bar-2 {
		width: 100%;
	}
	.mobile-menu-icon.active .bar-1 {
		width: 100%;
		top: 10px;
		transform: rotate(45deg);
	}
	.mobile-menu-icon.active .bar-3 {
		width: 100%;
		top: -10px;
		transform: rotate(-45deg);
	}
	.mobile-menu-icon.active .bar-2 {
		opacity: 0 !important;
	}


	.logo {
		max-width: 200px !important;
	}
	
	.menu-top.scrolled .logo {
		max-width: 120px !important;
	}
	.shop-link {
		padding: 5px 20px;
		border-radius: 56px;
		transition: 80ms;
		border: 2px solid var(--menu-link-color);
		font-size: 14px;
	}
	.logo-mobile {
		display: none;
	}
	.top-bar {
		position: fixed;
		top: 0px;
		left: 0px;
		width: 100%;
		height: 40px;
		background: var(--top-bar-bg);
		z-index: 999;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.top-bar-content {	
		display: flex;
		text-align: center;
		color: var(--top-bar-color);
		font-size: 14px;
		gap: 10px;
		text-align: center;
		justify-content: center;
		align-items: center;
		line-height: 20px;
	}
	.top-bar-item {
		text-align: center;
	}
	.menu-top {
		top: 0px;
		height: 80px;
	}
	
	@media (max-width:991px) {
		.top-bar-content {
			font-size: 12px;
			line-height: 14px;
		}
		.logo-mobile {
			display: block;
			width: 40px;
		}
		.logo-desktop {
			display: none;
		}
		.menu-top .logo {
			max-width: 100px !important;
		}
	}
	.product-box {
		position: relative;
		background: var(--product-card);
		color: var(--product-color);
		padding: 0px;
		border-radius: 4px;
		overflow: hidden;
		box-shadow: 0px 0px 0px transparent;
		border-radius: 20px;
		margin-bottom: 10px;
		padding-bottom: 65px;
	}
	.hover-product:hover {
		box-shadow: none;
	}
	.trend-section {
		padding: 2px;
		padding-bottom: 80px;
		padding-top: 50px;
	}
	.page-body {
		padding-top: 60px;
	}
	::placeholder {
		opacity: 0.7;
	}
	::-ms-input-placeholder { /* Edge 12 -18 */
		opacity: 0.7;
	}
	@media (max-width:440px) {
		.shop-link {
			font-size: 12px;
			margin-right: 10px;
		}
		.menu-top .menu-top-2 {
			gap: 5px;
		}
	}